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