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