Simplify the sexpr generated by INCF and DECF in trivial uses.
[sbcl.git] / build-order.lisp-expr
blobc0933913ffaa7ce780f9b096a68f13d2986e9756
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")
104  ;; early-globaldb could go even earlier by changing one use of
105  ;; WITH-UNIQUE-NAMES to just GENSYM, but the macros therein are
106  ;; transforming everything they should, so it's fine.
107  ("src/compiler/early-globaldb")
109  ;; comes early so that stuff can reason about function names
110  ("src/code/function-names")
112  ;; for various constants e.g. SB!XC:MOST-POSITIVE-FIXNUM and
113  ;; SB!VM:N-LOWTAG-BITS, needed by "early-objdef" and others
114  ("src/compiler/generic/parms")
115  ("src/compiler/target/parms")
116  ("src/compiler/generic/early-vm")
117  ("src/compiler/generic/early-objdef")
118  ("src/code/early-array") ; needs "early-vm" numbers
120  ;; "early-extensions" contains a call to TYPEP that is transformed into a call
121  ;; to %OTHER-POINTER-WIDETAG, which is an ordinary inline function, and not
122  ;; known to the cross-compiler until it has seen the DEFUN in 'kernel'
123  ("src/code/kernel" :not-host)
124  ;; This has the BARRIER stuff that the threading support needs,
125  ;; required for some code in 'early-extensions'
126  ("src/code/barrier" :not-host)
127  ("src/code/early-extensions") ; on host for COLLECT, SYMBOLICATE, etc.
128  ("src/code/parse-body")       ; on host for PARSE-BODY
129  ("src/code/parse-defmacro")   ; on host for PARSE-DEFMACRO
130  ("src/compiler/deftype")      ; on host for SB!XC:DEFTYPE
131  ("src/code/restart" :not-host) ; %DEFCONSTANT can bind a restart
132  ("src/compiler/defconstant")
133  ("src/code/early-alieneval")  ; for funs and vars needed at build and run time
135  ("src/code/specializable-array")
137  ("src/code/early-cl")
138  ("src/code/early-fasl")
140  ;; mostly needed by stuff from comcom, but also used by "x86-vm"
141  ("src/code/debug-var-io")
143  ("src/code/early-thread")
144  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
145  ;;; basic machinery for the target Lisp. Note that although most of these
146  ;;; files are flagged :NOT-HOST, a few might not be.
148  ("src/code/target-defbangmethod" :not-host)
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/code/early-defstructs" :not-host) ; gotta-be-first DEFSTRUCTs
160  ("src/code/early-raw-slots")
162  ("src/code/defbangstruct")
164  ("src/code/unportable-float")
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 not only increases efficiency, but also
171  ;; avoids some cold init issues involving full calls to structure
172  ;; accessors.)
173  ("src/code/type-class")
175  ("src/code/ansi-stream" :not-host)
177  ("src/code/sysmacs" :not-host)
179  ;; "assembly/assemfile" was here in the sequence inherited from
180  ;; CMU CL worldcom.lisp, but also appears later in the sequence
181  ;; inherited from CMU CL comcom.lisp. We shouldn't need two versions,
182  ;; so I've deleted the one here. -- WHN 19990620
184  ("src/code/target-error" :not-host)
186  ("src/compiler/early-backend")
187  ;; "src/code/toplevel.lisp" si the first to need this. It's generated
188  ;; automatically by grovel_headers.c, i.e. it's not in CVS.
189  ("output/stuff-groveled-from-headers" :not-host)
191  ;; a comment from classic CMU CL:
192  ;;   "These guys can supposedly come in any order, but not really.
193  ;;    Some are put at the end so that macros don't run interpreted
194  ;;    and stuff."
195  ;; Dunno exactly what this meant or whether it still holds. -- WHN 19990803
196  ;; FIXME: more informative and up-to-date comment?
197  ("src/code/toplevel"    :not-host)
198  ("src/code/cold-error"  :not-host)
199  ;; 'info-vector' is needed at least as early as 'fdefinition' so that the
200  ;; inlined INFO-VECTOR-FDEFINITION is available to %COERCE-CALLABLE-TO-FUN.
201  ("src/compiler/info-vector")
202  ("src/code/fdefinition" :not-host)
204  ;; In classic CMU CL, code/type was here. I've since split that into
205  ;; lots of smaller pieces, some of which are here and some of which
206  ;; are handled later in the sequence, when the cross-compiler is
207  ;; built. -- WHN 19990620
208  ("src/code/target-type" :not-host)
210  ("src/code/pred" :not-host)
212  ("src/code/target-alieneval" :not-host)
213  ("src/code/target-c-call"    :not-host)
214  ("src/code/target-allocate"  :not-host)
216  ;; This needs DEFINE-ALIEN-ROUTINE from target-alieneval.
217  ("src/code/misc-aliens" :not-host)
219  ("src/code/typedefs")
220  ("src/compiler/generic/vm-array")
221  ("src/code/weak"          :not-host)
222  ("src/code/array"         :not-host) ; needs WEAK-POINTER-VALUE
223  ("src/code/early-float"   :not-host)
224  ("src/code/target-sxhash" :not-host) ; needs most-fooative-foo-float constants
226  ("src/code/list"   :not-host)
227  ("src/code/seq"    :not-host) ; "code/seq" should come after "code/list".
228  ("src/code/coerce" :not-host)
230  ("src/code/string"     :not-host)
231  ("src/code/mipsstrops" :not-host)
233  ("src/code/early-time" :not-host)
234  ("src/code/unix" :not-host)
235  #!+win32 ("src/code/win32" :not-host)
236  #!+mach  ("src/code/mach"     :not-host)
238  ("src/code/common-os" :not-host)
239  #!+android ("src/code/android-os" :not-host)
240  #!+mach  ("src/code/mach-os"  :not-host)
241  #!+sunos ("src/code/sunos-os" :not-host)
242  #!+hpux  ("src/code/hpux-os"  :not-host)
243  #!+osf1  ("src/code/osf1-os"  :not-host)
244  #!+irix  ("src/code/irix-os"  :not-host)
245  #!+bsd   ("src/code/bsd-os"   :not-host)
246  #!+linux ("src/code/linux-os" :not-host)
247  #!+win32 ("src/code/win32-os" :not-host)
249  ;; sparc-vm and ppc-vm need sc-offset defined to get at internal
250  ;; error args. This file contains stuff previously in
251  ;; debug-info.lisp.  Should it therefore be :not-host?  -- CSR,
252  ;; 2002-02-05
253  ("src/code/sc-offset")
255  ;; KLUDGE: I'd prefer to have this done with a "code/target" softlink
256  ;; instead of a bunch of reader macros. -- WHN 19990308
257  #!+sparc ("src/code/sparc-vm" :not-host)
258  #!+hppa  ("src/code/hppa-vm"  :not-host)
259  #!+x86   ("src/code/x86-vm"   :not-host)
260  #!+x86-64("src/code/x86-64-vm"   :not-host)
261  #!+ppc   ("src/code/ppc-vm"   :not-host)
262  #!+alpha ("src/code/alpha-vm" :not-host)
263  #!+mips  ("src/code/mips-vm"  :not-host)
264  #!+arm   ("src/code/arm-vm" :not-host)
266  ;; FIXME: do we really want to keep this? -- CSR, 2002-08-31
267  #!+rt    ("src/code/rt-vm"    :not-host)
269  #!-win32 ("src/code/target-signal" :not-host) ; needs OS-CONTEXT-T from x86-vm
270  #!+win32 ("src/code/target-exception" :not-host)
272  ("src/code/symbol"     :not-host)
273  ("src/code/bignum"     :not-host)
274  ("src/code/numbers"    :not-host)
275  ("src/code/float-trap" :not-host)
276  ("src/code/float"      :not-host)
277  ("src/code/irrat"      :not-host)
279  ("src/code/char")
280  ("src/code/huffman")
281  ("src/code/target-char"    :not-host)
282  ("src/code/target-unicode" :not-host)
283  ("src/code/target-misc"    :not-host)
284  ("src/code/misc")
286  ("src/code/room"   :not-host)
288  ("src/code/stream"        :not-host)
289  ("src/code/print"         :not-host)
290  ("src/code/early-format")
291  ("src/code/target-format" :not-host)
292  ("src/code/defpackage"    :not-host)
294  ("src/code/error-error" :not-host) ; needs WITH-STANDARD-IO-SYNTAX macro
296  ("src/code/deadline" :not-host)
297  ("src/code/serve-event" :not-host)
298  ("src/code/fd-stream"   :not-host)
300  ("src/code/module" :not-host)
302  ("src/code/interr" :not-host)
304  ("src/code/query"  :not-host)
306  ("src/code/sort"  :not-host)
307  ("src/code/time"  :not-host)
308  ("src/code/timer" :not-host)
309  ("src/code/final" :not-host)
311  ("src/code/setf-funs" :not-host)
313  ("src/code/stubs" :not-host)
315  ("src/code/exhaust" :not-host)
317  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
318  ;;; compiler (and a few miscellaneous files whose dependencies make it
319  ;;; convenient to stick them here)
321  ("src/compiler/early-c")
322  ("src/compiler/policy")
323  ("src/compiler/policies")
325  ;; ("src/code/defbangmacro" was here until sbcl-0.6.7.3.)
327  ("src/compiler/macros")
329  ("src/compiler/globaldb")
330  ("src/compiler/info-functions")
332  ("src/compiler/generic/vm-macs")
333  ("src/compiler/generic/objdef")
335  ;; needed by "compiler/vop"
336  ("src/compiler/sset")
338  ;; for e.g. BLOCK-ANNOTATION, needed by "compiler/vop"
339  ("src/compiler/node")
341  ;; for e.g. PRIMITIVE-TYPE, needed by "vmdef"
342  ("src/compiler/vop")
344  ;; needed by "vm" and "primtype"
345  ("src/compiler/backend")
347  ;; for e.g. MAX-VOP-TN-REFS, needed by "meta-vmdef"
348  ("src/compiler/vmdef")
350  ;; needs "backend"
351  ("src/compiler/target/backend-parms")
353  ("src/code/force-delayed-defbangconstants")
354  ("src/code/defmacro")
355  ("src/code/force-delayed-defbangmacros")
357  ("src/compiler/late-macros")
359  ;; for e.g. !DEF-PRIMITIVE-TYPE, needed by primtype.lisp, and
360  ;; DEFINE-STORAGE-CLASS, needed by target/vm.lisp
361  ("src/compiler/meta-vmdef")
363  ;; for e.g. DESCRIPTOR-REG, needed by primtype.lisp
364  ("src/compiler/target/vm")
365  ("src/code/xset")
366  ;; for e.g. SPECIFIER-TYPE, needed by primtype.lisp
367  ("src/code/early-type")
369  ;; FIXME: Classic CMU CL had (OPTIMIZE (SAFETY 2) (DEBUG 2) declared
370  ;; around the compilation of "code/class". Why?
371  ("src/code/class")
373  ;; The definition of CONDITION-CLASS depends on SLOT-CLASS, defined
374  ;; in class.lisp.
375  ("src/code/condition" :not-host)
377  ("src/compiler/generic/primtype")
379  ;; the implementation of the compiler-affecting part of forms like
380  ;; DEFMACRO and DEFTYPE; must be loaded before we can start
381  ;; defining types
382  ("src/compiler/parse-lambda-list")
384  ;; for DEFSTRUCT ALIEN-TYPE, needed by host-type.lisp
385  ("src/code/host-alieneval")
387  ;; can't be done until definition of e.g. DEFINE-ALIEN-TYPE-CLASS in
388  ;; host-alieneval.lisp
389  ("src/code/host-c-call")
391  ;; SB!XC:DEFTYPE is needed in order to compile late-type
392  ;; in the host Common Lisp, and in order to run, it needs
393  ;; %COMPILER-DEFTYPE.
394  ("src/compiler/compiler-deftype")
396  ;; These appear here in the build sequence because they require
397  ;;   * the macro INFO, defined in globaldb.lisp, and
398  ;;   * the function PARSE-DEFMACRO, defined in parse-defmacro.lisp,
399  ;; and because they define
400  ;;   * the function SPECIFIER-TYPE, which is used in fndb.lisp.
401  ("src/code/late-type")
402  ("src/code/pprint" :not-host)
403  ("src/code/deftypes-for-target")
405  ;; defines IR1-ATTRIBUTES macro, needed by proclaim.lisp
406  ("src/compiler/knownfun")
407  ("src/compiler/constantp")
409  ;; needs FUN-INFO structure slot setters, defined in knownfun.lisp
410  ("src/compiler/fun-info-funs")
412  ;; stuff needed by "code/defstruct"
413  ("src/code/cross-type" :not-target)
414  ("src/compiler/generic/vm-type")
415  ("src/compiler/proclaim")
417  ("src/code/class-init")
419  ;; The DEFSTRUCT machinery needs SB!XC:SUBTYPEP, defined in
420  ;; "code/late-type", and SB!XC:TYPEP, defined in "code/cross-type",
421  ;; and SPECIALIZE-ARRAY-TYPE, defined in "compiler/generic/vm-type",
422  ;; and SB!XC:PROCLAIM, defined in "src/compiler/proclaim"
423  ("src/code/defstruct")
424  ("src/code/target-defstruct" :not-host)
426  ;; ALIEN-VALUE has to be defined as a class (done by DEFSTRUCT
427  ;; machinery) before we can set its superclasses here.
428  ("src/code/alien-type")
430  ;; This needs not just the SB!XC:DEFSTRUCT machinery, but also
431  ;; the TYPE= stuff defined in late-type.lisp, and the
432  ;; CHECK-FUN-NAME defined in proclaim.lisp.
433  ("src/code/force-delayed-defbangstructs")
435  ;; early-full-eval uses !DEFSTRUCT-WITH-ALTERNATE-METACLASS and
436  ;; DEF!METHOD.  It split out from the rest of full-eval because
437  ;; defstruct/metaclass fun makes it unslammable, and to define
438  ;; INTERPRETED-FUNCTION before it is used in compiler/main and in the
439  ;; definition of the COMPILED-FUNCTION type.
440  #!+sb-eval
441  ("src/code/early-full-eval")
443  ("src/code/typep" :not-host)
445  ("src/compiler/compiler-error")
447  ("src/code/late-deftypes-for-target")
449  ("src/code/type-init")
450  ;; Now that the type system is initialized, fix up UNKNOWN types that
451  ;; have crept in.
452  ("src/compiler/fixup-type")
454  ;; These define target types needed by fndb.lisp.
455  ("src/code/package")
456  ("src/code/random")
457  ("src/code/hash-table")
458  ("src/code/readtable")
459  ("src/code/pathname")
460  ("src/code/host-pprint")
461  ("src/compiler/lexenv")
463  ;; KLUDGE: Much stuff above here is the type system and/or the INFO
464  ;; system, not really the compiler proper. It might be easier to
465  ;; understand the system if those things were split off into packages
466  ;; SB-TYPE and SB-INFO and built in their own sections. -- WHN 20000124
468  ;; In classic CMU CL (re)build order, these were done later, but
469  ;; in building from scratch, these must be loaded before
470  ;; "compiler/generic/objdef" in order to allow forms like
471  ;; (DEFINE-PRIMITIVE-OBJECT (..) (CAR ..) ..) to work.
472  ("src/compiler/fndb")
473  ("src/compiler/generic/vm-fndb")
475  ("src/compiler/generic/late-objdef")
477  ("src/compiler/generic/interr")
479  ("src/compiler/bit-util")
481  ;; This has ASSEMBLY-UNIT-related stuff needed by core.lisp.
482  ("src/compiler/early-assem")
484  ;; core.lisp contains DEFSTRUCT CORE-OBJECT, and "compiler/main.lisp"
485  ;; does lots of (TYPEP FOO 'CORE-OBJECT), so it's nice to compile this
486  ;; before "compiler/main.lisp" so that those can be coded efficiently
487  ;; (and so that they don't cause lots of annoying compiler warnings
488  ;; about undefined types).
489  ("src/compiler/generic/core")
490  ("src/code/thread")
491  ("src/code/load")
493  #!+linkage-table ("src/code/linkage-table" :not-host)
494  #!+os-provides-dlopen ("src/code/foreign-load" :not-host)
495  #!+(and os-provides-dlopen (not win32)) ("src/code/unix-foreign-load" :not-host)
496  #!+(and os-provides-dlopen win32) ("src/code/win32-foreign-load" :not-host)
497  ("src/code/foreign")
499  ("src/code/fop") ; needs macros from code/load.lisp
501  ("src/compiler/ctype")
502  ("src/compiler/disassem")
503  ("src/compiler/assem")
505  ("src/code/debug-info")
506  ;; Compiling this requires fop definitions from code/fop.lisp and
507  ("src/compiler/dump")
509  ("src/compiler/main") ; needs DEFSTRUCT FASL-OUTPUT from dump.lisp
510  ("src/compiler/xref")
511  ("src/code/source-location")
512  ("src/compiler/target-main" :not-host)
513  ("src/compiler/ir1tran")
514  ("src/compiler/ir1tran-lambda")
515  ("src/compiler/ir1-translators")
516  ("src/compiler/ir1util")
517  ("src/compiler/ir1report")
518  ("src/compiler/ir1opt")
519  ("src/compiler/loop")
521  ("src/compiler/ir1final")
522  ("src/compiler/array-tran")
523  ("src/compiler/seqtran")
524  ("src/compiler/typetran")
525  ("src/compiler/generic/vm-typetran")
526  ("src/compiler/float-tran")
527  ("src/compiler/saptran")
528  ("src/compiler/srctran")
529  ("src/compiler/bitops-derive-type")
530  ("src/compiler/generic/vm-tran")
531  ("src/compiler/locall")
532  ("src/compiler/dfo")
533  ("src/compiler/dce")
534  ("src/compiler/checkgen")
535  ("src/compiler/constraint")
536  ("src/compiler/physenvanal")
538  ("src/compiler/tn")
539  ("src/compiler/life")
541  ("src/compiler/debug-dump")
542  ("src/compiler/generic/utils")
543  ("src/compiler/fopcompile")
545  ("src/assembly/assemfile")
547  ;; Compiling this file requires the macros SB!ASSEM:EMIT-LABEL and
548  ;; SB!ASSEM:EMIT-POST-IT, defined in assem.lisp, and also possibly
549  ;; the definition of the LOCATION-INFO structure (if structures in
550  ;; the host lisp have setf expanders rather than setf functions).
551  ("src/compiler/late-vmdef")
553  ("src/compiler/fixup") ; for DEFSTRUCT FIXUP, used by insts.lisp
555  ("src/compiler/target/insts")
556  ("src/compiler/target/macros")
557  ("src/compiler/generic/early-type-vops")
559  ("src/assembly/target/support")
561  ("src/compiler/target/move")
562  ("src/compiler/target/float")
563  #!+sb-simd-pack
564  ("src/compiler/target/simd-pack")
565  ("src/compiler/target/sap")
566  ("src/compiler/target/system")
567  ("src/compiler/target/char")
568  ("src/compiler/target/memory")
569  ("src/compiler/target/static-fn")
570  ("src/compiler/target/arith"
571   ;; KLUDGE: for ppc and sparc this appears to be necessary, as it
572   ;; used to be for array VOPs for X86 until ca. 0.8.5.24 when CSR's
573   ;; patch for that architecture was finally committed
574   ;;
575   ;; old (0.8.5.23) comment on the array-VOP hack for X86:
576   ;; x Compiling this file for X86 raises alarming warnings of
577   ;; x the form
578   ;; x    Argument FOO to VOP CHECK-BOUND has SC restriction
579   ;; x    DESCRIPTOR-REG which is not allowed by the operand type:
580   ;; x      (:OR POSITIVE-FIXNUM)
581   ;; x This seems not to be something that I broke, but rather a "feature"
582   ;; x inherited from classic CMU CL. (Debian cmucl_2.4.8.deb compiling
583   ;; x Debian cmucl_2.4.8.tar.gz raises the same warning). Thus, even though
584   ;; x these warnings are severe enough that they would ordinarily abort
585   ;; x compilation, for now we blithely ignore them and press on to more
586   ;; x pressing problems. Someday, though, it would be nice to figure out
587   ;; x what the problem is and fix it.
588   #!+(or ppc) :ignore-failure-p)
589  ("src/code/cross-modular"  :not-target)
591  ("src/compiler/target/type-vops")
593  ("src/compiler/target/subprim")
594  ("src/compiler/target/debug")
595  ;; src/compiler/sparc/c-call contains a deftransform for
596  ;; %ALIEN-FUNCALL -- CSR
597  ("src/compiler/early-aliencomp")
598  ("src/compiler/target/c-call")
599  ("src/compiler/target/cell")
600  ("src/compiler/target/values")
601  ("src/compiler/target/alloc")
602  ("src/compiler/target/call")
603  ("src/compiler/target/nlx")
604  ("src/compiler/generic/late-nlx")
605  ("src/compiler/target/show")
606  ("src/compiler/target/array")
607  ("src/compiler/generic/type-error")
608  ("src/compiler/target/pred")
610  ("src/compiler/generic/late-type-vops")
612  ;; KLUDGE: The assembly files need to be compiled twice: once as
613  ;; normal lisp files, and once by sb-c:assemble-file.  We use a
614  ;; different suffix / "file type" for the :assem versions to make
615  ;; sure we don't scribble over anything we shouldn't.
617  ("src/assembly/target/assem-rtns")
618  ("src/assembly/target/array")
619  ("src/assembly/target/arith")
620  ("src/assembly/target/alloc")
621  ("src/assembly/target/assem-rtns" :assem :not-host)
622  ("src/assembly/target/array"      :assem :not-host)
623  ("src/assembly/target/arith"      :assem :not-host)
624  ("src/assembly/target/alloc"      :assem :not-host)
626  ("src/compiler/pseudo-vops")
628  ("src/compiler/aliencomp")
630  ("src/compiler/ltv")
631  ("src/compiler/gtn")
632  ("src/compiler/ltn")
633  ("src/compiler/stack")
634  ("src/compiler/control")
635  ("src/compiler/entry")
636  ("src/compiler/ir2tran")
638  ("src/compiler/generic/vm-ir2tran")
640  ("src/compiler/copyprop")
641  ("src/compiler/represent")
642  ("src/compiler/ir2opt")
643  ("src/compiler/pack")
644  ("src/compiler/pack-iterative")
645  ("src/compiler/codegen")
646  ("src/compiler/debug")
648  #!+sb-dyncount ("src/compiler/dyncount")
649  #!+sb-dyncount ("src/code/dyncount")
651  ;; needed by OPEN-FASL-OUTPUT, which is called by COMPILE-FILE
652  ("src/code/format-time")
654  ;; needed by various unhappy-path cases in the cross-compiler
655  ("src/code/error")
657  ;; This wasn't in classic CMU CL "comcom.lisp", but it has some stuff
658  ;; that Python-as-cross-compiler has turned out to need.
659  ("src/code/macroexpand")
661  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
662  ;; files which depend in some way (directly or indirectly) on stuff
663  ;; compiled as part of the compiler
665  ("src/code/late-extensions") ; needs condition system
666  ("src/compiler/generic/target-core" :not-host) ; uses stuff from
667                                                 ;   "compiler/generic/core"
669  ("src/code/eval"              :not-host) ; uses INFO, wants compiler macro
670  ("src/code/target-sap"        :not-host) ; uses SAP-INT type
671  ("src/code/target-package"    :not-host) ; needs "code/package"
672  ("src/code/target-random"     :not-host) ; needs "code/random"
673  ("src/code/bignum-random"     :not-host) ; needs "code/random" and
674                                           ;   "code/bignum"
675  ("src/code/target-hash-table" :not-host) ; needs "code/hash-table"
676  ("src/code/reader"            :not-host) ; needs "code/readtable"
677  ("src/code/target-stream"     :not-host) ; needs WHITESPACEP from "code/reader"
678  ("src/code/target-pathname"   :not-host) ; needs "code/pathname"
679  #!-win32
680  ("src/code/unix-pathname"     :not-host)
681  #!+win32
682  ("src/code/win32-pathname"    :not-host)
683  ("src/code/filesys"           :not-host) ; needs HOST from "code/pathname"
685  ("src/code/save"              :not-host) ; uses the definition of PATHNAME
686                                           ;   from "code/pathname"
687  ("src/code/sharpm"            :not-host) ; uses stuff from "code/reader"
688  ("src/code/alloc"             :not-host)
690  ("src/code/early-step")                  ; target-thread needs *STEP-OUT*
692  ("src/code/target-thread"     :not-host)
694  ;; defines SB!DI:DO-DEBUG-FUN-BLOCKS, needed by target-disassem.lisp
695  ("src/code/gc"     :not-host)
696  ("src/code/purify" :not-host)
697  ("src/code/debug-int" :not-host)
699  ;; target-only assemblerish stuff
700  ("src/compiler/target-disassem"     :not-host)
701  ("src/compiler/target/target-insts" :not-host)
703  ("src/code/debug" :not-host)
705  ("src/code/octets" :not-host)
706  ("src/code/external-formats/enc-basic" :not-host)
707  ("src/code/external-formats/enc-ebcdic" :not-host)
708  #!+sb-unicode
709  ("src/code/external-formats/enc-cyr" :not-host)
710  #!+sb-unicode
711  ("src/code/external-formats/enc-dos" :not-host)
712  #!+sb-unicode
713  ("src/code/external-formats/enc-iso" :not-host)
714  #!+sb-unicode
715  ("src/code/external-formats/enc-win" :not-host)
716  #!+sb-unicode
717  ("src/code/external-formats/enc-mac" :not-host)
718  #!+sb-unicode
719  ("src/code/external-formats/mb-util" :not-host)
720  #!+sb-unicode
721  ("src/code/external-formats/enc-cn-tbl" :not-host)
722  #!+sb-unicode
723  ("src/code/external-formats/enc-cn" :not-host)
724  #!+sb-unicode
725  ("src/code/external-formats/enc-jpn-tbl" :not-host)
726  #!+sb-unicode
727  ("src/code/external-formats/enc-jpn" :not-host)
728  #!+sb-unicode
729  ("src/code/external-formats/enc-ucs" :not-host)
730  #!+sb-unicode
731  ("src/code/external-formats/enc-utf" :not-host)
733  ;; The code here can't be compiled until CONDITION and
734  ;; DEFINE-CONDITION are defined and SB!DEBUG:*STACK-TOP-HINT* is
735  ;; declared special.
736  ("src/code/parse-defmacro-errors")
738  #!+sb-eval
739  ("src/code/full-eval"   :not-host) ; uses INFO, ARG-COUNT-ERROR
741  ("src/code/bit-bash"    :not-host) ; needs %NEGATE from assembly/target/arith
743  ("src/code/target-load" :not-host) ; needs special vars from code/load.lisp
745  #!-(or x86 x86-64)
746  ("src/compiler/target/sanctify" :not-host)
748  ;; FIXME: Does this really need stuff from compiler/dump.lisp?
749  ("src/compiler/target-dump" :not-host) ; needs stuff from compiler/dump.lisp
751  ("src/code/cold-init" :not-host) ; needs (SETF EXTERN-ALIEN) macroexpansion
753  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
754  ;; target macros and DECLAIMs installed at build-the-cross-compiler time
756  ;; Declare all target special variables defined by ANSI now, so that
757  ;; we don't have to worry about any of them being bound incorrectly
758  ;; when the compiler processes code which appears before the appropriate
759  ;; DEFVAR or DEFPARAMETER.
760  ("src/code/cl-specials")
762  ;; FIXME: here? earlier?  can probably be as late as possible.  Also
763  ;; maybe call it FORCE-DELAYED-PROCLAIMS?
764  ("src/compiler/late-proclaim")
766  ;; fundamental target macros (e.g. CL:DO and CL:DEFUN) and support
767  ;; for them
768  ("src/code/defboot")
769  ("src/code/destructuring-bind")
770  ("src/code/setf")
771  ("src/code/macros")
772  ("src/code/loop")
773  ("src/code/cas")
774  ("src/code/late-cas")
776  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
777  ;; other target-code-building stuff which can't be processed until
778  ;; machinery like SB!XC:DEFMACRO exists
780  ("src/code/late-format") ; needs SB!XC:DEFMACRO
781  ("src/code/sxhash") ; needs SB!XC:DEFINE-MODIFY-MACRO
782  ("src/code/signal")
783  ("src/code/late-defbangmethod")
785  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
786  ;; PCL-related stuff, which shouldn't need to be done earlier than
787  ;; anything else in cold build because after all it used to be
788  ;; postponed 'til warm init with no problems.
790  ("src/pcl/walk"))