3 ;;;; This software is part of the SBCL system. See the README file for
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.
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
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.)
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
38 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
40 ;; This comes as early as possible, so that we catch the source locations
42 ("src/code/early-source-location" :c-headers)
43 ("src/code/cross-early" :c-headers :not-target)
45 ;; This comes early because it's useful for debugging everywhere.
46 ("src/code/show" :c-headers)
47 ("src/compiler/early-constantp" :c-headers)
48 ("src/code/defsetfs" :not-host)
50 ;; Declare all target special variables defined by ANSI
51 ("src/code/cl-specials" :not-host)
53 ;; Things like DX-FLET and AWHEN are available for use in both the host
54 ;; and target very early, with no DEF! obfuscation necessary.
55 ("src/code/primordial-extensions" :c-headers)
56 ("src/code/cold-init-helper-macros" :c-headers)
57 ("src/code/early-defmethod" :not-host)
59 ;; ASAP we replace the host's backquote reader with our own, to avoid leaking
60 ;; details of the host into the target. This is not a concern in make-host-2
61 ;; becase IN-TARGET-CROSS-COMPILATION-MODE assigns the reader macros before
62 ;; compiling anything. It is, however, a minor concern for make-host-1, but
63 ;; usually a problem can be exposed only by contrived code / poor style.
64 ;; e.g. if the host's reader were used when compiling
65 ;; (EVAL-WHEN (#-SB-XC :COMPILE-TOPLEVEL :LOAD-TOPLEVEL :EXECUTE)
66 ;; (DEFUN A-MACRO-HELPER () '`(FOO ,A ,B))
67 ;; then A-MACRO-HELPER returns host code, and calling it might be wrong, either
68 ;; obviously or subtly. If the result is (LIST* 'FOO (LIST* A (LIST B)))
69 ;; then it's subtly wrong because it might not be the optimal strategy;
70 ;; whereas if it's (BACKQUOTE (FOO (UNQUOTE A) (UNQUOTE B))) then it's
71 ;; flat out wrong. At any rate, judicious avoidance of EVAL-WHEN and nested
72 ;; quasiquotation in 'primordial-extensions' prevents any such issues.
75 ;; It's difficult to be too early with a DECLAIM SPECIAL (or DEFVAR
76 ;; or whatever) thanks to the sullenly-do-the-wrong-thing semantics
77 ;; of CL special binding when the variable is undeclared.
78 ("src/code/globals" :not-host)
80 ("src/code/cmacros" :not-host :slam-forcibly)
82 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
83 ;;; cross-compiler-only replacements for stuff which in target Lisp would be
84 ;;; supplied by basic machinery
86 ("src/code/cross-byte" :c-headers :not-target)
87 ("src/code/cross-misc" :c-headers :not-target)
88 ("src/code/cross-char" :c-headers :not-target)
89 ("src/code/cross-float" :not-target)
90 ("src/code/cross-io" :not-target)
91 ("src/code/cross-thread" :c-headers :not-target)
92 ("src/code/cross-condition" :not-target)
94 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
95 ;;; stuff needed early both in cross-compilation host and in target Lisp
97 ("src/code/uncross" :c-headers)
99 ("src/code/defbangtype" :c-headers)
100 ("src/code/defbangconstant" :c-headers)
101 ("src/code/early-constants" :c-headers) ; needs DEF!CONSTANT
103 ("src/compiler/deftype" :c-headers) ; on host for SB!XC:DEFTYPE
104 ("src/compiler/early-lexenv" :c-headers)
105 ("src/compiler/early-globaldb" :c-headers)
107 ;; comes early so that stuff can reason about function names
108 ("src/code/function-names" :c-headers)
110 ;; for various constants e.g. SB!XC:MOST-POSITIVE-FIXNUM and
111 ;; SB!VM:N-LOWTAG-BITS, needed by "early-objdef" and others
112 ("src/compiler/target/backend-parms" :c-headers)
113 ("src/compiler/generic/parms" :c-headers)
114 ("src/compiler/target/parms" :c-headers)
115 ("src/compiler/generic/early-vm" :c-headers)
116 ("src/compiler/generic/early-objdef" :c-headers)
117 ("src/code/early-array" :c-headers) ; needs "early-vm" numbers
119 ("src/code/kernel" :not-host)
120 ;; This has the BARRIER stuff that the threading support needs,
121 ;; required for some code in 'early-extensions'
122 ("src/code/barrier" :not-host)
123 ("src/code/parse-body" :c-headers) ; on host for PARSE-BODY
124 ("src/code/unportable-float")
125 ("src/compiler/policy" :c-headers :slam-forcibly)
126 #!+sb-fasteval ("src/interpreter/basic-env")
127 ;; PARSE-{UNKNOWN,DEPRECATED}-TYPE and other things should be known
128 ;; condition subtypes as soon as possible
129 ("src/code/condition-boot" :not-host)
130 ("src/code/early-extensions" :c-headers) ; on host for COLLECT, SYMBOLICATE, etc.
131 ("src/compiler/parse-lambda-list" :c-headers)
132 ("src/code/restart" :not-host) ; %DEFCONSTANT can bind a restart
134 ("src/code/specializable-array")
136 ("src/code/early-cl")
137 ("src/code/ansi-stream" :not-host)
138 ("src/code/early-fasl" :c-headers)
140 ("src/code/defbangstruct" :c-headers)
141 ("src/code/early-thread")
142 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
143 ;;; basic machinery for the target Lisp. Note that although most of these
144 ;;; files are flagged :NOT-HOST, a few might not be.
146 ("src/code/early-print" :not-host)
147 ("src/code/early-pprint" :not-host)
148 ("src/code/early-impl" :not-host)
150 ("src/code/target-extensions" :not-host)
152 ;; Needed before the first use of WITH-SINGLE-PACKAGE-LOCKED-ERROR.
153 ("src/code/early-package" :not-host)
155 ("src/compiler/defconstant")
157 ("src/code/early-raw-slots" :c-headers)
159 ("src/code/funutils" :not-host)
161 ("src/code/maphash" :not-host :slam-forcibly)
162 ("src/code/xset" :c-headers) ; for representation of MEMBER type
163 ;; This needs DEF!STRUCT, and is itself needed early so that structure
164 ;; accessors and inline functions defined here can be compiled inline
165 ;; later. (Avoiding full calls increases efficiency)
166 ("src/code/type-class" :c-headers)
167 ("src/code/early-alieneval") ; for funs and vars needed at build and run time
169 ("src/code/cas" :not-host)
170 ("src/compiler/early-c" :c-headers)
171 ("src/compiler/fun-info" :c-headers)
172 ("src/pcl/slot-name") ; for calls from 'info-vector'
173 ;; 'info-vector' is needed at least as early as 'fdefinition' so that the
174 ;; inlined INFO-VECTOR-FDEFINITION is available to %COERCE-CALLABLE-TO-FUN.
175 ("src/code/signal" :not-host)
176 ("src/code/target-lfhash" :not-host)
177 ("src/compiler/info-vector" :c-headers)
178 ("src/compiler/globaldb" :c-headers)
179 ("src/code/primordial-type" :c-headers)
180 ("src/code/early-classoid" :c-headers)
182 ("src/code/sysmacs" :not-host)
184 ("src/code/target-error" :not-host)
186 ;; "src/code/toplevel.lisp" is the first to need this. It's generated
187 ;; automatically by grovel_headers.c, i.e. it's not under source control.
188 ("output/stuff-groveled-from-headers" :not-host)
190 ("src/code/cold-error" :not-host)
191 ("src/code/fdefinition" :not-host)
193 ("src/compiler/generic/vm-array" :c-headers)
194 ("src/code/weak" :not-host)
195 ;; 'target-alieneval' needs FILL-POINTER which is defined in 'array'
196 ("src/code/array" :not-host) ; needs WEAK-POINTER-VALUE
197 ("src/code/pred" :not-host)
198 ("src/code/debug-var-io")
200 ("src/code/target-alieneval" :not-host)
201 ("src/code/target-c-call" :not-host)
202 ("src/code/target-allocate" :not-host)
204 ;; This needs DEFINE-ALIEN-ROUTINE from target-alieneval.
205 ("src/code/misc-aliens" :not-host)
207 ("src/code/early-float" :not-host)
208 ("src/pcl/early-low" :not-host)
209 ;; Define at most one INTERPRETED-FUNCTION type based on target features
210 #!+sb-eval ("src/code/early-full-eval" :not-host)
211 #!+sb-fasteval ("src/interpreter/function" :not-host)
213 ("src/code/target-sxhash" :not-host) ; needs most-fooative-foo-float constants
215 ("src/code/list" :not-host)
216 ("src/code/seq" :not-host) ; "code/seq" should come after "code/list".
217 ("src/code/coerce" :not-host)
219 ("src/code/char" :c-headers)
221 ("src/code/target-char" :not-host)
222 ("src/code/target-unicode" :not-host)
223 ("src/code/string" :not-host)
224 ("src/code/mipsstrops" :not-host)
226 ("src/code/early-time" :c-headers)
227 ("src/code/unix" :not-host)
228 #!+win32 ("src/code/win32" :not-host)
229 #!+mach ("src/code/mach" :not-host)
231 #!+android ("src/code/android-os" :not-host)
232 #!+mach ("src/code/mach-os" :not-host)
233 #!+sunos ("src/code/sunos-os" :not-host)
234 #!+hpux ("src/code/hpux-os" :not-host)
235 #!+osf1 ("src/code/osf1-os" :not-host)
236 #!+irix ("src/code/irix-os" :not-host)
237 #!+bsd ("src/code/bsd-os" :not-host)
238 #!+linux ("src/code/linux-os" :not-host)
239 #!+win32 ("src/code/win32-os" :not-host)
241 ;; sparc-vm and ppc-vm need sc-offset defined to get at internal
242 ;; error args. This file contains stuff previously in
243 ;; debug-info.lisp. Should it therefore be :not-host? -- CSR,
245 ("src/code/sc-offset" :c-headers)
247 ("src/code/share-vm" :not-host)
249 ("src/code/thread" :not-host) ; provides *CURRENT-THREAD* for target-signal
250 ("src/code/target-signal-common" :not-host)
251 #!-win32 ("src/code/target-signal" :not-host) ; needs OS-CONTEXT-T from share-vm
252 #!+win32 ("src/code/target-exception" :not-host)
254 ("src/code/bignum" :not-host)
255 ("src/code/numbers" :not-host)
256 ("src/code/float-trap" :not-host)
257 ("src/code/float" :not-host)
258 ("src/code/irrat" :not-host)
260 ("src/code/misc" :c-headers)
262 ("src/code/symbol" :not-host)
263 ("src/code/late-cas" :not-host)
264 ("src/code/fd-stream" :not-host)
265 ("src/code/stream" :not-host)
266 ("src/code/early-format")
268 ("src/code/error-error" :not-host) ; needs WITH-STANDARD-IO-SYNTAX macro
269 ("src/code/common-os" :not-host)
271 ("src/code/deadline" :not-host)
272 ("src/code/serve-event" :not-host)
274 ("src/code/query" :not-host)
276 ("src/code/sort" :not-host)
277 ("src/code/time" :not-host)
278 ("src/code/final" :not-host)
280 ("src/code/exhaust" :not-host)
282 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
283 ;;; compiler (and a few miscellaneous files whose dependencies make it
284 ;;; convenient to stick them here)
286 ("src/compiler/policies")
288 ("src/compiler/macros" :c-headers)
290 ("src/compiler/constantp" :c-headers)
291 ("src/compiler/info-functions" :c-headers)
293 ("src/compiler/generic/vm-macs" :c-headers)
294 ("src/compiler/generic/objdef" :c-headers)
296 ;; needed by "compiler/vop"
297 ("src/compiler/sset" :c-headers)
298 ("src/code/early-type" :c-headers)
300 ;; for e.g. BLOCK-ANNOTATION, needed by "compiler/vop"
301 ("src/compiler/node" :c-headers)
302 ;; RECONSTRUCT-LEXENV needs types GLOBAL-VAR and DEFINED-FUN
303 ("src/compiler/lexenv")
305 ;; This has ASSEMBLY-UNIT-related stuff needed by core.lisp.
306 ;; and LABEL, needed by IR2-NLX-INFO
307 ("src/compiler/early-assem")
309 ;; for e.g. PRIMITIVE-TYPE, needed by "vmdef"
310 ("src/compiler/vop" :c-headers)
311 ("src/compiler/constant-leaf")
313 ;; needed by "vm" and "primtype"
314 ("src/compiler/backend" :c-headers)
316 ;; for e.g. MAX-VOP-TN-REFS, needed by "meta-vmdef"
317 ("src/compiler/vmdef" :c-headers)
319 ("src/code/force-delayed-defbangconstants")
320 ("src/code/defmacro" :c-headers)
321 ("src/code/destructuring-bind" :c-headers)
323 ;; for e.g. !DEF-PRIMITIVE-TYPE, needed by primtype.lisp, and
324 ;; DEFINE-STORAGE-CLASS, needed by target/vm.lisp
325 ("src/compiler/meta-vmdef" :c-headers)
327 ("src/compiler/fixup") ; for DEFSTRUCT FIXUP, needed by generic/core
328 ("src/compiler/generic/core") ; for CORE-OBJECT-P, needed by x86-64/vm
330 ;; for e.g. DESCRIPTOR-REG, needed by primtype.lisp
331 ("src/compiler/target/vm" :c-headers)
333 ;; KLUDGE: I'd prefer to have this done with a "code/target" softlink
334 ;; instead of a bunch of reader macros. -- WHN 19990308
335 #!+sparc ("src/code/sparc-vm")
336 #!+hppa ("src/code/hppa-vm")
337 #!+x86 ("src/code/x86-vm" :not-host)
338 #!+x86-64("src/code/x86-64-vm" :not-host)
339 #!+ppc ("src/code/ppc-vm")
340 #!+alpha ("src/code/alpha-vm")
341 #!+mips ("src/code/mips-vm")
342 #!+arm ("src/code/arm-vm")
343 #!+arm64 ("src/code/arm64-vm")
345 ;; RANDOM-LAYOUT-CLOS-HASH (in 'class') uses RANDOM, the transform for which
346 ;; uses GENERATE-RANDOM-EXPR-FOR-POWER-OF-2 which becomes BIG-RANDOM-CHUNK,
347 ;; which wants to be inlined, and which when inlined becomes RANDOM-CHUNK,
348 ;; which also wants to be inlined.
349 ("src/code/target-random" :not-host)
350 ;; META-FIXME: I think I figured out why this was, and fixed that,
351 ;; and never removed the following comment, nor can I remember why.
352 ;; FIXME: Classic CMU CL had (OPTIMIZE (SAFETY 2) (DEBUG 2) declared
353 ;; around the compilation of "code/class". Why?
354 ("src/code/class" :c-headers)
356 ("src/pcl/low" :not-host)
358 ("src/code/debug-info" :c-headers)
359 ("src/code/source-location")
360 ("src/code/early-class")
361 ("src/code/condition" :not-host)
362 ("src/code/toplevel" :not-host)
363 ("src/code/parse-defmacro-errors")
364 ("src/code/format-directive")
365 ;; Target-only stuff should usually be compiled late unless it has
366 ;; compile-time side-effects. This file could probably be later,
367 ;; but should certainly be no earlier than the definitions
368 ;; of FORMAT-ERROR and FORMAT-DIRECTIVE.
369 ("src/code/target-format" :not-host)
371 ("src/compiler/generic/primtype" :c-headers)
373 ;; for DEFSTRUCT ALIEN-TYPE, needed by host-type.lisp
374 ("src/code/host-alieneval")
376 ;; can't be done until definition of e.g. DEFINE-ALIEN-TYPE-CLASS in
377 ;; host-alieneval.lisp
378 ("src/code/host-c-call")
380 ;; SB!XC:DEFTYPE is needed in order to compile late-type
381 ;; in the host Common Lisp, and in order to run, it needs
382 ;; %COMPILER-DEFTYPE.
383 ("src/compiler/compiler-deftype" :c-headers)
385 ;; These appear here in the build sequence because they require
386 ;; * the macro INFO, defined in globaldb.lisp, and
387 ;; * the function PARSE-DEFMACRO, defined in parse-defmacro.lisp,
388 ;; and because they define
389 ;; * the function SPECIFIER-TYPE, which is used in fndb.lisp.
390 ("src/code/late-type" :c-headers)
391 ;; Compile target-only stuff after all defglobals like *CONS-T-T-TYPE*
392 ;; and all type-classes are defined.
393 ("src/code/target-type" :not-host)
394 ("src/code/deftypes-for-target" :c-headers)
396 ;; defines IR1-ATTRIBUTES macro, needed by proclaim.lisp
397 ("src/compiler/knownfun")
399 ;; needs FUN-INFO structure slot setters, defined in knownfun.lisp
400 ("src/compiler/fun-info-funs")
402 ;; stuff needed by "code/defstruct"
403 ("src/code/cross-type" :c-headers :not-target)
404 ("src/compiler/generic/vm-type" :c-headers)
405 ("src/compiler/proclaim" :c-headers)
407 ("src/code/class-init" :c-headers)
409 ;; The DEFSTRUCT machinery needs SB!XC:SUBTYPEP, defined in
410 ;; "code/late-type", and SB!XC:TYPEP, defined in "code/cross-type",
411 ;; and SPECIALIZE-ARRAY-TYPE, defined in "compiler/generic/vm-type",
412 ;; and SB!XC:PROCLAIM, defined in "src/compiler/proclaim"
413 ;; FIXME: #+ should be (and sb-xc-host) but it isn't set yet.
414 ("src/code/defstruct" :c-headers #+cmucl :ignore-failure-p)
415 ("src/code/target-defstruct" :not-host)
417 ;; ALIEN-VALUE has to be defined as a class (done by DEFSTRUCT
418 ;; machinery) before we can set its superclasses here.
419 ("src/code/alien-type")
421 ;; This needs not just the SB!XC:DEFSTRUCT machinery, but also
422 ;; the TYPE= stuff defined in late-type.lisp, and the
423 ;; CHECK-FUN-NAME defined in proclaim.lisp.
424 ("src/code/force-delayed-defbangstructs" :c-headers)
426 ("src/code/typep" :not-host)
428 ("src/compiler/compiler-error")
430 ("src/code/type-init")
431 ;; Now that the type system is initialized, fix up UNKNOWN types that
433 ("src/compiler/fixup-type")
435 ;; These define target types needed by fndb.lisp.
436 ("src/code/package" :c-headers)
438 ("src/code/hash-table" :c-headers)
439 ("src/code/readtable")
440 ("src/code/pathname")
442 ("src/compiler/fndb")
443 ("src/compiler/generic/vm-fndb")
445 ("src/compiler/generic/late-objdef" :c-headers)
447 ("src/compiler/generic/interr" :c-headers)
449 ("src/compiler/bit-util")
453 #!+linkage-table ("src/code/linkage-table" :not-host)
454 #!+os-provides-dlopen ("src/code/foreign-load" :not-host)
455 #!+(and os-provides-dlopen (not win32)) ("src/code/unix-foreign-load" :not-host)
456 #!+(and os-provides-dlopen win32) ("src/code/win32-foreign-load" :not-host)
459 ("src/code/fop") ; needs macros from code/load.lisp
461 ("src/compiler/ctype")
462 ("src/compiler/disassem")
463 ("src/compiler/assem")
465 ;; Compiling this requires fop definitions from code/fop.lisp and
466 ("src/compiler/dump")
468 ("src/compiler/ir1report") ; for COMPILER-ERROR-CONTEXT
469 ("src/compiler/main") ; needs DEFSTRUCT FASL-OUTPUT from dump.lisp
470 ("src/compiler/xref")
471 ("src/compiler/target-main" :not-host)
472 ("src/compiler/ir1tran")
473 ("src/compiler/ir1tran-lambda")
474 ("src/compiler/ir1-translators")
475 ;; FIXME: #+ should be (and sb-xc-host) but it isn't set yet.
476 ("src/compiler/ir1util" #+cmucl :ignore-failure-p)
477 ("src/compiler/callable-args")
478 ("src/compiler/ir1opt")
479 ("src/compiler/loop")
481 ("src/compiler/ir1final")
482 ("src/compiler/array-tran")
483 ("src/compiler/seqtran")
484 ("src/compiler/typetran")
485 ("src/compiler/generic/vm-typetran")
486 ("src/compiler/float-tran")
487 ("src/compiler/saptran")
488 ("src/compiler/srctran")
489 ("src/code/quantifiers")
490 ("src/compiler/bitops-derive-type")
491 ("src/compiler/generic/vm-tran")
492 ("src/compiler/locall")
495 ("src/compiler/checkgen")
496 ("src/compiler/constraint")
497 ("src/compiler/physenvanal")
500 ("src/compiler/life")
502 ("src/compiler/debug-dump")
503 ("src/compiler/generic/utils" :c-headers)
504 ("src/compiler/fopcompile")
506 ("src/assembly/assemfile" :not-target)
508 ;; Compiling this file requires the macros SB!ASSEM:EMIT-LABEL and
509 ;; SB!ASSEM:EMIT-POST-IT, defined in assem.lisp, and also possibly
510 ;; the definition of the LOCATION-INFO structure (if structures in
511 ;; the host lisp have setf expanders rather than setf functions).
512 ("src/compiler/late-vmdef")
514 ("src/compiler/target/insts")
515 ("src/compiler/target/macros")
516 ("src/compiler/generic/pinned-objects")
517 ("src/compiler/generic/early-type-vops")
519 ("src/assembly/target/support")
521 ("src/compiler/target/move")
522 ("src/compiler/target/float")
524 ("src/compiler/target/simd-pack")
525 ("src/compiler/target/sap")
526 ("src/compiler/target/system")
527 ("src/compiler/target/char")
528 ("src/compiler/target/memory")
529 ("src/compiler/target/arith"
530 ;; KLUDGE: for ppc and sparc this appears to be necessary, as it
531 ;; used to be for array VOPs for X86 until ca. 0.8.5.24 when CSR's
532 ;; patch for that architecture was finally committed
534 ;; old (0.8.5.23) comment on the array-VOP hack for X86:
535 ;; x Compiling this file for X86 raises alarming warnings of
537 ;; x Argument FOO to VOP CHECK-BOUND has SC restriction
538 ;; x DESCRIPTOR-REG which is not allowed by the operand type:
539 ;; x (:OR POSITIVE-FIXNUM)
540 ;; x This seems not to be something that I broke, but rather a "feature"
541 ;; x inherited from classic CMU CL. (Debian cmucl_2.4.8.deb compiling
542 ;; x Debian cmucl_2.4.8.tar.gz raises the same warning). Thus, even though
543 ;; x these warnings are severe enough that they would ordinarily abort
544 ;; x compilation, for now we blithely ignore them and press on to more
545 ;; x pressing problems. Someday, though, it would be nice to figure out
546 ;; x what the problem is and fix it.
547 #!+(or ppc) :ignore-failure-p)
548 ("src/code/cross-modular" :not-target)
550 ("src/compiler/generic/late-type-vops") ;; KLUDGE: it's not so late anymore
551 ("src/compiler/target/type-vops")
553 ("src/compiler/target/subprim")
554 ("src/compiler/target/debug")
555 ;; src/compiler/sparc/c-call contains a deftransform for
556 ;; %ALIEN-FUNCALL -- CSR
557 ("src/compiler/early-aliencomp")
558 ("src/compiler/target/c-call")
559 ("src/compiler/target/cell")
560 ("src/compiler/target/values")
561 ("src/compiler/target/alloc")
562 ("src/compiler/target/call")
563 ("src/compiler/target/nlx")
564 ("src/compiler/generic/late-nlx")
565 ("src/compiler/target/show")
566 ("src/compiler/target/array")
567 ("src/compiler/generic/type-error")
568 ("src/compiler/target/pred")
570 ;; KLUDGE: The assembly files need to be compiled twice: once as
571 ;; normal lisp files, and once by sb-c:assemble-file. We use a
572 ;; different suffix / "file type" for the :assem versions to make
573 ;; sure we don't scribble over anything we shouldn't.
575 ("src/assembly/target/assem-rtns")
576 ("src/assembly/target/array")
577 ("src/assembly/target/arith")
578 ("src/assembly/target/alloc")
579 ;; assembly files are all loaded by genesis before any compiled files.
580 ("src/assembly/target/tramps" :assem :not-host)
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)
586 ("src/compiler/pseudo-vops")
588 ("src/compiler/aliencomp")
593 ("src/compiler/stack")
594 ("src/compiler/control")
595 ("src/compiler/entry")
596 ("src/compiler/ir2tran")
598 ("src/compiler/generic/vm-ir2tran")
600 ("src/compiler/copyprop")
601 ("src/compiler/represent")
602 ("src/compiler/ir2opt")
603 ("src/compiler/pack")
604 ("src/compiler/pack-iterative")
605 ("src/compiler/codegen")
606 ("src/compiler/debug")
608 #!+sb-dyncount ("src/compiler/dyncount")
609 #!+sb-dyncount ("src/code/dyncount")
611 ;; needed by OPEN-FASL-OUTPUT, which is called by COMPILE-FILE
612 ("src/code/format-time")
614 ;; needed by various unhappy-path cases in the cross-compiler
617 ;; This wasn't in classic CMU CL "comcom.lisp", but it has some stuff
618 ;; that Python-as-cross-compiler has turned out to need.
619 ("src/code/macroexpand")
621 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
622 ;; files which depend in some way (directly or indirectly) on stuff
623 ;; compiled as part of the compiler
625 ("src/code/late-extensions") ; needs condition system
626 ("src/compiler/generic/target-core" :not-host) ; uses stuff from
627 ; "compiler/generic/core"
629 ("src/code/eval" :not-host) ; uses INFO, wants compiler macro
630 ("src/code/target-sap" :not-host) ; uses SAP-INT type
631 ("src/code/target-package" :not-host) ; needs "code/package"
632 ("src/code/module" :not-host)
633 ("src/code/bignum-random" :not-host) ; needs "code/random" and
635 ("src/code/target-hash-table" :not-host) ; needs "code/hash-table"
636 ("src/code/host-pprint") ; defines QUEUED-OP needed by 'pprint'
637 ("src/code/pprint" :not-host) ; defines WITH-PRETTY-STREAM needed by 'print'
638 ("src/code/print" :not-host)
639 ("src/code/reader" :not-host) ; needs "code/readtable"
640 ("src/code/target-stream" :not-host) ; needs WHITESPACEP from "code/reader"
641 ("src/code/target-pathname" :not-host) ; needs "code/pathname"
643 ("src/code/unix-pathname" :not-host)
645 ("src/code/win32-pathname" :not-host)
646 ("src/code/filesys" :not-host) ; needs HOST from "code/pathname"
648 ("src/code/target-misc" :not-host) ; dribble-stream, used by "save"
649 ("src/code/sharpm" :not-host) ; uses stuff from "code/reader"
651 ("src/code/early-step") ; target-thread needs *STEP-OUT*
653 ("src/code/target-thread" :not-host)
654 ("src/code/timer" :not-host)
656 ;; defines SB!DI:DO-DEBUG-FUN-BLOCKS, needed by target-disassem.lisp
657 ("src/code/gc" :not-host)
658 ("src/code/alloc" :not-host) ; needs foo-SPACE-START
659 ("src/code/debug-int" :not-host)
660 ("src/code/interr" :not-host)
662 ;; target-only assemblerish stuff
663 ("src/compiler/target-disassem" :not-host)
664 ("src/compiler/target/target-insts" :not-host)
666 ("src/code/debug" :not-host)
668 ("src/code/octets" :not-host)
669 ("src/code/external-formats/enc-basic" :not-host)
671 ("src/code/external-formats/enc-ucs" :not-host) ; win32 needs this
674 ("src/code/full-eval" :not-host) ; uses INFO, ARG-COUNT-ERROR
676 ("src/code/bit-bash" :not-host) ; needs %NEGATE from assembly/target/arith
678 ("src/code/target-load" :not-host) ; needs special vars from code/load.lisp
681 ("src/compiler/target/sanctify" :not-host)
683 ;; FIXME: Does this really need stuff from compiler/dump.lisp?
684 ("src/compiler/target-dump" :not-host) ; needs stuff from compiler/dump.lisp
686 ("src/code/cold-init" :not-host) ; needs (SETF EXTERN-ALIEN) macroexpansion
688 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
689 ;; target macros and DECLAIMs installed at build-the-cross-compiler time
691 ;; FIXME: here? earlier? can probably be as late as possible. Also
692 ;; maybe call it FORCE-DELAYED-PROCLAIMS?
693 ("src/compiler/late-proclaim")
695 ;; fundamental target macros (e.g. CL:DO and CL:DEFUN) and support
702 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
703 ;; other target-code-building stuff which can't be processed until
704 ;; machinery like SB!XC:DEFMACRO exists
706 ("src/code/late-format") ; needs SB!XC:DEFMACRO
707 ("src/code/sxhash") ; needs SB!XC:DEFINE-MODIFY-MACRO
709 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
710 ;; PCL-related stuff, which shouldn't need to be done earlier than
711 ;; anything else in cold build because after all it used to be
712 ;; postponed 'til warm init with no problems.
716 ;;; warm build skips the list of files above even though there is no "#!" macro
717 ;;; at this point. That's not specified behavior of *READ-SUPPRESS*.
718 ;;; The place to change this behavior is in DISPATCH-CHAR-ERROR.
719 ;;; Then we would need to define "#!" to do something whenever this file is read.
720 ;;; If we're going down that route, we should change these feature expressions
721 ;;; to use "#!" syntax rather than rely on a bug to skip the above form.
723 (("src/code/warm-error"
724 "src/code/room" ; for MAP-ALLOCATED-OBJECTS
725 ;; We re-nickname SB-SEQUENCE as SEQUENCE now.
726 ;; It could be done in genesis, but not earlier,
727 ;; since the host has a package of that name.
728 "src/code/defpackage")
731 ("src/interpreter/macros"
732 "src/interpreter/checkfuns"
733 "src/interpreter/env"
734 "src/interpreter/sexpr"
735 "src/interpreter/special-forms"
736 "src/interpreter/eval"
737 "src/interpreter/debug")
739 ("src/code/external-formats/enc-ebcdic")
741 ("src/code/external-formats/enc-cyr"
742 "src/code/external-formats/enc-dos"
743 "src/code/external-formats/enc-iso"
744 "src/code/external-formats/enc-win"
745 "src/code/external-formats/enc-mac"
746 "src/code/external-formats/mb-util"
747 "src/code/external-formats/enc-cn-tbl"
748 "src/code/external-formats/enc-cn"
749 "src/code/external-formats/enc-jpn-tbl"
750 "src/code/external-formats/enc-jpn"
751 "src/code/external-formats/enc-utf")
753 ;; CLOS, derived from the PCL reference implementation
755 ;; This PCL build order is based on a particular
756 ;; (arbitrary) linearization of the declared build
757 ;; order dependencies from the old PCL defsys.lisp
758 ;; dependency database.
760 "src/pcl/compiler-support"
775 "src/pcl/generic-functions"
786 "src/pcl/documentation"
787 "src/pcl/print-object"
791 ("src/code/setf-funs"
793 ;; miscellaneous functionality which depends on CLOS
794 "src/code/late-condition"
796 ;; CLOS-level support for the Gray OO streams
797 ;; extension (which is also supported by various
798 ;; lower-level hooks elsewhere in the code)
799 "src/pcl/gray-streams-class"
800 "src/pcl/gray-streams"
802 ;; CLOS-level support for User-extensible sequences.
805 ;; other functionality not needed for cold init, moved
806 ;; to warm init to reduce peak memory requirement in
810 "src/code/describe-policy"
816 #+win32 "src/code/warm-mswin"
817 "src/code/run-program"
818 #+gencgc "src/code/traceroot"
820 #+immobile-code "src/code/immobile-space"
821 "src/code/repack-xref"
822 #+cheneygc "src/code/purify"