Correct the function-designator-cast-types fix.
[sbcl.git] / build-order.lisp-expr
blob3ccafffc0a41f3eea064a6bf985a08f287e6d035
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/early-cl")
135  ("src/code/ansi-stream" :not-host)
136  ("src/code/early-fasl" :c-headers)
138  ("src/code/defbangstruct" :c-headers)
139  ("src/code/early-thread")
140  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
141  ;;; basic machinery for the target Lisp. Note that although most of these
142  ;;; files are flagged :NOT-HOST, a few might not be.
144  ("src/code/early-print" :not-host)
145  ("src/code/early-pprint" :not-host)
146  ("src/code/early-impl" :not-host)
148  ("src/code/target-extensions" :not-host)
150  ;; Needed before the first use of WITH-SINGLE-PACKAGE-LOCKED-ERROR.
151  ("src/code/early-package" :not-host)
153  ("src/compiler/defconstant")
155  ("src/code/early-raw-slots" :c-headers)
157  ("src/code/funutils" :not-host)
159  ("src/code/maphash" :not-host :slam-forcibly)
160  ("src/code/xset" :c-headers) ; for representation of MEMBER type
161  ;; This needs DEF!STRUCT, and is itself needed early so that structure
162  ;; accessors and inline functions defined here can be compiled inline
163  ;; later. (Avoiding full calls increases efficiency)
164  ("src/code/type-class" :c-headers)
166  ("src/code/cas" :not-host)
167  ("src/compiler/early-c" :c-headers)
168  ("src/compiler/fun-info" :c-headers)
169  ("src/pcl/slot-name") ; for calls from 'info-vector'
170  ;; 'info-vector' is needed at least as early as 'fdefinition' so that the
171  ;; inlined INFO-VECTOR-FDEFINITION is available to %COERCE-CALLABLE-TO-FUN.
172  ("src/code/signal" :not-host)
173  ("src/code/target-lfhash" :not-host)
174  ("src/compiler/info-vector" :c-headers)
175  ("src/compiler/globaldb" :c-headers)
176  ("src/code/primordial-type" :c-headers)
177  ("src/code/early-classoid" :c-headers)
178  ("src/code/early-alieneval" :c-headers)  ; for funs and vars needed at build and run time
180  ("src/code/sysmacs" :not-host)
182  ("src/code/target-error" :not-host)
184  ;; "src/code/toplevel.lisp" is the first to need this. It's generated
185  ;; automatically by grovel_headers.c, i.e. it's not under source control.
186  ("output/stuff-groveled-from-headers" :not-host)
188  ("src/code/cold-error"  :not-host)
189  ("src/code/fdefinition" :not-host)
191  ("src/compiler/generic/vm-array" :c-headers)
192  ("src/code/weak"          :not-host)
193  ;; 'target-alieneval' needs FILL-POINTER which is defined in 'array'
194  ("src/code/array"         :not-host) ; needs WEAK-POINTER-VALUE
195  ("src/code/pred" :not-host)
196  ("src/code/debug-var-io")
198  ("src/code/target-alieneval" :not-host)
199  ("src/code/target-c-call"    :not-host)
200  ("src/code/target-allocate"  :not-host)
202  ;; This needs DEFINE-ALIEN-ROUTINE from target-alieneval.
203  ("src/code/misc-aliens" :not-host)
205  ("src/code/early-float"   :not-host)
206  ("src/pcl/early-low" :not-host)
207   ;; Define at most one INTERPRETED-FUNCTION type based on target features
208  #!+sb-eval ("src/code/early-full-eval" :not-host)
209  #!+sb-fasteval ("src/interpreter/function" :not-host)
211  ("src/code/target-sxhash" :not-host) ; needs most-fooative-foo-float constants
213  ("src/code/list"   :not-host)
214  ("src/code/seq"    :not-host) ; "code/seq" should come after "code/list".
215  ("src/code/coerce" :not-host)
217  ("src/code/char" :c-headers)
218  ("src/code/huffman")
219  ("src/code/target-char"    :not-host)
220  ("src/code/target-unicode" :not-host)
221  ("src/code/string"     :not-host)
222  ("src/code/mipsstrops" :not-host)
224  ("src/code/early-time" :c-headers)
225  ("src/code/unix" :not-host)
226  #!+win32 ("src/code/win32" :not-host)
227  #!+mach  ("src/code/mach"     :not-host)
229  #!+android ("src/code/android-os" :not-host)
230  #!+mach  ("src/code/mach-os"  :not-host)
231  #!+sunos ("src/code/sunos-os" :not-host)
232  #!+hpux  ("src/code/hpux-os"  :not-host)
233  #!+osf1  ("src/code/osf1-os"  :not-host)
234  #!+irix  ("src/code/irix-os"  :not-host)
235  #!+bsd   ("src/code/bsd-os"   :not-host)
236  #!+linux ("src/code/linux-os" :not-host)
237  #!+win32 ("src/code/win32-os" :not-host)
239  ;; sparc-vm and ppc-vm need sc-offset defined to get at internal
240  ;; error args. This file contains stuff previously in
241  ;; debug-info.lisp.  Should it therefore be :not-host?  -- CSR,
242  ;; 2002-02-05
243  ("src/code/sc-offset" :c-headers)
245  ("src/code/share-vm" :not-host)
247  ("src/code/thread" :not-host) ; provides *CURRENT-THREAD* for target-signal
248  ("src/code/target-signal-common" :not-host)
249  #!-win32 ("src/code/target-signal" :not-host) ; needs OS-CONTEXT-T from share-vm
250  #!+win32 ("src/code/target-exception" :not-host)
252  ("src/code/bignum"     :not-host)
253  ("src/code/numbers"    :not-host)
254  ("src/code/float-trap" :not-host)
255  ("src/code/float"      :not-host)
256  ("src/code/irrat"      :not-host)
258  ("src/code/misc" :c-headers)
260  ("src/code/symbol"        :not-host)
261  ("src/code/late-cas"      :not-host)
262  ("src/code/fd-stream"     :not-host)
263  ("src/code/stream"        :not-host)
264  ("src/code/early-format")
266  ("src/code/error-error" :not-host) ; needs WITH-STANDARD-IO-SYNTAX macro
267  ("src/code/common-os" :not-host)
269  ("src/code/deadline" :not-host)
270  ("src/code/serve-event" :not-host)
272  ("src/code/query"  :not-host)
274  ("src/code/sort"  :not-host)
275  ("src/code/time"  :not-host)
276  ("src/code/final" :not-host)
278  ("src/code/exhaust" :not-host)
280  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
281  ;;; compiler (and a few miscellaneous files whose dependencies make it
282  ;;; convenient to stick them here)
284  ("src/compiler/policies")
286  ("src/compiler/macros" :c-headers)
288  ("src/compiler/constantp" :c-headers)
289  ("src/compiler/info-functions" :c-headers)
290  ("src/code/specializable-array" :not-target)
292  ("src/compiler/generic/vm-macs" :c-headers)
293  ("src/compiler/generic/objdef" :c-headers)
295  ;; needed by "compiler/vop"
296  ("src/compiler/sset" :c-headers)
297  ("src/code/early-type" :c-headers)
299  ;; for e.g. BLOCK-ANNOTATION, needed by "compiler/vop"
300  ("src/compiler/node" :c-headers)
301  ;; RECONSTRUCT-LEXENV needs types GLOBAL-VAR and DEFINED-FUN
302  ("src/compiler/lexenv")
304  ;; This has ASSEMBLY-UNIT-related stuff needed by core.lisp.
305  ;; and LABEL, needed by IR2-NLX-INFO
306  ("src/compiler/early-assem")
308  ;; for e.g. PRIMITIVE-TYPE, needed by "vmdef"
309  ("src/compiler/vop" :c-headers)
310  ("src/compiler/constant-leaf")
312  ;; needed by "vm" and "primtype"
313  ("src/compiler/backend" :c-headers)
315  ;; for e.g. MAX-VOP-TN-REFS, needed by "meta-vmdef"
316  ("src/compiler/vmdef" :c-headers)
318  ("src/code/force-delayed-defbangconstants")
319  ("src/code/defmacro" :c-headers)
320  ("src/code/destructuring-bind" :c-headers)
322  ;; for e.g. !DEF-PRIMITIVE-TYPE, needed by primtype.lisp, and
323  ;; DEFINE-STORAGE-CLASS, needed by target/vm.lisp
324  ("src/compiler/meta-vmdef" :c-headers)
326  ("src/compiler/fixup") ; for DEFSTRUCT FIXUP, needed by generic/core
327  ("src/compiler/generic/core") ; for CORE-OBJECT-P, needed by x86-64/vm
329  ;; for e.g. DESCRIPTOR-REG, needed by primtype.lisp
330  ("src/compiler/target/vm" :c-headers)
332  ;; KLUDGE: I'd prefer to have this done with a "code/target" softlink
333  ;; instead of a bunch of reader macros. -- WHN 19990308
334  #!+sparc ("src/code/sparc-vm")
335  #!+hppa  ("src/code/hppa-vm")
336  #!+x86   ("src/code/x86-vm"   :not-host)
337  #!+x86-64("src/code/x86-64-vm"   :not-host)
338  #!+ppc   ("src/code/ppc-vm")
339  #!+alpha ("src/code/alpha-vm")
340  #!+mips  ("src/code/mips-vm")
341  #!+arm   ("src/code/arm-vm")
342  #!+arm64 ("src/code/arm64-vm")
344  ;; RANDOM-LAYOUT-CLOS-HASH (in 'class') uses RANDOM, the transform for which
345  ;; uses GENERATE-RANDOM-EXPR-FOR-POWER-OF-2 which becomes BIG-RANDOM-CHUNK,
346  ;; which wants to be inlined, and which when inlined becomes RANDOM-CHUNK,
347  ;; which also wants to be inlined.
348  ("src/code/target-random" :not-host)
349  ;; META-FIXME: I think I figured out why this was, and fixed that,
350  ;; and never removed the following comment, nor can I remember why.
351  ;; FIXME: Classic CMU CL had (OPTIMIZE (SAFETY 2) (DEBUG 2) declared
352  ;; around the compilation of "code/class". Why?
353  ("src/code/class" :c-headers)
354  ("src/pcl/pre-warm")
355  ("src/pcl/low" :not-host)
357  ("src/code/debug-info" :c-headers)
358  ("src/code/source-location")
359  ("src/code/early-class")
360  ("src/code/condition" :not-host)
361  ("src/code/toplevel"  :not-host)
362  ("src/code/parse-defmacro-errors")
363  ("src/code/format-directive")
364  ;; Target-only stuff should usually be compiled late unless it has
365  ;; compile-time side-effects. This file could probably be later,
366  ;; but should certainly be no earlier than the definitions
367  ;; of FORMAT-ERROR and FORMAT-DIRECTIVE.
368  ("src/code/target-format" :not-host)
370  ("src/compiler/generic/primtype" :c-headers)
372  ;; for DEFSTRUCT ALIEN-TYPE, needed by host-type.lisp
373  ("src/code/host-alieneval")
375  ;; can't be done until definition of e.g. DEFINE-ALIEN-TYPE-CLASS in
376  ;; host-alieneval.lisp
377  ("src/code/host-c-call")
379  ;; SB!XC:DEFTYPE is needed in order to compile late-type
380  ;; in the host Common Lisp, and in order to run, it needs
381  ;; %COMPILER-DEFTYPE.
382  ("src/compiler/compiler-deftype" :c-headers)
384  ;; These appear here in the build sequence because they require
385  ;;   * the macro INFO, defined in globaldb.lisp, and
386  ;;   * the function PARSE-DEFMACRO, defined in parse-defmacro.lisp,
387  ;; and because they define
388  ;;   * the function SPECIFIER-TYPE, which is used in fndb.lisp.
389  ("src/code/late-type" :c-headers)
390  ;; Compile target-only stuff after all defglobals like *CONS-T-T-TYPE*
391  ;; and all type-classes are defined.
392  ("src/code/target-type" :not-host)
393  ("src/code/deftypes-for-target" :c-headers)
395  ;; defines IR1-ATTRIBUTES macro, needed by proclaim.lisp
396  ("src/compiler/knownfun")
398  ;; needs FUN-INFO structure slot setters, defined in knownfun.lisp
399  ("src/compiler/fun-info-funs")
401  ;; stuff needed by "code/defstruct"
402  ("src/code/cross-type" :c-headers :not-target)
403  ("src/compiler/generic/vm-type" :c-headers)
404  ("src/compiler/proclaim" :c-headers)
406  ("src/code/class-init" :c-headers)
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  ;; FIXME: #+ should be (and sb-xc-host) but it isn't set yet.
413  ("src/code/defstruct"  :c-headers #+cmucl :ignore-failure-p)
414  ("src/code/target-defstruct" :not-host)
416  ;; ALIEN-VALUE has to be defined as a class (done by DEFSTRUCT
417  ;; machinery) before we can set its superclasses here.
418  ("src/code/alien-type")
420  ;; This needs not just the SB!XC:DEFSTRUCT machinery, but also
421  ;; the TYPE= stuff defined in late-type.lisp, and the
422  ;; CHECK-FUN-NAME defined in proclaim.lisp.
423  ("src/code/force-delayed-defbangstructs" :c-headers)
425  ("src/code/typep" :not-host)
427  ("src/compiler/compiler-error")
429  ("src/code/type-init")
430  ;; Now that the type system is initialized, fix up UNKNOWN types that
431  ;; have crept in.
432  ("src/compiler/fixup-type")
434  ;; These define target types needed by fndb.lisp.
435  ("src/code/package" :c-headers)
436  ("src/code/random")
437  ("src/code/hash-table" :c-headers)
438  ("src/code/readtable")
439  ("src/code/pathname")
441  ("src/compiler/fndb")
442  ("src/compiler/generic/vm-fndb")
444  ("src/compiler/generic/late-objdef" :c-headers)
446  ("src/compiler/generic/interr" :c-headers)
448  ("src/compiler/bit-util")
450  ("src/code/load")
452  #!+linkage-table ("src/code/linkage-table" :not-host)
453  #!+os-provides-dlopen ("src/code/foreign-load" :not-host)
454  #!+(and os-provides-dlopen (not win32)) ("src/code/unix-foreign-load" :not-host)
455  #!+(and os-provides-dlopen win32) ("src/code/win32-foreign-load" :not-host)
456  ("src/code/foreign")
458  ("src/code/fop") ; needs macros from code/load.lisp
460  ("src/compiler/ctype")
461  ("src/compiler/disassem")
462  ("src/compiler/assem")
464  ;; Compiling this requires fop definitions from code/fop.lisp and
465  ("src/compiler/dump")
467  ("src/compiler/ir1report") ; for COMPILER-ERROR-CONTEXT
468  ("src/compiler/main") ; needs DEFSTRUCT FASL-OUTPUT from dump.lisp
469  ("src/compiler/xref")
470  ("src/compiler/target-main" :not-host)
471  ("src/compiler/ir1tran")
472  ("src/compiler/ir1tran-lambda")
473  ("src/compiler/ir1-translators")
474  ;; FIXME: #+ should be (and sb-xc-host) but it isn't set yet.
475  ("src/compiler/ir1util" #+cmucl :ignore-failure-p)
476  ("src/compiler/callable-args")
477  ("src/compiler/ir1opt")
478  ("src/compiler/loop")
480  ("src/compiler/ir1final")
481  ("src/compiler/array-tran")
482  ("src/compiler/seqtran")
483  ("src/compiler/typetran")
484  ("src/compiler/generic/vm-typetran")
485  ("src/compiler/float-tran")
486  ("src/compiler/saptran")
487  ("src/compiler/srctran")
488  ("src/code/quantifiers")
489  ("src/compiler/bitops-derive-type")
490  ("src/compiler/generic/vm-tran")
491  ("src/compiler/locall")
492  ("src/compiler/dfo")
493  ("src/compiler/dce")
494  ("src/compiler/checkgen")
495  ("src/compiler/constraint")
496  ("src/compiler/physenvanal")
498  ("src/compiler/tn")
499  ("src/compiler/life")
501  ("src/compiler/debug-dump")
502  ("src/compiler/generic/utils" :c-headers)
503  ("src/compiler/fopcompile")
505  ("src/assembly/assemfile" :not-target)
507  ;; Compiling this file requires the macros SB!ASSEM:EMIT-LABEL and
508  ;; SB!ASSEM:EMIT-POST-IT, defined in assem.lisp, and also possibly
509  ;; the definition of the LOCATION-INFO structure (if structures in
510  ;; the host lisp have setf expanders rather than setf functions).
511  ("src/compiler/late-vmdef")
513  ("src/compiler/target-dstate" :not-host)
514  ("src/compiler/target/insts")
515  ("src/compiler/target/macros")
516  ("src/compiler/generic/pinned-objects")
517  ("src/compiler/generic/early-type-vops")
519  ("src/assembly/target/support")
521  ("src/compiler/target/move")
522  ("src/compiler/target/float")
523  #!+sb-simd-pack
524  ("src/compiler/target/simd-pack")
525  ("src/compiler/target/sap")
526  ("src/compiler/target/system")
527  ("src/compiler/target/char")
528  ("src/compiler/target/memory")
529  ("src/compiler/target/arith"
530   ;; KLUDGE: for ppc and sparc this appears to be necessary, as it
531   ;; used to be for array VOPs for X86 until ca. 0.8.5.24 when CSR's
532   ;; patch for that architecture was finally committed
533   ;;
534   ;; old (0.8.5.23) comment on the array-VOP hack for X86:
535   ;; x Compiling this file for X86 raises alarming warnings of
536   ;; x the form
537   ;; x    Argument FOO to VOP CHECK-BOUND has SC restriction
538   ;; x    DESCRIPTOR-REG which is not allowed by the operand type:
539   ;; x      (:OR POSITIVE-FIXNUM)
540   ;; x This seems not to be something that I broke, but rather a "feature"
541   ;; x inherited from classic CMU CL. (Debian cmucl_2.4.8.deb compiling
542   ;; x Debian cmucl_2.4.8.tar.gz raises the same warning). Thus, even though
543   ;; x these warnings are severe enough that they would ordinarily abort
544   ;; x compilation, for now we blithely ignore them and press on to more
545   ;; x pressing problems. Someday, though, it would be nice to figure out
546   ;; x what the problem is and fix it.
547   #!+(or ppc) :ignore-failure-p)
548  ("src/code/cross-modular"  :not-target)
550  ("src/compiler/generic/late-type-vops") ;; KLUDGE: it's not so late anymore
551  ("src/compiler/target/type-vops")
553  ("src/compiler/target/subprim")
554  ("src/compiler/target/debug")
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  ("src/code/late-globaldb" :not-host)
707  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
708  ;; PCL-related stuff, which shouldn't need to be done earlier than
709  ;; anything else in cold build because after all it used to be
710  ;; postponed 'til warm init with no problems.
712  ("src/pcl/walk"))
714 ;;; warm build skips the list of files above even though there is no "#!" macro
715 ;;; at this point. That's not specified behavior of *READ-SUPPRESS*.
716 ;;; The place to change this behavior is in DISPATCH-CHAR-ERROR.
717 ;;; Then we would need to define "#!" to do something whenever this file is read.
718 ;;; If we're going down that route, we should change these feature expressions
719 ;;; to use "#!" syntax rather than rely on a bug to skip the above form.
720 #+warm-build-phase
721 (("src/code/warm-error"
722   "src/code/room" ; for MAP-ALLOCATED-OBJECTS
723   ;; We re-nickname SB-SEQUENCE as SEQUENCE now.
724   ;; It could be done in genesis, but not earlier,
725   ;; since the host has a package of that name.
726   "src/code/defpackage")
728  #+sb-fasteval
729  ("src/interpreter/macros"
730   "src/interpreter/checkfuns"
731   "src/interpreter/env"
732   "src/interpreter/sexpr"
733   "src/interpreter/special-forms"
734   "src/interpreter/eval"
735   "src/interpreter/debug")
737  ("src/code/external-formats/enc-ebcdic")
738  #+sb-unicode
739  ("src/code/external-formats/enc-cyr"
740   "src/code/external-formats/enc-dos"
741   "src/code/external-formats/enc-iso"
742   "src/code/external-formats/enc-win"
743   "src/code/external-formats/enc-mac"
744   "src/code/external-formats/mb-util"
745   "src/code/external-formats/enc-cn-tbl"
746   "src/code/external-formats/enc-cn"
747   "src/code/external-formats/enc-jpn-tbl"
748   "src/code/external-formats/enc-jpn"
749   "src/code/external-formats/enc-utf")
751  ("src/code/stubs")
753  ;; CLOS, derived from the PCL reference implementation
754  ;;
755  ;; This PCL build order is based on a particular
756  ;; (arbitrary) linearization of the declared build
757  ;; order dependencies from the old PCL defsys.lisp
758  ;; dependency database.
759  ("src/pcl/macros"
760   "src/pcl/compiler-support"
761   "src/pcl/defclass"
762   "src/pcl/defs"
763   "src/pcl/fngen"
764   "src/pcl/wrapper"
765   "src/pcl/cache"
766   "src/pcl/dlisp"
767   "src/pcl/boot"
768   "src/pcl/vector"
769   "src/pcl/slots-boot"
770   "src/pcl/combin"
771   "src/pcl/dfun"
772   "src/pcl/ctor"
773   "src/pcl/braid"
774   "src/pcl/dlisp3"
775   "src/pcl/generic-functions"
776   "src/pcl/slots"
777   "src/pcl/init"
778   "src/pcl/std-class"
779   "src/pcl/cpl"
780   "src/pcl/fsc"
781   "src/pcl/methods"
782   "src/pcl/fixup"
783   "src/pcl/defcombin"
784   "src/pcl/ctypes"
785   "src/pcl/env"
786   "src/pcl/documentation"
787   "src/pcl/print-object"
788   "src/pcl/precom1"
789   "src/pcl/precom2")
791  ("src/code/setf-funs"
792   ;; miscellaneous functionality which depends on CLOS
793   "src/code/late-condition"
795   ;; CLOS-level support for the Gray OO streams
796   ;; extension (which is also supported by various
797   ;; lower-level hooks elsewhere in the code)
798   "src/pcl/gray-streams-class"
799   "src/pcl/gray-streams"
801   ;; CLOS-level support for User-extensible sequences.
802   "src/pcl/sequence"
804   ;; other functionality not needed for cold init, moved
805   ;; to warm init to reduce peak memory requirement in
806   ;; cold init
807   "src/code/describe"
809   "src/code/describe-policy"
810   "src/code/inspect"
811   "src/code/profile"
812   "src/code/ntrace"
813   "src/code/step"
814   "src/code/warm-lib"
815   #+win32 "src/code/warm-mswin"
816   "src/code/run-program"
817   #+gencgc "src/code/traceroot"
819   #+immobile-code "src/code/immobile-space"
820   "src/code/repack-xref"
821   #+cheneygc "src/code/purify"
822   "src/code/save"))