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 as early as possible, so that we catch the source locations
44 ("src/code/early-source-location")
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 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
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
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
73 ("src/code/cold-init-helper-macros")
75 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
76 ;;; cross-compiler-only replacements for stuff which in target Lisp would be
77 ;;; supplied by basic machinery
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)
90 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
91 ;;; stuff needed early both in cross-compilation host and in target Lisp
94 ("src/code/primordial-type")
95 ("src/code/early-defbangmethod")
97 ("src/code/defbangtype")
98 ("src/code/defbangmacro")
99 ("src/code/defbangconstant")
101 ("src/code/primordial-extensions")
103 ;; comes early so that stuff can reason about function names
104 ("src/code/function-names")
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/generic/parms")
109 ("src/compiler/target/parms")
110 ("src/compiler/generic/early-vm")
111 ("src/compiler/generic/early-objdef")
112 ("src/code/early-array") ; needs "early-vm" numbers
114 ("src/code/early-extensions") ; on host for COLLECT, SYMBOLICATE, etc.
115 ("src/code/parse-body") ; on host for PARSE-BODY
116 ("src/code/parse-defmacro") ; on host for PARSE-DEFMACRO
117 ("src/compiler/deftype") ; on host for SB!XC:DEFTYPE
118 ("src/compiler/defconstant")
119 ("src/code/early-alieneval") ; for vars needed both at build and run time
121 ("src/code/specializable-array")
123 ("src/code/early-cl")
124 ("src/code/early-fasl")
126 ;; mostly needed by stuff from comcom, but also used by "x86-vm"
127 ("src/code/debug-var-io")
129 ("src/code/early-thread")
130 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
131 ;;; basic machinery for the target Lisp. Note that although most of these
132 ;;; files are flagged :NOT-HOST, a few might not be.
134 ("src/code/target-defbangmethod" :not-host)
136 ("src/code/early-print" :not-host)
137 ("src/code/early-pprint" :not-host)
138 ("src/code/early-impl" :not-host)
140 ("src/code/target-extensions" :not-host)
142 ;; Needed before the first use of WITH-SINGLE-PACKAGE-LOCKED-ERROR.
143 ("src/code/early-package" :not-host)
145 ("src/code/early-defstructs" :not-host) ; gotta-be-first DEFSTRUCTs
147 ("src/code/defbangstruct")
149 ("src/code/unportable-float")
151 ("src/code/funutils" :not-host)
153 ;; This needs DEF!STRUCT, and is itself needed early so that structure
154 ;; accessors and inline functions defined here can be compiled inline
155 ;; later. (Avoiding full calls not only increases efficiency, but also
156 ;; avoids some cold init issues involving full calls to structure
158 ("src/code/type-class")
160 ("src/code/early-pcounter")
161 ("src/code/pcounter" :not-host)
163 ("src/code/ansi-stream" :not-host)
165 ("src/code/sysmacs" :not-host)
167 ;; "assembly/assemfile" was here in the sequence inherited from
168 ;; CMU CL worldcom.lisp, but also appears later in the sequence
169 ;; inherited from CMU CL comcom.lisp. We shouldn't need two versions,
170 ;; so I've deleted the one here. -- WHN 19990620
172 ("src/code/target-error" :not-host)
174 ("src/compiler/early-backend")
175 ;; "src/code/toplevel.lisp" si the first to need this. It's generated
176 ;; automatically by grovel_headers.c, i.e. it's not in CVS.
177 ("output/stuff-groveled-from-headers" :not-host)
179 ;; a comment from classic CMU CL:
180 ;; "These guys can supposedly come in any order, but not really.
181 ;; Some are put at the end so that macros don't run interpreted
183 ;; Dunno exactly what this meant or whether it still holds. -- WHN 19990803
184 ;; FIXME: more informative and up-to-date comment?
185 ("src/code/kernel" :not-host)
186 ("src/code/toplevel" :not-host)
187 ("src/code/cold-error" :not-host)
188 ("src/code/fdefinition" :not-host)
189 ;; FIXME: Figure out some way to make the compiler macro for INFO
190 ;; available for compilation of "code/fdefinition".
192 ;; In classic CMU CL, code/type was here. I've since split that into
193 ;; lots of smaller pieces, some of which are here and some of which
194 ;; are handled later in the sequence, when the cross-compiler is
195 ;; built. -- WHN 19990620
196 ("src/code/target-type" :not-host)
198 ("src/code/pred" :not-host)
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/array" :not-host)
208 ("src/code/early-float" :not-host)
209 ("src/code/target-sxhash" :not-host) ; needs most-fooative-foo-float constants
211 ("src/code/list" :not-host)
212 ("src/code/seq" :not-host) ; "code/seq" should come after "code/list".
213 ("src/code/coerce" :not-host)
215 ("src/code/string" :not-host)
216 ("src/code/mipsstrops" :not-host)
218 ("src/code/early-time" :not-host)
219 ("src/code/unix" :not-host)
220 #!+win32 ("src/code/win32" :not-host)
221 #!+mach ("src/code/mach" :not-host)
223 ("src/code/common-os" :not-host)
224 #!+mach ("src/code/mach-os" :not-host)
225 #!+sunos ("src/code/sunos-os" :not-host)
226 #!+hpux ("src/code/hpux-os" :not-host)
227 #!+osf1 ("src/code/osf1-os" :not-host)
228 #!+irix ("src/code/irix-os" :not-host)
229 #!+bsd ("src/code/bsd-os" :not-host)
230 #!+linux ("src/code/linux-os" :not-host)
231 #!+win32 ("src/code/win32-os" :not-host)
233 ;; sparc-vm and ppc-vm need sc-offset defined to get at internal
234 ;; error args. This file contains stuff previously in
235 ;; debug-info.lisp. Should it therefore be :not-host? -- CSR,
237 ("src/code/sc-offset")
239 ;; KLUDGE: I'd prefer to have this done with a "code/target" softlink
240 ;; instead of a bunch of reader macros. -- WHN 19990308
241 #!+sparc ("src/code/sparc-vm" :not-host)
242 #!+hppa ("src/code/hppa-vm" :not-host)
243 #!+x86 ("src/code/x86-vm" :not-host)
244 #!+x86-64("src/code/x86-64-vm" :not-host)
245 #!+ppc ("src/code/ppc-vm" :not-host)
246 #!+alpha ("src/code/alpha-vm" :not-host)
247 #!+mips ("src/code/mips-vm" :not-host)
249 ;; FIXME: do we really want to keep this? -- CSR, 2002-08-31
250 #!+rt ("src/code/rt-vm" :not-host)
252 #!-win32 ("src/code/target-signal" :not-host) ; needs OS-CONTEXT-T from x86-vm
253 #!+win32 ("src/code/target-exception" :not-host)
255 ("src/code/symbol" :not-host)
256 ("src/code/bignum" :not-host)
257 ("src/code/numbers" :not-host)
258 ("src/code/float-trap" :not-host)
259 ("src/code/float" :not-host)
260 ("src/code/irrat" :not-host)
264 ("src/code/target-char" :not-host)
265 ("src/code/target-misc" :not-host)
268 ("src/code/room" :not-host)
270 ("src/code/stream" :not-host)
271 ("src/code/print" :not-host)
272 ("src/code/pprint" :not-host)
273 ("src/code/early-format")
274 ("src/code/target-format" :not-host)
275 ("src/code/defpackage" :not-host)
276 ("src/code/pp-backq" :not-host)
278 ("src/code/error-error" :not-host) ; needs WITH-STANDARD-IO-SYNTAX macro
280 ("src/code/serve-event" :not-host)
281 ("src/code/fd-stream" :not-host)
283 ("src/code/module" :not-host)
285 ("src/code/interr" :not-host)
287 ("src/code/query" :not-host)
289 ("src/code/sort" :not-host)
290 ("src/code/time" :not-host)
291 ("src/code/timer" :not-host)
292 ("src/code/weak" :not-host)
293 ("src/code/final" :not-host)
295 ("src/code/setf-funs" :not-host)
297 ("src/code/stubs" :not-host)
299 ("src/code/exhaust" :not-host)
301 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
302 ;;; compiler (and a few miscellaneous files whose dependencies make it
303 ;;; convenient to stick them here)
305 ("src/compiler/early-c")
306 ("src/compiler/policy")
307 ("src/compiler/policies")
308 ("src/code/typedefs")
310 ;; ("src/code/defbangmacro" was here until sbcl-0.6.7.3.)
312 ("src/compiler/macros")
313 ("src/compiler/generic/vm-macs")
315 ;; needed by "compiler/vop"
316 ("src/compiler/sset")
318 ;; for e.g. BLOCK-ANNOTATION, needed by "compiler/vop"
319 ("src/compiler/node")
321 ;; for e.g. PRIMITIVE-TYPE, needed by "vmdef"
324 ;; needed by "vm" and "primtype"
325 ("src/compiler/backend")
327 ;; for e.g. MAX-VOP-TN-REFS, needed by "meta-vmdef"
328 ("src/compiler/vmdef")
331 ("src/compiler/target/backend-parms")
333 ;; for INFO and SB!XC:MACRO-FUNCTION, needed by defmacro.lisp
334 ("src/compiler/globaldb")
335 ("src/compiler/info-functions")
337 ("src/code/force-delayed-defbangconstants")
338 ("src/code/defmacro")
339 ("src/code/force-delayed-defbangmacros")
341 ("src/compiler/late-macros")
343 ;; for e.g. !DEF-PRIMITIVE-TYPE, needed by primtype.lisp, and
344 ;; DEFINE-STORAGE-CLASS, needed by target/vm.lisp
345 ("src/compiler/meta-vmdef")
347 ;; for e.g. DESCRIPTOR-REG, needed by primtype.lisp
348 ("src/compiler/target/vm")
350 ;; for e.g. SPECIFIER-TYPE, needed by primtype.lisp
351 ("src/code/early-type")
353 ;; FIXME: Classic CMU CL had (OPTIMIZE (SAFETY 2) (DEBUG 2) declared
354 ;; around the compilation of "code/class". Why?
357 ;; The definition of CONDITION-CLASS depends on SLOT-CLASS, defined
359 ("src/code/condition" :not-host)
361 ("src/compiler/generic/vm-array")
362 ("src/compiler/generic/primtype")
364 ;; the implementation of the compiler-affecting part of forms like
365 ;; DEFMACRO and DEFTYPE; must be loaded before we can start
367 ("src/compiler/parse-lambda-list")
369 ;; The following two files trigger function/macro redefinition
370 ;; warnings in clisp during make-host-2; as a workaround, we ignore
371 ;; the failure values from COMPILE-FILE under clisp.
373 ;; for DEFSTRUCT ALIEN-TYPE, needed by host-type.lisp
374 ("src/code/host-alieneval" #+clisp :ignore-failure-p)
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" #+clisp :ignore-failure-p)
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")
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")
391 ("src/code/deftypes-for-target")
393 ;; defines IR1-ATTRIBUTES macro, needed by proclaim.lisp
394 ("src/compiler/knownfun")
395 ("src/compiler/constantp")
397 ;; needs FUN-INFO structure slot setters, defined in knownfun.lisp
398 ("src/compiler/fun-info-funs")
400 ;; stuff needed by "code/defstruct"
401 ("src/code/cross-type" :not-target)
402 ("src/compiler/generic/vm-type")
403 ("src/compiler/proclaim")
405 ("src/code/class-init")
406 ("src/code/typecheckfuns")
408 ;; The DEFSTRUCT machinery needs SB!XC:SUBTYPEP, defined in
409 ;; "code/late-type", and SB!XC:TYPEP, defined in "code/cross-type",
410 ;; and SPECIALIZE-ARRAY-TYPE, defined in "compiler/generic/vm-type",
411 ;; and SB!XC:PROCLAIM, defined in "src/compiler/proclaim"
412 ("src/code/defstruct")
413 ("src/code/target-defstruct" :not-host)
415 ;; ALIEN-VALUE has to be defined as a class (done by DEFSTRUCT
416 ;; machinery) before we can set its superclasses here.
417 ("src/code/alien-type")
419 ;; This needs not just the SB!XC:DEFSTRUCT machinery, but also
420 ;; the TYPE= stuff defined in late-type.lisp, and the
421 ;; CHECK-FUN-NAME defined in proclaim.lisp.
422 ("src/code/force-delayed-defbangstructs")
424 ;; early-full-eval uses !DEFSTRUCT-WITH-ALTERNATE-METACLASS and
425 ;; DEF!METHOD. It split out from the rest of full-eval because
426 ;; defstruct/metaclass fun makes it unslammable, and to define
427 ;; INTERPRETED-FUNCTION before it is used in compiler/main and in the
428 ;; definition of the COMPILED-FUNCTION type.
430 ("src/code/early-full-eval")
432 ("src/code/typep" :not-host)
434 ("src/compiler/compiler-error")
436 ("src/code/late-deftypes-for-target")
438 ("src/code/type-init")
439 ;; Now that the type system is initialized, fix up UNKNOWN types that
441 ("src/compiler/fixup-type")
443 ;; These define target types needed by fndb.lisp.
446 ("src/code/hash-table")
447 ("src/code/readtable")
448 ("src/code/pathname")
449 ("src/code/host-pprint")
450 ("src/compiler/lexenv")
452 ;; KLUDGE: Much stuff above here is the type system and/or the INFO
453 ;; system, not really the compiler proper. It might be easier to
454 ;; understand the system if those things were split off into packages
455 ;; SB-TYPE and SB-INFO and built in their own sections. -- WHN 20000124
457 ;; In classic CMU CL (re)build order, these were done later, but
458 ;; in building from scratch, these must be loaded before
459 ;; "compiler/generic/objdef" in order to allow forms like
460 ;; (DEFINE-PRIMITIVE-OBJECT (..) (CAR ..) ..) to work.
461 ("src/compiler/fndb")
462 ("src/compiler/generic/vm-fndb")
464 ("src/compiler/generic/objdef")
466 ("src/compiler/generic/interr")
468 ("src/compiler/bit-util")
470 ;; This has ASSEMBLY-UNIT-related stuff needed by core.lisp.
471 ("src/compiler/early-assem")
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/generic/core")
482 #!+linkage-table ("src/code/linkage-table" :not-host)
483 #!+(and os-provides-dlopen (not win32)) ("src/code/foreign-load" :not-host)
484 #!+(and os-provides-dlopen win32) ("src/code/win32-foreign-load" :not-host)
487 ("src/code/fop") ; needs macros from code/load.lisp
489 ("src/compiler/ctype")
490 ("src/compiler/disassem")
491 ("src/compiler/assem")
493 ("src/compiler/trace-table") ; needs EMIT-LABEL macro from compiler/assem.lisp
495 ;; Compiling this requires fop definitions from code/fop.lisp and
496 ;; trace table definitions from compiler/trace-table.lisp.
497 ("src/compiler/dump")
499 ("src/compiler/main") ; needs DEFSTRUCT FASL-OUTPUT from dump.lisp
500 ("src/code/source-location")
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/ir1report")
507 ("src/compiler/ir1opt")
508 ("src/compiler/loop")
510 ("src/compiler/ir1final")
511 ("src/compiler/array-tran")
512 ("src/compiler/seqtran")
513 ("src/compiler/typetran")
514 ("src/compiler/generic/vm-typetran")
515 ("src/compiler/float-tran")
516 ("src/compiler/saptran")
517 ("src/compiler/srctran")
518 ("src/compiler/generic/vm-tran")
519 ("src/compiler/locall")
521 ("src/compiler/checkgen")
522 ("src/compiler/constraint")
523 ("src/compiler/physenvanal")
526 ("src/compiler/life")
528 ("src/code/debug-info")
530 ("src/compiler/debug-dump")
531 ("src/compiler/generic/utils")
532 ("src/compiler/fopcompile")
534 ("src/assembly/assemfile")
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/fixup") ; for DEFSTRUCT FIXUP, used by insts.lisp
544 ("src/compiler/target/insts")
545 ("src/compiler/target/macros")
546 ("src/compiler/generic/early-type-vops")
548 ("src/assembly/target/support")
550 ("src/compiler/target/move")
551 ("src/compiler/target/float")
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 sparc) :ignore-failure-p)
576 ("src/code/cross-modular" :not-target)
577 ("src/compiler/target/subprim")
579 ("src/compiler/target/debug")
580 ;; src/compiler/sparc/c-call contains a deftransform for
581 ;; %ALIEN-FUNCALL -- CSR
582 ("src/compiler/early-aliencomp")
583 ("src/compiler/target/c-call")
584 ("src/compiler/target/cell")
585 ("src/compiler/target/values")
586 ("src/compiler/target/alloc")
587 ("src/compiler/target/call")
588 ("src/compiler/target/nlx")
589 ("src/compiler/generic/late-nlx")
590 ("src/compiler/target/show")
591 ("src/compiler/target/array")
592 ("src/compiler/generic/array")
593 ("src/compiler/target/pred")
595 ("src/compiler/target/type-vops")
596 ("src/compiler/generic/late-type-vops")
598 ;; KLUDGE: The assembly files need to be compiled twice: once as
599 ;; normal lisp files, and once by sb-c:assemble-file. We play some
600 ;; symlink games to make sure we don't scribble over anything we
601 ;; shouldn't, but these are actually the same files:
603 ("src/compiler/assembly/target/assem-rtns")
604 ("src/compiler/assembly/target/array")
605 ("src/compiler/assembly/target/arith")
606 ("src/compiler/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/pack")
629 ("src/compiler/codegen")
630 ("src/compiler/debug")
632 #!+sb-dyncount ("src/compiler/dyncount")
633 #!+sb-dyncount ("src/code/dyncount")
635 ;; needed by OPEN-FASL-OUTPUT, which is called by COMPILE-FILE
636 ("src/code/format-time")
638 ;; needed by various unhappy-path cases in the cross-compiler
641 ;; This wasn't in classic CMU CL "comcom.lisp", but it has some stuff
642 ;; that Python-as-cross-compiler has turned out to need.
643 ("src/code/macroexpand")
645 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
646 ;; files which depend in some way (directly or indirectly) on stuff
647 ;; compiled as part of the compiler
649 ("src/code/late-extensions") ; needs condition system
650 ("src/compiler/generic/target-core" :not-host) ; uses stuff from
651 ; "compiler/generic/core"
653 ("src/code/eval" :not-host) ; uses INFO, wants compiler macro
654 ("src/code/target-sap" :not-host) ; uses SAP-INT type
655 ("src/code/target-package" :not-host) ; needs "code/package"
656 ("src/code/target-random" :not-host) ; needs "code/random"
657 ("src/code/target-hash-table" :not-host) ; needs "code/hash-table"
658 ("src/code/reader" :not-host) ; needs "code/readtable"
659 ("src/code/target-stream" :not-host) ; needs WHITESPACEP from "code/reader"
660 ("src/code/target-pathname" :not-host) ; needs "code/pathname"
661 ("src/code/unix-pathname" :not-host)
662 ("src/code/win32-pathname" :not-host)
663 ("src/code/filesys" :not-host) ; needs HOST from "code/pathname"
665 ("src/code/save" :not-host) ; uses the definition of PATHNAME
666 ; from "code/pathname"
667 ("src/code/sharpm" :not-host) ; uses stuff from "code/reader"
668 ("src/code/alloc" :not-host)
670 ("src/code/early-step") ; target-thread needs *STEP-OUT*
672 ("src/code/target-thread" :not-host)
674 ;; defines SB!DI:DO-DEBUG-FUN-BLOCKS, needed by target-disassem.lisp
675 ("src/code/gc" :not-host)
676 ("src/code/purify" :not-host)
677 ("src/code/debug-int" :not-host)
679 ;; target-only assemblerish stuff
680 ("src/compiler/target-disassem" :not-host)
681 ("src/compiler/target/target-insts" :not-host)
683 ("src/code/debug" :not-host)
685 ("src/code/octets" :not-host)
687 ("src/code/external-formats/enc-cyr" :not-host)
689 ("src/code/external-formats/enc-dos" :not-host)
691 ("src/code/external-formats/enc-iso" :not-host)
693 ("src/code/external-formats/enc-win" :not-host)
695 ("src/code/external-formats/mb-util" :not-host)
697 ("src/code/external-formats/enc-jpn-tbl" :not-host)
699 ("src/code/external-formats/enc-jpn" :not-host)
701 ("src/code/external-formats/ucs-2" :not-host)
703 ;; The code here can't be compiled until CONDITION and
704 ;; DEFINE-CONDITION are defined and SB!DEBUG:*STACK-TOP-HINT* is
706 ("src/code/parse-defmacro-errors")
709 ("src/code/full-eval" :not-host) ; uses INFO, ARG-COUNT-ERROR
711 ("src/code/bit-bash" :not-host) ; needs %NEGATE from assembly/target/arith
713 ("src/code/target-load" :not-host) ; needs special vars from code/load.lisp
714 ("src/compiler/target/sanctify" :not-host)
716 ;; FIXME: Does this really need stuff from compiler/dump.lisp?
717 ("src/compiler/target-dump" :not-host) ; needs stuff from compiler/dump.lisp
719 ("src/code/cold-init" :not-host) ; needs (SETF EXTERN-ALIEN) macroexpansion
721 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
722 ;; target macros and DECLAIMs installed at build-the-cross-compiler time
724 ;; Declare all target special variables defined by ANSI now, so that
725 ;; we don't have to worry about any of them being bound incorrectly
726 ;; when the compiler processes code which appears before the appropriate
727 ;; DEFVAR or DEFPARAMETER.
728 ("src/code/cl-specials")
730 ;; FIXME: here? earlier? can probably be as late as possible. Also
731 ;; maybe call it FORCE-DELAYED-PROCLAIMS?
732 ("src/compiler/late-proclaim")
734 ;; fundamental target macros (e.g. CL:DO and CL:DEFUN) and support
737 ("src/code/destructuring-bind")
738 ("src/code/early-setf")
741 ("src/code/late-setf")
743 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
744 ;; other target-code-building stuff which can't be processed until
745 ;; machinery like SB!XC:DEFMACRO exists
747 ("src/code/late-format") ; needs SB!XC:DEFMACRO
748 ("src/code/sxhash") ; needs SB!XC:DEFINE-MODIFY-MACRO
750 ("src/code/late-defbangmethod")
752 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
753 ;; PCL-related stuff, which shouldn't need to be done earlier than
754 ;; anything else in cold build because after all it used to be
755 ;; postponed 'til warm init with no problems.