Fix inability to inline CONSTANTP in a few places
[sbcl.git] / build-order.lisp-expr
blob497d07da571c68ff397aa51d08ddfc57c227d6a6
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  ;; Things like DX-FLET and AWHEN are available for use in both the host
49  ;; and target very early, with no DEF! obfuscation necessary.
50  ("src/code/primordial-extensions")
52  ;; ASAP we replace the host's backquote reader with our own, to avoid leaking
53  ;; details of the host into the target. This is not a concern in make-host-2
54  ;; becase IN-TARGET-CROSS-COMPILATION-MODE assigns the reader macros before
55  ;; compiling anything. It is, however, a minor concern for make-host-1, but
56  ;; usually a problem can be exposed only by contrived code / poor style.
57  ;; e.g. if the host's reader were used when compiling
58  ;;  (EVAL-WHEN (#-SB-XC :COMPILE-TOPLEVEL :LOAD-TOPLEVEL :EXECUTE)
59  ;;    (DEFUN A-MACRO-HELPER () '`(FOO ,A ,B))
60  ;; then A-MACRO-HELPER returns host code, and calling it might be wrong, either
61  ;; obviously or subtly. If the result is (LIST* 'FOO (LIST* A (LIST B)))
62  ;; then it's subtly wrong because it might not be the optimal strategy;
63  ;; whereas if it's (BACKQUOTE (FOO (UNQUOTE A) (UNQUOTE B))) then it's
64  ;; flat out wrong. At any rate, judicious avoidance of EVAL-WHEN and nested
65  ;; quasiquotation in 'primordial-extensions' prevents any such issues.
66  ("src/code/backq")
68  ;; It's difficult to be too early with a DECLAIM SPECIAL (or DEFVAR
69  ;; or whatever) thanks to the sullenly-do-the-wrong-thing semantics
70  ;; of CL special binding when the variable is undeclared.
71  ("src/code/globals" :not-host)
73  ("src/code/cmacros" :not-host :slam-forcibly)
75  ("src/code/cold-init-helper-macros")
77  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
78  ;;; cross-compiler-only replacements for stuff which in target Lisp would be
79  ;;; supplied by basic machinery
81  ("src/code/cross-byte"  :not-target)
82  ("src/code/cross-misc"  :not-target)
83  ("src/code/cross-char"  :not-target)
84  ("src/code/cross-boole" :not-target)
85  ("src/code/cross-float" :not-target)
86  ("src/code/cross-io"    :not-target)
87  ("src/code/cross-sap"   :not-target)
88  ("src/code/cross-thread" :not-target)
89  ("src/code/cross-make-load-form" :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")
96  ("src/code/early-defbangmethod")
98  ("src/code/defbangtype")
99  ("src/code/defbangconstant")
100  ("src/code/early-constants") ; needs DEF!CONSTANT
102  ("src/compiler/deftype")      ; on host for SB!XC:DEFTYPE
103  ("src/compiler/early-lexenv")
104  ("src/compiler/early-globaldb")
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/code/restart" :not-host) ; %DEFCONSTANT can bind a restart
135  ("src/code/specializable-array")
137  ("src/code/early-cl")
138  ("src/code/ansi-stream" :not-host)
139  ("src/code/early-fasl")
141  ;; mostly needed by stuff from comcom, but also used by "x86-vm"
142  ("src/code/debug-var-io")
144  ("src/code/defbangstruct")
145  ("src/code/early-thread")
146  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
147  ;;; basic machinery for the target Lisp. Note that although most of these
148  ;;; files are flagged :NOT-HOST, a few might not be.
150  ("src/code/early-print" :not-host)
151  ("src/code/early-pprint" :not-host)
152  ("src/code/early-impl" :not-host)
154  ("src/code/target-extensions" :not-host)
156  ;; Needed before the first use of WITH-SINGLE-PACKAGE-LOCKED-ERROR.
157  ("src/code/early-package" :not-host)
159  ("src/compiler/defconstant")
161  ("src/code/early-defstructs" :not-host) ; gotta-be-first DEFSTRUCTs
162  ("src/code/early-raw-slots")
164  ("src/code/funutils" :not-host)
166  ("src/code/maphash" :not-host :slam-forcibly)
167  ("src/code/xset") ; for representation of MEMBER type
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")
172  ("src/code/early-alieneval")  ; for funs and vars needed at build and run time
174  ("src/code/cas" :not-host)
175  ("src/compiler/early-c")
176  ("src/compiler/fun-info")
177  ("src/pcl/slot-name") ; for calls from 'info-vector'
178  ;; 'info-vector' is needed at least as early as 'fdefinition' so that the
179  ;; inlined INFO-VECTOR-FDEFINITION is available to %COERCE-CALLABLE-TO-FUN.
180  ("src/compiler/info-vector")
181  ("src/compiler/globaldb")
182  ("src/code/primordial-type")
183  ("src/code/early-classoid")
185  ("src/code/sysmacs" :not-host)
187  ;; "assembly/assemfile" was here in the sequence inherited from
188  ;; CMU CL worldcom.lisp, but also appears later in the sequence
189  ;; inherited from CMU CL comcom.lisp. We shouldn't need two versions,
190  ;; so I've deleted the one here. -- WHN 19990620
192  ("src/code/target-error" :not-host)
194  ("src/compiler/early-backend")
195  ;; "src/code/toplevel.lisp" si the first to need this. It's generated
196  ;; automatically by grovel_headers.c, i.e. it's not in CVS.
197  ("output/stuff-groveled-from-headers" :not-host)
199  ("src/code/cold-error"  :not-host)
200  ("src/code/fdefinition" :not-host)
202  ("src/code/pred" :not-host)
204  ("src/compiler/generic/vm-array")
205  ("src/code/weak"          :not-host)
206  ;; 'target-alieneval' needs FILL-POINTER which is defined in 'array'
207  ("src/code/array"         :not-host) ; needs WEAK-POINTER-VALUE
209  ("src/code/target-alieneval" :not-host)
210  ("src/code/target-c-call"    :not-host)
211  ("src/code/target-allocate"  :not-host)
213  ;; This needs DEFINE-ALIEN-ROUTINE from target-alieneval.
214  ("src/code/misc-aliens" :not-host)
216  ("src/code/early-float"   :not-host)
217  ("src/pcl/early-low" :not-host)
218  ("src/code/target-sxhash" :not-host) ; needs most-fooative-foo-float constants
220  ("src/code/list"   :not-host)
221  ("src/code/seq"    :not-host) ; "code/seq" should come after "code/list".
222  ("src/code/coerce" :not-host)
224  ("src/code/string"     :not-host)
225  ("src/code/mipsstrops" :not-host)
227  ("src/code/early-time")
228  ("src/code/unix" :not-host)
229  #!+win32 ("src/code/win32" :not-host)
230  #!+mach  ("src/code/mach"     :not-host)
232  #!+android ("src/code/android-os" :not-host)
233  #!+mach  ("src/code/mach-os"  :not-host)
234  #!+sunos ("src/code/sunos-os" :not-host)
235  #!+hpux  ("src/code/hpux-os"  :not-host)
236  #!+osf1  ("src/code/osf1-os"  :not-host)
237  #!+irix  ("src/code/irix-os"  :not-host)
238  #!+bsd   ("src/code/bsd-os"   :not-host)
239  #!+linux ("src/code/linux-os" :not-host)
240  #!+win32 ("src/code/win32-os" :not-host)
242  ;; sparc-vm and ppc-vm need sc-offset defined to get at internal
243  ;; error args. This file contains stuff previously in
244  ;; debug-info.lisp.  Should it therefore be :not-host?  -- CSR,
245  ;; 2002-02-05
246  ("src/code/sc-offset")
248  ;; KLUDGE: I'd prefer to have this done with a "code/target" softlink
249  ;; instead of a bunch of reader macros. -- WHN 19990308
250  #!+sparc ("src/code/sparc-vm" :not-host)
251  #!+hppa  ("src/code/hppa-vm"  :not-host)
252  #!+x86   ("src/code/x86-vm"   :not-host)
253  #!+x86-64("src/code/x86-64-vm"   :not-host)
254  #!+ppc   ("src/code/ppc-vm"   :not-host)
255  #!+alpha ("src/code/alpha-vm" :not-host)
256  #!+mips  ("src/code/mips-vm"  :not-host)
257  #!+arm   ("src/code/arm-vm" :not-host)
258  #!+arm64 ("src/code/arm64-vm" :not-host)
260  #!-win32 ("src/code/target-signal" :not-host) ; needs OS-CONTEXT-T from x86-vm
261  #!+win32 ("src/code/target-exception" :not-host)
263  ("src/code/bignum"     :not-host)
264  ("src/code/numbers"    :not-host)
265  ("src/code/float-trap" :not-host)
266  ("src/code/float"      :not-host)
267  ("src/code/irrat"      :not-host)
269  ("src/code/char")
270  ("src/code/huffman")
271  ("src/code/target-char"    :not-host)
272  ("src/code/target-unicode" :not-host)
273  ("src/code/misc")
275  ("src/code/room"   :not-host)
277  ("src/code/fd-stream"     :not-host)
278  ("src/code/stream"        :not-host)
279  ("src/code/symbol"        :not-host) ; uses STRING-OUTPUT-STREAM
280  ("src/code/print"         :not-host)
281  ("src/code/early-format")
282  ("src/code/defpackage"    :not-host)
284  ("src/code/error-error" :not-host) ; needs WITH-STANDARD-IO-SYNTAX macro
285  ("src/code/common-os" :not-host)
287  ("src/code/deadline" :not-host)
288  ("src/code/serve-event" :not-host)
290  ("src/code/query"  :not-host)
292  ("src/code/sort"  :not-host)
293  ("src/code/time"  :not-host)
294  ("src/code/final" :not-host)
296  ("src/code/setf-funs" :not-host)
298  ("src/code/stubs" :not-host)
300  ("src/code/exhaust" :not-host)
302  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
303  ;;; compiler (and a few miscellaneous files whose dependencies make it
304  ;;; convenient to stick them here)
306  ("src/compiler/policies")
308  ;; ("src/code/defbangmacro" was here until sbcl-0.6.7.3.)
310  ("src/compiler/macros")
312  ("src/compiler/constantp")
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/early-type")
322  ;; for e.g. BLOCK-ANNOTATION, needed by "compiler/vop"
323  ("src/compiler/node")
324  ;; RECONSTRUCT-LEXENV needs types GLOBAL-VAR and DEFINED-FUN
325  ("src/compiler/lexenv")
327  ;; This has ASSEMBLY-UNIT-related stuff needed by core.lisp.
328  ;; and LABEL, needed by IR2-NLX-INFO
329  ("src/compiler/early-assem")
331  ;; for e.g. PRIMITIVE-TYPE, needed by "vmdef"
332  ("src/compiler/vop")
333  ("src/compiler/constant-leaf")
335  ;; needed by "vm" and "primtype"
336  ("src/compiler/backend")
338  ;; for e.g. MAX-VOP-TN-REFS, needed by "meta-vmdef"
339  ("src/compiler/vmdef")
341  ;; needs "backend"
342  ("src/compiler/target/backend-parms")
344  ("src/code/force-delayed-defbangconstants")
345  ("src/code/defmacro")
346  ("src/code/destructuring-bind")
348  ;; for e.g. !DEF-PRIMITIVE-TYPE, needed by primtype.lisp, and
349  ;; DEFINE-STORAGE-CLASS, needed by target/vm.lisp
350  ("src/compiler/meta-vmdef")
352  ;; for e.g. DESCRIPTOR-REG, needed by primtype.lisp
353  ("src/compiler/target/vm")
355  ;; RANDOM-LAYOUT-CLOS-HASH (in 'class') uses RANDOM, the transform for which
356  ;; uses GENERATE-RANDOM-EXPR-FOR-POWER-OF-2 which becomes BIG-RANDOM-CHUNK,
357  ;; which wants to be inlined, and which when inlined becomes RANDOM-CHUNK,
358  ;; which also wants to be inlined.
359  ("src/code/target-random" :not-host)
360  ;; META-FIXME: I think I figured out why this was, and fixed that,
361  ;; and never removed the following comment, nor can I remember why.
362  ;; FIXME: Classic CMU CL had (OPTIMIZE (SAFETY 2) (DEBUG 2) declared
363  ;; around the compilation of "code/class". Why?
364  ("src/code/class")
365  ("src/pcl/pre-warm")
366  ("src/pcl/low" :not-host)
368  ("src/code/debug-info")
369  ("src/code/source-location")
370  ;; Define at most one INTERPRETED-FUNCTION type based on target features
371  #!+sb-eval ("src/code/early-full-eval" :not-host)
372  #!+sb-fasteval ("src/interpreter/function" :not-host)
373  ("src/code/early-condition")
374  ("src/code/condition" :not-host)
375  ("src/code/toplevel"  :not-host)
376  ("src/code/parse-defmacro-errors")
377  ("src/code/format-directive")
378  ;; Target-only stuff should usually be compiled late unless it has
379  ;; compile-time side-effects. This file could probably be later,
380  ;; but should certainly be no earlier than the definitions
381  ;; of FORMAT-ERROR and FORMAT-DIRECTIVE.
382  ("src/code/target-format" :not-host)
384  ("src/compiler/generic/primtype")
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  ;; Compile target-only stuff after all defglobals like *CONS-T-T-TYPE*
405  ;; and all type-classes are defined.
406  ("src/code/target-type" :not-host)
407  ("src/code/deftypes-for-target")
409  ;; defines IR1-ATTRIBUTES macro, needed by proclaim.lisp
410  ("src/compiler/knownfun")
412  ;; needs FUN-INFO structure slot setters, defined in knownfun.lisp
413  ("src/compiler/fun-info-funs")
415  ;; stuff needed by "code/defstruct"
416  ("src/code/cross-type" :not-target)
417  ("src/compiler/generic/vm-type")
418  ("src/compiler/proclaim")
420  ("src/code/class-init")
422  ;; The DEFSTRUCT machinery needs SB!XC:SUBTYPEP, defined in
423  ;; "code/late-type", and SB!XC:TYPEP, defined in "code/cross-type",
424  ;; and SPECIALIZE-ARRAY-TYPE, defined in "compiler/generic/vm-type",
425  ;; and SB!XC:PROCLAIM, defined in "src/compiler/proclaim"
426  ("src/code/defstruct")
427  ("src/code/target-defstruct" :not-host)
429  ;; ALIEN-VALUE has to be defined as a class (done by DEFSTRUCT
430  ;; machinery) before we can set its superclasses here.
431  ("src/code/alien-type")
433  ;; This needs not just the SB!XC:DEFSTRUCT machinery, but also
434  ;; the TYPE= stuff defined in late-type.lisp, and the
435  ;; CHECK-FUN-NAME defined in proclaim.lisp.
436  ("src/code/force-delayed-defbangstructs")
438  ("src/code/typep" :not-host)
440  ("src/compiler/compiler-error")
442  ("src/code/late-deftypes-for-target")
444  ("src/code/type-init")
445  ;; Now that the type system is initialized, fix up UNKNOWN types that
446  ;; have crept in.
447  ("src/compiler/fixup-type")
449  ;; These define target types needed by fndb.lisp.
450  ("src/code/package")
451  ("src/code/random")
452  ("src/code/hash-table")
453  ("src/code/readtable")
454  ("src/code/pathname")
455  ("src/code/host-pprint")
456  ("src/code/pprint" :not-host)
458  ;; KLUDGE: Much stuff above here is the type system and/or the INFO
459  ;; system, not really the compiler proper. It might be easier to
460  ;; understand the system if those things were split off into packages
461  ;; SB-TYPE and SB-INFO and built in their own sections. -- WHN 20000124
463  ;; In classic CMU CL (re)build order, these were done later, but
464  ;; in building from scratch, these must be loaded before
465  ;; "compiler/generic/objdef" in order to allow forms like
466  ;; (DEFINE-PRIMITIVE-OBJECT (..) (CAR ..) ..) to work.
467  ("src/compiler/fndb")
468  ("src/compiler/generic/vm-fndb")
470  ("src/compiler/generic/late-objdef")
472  ("src/compiler/generic/interr")
474  ("src/compiler/bit-util")
476  ;; core.lisp contains DEFSTRUCT CORE-OBJECT, and "compiler/main.lisp"
477  ;; does lots of (TYPEP FOO 'CORE-OBJECT), so it's nice to compile this
478  ;; before "compiler/main.lisp" so that those can be coded efficiently
479  ;; (and so that they don't cause lots of annoying compiler warnings
480  ;; about undefined types).
481  ("src/compiler/fixup") ; for DEFSTRUCT FIXUP
482  ("src/compiler/generic/core")
483  ("src/code/thread")
484  ("src/code/load")
486  #!+linkage-table ("src/code/linkage-table" :not-host)
487  #!+os-provides-dlopen ("src/code/foreign-load" :not-host)
488  #!+(and os-provides-dlopen (not win32)) ("src/code/unix-foreign-load" :not-host)
489  #!+(and os-provides-dlopen win32) ("src/code/win32-foreign-load" :not-host)
490  ("src/code/foreign")
492  ("src/code/fop") ; needs macros from code/load.lisp
494  ("src/compiler/ctype")
495  ("src/compiler/disassem")
496  ("src/compiler/assem")
498  ;; Compiling this requires fop definitions from code/fop.lisp and
499  ("src/compiler/dump")
501  ("src/compiler/ir1report") ; for COMPILER-ERROR-CONTEXT
502  ("src/compiler/main") ; needs DEFSTRUCT FASL-OUTPUT from dump.lisp
503  ("src/compiler/xref")
504  ("src/compiler/target-main" :not-host)
505  ("src/compiler/ir1tran")
506  ("src/compiler/ir1tran-lambda")
507  ("src/compiler/ir1-translators")
508  ("src/compiler/ir1util")
509  ("src/compiler/ir1opt")
510  ("src/compiler/loop")
512  ("src/compiler/ir1final")
513  ("src/compiler/array-tran")
514  ("src/compiler/seqtran")
515  ("src/compiler/typetran")
516  ("src/compiler/generic/vm-typetran")
517  ("src/compiler/float-tran")
518  ("src/compiler/saptran")
519  ("src/compiler/srctran")
520  ("src/code/quantifiers")
521  ("src/compiler/bitops-derive-type")
522  ("src/compiler/generic/vm-tran")
523  ("src/compiler/locall")
524  ("src/compiler/dfo")
525  ("src/compiler/dce")
526  ("src/compiler/checkgen")
527  ("src/compiler/constraint")
528  ("src/compiler/physenvanal")
530  ("src/compiler/tn")
531  ("src/compiler/life")
533  ("src/compiler/debug-dump")
534  ("src/compiler/generic/utils")
535  ("src/compiler/fopcompile")
537  ("src/assembly/assemfile" :not-target)
539  ;; Compiling this file requires the macros SB!ASSEM:EMIT-LABEL and
540  ;; SB!ASSEM:EMIT-POST-IT, defined in assem.lisp, and also possibly
541  ;; the definition of the LOCATION-INFO structure (if structures in
542  ;; the host lisp have setf expanders rather than setf functions).
543  ("src/compiler/late-vmdef")
545  ("src/compiler/target/insts")
546  ("src/compiler/target/macros")
547  ("src/compiler/generic/early-type-vops")
549  ("src/assembly/target/support")
551  ("src/compiler/target/move")
552  ("src/compiler/target/float")
553  #!+sb-simd-pack
554  ("src/compiler/target/simd-pack")
555  ("src/compiler/target/sap")
556  ("src/compiler/target/system")
557  ("src/compiler/target/char")
558  ("src/compiler/target/memory")
559  ("src/compiler/target/static-fn")
560  ("src/compiler/target/arith"
561   ;; KLUDGE: for ppc and sparc this appears to be necessary, as it
562   ;; used to be for array VOPs for X86 until ca. 0.8.5.24 when CSR's
563   ;; patch for that architecture was finally committed
564   ;;
565   ;; old (0.8.5.23) comment on the array-VOP hack for X86:
566   ;; x Compiling this file for X86 raises alarming warnings of
567   ;; x the form
568   ;; x    Argument FOO to VOP CHECK-BOUND has SC restriction
569   ;; x    DESCRIPTOR-REG which is not allowed by the operand type:
570   ;; x      (:OR POSITIVE-FIXNUM)
571   ;; x This seems not to be something that I broke, but rather a "feature"
572   ;; x inherited from classic CMU CL. (Debian cmucl_2.4.8.deb compiling
573   ;; x Debian cmucl_2.4.8.tar.gz raises the same warning). Thus, even though
574   ;; x these warnings are severe enough that they would ordinarily abort
575   ;; x compilation, for now we blithely ignore them and press on to more
576   ;; x pressing problems. Someday, though, it would be nice to figure out
577   ;; x what the problem is and fix it.
578   #!+(or ppc) :ignore-failure-p)
579  ("src/code/cross-modular"  :not-target)
581  ("src/compiler/generic/late-type-vops") ;; KLUDGE: it's not so late anymore
582  ("src/compiler/target/type-vops")
584  ("src/compiler/target/subprim")
585  ("src/compiler/target/debug")
586  ;; src/compiler/sparc/c-call contains a deftransform for
587  ;; %ALIEN-FUNCALL -- CSR
588  ("src/compiler/early-aliencomp")
589  ("src/compiler/target/c-call")
590  ("src/compiler/target/cell")
591  ("src/compiler/target/values")
592  ("src/compiler/target/alloc")
593  ("src/compiler/target/call")
594  ("src/compiler/target/nlx")
595  ("src/compiler/generic/late-nlx")
596  ("src/compiler/target/show")
597  ("src/compiler/target/array")
598  ("src/compiler/generic/type-error")
599  ("src/compiler/target/pred")
601  ;; KLUDGE: The assembly files need to be compiled twice: once as
602  ;; normal lisp files, and once by sb-c:assemble-file.  We use a
603  ;; different suffix / "file type" for the :assem versions to make
604  ;; sure we don't scribble over anything we shouldn't.
606  ("src/assembly/target/assem-rtns")
607  ("src/assembly/target/array")
608  ("src/assembly/target/arith")
609  ("src/assembly/target/alloc")
610  ("src/assembly/target/assem-rtns" :assem :not-host)
611  ("src/assembly/target/array"      :assem :not-host)
612  ("src/assembly/target/arith"      :assem :not-host)
613  ("src/assembly/target/alloc"      :assem :not-host)
615  ("src/compiler/pseudo-vops")
617  ("src/compiler/aliencomp")
619  ("src/compiler/ltv")
620  ("src/compiler/gtn")
621  ("src/compiler/ltn")
622  ("src/compiler/stack")
623  ("src/compiler/control")
624  ("src/compiler/entry")
625  ("src/compiler/ir2tran")
627  ("src/compiler/generic/vm-ir2tran")
629  ("src/compiler/copyprop")
630  ("src/compiler/represent")
631  ("src/compiler/ir2opt")
632  ("src/compiler/pack")
633  ("src/compiler/pack-iterative")
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/module"            :not-host)
662  ("src/code/bignum-random"     :not-host) ; needs "code/random" and
663                                           ;   "code/bignum"
664  ("src/code/target-hash-table" :not-host) ; needs "code/hash-table"
665  ("src/code/reader"            :not-host) ; needs "code/readtable"
666  ("src/code/target-stream"     :not-host) ; needs WHITESPACEP from "code/reader"
667  ("src/code/target-pathname"   :not-host) ; needs "code/pathname"
668  #!-win32
669  ("src/code/unix-pathname"     :not-host)
670  #!+win32
671  ("src/code/win32-pathname"    :not-host)
672  ("src/code/filesys"           :not-host) ; needs HOST from "code/pathname"
674  ("src/code/target-misc"       :not-host) ; dribble-stream, used by "save"
675  ("src/code/save"              :not-host) ; uses the definition of PATHNAME
676                                           ;   from "code/pathname"
677  ("src/code/sharpm"            :not-host) ; uses stuff from "code/reader"
678  ("src/code/alloc"             :not-host)
680  ("src/code/early-step")                  ; target-thread needs *STEP-OUT*
682  ("src/code/target-thread"     :not-host)
683  ("src/code/timer" :not-host)
685  ;; defines SB!DI:DO-DEBUG-FUN-BLOCKS, needed by target-disassem.lisp
686  ("src/code/interr" :not-host)
687  ("src/code/gc"     :not-host)
688  ("src/code/purify" :not-host)
689  ("src/code/debug-int" :not-host)
691  ;; target-only assemblerish stuff
692  ("src/compiler/target-disassem"     :not-host)
693  ("src/compiler/target/target-insts" :not-host)
695  ("src/code/debug" :not-host)
697  ("src/code/octets" :not-host)
698  ("src/code/external-formats/enc-basic" :not-host)
699  ("src/code/external-formats/enc-ebcdic" :not-host)
700  #!+sb-unicode
701  ("src/code/external-formats/enc-cyr" :not-host)
702  #!+sb-unicode
703  ("src/code/external-formats/enc-dos" :not-host)
704  #!+sb-unicode
705  ("src/code/external-formats/enc-iso" :not-host)
706  #!+sb-unicode
707  ("src/code/external-formats/enc-win" :not-host)
708  #!+sb-unicode
709  ("src/code/external-formats/enc-mac" :not-host)
710  #!+sb-unicode
711  ("src/code/external-formats/mb-util" :not-host)
712  #!+sb-unicode
713  ("src/code/external-formats/enc-cn-tbl" :not-host)
714  #!+sb-unicode
715  ("src/code/external-formats/enc-cn" :not-host)
716  #!+sb-unicode
717  ("src/code/external-formats/enc-jpn-tbl" :not-host)
718  #!+sb-unicode
719  ("src/code/external-formats/enc-jpn" :not-host)
720  #!+sb-unicode
721  ("src/code/external-formats/enc-ucs" :not-host)
722  #!+sb-unicode
723  ("src/code/external-formats/enc-utf" :not-host)
725  #!+sb-eval
726  ("src/code/full-eval"   :not-host) ; uses INFO, ARG-COUNT-ERROR
728  ("src/code/bit-bash"    :not-host) ; needs %NEGATE from assembly/target/arith
730  ("src/code/target-load" :not-host) ; needs special vars from code/load.lisp
732  #!-(or x86 x86-64)
733  ("src/compiler/target/sanctify" :not-host)
735  ;; FIXME: Does this really need stuff from compiler/dump.lisp?
736  ("src/compiler/target-dump" :not-host) ; needs stuff from compiler/dump.lisp
738  ("src/code/cold-init" :not-host) ; needs (SETF EXTERN-ALIEN) macroexpansion
740  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
741  ;; target macros and DECLAIMs installed at build-the-cross-compiler time
743  ;; Declare all target special variables defined by ANSI now, so that
744  ;; we don't have to worry about any of them being bound incorrectly
745  ;; when the compiler processes code which appears before the appropriate
746  ;; DEFVAR or DEFPARAMETER.
747  ("src/code/cl-specials")
749  ;; FIXME: here? earlier?  can probably be as late as possible.  Also
750  ;; maybe call it FORCE-DELAYED-PROCLAIMS?
751  ("src/compiler/late-proclaim")
753  ;; fundamental target macros (e.g. CL:DO and CL:DEFUN) and support
754  ;; for them
755  ("src/code/defboot")
756  ("src/code/setf")
757  ("src/code/macros")
758  ("src/code/loop")
760  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
761  ;; other target-code-building stuff which can't be processed until
762  ;; machinery like SB!XC:DEFMACRO exists
764  ("src/code/late-format") ; needs SB!XC:DEFMACRO
765  ("src/code/sxhash") ; needs SB!XC:DEFINE-MODIFY-MACRO
766  ("src/code/signal")
767  ("src/code/late-defbangmethod")
768  ("src/code/late-cas" :not-host)
770  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
771  ;; PCL-related stuff, which shouldn't need to be done earlier than
772  ;; anything else in cold build because after all it used to be
773  ;; postponed 'til warm init with no problems.
775  ("src/pcl/walk"))