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