734068250e8f66e7c56ccdf0cd1721e9584bee16
[sbcl.git] / stems-and-flags.lisp-expr
1 ;;;; -*- Lisp -*-
2 ;;;; build order
3
4 ;;;; This software is part of the SBCL system. See the README file for
5 ;;;; more information.
6 ;;;;
7 ;;;; This software is derived from the CMU CL system, which was
8 ;;;; written at Carnegie Mellon University and released into the
9 ;;;; public domain. The software is in the public domain and is
10 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
11 ;;;; files for more information.
12
13 ;;; This is a linear ordering of system sources which works both to
14 ;;; compile/load the cross-compiler under the host Common Lisp and to
15 ;;; cross-compile the compiler into the under-construction target
16 ;;; Common Lisp.
17 ;;;
18 ;;; Of course, it'd be very nice to have this be a dependency DAG
19 ;;; instead, so that we could do automated incremental recompilation.
20 ;;; But the dependencies are varied and subtle, and it'd be extremely
21 ;;; difficult to extract them automatically, and it'd be extremely
22 ;;; tedious and error-prone to extract them manually, so we don't 
23 ;;; extract them. (It would be nice to fix this someday. The most
24 ;;; feasible approach that I can think of would be to make the
25 ;;; dependencies work on a package level, not an individual file
26 ;;; level. Doing it at the package level would make the granularity
27 ;;; coarse enough that it would probably be pretty easy to maintain
28 ;;; the dependency information manually, and the brittleness of the
29 ;;; package system would help make most violations of the declared
30 ;;; dependencies obvious at build time. -- WHN 20000803
31 ;;;
32 ;;; FIXME: Perhaps now that a significant number of files are built
33 ;;; in warm load instead of cold load, this file should now be called
34 ;;; cold-stems-and-flags.lisp-expr? Also, perhaps this file should move
35 ;;; into the src/cold directory?
36 (
37  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
38  ;;; miscellaneous
39
40  ;; This comes early because it's useful for debugging everywhere.
41  ("src/code/show")
42
43  ;; This comes early because the cross-compilation host's backquote logic
44  ;; expand into something which can't be executed on the target Lisp (e.g.
45  ;; in CMU CL where it expands into internal functions like BACKQ-LIST), and
46  ;; by replacing the host backquote logic with our own as early as possible,
47  ;; we minimize the chance of any forms referring to host Lisp internal
48  ;; functions leaking into target Lisp code.
49  ("src/code/backq")
50
51  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
52  ;; various DEFSETFs and/or other DEFMACROish things, defined as early as
53  ;; possible so we don't need to fiddle with any subtleties of defining them
54  ;; before any possible use
55
56  ;; KLUDGE: It would be nice to reimplement most or all of these as
57  ;; functions (possibly inlined functions) so that we wouldn't need to
58  ;; worry so much about forcing them all to be defined before any possible
59  ;; use. It might be pretty tedious, though, working through any
60  ;; transforms and translators and optimizers and so forth to make sure
61  ;; that they can handle the change. -- WHN 19990919
62  ("src/code/defsetfs")
63
64  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
65  ;;; cross-compiler-only replacements for stuff which in target Lisp would be
66  ;;; supplied by basic machinery
67
68  ("src/code/cross-misc"  :not-target)
69  ("src/code/cross-float" :not-target)
70  ("src/code/cross-io"    :not-target)
71  ("src/code/cross-sap"   :not-target)
72
73  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
74  ;;; stuff needed early both in cross-compilation host and in target Lisp
75
76  ("src/code/uncross")
77  ("src/code/early-defbangmethod")
78
79  ("src/code/defbangtype")
80  ("src/code/defbangmacro")
81
82  ("src/code/primordial-extensions")
83
84  ;; for various constants e.g. SB!VM:*TARGET-MOST-POSITIVE-FIXNUM* and
85  ;; SB!VM:LOWTAG-BITS, needed by "early-objdef" and others
86  ("src/compiler/generic/early-vm")
87  ("src/compiler/generic/early-objdef")
88  ("src/compiler/target/parms")
89  ("src/code/early-array") ; needs "early-vm" numbers
90
91  ("src/code/parse-body")       ; on host for PARSE-BODY
92  ("src/code/parse-defmacro")   ; on host for PARSE-DEFMACRO
93  ("src/code/early-extensions") ; on host for COLLECT, SYMBOLICATE, etc.
94  ("src/compiler/deftype")      ; on host for SB!XC:DEFTYPE
95  ("src/code/early-alieneval")  ; for vars needed both at build and run time
96
97  ("src/code/specializable-array")
98
99  ("src/code/early-cl")
100  ("src/code/early-fasl")
101
102  ;; mostly needed by stuff from comcom, but also used by "x86-vm"
103  ("src/code/debug-var-io")
104
105  ("src/code/cold-init-helper-macros")
106
107  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
108  ;;; basic machinery for the target Lisp. Note that although most of these
109  ;;; files are flagged :NOT-HOST, a few might not be.
110
111  ("src/code/target-defbangmethod" :not-host)
112
113  ("src/code/early-print" :not-host)
114  ("src/code/early-pprint" :not-host)
115  ("src/code/early-impl" :not-host)
116
117  ("src/code/target-extensions" :not-host)
118
119  ("src/code/early-defstructs" :not-host) ; gotta-be-first DEFSTRUCTs
120
121  ("src/code/defbangstruct")
122
123  ("src/code/funutils" :not-host)
124
125  ;; This needs DEF!STRUCT, and is itself needed early so that structure
126  ;; accessors and inline functions defined here can be compiled inline
127  ;; later. (Avoiding full calls not only increases efficiency, but also
128  ;; avoids some cold init issues involving full calls to structure
129  ;; accessors.)
130  ("src/code/type-class")
131
132  ("src/code/pcounter" :not-host)
133
134  ("src/code/lisp-stream" :not-host)
135
136  ("src/code/sysmacs" :not-host)
137
138  ;; "assembly/assemfile" was here in the sequence inherited from
139  ;; CMU CL worldcom.lisp, but also appears later in the sequence
140  ;; inherited from CMU CL comcom.lisp. We shouldn't need two versions,
141  ;; so I've deleted the one here. -- WHN 19990620
142
143  ;; FIXME: There are lots of "maybe" notes in this file, e.g.
144  ;; "maybe should be :BYTE-COMPILE T". Once the system is stable,
145  ;; look into them.
146
147  ("src/code/target-error" :not-host) ; maybe should be :BYTE-COMPILE T
148
149  ;; a comment from classic CMU CL:
150  ;;   "These guys can supposedly come in any order, but not really.
151  ;;    Some are put at the end so that macros don't run interpreted
152  ;;    and stuff."
153  ;; Dunno exactly what this meant or whether it still holds. -- WHN 19990803
154  ;; FIXME: more informative and up-to-date comment?
155  ("src/code/globals"     :not-host)
156  ("src/code/kernel"      :not-host)
157  ("src/code/toplevel"    :not-host)
158  ("src/code/cold-error"  :not-host)
159  ("src/code/fdefinition" :not-host)
160  ;; FIXME: Figure out some way to make the compiler macro for INFO 
161  ;; available for compilation of "code/fdefinition".
162
163  ;; In classic CMU CL, code/type was here. I've since split that into
164  ;; lots of smaller pieces, some of which are here and some of which
165  ;; are handled later in the sequence, when the cross-compiler is
166  ;; built. -- WHN 19990620
167  ("src/code/target-type" :not-host)
168
169  ("src/code/pred" :not-host)
170
171  ("src/code/target-alieneval" :not-host)
172  ("src/code/target-c-call"    :not-host)
173  ("src/code/target-allocate"  :not-host)
174
175  ;; This needs DEF-ALIEN-ROUTINE from target-alieneval.
176  ("src/code/misc-aliens" :not-host)
177
178  ("src/code/array"         :not-host)
179  ("src/code/target-sxhash" :not-host)
180
181  ("src/code/list"   :not-host)
182  ("src/code/seq"    :not-host) ; "code/seq" should come after "code/list".
183  ("src/code/coerce" :not-host)
184
185  ("src/code/string"     :not-host)
186  ("src/code/mipsstrops" :not-host)
187
188  ;; "src/code/unix.lisp" needs this. It's generated automatically by
189  ;; grovel_headers.c, i.e. it's not in CVS.
190  ("output/stuff-groveled-from-headers" :not-host)
191
192  ("src/code/unix" :not-host)
193
194  #!+mach  ("src/code/mach"     :not-host)
195  #!+mach  ("src/code/mach-os"  :not-host)
196  #!+sunos ("src/code/sunos-os" :not-host)
197  #!+hpux  ("src/code/hpux-os"  :not-host)
198  #!+osf1  ("src/code/osf1-os"  :not-host)
199  #!+irix  ("src/code/irix-os"  :not-host)
200  #!+bsd   ("src/code/bsd-os"   :not-host)
201  #!+linux ("src/code/linux-os" :not-host)
202
203  ;; KLUDGE: I'd prefer to have this done with a "code/target" softlink
204  ;; instead of a bunch of reader macros. -- WHN 19990308
205  #!+pmax ("src/code/pmax-vm" :not-host)
206  #!+(and sparc svr4) ("src/code/sparc-svr4-vm" :not-host)
207  #!+(and sparc (not svr4)) ("src/code/sparc-vm" :not-host)
208  #!+rt    ("src/code/rt-vm"    :not-host)
209  #!+hppa  ("src/code/hppa-vm"  :not-host)
210  #!+x86   ("src/code/x86-vm"   :not-host)
211  #!+alpha ("src/code/alpha-vm" :not-host)
212  #!+sgi   ("src/code/sgi-vm"   :not-host)
213
214  ("src/code/target-signal" :not-host) ; needs OS-CONTEXT-T from x86-vm
215
216  ("src/code/symbol"     :not-host)
217  ("src/code/bignum"     :not-host)
218  ("src/code/numbers"    :not-host)
219  ("src/code/float-trap" :not-host)
220  ("src/code/float"      :not-host)
221  ("src/code/irrat"      :not-host)
222
223  ("src/code/char")
224  ("src/code/target-char" :not-host)
225  ("src/code/target-misc" :not-host)
226  ("src/code/misc")
227
228  ("src/code/room"   :not-host)
229  ("src/code/gc"     :not-host)
230  ("src/code/purify" :not-host)
231
232  ("src/code/stream"        :not-host)
233  ("src/code/print"         :not-host)
234  ("src/code/pprint"        :not-host) ; maybe should be :BYTE-COMPILE T
235  ("src/code/early-format")
236  ("src/code/target-format" :not-host) ; maybe should be :BYTE-COMPILE T
237  ("src/code/defpackage"    :not-host)
238  ("src/code/pp-backq"      :not-host) ; maybe should be :BYTE-COMPILE T
239
240  ("src/code/error-error" :not-host) ; needs WITH-STANDARD-IO-SYNTAX macro
241
242  ("src/code/serve-event" :not-host)
243  ("src/code/fd-stream"   :not-host)
244
245  ("src/code/module" :not-host) ; maybe should be :BYTE-COMPILE T
246
247  ("src/code/interr" :not-host)
248
249  ("src/code/query"  :not-host) ; maybe should be :BYTE-COMPILE T
250
251  ("src/code/sort"  :not-host)
252  ("src/code/time"  :not-host)
253  ("src/code/weak"  :not-host)
254  ("src/code/final" :not-host)
255
256  #!+mp ("src/code/multi-proc" :not-host)
257
258  ("src/code/setf-funs" :not-host)
259
260  ("src/code/stubs" :not-host)
261
262  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
263  ;;; compiler (and a few miscellaneous files whose dependencies make it
264  ;;; convenient to stick them here)
265
266  ("src/compiler/early-c")
267  ("src/compiler/policy")
268  ("src/code/typedefs")
269
270  ;; ("src/code/defbangmacro" was here until sbcl-0.6.7.3.)
271
272  ("src/compiler/macros")
273  ("src/compiler/generic/vm-macs")
274
275  ;; needed by "compiler/vop"
276  ("src/compiler/sset")
277
278  ;; for e.g. BLOCK-ANNOTATION, needed by "compiler/vop"
279  ("src/compiler/node")
280
281  ;; for e.g. PRIMITIVE-TYPE, needed by "vmdef"
282  ("src/compiler/vop")
283
284  ;; needed by "vm" and "primtype"
285  ("src/compiler/backend")
286
287  ;; for e.g. MAX-VOP-TN-REFS, needed by "meta-vmdef"
288  ("src/compiler/vmdef")
289
290  ;; needs "backend"
291  ("src/compiler/target/backend-parms")
292
293  ;; for INFO and SB!XC:MACRO-FUNCTION, needed by defmacro.lisp
294  ("src/compiler/globaldb")
295  ("src/compiler/info-functions")
296
297  ("src/code/defmacro")
298  ("src/code/force-delayed-defbangmacros")
299
300  ("src/compiler/late-macros")
301
302  ;; for e.g. !DEF-PRIMITIVE-TYPE, needed by primtype.lisp, and
303  ;; DEFINE-STORAGE-CLASS, needed by target/vm.lisp
304  ("src/compiler/meta-vmdef")
305
306  ;; for e.g. DESCRIPTOR-REG, needed by primtype.lisp
307  ("src/compiler/target/vm")
308
309  ;; for e.g. SPECIFIER-TYPE, needed by primtype.lisp
310  ("src/code/early-type")
311
312  ;; FIXME: Classic CMU CL had SAFETY 2 DEBUG 2 set around the compilation
313  ;; of "code/class". Why?
314  ("src/code/class")
315
316  ;; The definitions for CONDITION and CONDITION-CLASS depend on
317  ;; SLOT-CLASS, defined in classes.lisp.
318  ("src/code/condition" :not-host) ; FIXME: maybe should be :BYTE-COMPILE T
319
320  ("src/compiler/generic/primtype")
321
322  ;; the implementation of the compiler-affecting part of forms like
323  ;; DEFMACRO and DEFTYPE; must be loaded before we can start
324  ;; defining types
325  ("src/compiler/parse-lambda-list")
326
327  ;; for DEFSTRUCT ALIEN-TYPE, needed by host-type.lisp
328  ("src/code/host-alieneval")
329
330  ;; can't be done until definition of e.g. DEF-ALIEN-TYPE-CLASS in
331  ;; host-alieneval.lisp
332  ("src/code/host-c-call")
333
334  ;; SB!XC:DEFTYPE is needed in order to compile late-type
335  ;; in the host Common Lisp, and in order to run, it needs
336  ;; %COMPILER-DEFTYPE.
337  ("src/compiler/compiler-deftype")
338
339  ;; These appear here in the build sequence because they require
340  ;;   * the macro INFO, defined in globaldb.lisp, and
341  ;;   * the function PARSE-DEFMACRO, defined in parse-defmacro.lisp,
342  ;; and because they define
343  ;;   * the function SPECIFIER-TYPE, which is used in fndb.lisp.
344  ("src/code/late-type")
345  ("src/code/deftypes-for-target")
346
347  ;; The inline definition of TYPEP-TO-LAYOUT here needs inline
348  ;; functions defined in classes.lisp, and is needed in turn by
349  ;; the target version of "code/defstruct".
350  ("src/code/target-defstruct" :not-host)
351
352  ;; stuff needed by "code/defstruct"
353  ("src/code/cross-type" :not-target)
354  ("src/compiler/generic/vm-type")
355
356  ;; The DEFSTRUCT machinery needs SB!XC:SUBTYPEP, defined in 
357  ;; "code/late-type", and SB!XC:TYPEP, defined in "code/cross-type",
358  ;; and SPECIALIZE-ARRAY-TYPE, defined in "compiler/generic/vm-type".
359  ("src/code/defstruct")
360
361  ;; ALIEN-VALUE has to be defined as a class (done by DEFSTRUCT
362  ;; machinery) before we can set its superclasses here.
363  ("src/code/alien-type")
364
365  ("src/compiler/knownfun")
366
367  ;; needs IR1-ATTRIBUTES macro, defined in knownfun.lisp
368  ("src/compiler/proclaim")
369
370  ;; This needs not just the SB!XC:DEFSTRUCT machinery, but also
371  ;; the TYPE= stuff defined in late-type.lisp, and the
372  ;; CHECK-FUNCTION-NAME defined in proclaim.lisp.
373  ("src/code/force-delayed-defbangstructs")
374
375  ("src/code/typep")
376
377  ("src/compiler/compiler-error")
378
379  ("src/code/type-init")
380
381  ;; These define target types needed by fndb.lisp.
382  ("src/code/package")
383  ("src/code/random")
384  ("src/code/hash-table")
385  ("src/code/readtable")
386  ("src/code/pathname")
387  ("src/compiler/lexenv")
388
389  ;; KLUDGE: Much stuff above here is the type system and/or the INFO
390  ;; system, not really the compiler proper. It might be easier to
391  ;; understand the system if those things were split off into packages
392  ;; SB-TYPE and SB-INFO and built in their own sections. -- WHN 20000124
393
394  ;; In classic CMU CL (re)build order, these were done later, but
395  ;; in building from scratch, these must be loaded before
396  ;; "compiler/generic/objdef" in order to allow forms like
397  ;; (DEFINE-PRIMITIVE-OBJECT (..) (CAR ..) ..) to work.
398  ("src/compiler/fndb")
399  ("src/compiler/generic/vm-fndb")
400
401  ("src/compiler/generic/objdef")
402
403  ("src/compiler/generic/interr")
404
405  ("src/compiler/bit-util")
406
407  ;; This has ASSEMBLY-UNIT-related stuff needed by core.lisp.
408  ("src/compiler/early-assem") 
409
410  ;; core.lisp contains DEFSTRUCT CORE-OBJECT, and "compiler/main.lisp"
411  ;; does lots of (TYPEP FOO 'CORE-OBJECT), so it's nice to compile this
412  ;; before "compiler/main.lisp" so that those can be coded efficiently
413  ;; (and so that they don't cause lots of annoying compiler warnings
414  ;; about undefined types). 
415  ("src/compiler/generic/core")
416
417  ("src/code/load")
418
419  ("src/code/fop") ; needs macros from code/load.lisp
420
421  ("src/compiler/ctype")
422  ("src/compiler/disassem")
423  ("src/compiler/assem")
424
425  ("src/compiler/trace-table") ; needs EMIT-LABEL macro from compiler/assem.lisp
426
427  ;; Compiling this requires fop definitions from code/fop.lisp and
428  ;; trace table definitions from compiler/trace-table.lisp.
429  ("src/compiler/dump")
430
431  ("src/compiler/main") ; needs DEFSTRUCT FASL-OUTPUT from dump.lisp
432  ("src/compiler/target-main" :not-host)
433  ("src/compiler/ir1tran")
434  ("src/compiler/ir1-translators")
435  ("src/compiler/ir1util")
436  ("src/compiler/ir1report")
437  ("src/compiler/ir1opt")
438
439  ;; Compiling this file requires the macros SB!ASSEM:EMIT-LABEL and
440  ;; SB!ASSEM:EMIT-POST-IT, defined in assem.lisp.
441  ("src/compiler/late-vmdef")
442
443  ("src/compiler/ir1final")
444  ("src/compiler/array-tran")
445  ("src/compiler/seqtran")
446  ("src/compiler/typetran")
447  ("src/compiler/generic/vm-typetran")
448  ("src/compiler/float-tran")
449  ("src/compiler/saptran")
450  ("src/compiler/srctran")
451  ("src/compiler/locall")
452  ("src/compiler/dfo")
453  ("src/compiler/checkgen")
454  ("src/compiler/constraint")
455  ("src/compiler/envanal")
456
457  ("src/compiler/tn")
458  ("src/compiler/life")
459
460  ("src/code/debug-info")
461
462  ("src/compiler/debug-dump")
463  ("src/compiler/generic/utils")
464  ("src/assembly/assemfile")
465
466  ("src/compiler/fixup") ; for DEFSTRUCT FIXUP, used by insts.lisp
467
468  ("src/compiler/target/insts")
469  ("src/compiler/target/macros")
470
471  ("src/assembly/target/support")
472
473  ("src/compiler/target/move")
474  ("src/compiler/target/float")
475  ("src/compiler/target/sap")
476  ("src/compiler/target/system")
477  ("src/compiler/target/char")
478  ("src/compiler/target/memory")
479  ("src/compiler/target/static-fn")
480  ("src/compiler/target/arith")
481  ("src/compiler/target/subprim")
482
483  ("src/compiler/target/debug")
484  ("src/compiler/target/c-call")
485  ("src/compiler/target/cell")
486  ("src/compiler/target/values")
487  ("src/compiler/target/alloc")
488  ("src/compiler/target/call")
489  ("src/compiler/target/nlx")
490  ("src/compiler/target/show")
491  ("src/compiler/target/array"
492   ;; KLUDGE: Compiling this file raises alarming warnings of the form
493   ;;    Argument FOO to VOP CHECK-BOUND has SC restriction
494   ;;    DESCRIPTOR-REG which is not allowed by the operand type:
495   ;;      (:OR POSITIVE-FIXNUM)
496   ;; This seems not to be something that I broke, but rather a "feature"
497   ;; inherited from classic CMU CL. (Debian cmucl_2.4.8.deb compiling
498   ;; Debian cmucl_2.4.8.tar.gz raises the same warning). Thus, even though
499   ;; these warnings are severe enough that they would ordinarily abort
500   ;; compilation, for now we blithely ignore them and press on to more
501   ;; pressing problems. Someday, though, it would be nice to figure out
502   ;; what the problem is and fix it.. -- WHN 19990323
503   :ignore-failure-p)
504  ("src/compiler/target/pred")
505  ("src/compiler/target/type-vops")
506
507  ("src/assembly/target/assem-rtns" :assem)
508  ("src/assembly/target/array"      :assem)
509  ("src/assembly/target/arith"      :assem)
510  ("src/assembly/target/alloc"      :assem)
511
512  ("src/compiler/pseudo-vops")
513
514  ("src/compiler/aliencomp")
515
516  ("src/compiler/ltv")
517  ("src/compiler/gtn")
518  ("src/compiler/ltn")
519  ("src/compiler/stack")
520  ("src/compiler/control")
521  ("src/compiler/entry")
522  ("src/compiler/ir2tran")
523
524  ("src/compiler/generic/vm-ir2tran")
525
526  ("src/compiler/copyprop")
527  ("src/compiler/represent")
528  ("src/compiler/generic/vm-tran")
529  ("src/compiler/pack")
530  ("src/compiler/codegen")
531  ("src/compiler/debug")
532
533  #!+sb-dyncount ("src/compiler/dyncount")
534  #!+sb-dyncount ("src/code/dyncount")
535
536  ;; needed by OPEN-FASL-OUTPUT, which is called by COMPILE-FILE
537  ("src/code/format-time")
538
539  ;; needed by various unhappy-path cases in the cross-compiler
540  ("src/code/error")
541
542  ;; This wasn't in classic CMU CL "comcom.lisp", but it has some stuff
543  ;; that Python-as-cross-compiler has turned out to need.
544  ("src/code/macroexpand")
545
546  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
547  ;; files which depend in some way (directly or indirectly) on stuff
548  ;; compiled as part of the compiler
549
550  ("src/code/late-extensions") ; needs condition system
551  ("src/compiler/generic/target-core" :not-host) ; uses stuff from
552                                                 ;   "compiler/generic/core"
553
554  ("src/code/eval"              :not-host) ; uses INFO, wants compiler macro
555  ("src/code/target-sap"        :not-host) ; uses SAP-INT-TYPE
556  ("src/code/target-package"    :not-host) ; needs "code/package"
557  ("src/code/target-random"     :not-host) ; needs "code/random"
558  ("src/code/target-hash-table" :not-host) ; needs "code/hash-table"
559  ("src/code/reader"            :not-host) ; needs "code/readtable"
560  ("src/code/target-pathname"   :not-host) ; needs "code/pathname", maybe 
561                                           ;   should be :BYTE-COMPILE T
562  ("src/code/filesys"           :not-host) ; needs HOST from "code/pathname",
563                                           ;   maybe should be :BYTE-COMPILE T
564  ("src/code/save"              :not-host) ; uses the definition of PATHNAME
565                                           ;   from "code/pathname"
566  ("src/code/sharpm"            :not-host) ; uses stuff from "code/reader"
567
568  ;; stuff for byte compilation
569  ;;
570  ;; This is mostly :NOT-HOST because even though byte code is
571  ;; "portable", it'd be hard to make it work on the cross-compilation
572  ;; host, because fundamental BYTE-FUNCTION-OR-CLOSURE types are
573  ;; implemented as FUNCALLABLE-INSTANCEs, and it's not obvious how to
574  ;; emulate those in a vanilla ANSI Common Lisp.
575  #| ; FIXME: byte compiler to go away completely
576  ("src/code/byte-types" :not-host)
577  ("src/compiler/byte-comp")
578  ("src/compiler/target-byte-comp" :not-host)
579  ("src/code/byte-interp" :not-host) ; needs byte-comp *SYSTEM-CONSTANT-CODES*
580  |#
581
582  ;; defines SB!DI:DO-DEBUG-FUNCTION-BLOCKS, needed by target-disassem.lisp
583  ("src/code/debug-int" :not-host)
584
585  ;; target-only assemblerish stuff
586  ("src/compiler/target-disassem"     :not-host)
587  ("src/compiler/target/target-insts" :not-host)
588
589  ("src/code/debug" :not-host) ; maybe should be :BYTE-COMPILE T
590
591  ;; These can't be compiled until CONDITION and DEFINE-CONDITION
592  ;; are defined, and they also use SB-DEBUG:*STACK-TOP-HINT*.
593  ("src/code/parse-defmacro-errors" :not-host)
594
595  ("src/code/bit-bash"    :not-host) ; needs %NEGATE from assembly/target/arith
596
597  ("src/code/target-load" :not-host) ; needs specials from code/load.lisp
598
599  ;; FIXME: Does this really need stuff from compiler/dump.lisp?
600  ("src/compiler/target-dump" :not-host) ; needs stuff from compiler/dump.lisp
601
602  ("src/code/cold-init" :not-host ; needs (SETF EXTERN-ALIEN) macroexpansion
603   ;; FIXME: When building sbcl-0.pre7.14.flaky4.5 under sbcl-0.6.12.1
604   ;; with :SB-SHOW on the target *FEATURES* list, cross-compilation of
605   ;; this file gives a WARNING in HEXSTR,
606   ;;   Lisp error during constant folding:
607   ;;   Argument X is not a REAL: NIL
608   ;; This seems to come from DEF!MACRO %WITH-ARRAY-DATA-MACRO code
609   ;; which looks like
610   ;;     (cond (,end
611   ;;            (unless (or ,unsafe? (<= ,end ,size))
612   ;;              ..))
613   ;;           ..)
614   ;; where the system is trying to constant-fold the <= form when the
615   ;; ,END binding is known to be NIL at compile time. Since the <= form 
616   ;; is unreachable in that case, this shouldn't be signalling a WARNING;
617   ;; but as long as it is, we have to ignore it in order to go on.
618   :ignore-failure-p)
619
620  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
621  ;; target macros and DECLAIMs installed at build-the-cross-compiler time
622
623  ;; Declare all target special variables defined by ANSI now, so that
624  ;; we don't have to worry about any of them being bound incorrectly
625  ;; when the compiler processes code which appears before the appropriate
626  ;; DEFVAR or DEFPARAMETER.
627  ("src/code/cl-specials")
628
629  ;; fundamental target macros (e.g. CL:DO and CL:DEFUN) and support
630  ;; for them
631  ;;
632  ;; FIXME: Since a lot of this code is just macros, perhaps it should be
633  ;; byte compiled?
634  ("src/code/defboot")
635  ("src/code/destructuring-bind")
636  ("src/code/early-setf")
637  ("src/code/macros")
638  ("src/code/loop")
639  ("src/code/late-setf")
640
641  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
642
643  ;; other target-code-building stuff which can't be processed until
644  ;; machinery like SB!XC:DEFMACRO exists
645
646  ("src/code/late-format") ; needs SB!XC:DEFMACRO
647  ("src/code/sxhash") ; needs SB!XC:DEFINE-MODIFY-MACRO
648  ("src/code/signal")
649  ("src/code/late-defbangmethod"))