Improve some wording in destructuring bind errors.
[sbcl.git] / build-order.lisp-expr
blobb787c318787f5c4ed8b37c7412332302e62d95fa
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")
56  ;; Naturally 'backq' generates a lot of calls to APPEND,
57  ;; the compiler-macro for which should be defined as soon as possible.
58  ("src/code/cmacros" :not-host)
60  ;; It's difficult to be too early with a DECLAIM SPECIAL (or DEFVAR
61  ;; or whatever) thanks to the sullenly-do-the-wrong-thing semantics
62  ;; of CL special binding when the variable is undeclared.
63  ("src/code/globals" :not-host)
65  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
66  ;; various DEFSETFs and/or other DEFMACROish things, defined as early as
67  ;; possible so we don't need to fiddle with any subtleties of defining them
68  ;; before any possible use
70  ;; KLUDGE: It would be nice to reimplement most or all of these as
71  ;; functions (possibly inlined functions) so that we wouldn't need to
72  ;; worry so much about forcing them all to be defined before any possible
73  ;; use. It might be pretty tedious, though, working through any
74  ;; transforms and translators and optimizers and so forth to make sure
75  ;; that they can handle the change. -- WHN 19990919
76  ("src/code/defsetfs")
78  ("src/code/cold-init-helper-macros")
80  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
81  ;;; cross-compiler-only replacements for stuff which in target Lisp would be
82  ;;; supplied by basic machinery
84  ("src/code/cross-misc"  :not-target)
85  ("src/code/cross-char"  :not-target)
86  ("src/code/cross-byte"  :not-target)
87  ("src/code/cross-boole" :not-target)
88  ("src/code/cross-float" :not-target)
89  ("src/code/cross-io"    :not-target)
90  ("src/code/cross-sap"   :not-target)
91  ("src/code/cross-thread" :not-target)
92  ("src/code/cross-make-load-form" :not-target)
93  ("src/code/cross-condition" :not-target)
95  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
96  ;;; stuff needed early both in cross-compilation host and in target Lisp
98  ("src/code/uncross")
99  ("src/code/primordial-type")
100  ("src/code/early-defbangmethod")
102  ("src/code/defbangtype")
103  ("src/code/defbangmacro")
104  ("src/code/defbangconstant")
106  ("src/code/primordial-extensions")
107  ;; early-globaldb could go even earlier by changing one use of
108  ;; WITH-UNIQUE-NAMES to just GENSYM, but the macros therein are
109  ;; transforming everything they should, so it's fine.
110  ("src/compiler/early-globaldb")
112  ;; comes early so that stuff can reason about function names
113  ("src/code/function-names")
115  ;; for various constants e.g. SB!XC:MOST-POSITIVE-FIXNUM and
116  ;; SB!VM:N-LOWTAG-BITS, needed by "early-objdef" and others
117  ("src/compiler/generic/parms")
118  ("src/compiler/target/parms")
119  ("src/compiler/generic/early-vm")
120  ("src/compiler/generic/early-objdef")
121  ("src/code/early-array") ; needs "early-vm" numbers
123  ;; "early-extensions" contains a call to TYPEP that is transformed into a call
124  ;; to %OTHER-POINTER-WIDETAG, which is an ordinary inline function, and not
125  ;; known to the cross-compiler until it has seen the DEFUN in 'kernel'
126  ("src/code/kernel" :not-host)
127  ;; This has the BARRIER stuff that the threading support needs,
128  ;; required for some code in 'early-extensions'
129  ("src/code/barrier" :not-host)
130  ("src/code/parse-body")       ; on host for PARSE-BODY
131  ("src/code/early-extensions") ; on host for COLLECT, SYMBOLICATE, etc.
132  ("src/code/parse-defmacro")   ; on host for PARSE-DEFMACRO
133  ("src/compiler/deftype")      ; on host for SB!XC:DEFTYPE
134  ("src/code/restart" :not-host) ; %DEFCONSTANT can bind a restart
135  ("src/compiler/defconstant")
136  ("src/code/early-alieneval")  ; for funs and vars needed at build and run time
138  ("src/code/specializable-array")
140  ("src/code/early-cl")
141  ("src/code/early-fasl")
143  ;; mostly needed by stuff from comcom, but also used by "x86-vm"
144  ("src/code/debug-var-io")
146  ("src/code/early-thread")
147  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
148  ;;; basic machinery for the target Lisp. Note that although most of these
149  ;;; files are flagged :NOT-HOST, a few might not be.
151  ("src/code/target-defbangmethod" :not-host)
153  ("src/code/early-print" :not-host)
154  ("src/code/early-pprint" :not-host)
155  ("src/code/early-impl" :not-host)
157  ("src/code/target-extensions" :not-host)
159  ;; Needed before the first use of WITH-SINGLE-PACKAGE-LOCKED-ERROR.
160  ("src/code/early-package" :not-host)
162  ("src/code/early-defstructs" :not-host) ; gotta-be-first DEFSTRUCTs
163  ("src/code/early-raw-slots")
165  ("src/code/defbangstruct")
167  ("src/code/unportable-float")
169  ("src/code/funutils" :not-host)
171  ;; This needs DEF!STRUCT, and is itself needed early so that structure
172  ;; accessors and inline functions defined here can be compiled inline
173  ;; later. (Avoiding full calls not only increases efficiency, but also
174  ;; avoids some cold init issues involving full calls to structure
175  ;; accessors.)
176  ("src/code/type-class")
178  ("src/code/ansi-stream" :not-host)
180  ("src/code/sysmacs" :not-host)
182  ;; "assembly/assemfile" was here in the sequence inherited from
183  ;; CMU CL worldcom.lisp, but also appears later in the sequence
184  ;; inherited from CMU CL comcom.lisp. We shouldn't need two versions,
185  ;; so I've deleted the one here. -- WHN 19990620
187  ("src/code/target-error" :not-host)
189  ("src/compiler/early-backend")
190  ;; "src/code/toplevel.lisp" si the first to need this. It's generated
191  ;; automatically by grovel_headers.c, i.e. it's not in CVS.
192  ("output/stuff-groveled-from-headers" :not-host)
194  ;; a comment from classic CMU CL:
195  ;;   "These guys can supposedly come in any order, but not really.
196  ;;    Some are put at the end so that macros don't run interpreted
197  ;;    and stuff."
198  ;; Dunno exactly what this meant or whether it still holds. -- WHN 19990803
199  ;; FIXME: more informative and up-to-date comment?
200  ("src/code/toplevel"    :not-host)
201  ("src/code/cold-error"  :not-host)
202  ;; 'info-vector' is needed at least as early as 'fdefinition' so that the
203  ;; inlined INFO-VECTOR-FDEFINITION is available to %COERCE-CALLABLE-TO-FUN.
204  ("src/compiler/info-vector")
205  ("src/code/fdefinition" :not-host)
207  ;; In classic CMU CL, code/type was here. I've since split that into
208  ;; lots of smaller pieces, some of which are here and some of which
209  ;; are handled later in the sequence, when the cross-compiler is
210  ;; built. -- WHN 19990620
211  ("src/code/target-type" :not-host)
213  ("src/code/pred" :not-host)
215  ("src/code/target-alieneval" :not-host)
216  ("src/code/target-c-call"    :not-host)
217  ("src/code/target-allocate"  :not-host)
219  ;; This needs DEFINE-ALIEN-ROUTINE from target-alieneval.
220  ("src/code/misc-aliens" :not-host)
222  ("src/code/typedefs")
223  ("src/compiler/generic/vm-array")
224  ("src/code/weak"          :not-host)
225  ("src/code/array"         :not-host) ; needs WEAK-POINTER-VALUE
226  ("src/code/early-float"   :not-host)
227  ("src/code/target-sxhash" :not-host) ; needs most-fooative-foo-float constants
229  ("src/code/list"   :not-host)
230  ("src/code/seq"    :not-host) ; "code/seq" should come after "code/list".
231  ("src/code/coerce" :not-host)
233  ("src/code/string"     :not-host)
234  ("src/code/mipsstrops" :not-host)
236  ("src/code/early-time" :not-host)
237  ("src/code/unix" :not-host)
238  #!+win32 ("src/code/win32" :not-host)
239  #!+mach  ("src/code/mach"     :not-host)
241  ("src/code/common-os" :not-host)
242  #!+android ("src/code/android-os" :not-host)
243  #!+mach  ("src/code/mach-os"  :not-host)
244  #!+sunos ("src/code/sunos-os" :not-host)
245  #!+hpux  ("src/code/hpux-os"  :not-host)
246  #!+osf1  ("src/code/osf1-os"  :not-host)
247  #!+irix  ("src/code/irix-os"  :not-host)
248  #!+bsd   ("src/code/bsd-os"   :not-host)
249  #!+linux ("src/code/linux-os" :not-host)
250  #!+win32 ("src/code/win32-os" :not-host)
252  ;; sparc-vm and ppc-vm need sc-offset defined to get at internal
253  ;; error args. This file contains stuff previously in
254  ;; debug-info.lisp.  Should it therefore be :not-host?  -- CSR,
255  ;; 2002-02-05
256  ("src/code/sc-offset")
258  ;; KLUDGE: I'd prefer to have this done with a "code/target" softlink
259  ;; instead of a bunch of reader macros. -- WHN 19990308
260  #!+sparc ("src/code/sparc-vm" :not-host)
261  #!+hppa  ("src/code/hppa-vm"  :not-host)
262  #!+x86   ("src/code/x86-vm"   :not-host)
263  #!+x86-64("src/code/x86-64-vm"   :not-host)
264  #!+ppc   ("src/code/ppc-vm"   :not-host)
265  #!+alpha ("src/code/alpha-vm" :not-host)
266  #!+mips  ("src/code/mips-vm"  :not-host)
267  #!+arm   ("src/code/arm-vm" :not-host)
269  ;; FIXME: do we really want to keep this? -- CSR, 2002-08-31
270  #!+rt    ("src/code/rt-vm"    :not-host)
272  #!-win32 ("src/code/target-signal" :not-host) ; needs OS-CONTEXT-T from x86-vm
273  #!+win32 ("src/code/target-exception" :not-host)
275  ("src/code/symbol"     :not-host)
276  ("src/code/bignum"     :not-host)
277  ("src/code/numbers"    :not-host)
278  ("src/code/float-trap" :not-host)
279  ("src/code/float"      :not-host)
280  ("src/code/irrat"      :not-host)
282  ("src/code/char")
283  ("src/code/huffman")
284  ("src/code/target-char"    :not-host)
285  ("src/code/target-unicode" :not-host)
286  ("src/code/target-misc"    :not-host)
287  ("src/code/misc")
289  ("src/code/room"   :not-host)
291  ("src/code/stream"        :not-host)
292  ("src/code/print"         :not-host)
293  ("src/code/early-format")
294  ("src/code/target-format" :not-host)
295  ("src/code/defpackage"    :not-host)
297  ("src/code/error-error" :not-host) ; needs WITH-STANDARD-IO-SYNTAX macro
299  ("src/code/deadline" :not-host)
300  ("src/code/serve-event" :not-host)
301  ("src/code/fd-stream"   :not-host)
303  ("src/code/module" :not-host)
305  ("src/code/query"  :not-host)
307  ("src/code/sort"  :not-host)
308  ("src/code/time"  :not-host)
309  ("src/code/timer" :not-host)
310  ("src/code/final" :not-host)
312  ("src/code/setf-funs" :not-host)
314  ("src/code/stubs" :not-host)
316  ("src/code/exhaust" :not-host)
318  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
319  ;;; compiler (and a few miscellaneous files whose dependencies make it
320  ;;; convenient to stick them here)
322  ("src/compiler/early-c")
323  ("src/compiler/policy")
324  ("src/compiler/lexenv")
325  ("src/compiler/policies")
327  ;; ("src/code/defbangmacro" was here until sbcl-0.6.7.3.)
329  ("src/compiler/macros")
331  ("src/compiler/globaldb")
332  ("src/compiler/info-functions")
334  ("src/compiler/generic/vm-macs")
335  ("src/compiler/generic/objdef")
337  ;; needed by "compiler/vop"
338  ("src/compiler/sset")
340  ;; for e.g. BLOCK-ANNOTATION, needed by "compiler/vop"
341  ("src/compiler/node")
343  ;; for e.g. PRIMITIVE-TYPE, needed by "vmdef"
344  ("src/compiler/vop")
346  ;; needed by "vm" and "primtype"
347  ("src/compiler/backend")
349  ;; for e.g. MAX-VOP-TN-REFS, needed by "meta-vmdef"
350  ("src/compiler/vmdef")
352  ;; needs "backend"
353  ("src/compiler/target/backend-parms")
355  ("src/code/force-delayed-defbangconstants")
356  ("src/code/defmacro")
357  ("src/code/force-delayed-defbangmacros")
359  ("src/compiler/late-macros")
361  ;; for e.g. !DEF-PRIMITIVE-TYPE, needed by primtype.lisp, and
362  ;; DEFINE-STORAGE-CLASS, needed by target/vm.lisp
363  ("src/compiler/meta-vmdef")
365  ;; for e.g. DESCRIPTOR-REG, needed by primtype.lisp
366  ("src/compiler/target/vm")
367  ("src/code/xset")
368  ;; for e.g. SPECIFIER-TYPE, needed by primtype.lisp
369  ("src/code/early-type")
371  ;; FIXME: Classic CMU CL had (OPTIMIZE (SAFETY 2) (DEBUG 2) declared
372  ;; around the compilation of "code/class". Why?
373  ("src/code/class")
375  ;; The definition of CONDITION-CLASS depends on SLOT-CLASS, defined
376  ;; in class.lisp.
377  ("src/code/condition" :not-host)
379  ("src/compiler/generic/primtype")
381  ;; the implementation of the compiler-affecting part of forms like
382  ;; DEFMACRO and DEFTYPE; must be loaded before we can start
383  ;; defining types
384  ("src/compiler/parse-lambda-list")
386  ;; for DEFSTRUCT ALIEN-TYPE, needed by host-type.lisp
387  ("src/code/host-alieneval")
389  ;; can't be done until definition of e.g. DEFINE-ALIEN-TYPE-CLASS in
390  ;; host-alieneval.lisp
391  ("src/code/host-c-call")
393  ;; SB!XC:DEFTYPE is needed in order to compile late-type
394  ;; in the host Common Lisp, and in order to run, it needs
395  ;; %COMPILER-DEFTYPE.
396  ("src/compiler/compiler-deftype")
398  ;; These appear here in the build sequence because they require
399  ;;   * the macro INFO, defined in globaldb.lisp, and
400  ;;   * the function PARSE-DEFMACRO, defined in parse-defmacro.lisp,
401  ;; and because they define
402  ;;   * the function SPECIFIER-TYPE, which is used in fndb.lisp.
403  ("src/code/late-type")
404  ("src/code/pprint" :not-host)
405  ("src/code/deftypes-for-target")
407  ;; defines IR1-ATTRIBUTES macro, needed by proclaim.lisp
408  ("src/compiler/knownfun")
409  ("src/compiler/constantp")
411  ;; needs FUN-INFO structure slot setters, defined in knownfun.lisp
412  ("src/compiler/fun-info-funs")
414  ;; stuff needed by "code/defstruct"
415  ("src/code/cross-type" :not-target)
416  ("src/compiler/generic/vm-type")
417  ("src/compiler/proclaim")
419  ("src/code/class-init")
421  ;; The DEFSTRUCT machinery needs SB!XC:SUBTYPEP, defined in
422  ;; "code/late-type", and SB!XC:TYPEP, defined in "code/cross-type",
423  ;; and SPECIALIZE-ARRAY-TYPE, defined in "compiler/generic/vm-type",
424  ;; and SB!XC:PROCLAIM, defined in "src/compiler/proclaim"
425  ("src/code/defstruct")
426  ("src/code/target-defstruct" :not-host)
428  ;; ALIEN-VALUE has to be defined as a class (done by DEFSTRUCT
429  ;; machinery) before we can set its superclasses here.
430  ("src/code/alien-type")
432  ;; This needs not just the SB!XC:DEFSTRUCT machinery, but also
433  ;; the TYPE= stuff defined in late-type.lisp, and the
434  ;; CHECK-FUN-NAME defined in proclaim.lisp.
435  ("src/code/force-delayed-defbangstructs")
437  ;; early-full-eval uses !DEFSTRUCT-WITH-ALTERNATE-METACLASS and
438  ;; DEF!METHOD.  It split out from the rest of full-eval because
439  ;; defstruct/metaclass fun makes it unslammable, and to define
440  ;; INTERPRETED-FUNCTION before it is used in compiler/main and in the
441  ;; definition of the COMPILED-FUNCTION type.
442  #!+sb-eval
443  ("src/code/early-full-eval")
445  ("src/code/typep" :not-host)
447  ("src/compiler/compiler-error")
449  ("src/code/late-deftypes-for-target")
451  ("src/code/type-init")
452  ;; Now that the type system is initialized, fix up UNKNOWN types that
453  ;; have crept in.
454  ("src/compiler/fixup-type")
456  ;; These define target types needed by fndb.lisp.
457  ("src/code/package")
458  ("src/code/random")
459  ("src/code/hash-table")
460  ("src/code/readtable")
461  ("src/code/pathname")
462  ("src/code/host-pprint")
464  ;; KLUDGE: Much stuff above here is the type system and/or the INFO
465  ;; system, not really the compiler proper. It might be easier to
466  ;; understand the system if those things were split off into packages
467  ;; SB-TYPE and SB-INFO and built in their own sections. -- WHN 20000124
469  ;; In classic CMU CL (re)build order, these were done later, but
470  ;; in building from scratch, these must be loaded before
471  ;; "compiler/generic/objdef" in order to allow forms like
472  ;; (DEFINE-PRIMITIVE-OBJECT (..) (CAR ..) ..) to work.
473  ("src/compiler/fndb")
474  ("src/compiler/generic/vm-fndb")
476  ("src/compiler/generic/late-objdef")
478  ("src/compiler/generic/interr")
480  ("src/compiler/bit-util")
482  ;; This has ASSEMBLY-UNIT-related stuff needed by core.lisp.
483  ("src/compiler/early-assem")
485  ;; core.lisp contains DEFSTRUCT CORE-OBJECT, and "compiler/main.lisp"
486  ;; does lots of (TYPEP FOO 'CORE-OBJECT), so it's nice to compile this
487  ;; before "compiler/main.lisp" so that those can be coded efficiently
488  ;; (and so that they don't cause lots of annoying compiler warnings
489  ;; about undefined types).
490  ("src/compiler/generic/core")
491  ("src/code/thread")
492  ("src/code/load")
494  #!+linkage-table ("src/code/linkage-table" :not-host)
495  #!+os-provides-dlopen ("src/code/foreign-load" :not-host)
496  #!+(and os-provides-dlopen (not win32)) ("src/code/unix-foreign-load" :not-host)
497  #!+(and os-provides-dlopen win32) ("src/code/win32-foreign-load" :not-host)
498  ("src/code/foreign")
500  ("src/code/fop") ; needs macros from code/load.lisp
502  ("src/compiler/ctype")
503  ("src/compiler/disassem")
504  ("src/compiler/assem")
506  ("src/code/debug-info")
507  ;; Compiling this requires fop definitions from code/fop.lisp and
508  ("src/compiler/dump")
510  ("src/compiler/main") ; needs DEFSTRUCT FASL-OUTPUT from dump.lisp
511  ("src/compiler/xref")
512  ("src/code/source-location")
513  ("src/compiler/target-main" :not-host)
514  ("src/compiler/ir1tran")
515  ("src/compiler/ir1tran-lambda")
516  ("src/compiler/ir1-translators")
517  ("src/compiler/ir1util")
518  ("src/compiler/ir1report")
519  ("src/compiler/ir1opt")
520  ("src/compiler/loop")
522  ("src/compiler/ir1final")
523  ("src/compiler/array-tran")
524  ("src/compiler/seqtran")
525  ("src/compiler/typetran")
526  ("src/compiler/generic/vm-typetran")
527  ("src/compiler/float-tran")
528  ("src/compiler/saptran")
529  ("src/compiler/srctran")
530  ("src/compiler/bitops-derive-type")
531  ("src/compiler/generic/vm-tran")
532  ("src/compiler/locall")
533  ("src/compiler/dfo")
534  ("src/compiler/dce")
535  ("src/compiler/checkgen")
536  ("src/compiler/constraint")
537  ("src/compiler/physenvanal")
539  ("src/compiler/tn")
540  ("src/compiler/life")
542  ("src/compiler/debug-dump")
543  ("src/compiler/generic/utils")
544  ("src/compiler/fopcompile")
546  ("src/assembly/assemfile")
548  ;; Compiling this file requires the macros SB!ASSEM:EMIT-LABEL and
549  ;; SB!ASSEM:EMIT-POST-IT, defined in assem.lisp, and also possibly
550  ;; the definition of the LOCATION-INFO structure (if structures in
551  ;; the host lisp have setf expanders rather than setf functions).
552  ("src/compiler/late-vmdef")
554  ("src/compiler/fixup") ; for DEFSTRUCT FIXUP, used by insts.lisp
556  ("src/compiler/target/insts")
557  ("src/compiler/target/macros")
558  ("src/compiler/generic/early-type-vops")
560  ("src/assembly/target/support")
562  ("src/compiler/target/move")
563  ("src/compiler/target/float")
564  #!+sb-simd-pack
565  ("src/compiler/target/simd-pack")
566  ("src/compiler/target/sap")
567  ("src/compiler/target/system")
568  ("src/compiler/target/char")
569  ("src/compiler/target/memory")
570  ("src/compiler/target/static-fn")
571  ("src/compiler/target/arith"
572   ;; KLUDGE: for ppc and sparc this appears to be necessary, as it
573   ;; used to be for array VOPs for X86 until ca. 0.8.5.24 when CSR's
574   ;; patch for that architecture was finally committed
575   ;;
576   ;; old (0.8.5.23) comment on the array-VOP hack for X86:
577   ;; x Compiling this file for X86 raises alarming warnings of
578   ;; x the form
579   ;; x    Argument FOO to VOP CHECK-BOUND has SC restriction
580   ;; x    DESCRIPTOR-REG which is not allowed by the operand type:
581   ;; x      (:OR POSITIVE-FIXNUM)
582   ;; x This seems not to be something that I broke, but rather a "feature"
583   ;; x inherited from classic CMU CL. (Debian cmucl_2.4.8.deb compiling
584   ;; x Debian cmucl_2.4.8.tar.gz raises the same warning). Thus, even though
585   ;; x these warnings are severe enough that they would ordinarily abort
586   ;; x compilation, for now we blithely ignore them and press on to more
587   ;; x pressing problems. Someday, though, it would be nice to figure out
588   ;; x what the problem is and fix it.
589   #!+(or ppc) :ignore-failure-p)
590  ("src/code/cross-modular"  :not-target)
592  ("src/compiler/target/type-vops")
594  ("src/compiler/target/subprim")
595  ("src/compiler/target/debug")
596  ;; src/compiler/sparc/c-call contains a deftransform for
597  ;; %ALIEN-FUNCALL -- CSR
598  ("src/compiler/early-aliencomp")
599  ("src/compiler/target/c-call")
600  ("src/compiler/target/cell")
601  ("src/compiler/target/values")
602  ("src/compiler/target/alloc")
603  ("src/compiler/target/call")
604  ("src/compiler/target/nlx")
605  ("src/compiler/generic/late-nlx")
606  ("src/compiler/target/show")
607  ("src/compiler/target/array")
608  ("src/compiler/generic/type-error")
609  ("src/compiler/target/pred")
611  ("src/compiler/generic/late-type-vops")
613  ;; KLUDGE: The assembly files need to be compiled twice: once as
614  ;; normal lisp files, and once by sb-c:assemble-file.  We use a
615  ;; different suffix / "file type" for the :assem versions to make
616  ;; sure we don't scribble over anything we shouldn't.
618  ("src/assembly/target/assem-rtns")
619  ("src/assembly/target/array")
620  ("src/assembly/target/arith")
621  ("src/assembly/target/alloc")
622  ("src/assembly/target/assem-rtns" :assem :not-host)
623  ("src/assembly/target/array"      :assem :not-host)
624  ("src/assembly/target/arith"      :assem :not-host)
625  ("src/assembly/target/alloc"      :assem :not-host)
627  ("src/compiler/pseudo-vops")
629  ("src/compiler/aliencomp")
631  ("src/compiler/ltv")
632  ("src/compiler/gtn")
633  ("src/compiler/ltn")
634  ("src/compiler/stack")
635  ("src/compiler/control")
636  ("src/compiler/entry")
637  ("src/compiler/ir2tran")
639  ("src/compiler/generic/vm-ir2tran")
641  ("src/compiler/copyprop")
642  ("src/compiler/represent")
643  ("src/compiler/ir2opt")
644  ("src/compiler/pack")
645  ("src/compiler/pack-iterative")
646  ("src/compiler/codegen")
647  ("src/compiler/debug")
649  #!+sb-dyncount ("src/compiler/dyncount")
650  #!+sb-dyncount ("src/code/dyncount")
652  ;; needed by OPEN-FASL-OUTPUT, which is called by COMPILE-FILE
653  ("src/code/format-time")
655  ;; needed by various unhappy-path cases in the cross-compiler
656  ("src/code/error")
658  ;; This wasn't in classic CMU CL "comcom.lisp", but it has some stuff
659  ;; that Python-as-cross-compiler has turned out to need.
660  ("src/code/macroexpand")
662  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
663  ;; files which depend in some way (directly or indirectly) on stuff
664  ;; compiled as part of the compiler
666  ("src/code/late-extensions") ; needs condition system
667  ("src/compiler/generic/target-core" :not-host) ; uses stuff from
668                                                 ;   "compiler/generic/core"
670  ("src/code/eval"              :not-host) ; uses INFO, wants compiler macro
671  ("src/code/target-sap"        :not-host) ; uses SAP-INT type
672  ("src/code/target-package"    :not-host) ; needs "code/package"
673  ("src/code/target-random"     :not-host) ; needs "code/random"
674  ("src/code/bignum-random"     :not-host) ; needs "code/random" and
675                                           ;   "code/bignum"
676  ("src/code/target-hash-table" :not-host) ; needs "code/hash-table"
677  ("src/code/reader"            :not-host) ; needs "code/readtable"
678  ("src/code/target-stream"     :not-host) ; needs WHITESPACEP from "code/reader"
679  ("src/code/target-pathname"   :not-host) ; needs "code/pathname"
680  #!-win32
681  ("src/code/unix-pathname"     :not-host)
682  #!+win32
683  ("src/code/win32-pathname"    :not-host)
684  ("src/code/filesys"           :not-host) ; needs HOST from "code/pathname"
686  ("src/code/save"              :not-host) ; uses the definition of PATHNAME
687                                           ;   from "code/pathname"
688  ("src/code/sharpm"            :not-host) ; uses stuff from "code/reader"
689  ("src/code/alloc"             :not-host)
691  ("src/code/early-step")                  ; target-thread needs *STEP-OUT*
693  ("src/code/target-thread"     :not-host)
695  ;; defines SB!DI:DO-DEBUG-FUN-BLOCKS, needed by target-disassem.lisp
696  ("src/code/interr" :not-host)
697  ("src/code/gc"     :not-host)
698  ("src/code/purify" :not-host)
699  ("src/code/debug-int" :not-host)
701  ;; target-only assemblerish stuff
702  ("src/compiler/target-disassem"     :not-host)
703  ("src/compiler/target/target-insts" :not-host)
705  ("src/code/debug" :not-host)
707  ("src/code/octets" :not-host)
708  ("src/code/external-formats/enc-basic" :not-host)
709  ("src/code/external-formats/enc-ebcdic" :not-host)
710  #!+sb-unicode
711  ("src/code/external-formats/enc-cyr" :not-host)
712  #!+sb-unicode
713  ("src/code/external-formats/enc-dos" :not-host)
714  #!+sb-unicode
715  ("src/code/external-formats/enc-iso" :not-host)
716  #!+sb-unicode
717  ("src/code/external-formats/enc-win" :not-host)
718  #!+sb-unicode
719  ("src/code/external-formats/enc-mac" :not-host)
720  #!+sb-unicode
721  ("src/code/external-formats/mb-util" :not-host)
722  #!+sb-unicode
723  ("src/code/external-formats/enc-cn-tbl" :not-host)
724  #!+sb-unicode
725  ("src/code/external-formats/enc-cn" :not-host)
726  #!+sb-unicode
727  ("src/code/external-formats/enc-jpn-tbl" :not-host)
728  #!+sb-unicode
729  ("src/code/external-formats/enc-jpn" :not-host)
730  #!+sb-unicode
731  ("src/code/external-formats/enc-ucs" :not-host)
732  #!+sb-unicode
733  ("src/code/external-formats/enc-utf" :not-host)
735  ;; The code here can't be compiled until CONDITION and
736  ;; DEFINE-CONDITION are defined and SB!DEBUG:*STACK-TOP-HINT* is
737  ;; declared special.
738  ("src/code/parse-defmacro-errors")
740  #!+sb-eval
741  ("src/code/full-eval"   :not-host) ; uses INFO, ARG-COUNT-ERROR
743  ("src/code/bit-bash"    :not-host) ; needs %NEGATE from assembly/target/arith
745  ("src/code/target-load" :not-host) ; needs special vars from code/load.lisp
747  #!-(or x86 x86-64)
748  ("src/compiler/target/sanctify" :not-host)
750  ;; FIXME: Does this really need stuff from compiler/dump.lisp?
751  ("src/compiler/target-dump" :not-host) ; needs stuff from compiler/dump.lisp
753  ("src/code/cold-init" :not-host) ; needs (SETF EXTERN-ALIEN) macroexpansion
755  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
756  ;; target macros and DECLAIMs installed at build-the-cross-compiler time
758  ;; Declare all target special variables defined by ANSI now, so that
759  ;; we don't have to worry about any of them being bound incorrectly
760  ;; when the compiler processes code which appears before the appropriate
761  ;; DEFVAR or DEFPARAMETER.
762  ("src/code/cl-specials")
764  ;; FIXME: here? earlier?  can probably be as late as possible.  Also
765  ;; maybe call it FORCE-DELAYED-PROCLAIMS?
766  ("src/compiler/late-proclaim")
768  ;; fundamental target macros (e.g. CL:DO and CL:DEFUN) and support
769  ;; for them
770  ("src/code/defboot")
771  ("src/code/destructuring-bind")
772  ("src/code/setf")
773  ("src/code/macros")
774  ("src/code/loop")
775  ("src/code/cas")
776  ("src/code/late-cas")
778  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
779  ;; other target-code-building stuff which can't be processed until
780  ;; machinery like SB!XC:DEFMACRO exists
782  ("src/code/late-format") ; needs SB!XC:DEFMACRO
783  ("src/code/sxhash") ; needs SB!XC:DEFINE-MODIFY-MACRO
784  ("src/code/signal")
785  ("src/code/late-defbangmethod")
787  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
788  ;; PCL-related stuff, which shouldn't need to be done earlier than
789  ;; anything else in cold build because after all it used to be
790  ;; postponed 'til warm init with no problems.
792  ("src/pcl/walk"))