1.0.19.33: Improved interrupt handling on darwin/x86[-64]
[sbcl/eslaughter.git] / build-order.lisp-expr
blob79840f4c3ef7abbb01cb5678848319be08ce69e7
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  ("src/code/cross-early" :not-target)
40  ;; This comes early because it's useful for debugging everywhere.
41  ("src/code/show")
43  ;; This comes as early as possible, so that we catch the source locations
44  ;; for everything.
45  ("src/code/early-source-location")
47  ("src/code/early-constants")
49  ;; This comes early because the cross-compilation host's backquote
50  ;; logic can expand into something which can't be executed on the
51  ;; target Lisp (e.g. in CMU CL where it expands into internal
52  ;; functions like BACKQ-LIST), and by replacing the host backquote
53  ;; logic with our own as early as possible, we minimize the chance of
54  ;; any forms referring to cross-compilation host internal functions
55  ;; leaking into target SBCL code.
56  ("src/code/backq")
58  ;; It's difficult to be too early with a DECLAIM SPECIAL (or DEFVAR
59  ;; or whatever) thanks to the sullenly-do-the-wrong-thing semantics
60  ;; of CL special binding when the variable is undeclared.
61  ("src/code/globals" :not-host)
63  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
64  ;; various DEFSETFs and/or other DEFMACROish things, defined as early as
65  ;; possible so we don't need to fiddle with any subtleties of defining them
66  ;; before any possible use
68  ;; KLUDGE: It would be nice to reimplement most or all of these as
69  ;; functions (possibly inlined functions) so that we wouldn't need to
70  ;; worry so much about forcing them all to be defined before any possible
71  ;; use. It might be pretty tedious, though, working through any
72  ;; transforms and translators and optimizers and so forth to make sure
73  ;; that they can handle the change. -- WHN 19990919
74  ("src/code/defsetfs")
76  ("src/code/cold-init-helper-macros")
78  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
79  ;;; cross-compiler-only replacements for stuff which in target Lisp would be
80  ;;; supplied by basic machinery
82  ("src/code/cross-misc"  :not-target)
83  ("src/code/cross-char"  :not-target)
84  ("src/code/cross-byte"  :not-target)
85  ("src/code/cross-boole" :not-target)
86  ("src/code/cross-float" :not-target)
87  ("src/code/cross-io"    :not-target)
88  ("src/code/cross-sap"   :not-target)
89  ("src/code/cross-thread" :not-target)
90  ("src/code/cross-make-load-form" :not-target)
91  ("src/code/cross-condition" :not-target)
93  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
94  ;;; stuff needed early both in cross-compilation host and in target Lisp
96  ("src/code/uncross")
97  ("src/code/primordial-type")
98  ("src/code/early-defbangmethod")
100  ("src/code/defbangtype")
101  ("src/code/defbangmacro")
102  ("src/code/defbangconstant")
104  ("src/code/primordial-extensions")
106  ;; comes early so that stuff can reason about function names
107  ("src/code/function-names")
109  ;; for various constants e.g. SB!XC:MOST-POSITIVE-FIXNUM and
110  ;; SB!VM:N-LOWTAG-BITS, needed by "early-objdef" and others
111  ("src/compiler/generic/parms")
112  ("src/compiler/target/parms")
113  ("src/compiler/generic/early-vm")
114  ("src/compiler/generic/early-objdef")
115  ("src/code/early-array") ; needs "early-vm" numbers
117  ("src/code/early-extensions") ; on host for COLLECT, SYMBOLICATE, etc.
118  ("src/code/parse-body")       ; on host for PARSE-BODY
119  ("src/code/parse-defmacro")   ; on host for PARSE-DEFMACRO
120  ("src/compiler/deftype")      ; on host for SB!XC:DEFTYPE
121  ("src/compiler/defconstant")
122  ("src/code/early-alieneval")  ; for vars needed both at build and run time
124  ("src/code/specializable-array")
126  ("src/code/early-cl")
127  ("src/code/early-fasl")
129  ;; mostly needed by stuff from comcom, but also used by "x86-vm"
130  ("src/code/debug-var-io")
132  ("src/code/early-thread")
133  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
134  ;;; basic machinery for the target Lisp. Note that although most of these
135  ;;; files are flagged :NOT-HOST, a few might not be.
137  ("src/code/target-defbangmethod" :not-host)
139  ("src/code/early-print" :not-host)
140  ("src/code/early-pprint" :not-host)
141  ("src/code/early-impl" :not-host)
143  ("src/code/target-extensions" :not-host)
145  ;; Needed before the first use of WITH-SINGLE-PACKAGE-LOCKED-ERROR.
146  ("src/code/early-package" :not-host)
148  ("src/code/early-defstructs" :not-host) ; gotta-be-first DEFSTRUCTs
150  ("src/code/defbangstruct")
152  ("src/code/unportable-float")
154  ("src/code/funutils" :not-host)
156  ;; This needs DEF!STRUCT, and is itself needed early so that structure
157  ;; accessors and inline functions defined here can be compiled inline
158  ;; later. (Avoiding full calls not only increases efficiency, but also
159  ;; avoids some cold init issues involving full calls to structure
160  ;; accessors.)
161  ("src/code/type-class")
163  ("src/code/early-pcounter")
164  ("src/code/pcounter" :not-host)
166  ("src/code/ansi-stream" :not-host)
168  ("src/code/sysmacs" :not-host)
170  ;; "assembly/assemfile" was here in the sequence inherited from
171  ;; CMU CL worldcom.lisp, but also appears later in the sequence
172  ;; inherited from CMU CL comcom.lisp. We shouldn't need two versions,
173  ;; so I've deleted the one here. -- WHN 19990620
175  ("src/code/target-error" :not-host)
177  ("src/compiler/early-backend")
178  ;; "src/code/toplevel.lisp" si the first to need this. It's generated
179  ;; automatically by grovel_headers.c, i.e. it's not in CVS.
180  ("output/stuff-groveled-from-headers" :not-host)
182  ;; a comment from classic CMU CL:
183  ;;   "These guys can supposedly come in any order, but not really.
184  ;;    Some are put at the end so that macros don't run interpreted
185  ;;    and stuff."
186  ;; Dunno exactly what this meant or whether it still holds. -- WHN 19990803
187  ;; FIXME: more informative and up-to-date comment?
188  ("src/code/kernel"      :not-host)
189  ("src/code/toplevel"    :not-host)
190  ("src/code/cold-error"  :not-host)
191  ("src/code/fdefinition" :not-host)
192  ;; FIXME: Figure out some way to make the compiler macro for INFO
193  ;; available for compilation of "code/fdefinition".
195  ;; In classic CMU CL, code/type was here. I've since split that into
196  ;; lots of smaller pieces, some of which are here and some of which
197  ;; are handled later in the sequence, when the cross-compiler is
198  ;; built. -- WHN 19990620
199  ("src/code/target-type" :not-host)
201  ("src/code/pred" :not-host)
203  ("src/code/target-alieneval" :not-host)
204  ("src/code/target-c-call"    :not-host)
205  ("src/code/target-allocate"  :not-host)
207  ;; This needs DEFINE-ALIEN-ROUTINE from target-alieneval.
208  ("src/code/misc-aliens" :not-host)
210  ("src/code/array"         :not-host)
211  ("src/code/early-float"   :not-host)
212  ("src/code/target-sxhash" :not-host) ; needs most-fooative-foo-float constants
214  ("src/code/list"   :not-host)
215  ("src/code/seq"    :not-host) ; "code/seq" should come after "code/list".
216  ("src/code/coerce" :not-host)
218  ("src/code/string"     :not-host)
219  ("src/code/mipsstrops" :not-host)
221  ("src/code/early-time" :not-host)
222  ("src/code/unix" :not-host)
223  #!+win32 ("src/code/win32" :not-host)
224  #!+mach  ("src/code/mach"     :not-host)
226  ("src/code/common-os" :not-host)
227  #!+mach  ("src/code/mach-os"  :not-host)
228  #!+sunos ("src/code/sunos-os" :not-host)
229  #!+hpux  ("src/code/hpux-os"  :not-host)
230  #!+osf1  ("src/code/osf1-os"  :not-host)
231  #!+irix  ("src/code/irix-os"  :not-host)
232  #!+bsd   ("src/code/bsd-os"   :not-host)
233  #!+linux ("src/code/linux-os" :not-host)
234  #!+win32 ("src/code/win32-os" :not-host)
236  ;; sparc-vm and ppc-vm need sc-offset defined to get at internal
237  ;; error args. This file contains stuff previously in
238  ;; debug-info.lisp.  Should it therefore be :not-host?  -- CSR,
239  ;; 2002-02-05
240  ("src/code/sc-offset")
242  ;; KLUDGE: I'd prefer to have this done with a "code/target" softlink
243  ;; instead of a bunch of reader macros. -- WHN 19990308
244  #!+sparc ("src/code/sparc-vm" :not-host)
245  #!+hppa  ("src/code/hppa-vm"  :not-host)
246  #!+x86   ("src/code/x86-vm"   :not-host)
247  #!+x86-64("src/code/x86-64-vm"   :not-host)
248  #!+ppc   ("src/code/ppc-vm"   :not-host)
249  #!+alpha ("src/code/alpha-vm" :not-host)
250  #!+mips  ("src/code/mips-vm"  :not-host)
252  ;; FIXME: do we really want to keep this? -- CSR, 2002-08-31
253  #!+rt    ("src/code/rt-vm"    :not-host)
255  #!-win32 ("src/code/target-signal" :not-host) ; needs OS-CONTEXT-T from x86-vm
256  #!+win32 ("src/code/target-exception" :not-host)
258  ("src/code/symbol"     :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/char")
266  ("src/code/huffman")
267  ("src/code/target-char" :not-host)
268  ("src/code/target-misc" :not-host)
269  ("src/code/misc")
271  ("src/code/room"   :not-host)
273  ("src/code/stream"        :not-host)
274  ("src/code/print"         :not-host)
275  ("src/code/pprint"        :not-host)
276  ("src/code/early-format")
277  ("src/code/target-format" :not-host)
278  ("src/code/defpackage"    :not-host)
279  ("src/code/pp-backq"      :not-host)
281  ("src/code/error-error" :not-host) ; needs WITH-STANDARD-IO-SYNTAX macro
283  ("src/code/deadline" :not-host)
284  ("src/code/serve-event" :not-host)
285  ("src/code/fd-stream"   :not-host)
287  ("src/code/module" :not-host)
289  ("src/code/interr" :not-host)
291  ("src/code/query"  :not-host)
293  ("src/code/sort"  :not-host)
294  ("src/code/time"  :not-host)
295  ("src/code/timer" :not-host)
296  ("src/code/weak"  :not-host)
297  ("src/code/final" :not-host)
299  ("src/code/setf-funs" :not-host)
301  ("src/code/stubs" :not-host)
303  ("src/code/exhaust" :not-host)
305  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
306  ;;; compiler (and a few miscellaneous files whose dependencies make it
307  ;;; convenient to stick them here)
309  ("src/compiler/early-c")
310  ("src/compiler/policy")
311  ("src/compiler/policies")
312  ("src/code/typedefs")
314  ;; ("src/code/defbangmacro" was here until sbcl-0.6.7.3.)
316  ("src/compiler/macros")
317  ("src/compiler/generic/vm-macs")
319  ;; needed by "compiler/vop"
320  ("src/compiler/sset")
322  ;; for e.g. BLOCK-ANNOTATION, needed by "compiler/vop"
323  ("src/compiler/node")
325  ;; for e.g. PRIMITIVE-TYPE, needed by "vmdef"
326  ("src/compiler/vop")
328  ;; needed by "vm" and "primtype"
329  ("src/compiler/backend")
331  ;; for e.g. MAX-VOP-TN-REFS, needed by "meta-vmdef"
332  ("src/compiler/vmdef")
334  ;; needs "backend"
335  ("src/compiler/target/backend-parms")
337  ;; for INFO and SB!XC:MACRO-FUNCTION, needed by defmacro.lisp
338  ("src/compiler/globaldb")
339  ("src/compiler/info-functions")
341  ("src/code/force-delayed-defbangconstants")
342  ("src/code/defmacro")
343  ("src/code/force-delayed-defbangmacros")
345  ("src/compiler/late-macros")
347  ;; for e.g. !DEF-PRIMITIVE-TYPE, needed by primtype.lisp, and
348  ;; DEFINE-STORAGE-CLASS, needed by target/vm.lisp
349  ("src/compiler/meta-vmdef")
351  ;; for e.g. DESCRIPTOR-REG, needed by primtype.lisp
352  ("src/compiler/target/vm")
353  ("src/code/xset")
354  ;; for e.g. SPECIFIER-TYPE, needed by primtype.lisp
355  ("src/code/early-type")
357  ;; FIXME: Classic CMU CL had (OPTIMIZE (SAFETY 2) (DEBUG 2) declared
358  ;; around the compilation of "code/class". Why?
359  ("src/code/class")
361  ;; The definition of CONDITION-CLASS depends on SLOT-CLASS, defined
362  ;; in class.lisp.
363  ("src/code/condition" :not-host)
365  ("src/compiler/generic/vm-array")
366  ("src/compiler/generic/primtype")
368  ;; the implementation of the compiler-affecting part of forms like
369  ;; DEFMACRO and DEFTYPE; must be loaded before we can start
370  ;; defining types
371  ("src/compiler/parse-lambda-list")
373  ;; The following two files trigger function/macro redefinition
374  ;; warnings in clisp during make-host-2; as a workaround, we ignore
375  ;; the failure values from COMPILE-FILE under clisp.
377  ;; for DEFSTRUCT ALIEN-TYPE, needed by host-type.lisp
378  ("src/code/host-alieneval" #+clisp :ignore-failure-p)
380  ;; can't be done until definition of e.g. DEFINE-ALIEN-TYPE-CLASS in
381  ;; host-alieneval.lisp
382  ("src/code/host-c-call" #+clisp :ignore-failure-p)
384  ;; SB!XC:DEFTYPE is needed in order to compile late-type
385  ;; in the host Common Lisp, and in order to run, it needs
386  ;; %COMPILER-DEFTYPE.
387  ("src/compiler/compiler-deftype")
389  ;; These appear here in the build sequence because they require
390  ;;   * the macro INFO, defined in globaldb.lisp, and
391  ;;   * the function PARSE-DEFMACRO, defined in parse-defmacro.lisp,
392  ;; and because they define
393  ;;   * the function SPECIFIER-TYPE, which is used in fndb.lisp.
394  ("src/code/late-type")
395  ("src/code/deftypes-for-target")
397  ;; defines IR1-ATTRIBUTES macro, needed by proclaim.lisp
398  ("src/compiler/knownfun")
399  ("src/compiler/constantp")
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")
410  ("src/code/typecheckfuns")
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/compiler/lexenv")
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/objdef")
470  ("src/compiler/generic/interr")
472  ("src/compiler/bit-util")
474  ;; This has ASSEMBLY-UNIT-related stuff needed by core.lisp.
475  ("src/compiler/early-assem")
477  ;; core.lisp contains DEFSTRUCT CORE-OBJECT, and "compiler/main.lisp"
478  ;; does lots of (TYPEP FOO 'CORE-OBJECT), so it's nice to compile this
479  ;; before "compiler/main.lisp" so that those can be coded efficiently
480  ;; (and so that they don't cause lots of annoying compiler warnings
481  ;; about undefined types).
482  ("src/compiler/generic/core")
483  ("src/code/thread")
484  ("src/code/load")
486  #!+linkage-table ("src/code/linkage-table" :not-host)
487  #!+(and os-provides-dlopen (not win32)) ("src/code/foreign-load" :not-host)
488  #!+(and os-provides-dlopen win32) ("src/code/win32-foreign-load" :not-host)
489  ("src/code/foreign")
491  ("src/code/fop") ; needs macros from code/load.lisp
493  ("src/compiler/ctype")
494  ("src/compiler/disassem")
495  ("src/compiler/assem")
497  ("src/compiler/trace-table") ; needs EMIT-LABEL macro from compiler/assem.lisp
499  ;; Compiling this requires fop definitions from code/fop.lisp and
500  ;; trace table definitions from compiler/trace-table.lisp.
501  ("src/compiler/dump")
503  ("src/compiler/main") ; needs DEFSTRUCT FASL-OUTPUT from dump.lisp
504  ("src/compiler/xref")
505  ("src/code/source-location")
506  ("src/compiler/target-main" :not-host)
507  ("src/compiler/ir1tran")
508  ("src/compiler/ir1tran-lambda")
509  ("src/compiler/ir1-translators")
510  ("src/compiler/ir1util")
511  ("src/compiler/ir1report")
512  ("src/compiler/ir1opt")
513  ("src/compiler/loop")
515  ("src/compiler/ir1final")
516  ("src/compiler/array-tran")
517  ("src/compiler/seqtran")
518  ("src/compiler/typetran")
519  ("src/compiler/generic/vm-typetran")
520  ("src/compiler/float-tran")
521  ("src/compiler/saptran")
522  ("src/compiler/srctran")
523  ("src/compiler/generic/vm-tran")
524  ("src/compiler/locall")
525  ("src/compiler/dfo")
526  ("src/compiler/checkgen")
527  ("src/compiler/constraint")
528  ("src/compiler/physenvanal")
530  ("src/compiler/tn")
531  ("src/compiler/life")
533  ("src/code/debug-info")
535  ("src/compiler/debug-dump")
536  ("src/compiler/generic/utils")
537  ("src/compiler/fopcompile")
539  ("src/assembly/assemfile")
541  ;; Compiling this file requires the macros SB!ASSEM:EMIT-LABEL and
542  ;; SB!ASSEM:EMIT-POST-IT, defined in assem.lisp, and also possibly
543  ;; the definition of the LOCATION-INFO structure (if structures in
544  ;; the host lisp have setf expanders rather than setf functions).
545  ("src/compiler/late-vmdef")
547  ("src/compiler/fixup") ; for DEFSTRUCT FIXUP, used by insts.lisp
549  ("src/compiler/target/insts")
550  ("src/compiler/target/macros")
551  ("src/compiler/generic/early-type-vops")
553  ("src/assembly/target/support")
555  ("src/compiler/target/move")
556  ("src/compiler/target/float")
557  ("src/compiler/target/sap")
558  ("src/compiler/target/system")
559  ("src/compiler/target/char")
560  ("src/compiler/target/memory")
561  ("src/compiler/target/static-fn")
562  ("src/compiler/target/arith"
563   ;; KLUDGE: for ppc and sparc this appears to be necessary, as it
564   ;; used to be for array VOPs for X86 until ca. 0.8.5.24 when CSR's
565   ;; patch for that architecture was finally committed
566   ;;
567   ;; old (0.8.5.23) comment on the array-VOP hack for X86:
568   ;; x Compiling this file for X86 raises alarming warnings of
569   ;; x the form
570   ;; x    Argument FOO to VOP CHECK-BOUND has SC restriction
571   ;; x    DESCRIPTOR-REG which is not allowed by the operand type:
572   ;; x      (:OR POSITIVE-FIXNUM)
573   ;; x This seems not to be something that I broke, but rather a "feature"
574   ;; x inherited from classic CMU CL. (Debian cmucl_2.4.8.deb compiling
575   ;; x Debian cmucl_2.4.8.tar.gz raises the same warning). Thus, even though
576   ;; x these warnings are severe enough that they would ordinarily abort
577   ;; x compilation, for now we blithely ignore them and press on to more
578   ;; x pressing problems. Someday, though, it would be nice to figure out
579   ;; x what the problem is and fix it.
580   #!+(or ppc sparc) :ignore-failure-p)
581  ("src/code/cross-modular"  :not-target)
582  ("src/compiler/target/subprim")
584  ("src/compiler/target/debug")
585  ;; src/compiler/sparc/c-call contains a deftransform for
586  ;; %ALIEN-FUNCALL -- CSR
587  ("src/compiler/early-aliencomp")
588  ("src/compiler/target/c-call")
589  ("src/compiler/target/cell")
590  ("src/compiler/target/values")
591  ("src/compiler/target/alloc")
592  ("src/compiler/target/call")
593  ("src/compiler/target/nlx")
594  ("src/compiler/generic/late-nlx")
595  ("src/compiler/target/show")
596  ("src/compiler/target/array")
597  ("src/compiler/generic/array")
598  ("src/compiler/target/pred")
600  ("src/compiler/target/type-vops")
601  ("src/compiler/generic/late-type-vops")
603  ;; KLUDGE: The assembly files need to be compiled twice: once as
604  ;; normal lisp files, and once by sb-c:assemble-file.  We play some
605  ;; symlink games to make sure we don't scribble over anything we
606  ;; shouldn't, but these are actually the same files:
608  ("src/compiler/assembly/target/assem-rtns")
609  ("src/compiler/assembly/target/array")
610  ("src/compiler/assembly/target/arith")
611  ("src/compiler/assembly/target/alloc")
612  ("src/assembly/target/assem-rtns" :assem :not-host)
613  ("src/assembly/target/array"      :assem :not-host)
614  ("src/assembly/target/arith"      :assem :not-host)
615  ("src/assembly/target/alloc"      :assem :not-host)
617  ("src/compiler/pseudo-vops")
619  ("src/compiler/aliencomp")
621  ("src/compiler/ltv")
622  ("src/compiler/gtn")
623  ("src/compiler/ltn")
624  ("src/compiler/stack")
625  ("src/compiler/control")
626  ("src/compiler/entry")
627  ("src/compiler/ir2tran")
629  ("src/compiler/generic/vm-ir2tran")
631  ("src/compiler/copyprop")
632  ("src/compiler/represent")
633  ("src/compiler/pack")
634  ("src/compiler/codegen")
635  ("src/compiler/debug")
637  #!+sb-dyncount ("src/compiler/dyncount")
638  #!+sb-dyncount ("src/code/dyncount")
640  ;; needed by OPEN-FASL-OUTPUT, which is called by COMPILE-FILE
641  ("src/code/format-time")
643  ;; needed by various unhappy-path cases in the cross-compiler
644  ("src/code/error")
646  ;; This wasn't in classic CMU CL "comcom.lisp", but it has some stuff
647  ;; that Python-as-cross-compiler has turned out to need.
648  ("src/code/macroexpand")
650  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
651  ;; files which depend in some way (directly or indirectly) on stuff
652  ;; compiled as part of the compiler
654  ("src/code/late-extensions") ; needs condition system
655  ("src/compiler/generic/target-core" :not-host) ; uses stuff from
656                                                 ;   "compiler/generic/core"
658  ("src/code/eval"              :not-host) ; uses INFO, wants compiler macro
659  ("src/code/target-sap"        :not-host) ; uses SAP-INT type
660  ("src/code/target-package"    :not-host) ; needs "code/package"
661  ("src/code/target-random"     :not-host) ; needs "code/random"
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  ("src/code/unix-pathname"      :not-host)
667  ("src/code/win32-pathname"     :not-host)
668  ("src/code/filesys"           :not-host) ; needs HOST from "code/pathname"
670  ("src/code/save"              :not-host) ; uses the definition of PATHNAME
671                                           ;   from "code/pathname"
672  ("src/code/sharpm"            :not-host) ; uses stuff from "code/reader"
673  ("src/code/alloc"             :not-host)
675  ("src/code/early-step")                  ; target-thread needs *STEP-OUT*
677  ("src/code/target-thread"     :not-host)
679  ;; defines SB!DI:DO-DEBUG-FUN-BLOCKS, needed by target-disassem.lisp
680  ("src/code/gc"     :not-host)
681  ("src/code/purify" :not-host)
682  ("src/code/debug-int" :not-host)
684  ;; target-only assemblerish stuff
685  ("src/compiler/target-disassem"     :not-host)
686  ("src/compiler/target/target-insts" :not-host)
688  ("src/code/debug" :not-host)
690  ("src/code/octets" :not-host)
691  #!+sb-unicode
692  ("src/code/external-formats/enc-cyr" :not-host)
693  #!+sb-unicode
694  ("src/code/external-formats/enc-dos" :not-host)
695  #!+sb-unicode
696  ("src/code/external-formats/enc-iso" :not-host)
697  #!+sb-unicode
698  ("src/code/external-formats/enc-win" :not-host)
699  #!+sb-unicode
700  ("src/code/external-formats/mb-util" :not-host)
701  #!+sb-unicode
702  ("src/code/external-formats/enc-cn-tbl" :not-host)
703  #!+sb-unicode
704  ("src/code/external-formats/enc-cn" :not-host)
705  #!+sb-unicode
706  ("src/code/external-formats/enc-jpn-tbl" :not-host)
707  #!+sb-unicode
708  ("src/code/external-formats/enc-jpn" :not-host)
709  #!+sb-unicode
710  ("src/code/external-formats/ucs-2" :not-host)
712  ;; The code here can't be compiled until CONDITION and
713  ;; DEFINE-CONDITION are defined and SB!DEBUG:*STACK-TOP-HINT* is
714  ;; declared special.
715  ("src/code/parse-defmacro-errors")
717  #!+sb-eval
718  ("src/code/full-eval"   :not-host) ; uses INFO, ARG-COUNT-ERROR
720  ("src/code/bit-bash"    :not-host) ; needs %NEGATE from assembly/target/arith
722  ("src/code/target-load" :not-host) ; needs special vars from code/load.lisp
723  ("src/compiler/target/sanctify" :not-host)
725  ;; FIXME: Does this really need stuff from compiler/dump.lisp?
726  ("src/compiler/target-dump" :not-host) ; needs stuff from compiler/dump.lisp
728  ("src/code/cold-init" :not-host) ; needs (SETF EXTERN-ALIEN) macroexpansion
730  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
731  ;; target macros and DECLAIMs installed at build-the-cross-compiler time
733  ;; Declare all target special variables defined by ANSI now, so that
734  ;; we don't have to worry about any of them being bound incorrectly
735  ;; when the compiler processes code which appears before the appropriate
736  ;; DEFVAR or DEFPARAMETER.
737  ("src/code/cl-specials")
739  ;; FIXME: here? earlier?  can probably be as late as possible.  Also
740  ;; maybe call it FORCE-DELAYED-PROCLAIMS?
741  ("src/compiler/late-proclaim")
743  ;; fundamental target macros (e.g. CL:DO and CL:DEFUN) and support
744  ;; for them
745  ("src/code/defboot")
746  ("src/code/destructuring-bind")
747  ("src/code/early-setf")
748  ("src/code/macros")
749  ("src/code/loop")
750  ("src/code/late-setf")
752  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
753  ;; other target-code-building stuff which can't be processed until
754  ;; machinery like SB!XC:DEFMACRO exists
756  ("src/code/late-format") ; needs SB!XC:DEFMACRO
757  ("src/code/sxhash") ; needs SB!XC:DEFINE-MODIFY-MACRO
758  ("src/code/signal")
759  ("src/code/late-defbangmethod")
761  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
762  ;; PCL-related stuff, which shouldn't need to be done earlier than
763  ;; anything else in cold build because after all it used to be
764  ;; postponed 'til warm init with no problems.
766  ("src/pcl/walk"))