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
36 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
38 ;; This comes as early as possible, so that we catch the source locations
40 ("src/code/early-source-location")
41 ("src/code/cross-early" :not-target)
43 ;; This comes early because it's useful for debugging everywhere.
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.
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)
60 ("src/code/defsetfs" :not-host)
61 ("src/code/cmacros" :not-host :slam-forcibly)
63 ("src/code/cold-init-helper-macros")
65 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
66 ;;; cross-compiler-only replacements for stuff which in target Lisp would be
67 ;;; supplied by basic machinery
69 ("src/code/cross-byte" :not-target)
70 ("src/code/cross-misc" :not-target)
71 ("src/code/cross-char" :not-target)
72 ("src/code/cross-boole" :not-target)
73 ("src/code/cross-float" :not-target)
74 ("src/code/cross-io" :not-target)
75 ("src/code/cross-sap" :not-target)
76 ("src/code/cross-thread" :not-target)
77 ("src/code/cross-make-load-form" :not-target)
78 ("src/code/cross-condition" :not-target)
80 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
81 ;;; stuff needed early both in cross-compilation host and in target Lisp
84 ("src/code/primordial-type")
85 ("src/code/early-defbangmethod")
87 ("src/code/defbangtype")
88 ("src/code/defbangmacro")
89 ("src/code/defbangconstant")
90 ("src/code/early-constants") ; needs DEF!CONSTANT
92 ("src/compiler/early-lexenv")
93 ("src/code/primordial-extensions")
94 ("src/compiler/early-globaldb")
95 ("src/compiler/constantp")
97 ;; comes early so that stuff can reason about function names
98 ("src/code/function-names")
100 ;; for various constants e.g. SB!XC:MOST-POSITIVE-FIXNUM and
101 ;; SB!VM:N-LOWTAG-BITS, needed by "early-objdef" and others
102 ("src/compiler/generic/parms")
103 ("src/compiler/target/parms")
104 ("src/compiler/generic/early-vm")
105 ("src/compiler/generic/early-objdef")
106 ("src/code/early-array") ; needs "early-vm" numbers
108 ;; "early-extensions" contains a call to TYPEP that is transformed into a call
109 ;; to %OTHER-POINTER-WIDETAG, which is an ordinary inline function, and not
110 ;; known to the cross-compiler until it has seen the DEFUN in 'kernel'
111 ("src/code/kernel" :not-host)
112 ;; This has the BARRIER stuff that the threading support needs,
113 ;; required for some code in 'early-extensions'
114 ("src/code/barrier" :not-host)
115 ("src/code/parse-body") ; on host for PARSE-BODY
116 ("src/code/unportable-float")
117 ("src/compiler/policy" :slam-forcibly)
118 #!+sb-fasteval ("src/interpreter/basic-env")
119 ;; PARSE-{UNKNOWN,DEPRECATED}-TYPE and other things should be known
120 ;; condition subtypes as soon as possible
121 ("src/code/condition-boot" :not-host)
122 ("src/code/early-extensions") ; on host for COLLECT, SYMBOLICATE, etc.
123 ("src/compiler/parse-lambda-list")
124 ("src/compiler/deftype") ; on host for SB!XC:DEFTYPE
125 ("src/code/restart" :not-host) ; %DEFCONSTANT can bind a restart
126 ("src/code/early-alieneval") ; for funs and vars needed at build and run time
128 ("src/code/specializable-array")
130 ("src/code/early-cl")
131 ("src/code/ansi-stream" :not-host)
132 ("src/code/early-fasl")
134 ;; mostly needed by stuff from comcom, but also used by "x86-vm"
135 ("src/code/debug-var-io")
137 ("src/code/defbangstruct")
138 ("src/code/early-thread")
139 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
140 ;;; basic machinery for the target Lisp. Note that although most of these
141 ;;; files are flagged :NOT-HOST, a few might not be.
143 ("src/code/early-print" :not-host)
144 ("src/code/early-pprint" :not-host)
145 ("src/code/early-impl" :not-host)
147 ("src/code/target-extensions" :not-host)
149 ;; Needed before the first use of WITH-SINGLE-PACKAGE-LOCKED-ERROR.
150 ("src/code/early-package" :not-host)
152 ("src/compiler/defconstant")
154 ("src/code/early-defstructs" :not-host) ; gotta-be-first DEFSTRUCTs
155 ("src/code/early-raw-slots")
157 ("src/code/funutils" :not-host)
159 ;; This needs DEF!STRUCT, and is itself needed early so that structure
160 ;; accessors and inline functions defined here can be compiled inline
161 ;; later. (Avoiding full calls increases efficiency)
162 ("src/code/type-class")
164 ("src/compiler/early-c")
165 ("src/compiler/fun-info")
166 ("src/pcl/slot-name") ; for calls from 'info-vector'
167 ;; 'info-vector' is needed at least as early as 'fdefinition' so that the
168 ;; inlined INFO-VECTOR-FDEFINITION is available to %COERCE-CALLABLE-TO-FUN.
169 ("src/compiler/info-vector")
170 ("src/compiler/globaldb")
172 ("src/code/sysmacs" :not-host)
174 ;; "assembly/assemfile" was here in the sequence inherited from
175 ;; CMU CL worldcom.lisp, but also appears later in the sequence
176 ;; inherited from CMU CL comcom.lisp. We shouldn't need two versions,
177 ;; so I've deleted the one here. -- WHN 19990620
179 ("src/code/target-error" :not-host)
181 ("src/compiler/early-backend")
182 ;; "src/code/toplevel.lisp" si the first to need this. It's generated
183 ;; automatically by grovel_headers.c, i.e. it's not in CVS.
184 ("output/stuff-groveled-from-headers" :not-host)
186 ("src/code/cold-error" :not-host)
187 ("src/code/fdefinition" :not-host)
189 ("src/code/maphash" :not-host :slam-forcibly)
190 ("src/code/pred" :not-host)
192 ("src/compiler/generic/vm-array")
193 ("src/code/weak" :not-host)
194 ;; 'target-alieneval' needs FILL-POINTER which is defined in 'array'
195 ("src/code/array" :not-host) ; needs WEAK-POINTER-VALUE
197 ("src/code/target-alieneval" :not-host)
198 ("src/code/target-c-call" :not-host)
199 ("src/code/target-allocate" :not-host)
201 ;; This needs DEFINE-ALIEN-ROUTINE from target-alieneval.
202 ("src/code/misc-aliens" :not-host)
204 ("src/code/early-float" :not-host)
205 ("src/pcl/early-low" :not-host)
206 ("src/code/target-sxhash" :not-host) ; needs most-fooative-foo-float constants
208 ("src/code/list" :not-host)
209 ("src/code/seq" :not-host) ; "code/seq" should come after "code/list".
210 ("src/code/coerce" :not-host)
212 ("src/code/string" :not-host)
213 ("src/code/mipsstrops" :not-host)
215 ("src/code/early-time")
216 ("src/code/unix" :not-host)
217 #!+win32 ("src/code/win32" :not-host)
218 #!+mach ("src/code/mach" :not-host)
220 #!+android ("src/code/android-os" :not-host)
221 #!+mach ("src/code/mach-os" :not-host)
222 #!+sunos ("src/code/sunos-os" :not-host)
223 #!+hpux ("src/code/hpux-os" :not-host)
224 #!+osf1 ("src/code/osf1-os" :not-host)
225 #!+irix ("src/code/irix-os" :not-host)
226 #!+bsd ("src/code/bsd-os" :not-host)
227 #!+linux ("src/code/linux-os" :not-host)
228 #!+win32 ("src/code/win32-os" :not-host)
230 ;; sparc-vm and ppc-vm need sc-offset defined to get at internal
231 ;; error args. This file contains stuff previously in
232 ;; debug-info.lisp. Should it therefore be :not-host? -- CSR,
234 ("src/code/sc-offset")
236 ;; KLUDGE: I'd prefer to have this done with a "code/target" softlink
237 ;; instead of a bunch of reader macros. -- WHN 19990308
238 #!+sparc ("src/code/sparc-vm" :not-host)
239 #!+hppa ("src/code/hppa-vm" :not-host)
240 #!+x86 ("src/code/x86-vm" :not-host)
241 #!+x86-64("src/code/x86-64-vm" :not-host)
242 #!+ppc ("src/code/ppc-vm" :not-host)
243 #!+alpha ("src/code/alpha-vm" :not-host)
244 #!+mips ("src/code/mips-vm" :not-host)
245 #!+arm ("src/code/arm-vm" :not-host)
246 #!+arm64 ("src/code/arm64-vm" :not-host)
248 #!-win32 ("src/code/target-signal" :not-host) ; needs OS-CONTEXT-T from x86-vm
249 #!+win32 ("src/code/target-exception" :not-host)
251 ("src/code/bignum" :not-host)
252 ("src/code/numbers" :not-host)
253 ("src/code/float-trap" :not-host)
254 ("src/code/float" :not-host)
255 ("src/code/irrat" :not-host)
259 ("src/code/target-char" :not-host)
260 ("src/code/target-unicode" :not-host)
263 ("src/code/room" :not-host)
265 ("src/code/fd-stream" :not-host)
266 ("src/code/stream" :not-host)
267 ("src/code/symbol" :not-host) ; uses STRING-OUTPUT-STREAM
268 ("src/code/print" :not-host)
269 ("src/code/early-format")
270 ("src/code/defpackage" :not-host)
272 ("src/code/error-error" :not-host) ; needs WITH-STANDARD-IO-SYNTAX macro
273 ("src/code/common-os" :not-host)
275 ("src/code/deadline" :not-host)
276 ("src/code/serve-event" :not-host)
278 ("src/code/query" :not-host)
280 ("src/code/sort" :not-host)
281 ("src/code/time" :not-host)
282 ("src/code/final" :not-host)
284 ("src/code/setf-funs" :not-host)
286 ("src/code/stubs" :not-host)
288 ("src/code/exhaust" :not-host)
290 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
291 ;;; compiler (and a few miscellaneous files whose dependencies make it
292 ;;; convenient to stick them here)
294 ("src/compiler/policies")
296 ;; ("src/code/defbangmacro" was here until sbcl-0.6.7.3.)
298 ("src/compiler/macros")
300 ("src/compiler/late-constantp")
301 ("src/code/early-classoid")
302 ("src/compiler/info-functions")
304 ("src/compiler/generic/vm-macs")
305 ("src/compiler/generic/objdef")
307 ;; needed by "compiler/vop"
308 ("src/compiler/sset")
309 ("src/code/xset") ; for representation of MEMBER type
310 ("src/code/early-type")
312 ;; for e.g. BLOCK-ANNOTATION, needed by "compiler/vop"
313 ("src/compiler/node")
314 ;; RECONSTRUCT-LEXENV needs types GLOBAL-VAR and DEFINED-FUN
315 ("src/compiler/lexenv")
317 ;; This has ASSEMBLY-UNIT-related stuff needed by core.lisp.
318 ;; and LABEL, needed by IR2-NLX-INFO
319 ("src/compiler/early-assem")
321 ;; for e.g. PRIMITIVE-TYPE, needed by "vmdef"
323 ("src/compiler/constant-leaf")
325 ;; needed by "vm" and "primtype"
326 ("src/compiler/backend")
328 ;; for e.g. MAX-VOP-TN-REFS, needed by "meta-vmdef"
329 ("src/compiler/vmdef")
332 ("src/compiler/target/backend-parms")
334 ("src/code/force-delayed-defbangconstants")
335 ("src/code/defmacro")
336 ("src/code/force-delayed-defbangmacros")
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")
342 ;; for e.g. DESCRIPTOR-REG, needed by primtype.lisp
343 ("src/compiler/target/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?
356 ("src/pcl/low" :not-host)
358 ("src/code/debug-info")
359 ("src/code/source-location")
360 ;; The type definition for INTERPRETED-FUNCTION
361 #!+sb-fasteval ("src/interpreter/function")
362 ("src/code/early-condition")
363 ("src/code/condition" :not-host)
364 ("src/code/toplevel" :not-host)
365 ("src/code/parse-defmacro-errors")
366 ("src/code/format-directive")
367 ;; Target-only stuff should usually be compiled late unless it has
368 ;; compile-time side-effects. This file could probably be later,
369 ;; but should certainly be no earlier than the definitions
370 ;; of FORMAT-ERROR and FORMAT-DIRECTIVE.
371 ("src/code/target-format" :not-host)
373 ("src/compiler/generic/primtype")
375 ;; for DEFSTRUCT ALIEN-TYPE, needed by host-type.lisp
376 ("src/code/host-alieneval")
378 ;; can't be done until definition of e.g. DEFINE-ALIEN-TYPE-CLASS in
379 ;; host-alieneval.lisp
380 ("src/code/host-c-call")
382 ;; SB!XC:DEFTYPE is needed in order to compile late-type
383 ;; in the host Common Lisp, and in order to run, it needs
384 ;; %COMPILER-DEFTYPE.
385 ("src/compiler/compiler-deftype")
387 ;; These appear here in the build sequence because they require
388 ;; * the macro INFO, defined in globaldb.lisp, and
389 ;; * the function PARSE-DEFMACRO, defined in parse-defmacro.lisp,
390 ;; and because they define
391 ;; * the function SPECIFIER-TYPE, which is used in fndb.lisp.
392 ("src/code/late-type")
393 ;; Compile target-only stuff after all defglobals like *CONS-T-T-TYPE*
394 ;; and all type-classes are defined.
395 ("src/code/target-type" :not-host)
396 ("src/code/deftypes-for-target")
398 ;; defines IR1-ATTRIBUTES macro, needed by proclaim.lisp
399 ("src/compiler/knownfun")
401 ;; needs FUN-INFO structure slot setters, defined in knownfun.lisp
402 ("src/compiler/fun-info-funs")
404 ;; stuff needed by "code/defstruct"
405 ("src/code/cross-type" :not-target)
406 ("src/compiler/generic/vm-type")
407 ("src/compiler/proclaim")
409 ("src/code/class-init")
411 ;; The DEFSTRUCT machinery needs SB!XC:SUBTYPEP, defined in
412 ;; "code/late-type", and SB!XC:TYPEP, defined in "code/cross-type",
413 ;; and SPECIALIZE-ARRAY-TYPE, defined in "compiler/generic/vm-type",
414 ;; and SB!XC:PROCLAIM, defined in "src/compiler/proclaim"
415 ("src/code/defstruct")
416 ("src/code/target-defstruct" :not-host)
418 ;; ALIEN-VALUE has to be defined as a class (done by DEFSTRUCT
419 ;; machinery) before we can set its superclasses here.
420 ("src/code/alien-type")
422 ;; This needs not just the SB!XC:DEFSTRUCT machinery, but also
423 ;; the TYPE= stuff defined in late-type.lisp, and the
424 ;; CHECK-FUN-NAME defined in proclaim.lisp.
425 ("src/code/force-delayed-defbangstructs")
427 ;; early-full-eval uses !DEFSTRUCT-WITH-ALTERNATE-METACLASS and
428 ;; DEF!METHOD. It split out from the rest of full-eval because
429 ;; defstruct/metaclass fun makes it unslammable, and to define
430 ;; INTERPRETED-FUNCTION before it is used in compiler/main and in the
431 ;; definition of the COMPILED-FUNCTION type.
433 ("src/code/early-full-eval")
435 ("src/code/typep" :not-host)
437 ("src/compiler/compiler-error")
439 ("src/code/late-deftypes-for-target")
441 ("src/code/type-init")
442 ;; Now that the type system is initialized, fix up UNKNOWN types that
444 ("src/compiler/fixup-type")
446 ;; These define target types needed by fndb.lisp.
449 ("src/code/hash-table")
450 ("src/code/readtable")
451 ("src/code/pathname")
452 ("src/code/host-pprint")
453 ("src/code/pprint" :not-host)
455 ;; KLUDGE: Much stuff above here is the type system and/or the INFO
456 ;; system, not really the compiler proper. It might be easier to
457 ;; understand the system if those things were split off into packages
458 ;; SB-TYPE and SB-INFO and built in their own sections. -- WHN 20000124
460 ;; In classic CMU CL (re)build order, these were done later, but
461 ;; in building from scratch, these must be loaded before
462 ;; "compiler/generic/objdef" in order to allow forms like
463 ;; (DEFINE-PRIMITIVE-OBJECT (..) (CAR ..) ..) to work.
464 ("src/compiler/fndb")
465 ("src/compiler/generic/vm-fndb")
467 ("src/compiler/generic/late-objdef")
469 ("src/compiler/generic/interr")
471 ("src/compiler/bit-util")
473 ;; core.lisp contains DEFSTRUCT CORE-OBJECT, and "compiler/main.lisp"
474 ;; does lots of (TYPEP FOO 'CORE-OBJECT), so it's nice to compile this
475 ;; before "compiler/main.lisp" so that those can be coded efficiently
476 ;; (and so that they don't cause lots of annoying compiler warnings
477 ;; about undefined types).
478 ("src/compiler/fixup") ; for DEFSTRUCT FIXUP
479 ("src/compiler/generic/core")
483 #!+linkage-table ("src/code/linkage-table" :not-host)
484 #!+os-provides-dlopen ("src/code/foreign-load" :not-host)
485 #!+(and os-provides-dlopen (not win32)) ("src/code/unix-foreign-load" :not-host)
486 #!+(and os-provides-dlopen win32) ("src/code/win32-foreign-load" :not-host)
489 ("src/code/fop") ; needs macros from code/load.lisp
491 ("src/compiler/ctype")
492 ("src/compiler/disassem")
493 ("src/compiler/assem")
495 ;; Compiling this requires fop definitions from code/fop.lisp and
496 ("src/compiler/dump")
498 ("src/compiler/ir1report") ; for COMPILER-ERROR-CONTEXT
499 ("src/compiler/main") ; needs DEFSTRUCT FASL-OUTPUT from dump.lisp
500 ("src/compiler/xref")
501 ("src/compiler/target-main" :not-host)
502 ("src/compiler/ir1tran")
503 ("src/compiler/ir1tran-lambda")
504 ("src/compiler/ir1-translators")
505 ("src/compiler/ir1util")
506 ("src/compiler/ir1opt")
507 ("src/compiler/loop")
509 ("src/compiler/ir1final")
510 ("src/compiler/array-tran")
511 ("src/compiler/seqtran")
512 ("src/compiler/typetran")
513 ("src/compiler/generic/vm-typetran")
514 ("src/compiler/float-tran")
515 ("src/compiler/saptran")
516 ("src/compiler/srctran")
517 ("src/code/quantifiers")
518 ("src/compiler/bitops-derive-type")
519 ("src/compiler/generic/vm-tran")
520 ("src/compiler/locall")
523 ("src/compiler/checkgen")
524 ("src/compiler/constraint")
525 ("src/compiler/physenvanal")
528 ("src/compiler/life")
530 ("src/compiler/debug-dump")
531 ("src/compiler/generic/utils")
532 ("src/compiler/fopcompile")
534 ("src/assembly/assemfile" :not-target)
536 ;; Compiling this file requires the macros SB!ASSEM:EMIT-LABEL and
537 ;; SB!ASSEM:EMIT-POST-IT, defined in assem.lisp, and also possibly
538 ;; the definition of the LOCATION-INFO structure (if structures in
539 ;; the host lisp have setf expanders rather than setf functions).
540 ("src/compiler/late-vmdef")
542 ("src/compiler/target/insts")
543 ("src/compiler/target/macros")
544 ("src/compiler/generic/early-type-vops")
546 ("src/assembly/target/support")
548 ("src/compiler/target/move")
549 ("src/compiler/target/float")
551 ("src/compiler/target/simd-pack")
552 ("src/compiler/target/sap")
553 ("src/compiler/target/system")
554 ("src/compiler/target/char")
555 ("src/compiler/target/memory")
556 ("src/compiler/target/static-fn")
557 ("src/compiler/target/arith"
558 ;; KLUDGE: for ppc and sparc this appears to be necessary, as it
559 ;; used to be for array VOPs for X86 until ca. 0.8.5.24 when CSR's
560 ;; patch for that architecture was finally committed
562 ;; old (0.8.5.23) comment on the array-VOP hack for X86:
563 ;; x Compiling this file for X86 raises alarming warnings of
565 ;; x Argument FOO to VOP CHECK-BOUND has SC restriction
566 ;; x DESCRIPTOR-REG which is not allowed by the operand type:
567 ;; x (:OR POSITIVE-FIXNUM)
568 ;; x This seems not to be something that I broke, but rather a "feature"
569 ;; x inherited from classic CMU CL. (Debian cmucl_2.4.8.deb compiling
570 ;; x Debian cmucl_2.4.8.tar.gz raises the same warning). Thus, even though
571 ;; x these warnings are severe enough that they would ordinarily abort
572 ;; x compilation, for now we blithely ignore them and press on to more
573 ;; x pressing problems. Someday, though, it would be nice to figure out
574 ;; x what the problem is and fix it.
575 #!+(or ppc) :ignore-failure-p)
576 ("src/code/cross-modular" :not-target)
578 ("src/compiler/generic/late-type-vops") ;; KLUDGE: it's not so late anymore
579 ("src/compiler/target/type-vops")
581 ("src/compiler/target/subprim")
582 ("src/compiler/target/debug")
583 ;; src/compiler/sparc/c-call contains a deftransform for
584 ;; %ALIEN-FUNCALL -- CSR
585 ("src/compiler/early-aliencomp")
586 ("src/compiler/target/c-call")
587 ("src/compiler/target/cell")
588 ("src/compiler/target/values")
589 ("src/compiler/target/alloc")
590 ("src/compiler/target/call")
591 ("src/compiler/target/nlx")
592 ("src/compiler/generic/late-nlx")
593 ("src/compiler/target/show")
594 ("src/compiler/target/array")
595 ("src/compiler/generic/type-error")
596 ("src/compiler/target/pred")
598 ;; KLUDGE: The assembly files need to be compiled twice: once as
599 ;; normal lisp files, and once by sb-c:assemble-file. We use a
600 ;; different suffix / "file type" for the :assem versions to make
601 ;; sure we don't scribble over anything we shouldn't.
603 ("src/assembly/target/assem-rtns")
604 ("src/assembly/target/array")
605 ("src/assembly/target/arith")
606 ("src/assembly/target/alloc")
607 ("src/assembly/target/assem-rtns" :assem :not-host)
608 ("src/assembly/target/array" :assem :not-host)
609 ("src/assembly/target/arith" :assem :not-host)
610 ("src/assembly/target/alloc" :assem :not-host)
612 ("src/compiler/pseudo-vops")
614 ("src/compiler/aliencomp")
619 ("src/compiler/stack")
620 ("src/compiler/control")
621 ("src/compiler/entry")
622 ("src/compiler/ir2tran")
624 ("src/compiler/generic/vm-ir2tran")
626 ("src/compiler/copyprop")
627 ("src/compiler/represent")
628 ("src/compiler/ir2opt")
629 ("src/compiler/pack")
630 ("src/compiler/pack-iterative")
631 ("src/compiler/codegen")
632 ("src/compiler/debug")
634 #!+sb-dyncount ("src/compiler/dyncount")
635 #!+sb-dyncount ("src/code/dyncount")
637 ;; needed by OPEN-FASL-OUTPUT, which is called by COMPILE-FILE
638 ("src/code/format-time")
640 ;; needed by various unhappy-path cases in the cross-compiler
643 ;; This wasn't in classic CMU CL "comcom.lisp", but it has some stuff
644 ;; that Python-as-cross-compiler has turned out to need.
645 ("src/code/macroexpand")
647 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
648 ;; files which depend in some way (directly or indirectly) on stuff
649 ;; compiled as part of the compiler
651 ("src/code/late-extensions") ; needs condition system
652 ("src/compiler/generic/target-core" :not-host) ; uses stuff from
653 ; "compiler/generic/core"
655 ("src/code/eval" :not-host) ; uses INFO, wants compiler macro
656 ("src/code/target-sap" :not-host) ; uses SAP-INT type
657 ("src/code/target-package" :not-host) ; needs "code/package"
658 ("src/code/module" :not-host)
659 ("src/code/bignum-random" :not-host) ; needs "code/random" and
661 ("src/code/target-hash-table" :not-host) ; needs "code/hash-table"
662 ("src/code/reader" :not-host) ; needs "code/readtable"
663 ("src/code/target-stream" :not-host) ; needs WHITESPACEP from "code/reader"
664 ("src/code/target-pathname" :not-host) ; needs "code/pathname"
666 ("src/code/unix-pathname" :not-host)
668 ("src/code/win32-pathname" :not-host)
669 ("src/code/filesys" :not-host) ; needs HOST from "code/pathname"
671 ("src/code/target-misc" :not-host) ; dribble-stream, used by "save"
672 ("src/code/save" :not-host) ; uses the definition of PATHNAME
673 ; from "code/pathname"
674 ("src/code/sharpm" :not-host) ; uses stuff from "code/reader"
675 ("src/code/alloc" :not-host)
677 ("src/code/early-step") ; target-thread needs *STEP-OUT*
679 ("src/code/target-thread" :not-host)
680 ("src/code/timer" :not-host)
682 ;; defines SB!DI:DO-DEBUG-FUN-BLOCKS, needed by target-disassem.lisp
683 ("src/code/interr" :not-host)
684 ("src/code/gc" :not-host)
685 ("src/code/purify" :not-host)
686 ("src/code/debug-int" :not-host)
688 ;; target-only assemblerish stuff
689 ("src/compiler/target-disassem" :not-host)
690 ("src/compiler/target/target-insts" :not-host)
692 ("src/code/debug" :not-host)
694 ("src/code/octets" :not-host)
695 ("src/code/external-formats/enc-basic" :not-host)
696 ("src/code/external-formats/enc-ebcdic" :not-host)
698 ("src/code/external-formats/enc-cyr" :not-host)
700 ("src/code/external-formats/enc-dos" :not-host)
702 ("src/code/external-formats/enc-iso" :not-host)
704 ("src/code/external-formats/enc-win" :not-host)
706 ("src/code/external-formats/enc-mac" :not-host)
708 ("src/code/external-formats/mb-util" :not-host)
710 ("src/code/external-formats/enc-cn-tbl" :not-host)
712 ("src/code/external-formats/enc-cn" :not-host)
714 ("src/code/external-formats/enc-jpn-tbl" :not-host)
716 ("src/code/external-formats/enc-jpn" :not-host)
718 ("src/code/external-formats/enc-ucs" :not-host)
720 ("src/code/external-formats/enc-utf" :not-host)
723 ("src/code/full-eval" :not-host) ; uses INFO, ARG-COUNT-ERROR
725 ("src/code/bit-bash" :not-host) ; needs %NEGATE from assembly/target/arith
727 ("src/code/target-load" :not-host) ; needs special vars from code/load.lisp
730 ("src/compiler/target/sanctify" :not-host)
732 ;; FIXME: Does this really need stuff from compiler/dump.lisp?
733 ("src/compiler/target-dump" :not-host) ; needs stuff from compiler/dump.lisp
735 ("src/code/cold-init" :not-host) ; needs (SETF EXTERN-ALIEN) macroexpansion
737 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
738 ;; target macros and DECLAIMs installed at build-the-cross-compiler time
740 ;; Declare all target special variables defined by ANSI now, so that
741 ;; we don't have to worry about any of them being bound incorrectly
742 ;; when the compiler processes code which appears before the appropriate
743 ;; DEFVAR or DEFPARAMETER.
744 ("src/code/cl-specials")
746 ;; FIXME: here? earlier? can probably be as late as possible. Also
747 ;; maybe call it FORCE-DELAYED-PROCLAIMS?
748 ("src/compiler/late-proclaim")
750 ;; fundamental target macros (e.g. CL:DO and CL:DEFUN) and support
753 ("src/code/destructuring-bind")
758 ("src/code/late-cas")
760 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
761 ;; other target-code-building stuff which can't be processed until
762 ;; machinery like SB!XC:DEFMACRO exists
764 ("src/code/late-format") ; needs SB!XC:DEFMACRO
765 ("src/code/sxhash") ; needs SB!XC:DEFINE-MODIFY-MACRO
767 ("src/code/late-defbangmethod")
769 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
770 ;; PCL-related stuff, which shouldn't need to be done earlier than
771 ;; anything else in cold build because after all it used to be
772 ;; postponed 'til warm init with no problems.