Change PUSH-IN and DELETEF-IN to ordinary macros.
[sbcl.git] / build-order.lisp-expr
blobb69024a0ee03591b8e3defa89549de8fd543864d
1 ;;;; -*- Lisp -*-
3 ;;;; This software is part of the SBCL system. See the README file for
4 ;;;; more information.
5 ;;;;
6 ;;;; This software is derived from the CMU CL system, which was
7 ;;;; written at Carnegie Mellon University and released into the
8 ;;;; public domain. The software is in the public domain and is
9 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
10 ;;;; files for more information.
12 ;;; a linear ordering of system sources which works both to
13 ;;; compile/load the cross-compiler under the host Common Lisp and
14 ;;; then to cross-compile the complete system into the
15 ;;; under-construction target SBCL
16 ;;;
17 ;;; The keyword flags (:NOT-HOST, :NOT-TARGET, :ASSEM...) are
18 ;;; documented in the code which implements their effects. (As of
19 ;;; sbcl-0.7.10, the comments are on DEFPARAMETER *EXPECTED-STEM-FLAGS*
20 ;;; in src/cold/shared.lisp.)
21 ;;;
22 ;;; Of course, it'd be very nice to have this be a dependency DAG
23 ;;; instead, so that we could do automated incremental recompilation.
24 ;;; But the dependencies are varied and subtle, and it'd be extremely
25 ;;; difficult to extract them automatically, and it'd be extremely
26 ;;; tedious and error-prone to extract them manually, so we don't
27 ;;; extract them. (It would be nice to fix this someday. The most
28 ;;; feasible approach that I can think of would be to make the
29 ;;; dependencies work on a package level, not an individual file
30 ;;; level. Doing it at the package level would make the granularity
31 ;;; coarse enough that it would probably be pretty easy to maintain
32 ;;; the dependency information manually, and the brittleness of the
33 ;;; package system would help make most violations of the declared
34 ;;; dependencies obvious at build time. -- WHN 20000803
36  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
37  ;;; miscellaneous
38  ;; This comes as early as possible, so that we catch the source locations
39  ;; for everything.
40  ("src/code/early-source-location")
41  ("src/code/cross-early" :not-target)
43  ;; This comes early because it's useful for debugging everywhere.
44  ("src/code/show")
46  ("src/code/early-constants")
48  ;; This comes early because the cross-compilation host's backquote
49  ;; logic can expand into something which can't be executed on the
50  ;; target Lisp (e.g. in CMU CL where it expands into internal
51  ;; functions like BACKQ-LIST), and by replacing the host backquote
52  ;; logic with our own as early as possible, we minimize the chance of
53  ;; any forms referring to cross-compilation host internal functions
54  ;; leaking into target SBCL code.
55  ("src/code/backq")
57  ;; It's difficult to be too early with a DECLAIM SPECIAL (or DEFVAR
58  ;; or whatever) thanks to the sullenly-do-the-wrong-thing semantics
59  ;; of CL special binding when the variable is undeclared.
60  ("src/code/globals" :not-host)
62  ("src/code/defsetfs")
63  ("src/code/cmacros" :not-host :slam-forcibly)
65  ("src/code/cold-init-helper-macros")
67  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
68  ;;; cross-compiler-only replacements for stuff which in target Lisp would be
69  ;;; supplied by basic machinery
71  ("src/code/cross-byte"  :not-target)
72  ("src/code/cross-misc"  :not-target)
73  ("src/code/cross-char"  :not-target)
74  ("src/code/cross-boole" :not-target)
75  ("src/code/cross-float" :not-target)
76  ("src/code/cross-io"    :not-target)
77  ("src/code/cross-sap"   :not-target)
78  ("src/code/cross-thread" :not-target)
79  ("src/code/cross-make-load-form" :not-target)
80  ("src/code/cross-condition" :not-target)
82  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
83  ;;; stuff needed early both in cross-compilation host and in target Lisp
85  ("src/code/uncross")
86  ("src/code/primordial-type")
87  ("src/code/early-defbangmethod")
89  ("src/code/defbangtype")
90  ("src/code/defbangmacro")
91  ("src/code/defbangconstant")
93  ("src/compiler/early-lexenv")
94  ("src/code/primordial-extensions")
95  ("src/compiler/early-globaldb")
96  ("src/compiler/constantp")
98  ;; comes early so that stuff can reason about function names
99  ("src/code/function-names")
101  ;; for various constants e.g. SB!XC:MOST-POSITIVE-FIXNUM and
102  ;; SB!VM:N-LOWTAG-BITS, needed by "early-objdef" and others
103  ("src/compiler/generic/parms")
104  ("src/compiler/target/parms")
105  ("src/compiler/generic/early-vm")
106  ("src/compiler/generic/early-objdef")
107  ("src/code/early-array") ; needs "early-vm" numbers
109  ;; "early-extensions" contains a call to TYPEP that is transformed into a call
110  ;; to %OTHER-POINTER-WIDETAG, which is an ordinary inline function, and not
111  ;; known to the cross-compiler until it has seen the DEFUN in 'kernel'
112  ("src/code/kernel" :not-host)
113  ;; This has the BARRIER stuff that the threading support needs,
114  ;; required for some code in 'early-extensions'
115  ("src/code/barrier" :not-host)
116  ("src/code/parse-body")       ; on host for PARSE-BODY
117  ("src/code/unportable-float")
118  ("src/compiler/policy" :slam-forcibly)
119  #!+sb-fasteval ("src/interpreter/basic-env")
120  ;; PARSE-{UNKNOWN,DEPRECATED}-TYPE and other things should be known
121  ;; condition subtypes as soon as possible
122  ("src/code/condition-boot" :not-host)
123  ("src/code/early-extensions") ; on host for COLLECT, SYMBOLICATE, etc.
124  ("src/compiler/parse-lambda-list")
125  ("src/compiler/deftype")      ; on host for SB!XC:DEFTYPE
126  ("src/code/restart" :not-host) ; %DEFCONSTANT can bind a restart
127  ("src/code/early-alieneval")  ; for funs and vars needed at build and run time
129  ("src/code/specializable-array")
131  ("src/code/early-cl")
132  ("src/code/ansi-stream" :not-host)
133  ("src/code/early-fasl")
135  ;; mostly needed by stuff from comcom, but also used by "x86-vm"
136  ("src/code/debug-var-io")
138  ("src/code/defbangstruct")
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-defstructs" :not-host) ; gotta-be-first DEFSTRUCTs
156  ("src/code/early-raw-slots")
158  ("src/code/funutils" :not-host)
160  ;; This needs DEF!STRUCT, and is itself needed early so that structure
161  ;; accessors and inline functions defined here can be compiled inline
162  ;; later. (Avoiding full calls increases efficiency)
163  ("src/code/type-class")
165  ("src/compiler/early-c")
166  ("src/compiler/fun-info")
167  ("src/pcl/slot-name") ; for calls from 'info-vector'
168  ;; 'info-vector' is needed at least as early as 'fdefinition' so that the
169  ;; inlined INFO-VECTOR-FDEFINITION is available to %COERCE-CALLABLE-TO-FUN.
170  ("src/compiler/info-vector")
171  ("src/compiler/globaldb")
173  ("src/code/sysmacs" :not-host)
175  ;; "assembly/assemfile" was here in the sequence inherited from
176  ;; CMU CL worldcom.lisp, but also appears later in the sequence
177  ;; inherited from CMU CL comcom.lisp. We shouldn't need two versions,
178  ;; so I've deleted the one here. -- WHN 19990620
180  ("src/code/target-error" :not-host)
182  ("src/compiler/early-backend")
183  ;; "src/code/toplevel.lisp" si the first to need this. It's generated
184  ;; automatically by grovel_headers.c, i.e. it's not in CVS.
185  ("output/stuff-groveled-from-headers" :not-host)
187  ("src/code/cold-error"  :not-host)
188  ("src/code/fdefinition" :not-host)
190  ("src/code/maphash" :not-host :slam-forcibly)
191  ("src/code/pred" :not-host)
193  ("src/compiler/generic/vm-array")
194  ("src/code/weak"          :not-host)
195  ;; 'target-alieneval' needs FILL-POINTER which is defined in 'array'
196  ("src/code/array"         :not-host) ; needs WEAK-POINTER-VALUE
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/string"     :not-host)
214  ("src/code/mipsstrops" :not-host)
216  ("src/code/early-time")
217  ("src/code/unix" :not-host)
218  #!+win32 ("src/code/win32" :not-host)
219  #!+mach  ("src/code/mach"     :not-host)
221  #!+android ("src/code/android-os" :not-host)
222  #!+mach  ("src/code/mach-os"  :not-host)
223  #!+sunos ("src/code/sunos-os" :not-host)
224  #!+hpux  ("src/code/hpux-os"  :not-host)
225  #!+osf1  ("src/code/osf1-os"  :not-host)
226  #!+irix  ("src/code/irix-os"  :not-host)
227  #!+bsd   ("src/code/bsd-os"   :not-host)
228  #!+linux ("src/code/linux-os" :not-host)
229  #!+win32 ("src/code/win32-os" :not-host)
231  ;; sparc-vm and ppc-vm need sc-offset defined to get at internal
232  ;; error args. This file contains stuff previously in
233  ;; debug-info.lisp.  Should it therefore be :not-host?  -- CSR,
234  ;; 2002-02-05
235  ("src/code/sc-offset")
237  ;; KLUDGE: I'd prefer to have this done with a "code/target" softlink
238  ;; instead of a bunch of reader macros. -- WHN 19990308
239  #!+sparc ("src/code/sparc-vm" :not-host)
240  #!+hppa  ("src/code/hppa-vm"  :not-host)
241  #!+x86   ("src/code/x86-vm"   :not-host)
242  #!+x86-64("src/code/x86-64-vm"   :not-host)
243  #!+ppc   ("src/code/ppc-vm"   :not-host)
244  #!+alpha ("src/code/alpha-vm" :not-host)
245  #!+mips  ("src/code/mips-vm"  :not-host)
246  #!+arm   ("src/code/arm-vm" :not-host)
247  #!+arm64 ("src/code/arm64-vm" :not-host)
249  #!-win32 ("src/code/target-signal" :not-host) ; needs OS-CONTEXT-T from x86-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/char")
259  ("src/code/huffman")
260  ("src/code/target-char"    :not-host)
261  ("src/code/target-unicode" :not-host)
262  ("src/code/misc")
264  ("src/code/room"   :not-host)
266  ("src/code/fd-stream"     :not-host)
267  ("src/code/stream"        :not-host)
268  ("src/code/symbol"        :not-host) ; uses STRING-OUTPUT-STREAM
269  ("src/code/print"         :not-host)
270  ("src/code/early-format")
271  ("src/code/defpackage"    :not-host)
273  ("src/code/error-error" :not-host) ; needs WITH-STANDARD-IO-SYNTAX macro
274  ("src/code/common-os" :not-host)
276  ("src/code/deadline" :not-host)
277  ("src/code/serve-event" :not-host)
279  ("src/code/query"  :not-host)
281  ("src/code/sort"  :not-host)
282  ("src/code/time"  :not-host)
283  ("src/code/final" :not-host)
285  ("src/code/setf-funs" :not-host)
287  ("src/code/stubs" :not-host)
289  ("src/code/exhaust" :not-host)
291  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
292  ;;; compiler (and a few miscellaneous files whose dependencies make it
293  ;;; convenient to stick them here)
295  ("src/compiler/policies")
297  ;; ("src/code/defbangmacro" was here until sbcl-0.6.7.3.)
299  ("src/compiler/macros")
301  ("src/compiler/late-constantp")
302  ("src/code/early-classoid")
303  ("src/compiler/info-functions")
305  ("src/compiler/generic/vm-macs")
306  ("src/compiler/generic/objdef")
308  ;; needed by "compiler/vop"
309  ("src/compiler/sset")
310  ("src/code/xset") ; for representation of MEMBER type
311  ("src/code/early-type")
313  ;; for e.g. BLOCK-ANNOTATION, needed by "compiler/vop"
314  ("src/compiler/node")
315  ;; RECONSTRUCT-LEXENV needs types GLOBAL-VAR and DEFINED-FUN
316  ("src/compiler/lexenv")
318  ;; This has ASSEMBLY-UNIT-related stuff needed by core.lisp.
319  ;; and LABEL, needed by IR2-NLX-INFO
320  ("src/compiler/early-assem")
322  ;; for e.g. PRIMITIVE-TYPE, needed by "vmdef"
323  ("src/compiler/vop")
324  ("src/compiler/constant-leaf")
326  ;; needed by "vm" and "primtype"
327  ("src/compiler/backend")
329  ;; for e.g. MAX-VOP-TN-REFS, needed by "meta-vmdef"
330  ("src/compiler/vmdef")
332  ;; needs "backend"
333  ("src/compiler/target/backend-parms")
335  ("src/code/force-delayed-defbangconstants")
336  ("src/code/defmacro")
337  ("src/code/force-delayed-defbangmacros")
339  ;; for e.g. !DEF-PRIMITIVE-TYPE, needed by primtype.lisp, and
340  ;; DEFINE-STORAGE-CLASS, needed by target/vm.lisp
341  ("src/compiler/meta-vmdef")
343  ;; for e.g. DESCRIPTOR-REG, needed by primtype.lisp
344  ("src/compiler/target/vm")
346  ;; RANDOM-LAYOUT-CLOS-HASH (in 'class') uses RANDOM, the transform for which
347  ;; uses GENERATE-RANDOM-EXPR-FOR-POWER-OF-2 which becomes BIG-RANDOM-CHUNK,
348  ;; which wants to be inlined, and which when inlined becomes RANDOM-CHUNK,
349  ;; which also wants to be inlined.
350  ("src/code/target-random" :not-host)
351  ;; META-FIXME: I think I figured out why this was, and fixed that,
352  ;; and never removed the following comment, nor can I remember why.
353  ;; FIXME: Classic CMU CL had (OPTIMIZE (SAFETY 2) (DEBUG 2) declared
354  ;; around the compilation of "code/class". Why?
355  ("src/code/class")
356  ("src/pcl/pre-warm")
357  ("src/pcl/low" :not-host)
359  ("src/code/debug-info")
360  ("src/code/source-location")
361  ;; The type definition for INTERPRETED-FUNCTION
362  #!+sb-fasteval ("src/interpreter/function")
363  ("src/code/early-condition")
364  ("src/code/condition" :not-host)
365  ("src/code/toplevel"  :not-host)
366  ("src/code/parse-defmacro-errors")
367  ("src/code/format-directive")
368  ;; Target-only stuff should usually be compiled late unless it has
369  ;; compile-time side-effects. This file could probably be later,
370  ;; but should certainly be no earlier than the definitions
371  ;; of FORMAT-ERROR and FORMAT-DIRECTIVE.
372  ("src/code/target-format" :not-host)
374  ("src/compiler/generic/primtype")
376  ;; for DEFSTRUCT ALIEN-TYPE, needed by host-type.lisp
377  ("src/code/host-alieneval")
379  ;; can't be done until definition of e.g. DEFINE-ALIEN-TYPE-CLASS in
380  ;; host-alieneval.lisp
381  ("src/code/host-c-call")
383  ;; SB!XC:DEFTYPE is needed in order to compile late-type
384  ;; in the host Common Lisp, and in order to run, it needs
385  ;; %COMPILER-DEFTYPE.
386  ("src/compiler/compiler-deftype")
388  ;; These appear here in the build sequence because they require
389  ;;   * the macro INFO, defined in globaldb.lisp, and
390  ;;   * the function PARSE-DEFMACRO, defined in parse-defmacro.lisp,
391  ;; and because they define
392  ;;   * the function SPECIFIER-TYPE, which is used in fndb.lisp.
393  ("src/code/late-type")
394  ;; Compile target-only stuff after all defglobals like *CONS-T-T-TYPE*
395  ;; and all type-classes are defined.
396  ("src/code/target-type" :not-host)
397  ("src/code/deftypes-for-target")
399  ;; defines IR1-ATTRIBUTES macro, needed by proclaim.lisp
400  ("src/compiler/knownfun")
402  ;; needs FUN-INFO structure slot setters, defined in knownfun.lisp
403  ("src/compiler/fun-info-funs")
405  ;; stuff needed by "code/defstruct"
406  ("src/code/cross-type" :not-target)
407  ("src/compiler/generic/vm-type")
408  ("src/compiler/proclaim")
410  ("src/code/class-init")
412  ;; The DEFSTRUCT machinery needs SB!XC:SUBTYPEP, defined in
413  ;; "code/late-type", and SB!XC:TYPEP, defined in "code/cross-type",
414  ;; and SPECIALIZE-ARRAY-TYPE, defined in "compiler/generic/vm-type",
415  ;; and SB!XC:PROCLAIM, defined in "src/compiler/proclaim"
416  ("src/code/defstruct")
417  ("src/code/target-defstruct" :not-host)
419  ;; ALIEN-VALUE has to be defined as a class (done by DEFSTRUCT
420  ;; machinery) before we can set its superclasses here.
421  ("src/code/alien-type")
423  ;; This needs not just the SB!XC:DEFSTRUCT machinery, but also
424  ;; the TYPE= stuff defined in late-type.lisp, and the
425  ;; CHECK-FUN-NAME defined in proclaim.lisp.
426  ("src/code/force-delayed-defbangstructs")
428  ;; early-full-eval uses !DEFSTRUCT-WITH-ALTERNATE-METACLASS and
429  ;; DEF!METHOD.  It split out from the rest of full-eval because
430  ;; defstruct/metaclass fun makes it unslammable, and to define
431  ;; INTERPRETED-FUNCTION before it is used in compiler/main and in the
432  ;; definition of the COMPILED-FUNCTION type.
433  #!+sb-eval
434  ("src/code/early-full-eval")
436  ("src/code/typep" :not-host)
438  ("src/compiler/compiler-error")
440  ("src/code/late-deftypes-for-target")
442  ("src/code/type-init")
443  ;; Now that the type system is initialized, fix up UNKNOWN types that
444  ;; have crept in.
445  ("src/compiler/fixup-type")
447  ;; These define target types needed by fndb.lisp.
448  ("src/code/package")
449  ("src/code/random")
450  ("src/code/hash-table")
451  ("src/code/readtable")
452  ("src/code/pathname")
453  ("src/code/host-pprint")
454  ("src/code/pprint" :not-host)
456  ;; KLUDGE: Much stuff above here is the type system and/or the INFO
457  ;; system, not really the compiler proper. It might be easier to
458  ;; understand the system if those things were split off into packages
459  ;; SB-TYPE and SB-INFO and built in their own sections. -- WHN 20000124
461  ;; In classic CMU CL (re)build order, these were done later, but
462  ;; in building from scratch, these must be loaded before
463  ;; "compiler/generic/objdef" in order to allow forms like
464  ;; (DEFINE-PRIMITIVE-OBJECT (..) (CAR ..) ..) to work.
465  ("src/compiler/fndb")
466  ("src/compiler/generic/vm-fndb")
468  ("src/compiler/generic/late-objdef")
470  ("src/compiler/generic/interr")
472  ("src/compiler/bit-util")
474  ;; core.lisp contains DEFSTRUCT CORE-OBJECT, and "compiler/main.lisp"
475  ;; does lots of (TYPEP FOO 'CORE-OBJECT), so it's nice to compile this
476  ;; before "compiler/main.lisp" so that those can be coded efficiently
477  ;; (and so that they don't cause lots of annoying compiler warnings
478  ;; about undefined types).
479  ("src/compiler/fixup") ; for DEFSTRUCT FIXUP
480  ("src/compiler/generic/core")
481  ("src/code/thread")
482  ("src/code/load")
484  #!+linkage-table ("src/code/linkage-table" :not-host)
485  #!+os-provides-dlopen ("src/code/foreign-load" :not-host)
486  #!+(and os-provides-dlopen (not win32)) ("src/code/unix-foreign-load" :not-host)
487  #!+(and os-provides-dlopen win32) ("src/code/win32-foreign-load" :not-host)
488  ("src/code/foreign")
490  ("src/code/fop") ; needs macros from code/load.lisp
492  ("src/compiler/ctype")
493  ("src/compiler/disassem")
494  ("src/compiler/assem")
496  ;; Compiling this requires fop definitions from code/fop.lisp and
497  ("src/compiler/dump")
499  ("src/compiler/ir1report") ; for COMPILER-ERROR-CONTEXT
500  ("src/compiler/main") ; needs DEFSTRUCT FASL-OUTPUT from dump.lisp
501  ("src/compiler/xref")
502  ("src/compiler/target-main" :not-host)
503  ("src/compiler/ir1tran")
504  ("src/compiler/ir1tran-lambda")
505  ("src/compiler/ir1-translators")
506  ("src/compiler/ir1util")
507  ("src/compiler/ir1opt")
508  ("src/compiler/loop")
510  ("src/compiler/ir1final")
511  ("src/compiler/array-tran")
512  ("src/compiler/seqtran")
513  ("src/compiler/typetran")
514  ("src/compiler/generic/vm-typetran")
515  ("src/compiler/float-tran")
516  ("src/compiler/saptran")
517  ("src/compiler/srctran")
518  ("src/code/quantifiers")
519  ("src/compiler/bitops-derive-type")
520  ("src/compiler/generic/vm-tran")
521  ("src/compiler/locall")
522  ("src/compiler/dfo")
523  ("src/compiler/dce")
524  ("src/compiler/checkgen")
525  ("src/compiler/constraint")
526  ("src/compiler/physenvanal")
528  ("src/compiler/tn")
529  ("src/compiler/life")
531  ("src/compiler/debug-dump")
532  ("src/compiler/generic/utils")
533  ("src/compiler/fopcompile")
535  ("src/assembly/assemfile" :not-target)
537  ;; Compiling this file requires the macros SB!ASSEM:EMIT-LABEL and
538  ;; SB!ASSEM:EMIT-POST-IT, defined in assem.lisp, and also possibly
539  ;; the definition of the LOCATION-INFO structure (if structures in
540  ;; the host lisp have setf expanders rather than setf functions).
541  ("src/compiler/late-vmdef")
543  ("src/compiler/target/insts")
544  ("src/compiler/target/macros")
545  ("src/compiler/generic/early-type-vops")
547  ("src/assembly/target/support")
549  ("src/compiler/target/move")
550  ("src/compiler/target/float")
551  #!+sb-simd-pack
552  ("src/compiler/target/simd-pack")
553  ("src/compiler/target/sap")
554  ("src/compiler/target/system")
555  ("src/compiler/target/char")
556  ("src/compiler/target/memory")
557  ("src/compiler/target/static-fn")
558  ("src/compiler/target/arith"
559   ;; KLUDGE: for ppc and sparc this appears to be necessary, as it
560   ;; used to be for array VOPs for X86 until ca. 0.8.5.24 when CSR's
561   ;; patch for that architecture was finally committed
562   ;;
563   ;; old (0.8.5.23) comment on the array-VOP hack for X86:
564   ;; x Compiling this file for X86 raises alarming warnings of
565   ;; x the form
566   ;; x    Argument FOO to VOP CHECK-BOUND has SC restriction
567   ;; x    DESCRIPTOR-REG which is not allowed by the operand type:
568   ;; x      (:OR POSITIVE-FIXNUM)
569   ;; x This seems not to be something that I broke, but rather a "feature"
570   ;; x inherited from classic CMU CL. (Debian cmucl_2.4.8.deb compiling
571   ;; x Debian cmucl_2.4.8.tar.gz raises the same warning). Thus, even though
572   ;; x these warnings are severe enough that they would ordinarily abort
573   ;; x compilation, for now we blithely ignore them and press on to more
574   ;; x pressing problems. Someday, though, it would be nice to figure out
575   ;; x what the problem is and fix it.
576   #!+(or ppc) :ignore-failure-p)
577  ("src/code/cross-modular"  :not-target)
579  ("src/compiler/generic/late-type-vops") ;; KLUDGE: it's not so late anymore
580  ("src/compiler/target/type-vops")
582  ("src/compiler/target/subprim")
583  ("src/compiler/target/debug")
584  ;; src/compiler/sparc/c-call contains a deftransform for
585  ;; %ALIEN-FUNCALL -- CSR
586  ("src/compiler/early-aliencomp")
587  ("src/compiler/target/c-call")
588  ("src/compiler/target/cell")
589  ("src/compiler/target/values")
590  ("src/compiler/target/alloc")
591  ("src/compiler/target/call")
592  ("src/compiler/target/nlx")
593  ("src/compiler/generic/late-nlx")
594  ("src/compiler/target/show")
595  ("src/compiler/target/array")
596  ("src/compiler/generic/type-error")
597  ("src/compiler/target/pred")
599  ;; KLUDGE: The assembly files need to be compiled twice: once as
600  ;; normal lisp files, and once by sb-c:assemble-file.  We use a
601  ;; different suffix / "file type" for the :assem versions to make
602  ;; sure we don't scribble over anything we shouldn't.
604  ("src/assembly/target/assem-rtns")
605  ("src/assembly/target/array")
606  ("src/assembly/target/arith")
607  ("src/assembly/target/alloc")
608  ("src/assembly/target/assem-rtns" :assem :not-host)
609  ("src/assembly/target/array"      :assem :not-host)
610  ("src/assembly/target/arith"      :assem :not-host)
611  ("src/assembly/target/alloc"      :assem :not-host)
613  ("src/compiler/pseudo-vops")
615  ("src/compiler/aliencomp")
617  ("src/compiler/ltv")
618  ("src/compiler/gtn")
619  ("src/compiler/ltn")
620  ("src/compiler/stack")
621  ("src/compiler/control")
622  ("src/compiler/entry")
623  ("src/compiler/ir2tran")
625  ("src/compiler/generic/vm-ir2tran")
627  ("src/compiler/copyprop")
628  ("src/compiler/represent")
629  ("src/compiler/ir2opt")
630  ("src/compiler/pack")
631  ("src/compiler/pack-iterative")
632  ("src/compiler/codegen")
633  ("src/compiler/debug")
635  #!+sb-dyncount ("src/compiler/dyncount")
636  #!+sb-dyncount ("src/code/dyncount")
638  ;; needed by OPEN-FASL-OUTPUT, which is called by COMPILE-FILE
639  ("src/code/format-time")
641  ;; needed by various unhappy-path cases in the cross-compiler
642  ("src/code/error")
644  ;; This wasn't in classic CMU CL "comcom.lisp", but it has some stuff
645  ;; that Python-as-cross-compiler has turned out to need.
646  ("src/code/macroexpand")
648  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
649  ;; files which depend in some way (directly or indirectly) on stuff
650  ;; compiled as part of the compiler
652  ("src/code/late-extensions") ; needs condition system
653  ("src/compiler/generic/target-core" :not-host) ; uses stuff from
654                                                 ;   "compiler/generic/core"
656  ("src/code/eval"              :not-host) ; uses INFO, wants compiler macro
657  ("src/code/target-sap"        :not-host) ; uses SAP-INT type
658  ("src/code/target-package"    :not-host) ; needs "code/package"
659  ("src/code/module"            :not-host)
660  ("src/code/bignum-random"     :not-host) ; needs "code/random" and
661                                           ;   "code/bignum"
662  ("src/code/target-hash-table" :not-host) ; needs "code/hash-table"
663  ("src/code/reader"            :not-host) ; needs "code/readtable"
664  ("src/code/target-stream"     :not-host) ; needs WHITESPACEP from "code/reader"
665  ("src/code/target-pathname"   :not-host) ; needs "code/pathname"
666  #!-win32
667  ("src/code/unix-pathname"     :not-host)
668  #!+win32
669  ("src/code/win32-pathname"    :not-host)
670  ("src/code/filesys"           :not-host) ; needs HOST from "code/pathname"
672  ("src/code/target-misc"       :not-host) ; dribble-stream, used by "save"
673  ("src/code/save"              :not-host) ; uses the definition of PATHNAME
674                                           ;   from "code/pathname"
675  ("src/code/sharpm"            :not-host) ; uses stuff from "code/reader"
676  ("src/code/alloc"             :not-host)
678  ("src/code/early-step")                  ; target-thread needs *STEP-OUT*
680  ("src/code/target-thread"     :not-host)
681  ("src/code/timer" :not-host)
683  ;; defines SB!DI:DO-DEBUG-FUN-BLOCKS, needed by target-disassem.lisp
684  ("src/code/interr" :not-host)
685  ("src/code/gc"     :not-host)
686  ("src/code/purify" :not-host)
687  ("src/code/debug-int" :not-host)
689  ;; target-only assemblerish stuff
690  ("src/compiler/target-disassem"     :not-host)
691  ("src/compiler/target/target-insts" :not-host)
693  ("src/code/debug" :not-host)
695  ("src/code/octets" :not-host)
696  ("src/code/external-formats/enc-basic" :not-host)
697  ("src/code/external-formats/enc-ebcdic" :not-host)
698  #!+sb-unicode
699  ("src/code/external-formats/enc-cyr" :not-host)
700  #!+sb-unicode
701  ("src/code/external-formats/enc-dos" :not-host)
702  #!+sb-unicode
703  ("src/code/external-formats/enc-iso" :not-host)
704  #!+sb-unicode
705  ("src/code/external-formats/enc-win" :not-host)
706  #!+sb-unicode
707  ("src/code/external-formats/enc-mac" :not-host)
708  #!+sb-unicode
709  ("src/code/external-formats/mb-util" :not-host)
710  #!+sb-unicode
711  ("src/code/external-formats/enc-cn-tbl" :not-host)
712  #!+sb-unicode
713  ("src/code/external-formats/enc-cn" :not-host)
714  #!+sb-unicode
715  ("src/code/external-formats/enc-jpn-tbl" :not-host)
716  #!+sb-unicode
717  ("src/code/external-formats/enc-jpn" :not-host)
718  #!+sb-unicode
719  ("src/code/external-formats/enc-ucs" :not-host)
720  #!+sb-unicode
721  ("src/code/external-formats/enc-utf" :not-host)
723  #!+sb-eval
724  ("src/code/full-eval"   :not-host) ; uses INFO, ARG-COUNT-ERROR
726  ("src/code/bit-bash"    :not-host) ; needs %NEGATE from assembly/target/arith
728  ("src/code/target-load" :not-host) ; needs special vars from code/load.lisp
730  #!-(or x86 x86-64)
731  ("src/compiler/target/sanctify" :not-host)
733  ;; FIXME: Does this really need stuff from compiler/dump.lisp?
734  ("src/compiler/target-dump" :not-host) ; needs stuff from compiler/dump.lisp
736  ("src/code/cold-init" :not-host) ; needs (SETF EXTERN-ALIEN) macroexpansion
738  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
739  ;; target macros and DECLAIMs installed at build-the-cross-compiler time
741  ;; Declare all target special variables defined by ANSI now, so that
742  ;; we don't have to worry about any of them being bound incorrectly
743  ;; when the compiler processes code which appears before the appropriate
744  ;; DEFVAR or DEFPARAMETER.
745  ("src/code/cl-specials")
747  ;; FIXME: here? earlier?  can probably be as late as possible.  Also
748  ;; maybe call it FORCE-DELAYED-PROCLAIMS?
749  ("src/compiler/late-proclaim")
751  ;; fundamental target macros (e.g. CL:DO and CL:DEFUN) and support
752  ;; for them
753  ("src/code/defboot")
754  ("src/code/destructuring-bind")
755  ("src/code/setf")
756  ("src/code/macros")
757  ("src/code/loop")
758  ("src/code/cas")
759  ("src/code/late-cas")
761  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
762  ;; other target-code-building stuff which can't be processed until
763  ;; machinery like SB!XC:DEFMACRO exists
765  ("src/code/late-format") ; needs SB!XC:DEFMACRO
766  ("src/code/sxhash") ; needs SB!XC:DEFINE-MODIFY-MACRO
767  ("src/code/signal")
768  ("src/code/late-defbangmethod")
770  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
771  ;; PCL-related stuff, which shouldn't need to be done earlier than
772  ;; anything else in cold build because after all it used to be
773  ;; postponed 'til warm init with no problems.
775  ("src/pcl/walk"))