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