Remove deprecated CLOBBER-IT restart
[sbcl.git] / build-order.lisp-expr
blob64be0911ebcb96af0619772292baa55d1f79a0a5
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")
45  ("src/compiler/early-constantp")
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")
54  ("src/code/cold-init-helper-macros")
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"  :not-target)
85  ("src/code/cross-misc"  :not-target)
86  ("src/code/cross-char"  :not-target)
87  ("src/code/cross-float" :not-target)
88  ("src/code/cross-io"    :not-target)
89  ("src/code/cross-thread" :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")
97  ("src/code/defbangtype")
98  ("src/code/defbangconstant")
99  ("src/code/early-constants") ; needs DEF!CONSTANT
101  ("src/compiler/deftype")      ; on host for SB!XC:DEFTYPE
102  ("src/compiler/early-lexenv")
103  ("src/compiler/early-globaldb")
105  ;; comes early so that stuff can reason about function names
106  ("src/code/function-names")
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")
111  ("src/compiler/target/parms")
112  ("src/compiler/generic/early-vm")
113  ("src/compiler/generic/early-objdef")
114  ("src/code/early-array") ; needs "early-vm" numbers
116  ;; "early-extensions" contains a call to TYPEP that is transformed into a call
117  ;; to %OTHER-POINTER-WIDETAG, which is an ordinary inline function, and not
118  ;; known to the cross-compiler until it has seen the DEFUN in 'kernel'
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")       ; on host for PARSE-BODY
124  ("src/code/unportable-float")
125  ("src/compiler/policy" :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") ; on host for COLLECT, SYMBOLICATE, etc.
131  ("src/compiler/parse-lambda-list")
132  ("src/code/restart" :not-host) ; %DEFCONSTANT can bind a restart
134  ("src/code/specializable-array")
136  ("src/code/early-cl")
137  ("src/code/ansi-stream" :not-host)
138  ("src/code/early-fasl")
140  ("src/code/defbangstruct")
141  ("src/code/early-thread")
142  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
143  ;;; basic machinery for the target Lisp. Note that although most of these
144  ;;; files are flagged :NOT-HOST, a few might not be.
146  ("src/code/early-print" :not-host)
147  ("src/code/early-pprint" :not-host)
148  ("src/code/early-impl" :not-host)
150  ("src/code/target-extensions" :not-host)
152  ;; Needed before the first use of WITH-SINGLE-PACKAGE-LOCKED-ERROR.
153  ("src/code/early-package" :not-host)
155  ("src/compiler/defconstant")
157  ("src/code/early-raw-slots")
159  ("src/code/funutils" :not-host)
161  ("src/code/maphash" :not-host :slam-forcibly)
162  ("src/code/xset") ; for representation of MEMBER type
163  ;; This needs DEF!STRUCT, and is itself needed early so that structure
164  ;; accessors and inline functions defined here can be compiled inline
165  ;; later. (Avoiding full calls increases efficiency)
166  ("src/code/type-class")
167  ("src/code/early-alieneval")  ; for funs and vars needed at build and run time
169  ("src/code/cas" :not-host)
170  ("src/compiler/early-c")
171  ("src/compiler/fun-info")
172  ("src/pcl/slot-name") ; for calls from 'info-vector'
173  ;; 'info-vector' is needed at least as early as 'fdefinition' so that the
174  ;; inlined INFO-VECTOR-FDEFINITION is available to %COERCE-CALLABLE-TO-FUN.
175  ("src/code/signal" :not-host)
176  ("src/compiler/info-vector")
177  ("src/compiler/globaldb")
178  ("src/code/primordial-type")
179  ("src/code/early-classoid")
181  ("src/code/sysmacs" :not-host)
183  ("src/code/target-error" :not-host)
185  ("src/compiler/early-backend")
186  ;; "src/code/toplevel.lisp" is the first to need this. It's generated
187  ;; automatically by grovel_headers.c, i.e. it's not under source control.
188  ("output/stuff-groveled-from-headers" :not-host)
190  ("src/code/cold-error"  :not-host)
191  ("src/code/fdefinition" :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
197  ("src/code/pred" :not-host)
198  ("src/code/debug-var-io")
200  ("src/code/target-alieneval" :not-host)
201  ("src/code/target-c-call"    :not-host)
202  ("src/code/target-allocate"  :not-host)
204  ;; This needs DEFINE-ALIEN-ROUTINE from target-alieneval.
205  ("src/code/misc-aliens" :not-host)
207  ("src/code/early-float"   :not-host)
208  ("src/pcl/early-low" :not-host)
209  ("src/code/target-sxhash" :not-host) ; needs most-fooative-foo-float constants
211  ("src/code/list"   :not-host)
212  ("src/code/seq"    :not-host) ; "code/seq" should come after "code/list".
213  ("src/code/coerce" :not-host)
215  ("src/code/char")
216  ("src/code/huffman")
217  ("src/code/target-char"    :not-host)
218  ("src/code/target-unicode" :not-host)
219  ("src/code/string"     :not-host)
220  ("src/code/mipsstrops" :not-host)
222  ("src/code/early-time")
223  ("src/code/unix" :not-host)
224  #!+win32 ("src/code/win32" :not-host)
225  #!+mach  ("src/code/mach"     :not-host)
227  #!+android ("src/code/android-os" :not-host)
228  #!+mach  ("src/code/mach-os"  :not-host)
229  #!+sunos ("src/code/sunos-os" :not-host)
230  #!+hpux  ("src/code/hpux-os"  :not-host)
231  #!+osf1  ("src/code/osf1-os"  :not-host)
232  #!+irix  ("src/code/irix-os"  :not-host)
233  #!+bsd   ("src/code/bsd-os"   :not-host)
234  #!+linux ("src/code/linux-os" :not-host)
235  #!+win32 ("src/code/win32-os" :not-host)
237  ;; sparc-vm and ppc-vm need sc-offset defined to get at internal
238  ;; error args. This file contains stuff previously in
239  ;; debug-info.lisp.  Should it therefore be :not-host?  -- CSR,
240  ;; 2002-02-05
241  ("src/code/sc-offset")
243  ;; KLUDGE: I'd prefer to have this done with a "code/target" softlink
244  ;; instead of a bunch of reader macros. -- WHN 19990308
245  ("src/code/share-vm" :not-host)
246  #!+sparc ("src/code/sparc-vm")
247  #!+hppa  ("src/code/hppa-vm")
248  #!+x86   ("src/code/x86-vm"   :not-host)
249  #!+x86-64("src/code/x86-64-vm"   :not-host)
250  #!+ppc   ("src/code/ppc-vm")
251  #!+alpha ("src/code/alpha-vm")
252  #!+mips  ("src/code/mips-vm")
253  #!+arm   ("src/code/arm-vm")
254  #!+arm64 ("src/code/arm64-vm")
256  #!-win32 ("src/code/target-signal" :not-host) ; needs OS-CONTEXT-T from x86-vm
257  #!+win32 ("src/code/target-exception" :not-host)
259  ("src/code/bignum"     :not-host)
260  ("src/code/numbers"    :not-host)
261  ("src/code/float-trap" :not-host)
262  ("src/code/float"      :not-host)
263  ("src/code/irrat"      :not-host)
265  ("src/code/misc")
267  ("src/code/symbol"        :not-host)
268  ("src/code/late-cas"      :not-host)
269  ("src/code/fd-stream"     :not-host)
270  ("src/code/stream"        :not-host)
271  ("src/code/early-format")
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/stubs" :not-host)
287  ("src/code/exhaust" :not-host)
289  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
290  ;;; compiler (and a few miscellaneous files whose dependencies make it
291  ;;; convenient to stick them here)
293  ("src/compiler/policies")
295  ("src/compiler/macros")
297  ("src/compiler/constantp")
298  ("src/compiler/info-functions")
300  ("src/compiler/generic/vm-macs")
301  ("src/compiler/generic/objdef")
303  ;; needed by "compiler/vop"
304  ("src/compiler/sset")
305  ("src/code/early-type")
307  ;; for e.g. BLOCK-ANNOTATION, needed by "compiler/vop"
308  ("src/compiler/node")
309  ;; RECONSTRUCT-LEXENV needs types GLOBAL-VAR and DEFINED-FUN
310  ("src/compiler/lexenv")
312  ;; This has ASSEMBLY-UNIT-related stuff needed by core.lisp.
313  ;; and LABEL, needed by IR2-NLX-INFO
314  ("src/compiler/early-assem")
316  ;; for e.g. PRIMITIVE-TYPE, needed by "vmdef"
317  ("src/compiler/vop")
318  ("src/compiler/constant-leaf")
320  ;; needed by "vm" and "primtype"
321  ("src/compiler/backend")
323  ;; for e.g. MAX-VOP-TN-REFS, needed by "meta-vmdef"
324  ("src/compiler/vmdef")
326  ;; needs "backend"
327  ("src/compiler/target/backend-parms")
328  ("src/code/room" :not-host) ; needs GENCGC-CARD-BYTES
330  ("src/code/force-delayed-defbangconstants")
331  ("src/code/defmacro")
332  ("src/code/destructuring-bind")
334  ;; for e.g. !DEF-PRIMITIVE-TYPE, needed by primtype.lisp, and
335  ;; DEFINE-STORAGE-CLASS, needed by target/vm.lisp
336  ("src/compiler/meta-vmdef")
338  ("src/compiler/fixup") ; for DEFSTRUCT FIXUP, needed by generic/core
339  ("src/compiler/generic/core") ; for CORE-OBJECT-P, needed by x86-64/vm
341  ;; for e.g. DESCRIPTOR-REG, needed by primtype.lisp
342  ("src/compiler/target/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")
354  ("src/pcl/pre-warm")
355  ("src/pcl/low" :not-host)
357  ("src/code/debug-info")
358  ("src/code/source-location")
359  ;; Define at most one INTERPRETED-FUNCTION type based on target features
360  #!+sb-eval ("src/code/early-full-eval" :not-host)
361  #!+sb-fasteval ("src/interpreter/function" :not-host)
362  ("src/code/early-class")
363  ("src/code/condition" :not-host)
364  ("src/code/toplevel"  :not-host)
365  ("src/code/parse-defmacro-errors")
366  ("src/code/format-directive")
367  ;; Target-only stuff should usually be compiled late unless it has
368  ;; compile-time side-effects. This file could probably be later,
369  ;; but should certainly be no earlier than the definitions
370  ;; of FORMAT-ERROR and FORMAT-DIRECTIVE.
371  ("src/code/target-format" :not-host)
373  ("src/compiler/generic/primtype")
375  ;; for DEFSTRUCT ALIEN-TYPE, needed by host-type.lisp
376  ("src/code/host-alieneval")
378  ;; can't be done until definition of e.g. DEFINE-ALIEN-TYPE-CLASS in
379  ;; host-alieneval.lisp
380  ("src/code/host-c-call")
382  ;; SB!XC:DEFTYPE is needed in order to compile late-type
383  ;; in the host Common Lisp, and in order to run, it needs
384  ;; %COMPILER-DEFTYPE.
385  ("src/compiler/compiler-deftype")
387  ;; These appear here in the build sequence because they require
388  ;;   * the macro INFO, defined in globaldb.lisp, and
389  ;;   * the function PARSE-DEFMACRO, defined in parse-defmacro.lisp,
390  ;; and because they define
391  ;;   * the function SPECIFIER-TYPE, which is used in fndb.lisp.
392  ("src/code/late-type")
393  ;; Compile target-only stuff after all defglobals like *CONS-T-T-TYPE*
394  ;; and all type-classes are defined.
395  ("src/code/target-type" :not-host)
396  ("src/code/deftypes-for-target")
398  ;; defines IR1-ATTRIBUTES macro, needed by proclaim.lisp
399  ("src/compiler/knownfun")
401  ;; needs FUN-INFO structure slot setters, defined in knownfun.lisp
402  ("src/compiler/fun-info-funs")
404  ;; stuff needed by "code/defstruct"
405  ("src/code/cross-type" :not-target)
406  ("src/compiler/generic/vm-type")
407  ("src/compiler/proclaim")
409  ("src/code/class-init")
411  ;; The DEFSTRUCT machinery needs SB!XC:SUBTYPEP, defined in
412  ;; "code/late-type", and SB!XC:TYPEP, defined in "code/cross-type",
413  ;; and SPECIALIZE-ARRAY-TYPE, defined in "compiler/generic/vm-type",
414  ;; and SB!XC:PROCLAIM, defined in "src/compiler/proclaim"
415  ;; FIXME: #+ should be (and sb-xc-host) but it isn't set yet.
416  ("src/code/defstruct" #+cmucl :ignore-failure-p)
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  ("src/code/typep" :not-host)
430  ("src/compiler/compiler-error")
432  ("src/code/type-init")
433  ;; Now that the type system is initialized, fix up UNKNOWN types that
434  ;; have crept in.
435  ("src/compiler/fixup-type")
437  ;; These define target types needed by fndb.lisp.
438  ("src/code/package")
439  ("src/code/random")
440  ("src/code/hash-table")
441  ("src/code/readtable")
442  ("src/code/pathname")
444  ("src/compiler/fndb")
445  ("src/compiler/generic/vm-fndb")
447  ("src/compiler/generic/late-objdef")
449  ("src/compiler/generic/interr")
451  ("src/compiler/bit-util")
453  ("src/code/thread")
454  ("src/code/load")
456  #!+linkage-table ("src/code/linkage-table" :not-host)
457  #!+os-provides-dlopen ("src/code/foreign-load" :not-host)
458  #!+(and os-provides-dlopen (not win32)) ("src/code/unix-foreign-load" :not-host)
459  #!+(and os-provides-dlopen win32) ("src/code/win32-foreign-load" :not-host)
460  ("src/code/foreign")
462  ("src/code/fop") ; needs macros from code/load.lisp
464  ("src/compiler/ctype")
465  ("src/compiler/disassem")
466  ("src/compiler/assem")
468  ;; Compiling this requires fop definitions from code/fop.lisp and
469  ("src/compiler/dump")
471  ("src/compiler/ir1report") ; for COMPILER-ERROR-CONTEXT
472  ("src/compiler/main") ; needs DEFSTRUCT FASL-OUTPUT from dump.lisp
473  ("src/compiler/xref")
474  ("src/compiler/target-main" :not-host)
475  ("src/compiler/ir1tran")
476  ("src/compiler/ir1tran-lambda")
477  ("src/compiler/ir1-translators")
478  ;; FIXME: #+ should be (and sb-xc-host) but it isn't set yet.
479  ("src/compiler/ir1util" #+cmucl :ignore-failure-p)
480  ("src/compiler/ir1opt")
481  ("src/compiler/loop")
483  ("src/compiler/ir1final")
484  ("src/compiler/array-tran")
485  ("src/compiler/seqtran")
486  ("src/compiler/typetran")
487  ("src/compiler/generic/vm-typetran")
488  ("src/compiler/float-tran")
489  ("src/compiler/saptran")
490  ("src/compiler/srctran")
491  ("src/code/quantifiers")
492  ("src/compiler/bitops-derive-type")
493  ("src/compiler/generic/vm-tran")
494  ("src/compiler/locall")
495  ("src/compiler/dfo")
496  ("src/compiler/dce")
497  ("src/compiler/checkgen")
498  ("src/compiler/constraint")
499  ("src/compiler/physenvanal")
501  ("src/compiler/tn")
502  ("src/compiler/life")
504  ("src/compiler/debug-dump")
505  ("src/compiler/generic/utils")
506  ("src/compiler/fopcompile")
508  ("src/assembly/assemfile" :not-target)
510  ;; Compiling this file requires the macros SB!ASSEM:EMIT-LABEL and
511  ;; SB!ASSEM:EMIT-POST-IT, defined in assem.lisp, and also possibly
512  ;; the definition of the LOCATION-INFO structure (if structures in
513  ;; the host lisp have setf expanders rather than setf functions).
514  ("src/compiler/late-vmdef")
516  ("src/compiler/target/insts")
517  ("src/compiler/target/macros")
518  ("src/compiler/generic/pinned-objects")
519  ("src/compiler/generic/early-type-vops")
521  ("src/assembly/target/support")
523  ("src/compiler/target/move")
524  ("src/compiler/target/float")
525  #!+sb-simd-pack
526  ("src/compiler/target/simd-pack")
527  ("src/compiler/target/sap")
528  ("src/compiler/target/system")
529  ("src/compiler/target/char")
530  ("src/compiler/target/memory")
531  ("src/compiler/target/static-fn")
532  ("src/compiler/target/arith"
533   ;; KLUDGE: for ppc and sparc this appears to be necessary, as it
534   ;; used to be for array VOPs for X86 until ca. 0.8.5.24 when CSR's
535   ;; patch for that architecture was finally committed
536   ;;
537   ;; old (0.8.5.23) comment on the array-VOP hack for X86:
538   ;; x Compiling this file for X86 raises alarming warnings of
539   ;; x the form
540   ;; x    Argument FOO to VOP CHECK-BOUND has SC restriction
541   ;; x    DESCRIPTOR-REG which is not allowed by the operand type:
542   ;; x      (:OR POSITIVE-FIXNUM)
543   ;; x This seems not to be something that I broke, but rather a "feature"
544   ;; x inherited from classic CMU CL. (Debian cmucl_2.4.8.deb compiling
545   ;; x Debian cmucl_2.4.8.tar.gz raises the same warning). Thus, even though
546   ;; x these warnings are severe enough that they would ordinarily abort
547   ;; x compilation, for now we blithely ignore them and press on to more
548   ;; x pressing problems. Someday, though, it would be nice to figure out
549   ;; x what the problem is and fix it.
550   #!+(or ppc) :ignore-failure-p)
551  ("src/code/cross-modular"  :not-target)
553  ("src/compiler/generic/late-type-vops") ;; KLUDGE: it's not so late anymore
554  ("src/compiler/target/type-vops")
556  ("src/compiler/target/subprim")
557  ("src/compiler/target/debug")
558  ;; src/compiler/sparc/c-call contains a deftransform for
559  ;; %ALIEN-FUNCALL -- CSR
560  ("src/compiler/early-aliencomp")
561  ("src/compiler/target/c-call")
562  ("src/compiler/target/cell")
563  ("src/compiler/target/values")
564  ("src/compiler/target/alloc")
565  ("src/compiler/target/call")
566  ("src/compiler/target/nlx")
567  ("src/compiler/generic/late-nlx")
568  ("src/compiler/target/show")
569  ("src/compiler/target/array")
570  ("src/compiler/generic/type-error")
571  ("src/compiler/target/pred")
573  ;; KLUDGE: The assembly files need to be compiled twice: once as
574  ;; normal lisp files, and once by sb-c:assemble-file.  We use a
575  ;; different suffix / "file type" for the :assem versions to make
576  ;; sure we don't scribble over anything we shouldn't.
578  ("src/assembly/target/assem-rtns")
579  ("src/assembly/target/array")
580  ("src/assembly/target/arith")
581  ("src/assembly/target/alloc")
582  ("src/assembly/target/assem-rtns" :assem :not-host)
583  ("src/assembly/target/array"      :assem :not-host)
584  ("src/assembly/target/arith"      :assem :not-host)
585  ("src/assembly/target/alloc"      :assem :not-host)
586  ("src/assembly/target/tramps"     :assem :not-host :not-genesis)
588  ("src/compiler/pseudo-vops")
590  ("src/compiler/aliencomp")
592  ("src/compiler/ltv")
593  ("src/compiler/gtn")
594  ("src/compiler/ltn")
595  ("src/compiler/stack")
596  ("src/compiler/control")
597  ("src/compiler/entry")
598  ("src/compiler/ir2tran")
600  ("src/compiler/generic/vm-ir2tran")
602  ("src/compiler/copyprop")
603  ("src/compiler/represent")
604  ("src/compiler/ir2opt")
605  ("src/compiler/pack")
606  ("src/compiler/pack-iterative")
607  ("src/compiler/codegen")
608  ("src/compiler/debug")
610  #!+sb-dyncount ("src/compiler/dyncount")
611  #!+sb-dyncount ("src/code/dyncount")
613  ;; needed by OPEN-FASL-OUTPUT, which is called by COMPILE-FILE
614  ("src/code/format-time")
616  ;; needed by various unhappy-path cases in the cross-compiler
617  ("src/code/error")
619  ;; This wasn't in classic CMU CL "comcom.lisp", but it has some stuff
620  ;; that Python-as-cross-compiler has turned out to need.
621  ("src/code/macroexpand")
623  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
624  ;; files which depend in some way (directly or indirectly) on stuff
625  ;; compiled as part of the compiler
627  ("src/code/late-extensions") ; needs condition system
628  ("src/compiler/generic/target-core" :not-host) ; uses stuff from
629                                                 ;   "compiler/generic/core"
631  ("src/code/eval"              :not-host) ; uses INFO, wants compiler macro
632  ("src/code/target-sap"        :not-host) ; uses SAP-INT type
633  ("src/code/target-package"    :not-host) ; needs "code/package"
634  ("src/code/module"            :not-host)
635  ("src/code/bignum-random"     :not-host) ; needs "code/random" and
636                                           ;   "code/bignum"
637  ("src/code/target-hash-table" :not-host) ; needs "code/hash-table"
638  ("src/code/host-pprint") ; defines QUEUED-OP needed by 'pprint'
639  ("src/code/pprint" :not-host) ; defines WITH-PRETTY-STREAM needed by 'print'
640  ("src/code/print" :not-host)
641  ("src/code/reader"            :not-host) ; needs "code/readtable"
642  ("src/code/target-stream"     :not-host) ; needs WHITESPACEP from "code/reader"
643  ("src/code/target-pathname"   :not-host) ; needs "code/pathname"
644  #!-win32
645  ("src/code/unix-pathname"     :not-host)
646  #!+win32
647  ("src/code/win32-pathname"    :not-host)
648  ("src/code/filesys"           :not-host) ; needs HOST from "code/pathname"
650  ("src/code/target-misc"       :not-host) ; dribble-stream, used by "save"
651  ("src/code/save"              :not-host) ; uses the definition of PATHNAME
652                                           ;   from "code/pathname"
653  ("src/code/sharpm"            :not-host) ; uses stuff from "code/reader"
654  ("src/code/alloc"             :not-host)
656  ("src/code/early-step")                  ; target-thread needs *STEP-OUT*
658  ("src/code/target-thread"     :not-host)
659  ("src/code/timer" :not-host)
661  ;; defines SB!DI:DO-DEBUG-FUN-BLOCKS, needed by target-disassem.lisp
662  ("src/code/gc"     :not-host)
663  ("src/code/purify" :not-host)
664  ("src/code/debug-int" :not-host)
665  ("src/code/interr" :not-host)
667  ;; target-only assemblerish stuff
668  ("src/compiler/target-disassem"     :not-host)
669  ("src/compiler/target/target-insts" :not-host)
671  ("src/code/debug" :not-host)
673  ("src/code/octets" :not-host)
674  ("src/code/external-formats/enc-basic" :not-host)
675  ("src/code/external-formats/enc-ebcdic" :not-host)
676  #!+sb-unicode
677  ("src/code/external-formats/enc-cyr" :not-host)
678  #!+sb-unicode
679  ("src/code/external-formats/enc-dos" :not-host)
680  #!+sb-unicode
681  ("src/code/external-formats/enc-iso" :not-host)
682  #!+sb-unicode
683  ("src/code/external-formats/enc-win" :not-host)
684  #!+sb-unicode
685  ("src/code/external-formats/enc-mac" :not-host)
686  #!+sb-unicode
687  ("src/code/external-formats/mb-util" :not-host)
688  #!+sb-unicode
689  ("src/code/external-formats/enc-cn-tbl" :not-host)
690  #!+sb-unicode
691  ("src/code/external-formats/enc-cn" :not-host)
692  #!+sb-unicode
693  ("src/code/external-formats/enc-jpn-tbl" :not-host)
694  #!+sb-unicode
695  ("src/code/external-formats/enc-jpn" :not-host)
696  #!+sb-unicode
697  ("src/code/external-formats/enc-ucs" :not-host)
698  #!+sb-unicode
699  ("src/code/external-formats/enc-utf" :not-host)
701  #!+sb-eval
702  ("src/code/full-eval"   :not-host) ; uses INFO, ARG-COUNT-ERROR
704  ("src/code/bit-bash"    :not-host) ; needs %NEGATE from assembly/target/arith
706  ("src/code/target-load" :not-host) ; needs special vars from code/load.lisp
708  #!-(or x86 x86-64)
709  ("src/compiler/target/sanctify" :not-host)
711  ;; FIXME: Does this really need stuff from compiler/dump.lisp?
712  ("src/compiler/target-dump" :not-host) ; needs stuff from compiler/dump.lisp
714  ("src/code/cold-init" :not-host) ; needs (SETF EXTERN-ALIEN) macroexpansion
716  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
717  ;; target macros and DECLAIMs installed at build-the-cross-compiler time
719  ;; FIXME: here? earlier?  can probably be as late as possible.  Also
720  ;; maybe call it FORCE-DELAYED-PROCLAIMS?
721  ("src/compiler/late-proclaim")
723  ;; fundamental target macros (e.g. CL:DO and CL:DEFUN) and support
724  ;; for them
725  ("src/code/defboot")
726  ("src/code/setf")
727  ("src/code/macros")
728  ("src/code/loop")
730  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
731  ;; other target-code-building stuff which can't be processed until
732  ;; machinery like SB!XC:DEFMACRO exists
734  ("src/code/late-format") ; needs SB!XC:DEFMACRO
735  ("src/code/sxhash") ; needs SB!XC:DEFINE-MODIFY-MACRO
737  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
738  ;; PCL-related stuff, which shouldn't need to be done earlier than
739  ;; anything else in cold build because after all it used to be
740  ;; postponed 'til warm init with no problems.
742  ("src/pcl/walk"))