Fix MAP declaration.
[sbcl.git] / build-order.lisp-expr
blob13bb7ea9020448c32c32da8ff9b0484df486a404
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/generic/parms" :c-headers)
113  ("src/compiler/target/parms" :c-headers)
114  ("src/compiler/generic/early-vm" :c-headers)
115  ("src/compiler/generic/early-objdef" :c-headers)
116  ("src/code/early-array" :c-headers) ; needs "early-vm" numbers
118  ("src/code/kernel" :not-host)
119  ;; This has the BARRIER stuff that the threading support needs,
120  ;; required for some code in 'early-extensions'
121  ("src/code/barrier" :not-host)
122  ("src/code/parse-body" :c-headers)       ; on host for PARSE-BODY
123  ("src/code/unportable-float")
124  ("src/compiler/policy" :c-headers :slam-forcibly)
125  #!+sb-fasteval ("src/interpreter/basic-env")
126  ;; PARSE-{UNKNOWN,DEPRECATED}-TYPE and other things should be known
127  ;; condition subtypes as soon as possible
128  ("src/code/condition-boot" :not-host)
129  ("src/code/early-extensions" :c-headers) ; on host for COLLECT, SYMBOLICATE, etc.
130  ("src/compiler/parse-lambda-list" :c-headers)
131  ("src/code/restart" :not-host) ; %DEFCONSTANT can bind a restart
133  ("src/code/specializable-array")
135  ("src/code/early-cl")
136  ("src/code/ansi-stream" :not-host)
137  ("src/code/early-fasl" :c-headers)
139  ("src/code/defbangstruct" :c-headers)
140  ("src/code/early-thread")
141  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
142  ;;; basic machinery for the target Lisp. Note that although most of these
143  ;;; files are flagged :NOT-HOST, a few might not be.
145  ("src/code/early-print" :not-host)
146  ("src/code/early-pprint" :not-host)
147  ("src/code/early-impl" :not-host)
149  ("src/code/target-extensions" :not-host)
151  ;; Needed before the first use of WITH-SINGLE-PACKAGE-LOCKED-ERROR.
152  ("src/code/early-package" :not-host)
154  ("src/compiler/defconstant")
156  ("src/code/early-raw-slots" :c-headers)
158  ("src/code/funutils" :not-host)
160  ("src/code/maphash" :not-host :slam-forcibly)
161  ("src/code/xset" :c-headers) ; for representation of MEMBER type
162  ;; This needs DEF!STRUCT, and is itself needed early so that structure
163  ;; accessors and inline functions defined here can be compiled inline
164  ;; later. (Avoiding full calls increases efficiency)
165  ("src/code/type-class" :c-headers)
166  ("src/code/early-alieneval")  ; for funs and vars needed at build and run time
168  ("src/code/cas" :not-host)
169  ("src/compiler/early-c" :c-headers)
170  ("src/compiler/fun-info" :c-headers)
171  ("src/pcl/slot-name") ; for calls from 'info-vector'
172  ;; 'info-vector' is needed at least as early as 'fdefinition' so that the
173  ;; inlined INFO-VECTOR-FDEFINITION is available to %COERCE-CALLABLE-TO-FUN.
174  ("src/code/signal" :not-host)
175  ("src/compiler/info-vector" :c-headers)
176  ("src/compiler/globaldb" :c-headers)
177  ("src/code/primordial-type" :c-headers)
178  ("src/code/early-classoid" :c-headers)
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  ("src/code/target-sxhash" :not-host) ; needs most-fooative-foo-float constants
209  ("src/code/list"   :not-host)
210  ("src/code/seq"    :not-host) ; "code/seq" should come after "code/list".
211  ("src/code/coerce" :not-host)
213  ("src/code/char" :c-headers)
214  ("src/code/huffman")
215  ("src/code/target-char"    :not-host)
216  ("src/code/target-unicode" :not-host)
217  ("src/code/string"     :not-host)
218  ("src/code/mipsstrops" :not-host)
220  ("src/code/early-time" :c-headers)
221  ("src/code/unix" :not-host)
222  #!+win32 ("src/code/win32" :not-host)
223  #!+mach  ("src/code/mach"     :not-host)
225  #!+android ("src/code/android-os" :not-host)
226  #!+mach  ("src/code/mach-os"  :not-host)
227  #!+sunos ("src/code/sunos-os" :not-host)
228  #!+hpux  ("src/code/hpux-os"  :not-host)
229  #!+osf1  ("src/code/osf1-os"  :not-host)
230  #!+irix  ("src/code/irix-os"  :not-host)
231  #!+bsd   ("src/code/bsd-os"   :not-host)
232  #!+linux ("src/code/linux-os" :not-host)
233  #!+win32 ("src/code/win32-os" :not-host)
235  ;; sparc-vm and ppc-vm need sc-offset defined to get at internal
236  ;; error args. This file contains stuff previously in
237  ;; debug-info.lisp.  Should it therefore be :not-host?  -- CSR,
238  ;; 2002-02-05
239  ("src/code/sc-offset" :c-headers)
241  ("src/code/share-vm" :not-host)
243  ("src/code/thread" :not-host) ; provides *CURRENT-THREAD* for target-signal
244  #!-win32 ("src/code/target-signal" :not-host) ; needs OS-CONTEXT-T from share-vm
245  #!+win32 ("src/code/target-exception" :not-host)
247  ("src/code/bignum"     :not-host)
248  ("src/code/numbers"    :not-host)
249  ("src/code/float-trap" :not-host)
250  ("src/code/float"      :not-host)
251  ("src/code/irrat"      :not-host)
253  ("src/code/misc" :c-headers)
255  ("src/code/symbol"        :not-host)
256  ("src/code/late-cas"      :not-host)
257  ("src/code/fd-stream"     :not-host)
258  ("src/code/stream"        :not-host)
259  ("src/code/early-format")
261  ("src/code/error-error" :not-host) ; needs WITH-STANDARD-IO-SYNTAX macro
262  ("src/code/common-os" :not-host)
264  ("src/code/deadline" :not-host)
265  ("src/code/serve-event" :not-host)
267  ("src/code/query"  :not-host)
269  ("src/code/sort"  :not-host)
270  ("src/code/time"  :not-host)
271  ("src/code/final" :not-host)
273  ("src/code/exhaust" :not-host)
275  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
276  ;;; compiler (and a few miscellaneous files whose dependencies make it
277  ;;; convenient to stick them here)
279  ("src/compiler/policies")
281  ("src/compiler/macros" :c-headers)
283  ("src/compiler/constantp" :c-headers)
284  ("src/compiler/info-functions" :c-headers)
286  ("src/compiler/generic/vm-macs" :c-headers)
287  ("src/compiler/generic/objdef" :c-headers)
289  ;; needed by "compiler/vop"
290  ("src/compiler/sset" :c-headers)
291  ("src/code/early-type" :c-headers)
293  ;; for e.g. BLOCK-ANNOTATION, needed by "compiler/vop"
294  ("src/compiler/node" :c-headers)
295  ;; RECONSTRUCT-LEXENV needs types GLOBAL-VAR and DEFINED-FUN
296  ("src/compiler/lexenv")
298  ;; This has ASSEMBLY-UNIT-related stuff needed by core.lisp.
299  ;; and LABEL, needed by IR2-NLX-INFO
300  ("src/compiler/early-assem")
302  ;; for e.g. PRIMITIVE-TYPE, needed by "vmdef"
303  ("src/compiler/vop" :c-headers)
304  ("src/compiler/constant-leaf")
306  ;; needed by "vm" and "primtype"
307  ("src/compiler/backend" :c-headers)
309  ;; for e.g. MAX-VOP-TN-REFS, needed by "meta-vmdef"
310  ("src/compiler/vmdef" :c-headers)
312  ;; needs "backend"
313  ("src/compiler/target/backend-parms" :c-headers)
315  ("src/code/force-delayed-defbangconstants")
316  ("src/code/defmacro" :c-headers)
317  ("src/code/destructuring-bind" :c-headers)
319  ;; for e.g. !DEF-PRIMITIVE-TYPE, needed by primtype.lisp, and
320  ;; DEFINE-STORAGE-CLASS, needed by target/vm.lisp
321  ("src/compiler/meta-vmdef" :c-headers)
323  ("src/compiler/fixup") ; for DEFSTRUCT FIXUP, needed by generic/core
324  ("src/compiler/generic/core") ; for CORE-OBJECT-P, needed by x86-64/vm
326  ;; for e.g. DESCRIPTOR-REG, needed by primtype.lisp
327  ("src/compiler/target/vm" :c-headers)
329  ;; KLUDGE: I'd prefer to have this done with a "code/target" softlink
330  ;; instead of a bunch of reader macros. -- WHN 19990308
331  #!+sparc ("src/code/sparc-vm")
332  #!+hppa  ("src/code/hppa-vm")
333  #!+x86   ("src/code/x86-vm"   :not-host)
334  #!+x86-64("src/code/x86-64-vm"   :not-host)
335  #!+ppc   ("src/code/ppc-vm")
336  #!+alpha ("src/code/alpha-vm")
337  #!+mips  ("src/code/mips-vm")
338  #!+arm   ("src/code/arm-vm")
339  #!+arm64 ("src/code/arm64-vm")
341  ;; RANDOM-LAYOUT-CLOS-HASH (in 'class') uses RANDOM, the transform for which
342  ;; uses GENERATE-RANDOM-EXPR-FOR-POWER-OF-2 which becomes BIG-RANDOM-CHUNK,
343  ;; which wants to be inlined, and which when inlined becomes RANDOM-CHUNK,
344  ;; which also wants to be inlined.
345  ("src/code/target-random" :not-host)
346  ;; META-FIXME: I think I figured out why this was, and fixed that,
347  ;; and never removed the following comment, nor can I remember why.
348  ;; FIXME: Classic CMU CL had (OPTIMIZE (SAFETY 2) (DEBUG 2) declared
349  ;; around the compilation of "code/class". Why?
350  ("src/code/class" :c-headers)
351  ("src/pcl/pre-warm")
352  ("src/pcl/low" :not-host)
354  ("src/code/debug-info" :c-headers)
355  ("src/code/source-location")
356  ;; Define at most one INTERPRETED-FUNCTION type based on target features
357  #!+sb-eval ("src/code/early-full-eval" :not-host)
358  #!+sb-fasteval ("src/interpreter/function" :not-host)
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/insts")
514  ("src/compiler/target/macros")
515  ("src/compiler/generic/pinned-objects")
516  ("src/compiler/generic/early-type-vops")
518  ("src/assembly/target/support")
520  ("src/compiler/target/move")
521  ("src/compiler/target/float")
522  #!+sb-simd-pack
523  ("src/compiler/target/simd-pack")
524  ("src/compiler/target/sap")
525  ("src/compiler/target/system")
526  ("src/compiler/target/char")
527  ("src/compiler/target/memory")
528  ("src/compiler/target/arith"
529   ;; KLUDGE: for ppc and sparc this appears to be necessary, as it
530   ;; used to be for array VOPs for X86 until ca. 0.8.5.24 when CSR's
531   ;; patch for that architecture was finally committed
532   ;;
533   ;; old (0.8.5.23) comment on the array-VOP hack for X86:
534   ;; x Compiling this file for X86 raises alarming warnings of
535   ;; x the form
536   ;; x    Argument FOO to VOP CHECK-BOUND has SC restriction
537   ;; x    DESCRIPTOR-REG which is not allowed by the operand type:
538   ;; x      (:OR POSITIVE-FIXNUM)
539   ;; x This seems not to be something that I broke, but rather a "feature"
540   ;; x inherited from classic CMU CL. (Debian cmucl_2.4.8.deb compiling
541   ;; x Debian cmucl_2.4.8.tar.gz raises the same warning). Thus, even though
542   ;; x these warnings are severe enough that they would ordinarily abort
543   ;; x compilation, for now we blithely ignore them and press on to more
544   ;; x pressing problems. Someday, though, it would be nice to figure out
545   ;; x what the problem is and fix it.
546   #!+(or ppc) :ignore-failure-p)
547  ("src/code/cross-modular"  :not-target)
549  ("src/compiler/generic/late-type-vops") ;; KLUDGE: it's not so late anymore
550  ("src/compiler/target/type-vops")
552  ("src/compiler/target/subprim")
553  ("src/compiler/target/debug")
554  ;; src/compiler/sparc/c-call contains a deftransform for
555  ;; %ALIEN-FUNCALL -- CSR
556  ("src/compiler/early-aliencomp")
557  ("src/compiler/target/c-call")
558  ("src/compiler/target/cell")
559  ("src/compiler/target/values")
560  ("src/compiler/target/alloc")
561  ("src/compiler/target/call")
562  ("src/compiler/target/nlx")
563  ("src/compiler/generic/late-nlx")
564  ("src/compiler/target/show")
565  ("src/compiler/target/array")
566  ("src/compiler/generic/type-error")
567  ("src/compiler/target/pred")
569  ;; KLUDGE: The assembly files need to be compiled twice: once as
570  ;; normal lisp files, and once by sb-c:assemble-file.  We use a
571  ;; different suffix / "file type" for the :assem versions to make
572  ;; sure we don't scribble over anything we shouldn't.
574  ("src/assembly/target/assem-rtns")
575  ("src/assembly/target/array")
576  ("src/assembly/target/arith")
577  ("src/assembly/target/alloc")
578  ;; "tramps" should be listed first so that the physical order here
579  ;; reflects the order in which assembler files get loaded.
580  ("src/assembly/target/tramps"     :assem :not-host :not-genesis)
581  ("src/assembly/target/assem-rtns" :assem :not-host)
582  ("src/assembly/target/array"      :assem :not-host)
583  ("src/assembly/target/arith"      :assem :not-host)
584  ("src/assembly/target/alloc"      :assem :not-host)
586  ("src/compiler/pseudo-vops")
588  ("src/compiler/aliencomp")
590  ("src/compiler/ltv")
591  ("src/compiler/gtn")
592  ("src/compiler/ltn")
593  ("src/compiler/stack")
594  ("src/compiler/control")
595  ("src/compiler/entry")
596  ("src/compiler/ir2tran")
598  ("src/compiler/generic/vm-ir2tran")
600  ("src/compiler/copyprop")
601  ("src/compiler/represent")
602  ("src/compiler/ir2opt")
603  ("src/compiler/pack")
604  ("src/compiler/pack-iterative")
605  ("src/compiler/codegen")
606  ("src/compiler/debug")
608  #!+sb-dyncount ("src/compiler/dyncount")
609  #!+sb-dyncount ("src/code/dyncount")
611  ;; needed by OPEN-FASL-OUTPUT, which is called by COMPILE-FILE
612  ("src/code/format-time")
614  ;; needed by various unhappy-path cases in the cross-compiler
615  ("src/code/error")
617  ;; This wasn't in classic CMU CL "comcom.lisp", but it has some stuff
618  ;; that Python-as-cross-compiler has turned out to need.
619  ("src/code/macroexpand")
621  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
622  ;; files which depend in some way (directly or indirectly) on stuff
623  ;; compiled as part of the compiler
625  ("src/code/late-extensions") ; needs condition system
626  ("src/compiler/generic/target-core" :not-host) ; uses stuff from
627                                                 ;   "compiler/generic/core"
629  ("src/code/eval"              :not-host) ; uses INFO, wants compiler macro
630  ("src/code/target-sap"        :not-host) ; uses SAP-INT type
631  ("src/code/target-package"    :not-host) ; needs "code/package"
632  ("src/code/module"            :not-host)
633  ("src/code/bignum-random"     :not-host) ; needs "code/random" and
634                                           ;   "code/bignum"
635  ("src/code/target-hash-table" :not-host) ; needs "code/hash-table"
636  ("src/code/host-pprint") ; defines QUEUED-OP needed by 'pprint'
637  ("src/code/pprint" :not-host) ; defines WITH-PRETTY-STREAM needed by 'print'
638  ("src/code/print" :not-host)
639  ("src/code/reader"            :not-host) ; needs "code/readtable"
640  ("src/code/target-stream"     :not-host) ; needs WHITESPACEP from "code/reader"
641  ("src/code/target-pathname"   :not-host) ; needs "code/pathname"
642  #!-win32
643  ("src/code/unix-pathname"     :not-host)
644  #!+win32
645  ("src/code/win32-pathname"    :not-host)
646  ("src/code/filesys"           :not-host) ; needs HOST from "code/pathname"
648  ("src/code/target-misc"       :not-host) ; dribble-stream, used by "save"
649  ("src/code/sharpm"            :not-host) ; uses stuff from "code/reader"
651  ("src/code/early-step")                  ; target-thread needs *STEP-OUT*
653  ("src/code/target-thread"     :not-host)
654  ("src/code/timer" :not-host)
656  ;; defines SB!DI:DO-DEBUG-FUN-BLOCKS, needed by target-disassem.lisp
657  ("src/code/gc"     :not-host)
658  ("src/code/alloc"  :not-host) ; needs foo-SPACE-START
659  ("src/code/debug-int" :not-host)
660  ("src/code/interr" :not-host)
662  ;; target-only assemblerish stuff
663  ("src/compiler/target-disassem"     :not-host)
664  ("src/compiler/target/target-insts" :not-host)
666  ("src/code/debug" :not-host)
668  ("src/code/octets" :not-host)
669  ("src/code/external-formats/enc-basic" :not-host)
670  #!+sb-unicode
671  ("src/code/external-formats/enc-ucs" :not-host) ; win32 needs this
673  #!+sb-eval
674  ("src/code/full-eval"   :not-host) ; uses INFO, ARG-COUNT-ERROR
676  ("src/code/bit-bash"    :not-host) ; needs %NEGATE from assembly/target/arith
678  ("src/code/target-load" :not-host) ; needs special vars from code/load.lisp
680  #!-(or x86 x86-64)
681  ("src/compiler/target/sanctify" :not-host)
683  ;; FIXME: Does this really need stuff from compiler/dump.lisp?
684  ("src/compiler/target-dump" :not-host) ; needs stuff from compiler/dump.lisp
686  ("src/code/cold-init" :not-host) ; needs (SETF EXTERN-ALIEN) macroexpansion
688  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
689  ;; target macros and DECLAIMs installed at build-the-cross-compiler time
691  ;; FIXME: here? earlier?  can probably be as late as possible.  Also
692  ;; maybe call it FORCE-DELAYED-PROCLAIMS?
693  ("src/compiler/late-proclaim")
695  ;; fundamental target macros (e.g. CL:DO and CL:DEFUN) and support
696  ;; for them
697  ("src/code/defboot")
698  ("src/code/setf")
699  ("src/code/macros")
700  ("src/code/loop")
702  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
703  ;; other target-code-building stuff which can't be processed until
704  ;; machinery like SB!XC:DEFMACRO exists
706  ("src/code/late-format") ; needs SB!XC:DEFMACRO
707  ("src/code/sxhash") ; needs SB!XC:DEFINE-MODIFY-MACRO
709  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
710  ;; PCL-related stuff, which shouldn't need to be done earlier than
711  ;; anything else in cold build because after all it used to be
712  ;; postponed 'til warm init with no problems.
714  ("src/pcl/walk"))
716 ;;; warm build skips the list of files above even though there is no "#!" macro
717 ;;; at this point. That's not specified behavior of *READ-SUPPRESS*.
718 ;;; The place to change this behavior is in DISPATCH-CHAR-ERROR.
719 ;;; Then we would need to define "#!" to do something whenever this file is read.
720 ;;; If we're going down that route, we should change these feature expressions
721 ;;; to use "#!" syntax rather than rely on a bug to skip the above form.
722 #+warm-build-phase
723 (("src/code/warm-error"
724   "src/code/room" ; for MAP-ALLOCATED-OBJECTS
725   ;; We re-nickname SB-SEQUENCE as SEQUENCE now.
726   ;; It could be done in genesis, but not earlier,
727   ;; since the host has a package of that name.
728   "src/code/defpackage")
730  #+sb-fasteval
731  ("src/interpreter/macros"
732   "src/interpreter/checkfuns"
733   "src/interpreter/env"
734   "src/interpreter/sexpr"
735   "src/interpreter/special-forms"
736   "src/interpreter/eval"
737   "src/interpreter/debug")
739  ("src/code/external-formats/enc-ebcdic")
740  #+sb-unicode
741  ("src/code/external-formats/enc-cyr"
742   "src/code/external-formats/enc-dos"
743   "src/code/external-formats/enc-iso"
744   "src/code/external-formats/enc-win"
745   "src/code/external-formats/enc-mac"
746   "src/code/external-formats/mb-util"
747   "src/code/external-formats/enc-cn-tbl"
748   "src/code/external-formats/enc-cn"
749   "src/code/external-formats/enc-jpn-tbl"
750   "src/code/external-formats/enc-jpn"
751   "src/code/external-formats/enc-utf")
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   "src/code/stubs"
793   ;; miscellaneous functionality which depends on CLOS
794   "src/code/late-condition"
796   ;; CLOS-level support for the Gray OO streams
797   ;; extension (which is also supported by various
798   ;; lower-level hooks elsewhere in the code)
799   "src/pcl/gray-streams-class"
800   "src/pcl/gray-streams"
802   ;; CLOS-level support for User-extensible sequences.
803   "src/pcl/sequence"
805   ;; other functionality not needed for cold init, moved
806   ;; to warm init to reduce peak memory requirement in
807   ;; cold init
808   "src/code/describe"
810   "src/code/describe-policy"
811   "src/code/inspect"
812   "src/code/profile"
813   "src/code/ntrace"
814   "src/code/step"
815   "src/code/warm-lib"
816   #+win32 "src/code/warm-mswin"
817   "src/code/run-program"
818   #+gencgc "src/code/traceroot"
820   #+immobile-code "src/code/immobile-space"
821   "src/code/repack-xref"
822   #+cheneygc "src/code/purify"
823   "src/code/save"))