Optimize (SETF SCHAR).
[sbcl.git] / build-order.lisp-expr
blob80e14273d1119a72c8ba9618fb737a8dfcad12b0
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/code/defsetfs" :not-host)
47  ;; Things like DX-FLET and AWHEN are available for use in both the host
48  ;; and target very early, with no DEF! obfuscation necessary.
49  ("src/code/primordial-extensions")
51  ;; ASAP we replace the host's backquote reader with our own, to avoid leaking
52  ;; details of the host into the target. This is not a concern in make-host-2
53  ;; becase IN-TARGET-CROSS-COMPILATION-MODE assigns the reader macros before
54  ;; compiling anything. It is, however, a minor concern for make-host-1, but
55  ;; usually a problem can be exposed only by contrived code / poor style.
56  ;; e.g. if the host's reader were used when compiling
57  ;;  (EVAL-WHEN (#-SB-XC :COMPILE-TOPLEVEL :LOAD-TOPLEVEL :EXECUTE)
58  ;;    (DEFUN A-MACRO-HELPER () '`(FOO ,A ,B))
59  ;; then A-MACRO-HELPER returns host code, and calling it might be wrong, either
60  ;; obviously or subtly. If the result is (LIST* 'FOO (LIST* A (LIST B)))
61  ;; then it's subtly wrong because it might not be the optimal strategy;
62  ;; whereas if it's (BACKQUOTE (FOO (UNQUOTE A) (UNQUOTE B))) then it's
63  ;; flat out wrong. At any rate, judicious avoidance of EVAL-WHEN and nested
64  ;; quasiquotation in 'primordial-extensions' prevents any such issues.
65  ("src/code/backq")
67  ;; It's difficult to be too early with a DECLAIM SPECIAL (or DEFVAR
68  ;; or whatever) thanks to the sullenly-do-the-wrong-thing semantics
69  ;; of CL special binding when the variable is undeclared.
70  ("src/code/globals" :not-host)
72  ("src/code/cmacros" :not-host :slam-forcibly)
74  ("src/code/cold-init-helper-macros")
76  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
77  ;;; cross-compiler-only replacements for stuff which in target Lisp would be
78  ;;; supplied by basic machinery
80  ("src/code/cross-byte"  :not-target)
81  ("src/code/cross-misc"  :not-target)
82  ("src/code/cross-char"  :not-target)
83  ("src/code/cross-boole" :not-target)
84  ("src/code/cross-float" :not-target)
85  ("src/code/cross-io"    :not-target)
86  ("src/code/cross-sap"   :not-target)
87  ("src/code/cross-thread" :not-target)
88  ("src/code/cross-make-load-form" :not-target)
89  ("src/code/cross-condition" :not-target)
91  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
92  ;;; stuff needed early both in cross-compilation host and in target Lisp
94  ("src/code/uncross")
95  ("src/code/early-defbangmethod")
97  ("src/code/defbangtype")
98  ("src/code/defbangmacro")
99  ("src/code/defbangconstant")
100  ("src/code/early-constants") ; needs DEF!CONSTANT
102  ("src/compiler/early-lexenv")
103  ("src/compiler/early-globaldb")
104  ("src/compiler/early-constantp")
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  ;; "early-extensions" contains a call to TYPEP that is transformed into a call
118  ;; to %OTHER-POINTER-WIDETAG, which is an ordinary inline function, and not
119  ;; known to the cross-compiler until it has seen the DEFUN in 'kernel'
120  ("src/code/kernel" :not-host)
121  ;; This has the BARRIER stuff that the threading support needs,
122  ;; required for some code in 'early-extensions'
123  ("src/code/barrier" :not-host)
124  ("src/code/parse-body")       ; on host for PARSE-BODY
125  ("src/code/unportable-float")
126  ("src/compiler/policy" :slam-forcibly)
127  #!+sb-fasteval ("src/interpreter/basic-env")
128  ;; PARSE-{UNKNOWN,DEPRECATED}-TYPE and other things should be known
129  ;; condition subtypes as soon as possible
130  ("src/code/condition-boot" :not-host)
131  ("src/code/early-extensions") ; on host for COLLECT, SYMBOLICATE, etc.
132  ("src/compiler/parse-lambda-list")
133  ("src/compiler/deftype")      ; on host for SB!XC:DEFTYPE
134  ("src/code/restart" :not-host) ; %DEFCONSTANT can bind a restart
135  ("src/code/early-alieneval")  ; for funs and vars needed at build and run time
137  ("src/code/specializable-array")
139  ("src/code/early-cl")
140  ("src/code/ansi-stream" :not-host)
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/defbangstruct")
147  ("src/code/early-thread")
148  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
149  ;;; basic machinery for the target Lisp. Note that although most of these
150  ;;; files are flagged :NOT-HOST, a few might not be.
152  ("src/code/early-print" :not-host)
153  ("src/code/early-pprint" :not-host)
154  ("src/code/early-impl" :not-host)
156  ("src/code/target-extensions" :not-host)
158  ;; Needed before the first use of WITH-SINGLE-PACKAGE-LOCKED-ERROR.
159  ("src/code/early-package" :not-host)
161  ("src/compiler/defconstant")
163  ("src/code/early-defstructs" :not-host) ; gotta-be-first DEFSTRUCTs
164  ("src/code/early-raw-slots")
166  ("src/code/funutils" :not-host)
168  ;; This needs DEF!STRUCT, and is itself needed early so that structure
169  ;; accessors and inline functions defined here can be compiled inline
170  ;; later. (Avoiding full calls increases efficiency)
171  ("src/code/type-class")
173  ("src/code/cas" :not-host)
174  ("src/compiler/early-c")
175  ("src/compiler/fun-info")
176  ("src/pcl/slot-name") ; for calls from 'info-vector'
177  ;; 'info-vector' is needed at least as early as 'fdefinition' so that the
178  ;; inlined INFO-VECTOR-FDEFINITION is available to %COERCE-CALLABLE-TO-FUN.
179  ("src/compiler/info-vector")
180  ("src/compiler/globaldb")
181  ("src/code/primordial-type")
183  ("src/code/sysmacs" :not-host)
185  ;; "assembly/assemfile" was here in the sequence inherited from
186  ;; CMU CL worldcom.lisp, but also appears later in the sequence
187  ;; inherited from CMU CL comcom.lisp. We shouldn't need two versions,
188  ;; so I've deleted the one here. -- WHN 19990620
190  ("src/code/target-error" :not-host)
192  ("src/compiler/early-backend")
193  ;; "src/code/toplevel.lisp" si the first to need this. It's generated
194  ;; automatically by grovel_headers.c, i.e. it's not in CVS.
195  ("output/stuff-groveled-from-headers" :not-host)
197  ("src/code/cold-error"  :not-host)
198  ("src/code/fdefinition" :not-host)
200  ("src/code/maphash" :not-host :slam-forcibly)
201  ("src/code/pred" :not-host)
203  ("src/compiler/generic/vm-array")
204  ("src/code/weak"          :not-host)
205  ;; 'target-alieneval' needs FILL-POINTER which is defined in 'array'
206  ("src/code/array"         :not-host) ; needs WEAK-POINTER-VALUE
208  ("src/code/target-alieneval" :not-host)
209  ("src/code/target-c-call"    :not-host)
210  ("src/code/target-allocate"  :not-host)
212  ;; This needs DEFINE-ALIEN-ROUTINE from target-alieneval.
213  ("src/code/misc-aliens" :not-host)
215  ("src/code/early-float"   :not-host)
216  ("src/pcl/early-low" :not-host)
217  ("src/code/target-sxhash" :not-host) ; needs most-fooative-foo-float constants
219  ("src/code/list"   :not-host)
220  ("src/code/seq"    :not-host) ; "code/seq" should come after "code/list".
221  ("src/code/coerce" :not-host)
223  ("src/code/string"     :not-host)
224  ("src/code/mipsstrops" :not-host)
226  ("src/code/early-time")
227  ("src/code/unix" :not-host)
228  #!+win32 ("src/code/win32" :not-host)
229  #!+mach  ("src/code/mach"     :not-host)
231  #!+android ("src/code/android-os" :not-host)
232  #!+mach  ("src/code/mach-os"  :not-host)
233  #!+sunos ("src/code/sunos-os" :not-host)
234  #!+hpux  ("src/code/hpux-os"  :not-host)
235  #!+osf1  ("src/code/osf1-os"  :not-host)
236  #!+irix  ("src/code/irix-os"  :not-host)
237  #!+bsd   ("src/code/bsd-os"   :not-host)
238  #!+linux ("src/code/linux-os" :not-host)
239  #!+win32 ("src/code/win32-os" :not-host)
241  ;; sparc-vm and ppc-vm need sc-offset defined to get at internal
242  ;; error args. This file contains stuff previously in
243  ;; debug-info.lisp.  Should it therefore be :not-host?  -- CSR,
244  ;; 2002-02-05
245  ("src/code/sc-offset")
247  ;; KLUDGE: I'd prefer to have this done with a "code/target" softlink
248  ;; instead of a bunch of reader macros. -- WHN 19990308
249  #!+sparc ("src/code/sparc-vm" :not-host)
250  #!+hppa  ("src/code/hppa-vm"  :not-host)
251  #!+x86   ("src/code/x86-vm"   :not-host)
252  #!+x86-64("src/code/x86-64-vm"   :not-host)
253  #!+ppc   ("src/code/ppc-vm"   :not-host)
254  #!+alpha ("src/code/alpha-vm" :not-host)
255  #!+mips  ("src/code/mips-vm"  :not-host)
256  #!+arm   ("src/code/arm-vm" :not-host)
257  #!+arm64 ("src/code/arm64-vm" :not-host)
259  #!-win32 ("src/code/target-signal" :not-host) ; needs OS-CONTEXT-T from x86-vm
260  #!+win32 ("src/code/target-exception" :not-host)
262  ("src/code/bignum"     :not-host)
263  ("src/code/numbers"    :not-host)
264  ("src/code/float-trap" :not-host)
265  ("src/code/float"      :not-host)
266  ("src/code/irrat"      :not-host)
268  ("src/code/char")
269  ("src/code/huffman")
270  ("src/code/target-char"    :not-host)
271  ("src/code/target-unicode" :not-host)
272  ("src/code/misc")
274  ("src/code/room"   :not-host)
276  ("src/code/fd-stream"     :not-host)
277  ("src/code/stream"        :not-host)
278  ("src/code/symbol"        :not-host) ; uses STRING-OUTPUT-STREAM
279  ("src/code/print"         :not-host)
280  ("src/code/early-format")
281  ("src/code/defpackage"    :not-host)
283  ("src/code/error-error" :not-host) ; needs WITH-STANDARD-IO-SYNTAX macro
284  ("src/code/common-os" :not-host)
286  ("src/code/deadline" :not-host)
287  ("src/code/serve-event" :not-host)
289  ("src/code/query"  :not-host)
291  ("src/code/sort"  :not-host)
292  ("src/code/time"  :not-host)
293  ("src/code/final" :not-host)
295  ("src/code/setf-funs" :not-host)
297  ("src/code/stubs" :not-host)
299  ("src/code/exhaust" :not-host)
301  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
302  ;;; compiler (and a few miscellaneous files whose dependencies make it
303  ;;; convenient to stick them here)
305  ("src/compiler/policies")
307  ;; ("src/code/defbangmacro" was here until sbcl-0.6.7.3.)
309  ("src/compiler/macros")
311  ("src/compiler/constantp")
312  ("src/code/early-classoid")
313  ("src/compiler/info-functions")
315  ("src/compiler/generic/vm-macs")
316  ("src/compiler/generic/objdef")
318  ;; needed by "compiler/vop"
319  ("src/compiler/sset")
320  ("src/code/xset") ; for representation of MEMBER type
321  ("src/code/early-type")
323  ;; for e.g. BLOCK-ANNOTATION, needed by "compiler/vop"
324  ("src/compiler/node")
325  ;; RECONSTRUCT-LEXENV needs types GLOBAL-VAR and DEFINED-FUN
326  ("src/compiler/lexenv")
328  ;; This has ASSEMBLY-UNIT-related stuff needed by core.lisp.
329  ;; and LABEL, needed by IR2-NLX-INFO
330  ("src/compiler/early-assem")
332  ;; for e.g. PRIMITIVE-TYPE, needed by "vmdef"
333  ("src/compiler/vop")
334  ("src/compiler/constant-leaf")
336  ;; needed by "vm" and "primtype"
337  ("src/compiler/backend")
339  ;; for e.g. MAX-VOP-TN-REFS, needed by "meta-vmdef"
340  ("src/compiler/vmdef")
342  ;; needs "backend"
343  ("src/compiler/target/backend-parms")
345  ("src/code/force-delayed-defbangconstants")
346  ("src/code/defmacro")
347  ("src/code/force-delayed-defbangmacros")
349  ;; for e.g. !DEF-PRIMITIVE-TYPE, needed by primtype.lisp, and
350  ;; DEFINE-STORAGE-CLASS, needed by target/vm.lisp
351  ("src/compiler/meta-vmdef")
353  ;; for e.g. DESCRIPTOR-REG, needed by primtype.lisp
354  ("src/compiler/target/vm")
356  ;; RANDOM-LAYOUT-CLOS-HASH (in 'class') uses RANDOM, the transform for which
357  ;; uses GENERATE-RANDOM-EXPR-FOR-POWER-OF-2 which becomes BIG-RANDOM-CHUNK,
358  ;; which wants to be inlined, and which when inlined becomes RANDOM-CHUNK,
359  ;; which also wants to be inlined.
360  ("src/code/target-random" :not-host)
361  ;; META-FIXME: I think I figured out why this was, and fixed that,
362  ;; and never removed the following comment, nor can I remember why.
363  ;; FIXME: Classic CMU CL had (OPTIMIZE (SAFETY 2) (DEBUG 2) declared
364  ;; around the compilation of "code/class". Why?
365  ("src/code/class")
366  ("src/pcl/pre-warm")
367  ("src/pcl/low" :not-host)
369  ("src/code/debug-info")
370  ("src/code/source-location")
371  ;; Define at most one INTERPRETED-FUNCTION type based on target features
372  #!+sb-eval ("src/code/early-full-eval" :not-host)
373  #!+sb-fasteval ("src/interpreter/function" :not-host)
374  ("src/code/early-condition")
375  ("src/code/condition" :not-host)
376  ("src/code/toplevel"  :not-host)
377  ("src/code/parse-defmacro-errors")
378  ("src/code/format-directive")
379  ;; Target-only stuff should usually be compiled late unless it has
380  ;; compile-time side-effects. This file could probably be later,
381  ;; but should certainly be no earlier than the definitions
382  ;; of FORMAT-ERROR and FORMAT-DIRECTIVE.
383  ("src/code/target-format" :not-host)
385  ("src/compiler/generic/primtype")
387  ;; for DEFSTRUCT ALIEN-TYPE, needed by host-type.lisp
388  ("src/code/host-alieneval")
390  ;; can't be done until definition of e.g. DEFINE-ALIEN-TYPE-CLASS in
391  ;; host-alieneval.lisp
392  ("src/code/host-c-call")
394  ;; SB!XC:DEFTYPE is needed in order to compile late-type
395  ;; in the host Common Lisp, and in order to run, it needs
396  ;; %COMPILER-DEFTYPE.
397  ("src/compiler/compiler-deftype")
399  ;; These appear here in the build sequence because they require
400  ;;   * the macro INFO, defined in globaldb.lisp, and
401  ;;   * the function PARSE-DEFMACRO, defined in parse-defmacro.lisp,
402  ;; and because they define
403  ;;   * the function SPECIFIER-TYPE, which is used in fndb.lisp.
404  ("src/code/late-type")
405  ;; Compile target-only stuff after all defglobals like *CONS-T-T-TYPE*
406  ;; and all type-classes are defined.
407  ("src/code/target-type" :not-host)
408  ("src/code/deftypes-for-target")
410  ;; defines IR1-ATTRIBUTES macro, needed by proclaim.lisp
411  ("src/compiler/knownfun")
413  ;; needs FUN-INFO structure slot setters, defined in knownfun.lisp
414  ("src/compiler/fun-info-funs")
416  ;; stuff needed by "code/defstruct"
417  ("src/code/cross-type" :not-target)
418  ("src/compiler/generic/vm-type")
419  ("src/compiler/proclaim")
421  ("src/code/class-init")
423  ;; The DEFSTRUCT machinery needs SB!XC:SUBTYPEP, defined in
424  ;; "code/late-type", and SB!XC:TYPEP, defined in "code/cross-type",
425  ;; and SPECIALIZE-ARRAY-TYPE, defined in "compiler/generic/vm-type",
426  ;; and SB!XC:PROCLAIM, defined in "src/compiler/proclaim"
427  ("src/code/defstruct")
428  ("src/code/target-defstruct" :not-host)
430  ;; ALIEN-VALUE has to be defined as a class (done by DEFSTRUCT
431  ;; machinery) before we can set its superclasses here.
432  ("src/code/alien-type")
434  ;; This needs not just the SB!XC:DEFSTRUCT machinery, but also
435  ;; the TYPE= stuff defined in late-type.lisp, and the
436  ;; CHECK-FUN-NAME defined in proclaim.lisp.
437  ("src/code/force-delayed-defbangstructs")
439  ("src/code/typep" :not-host)
441  ("src/compiler/compiler-error")
443  ("src/code/late-deftypes-for-target")
445  ("src/code/type-init")
446  ;; Now that the type system is initialized, fix up UNKNOWN types that
447  ;; have crept in.
448  ("src/compiler/fixup-type")
450  ;; These define target types needed by fndb.lisp.
451  ("src/code/package")
452  ("src/code/random")
453  ("src/code/hash-table")
454  ("src/code/readtable")
455  ("src/code/pathname")
456  ("src/code/host-pprint")
457  ("src/code/pprint" :not-host)
459  ;; KLUDGE: Much stuff above here is the type system and/or the INFO
460  ;; system, not really the compiler proper. It might be easier to
461  ;; understand the system if those things were split off into packages
462  ;; SB-TYPE and SB-INFO and built in their own sections. -- WHN 20000124
464  ;; In classic CMU CL (re)build order, these were done later, but
465  ;; in building from scratch, these must be loaded before
466  ;; "compiler/generic/objdef" in order to allow forms like
467  ;; (DEFINE-PRIMITIVE-OBJECT (..) (CAR ..) ..) to work.
468  ("src/compiler/fndb")
469  ("src/compiler/generic/vm-fndb")
471  ("src/compiler/generic/late-objdef")
473  ("src/compiler/generic/interr")
475  ("src/compiler/bit-util")
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/fixup") ; for DEFSTRUCT FIXUP
483  ("src/compiler/generic/core")
484  ("src/code/thread")
485  ("src/code/load")
487  #!+linkage-table ("src/code/linkage-table" :not-host)
488  #!+os-provides-dlopen ("src/code/foreign-load" :not-host)
489  #!+(and os-provides-dlopen (not win32)) ("src/code/unix-foreign-load" :not-host)
490  #!+(and os-provides-dlopen win32) ("src/code/win32-foreign-load" :not-host)
491  ("src/code/foreign")
493  ("src/code/fop") ; needs macros from code/load.lisp
495  ("src/compiler/ctype")
496  ("src/compiler/disassem")
497  ("src/compiler/assem")
499  ;; Compiling this requires fop definitions from code/fop.lisp and
500  ("src/compiler/dump")
502  ("src/compiler/ir1report") ; for COMPILER-ERROR-CONTEXT
503  ("src/compiler/main") ; needs DEFSTRUCT FASL-OUTPUT from dump.lisp
504  ("src/compiler/xref")
505  ("src/compiler/target-main" :not-host)
506  ("src/compiler/ir1tran")
507  ("src/compiler/ir1tran-lambda")
508  ("src/compiler/ir1-translators")
509  ("src/compiler/ir1util")
510  ("src/compiler/ir1opt")
511  ("src/compiler/loop")
513  ("src/compiler/ir1final")
514  ("src/compiler/array-tran")
515  ("src/compiler/seqtran")
516  ("src/compiler/typetran")
517  ("src/compiler/generic/vm-typetran")
518  ("src/compiler/float-tran")
519  ("src/compiler/saptran")
520  ("src/compiler/srctran")
521  ("src/code/quantifiers")
522  ("src/compiler/bitops-derive-type")
523  ("src/compiler/generic/vm-tran")
524  ("src/compiler/locall")
525  ("src/compiler/dfo")
526  ("src/compiler/dce")
527  ("src/compiler/checkgen")
528  ("src/compiler/constraint")
529  ("src/compiler/physenvanal")
531  ("src/compiler/tn")
532  ("src/compiler/life")
534  ("src/compiler/debug-dump")
535  ("src/compiler/generic/utils")
536  ("src/compiler/fopcompile")
538  ("src/assembly/assemfile" :not-target)
540  ;; Compiling this file requires the macros SB!ASSEM:EMIT-LABEL and
541  ;; SB!ASSEM:EMIT-POST-IT, defined in assem.lisp, and also possibly
542  ;; the definition of the LOCATION-INFO structure (if structures in
543  ;; the host lisp have setf expanders rather than setf functions).
544  ("src/compiler/late-vmdef")
546  ("src/compiler/target/insts")
547  ("src/compiler/target/macros")
548  ("src/compiler/generic/early-type-vops")
550  ("src/assembly/target/support")
552  ("src/compiler/target/move")
553  ("src/compiler/target/float")
554  #!+sb-simd-pack
555  ("src/compiler/target/simd-pack")
556  ("src/compiler/target/sap")
557  ("src/compiler/target/system")
558  ("src/compiler/target/char")
559  ("src/compiler/target/memory")
560  ("src/compiler/target/static-fn")
561  ("src/compiler/target/arith"
562   ;; KLUDGE: for ppc and sparc this appears to be necessary, as it
563   ;; used to be for array VOPs for X86 until ca. 0.8.5.24 when CSR's
564   ;; patch for that architecture was finally committed
565   ;;
566   ;; old (0.8.5.23) comment on the array-VOP hack for X86:
567   ;; x Compiling this file for X86 raises alarming warnings of
568   ;; x the form
569   ;; x    Argument FOO to VOP CHECK-BOUND has SC restriction
570   ;; x    DESCRIPTOR-REG which is not allowed by the operand type:
571   ;; x      (:OR POSITIVE-FIXNUM)
572   ;; x This seems not to be something that I broke, but rather a "feature"
573   ;; x inherited from classic CMU CL. (Debian cmucl_2.4.8.deb compiling
574   ;; x Debian cmucl_2.4.8.tar.gz raises the same warning). Thus, even though
575   ;; x these warnings are severe enough that they would ordinarily abort
576   ;; x compilation, for now we blithely ignore them and press on to more
577   ;; x pressing problems. Someday, though, it would be nice to figure out
578   ;; x what the problem is and fix it.
579   #!+(or ppc) :ignore-failure-p)
580  ("src/code/cross-modular"  :not-target)
582  ("src/compiler/generic/late-type-vops") ;; KLUDGE: it's not so late anymore
583  ("src/compiler/target/type-vops")
585  ("src/compiler/target/subprim")
586  ("src/compiler/target/debug")
587  ;; src/compiler/sparc/c-call contains a deftransform for
588  ;; %ALIEN-FUNCALL -- CSR
589  ("src/compiler/early-aliencomp")
590  ("src/compiler/target/c-call")
591  ("src/compiler/target/cell")
592  ("src/compiler/target/values")
593  ("src/compiler/target/alloc")
594  ("src/compiler/target/call")
595  ("src/compiler/target/nlx")
596  ("src/compiler/generic/late-nlx")
597  ("src/compiler/target/show")
598  ("src/compiler/target/array")
599  ("src/compiler/generic/type-error")
600  ("src/compiler/target/pred")
602  ;; KLUDGE: The assembly files need to be compiled twice: once as
603  ;; normal lisp files, and once by sb-c:assemble-file.  We use a
604  ;; different suffix / "file type" for the :assem versions to make
605  ;; sure we don't scribble over anything we shouldn't.
607  ("src/assembly/target/assem-rtns")
608  ("src/assembly/target/array")
609  ("src/assembly/target/arith")
610  ("src/assembly/target/alloc")
611  ("src/assembly/target/assem-rtns" :assem :not-host)
612  ("src/assembly/target/array"      :assem :not-host)
613  ("src/assembly/target/arith"      :assem :not-host)
614  ("src/assembly/target/alloc"      :assem :not-host)
616  ("src/compiler/pseudo-vops")
618  ("src/compiler/aliencomp")
620  ("src/compiler/ltv")
621  ("src/compiler/gtn")
622  ("src/compiler/ltn")
623  ("src/compiler/stack")
624  ("src/compiler/control")
625  ("src/compiler/entry")
626  ("src/compiler/ir2tran")
628  ("src/compiler/generic/vm-ir2tran")
630  ("src/compiler/copyprop")
631  ("src/compiler/represent")
632  ("src/compiler/ir2opt")
633  ("src/compiler/pack")
634  ("src/compiler/pack-iterative")
635  ("src/compiler/codegen")
636  ("src/compiler/debug")
638  #!+sb-dyncount ("src/compiler/dyncount")
639  #!+sb-dyncount ("src/code/dyncount")
641  ;; needed by OPEN-FASL-OUTPUT, which is called by COMPILE-FILE
642  ("src/code/format-time")
644  ;; needed by various unhappy-path cases in the cross-compiler
645  ("src/code/error")
647  ;; This wasn't in classic CMU CL "comcom.lisp", but it has some stuff
648  ;; that Python-as-cross-compiler has turned out to need.
649  ("src/code/macroexpand")
651  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
652  ;; files which depend in some way (directly or indirectly) on stuff
653  ;; compiled as part of the compiler
655  ("src/code/late-extensions") ; needs condition system
656  ("src/compiler/generic/target-core" :not-host) ; uses stuff from
657                                                 ;   "compiler/generic/core"
659  ("src/code/eval"              :not-host) ; uses INFO, wants compiler macro
660  ("src/code/target-sap"        :not-host) ; uses SAP-INT type
661  ("src/code/target-package"    :not-host) ; needs "code/package"
662  ("src/code/module"            :not-host)
663  ("src/code/bignum-random"     :not-host) ; needs "code/random" and
664                                           ;   "code/bignum"
665  ("src/code/target-hash-table" :not-host) ; needs "code/hash-table"
666  ("src/code/reader"            :not-host) ; needs "code/readtable"
667  ("src/code/target-stream"     :not-host) ; needs WHITESPACEP from "code/reader"
668  ("src/code/target-pathname"   :not-host) ; needs "code/pathname"
669  #!-win32
670  ("src/code/unix-pathname"     :not-host)
671  #!+win32
672  ("src/code/win32-pathname"    :not-host)
673  ("src/code/filesys"           :not-host) ; needs HOST from "code/pathname"
675  ("src/code/target-misc"       :not-host) ; dribble-stream, used by "save"
676  ("src/code/save"              :not-host) ; uses the definition of PATHNAME
677                                           ;   from "code/pathname"
678  ("src/code/sharpm"            :not-host) ; uses stuff from "code/reader"
679  ("src/code/alloc"             :not-host)
681  ("src/code/early-step")                  ; target-thread needs *STEP-OUT*
683  ("src/code/target-thread"     :not-host)
684  ("src/code/timer" :not-host)
686  ;; defines SB!DI:DO-DEBUG-FUN-BLOCKS, needed by target-disassem.lisp
687  ("src/code/interr" :not-host)
688  ("src/code/gc"     :not-host)
689  ("src/code/purify" :not-host)
690  ("src/code/debug-int" :not-host)
692  ;; target-only assemblerish stuff
693  ("src/compiler/target-disassem"     :not-host)
694  ("src/compiler/target/target-insts" :not-host)
696  ("src/code/debug" :not-host)
698  ("src/code/octets" :not-host)
699  ("src/code/external-formats/enc-basic" :not-host)
700  ("src/code/external-formats/enc-ebcdic" :not-host)
701  #!+sb-unicode
702  ("src/code/external-formats/enc-cyr" :not-host)
703  #!+sb-unicode
704  ("src/code/external-formats/enc-dos" :not-host)
705  #!+sb-unicode
706  ("src/code/external-formats/enc-iso" :not-host)
707  #!+sb-unicode
708  ("src/code/external-formats/enc-win" :not-host)
709  #!+sb-unicode
710  ("src/code/external-formats/enc-mac" :not-host)
711  #!+sb-unicode
712  ("src/code/external-formats/mb-util" :not-host)
713  #!+sb-unicode
714  ("src/code/external-formats/enc-cn-tbl" :not-host)
715  #!+sb-unicode
716  ("src/code/external-formats/enc-cn" :not-host)
717  #!+sb-unicode
718  ("src/code/external-formats/enc-jpn-tbl" :not-host)
719  #!+sb-unicode
720  ("src/code/external-formats/enc-jpn" :not-host)
721  #!+sb-unicode
722  ("src/code/external-formats/enc-ucs" :not-host)
723  #!+sb-unicode
724  ("src/code/external-formats/enc-utf" :not-host)
726  #!+sb-eval
727  ("src/code/full-eval"   :not-host) ; uses INFO, ARG-COUNT-ERROR
729  ("src/code/bit-bash"    :not-host) ; needs %NEGATE from assembly/target/arith
731  ("src/code/target-load" :not-host) ; needs special vars from code/load.lisp
733  #!-(or x86 x86-64)
734  ("src/compiler/target/sanctify" :not-host)
736  ;; FIXME: Does this really need stuff from compiler/dump.lisp?
737  ("src/compiler/target-dump" :not-host) ; needs stuff from compiler/dump.lisp
739  ("src/code/cold-init" :not-host) ; needs (SETF EXTERN-ALIEN) macroexpansion
741  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
742  ;; target macros and DECLAIMs installed at build-the-cross-compiler time
744  ;; Declare all target special variables defined by ANSI now, so that
745  ;; we don't have to worry about any of them being bound incorrectly
746  ;; when the compiler processes code which appears before the appropriate
747  ;; DEFVAR or DEFPARAMETER.
748  ("src/code/cl-specials")
750  ;; FIXME: here? earlier?  can probably be as late as possible.  Also
751  ;; maybe call it FORCE-DELAYED-PROCLAIMS?
752  ("src/compiler/late-proclaim")
754  ;; fundamental target macros (e.g. CL:DO and CL:DEFUN) and support
755  ;; for them
756  ("src/code/defboot")
757  ("src/code/destructuring-bind")
758  ("src/code/setf")
759  ("src/code/macros")
760  ("src/code/loop")
762  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
763  ;; other target-code-building stuff which can't be processed until
764  ;; machinery like SB!XC:DEFMACRO exists
766  ("src/code/late-format") ; needs SB!XC:DEFMACRO
767  ("src/code/sxhash") ; needs SB!XC:DEFINE-MODIFY-MACRO
768  ("src/code/signal")
769  ("src/code/late-defbangmethod")
770  ("src/code/late-cas" :not-host)
772  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
773  ;; PCL-related stuff, which shouldn't need to be done earlier than
774  ;; anything else in cold build because after all it used to be
775  ;; postponed 'til warm init with no problems.
777  ("src/pcl/walk"))