tests: Refactor CHECKED-COMPILE
[sbcl.git] / build-order.lisp-expr
blobe753c04e1c0f8e62930f7baeab6023eae3b36585
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" :c-headers)
41  ("src/code/cross-early" :c-headers :not-target)
43  ;; This comes early because it's useful for debugging everywhere.
44  ("src/code/show" :c-headers)
45  ("src/compiler/early-constantp" :c-headers)
46  ("src/code/defsetfs" :not-host)
48  ;; Declare all target special variables defined by ANSI
49  ("src/code/cl-specials" :not-host)
51  ;; Things like DX-FLET and AWHEN are available for use in both the host
52  ;; and target very early, with no DEF! obfuscation necessary.
53  ("src/code/primordial-extensions" :c-headers)
54  ("src/code/cold-init-helper-macros" :c-headers)
55  ("src/code/early-defmethod" :not-host)
57  ;; ASAP we replace the host's backquote reader with our own, to avoid leaking
58  ;; details of the host into the target. This is not a concern in make-host-2
59  ;; becase IN-TARGET-CROSS-COMPILATION-MODE assigns the reader macros before
60  ;; compiling anything. It is, however, a minor concern for make-host-1, but
61  ;; usually a problem can be exposed only by contrived code / poor style.
62  ;; e.g. if the host's reader were used when compiling
63  ;;  (EVAL-WHEN (#-SB-XC :COMPILE-TOPLEVEL :LOAD-TOPLEVEL :EXECUTE)
64  ;;    (DEFUN A-MACRO-HELPER () '`(FOO ,A ,B))
65  ;; then A-MACRO-HELPER returns host code, and calling it might be wrong, either
66  ;; obviously or subtly. If the result is (LIST* 'FOO (LIST* A (LIST B)))
67  ;; then it's subtly wrong because it might not be the optimal strategy;
68  ;; whereas if it's (BACKQUOTE (FOO (UNQUOTE A) (UNQUOTE B))) then it's
69  ;; flat out wrong. At any rate, judicious avoidance of EVAL-WHEN and nested
70  ;; quasiquotation in 'primordial-extensions' prevents any such issues.
71  ("src/code/backq")
73  ;; It's difficult to be too early with a DECLAIM SPECIAL (or DEFVAR
74  ;; or whatever) thanks to the sullenly-do-the-wrong-thing semantics
75  ;; of CL special binding when the variable is undeclared.
76  ("src/code/globals" :not-host)
78  ("src/code/cmacros" :not-host :slam-forcibly)
80  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
81  ;;; cross-compiler-only replacements for stuff which in target Lisp would be
82  ;;; supplied by basic machinery
84  ("src/code/cross-byte"  :c-headers :not-target)
85  ("src/code/cross-misc"  :c-headers :not-target)
86  ("src/code/cross-char"  :c-headers :not-target)
87  ("src/code/cross-float" :not-target)
88  ("src/code/cross-io"    :not-target)
89  ("src/code/cross-thread" :c-headers :not-target)
90  ("src/code/cross-condition" :not-target)
92  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
93  ;;; stuff needed early both in cross-compilation host and in target Lisp
95  ("src/code/uncross" :c-headers)
97  ("src/code/defbangtype" :c-headers)
98  ("src/code/defbangconstant" :c-headers)
99  ("src/code/early-constants" :c-headers) ; needs DEF!CONSTANT
101  ("src/compiler/deftype" :c-headers)     ; on host for SB!XC:DEFTYPE
102  ("src/compiler/early-lexenv" :c-headers)
103  ("src/compiler/early-globaldb" :c-headers)
105  ;; comes early so that stuff can reason about function names
106  ("src/code/function-names" :c-headers)
108  ;; for various constants e.g. SB!XC:MOST-POSITIVE-FIXNUM and
109  ;; SB!VM:N-LOWTAG-BITS, needed by "early-objdef" and others
110  ("src/compiler/generic/parms" :c-headers)
111  ("src/compiler/target/parms" :c-headers)
112  ("src/compiler/generic/early-vm" :c-headers)
113  ("src/compiler/generic/early-objdef" :c-headers)
114  ("src/code/early-array" :c-headers) ; needs "early-vm" numbers
116  ("src/code/kernel" :not-host)
117  ;; This has the BARRIER stuff that the threading support needs,
118  ;; required for some code in 'early-extensions'
119  ("src/code/barrier" :not-host)
120  ("src/code/parse-body" :c-headers)       ; on host for PARSE-BODY
121  ("src/code/unportable-float")
122  ("src/compiler/policy" :c-headers :slam-forcibly)
123  #!+sb-fasteval ("src/interpreter/basic-env")
124  ;; PARSE-{UNKNOWN,DEPRECATED}-TYPE and other things should be known
125  ;; condition subtypes as soon as possible
126  ("src/code/condition-boot" :not-host)
127  ("src/code/early-extensions" :c-headers) ; on host for COLLECT, SYMBOLICATE, etc.
128  ("src/compiler/parse-lambda-list" :c-headers)
129  ("src/code/restart" :not-host) ; %DEFCONSTANT can bind a restart
131  ("src/code/specializable-array")
133  ("src/code/early-cl")
134  ("src/code/ansi-stream" :not-host)
135  ("src/code/early-fasl" :c-headers)
137  ("src/code/defbangstruct" :c-headers)
138  ("src/code/early-thread")
139  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
140  ;;; basic machinery for the target Lisp. Note that although most of these
141  ;;; files are flagged :NOT-HOST, a few might not be.
143  ("src/code/early-print" :not-host)
144  ("src/code/early-pprint" :not-host)
145  ("src/code/early-impl" :not-host)
147  ("src/code/target-extensions" :not-host)
149  ;; Needed before the first use of WITH-SINGLE-PACKAGE-LOCKED-ERROR.
150  ("src/code/early-package" :not-host)
152  ("src/compiler/defconstant")
154  ("src/code/early-raw-slots" :c-headers)
156  ("src/code/funutils" :not-host)
158  ("src/code/maphash" :not-host :slam-forcibly)
159  ("src/code/xset" :c-headers) ; for representation of MEMBER type
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" :c-headers)
164  ("src/code/early-alieneval")  ; for funs and vars needed at build and run time
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/compiler/info-vector" :c-headers)
174  ("src/compiler/globaldb" :c-headers)
175  ("src/code/primordial-type" :c-headers)
176  ("src/code/early-classoid" :c-headers)
178  ("src/code/sysmacs" :not-host)
180  ("src/code/target-error" :not-host)
182  ;; "src/code/toplevel.lisp" is the first to need this. It's generated
183  ;; automatically by grovel_headers.c, i.e. it's not under source control.
184  ("output/stuff-groveled-from-headers" :not-host)
186  ("src/code/cold-error"  :not-host)
187  ("src/code/fdefinition" :not-host)
189  ("src/compiler/generic/vm-array" :c-headers)
190  ("src/code/weak"          :not-host)
191  ;; 'target-alieneval' needs FILL-POINTER which is defined in 'array'
192  ("src/code/array"         :not-host) ; needs WEAK-POINTER-VALUE
193  ("src/code/pred" :not-host)
194  ("src/code/debug-var-io")
196  ("src/code/target-alieneval" :not-host)
197  ("src/code/target-c-call"    :not-host)
198  ("src/code/target-allocate"  :not-host)
200  ;; This needs DEFINE-ALIEN-ROUTINE from target-alieneval.
201  ("src/code/misc-aliens" :not-host)
203  ("src/code/early-float"   :not-host)
204  ("src/pcl/early-low" :not-host)
205  ("src/code/target-sxhash" :not-host) ; needs most-fooative-foo-float constants
207  ("src/code/list"   :not-host)
208  ("src/code/seq"    :not-host) ; "code/seq" should come after "code/list".
209  ("src/code/coerce" :not-host)
211  ("src/code/char" :c-headers)
212  ("src/code/huffman")
213  ("src/code/target-char"    :not-host)
214  ("src/code/target-unicode" :not-host)
215  ("src/code/string"     :not-host)
216  ("src/code/mipsstrops" :not-host)
218  ("src/code/early-time" :c-headers)
219  ("src/code/unix" :not-host)
220  #!+win32 ("src/code/win32" :not-host)
221  #!+mach  ("src/code/mach"     :not-host)
223  #!+android ("src/code/android-os" :not-host)
224  #!+mach  ("src/code/mach-os"  :not-host)
225  #!+sunos ("src/code/sunos-os" :not-host)
226  #!+hpux  ("src/code/hpux-os"  :not-host)
227  #!+osf1  ("src/code/osf1-os"  :not-host)
228  #!+irix  ("src/code/irix-os"  :not-host)
229  #!+bsd   ("src/code/bsd-os"   :not-host)
230  #!+linux ("src/code/linux-os" :not-host)
231  #!+win32 ("src/code/win32-os" :not-host)
233  ;; sparc-vm and ppc-vm need sc-offset defined to get at internal
234  ;; error args. This file contains stuff previously in
235  ;; debug-info.lisp.  Should it therefore be :not-host?  -- CSR,
236  ;; 2002-02-05
237  ("src/code/sc-offset" :c-headers)
239  ("src/code/share-vm" :not-host)
241  #!-win32 ("src/code/target-signal" :not-host) ; needs OS-CONTEXT-T from share-vm
242  #!+win32 ("src/code/target-exception" :not-host)
244  ("src/code/bignum"     :not-host)
245  ("src/code/numbers"    :not-host)
246  ("src/code/float-trap" :not-host)
247  ("src/code/float"      :not-host)
248  ("src/code/irrat"      :not-host)
250  ("src/code/misc" :c-headers)
252  ("src/code/symbol"        :not-host)
253  ("src/code/late-cas"      :not-host)
254  ("src/code/fd-stream"     :not-host)
255  ("src/code/stream"        :not-host)
256  ("src/code/early-format")
258  ("src/code/error-error" :not-host) ; needs WITH-STANDARD-IO-SYNTAX macro
259  ("src/code/common-os" :not-host)
261  ("src/code/deadline" :not-host)
262  ("src/code/serve-event" :not-host)
264  ("src/code/query"  :not-host)
266  ("src/code/sort"  :not-host)
267  ("src/code/time"  :not-host)
268  ("src/code/final" :not-host)
270  ("src/code/exhaust" :not-host)
272  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
273  ;;; compiler (and a few miscellaneous files whose dependencies make it
274  ;;; convenient to stick them here)
276  ("src/compiler/policies")
278  ("src/compiler/macros" :c-headers)
280  ("src/compiler/constantp" :c-headers)
281  ("src/compiler/info-functions" :c-headers)
283  ("src/compiler/generic/vm-macs" :c-headers)
284  ("src/compiler/generic/objdef" :c-headers)
286  ;; needed by "compiler/vop"
287  ("src/compiler/sset" :c-headers)
288  ("src/code/early-type" :c-headers)
290  ;; for e.g. BLOCK-ANNOTATION, needed by "compiler/vop"
291  ("src/compiler/node" :c-headers)
292  ;; RECONSTRUCT-LEXENV needs types GLOBAL-VAR and DEFINED-FUN
293  ("src/compiler/lexenv")
295  ;; This has ASSEMBLY-UNIT-related stuff needed by core.lisp.
296  ;; and LABEL, needed by IR2-NLX-INFO
297  ("src/compiler/early-assem")
299  ;; for e.g. PRIMITIVE-TYPE, needed by "vmdef"
300  ("src/compiler/vop" :c-headers)
301  ("src/compiler/constant-leaf")
303  ;; needed by "vm" and "primtype"
304  ("src/compiler/backend" :c-headers)
306  ;; for e.g. MAX-VOP-TN-REFS, needed by "meta-vmdef"
307  ("src/compiler/vmdef" :c-headers)
309  ;; needs "backend"
310  ("src/compiler/target/backend-parms" :c-headers)
312  ("src/code/force-delayed-defbangconstants")
313  ("src/code/defmacro" :c-headers)
314  ("src/code/destructuring-bind" :c-headers)
316  ;; for e.g. !DEF-PRIMITIVE-TYPE, needed by primtype.lisp, and
317  ;; DEFINE-STORAGE-CLASS, needed by target/vm.lisp
318  ("src/compiler/meta-vmdef" :c-headers)
320  ("src/compiler/fixup") ; for DEFSTRUCT FIXUP, needed by generic/core
321  ("src/compiler/generic/core") ; for CORE-OBJECT-P, needed by x86-64/vm
323  ;; for e.g. DESCRIPTOR-REG, needed by primtype.lisp
324  ("src/compiler/target/vm" :c-headers)
326  ;; KLUDGE: I'd prefer to have this done with a "code/target" softlink
327  ;; instead of a bunch of reader macros. -- WHN 19990308
328  #!+sparc ("src/code/sparc-vm")
329  #!+hppa  ("src/code/hppa-vm")
330  #!+x86   ("src/code/x86-vm"   :not-host)
331  #!+x86-64("src/code/x86-64-vm"   :not-host)
332  #!+ppc   ("src/code/ppc-vm")
333  #!+alpha ("src/code/alpha-vm")
334  #!+mips  ("src/code/mips-vm")
335  #!+arm   ("src/code/arm-vm")
336  #!+arm64 ("src/code/arm64-vm")
338  ;; RANDOM-LAYOUT-CLOS-HASH (in 'class') uses RANDOM, the transform for which
339  ;; uses GENERATE-RANDOM-EXPR-FOR-POWER-OF-2 which becomes BIG-RANDOM-CHUNK,
340  ;; which wants to be inlined, and which when inlined becomes RANDOM-CHUNK,
341  ;; which also wants to be inlined.
342  ("src/code/target-random" :not-host)
343  ;; META-FIXME: I think I figured out why this was, and fixed that,
344  ;; and never removed the following comment, nor can I remember why.
345  ;; FIXME: Classic CMU CL had (OPTIMIZE (SAFETY 2) (DEBUG 2) declared
346  ;; around the compilation of "code/class". Why?
347  ("src/code/class" :c-headers)
348  ("src/pcl/pre-warm")
349  ("src/pcl/low" :not-host)
351  ("src/code/debug-info" :c-headers)
352  ("src/code/source-location")
353  ;; Define at most one INTERPRETED-FUNCTION type based on target features
354  #!+sb-eval ("src/code/early-full-eval" :not-host)
355  #!+sb-fasteval ("src/interpreter/function" :not-host)
356  ("src/code/early-class")
357  ("src/code/condition" :not-host)
358  ("src/code/toplevel"  :not-host)
359  ("src/code/parse-defmacro-errors")
360  ("src/code/format-directive")
361  ;; Target-only stuff should usually be compiled late unless it has
362  ;; compile-time side-effects. This file could probably be later,
363  ;; but should certainly be no earlier than the definitions
364  ;; of FORMAT-ERROR and FORMAT-DIRECTIVE.
365  ("src/code/target-format" :not-host)
367  ("src/compiler/generic/primtype" :c-headers)
369  ;; for DEFSTRUCT ALIEN-TYPE, needed by host-type.lisp
370  ("src/code/host-alieneval")
372  ;; can't be done until definition of e.g. DEFINE-ALIEN-TYPE-CLASS in
373  ;; host-alieneval.lisp
374  ("src/code/host-c-call")
376  ;; SB!XC:DEFTYPE is needed in order to compile late-type
377  ;; in the host Common Lisp, and in order to run, it needs
378  ;; %COMPILER-DEFTYPE.
379  ("src/compiler/compiler-deftype" :c-headers)
381  ;; These appear here in the build sequence because they require
382  ;;   * the macro INFO, defined in globaldb.lisp, and
383  ;;   * the function PARSE-DEFMACRO, defined in parse-defmacro.lisp,
384  ;; and because they define
385  ;;   * the function SPECIFIER-TYPE, which is used in fndb.lisp.
386  ("src/code/late-type" :c-headers)
387  ;; Compile target-only stuff after all defglobals like *CONS-T-T-TYPE*
388  ;; and all type-classes are defined.
389  ("src/code/target-type" :not-host)
390  ("src/code/deftypes-for-target" :c-headers)
392  ;; defines IR1-ATTRIBUTES macro, needed by proclaim.lisp
393  ("src/compiler/knownfun" :c-headers)
395  ;; needs FUN-INFO structure slot setters, defined in knownfun.lisp
396  ("src/compiler/fun-info-funs" :c-headers)
398  ;; stuff needed by "code/defstruct"
399  ("src/code/cross-type" :c-headers :not-target)
400  ("src/compiler/generic/vm-type" :c-headers)
401  ("src/compiler/proclaim" :c-headers)
403  ("src/code/class-init" :c-headers)
405  ;; The DEFSTRUCT machinery needs SB!XC:SUBTYPEP, defined in
406  ;; "code/late-type", and SB!XC:TYPEP, defined in "code/cross-type",
407  ;; and SPECIALIZE-ARRAY-TYPE, defined in "compiler/generic/vm-type",
408  ;; and SB!XC:PROCLAIM, defined in "src/compiler/proclaim"
409  ;; FIXME: #+ should be (and sb-xc-host) but it isn't set yet.
410  ("src/code/defstruct"  :c-headers #+cmucl :ignore-failure-p)
411  ("src/code/target-defstruct" :not-host)
413  ;; ALIEN-VALUE has to be defined as a class (done by DEFSTRUCT
414  ;; machinery) before we can set its superclasses here.
415  ("src/code/alien-type")
417  ;; This needs not just the SB!XC:DEFSTRUCT machinery, but also
418  ;; the TYPE= stuff defined in late-type.lisp, and the
419  ;; CHECK-FUN-NAME defined in proclaim.lisp.
420  ("src/code/force-delayed-defbangstructs" :c-headers)
422  ("src/code/typep" :not-host)
424  ("src/compiler/compiler-error")
426  ("src/code/type-init")
427  ;; Now that the type system is initialized, fix up UNKNOWN types that
428  ;; have crept in.
429  ("src/compiler/fixup-type")
431  ;; These define target types needed by fndb.lisp.
432  ("src/code/package" :c-headers)
433  ("src/code/random")
434  ("src/code/hash-table" :c-headers)
435  ("src/code/readtable")
436  ("src/code/pathname")
438  ("src/compiler/fndb" :c-headers)
439  ("src/compiler/generic/vm-fndb" :c-headers)
441  ("src/compiler/generic/late-objdef" :c-headers)
443  ("src/compiler/generic/interr" :c-headers)
445  ("src/compiler/bit-util")
447  ("src/code/thread")
448  ("src/code/load")
450  #!+linkage-table ("src/code/linkage-table" :not-host)
451  #!+os-provides-dlopen ("src/code/foreign-load" :not-host)
452  #!+(and os-provides-dlopen (not win32)) ("src/code/unix-foreign-load" :not-host)
453  #!+(and os-provides-dlopen win32) ("src/code/win32-foreign-load" :not-host)
454  ("src/code/foreign")
456  ("src/code/fop" :c-headers) ; needs macros from code/load.lisp
458  ("src/compiler/ctype")
459  ("src/compiler/disassem")
460  ("src/compiler/assem")
462  ;; Compiling this requires fop definitions from code/fop.lisp and
463  ("src/compiler/dump")
465  ("src/compiler/ir1report") ; for COMPILER-ERROR-CONTEXT
466  ("src/compiler/main") ; needs DEFSTRUCT FASL-OUTPUT from dump.lisp
467  ("src/compiler/xref")
468  ("src/compiler/target-main" :not-host)
469  ("src/compiler/ir1tran")
470  ("src/compiler/ir1tran-lambda")
471  ("src/compiler/ir1-translators")
472  ;; FIXME: #+ should be (and sb-xc-host) but it isn't set yet.
473  ("src/compiler/ir1util" #+cmucl :ignore-failure-p)
474  ("src/compiler/ir1opt")
475  ("src/compiler/loop")
477  ("src/compiler/ir1final")
478  ("src/compiler/array-tran")
479  ("src/compiler/seqtran")
480  ("src/compiler/typetran")
481  ("src/compiler/generic/vm-typetran")
482  ("src/compiler/float-tran")
483  ("src/compiler/saptran")
484  ("src/compiler/srctran")
485  ("src/code/quantifiers")
486  ("src/compiler/bitops-derive-type")
487  ("src/compiler/generic/vm-tran")
488  ("src/compiler/locall")
489  ("src/compiler/dfo")
490  ("src/compiler/dce")
491  ("src/compiler/checkgen")
492  ("src/compiler/constraint")
493  ("src/compiler/physenvanal")
495  ("src/compiler/tn")
496  ("src/compiler/life")
498  ("src/compiler/debug-dump")
499  ("src/compiler/generic/utils" :c-headers)
500  ("src/compiler/fopcompile")
502  ("src/assembly/assemfile" :not-target)
504  ;; Compiling this file requires the macros SB!ASSEM:EMIT-LABEL and
505  ;; SB!ASSEM:EMIT-POST-IT, defined in assem.lisp, and also possibly
506  ;; the definition of the LOCATION-INFO structure (if structures in
507  ;; the host lisp have setf expanders rather than setf functions).
508  ("src/compiler/late-vmdef")
510  ("src/compiler/target/insts")
511  ("src/compiler/target/macros")
512  ("src/compiler/generic/pinned-objects")
513  ("src/compiler/generic/early-type-vops")
515  ("src/assembly/target/support")
517  ("src/compiler/target/move")
518  ("src/compiler/target/float")
519  #!+sb-simd-pack
520  ("src/compiler/target/simd-pack")
521  ("src/compiler/target/sap")
522  ("src/compiler/target/system")
523  ("src/compiler/target/char")
524  ("src/compiler/target/memory")
525  ("src/compiler/target/arith"
526   ;; KLUDGE: for ppc and sparc this appears to be necessary, as it
527   ;; used to be for array VOPs for X86 until ca. 0.8.5.24 when CSR's
528   ;; patch for that architecture was finally committed
529   ;;
530   ;; old (0.8.5.23) comment on the array-VOP hack for X86:
531   ;; x Compiling this file for X86 raises alarming warnings of
532   ;; x the form
533   ;; x    Argument FOO to VOP CHECK-BOUND has SC restriction
534   ;; x    DESCRIPTOR-REG which is not allowed by the operand type:
535   ;; x      (:OR POSITIVE-FIXNUM)
536   ;; x This seems not to be something that I broke, but rather a "feature"
537   ;; x inherited from classic CMU CL. (Debian cmucl_2.4.8.deb compiling
538   ;; x Debian cmucl_2.4.8.tar.gz raises the same warning). Thus, even though
539   ;; x these warnings are severe enough that they would ordinarily abort
540   ;; x compilation, for now we blithely ignore them and press on to more
541   ;; x pressing problems. Someday, though, it would be nice to figure out
542   ;; x what the problem is and fix it.
543   #!+(or ppc) :ignore-failure-p)
544  ("src/code/cross-modular"  :not-target)
546  ("src/compiler/generic/late-type-vops") ;; KLUDGE: it's not so late anymore
547  ("src/compiler/target/type-vops")
549  ("src/compiler/target/subprim")
550  ("src/compiler/target/debug")
551  ;; src/compiler/sparc/c-call contains a deftransform for
552  ;; %ALIEN-FUNCALL -- CSR
553  ("src/compiler/early-aliencomp")
554  ("src/compiler/target/c-call")
555  ("src/compiler/target/cell")
556  ("src/compiler/target/values")
557  ("src/compiler/target/alloc")
558  ("src/compiler/target/call")
559  ("src/compiler/target/nlx")
560  ("src/compiler/generic/late-nlx")
561  ("src/compiler/target/show")
562  ("src/compiler/target/array")
563  ("src/compiler/generic/type-error")
564  ("src/compiler/target/pred")
566  ;; KLUDGE: The assembly files need to be compiled twice: once as
567  ;; normal lisp files, and once by sb-c:assemble-file.  We use a
568  ;; different suffix / "file type" for the :assem versions to make
569  ;; sure we don't scribble over anything we shouldn't.
571  ("src/assembly/target/assem-rtns")
572  ("src/assembly/target/array")
573  ("src/assembly/target/arith")
574  ("src/assembly/target/alloc")
575  ("src/assembly/target/assem-rtns" :assem :not-host)
576  ("src/assembly/target/array"      :assem :not-host)
577  ("src/assembly/target/arith"      :assem :not-host)
578  ("src/assembly/target/alloc"      :assem :not-host)
579  ("src/assembly/target/tramps"     :assem :not-host :not-genesis)
581  ("src/compiler/pseudo-vops")
583  ("src/compiler/aliencomp")
585  ("src/compiler/ltv")
586  ("src/compiler/gtn")
587  ("src/compiler/ltn")
588  ("src/compiler/stack")
589  ("src/compiler/control")
590  ("src/compiler/entry")
591  ("src/compiler/ir2tran")
593  ("src/compiler/generic/vm-ir2tran")
595  ("src/compiler/copyprop")
596  ("src/compiler/represent")
597  ("src/compiler/ir2opt")
598  ("src/compiler/pack")
599  ("src/compiler/pack-iterative")
600  ("src/compiler/codegen")
601  ("src/compiler/debug")
603  #!+sb-dyncount ("src/compiler/dyncount")
604  #!+sb-dyncount ("src/code/dyncount")
606  ;; needed by OPEN-FASL-OUTPUT, which is called by COMPILE-FILE
607  ("src/code/format-time")
609  ;; needed by various unhappy-path cases in the cross-compiler
610  ("src/code/error")
612  ;; This wasn't in classic CMU CL "comcom.lisp", but it has some stuff
613  ;; that Python-as-cross-compiler has turned out to need.
614  ("src/code/macroexpand")
616  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
617  ;; files which depend in some way (directly or indirectly) on stuff
618  ;; compiled as part of the compiler
620  ("src/code/late-extensions") ; needs condition system
621  ("src/compiler/generic/target-core" :not-host) ; uses stuff from
622                                                 ;   "compiler/generic/core"
624  ("src/code/eval"              :not-host) ; uses INFO, wants compiler macro
625  ("src/code/target-sap"        :not-host) ; uses SAP-INT type
626  ("src/code/target-package"    :not-host) ; needs "code/package"
627  ("src/code/module"            :not-host)
628  ("src/code/bignum-random"     :not-host) ; needs "code/random" and
629                                           ;   "code/bignum"
630  ("src/code/target-hash-table" :not-host) ; needs "code/hash-table"
631  ("src/code/host-pprint") ; defines QUEUED-OP needed by 'pprint'
632  ("src/code/pprint" :not-host) ; defines WITH-PRETTY-STREAM needed by 'print'
633  ("src/code/print" :not-host)
634  ("src/code/reader"            :not-host) ; needs "code/readtable"
635  ("src/code/target-stream"     :not-host) ; needs WHITESPACEP from "code/reader"
636  ("src/code/target-pathname"   :not-host) ; needs "code/pathname"
637  #!-win32
638  ("src/code/unix-pathname"     :not-host)
639  #!+win32
640  ("src/code/win32-pathname"    :not-host)
641  ("src/code/filesys"           :not-host) ; needs HOST from "code/pathname"
643  ("src/code/target-misc"       :not-host) ; dribble-stream, used by "save"
644  ("src/code/sharpm"            :not-host) ; uses stuff from "code/reader"
646  ("src/code/early-step")                  ; target-thread needs *STEP-OUT*
648  ("src/code/target-thread"     :not-host)
649  ("src/code/timer" :not-host)
651  ;; defines SB!DI:DO-DEBUG-FUN-BLOCKS, needed by target-disassem.lisp
652  ("src/code/gc"     :not-host)
653  ("src/code/alloc"  :not-host) ; needs foo-SPACE-START
654  ("src/code/purify" :not-host)
655  ("src/code/debug-int" :not-host)
656  ("src/code/interr" :not-host)
658  ;; target-only assemblerish stuff
659  ("src/compiler/target-disassem"     :not-host)
660  ("src/compiler/target/target-insts" :not-host)
662  ("src/code/debug" :not-host)
664  ("src/code/octets" :not-host)
665  ("src/code/external-formats/enc-basic" :not-host)
666  ("src/code/external-formats/enc-ebcdic" :not-host)
667  #!+sb-unicode
668  ("src/code/external-formats/enc-cyr" :not-host)
669  #!+sb-unicode
670  ("src/code/external-formats/enc-dos" :not-host)
671  #!+sb-unicode
672  ("src/code/external-formats/enc-iso" :not-host)
673  #!+sb-unicode
674  ("src/code/external-formats/enc-win" :not-host)
675  #!+sb-unicode
676  ("src/code/external-formats/enc-mac" :not-host)
677  #!+sb-unicode
678  ("src/code/external-formats/mb-util" :not-host)
679  #!+sb-unicode
680  ("src/code/external-formats/enc-cn-tbl" :not-host)
681  #!+sb-unicode
682  ("src/code/external-formats/enc-cn" :not-host)
683  #!+sb-unicode
684  ("src/code/external-formats/enc-jpn-tbl" :not-host)
685  #!+sb-unicode
686  ("src/code/external-formats/enc-jpn" :not-host)
687  #!+sb-unicode
688  ("src/code/external-formats/enc-ucs" :not-host)
689  #!+sb-unicode
690  ("src/code/external-formats/enc-utf" :not-host)
692  #!+sb-eval
693  ("src/code/full-eval"   :not-host) ; uses INFO, ARG-COUNT-ERROR
695  ("src/code/bit-bash"    :not-host) ; needs %NEGATE from assembly/target/arith
697  ("src/code/target-load" :not-host) ; needs special vars from code/load.lisp
699  #!-(or x86 x86-64)
700  ("src/compiler/target/sanctify" :not-host)
702  ;; FIXME: Does this really need stuff from compiler/dump.lisp?
703  ("src/compiler/target-dump" :not-host) ; needs stuff from compiler/dump.lisp
705  ("src/code/cold-init" :not-host) ; needs (SETF EXTERN-ALIEN) macroexpansion
707  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
708  ;; target macros and DECLAIMs installed at build-the-cross-compiler time
710  ;; FIXME: here? earlier?  can probably be as late as possible.  Also
711  ;; maybe call it FORCE-DELAYED-PROCLAIMS?
712  ("src/compiler/late-proclaim")
714  ;; fundamental target macros (e.g. CL:DO and CL:DEFUN) and support
715  ;; for them
716  ("src/code/defboot")
717  ("src/code/setf")
718  ("src/code/macros")
719  ("src/code/loop")
721  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
722  ;; other target-code-building stuff which can't be processed until
723  ;; machinery like SB!XC:DEFMACRO exists
725  ("src/code/late-format") ; needs SB!XC:DEFMACRO
726  ("src/code/sxhash") ; needs SB!XC:DEFINE-MODIFY-MACRO
728  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
729  ;; PCL-related stuff, which shouldn't need to be done earlier than
730  ;; anything else in cold build because after all it used to be
731  ;; postponed 'til warm init with no problems.
733  ("src/pcl/walk"))