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