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