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