Whitespace
[sbcl.git] / build-order.lisp-expr
blob9d7a1687499a57c98a5c87e5b637868f64dfaa37
1 ;;;; -*- Lisp -*-
3 ;;;; This software is part of the SBCL system. See the README file for
4 ;;;; more information.
5 ;;;;
6 ;;;; This software is derived from the CMU CL system, which was
7 ;;;; written at Carnegie Mellon University and released into the
8 ;;;; public domain. The software is in the public domain and is
9 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
10 ;;;; files for more information.
12 ;;; a linear ordering of system sources which works both to
13 ;;; compile/load the cross-compiler under the host Common Lisp and
14 ;;; then to cross-compile the complete system into the
15 ;;; under-construction target SBCL
16 ;;;
17 ;;; The keyword flags (:NOT-HOST, :NOT-TARGET, :ASSEM...) are
18 ;;; documented in the code which implements their effects. (As of
19 ;;; sbcl-0.7.10, the comments are on DEFPARAMETER *EXPECTED-STEM-FLAGS*
20 ;;; in src/cold/shared.lisp.)
21 ;;;
22 ;;; Of course, it'd be very nice to have this be a dependency DAG
23 ;;; instead, so that we could do automated incremental recompilation.
24 ;;; But the dependencies are varied and subtle, and it'd be extremely
25 ;;; difficult to extract them automatically, and it'd be extremely
26 ;;; tedious and error-prone to extract them manually, so we don't
27 ;;; extract them. (It would be nice to fix this someday. The most
28 ;;; feasible approach that I can think of would be to make the
29 ;;; dependencies work on a package level, not an individual file
30 ;;; level. Doing it at the package level would make the granularity
31 ;;; coarse enough that it would probably be pretty easy to maintain
32 ;;; the dependency information manually, and the brittleness of the
33 ;;; package system would help make most violations of the declared
34 ;;; dependencies obvious at build time. -- WHN 20000803
36  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
37  ;;; miscellaneous
38  ;; This comes as early as possible, so that we catch the source locations
39  ;; for everything.
40  ("src/code/early-source-location")
41  ("src/code/cross-early" :not-target)
43  ;; This comes early because it's useful for debugging everywhere.
44  ("src/code/show")
45  ("src/compiler/early-constantp")
46  ("src/code/defsetfs" :not-host)
48  ;; Declare all target special variables defined by ANSI
49  ("src/code/cl-specials" :not-host)
51  ;; Things like DX-FLET and AWHEN are available for use in both the host
52  ;; and target very early, with no DEF! obfuscation necessary.
53  ("src/code/primordial-extensions")
54  ("src/code/cold-init-helper-macros")
55  ("src/code/early-defmethod" :not-host)
57  ;; ASAP we replace the host's backquote reader with our own, to avoid leaking
58  ;; details of the host into the target. This is not a concern in make-host-2
59  ;; becase IN-TARGET-CROSS-COMPILATION-MODE assigns the reader macros before
60  ;; compiling anything. It is, however, a minor concern for make-host-1, but
61  ;; usually a problem can be exposed only by contrived code / poor style.
62  ;; e.g. if the host's reader were used when compiling
63  ;;  (EVAL-WHEN (#-SB-XC :COMPILE-TOPLEVEL :LOAD-TOPLEVEL :EXECUTE)
64  ;;    (DEFUN A-MACRO-HELPER () '`(FOO ,A ,B))
65  ;; then A-MACRO-HELPER returns host code, and calling it might be wrong, either
66  ;; obviously or subtly. If the result is (LIST* 'FOO (LIST* A (LIST B)))
67  ;; then it's subtly wrong because it might not be the optimal strategy;
68  ;; whereas if it's (BACKQUOTE (FOO (UNQUOTE A) (UNQUOTE B))) then it's
69  ;; flat out wrong. At any rate, judicious avoidance of EVAL-WHEN and nested
70  ;; quasiquotation in 'primordial-extensions' prevents any such issues.
71  ("src/code/backq")
73  ;; It's difficult to be too early with a DECLAIM SPECIAL (or DEFVAR
74  ;; or whatever) thanks to the sullenly-do-the-wrong-thing semantics
75  ;; of CL special binding when the variable is undeclared.
76  ("src/code/globals" :not-host)
78  ("src/code/cmacros" :not-host :slam-forcibly)
80  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
81  ;;; cross-compiler-only replacements for stuff which in target Lisp would be
82  ;;; supplied by basic machinery
84  ("src/code/cross-byte"  :not-target)
85  ("src/code/cross-misc"  :not-target)
86  ("src/code/cross-char"  :not-target)
87  ("src/code/cross-boole" :not-target)
88  ("src/code/cross-float" :not-target)
89  ("src/code/cross-io"    :not-target)
90  ("src/code/cross-sap"   :not-target)
91  ("src/code/cross-thread" :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")
99  ("src/code/defbangtype")
100  ("src/code/defbangconstant")
101  ("src/code/early-constants") ; needs DEF!CONSTANT
103  ("src/compiler/deftype")      ; on host for SB!XC:DEFTYPE
104  ("src/compiler/early-lexenv")
105  ("src/compiler/early-globaldb")
107  ;; comes early so that stuff can reason about function names
108  ("src/code/function-names")
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/generic/parms")
113  ("src/compiler/target/parms")
114  ("src/compiler/generic/early-vm")
115  ("src/compiler/generic/early-objdef")
116  ("src/code/early-array") ; needs "early-vm" numbers
118  ;; "early-extensions" contains a call to TYPEP that is transformed into a call
119  ;; to %OTHER-POINTER-WIDETAG, which is an ordinary inline function, and not
120  ;; known to the cross-compiler until it has seen the DEFUN in 'kernel'
121  ("src/code/kernel" :not-host)
122  ;; This has the BARRIER stuff that the threading support needs,
123  ;; required for some code in 'early-extensions'
124  ("src/code/barrier" :not-host)
125  ("src/code/parse-body")       ; on host for PARSE-BODY
126  ("src/code/unportable-float")
127  ("src/compiler/policy" :slam-forcibly)
128  #!+sb-fasteval ("src/interpreter/basic-env")
129  ;; PARSE-{UNKNOWN,DEPRECATED}-TYPE and other things should be known
130  ;; condition subtypes as soon as possible
131  ("src/code/condition-boot" :not-host)
132  ("src/code/early-extensions") ; on host for COLLECT, SYMBOLICATE, etc.
133  ("src/compiler/parse-lambda-list")
134  ("src/code/restart" :not-host) ; %DEFCONSTANT can bind a restart
136  ("src/code/specializable-array")
138  ("src/code/early-cl")
139  ("src/code/ansi-stream" :not-host)
140  ("src/code/early-fasl")
142  ;; mostly needed by stuff from comcom, but also used by "x86-vm"
143  ("src/code/debug-var-io")
145  ("src/code/defbangstruct")
146  ("src/code/early-thread")
147  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
148  ;;; basic machinery for the target Lisp. Note that although most of these
149  ;;; files are flagged :NOT-HOST, a few might not be.
151  ("src/code/early-print" :not-host)
152  ("src/code/early-pprint" :not-host)
153  ("src/code/early-impl" :not-host)
155  ("src/code/target-extensions" :not-host)
157  ;; Needed before the first use of WITH-SINGLE-PACKAGE-LOCKED-ERROR.
158  ("src/code/early-package" :not-host)
160  ("src/compiler/defconstant")
162  ("src/code/early-raw-slots")
164  ("src/code/funutils" :not-host)
166  ("src/code/maphash" :not-host :slam-forcibly)
167  ("src/code/xset") ; for representation of MEMBER type
168  ;; This needs DEF!STRUCT, and is itself needed early so that structure
169  ;; accessors and inline functions defined here can be compiled inline
170  ;; later. (Avoiding full calls increases efficiency)
171  ("src/code/type-class")
172  ("src/code/early-alieneval")  ; for funs and vars needed at build and run time
174  ("src/code/cas" :not-host)
175  ("src/compiler/early-c")
176  ("src/compiler/fun-info")
177  ("src/pcl/slot-name") ; for calls from 'info-vector'
178  ;; 'info-vector' is needed at least as early as 'fdefinition' so that the
179  ;; inlined INFO-VECTOR-FDEFINITION is available to %COERCE-CALLABLE-TO-FUN.
180  ("src/code/signal" :not-host)
181  ("src/compiler/info-vector")
182  ("src/compiler/globaldb")
183  ("src/code/primordial-type")
184  ("src/code/early-classoid")
186  ("src/code/sysmacs" :not-host)
188  ;; "assembly/assemfile" was here in the sequence inherited from
189  ;; CMU CL worldcom.lisp, but also appears later in the sequence
190  ;; inherited from CMU CL comcom.lisp. We shouldn't need two versions,
191  ;; so I've deleted the one here. -- WHN 19990620
193  ("src/code/target-error" :not-host)
195  ("src/compiler/early-backend")
196  ;; "src/code/toplevel.lisp" si the first to need this. It's generated
197  ;; automatically by grovel_headers.c, i.e. it's not in CVS.
198  ("output/stuff-groveled-from-headers" :not-host)
200  ("src/code/cold-error"  :not-host)
201  ("src/code/fdefinition" :not-host)
203  ("src/compiler/generic/vm-array")
204  ("src/code/weak"          :not-host)
205  ;; 'target-alieneval' needs FILL-POINTER which is defined in 'array'
206  ("src/code/array"         :not-host) ; needs WEAK-POINTER-VALUE
207  ("src/code/pred" :not-host)
209  ("src/code/target-alieneval" :not-host)
210  ("src/code/target-c-call"    :not-host)
211  ("src/code/target-allocate"  :not-host)
213  ;; This needs DEFINE-ALIEN-ROUTINE from target-alieneval.
214  ("src/code/misc-aliens" :not-host)
216  ("src/code/early-float"   :not-host)
217  ("src/pcl/early-low" :not-host)
218  ("src/code/target-sxhash" :not-host) ; needs most-fooative-foo-float constants
220  ("src/code/list"   :not-host)
221  ("src/code/seq"    :not-host) ; "code/seq" should come after "code/list".
222  ("src/code/coerce" :not-host)
224  ("src/code/string"     :not-host)
225  ("src/code/mipsstrops" :not-host)
227  ("src/code/early-time")
228  ("src/code/unix" :not-host)
229  #!+win32 ("src/code/win32" :not-host)
230  #!+mach  ("src/code/mach"     :not-host)
232  #!+android ("src/code/android-os" :not-host)
233  #!+mach  ("src/code/mach-os"  :not-host)
234  #!+sunos ("src/code/sunos-os" :not-host)
235  #!+hpux  ("src/code/hpux-os"  :not-host)
236  #!+osf1  ("src/code/osf1-os"  :not-host)
237  #!+irix  ("src/code/irix-os"  :not-host)
238  #!+bsd   ("src/code/bsd-os"   :not-host)
239  #!+linux ("src/code/linux-os" :not-host)
240  #!+win32 ("src/code/win32-os" :not-host)
242  ;; sparc-vm and ppc-vm need sc-offset defined to get at internal
243  ;; error args. This file contains stuff previously in
244  ;; debug-info.lisp.  Should it therefore be :not-host?  -- CSR,
245  ;; 2002-02-05
246  ("src/code/sc-offset")
248  ;; KLUDGE: I'd prefer to have this done with a "code/target" softlink
249  ;; instead of a bunch of reader macros. -- WHN 19990308
250  #!+sparc ("src/code/sparc-vm" :not-host)
251  #!+hppa  ("src/code/hppa-vm"  :not-host)
252  #!+x86   ("src/code/x86-vm"   :not-host)
253  #!+x86-64("src/code/x86-64-vm"   :not-host)
254  #!+ppc   ("src/code/ppc-vm"   :not-host)
255  #!+alpha ("src/code/alpha-vm" :not-host)
256  #!+mips  ("src/code/mips-vm"  :not-host)
257  #!+arm   ("src/code/arm-vm" :not-host)
258  #!+arm64 ("src/code/arm64-vm" :not-host)
260  #!-win32 ("src/code/target-signal" :not-host) ; needs OS-CONTEXT-T from x86-vm
261  #!+win32 ("src/code/target-exception" :not-host)
263  ("src/code/bignum"     :not-host)
264  ("src/code/numbers"    :not-host)
265  ("src/code/float-trap" :not-host)
266  ("src/code/float"      :not-host)
267  ("src/code/irrat"      :not-host)
269  ("src/code/char")
270  ("src/code/huffman")
271  ("src/code/target-char"    :not-host)
272  ("src/code/target-unicode" :not-host)
273  ("src/code/misc")
275  ("src/code/symbol"        :not-host)
276  ("src/code/fd-stream"     :not-host)
277  ("src/code/stream"        :not-host)
278  ("src/code/early-format")
279  ("src/code/defpackage"    :not-host)
281  ("src/code/error-error" :not-host) ; needs WITH-STANDARD-IO-SYNTAX macro
282  ("src/code/common-os" :not-host)
284  ("src/code/deadline" :not-host)
285  ("src/code/serve-event" :not-host)
287  ("src/code/query"  :not-host)
289  ("src/code/sort"  :not-host)
290  ("src/code/time"  :not-host)
291  ("src/code/final" :not-host)
293  ("src/code/stubs" :not-host)
295  ("src/code/exhaust" :not-host)
297  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
298  ;;; compiler (and a few miscellaneous files whose dependencies make it
299  ;;; convenient to stick them here)
301  ("src/compiler/policies")
303  ;; ("src/code/defbangmacro" was here until sbcl-0.6.7.3.)
305  ("src/compiler/macros")
307  ("src/compiler/constantp")
308  ("src/compiler/info-functions")
310  ("src/compiler/generic/vm-macs")
311  ("src/compiler/generic/objdef")
313  ;; needed by "compiler/vop"
314  ("src/compiler/sset")
315  ("src/code/early-type")
317  ;; for e.g. BLOCK-ANNOTATION, needed by "compiler/vop"
318  ("src/compiler/node")
319  ;; RECONSTRUCT-LEXENV needs types GLOBAL-VAR and DEFINED-FUN
320  ("src/compiler/lexenv")
322  ;; This has ASSEMBLY-UNIT-related stuff needed by core.lisp.
323  ;; and LABEL, needed by IR2-NLX-INFO
324  ("src/compiler/early-assem")
326  ;; for e.g. PRIMITIVE-TYPE, needed by "vmdef"
327  ("src/compiler/vop")
328  ("src/compiler/constant-leaf")
330  ;; needed by "vm" and "primtype"
331  ("src/compiler/backend")
333  ;; for e.g. MAX-VOP-TN-REFS, needed by "meta-vmdef"
334  ("src/compiler/vmdef")
336  ;; needs "backend"
337  ("src/compiler/target/backend-parms")
338  ("src/code/room" :not-host) ; needs GENCGC-CARD-BYTES
340  ("src/code/force-delayed-defbangconstants")
341  ("src/code/defmacro")
342  ("src/code/destructuring-bind")
344  ;; for e.g. !DEF-PRIMITIVE-TYPE, needed by primtype.lisp, and
345  ;; DEFINE-STORAGE-CLASS, needed by target/vm.lisp
346  ("src/compiler/meta-vmdef")
348  ;; for e.g. DESCRIPTOR-REG, needed by primtype.lisp
349  ("src/compiler/target/vm")
351  ;; RANDOM-LAYOUT-CLOS-HASH (in 'class') uses RANDOM, the transform for which
352  ;; uses GENERATE-RANDOM-EXPR-FOR-POWER-OF-2 which becomes BIG-RANDOM-CHUNK,
353  ;; which wants to be inlined, and which when inlined becomes RANDOM-CHUNK,
354  ;; which also wants to be inlined.
355  ("src/code/target-random" :not-host)
356  ;; META-FIXME: I think I figured out why this was, and fixed that,
357  ;; and never removed the following comment, nor can I remember why.
358  ;; FIXME: Classic CMU CL had (OPTIMIZE (SAFETY 2) (DEBUG 2) declared
359  ;; around the compilation of "code/class". Why?
360  ("src/code/class")
361  ("src/pcl/pre-warm")
362  ("src/pcl/low" :not-host)
364  ("src/code/debug-info")
365  ("src/code/source-location")
366  ;; Define at most one INTERPRETED-FUNCTION type based on target features
367  #!+sb-eval ("src/code/early-full-eval" :not-host)
368  #!+sb-fasteval ("src/interpreter/function" :not-host)
369  ("src/code/early-condition")
370  ("src/code/condition" :not-host)
371  ("src/code/toplevel"  :not-host)
372  ("src/code/parse-defmacro-errors")
373  ("src/code/format-directive")
374  ;; Target-only stuff should usually be compiled late unless it has
375  ;; compile-time side-effects. This file could probably be later,
376  ;; but should certainly be no earlier than the definitions
377  ;; of FORMAT-ERROR and FORMAT-DIRECTIVE.
378  ("src/code/target-format" :not-host)
380  ("src/compiler/generic/primtype")
382  ;; for DEFSTRUCT ALIEN-TYPE, needed by host-type.lisp
383  ("src/code/host-alieneval")
385  ;; can't be done until definition of e.g. DEFINE-ALIEN-TYPE-CLASS in
386  ;; host-alieneval.lisp
387  ("src/code/host-c-call")
389  ;; SB!XC:DEFTYPE is needed in order to compile late-type
390  ;; in the host Common Lisp, and in order to run, it needs
391  ;; %COMPILER-DEFTYPE.
392  ("src/compiler/compiler-deftype")
394  ;; These appear here in the build sequence because they require
395  ;;   * the macro INFO, defined in globaldb.lisp, and
396  ;;   * the function PARSE-DEFMACRO, defined in parse-defmacro.lisp,
397  ;; and because they define
398  ;;   * the function SPECIFIER-TYPE, which is used in fndb.lisp.
399  ("src/code/late-type")
400  ;; Compile target-only stuff after all defglobals like *CONS-T-T-TYPE*
401  ;; and all type-classes are defined.
402  ("src/code/target-type" :not-host)
403  ("src/code/deftypes-for-target")
405  ;; defines IR1-ATTRIBUTES macro, needed by proclaim.lisp
406  ("src/compiler/knownfun")
408  ;; needs FUN-INFO structure slot setters, defined in knownfun.lisp
409  ("src/compiler/fun-info-funs")
411  ;; stuff needed by "code/defstruct"
412  ("src/code/cross-type" :not-target)
413  ("src/compiler/generic/vm-type")
414  ("src/compiler/proclaim")
416  ("src/code/class-init")
418  ;; The DEFSTRUCT machinery needs SB!XC:SUBTYPEP, defined in
419  ;; "code/late-type", and SB!XC:TYPEP, defined in "code/cross-type",
420  ;; and SPECIALIZE-ARRAY-TYPE, defined in "compiler/generic/vm-type",
421  ;; and SB!XC:PROCLAIM, defined in "src/compiler/proclaim"
422  ;; FIXME: #+ should be (and sb-xc-host) but it isn't set yet.
423  ("src/code/defstruct" #+cmucl :ignore-failure-p)
424  ("src/code/target-defstruct" :not-host)
426  ;; ALIEN-VALUE has to be defined as a class (done by DEFSTRUCT
427  ;; machinery) before we can set its superclasses here.
428  ("src/code/alien-type")
430  ;; This needs not just the SB!XC:DEFSTRUCT machinery, but also
431  ;; the TYPE= stuff defined in late-type.lisp, and the
432  ;; CHECK-FUN-NAME defined in proclaim.lisp.
433  ("src/code/force-delayed-defbangstructs")
435  ("src/code/typep" :not-host)
437  ("src/compiler/compiler-error")
439  ("src/code/type-init")
440  ;; Now that the type system is initialized, fix up UNKNOWN types that
441  ;; have crept in.
442  ("src/compiler/fixup-type")
444  ;; These define target types needed by fndb.lisp.
445  ("src/code/package")
446  ("src/code/random")
447  ("src/code/hash-table")
448  ("src/code/readtable")
449  ("src/code/pathname")
451  ;; KLUDGE: Much stuff above here is the type system and/or the INFO
452  ;; system, not really the compiler proper. It might be easier to
453  ;; understand the system if those things were split off into packages
454  ;; SB-TYPE and SB-INFO and built in their own sections. -- WHN 20000124
456  ;; In classic CMU CL (re)build order, these were done later, but
457  ;; in building from scratch, these must be loaded before
458  ;; "compiler/generic/objdef" in order to allow forms like
459  ;; (DEFINE-PRIMITIVE-OBJECT (..) (CAR ..) ..) to work.
460  ("src/compiler/fndb")
461  ("src/compiler/generic/vm-fndb")
463  ("src/compiler/generic/late-objdef")
465  ("src/compiler/generic/interr")
467  ("src/compiler/bit-util")
469  ;; core.lisp contains DEFSTRUCT CORE-OBJECT, and "compiler/main.lisp"
470  ;; does lots of (TYPEP FOO 'CORE-OBJECT), so it's nice to compile this
471  ;; before "compiler/main.lisp" so that those can be coded efficiently
472  ;; (and so that they don't cause lots of annoying compiler warnings
473  ;; about undefined types).
474  ("src/compiler/fixup") ; for DEFSTRUCT FIXUP
475  ("src/compiler/generic/core")
476  ("src/code/thread")
477  ("src/code/load")
479  #!+linkage-table ("src/code/linkage-table" :not-host)
480  #!+os-provides-dlopen ("src/code/foreign-load" :not-host)
481  #!+(and os-provides-dlopen (not win32)) ("src/code/unix-foreign-load" :not-host)
482  #!+(and os-provides-dlopen win32) ("src/code/win32-foreign-load" :not-host)
483  ("src/code/foreign")
485  ("src/code/fop") ; needs macros from code/load.lisp
487  ("src/compiler/ctype")
488  ("src/compiler/disassem")
489  ("src/compiler/assem")
491  ;; Compiling this requires fop definitions from code/fop.lisp and
492  ("src/compiler/dump")
494  ("src/compiler/ir1report") ; for COMPILER-ERROR-CONTEXT
495  ("src/compiler/main") ; needs DEFSTRUCT FASL-OUTPUT from dump.lisp
496  ("src/compiler/xref")
497  ("src/compiler/target-main" :not-host)
498  ("src/compiler/ir1tran")
499  ("src/compiler/ir1tran-lambda")
500  ("src/compiler/ir1-translators")
501  ;; FIXME: #+ should be (and sb-xc-host) but it isn't set yet.
502  ("src/compiler/ir1util" #+cmucl :ignore-failure-p)
503  ("src/compiler/ir1opt")
504  ("src/compiler/loop")
506  ("src/compiler/ir1final")
507  ("src/compiler/array-tran")
508  ("src/compiler/seqtran")
509  ("src/compiler/typetran")
510  ("src/compiler/generic/vm-typetran")
511  ("src/compiler/float-tran")
512  ("src/compiler/saptran")
513  ("src/compiler/srctran")
514  ("src/code/quantifiers")
515  ("src/compiler/bitops-derive-type")
516  ("src/compiler/generic/vm-tran")
517  ("src/compiler/locall")
518  ("src/compiler/dfo")
519  ("src/compiler/dce")
520  ("src/compiler/checkgen")
521  ("src/compiler/constraint")
522  ("src/compiler/physenvanal")
524  ("src/compiler/tn")
525  ("src/compiler/life")
527  ("src/compiler/debug-dump")
528  ("src/compiler/generic/utils")
529  ("src/compiler/fopcompile")
531  ("src/assembly/assemfile" :not-target)
533  ;; Compiling this file requires the macros SB!ASSEM:EMIT-LABEL and
534  ;; SB!ASSEM:EMIT-POST-IT, defined in assem.lisp, and also possibly
535  ;; the definition of the LOCATION-INFO structure (if structures in
536  ;; the host lisp have setf expanders rather than setf functions).
537  ("src/compiler/late-vmdef")
539  ("src/compiler/target/insts")
540  ("src/compiler/target/macros")
541  ("src/compiler/generic/early-type-vops")
543  ("src/assembly/target/support")
545  ("src/compiler/target/move")
546  ("src/compiler/target/float")
547  #!+sb-simd-pack
548  ("src/compiler/target/simd-pack")
549  ("src/compiler/target/sap")
550  ("src/compiler/target/system")
551  ("src/compiler/target/char")
552  ("src/compiler/target/memory")
553  ("src/compiler/target/static-fn")
554  ("src/compiler/target/arith"
555   ;; KLUDGE: for ppc and sparc this appears to be necessary, as it
556   ;; used to be for array VOPs for X86 until ca. 0.8.5.24 when CSR's
557   ;; patch for that architecture was finally committed
558   ;;
559   ;; old (0.8.5.23) comment on the array-VOP hack for X86:
560   ;; x Compiling this file for X86 raises alarming warnings of
561   ;; x the form
562   ;; x    Argument FOO to VOP CHECK-BOUND has SC restriction
563   ;; x    DESCRIPTOR-REG which is not allowed by the operand type:
564   ;; x      (:OR POSITIVE-FIXNUM)
565   ;; x This seems not to be something that I broke, but rather a "feature"
566   ;; x inherited from classic CMU CL. (Debian cmucl_2.4.8.deb compiling
567   ;; x Debian cmucl_2.4.8.tar.gz raises the same warning). Thus, even though
568   ;; x these warnings are severe enough that they would ordinarily abort
569   ;; x compilation, for now we blithely ignore them and press on to more
570   ;; x pressing problems. Someday, though, it would be nice to figure out
571   ;; x what the problem is and fix it.
572   #!+(or ppc) :ignore-failure-p)
573  ("src/code/cross-modular"  :not-target)
575  ("src/compiler/generic/late-type-vops") ;; KLUDGE: it's not so late anymore
576  ("src/compiler/target/type-vops")
578  ("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/type-error")
593  ("src/compiler/target/pred")
595  ;; KLUDGE: The assembly files need to be compiled twice: once as
596  ;; normal lisp files, and once by sb-c:assemble-file.  We use a
597  ;; different suffix / "file type" for the :assem versions to make
598  ;; sure we don't scribble over anything we shouldn't.
600  ("src/assembly/target/assem-rtns")
601  ("src/assembly/target/array")
602  ("src/assembly/target/arith")
603  ("src/assembly/target/alloc")
604  ("src/assembly/target/assem-rtns" :assem :not-host)
605  ("src/assembly/target/array"      :assem :not-host)
606  ("src/assembly/target/arith"      :assem :not-host)
607  ("src/assembly/target/alloc"      :assem :not-host)
608  #!+read-only-tramps
609  ("src/assembly/target/tramps"     :assem :not-host :not-genesis)
611  ("src/compiler/pseudo-vops")
613  ("src/compiler/aliencomp")
615  ("src/compiler/ltv")
616  ("src/compiler/gtn")
617  ("src/compiler/ltn")
618  ("src/compiler/stack")
619  ("src/compiler/control")
620  ("src/compiler/entry")
621  ("src/compiler/ir2tran")
623  ("src/compiler/generic/vm-ir2tran")
625  ("src/compiler/copyprop")
626  ("src/compiler/represent")
627  ("src/compiler/ir2opt")
628  ("src/compiler/pack")
629  ("src/compiler/pack-iterative")
630  ("src/compiler/codegen")
631  ("src/compiler/debug")
633  #!+sb-dyncount ("src/compiler/dyncount")
634  #!+sb-dyncount ("src/code/dyncount")
636  ;; needed by OPEN-FASL-OUTPUT, which is called by COMPILE-FILE
637  ("src/code/format-time")
639  ;; needed by various unhappy-path cases in the cross-compiler
640  ("src/code/error")
642  ;; This wasn't in classic CMU CL "comcom.lisp", but it has some stuff
643  ;; that Python-as-cross-compiler has turned out to need.
644  ("src/code/macroexpand")
646  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
647  ;; files which depend in some way (directly or indirectly) on stuff
648  ;; compiled as part of the compiler
650  ("src/code/late-extensions") ; needs condition system
651  ("src/compiler/generic/target-core" :not-host) ; uses stuff from
652                                                 ;   "compiler/generic/core"
654  ("src/code/eval"              :not-host) ; uses INFO, wants compiler macro
655  ("src/code/target-sap"        :not-host) ; uses SAP-INT type
656  ("src/code/target-package"    :not-host) ; needs "code/package"
657  ("src/code/module"            :not-host)
658  ("src/code/bignum-random"     :not-host) ; needs "code/random" and
659                                           ;   "code/bignum"
660  ("src/code/target-hash-table" :not-host) ; needs "code/hash-table"
661  ("src/code/host-pprint") ; defines QUEUED-OP needed by 'pprint'
662  ("src/code/pprint" :not-host) ; defines WITH-PRETTY-STREAM needed by 'print'
663  ("src/code/print" :not-host)
664  ("src/code/reader"            :not-host) ; needs "code/readtable"
665  ("src/code/target-stream"     :not-host) ; needs WHITESPACEP from "code/reader"
666  ("src/code/target-pathname"   :not-host) ; needs "code/pathname"
667  #!-win32
668  ("src/code/unix-pathname"     :not-host)
669  #!+win32
670  ("src/code/win32-pathname"    :not-host)
671  ("src/code/filesys"           :not-host) ; needs HOST from "code/pathname"
673  ("src/code/target-misc"       :not-host) ; dribble-stream, used by "save"
674  ("src/code/save"              :not-host) ; uses the definition of PATHNAME
675                                           ;   from "code/pathname"
676  ("src/code/sharpm"            :not-host) ; uses stuff from "code/reader"
677  ("src/code/alloc"             :not-host)
679  ("src/code/early-step")                  ; target-thread needs *STEP-OUT*
681  ("src/code/target-thread"     :not-host)
682  ("src/code/timer" :not-host)
684  ;; defines SB!DI:DO-DEBUG-FUN-BLOCKS, needed by target-disassem.lisp
685  ("src/code/interr" :not-host)
686  ("src/code/gc"     :not-host)
687  ("src/code/purify" :not-host)
688  ("src/code/debug-int" :not-host)
690  ;; target-only assemblerish stuff
691  ("src/compiler/target-disassem"     :not-host)
692  ("src/compiler/target/target-insts" :not-host)
694  ("src/code/debug" :not-host)
696  ("src/code/octets" :not-host)
697  ("src/code/external-formats/enc-basic" :not-host)
698  ("src/code/external-formats/enc-ebcdic" :not-host)
699  #!+sb-unicode
700  ("src/code/external-formats/enc-cyr" :not-host)
701  #!+sb-unicode
702  ("src/code/external-formats/enc-dos" :not-host)
703  #!+sb-unicode
704  ("src/code/external-formats/enc-iso" :not-host)
705  #!+sb-unicode
706  ("src/code/external-formats/enc-win" :not-host)
707  #!+sb-unicode
708  ("src/code/external-formats/enc-mac" :not-host)
709  #!+sb-unicode
710  ("src/code/external-formats/mb-util" :not-host)
711  #!+sb-unicode
712  ("src/code/external-formats/enc-cn-tbl" :not-host)
713  #!+sb-unicode
714  ("src/code/external-formats/enc-cn" :not-host)
715  #!+sb-unicode
716  ("src/code/external-formats/enc-jpn-tbl" :not-host)
717  #!+sb-unicode
718  ("src/code/external-formats/enc-jpn" :not-host)
719  #!+sb-unicode
720  ("src/code/external-formats/enc-ucs" :not-host)
721  #!+sb-unicode
722  ("src/code/external-formats/enc-utf" :not-host)
724  #!+sb-eval
725  ("src/code/full-eval"   :not-host) ; uses INFO, ARG-COUNT-ERROR
727  ("src/code/bit-bash"    :not-host) ; needs %NEGATE from assembly/target/arith
729  ("src/code/target-load" :not-host) ; needs special vars from code/load.lisp
731  #!-(or x86 x86-64)
732  ("src/compiler/target/sanctify" :not-host)
734  ;; FIXME: Does this really need stuff from compiler/dump.lisp?
735  ("src/compiler/target-dump" :not-host) ; needs stuff from compiler/dump.lisp
737  ("src/code/cold-init" :not-host) ; needs (SETF EXTERN-ALIEN) macroexpansion
739  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
740  ;; target macros and DECLAIMs installed at build-the-cross-compiler time
742  ;; FIXME: here? earlier?  can probably be as late as possible.  Also
743  ;; maybe call it FORCE-DELAYED-PROCLAIMS?
744  ("src/compiler/late-proclaim")
746  ;; fundamental target macros (e.g. CL:DO and CL:DEFUN) and support
747  ;; for them
748  ("src/code/defboot")
749  ("src/code/setf")
750  ("src/code/macros")
751  ("src/code/loop")
753  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
754  ;; other target-code-building stuff which can't be processed until
755  ;; machinery like SB!XC:DEFMACRO exists
757  ("src/code/late-format") ; needs SB!XC:DEFMACRO
758  ("src/code/sxhash") ; needs SB!XC:DEFINE-MODIFY-MACRO
759  ("src/code/late-cas" :not-host)
761  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
762  ;; PCL-related stuff, which shouldn't need to be done earlier than
763  ;; anything else in cold build because after all it used to be
764  ;; postponed 'til warm init with no problems.
766  ("src/pcl/walk"))