src/compiler/dce: Add a dead-code-elimination phase to the compiler.
[sbcl.git] / build-order.lisp-expr
blob9e7d23f9db6285588218814955cae54af641db13
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")
57  ;; It's difficult to be too early with a DECLAIM SPECIAL (or DEFVAR
58  ;; or whatever) thanks to the sullenly-do-the-wrong-thing semantics
59  ;; of CL special binding when the variable is undeclared.
60  ("src/code/globals" :not-host)
62  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
63  ;; various DEFSETFs and/or other DEFMACROish things, defined as early as
64  ;; possible so we don't need to fiddle with any subtleties of defining them
65  ;; before any possible use
67  ;; KLUDGE: It would be nice to reimplement most or all of these as
68  ;; functions (possibly inlined functions) so that we wouldn't need to
69  ;; worry so much about forcing them all to be defined before any possible
70  ;; use. It might be pretty tedious, though, working through any
71  ;; transforms and translators and optimizers and so forth to make sure
72  ;; that they can handle the change. -- WHN 19990919
73  ("src/code/defsetfs")
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-misc"  :not-target)
82  ("src/code/cross-char"  :not-target)
83  ("src/code/cross-byte"  :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/primordial-type")
97  ("src/code/early-defbangmethod")
99  ("src/code/defbangtype")
100  ("src/code/defbangmacro")
101  ("src/code/defbangconstant")
103  ("src/code/primordial-extensions")
105  ;; comes early so that stuff can reason about function names
106  ("src/code/function-names")
108  ;; for various constants e.g. SB!XC:MOST-POSITIVE-FIXNUM and
109  ;; SB!VM:N-LOWTAG-BITS, needed by "early-objdef" and others
110  ("src/compiler/generic/parms")
111  ("src/compiler/target/parms")
112  ("src/compiler/generic/early-vm")
113  ("src/compiler/generic/early-objdef")
114  ("src/code/early-array") ; needs "early-vm" numbers
116  ("src/code/early-extensions") ; on host for COLLECT, SYMBOLICATE, etc.
117  ("src/code/parse-body")       ; on host for PARSE-BODY
118  ("src/code/parse-defmacro")   ; on host for PARSE-DEFMACRO
119  ("src/compiler/deftype")      ; on host for SB!XC:DEFTYPE
120  ("src/code/restart" :not-host) ; %DEFCONSTANT can bind a restart
121  ("src/compiler/defconstant")
122  ("src/code/early-alieneval")  ; for funs and vars needed 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
149  ("src/code/early-raw-slots")
151  ("src/code/defbangstruct")
153  ("src/code/unportable-float")
155  ("src/code/funutils" :not-host)
157  ;; This needs DEF!STRUCT, and is itself needed early so that structure
158  ;; accessors and inline functions defined here can be compiled inline
159  ;; later. (Avoiding full calls not only increases efficiency, but also
160  ;; avoids some cold init issues involving full calls to structure
161  ;; accessors.)
162  ("src/code/type-class")
164  ("src/code/ansi-stream" :not-host)
166  ("src/code/sysmacs" :not-host)
168  ;; "assembly/assemfile" was here in the sequence inherited from
169  ;; CMU CL worldcom.lisp, but also appears later in the sequence
170  ;; inherited from CMU CL comcom.lisp. We shouldn't need two versions,
171  ;; so I've deleted the one here. -- WHN 19990620
173  ("src/code/target-error" :not-host)
175  ("src/compiler/early-backend")
176  ;; "src/code/toplevel.lisp" si the first to need this. It's generated
177  ;; automatically by grovel_headers.c, i.e. it's not in CVS.
178  ("output/stuff-groveled-from-headers" :not-host)
180  ;; a comment from classic CMU CL:
181  ;;   "These guys can supposedly come in any order, but not really.
182  ;;    Some are put at the end so that macros don't run interpreted
183  ;;    and stuff."
184  ;; Dunno exactly what this meant or whether it still holds. -- WHN 19990803
185  ;; FIXME: more informative and up-to-date comment?
186  ("src/code/kernel"      :not-host)
187  ("src/code/toplevel"    :not-host)
188  ("src/code/cold-error"  :not-host)
189  ;; 'info-vector' is needed at least as early as 'fdefinition' so that the
190  ;; inlined INFO-VECTOR-FDEFINITION is available to %COERCE-CALLABLE-TO-FUN.
191  ("src/compiler/info-vector")
192  ("src/code/fdefinition" :not-host)
194  ;; In classic CMU CL, code/type was here. I've since split that into
195  ;; lots of smaller pieces, some of which are here and some of which
196  ;; are handled later in the sequence, when the cross-compiler is
197  ;; built. -- WHN 19990620
198  ("src/code/target-type" :not-host)
200  ("src/code/pred" :not-host)
202  ("src/code/target-alieneval" :not-host)
203  ("src/code/target-c-call"    :not-host)
204  ("src/code/target-allocate"  :not-host)
206  ;; This needs DEFINE-ALIEN-ROUTINE from target-alieneval.
207  ("src/code/misc-aliens" :not-host)
209  ("src/code/typedefs")
210  ("src/compiler/generic/vm-array")
211  ("src/code/array"         :not-host)
212  ("src/code/early-float"   :not-host)
213  ("src/code/target-sxhash" :not-host) ; needs most-fooative-foo-float constants
215  ("src/code/list"   :not-host)
216  ("src/code/seq"    :not-host) ; "code/seq" should come after "code/list".
217  ("src/code/coerce" :not-host)
219  ("src/code/string"     :not-host)
220  ("src/code/mipsstrops" :not-host)
222  ("src/code/early-time" :not-host)
223  ("src/code/unix" :not-host)
224  #!+win32 ("src/code/win32" :not-host)
225  #!+mach  ("src/code/mach"     :not-host)
227  ("src/code/common-os" :not-host)
228  #!+android ("src/code/android-os" :not-host)
229  #!+mach  ("src/code/mach-os"  :not-host)
230  #!+sunos ("src/code/sunos-os" :not-host)
231  #!+hpux  ("src/code/hpux-os"  :not-host)
232  #!+osf1  ("src/code/osf1-os"  :not-host)
233  #!+irix  ("src/code/irix-os"  :not-host)
234  #!+bsd   ("src/code/bsd-os"   :not-host)
235  #!+linux ("src/code/linux-os" :not-host)
236  #!+win32 ("src/code/win32-os" :not-host)
238  ;; sparc-vm and ppc-vm need sc-offset defined to get at internal
239  ;; error args. This file contains stuff previously in
240  ;; debug-info.lisp.  Should it therefore be :not-host?  -- CSR,
241  ;; 2002-02-05
242  ("src/code/sc-offset")
244  ;; KLUDGE: I'd prefer to have this done with a "code/target" softlink
245  ;; instead of a bunch of reader macros. -- WHN 19990308
246  #!+sparc ("src/code/sparc-vm" :not-host)
247  #!+hppa  ("src/code/hppa-vm"  :not-host)
248  #!+x86   ("src/code/x86-vm"   :not-host)
249  #!+x86-64("src/code/x86-64-vm"   :not-host)
250  #!+ppc   ("src/code/ppc-vm"   :not-host)
251  #!+alpha ("src/code/alpha-vm" :not-host)
252  #!+mips  ("src/code/mips-vm"  :not-host)
253  #!+arm   ("src/code/arm-vm" :not-host)
255  ;; FIXME: do we really want to keep this? -- CSR, 2002-08-31
256  #!+rt    ("src/code/rt-vm"    :not-host)
258  #!-win32 ("src/code/target-signal" :not-host) ; needs OS-CONTEXT-T from x86-vm
259  #!+win32 ("src/code/target-exception" :not-host)
261  ("src/code/symbol"     :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/target-misc"    :not-host)
273  ("src/code/misc")
275  ("src/code/room"   :not-host)
277  ("src/code/stream"        :not-host)
278  ("src/code/print"         :not-host)
279  ("src/code/pprint"        :not-host)
280  ("src/code/early-format")
281  ("src/code/target-format" :not-host)
282  ("src/code/defpackage"    :not-host)
284  ("src/code/error-error" :not-host) ; needs WITH-STANDARD-IO-SYNTAX macro
286  ("src/code/deadline" :not-host)
287  ("src/code/serve-event" :not-host)
288  ("src/code/fd-stream"   :not-host)
290  ("src/code/module" :not-host)
292  ("src/code/interr" :not-host)
294  ("src/code/query"  :not-host)
296  ("src/code/sort"  :not-host)
297  ("src/code/time"  :not-host)
298  ("src/code/timer" :not-host)
299  ("src/code/weak"  :not-host)
300  ("src/code/final" :not-host)
302  ("src/code/setf-funs" :not-host)
304  ("src/code/stubs" :not-host)
306  ("src/code/exhaust" :not-host)
308  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
309  ;;; compiler (and a few miscellaneous files whose dependencies make it
310  ;;; convenient to stick them here)
312  ("src/compiler/early-c")
313  ("src/compiler/policy")
314  ("src/compiler/policies")
316  ;; ("src/code/defbangmacro" was here until sbcl-0.6.7.3.)
318  ("src/compiler/macros")
319  ("src/compiler/generic/vm-macs")
320  ("src/compiler/generic/objdef")
322  ;; needed by "compiler/vop"
323  ("src/compiler/sset")
325  ;; for e.g. BLOCK-ANNOTATION, needed by "compiler/vop"
326  ("src/compiler/node")
328  ;; for e.g. PRIMITIVE-TYPE, needed by "vmdef"
329  ("src/compiler/vop")
331  ;; needed by "vm" and "primtype"
332  ("src/compiler/backend")
334  ;; for e.g. MAX-VOP-TN-REFS, needed by "meta-vmdef"
335  ("src/compiler/vmdef")
337  ;; needs "backend"
338  ("src/compiler/target/backend-parms")
340  ;; for INFO and SB!XC:MACRO-FUNCTION, needed by defmacro.lisp
341  ("src/compiler/globaldb")
342  ("src/compiler/info-functions")
344  ("src/code/force-delayed-defbangconstants")
345  ("src/code/defmacro")
346  ("src/code/force-delayed-defbangmacros")
348  ("src/compiler/late-macros")
350  ;; for e.g. !DEF-PRIMITIVE-TYPE, needed by primtype.lisp, and
351  ;; DEFINE-STORAGE-CLASS, needed by target/vm.lisp
352  ("src/compiler/meta-vmdef")
354  ;; for e.g. DESCRIPTOR-REG, needed by primtype.lisp
355  ("src/compiler/target/vm")
356  ("src/code/xset")
357  ;; for e.g. SPECIFIER-TYPE, needed by primtype.lisp
358  ("src/code/early-type")
360  ;; FIXME: Classic CMU CL had (OPTIMIZE (SAFETY 2) (DEBUG 2) declared
361  ;; around the compilation of "code/class". Why?
362  ("src/code/class")
364  ;; The definition of CONDITION-CLASS depends on SLOT-CLASS, defined
365  ;; in class.lisp.
366  ("src/code/condition" :not-host)
368  ("src/compiler/generic/primtype")
370  ;; the implementation of the compiler-affecting part of forms like
371  ;; DEFMACRO and DEFTYPE; must be loaded before we can start
372  ;; defining types
373  ("src/compiler/parse-lambda-list")
375  ;; for DEFSTRUCT ALIEN-TYPE, needed by host-type.lisp
376  ("src/code/host-alieneval")
378  ;; can't be done until definition of e.g. DEFINE-ALIEN-TYPE-CLASS in
379  ;; host-alieneval.lisp
380  ("src/code/host-c-call")
382  ;; SB!XC:DEFTYPE is needed in order to compile late-type
383  ;; in the host Common Lisp, and in order to run, it needs
384  ;; %COMPILER-DEFTYPE.
385  ("src/compiler/compiler-deftype")
387  ;; These appear here in the build sequence because they require
388  ;;   * the macro INFO, defined in globaldb.lisp, and
389  ;;   * the function PARSE-DEFMACRO, defined in parse-defmacro.lisp,
390  ;; and because they define
391  ;;   * the function SPECIFIER-TYPE, which is used in fndb.lisp.
392  ("src/code/late-type")
393  ("src/code/deftypes-for-target")
395  ;; defines IR1-ATTRIBUTES macro, needed by proclaim.lisp
396  ("src/compiler/knownfun")
397  ("src/compiler/constantp")
399  ;; needs FUN-INFO structure slot setters, defined in knownfun.lisp
400  ("src/compiler/fun-info-funs")
402  ;; stuff needed by "code/defstruct"
403  ("src/code/cross-type" :not-target)
404  ("src/compiler/generic/vm-type")
405  ("src/compiler/proclaim")
407  ("src/code/class-init")
409  ;; The DEFSTRUCT machinery needs SB!XC:SUBTYPEP, defined in
410  ;; "code/late-type", and SB!XC:TYPEP, defined in "code/cross-type",
411  ;; and SPECIALIZE-ARRAY-TYPE, defined in "compiler/generic/vm-type",
412  ;; and SB!XC:PROCLAIM, defined in "src/compiler/proclaim"
413  ("src/code/defstruct")
414  ("src/code/target-defstruct" :not-host)
416  ;; ALIEN-VALUE has to be defined as a class (done by DEFSTRUCT
417  ;; machinery) before we can set its superclasses here.
418  ("src/code/alien-type")
420  ;; This needs not just the SB!XC:DEFSTRUCT machinery, but also
421  ;; the TYPE= stuff defined in late-type.lisp, and the
422  ;; CHECK-FUN-NAME defined in proclaim.lisp.
423  ("src/code/force-delayed-defbangstructs")
425  ;; early-full-eval uses !DEFSTRUCT-WITH-ALTERNATE-METACLASS and
426  ;; DEF!METHOD.  It split out from the rest of full-eval because
427  ;; defstruct/metaclass fun makes it unslammable, and to define
428  ;; INTERPRETED-FUNCTION before it is used in compiler/main and in the
429  ;; definition of the COMPILED-FUNCTION type.
430  #!+sb-eval
431  ("src/code/early-full-eval")
433  ("src/code/typep" :not-host)
435  ("src/compiler/compiler-error")
437  ("src/code/late-deftypes-for-target")
439  ("src/code/type-init")
440  ;; Now that the type system is initialized, fix up UNKNOWN types that
441  ;; have crept in.
442  ("src/compiler/fixup-type")
444  ;; These define target types needed by fndb.lisp.
445  ("src/code/package")
446  ("src/code/random")
447  ("src/code/hash-table")
448  ("src/code/readtable")
449  ("src/code/pathname")
450  ("src/code/host-pprint")
451  ("src/compiler/lexenv")
453  ;; KLUDGE: Much stuff above here is the type system and/or the INFO
454  ;; system, not really the compiler proper. It might be easier to
455  ;; understand the system if those things were split off into packages
456  ;; SB-TYPE and SB-INFO and built in their own sections. -- WHN 20000124
458  ;; In classic CMU CL (re)build order, these were done later, but
459  ;; in building from scratch, these must be loaded before
460  ;; "compiler/generic/objdef" in order to allow forms like
461  ;; (DEFINE-PRIMITIVE-OBJECT (..) (CAR ..) ..) to work.
462  ("src/compiler/fndb")
463  ("src/compiler/generic/vm-fndb")
465  ("src/compiler/generic/late-objdef")
467  ("src/compiler/generic/interr")
469  ("src/compiler/bit-util")
471  ;; This has ASSEMBLY-UNIT-related stuff needed by core.lisp.
472  ("src/compiler/early-assem")
474  ;; This has the BARRIER stuff that the threading support needs.
475  ("src/code/barrier")
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  #!+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  ("src/code/debug-info")
499  ;; Compiling this requires fop definitions from code/fop.lisp and
500  ("src/compiler/dump")
502  ("src/compiler/main") ; needs DEFSTRUCT FASL-OUTPUT from dump.lisp
503  ("src/compiler/xref")
504  ("src/code/source-location")
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/ir1report")
511  ("src/compiler/ir1opt")
512  ("src/compiler/loop")
514  ("src/compiler/ir1final")
515  ("src/compiler/array-tran")
516  ("src/compiler/seqtran")
517  ("src/compiler/typetran")
518  ("src/compiler/generic/vm-typetran")
519  ("src/compiler/float-tran")
520  ("src/compiler/saptran")
521  ("src/compiler/srctran")
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")
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/fixup") ; for DEFSTRUCT FIXUP, used by insts.lisp
548  ("src/compiler/target/insts")
549  ("src/compiler/target/macros")
550  ("src/compiler/generic/early-type-vops")
552  ("src/assembly/target/support")
554  ("src/compiler/target/move")
555  ("src/compiler/target/float")
556  #!+sb-simd-pack
557  ("src/compiler/target/simd-pack")
558  ("src/compiler/target/sap")
559  ("src/compiler/target/system")
560  ("src/compiler/target/char")
561  ("src/compiler/target/memory")
562  ("src/compiler/target/static-fn")
563  ("src/compiler/target/arith"
564   ;; KLUDGE: for ppc and sparc this appears to be necessary, as it
565   ;; used to be for array VOPs for X86 until ca. 0.8.5.24 when CSR's
566   ;; patch for that architecture was finally committed
567   ;;
568   ;; old (0.8.5.23) comment on the array-VOP hack for X86:
569   ;; x Compiling this file for X86 raises alarming warnings of
570   ;; x the form
571   ;; x    Argument FOO to VOP CHECK-BOUND has SC restriction
572   ;; x    DESCRIPTOR-REG which is not allowed by the operand type:
573   ;; x      (:OR POSITIVE-FIXNUM)
574   ;; x This seems not to be something that I broke, but rather a "feature"
575   ;; x inherited from classic CMU CL. (Debian cmucl_2.4.8.deb compiling
576   ;; x Debian cmucl_2.4.8.tar.gz raises the same warning). Thus, even though
577   ;; x these warnings are severe enough that they would ordinarily abort
578   ;; x compilation, for now we blithely ignore them and press on to more
579   ;; x pressing problems. Someday, though, it would be nice to figure out
580   ;; x what the problem is and fix it.
581   #!+(or ppc) :ignore-failure-p)
582  ("src/code/cross-modular"  :not-target)
584  ("src/compiler/target/type-vops")
586  ("src/compiler/target/subprim")
587  ("src/compiler/target/debug")
588  ;; src/compiler/sparc/c-call contains a deftransform for
589  ;; %ALIEN-FUNCALL -- CSR
590  ("src/compiler/early-aliencomp")
591  ("src/compiler/target/c-call")
592  ("src/compiler/target/cell")
593  ("src/compiler/target/values")
594  ("src/compiler/target/alloc")
595  ("src/compiler/target/call")
596  ("src/compiler/target/nlx")
597  ("src/compiler/generic/late-nlx")
598  ("src/compiler/target/show")
599  ("src/compiler/target/array")
600  ("src/compiler/generic/type-error")
601  ("src/compiler/target/pred")
603  ("src/compiler/generic/late-type-vops")
605  ;; KLUDGE: The assembly files need to be compiled twice: once as
606  ;; normal lisp files, and once by sb-c:assemble-file.  We use a
607  ;; different suffix / "file type" for the :assem versions to make
608  ;; sure we don't scribble over anything we shouldn't.
610  ("src/assembly/target/assem-rtns")
611  ("src/assembly/target/array")
612  ("src/assembly/target/arith")
613  ("src/assembly/target/alloc")
614  ("src/assembly/target/assem-rtns" :assem :not-host)
615  ("src/assembly/target/array"      :assem :not-host)
616  ("src/assembly/target/arith"      :assem :not-host)
617  ("src/assembly/target/alloc"      :assem :not-host)
619  ("src/compiler/pseudo-vops")
621  ("src/compiler/aliencomp")
623  ("src/compiler/ltv")
624  ("src/compiler/gtn")
625  ("src/compiler/ltn")
626  ("src/compiler/stack")
627  ("src/compiler/control")
628  ("src/compiler/entry")
629  ("src/compiler/ir2tran")
631  ("src/compiler/generic/vm-ir2tran")
633  ("src/compiler/copyprop")
634  ("src/compiler/represent")
635  ("src/compiler/ir2opt")
636  ("src/compiler/pack")
637  ("src/compiler/pack-iterative")
638  ("src/compiler/codegen")
639  ("src/compiler/debug")
641  #!+sb-dyncount ("src/compiler/dyncount")
642  #!+sb-dyncount ("src/code/dyncount")
644  ;; needed by OPEN-FASL-OUTPUT, which is called by COMPILE-FILE
645  ("src/code/format-time")
647  ;; needed by various unhappy-path cases in the cross-compiler
648  ("src/code/error")
650  ;; This wasn't in classic CMU CL "comcom.lisp", but it has some stuff
651  ;; that Python-as-cross-compiler has turned out to need.
652  ("src/code/macroexpand")
654  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
655  ;; files which depend in some way (directly or indirectly) on stuff
656  ;; compiled as part of the compiler
658  ("src/code/late-extensions") ; needs condition system
659  ("src/compiler/generic/target-core" :not-host) ; uses stuff from
660                                                 ;   "compiler/generic/core"
662  ("src/code/eval"              :not-host) ; uses INFO, wants compiler macro
663  ("src/code/target-sap"        :not-host) ; uses SAP-INT type
664  ("src/code/target-package"    :not-host) ; needs "code/package"
665  ("src/code/target-random"     :not-host) ; needs "code/random"
666  ("src/code/bignum-random"     :not-host) ; needs "code/random" and
667                                           ;   "code/bignum"
668  ("src/code/target-hash-table" :not-host) ; needs "code/hash-table"
669  ("src/code/reader"            :not-host) ; needs "code/readtable"
670  ("src/code/target-stream"     :not-host) ; needs WHITESPACEP from "code/reader"
671  ("src/code/target-pathname"   :not-host) ; needs "code/pathname"
672  #!-win32
673  ("src/code/unix-pathname"     :not-host)
674  #!+win32
675  ("src/code/win32-pathname"    :not-host)
676  ("src/code/filesys"           :not-host) ; needs HOST from "code/pathname"
678  ("src/code/save"              :not-host) ; uses the definition of PATHNAME
679                                           ;   from "code/pathname"
680  ("src/code/sharpm"            :not-host) ; uses stuff from "code/reader"
681  ("src/code/alloc"             :not-host)
683  ("src/code/early-step")                  ; target-thread needs *STEP-OUT*
685  ("src/code/target-thread"     :not-host)
687  ;; defines SB!DI:DO-DEBUG-FUN-BLOCKS, needed by target-disassem.lisp
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  ;; The code here can't be compiled until CONDITION and
727  ;; DEFINE-CONDITION are defined and SB!DEBUG:*STACK-TOP-HINT* is
728  ;; declared special.
729  ("src/code/parse-defmacro-errors")
731  #!+sb-eval
732  ("src/code/full-eval"   :not-host) ; uses INFO, ARG-COUNT-ERROR
734  ("src/code/bit-bash"    :not-host) ; needs %NEGATE from assembly/target/arith
736  ("src/code/target-load" :not-host) ; needs special vars from code/load.lisp
738  #!-(or x86 x86-64)
739  ("src/compiler/target/sanctify" :not-host)
741  ;; FIXME: Does this really need stuff from compiler/dump.lisp?
742  ("src/compiler/target-dump" :not-host) ; needs stuff from compiler/dump.lisp
744  ("src/code/cold-init" :not-host) ; needs (SETF EXTERN-ALIEN) macroexpansion
746  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
747  ;; target macros and DECLAIMs installed at build-the-cross-compiler time
749  ;; Declare all target special variables defined by ANSI now, so that
750  ;; we don't have to worry about any of them being bound incorrectly
751  ;; when the compiler processes code which appears before the appropriate
752  ;; DEFVAR or DEFPARAMETER.
753  ("src/code/cl-specials")
755  ;; FIXME: here? earlier?  can probably be as late as possible.  Also
756  ;; maybe call it FORCE-DELAYED-PROCLAIMS?
757  ("src/compiler/late-proclaim")
759  ;; fundamental target macros (e.g. CL:DO and CL:DEFUN) and support
760  ;; for them
761  ("src/code/defboot")
762  ("src/code/destructuring-bind")
763  ("src/code/early-setf")
764  ("src/code/macros")
765  ("src/code/loop")
766  ("src/code/late-setf")
767  ("src/code/cas")
768  ("src/code/late-cas")
770  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
771  ;; other target-code-building stuff which can't be processed until
772  ;; machinery like SB!XC:DEFMACRO exists
774  ("src/code/late-format") ; needs SB!XC:DEFMACRO
775  ("src/code/sxhash") ; needs SB!XC:DEFINE-MODIFY-MACRO
776  ("src/code/signal")
777  ("src/code/late-defbangmethod")
779  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
780  ;; PCL-related stuff, which shouldn't need to be done earlier than
781  ;; anything else in cold build because after all it used to be
782  ;; postponed 'til warm init with no problems.
784  ("src/pcl/walk"))