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