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