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