72ef25974ab82eb5b1b35a339610fb0cf9f4afe1
[sbcl.git] / src / compiler / generic / genesis.lisp
1 ;;;; "cold" core image builder: This is how we create a target Lisp
2 ;;;; system from scratch, by converting from fasl files to an image
3 ;;;; file in the cross-compilation host, without the help of the
4 ;;;; target Lisp system.
5 ;;;;
6 ;;;; As explained by Rob MacLachlan on the CMU CL mailing list Wed, 06
7 ;;;; Jan 1999 11:05:02 -0500, this cold load generator more or less
8 ;;;; fakes up static function linking. I.e. it makes sure that all the
9 ;;;; DEFUN-defined functions in the fasl files it reads are bound to the
10 ;;;; corresponding symbols before execution starts. It doesn't do
11 ;;;; anything to initialize variable values; instead it just arranges
12 ;;;; for !COLD-INIT to be called at cold load time. !COLD-INIT is
13 ;;;; responsible for explicitly initializing anything which has to be
14 ;;;; initialized early before it transfers control to the ordinary
15 ;;;; top level forms.
16 ;;;;
17 ;;;; (In CMU CL, and in SBCL as of 0.6.9 anyway, functions not defined
18 ;;;; by DEFUN aren't set up specially by GENESIS. In particular,
19 ;;;; structure slot accessors are not set up. Slot accessors are
20 ;;;; available at cold init time because they're usually compiled
21 ;;;; inline. They're not available as out-of-line functions until the
22 ;;;; toplevel forms installing them have run.)
23
24 ;;;; This software is part of the SBCL system. See the README file for
25 ;;;; more information.
26 ;;;;
27 ;;;; This software is derived from the CMU CL system, which was
28 ;;;; written at Carnegie Mellon University and released into the
29 ;;;; public domain. The software is in the public domain and is
30 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
31 ;;;; files for more information.
32
33 (in-package "SB!FASL")
34
35 ;;; a magic number used to identify our core files
36 (defconstant core-magic
37   (logior (ash (char-code #\S) 24)
38           (ash (char-code #\B) 16)
39           (ash (char-code #\C) 8)
40           (char-code #\L)))
41
42 ;;; the current version of SBCL core files
43 ;;;
44 ;;; FIXME: This is left over from CMU CL, and not well thought out.
45 ;;; It's good to make sure that the runtime doesn't try to run core
46 ;;; files from the wrong version, but a single number is not the ideal
47 ;;; way to do this in high level data like this (as opposed to e.g. in
48 ;;; IP packets), and in fact the CMU CL version number never ended up
49 ;;; being incremented past 0. A better approach might be to use a
50 ;;; string which is set from CVS data.
51 ;;;
52 ;;; 0: inherited from CMU CL
53 ;;; 1: rearranged static symbols for sbcl-0.6.8
54 ;;; 2: eliminated non-ANSI %DEFCONSTANT/%%DEFCONSTANT support,
55 ;;;    deleted a slot from DEBUG-SOURCE structure
56 (defconstant sbcl-core-version-integer 2)
57
58 (defun round-up (number size)
59   #!+sb-doc
60   "Round NUMBER up to be an integral multiple of SIZE."
61   (* size (ceiling number size)))
62 \f
63 ;;;; representation of spaces in the core
64
65 ;;; If there is more than one dynamic space in memory (i.e., if a
66 ;;; copying GC is in use), then only the active dynamic space gets
67 ;;; dumped to core.
68 (defvar *dynamic*)
69 (defconstant dynamic-space-id 1)
70
71 (defvar *static*)
72 (defconstant static-space-id 2)
73
74 (defvar *read-only*)
75 (defconstant read-only-space-id 3)
76
77 (defconstant descriptor-low-bits 16
78   "the number of bits in the low half of the descriptor")
79 (defconstant target-space-alignment (ash 1 descriptor-low-bits)
80   "the alignment requirement for spaces in the target.
81   Must be at least (ASH 1 DESCRIPTOR-LOW-BITS)")
82
83 ;;; a GENESIS-time representation of a memory space (e.g. read-only space,
84 ;;; dynamic space, or static space)
85 (defstruct (gspace (:constructor %make-gspace)
86                    (:copier nil))
87   ;; name and identifier for this GSPACE
88   (name (missing-arg) :type symbol :read-only t)
89   (identifier (missing-arg) :type fixnum :read-only t)
90   ;; the word address where the data will be loaded
91   (word-address (missing-arg) :type unsigned-byte :read-only t)
92   ;; the data themselves. (Note that in CMU CL this was a pair
93   ;; of fields SAP and WORDS-ALLOCATED, but that wasn't very portable.)
94   (bytes (make-array target-space-alignment :element-type '(unsigned-byte 8))
95          :type (simple-array (unsigned-byte 8) 1))
96   ;; the index of the next unwritten word (i.e. chunk of
97   ;; SB!VM:N-WORD-BYTES bytes) in BYTES, or equivalently the number of
98   ;; words actually written in BYTES. In order to convert to an actual
99   ;; index into BYTES, thus must be multiplied by SB!VM:N-WORD-BYTES.
100   (free-word-index 0))
101
102 (defun gspace-byte-address (gspace)
103   (ash (gspace-word-address gspace) sb!vm:word-shift))
104
105 (def!method print-object ((gspace gspace) stream)
106   (print-unreadable-object (gspace stream :type t)
107     (format stream "~S" (gspace-name gspace))))
108
109 (defun make-gspace (name identifier byte-address)
110   (unless (zerop (rem byte-address target-space-alignment))
111     (error "The byte address #X~X is not aligned on a #X~X-byte boundary."
112            byte-address
113            target-space-alignment))
114   (%make-gspace :name name
115                 :identifier identifier
116                 :word-address (ash byte-address (- sb!vm:word-shift))))
117
118 ;;; KLUDGE: Doing it this way seems to partly replicate the
119 ;;; functionality of Common Lisp adjustable arrays. Is there any way
120 ;;; to do this stuff in one line of code by using standard Common Lisp
121 ;;; stuff? -- WHN 19990816
122 (defun expand-gspace-bytes (gspace)
123   (let* ((old-bytes (gspace-bytes gspace))
124          (old-length (length old-bytes))
125          (new-length (* 2 old-length))
126          (new-bytes (make-array new-length :element-type '(unsigned-byte 8))))
127     (replace new-bytes old-bytes :end1 old-length)
128     (setf (gspace-bytes gspace)
129           new-bytes))
130   (values))
131 \f
132 ;;;; representation of descriptors
133
134 (defstruct (descriptor
135             (:constructor make-descriptor
136                           (high low &optional gspace word-offset))
137             (:copier nil))
138   ;; the GSPACE that this descriptor is allocated in, or NIL if not set yet.
139   (gspace nil :type (or gspace null))
140   ;; the offset in words from the start of GSPACE, or NIL if not set yet
141   (word-offset nil :type (or (unsigned-byte #.sb!vm:n-word-bits) null))
142   ;; the high and low halves of the descriptor
143   ;;
144   ;; KLUDGE: Judging from the comments in genesis.lisp of the CMU CL
145   ;; old-rt compiler, this split dates back from a very early version
146   ;; of genesis where 32-bit integers were represented as conses of
147   ;; two 16-bit integers. In any system with nice (UNSIGNED-BYTE 32)
148   ;; structure slots, like CMU CL >= 17 or any version of SBCL, there
149   ;; seems to be no reason to persist in this. -- WHN 19990917
150   high
151   low)
152 (def!method print-object ((des descriptor) stream)
153   (let ((lowtag (descriptor-lowtag des)))
154     (print-unreadable-object (des stream :type t)
155       (cond ((or (= lowtag sb!vm:even-fixnum-lowtag)
156                  (= lowtag sb!vm:odd-fixnum-lowtag))
157              (let ((unsigned (logior (ash (descriptor-high des)
158                                           (1+ (- descriptor-low-bits
159                                                  sb!vm:n-lowtag-bits)))
160                                      (ash (descriptor-low des)
161                                           (- 1 sb!vm:n-lowtag-bits)))))
162                (format stream
163                        "for fixnum: ~W"
164                        (if (> unsigned #x1FFFFFFF)
165                            (- unsigned #x40000000)
166                            unsigned))))
167             ((or (= lowtag sb!vm:other-immediate-0-lowtag)
168                  (= lowtag sb!vm:other-immediate-1-lowtag))
169              (format stream
170                      "for other immediate: #X~X, type #b~8,'0B"
171                      (ash (descriptor-bits des) (- sb!vm:n-widetag-bits))
172                      (logand (descriptor-low des) sb!vm:widetag-mask)))
173             (t
174              (format stream
175                      "for pointer: #X~X, lowtag #b~3,'0B, ~A"
176                      (logior (ash (descriptor-high des) descriptor-low-bits)
177                              (logandc2 (descriptor-low des) sb!vm:lowtag-mask))
178                      lowtag
179                      (let ((gspace (descriptor-gspace des)))
180                        (if gspace
181                            (gspace-name gspace)
182                            "unknown"))))))))
183
184 ;;; Return a descriptor for a block of LENGTH bytes out of GSPACE. The
185 ;;; free word index is boosted as necessary, and if additional memory
186 ;;; is needed, we grow the GSPACE. The descriptor returned is a
187 ;;; pointer of type LOWTAG.
188 (defun allocate-cold-descriptor (gspace length lowtag)
189   (let* ((bytes (round-up length (ash 1 sb!vm:n-lowtag-bits)))
190          (old-free-word-index (gspace-free-word-index gspace))
191          (new-free-word-index (+ old-free-word-index
192                                  (ash bytes (- sb!vm:word-shift)))))
193     ;; Grow GSPACE as necessary until it's big enough to handle
194     ;; NEW-FREE-WORD-INDEX.
195     (do ()
196         ((>= (length (gspace-bytes gspace))
197              (* new-free-word-index sb!vm:n-word-bytes)))
198       (expand-gspace-bytes gspace))
199     ;; Now that GSPACE is big enough, we can meaningfully grab a chunk of it.
200     (setf (gspace-free-word-index gspace) new-free-word-index)
201     (let ((ptr (+ (gspace-word-address gspace) old-free-word-index)))
202       (make-descriptor (ash ptr (- sb!vm:word-shift descriptor-low-bits))
203                        (logior (ash (logand ptr
204                                             (1- (ash 1
205                                                      (- descriptor-low-bits
206                                                         sb!vm:word-shift))))
207                                     sb!vm:word-shift)
208                                lowtag)
209                        gspace
210                        old-free-word-index))))
211
212 (defun descriptor-lowtag (des)
213   #!+sb-doc
214   "the lowtag bits for DES"
215   (logand (descriptor-low des) sb!vm:lowtag-mask))
216
217 (defun descriptor-bits (des)
218   (logior (ash (descriptor-high des) descriptor-low-bits)
219           (descriptor-low des)))
220
221 (defun descriptor-fixnum (des)
222   (let ((bits (descriptor-bits des)))
223     (if (logbitp (1- sb!vm:n-word-bits) bits)
224       ;; KLUDGE: The (- SB!VM:N-WORD-BITS 2) term here looks right to
225       ;; me, and it works, but in CMU CL it was (1- SB!VM:N-WORD-BITS),
226       ;; and although that doesn't make sense for me, or work for me,
227       ;; it's hard to see how it could have been wrong, since CMU CL
228       ;; genesis worked. It would be nice to understand how this came
229       ;; to be.. -- WHN 19990901
230       (logior (ash bits -2) (ash -1 (- sb!vm:n-word-bits 2)))
231       (ash bits -2))))
232
233 ;;; common idioms
234 (defun descriptor-bytes (des)
235   (gspace-bytes (descriptor-intuit-gspace des)))
236 (defun descriptor-byte-offset (des)
237   (ash (descriptor-word-offset des) sb!vm:word-shift))
238
239 ;;; If DESCRIPTOR-GSPACE is already set, just return that. Otherwise,
240 ;;; figure out a GSPACE which corresponds to DES, set it into
241 ;;; (DESCRIPTOR-GSPACE DES), set a consistent value into
242 ;;; (DESCRIPTOR-WORD-OFFSET DES), and return the GSPACE.
243 (declaim (ftype (function (descriptor) gspace) descriptor-intuit-gspace))
244 (defun descriptor-intuit-gspace (des)
245   (if (descriptor-gspace des)
246     (descriptor-gspace des)
247     ;; KLUDGE: It's not completely clear to me what's going on here;
248     ;; this is a literal translation from of some rather mysterious
249     ;; code from CMU CL's DESCRIPTOR-SAP function. Some explanation
250     ;; would be nice. -- WHN 19990817
251     (let ((lowtag (descriptor-lowtag des))
252           (high (descriptor-high des))
253           (low (descriptor-low des)))
254       (if (or (eql lowtag sb!vm:fun-pointer-lowtag)
255               (eql lowtag sb!vm:instance-pointer-lowtag)
256               (eql lowtag sb!vm:list-pointer-lowtag)
257               (eql lowtag sb!vm:other-pointer-lowtag))
258         (dolist (gspace (list *dynamic* *static* *read-only*)
259                         (error "couldn't find a GSPACE for ~S" des))
260           ;; This code relies on the fact that GSPACEs are aligned
261           ;; such that the descriptor-low-bits low bits are zero.
262           (when (and (>= high (ash (gspace-word-address gspace)
263                                    (- sb!vm:word-shift descriptor-low-bits)))
264                      (<= high (ash (+ (gspace-word-address gspace)
265                                       (gspace-free-word-index gspace))
266                                    (- sb!vm:word-shift descriptor-low-bits))))
267             (setf (descriptor-gspace des) gspace)
268             (setf (descriptor-word-offset des)
269                   (+ (ash (- high (ash (gspace-word-address gspace)
270                                        (- sb!vm:word-shift
271                                           descriptor-low-bits)))
272                           (- descriptor-low-bits sb!vm:word-shift))
273                      (ash (logandc2 low sb!vm:lowtag-mask)
274                           (- sb!vm:word-shift))))
275             (return gspace)))
276         (error "don't even know how to look for a GSPACE for ~S" des)))))
277
278 (defun make-random-descriptor (value)
279   (make-descriptor (logand (ash value (- descriptor-low-bits))
280                            (1- (ash 1
281                                     (- sb!vm:n-word-bits
282                                        descriptor-low-bits))))
283                    (logand value (1- (ash 1 descriptor-low-bits)))))
284
285 (defun make-fixnum-descriptor (num)
286   (when (>= (integer-length num)
287             (1+ (- sb!vm:n-word-bits sb!vm:n-lowtag-bits)))
288     (error "~W is too big for a fixnum." num))
289   (make-random-descriptor (ash num (1- sb!vm:n-lowtag-bits))))
290
291 (defun make-other-immediate-descriptor (data type)
292   (make-descriptor (ash data (- sb!vm:n-widetag-bits descriptor-low-bits))
293                    (logior (logand (ash data (- descriptor-low-bits
294                                                 sb!vm:n-widetag-bits))
295                                    (1- (ash 1 descriptor-low-bits)))
296                            type)))
297
298 (defun make-character-descriptor (data)
299   (make-other-immediate-descriptor data sb!vm:base-char-widetag))
300
301 (defun descriptor-beyond (des offset type)
302   (let* ((low (logior (+ (logandc2 (descriptor-low des) sb!vm:lowtag-mask)
303                          offset)
304                       type))
305          (high (+ (descriptor-high des)
306                   (ash low (- descriptor-low-bits)))))
307     (make-descriptor high (logand low (1- (ash 1 descriptor-low-bits))))))
308 \f
309 ;;;; miscellaneous variables and other noise
310
311 ;;; a numeric value to be returned for undefined foreign symbols, or NIL if
312 ;;; undefined foreign symbols are to be treated as an error.
313 ;;; (In the first pass of GENESIS, needed to create a header file before
314 ;;; the C runtime can be built, various foreign symbols will necessarily
315 ;;; be undefined, but we don't need actual values for them anyway, and
316 ;;; we can just use 0 or some other placeholder. In the second pass of
317 ;;; GENESIS, all foreign symbols should be defined, so any undefined
318 ;;; foreign symbol is a problem.)
319 ;;;
320 ;;; KLUDGE: It would probably be cleaner to rewrite GENESIS so that it
321 ;;; never tries to look up foreign symbols in the first place unless
322 ;;; it's actually creating a core file (as in the second pass) instead
323 ;;; of using this hack to allow it to go through the motions without
324 ;;; causing an error. -- WHN 20000825
325 (defvar *foreign-symbol-placeholder-value*)
326
327 ;;; a handle on the trap object
328 (defvar *unbound-marker*)
329 ;; was:  (make-other-immediate-descriptor 0 sb!vm:unbound-marker-widetag)
330
331 ;;; a handle on the NIL object
332 (defvar *nil-descriptor*)
333
334 ;;; the head of a list of TOPLEVEL-THINGs describing stuff to be done
335 ;;; when the target Lisp starts up
336 ;;;
337 ;;; Each TOPLEVEL-THING can be a function to be executed or a fixup or
338 ;;; loadtime value, represented by (CONS KEYWORD ..). The FILENAME
339 ;;; tells which fasl file each list element came from, for debugging
340 ;;; purposes.
341 (defvar *current-reversed-cold-toplevels*)
342
343 ;;; the name of the object file currently being cold loaded (as a string, not a
344 ;;; pathname), or NIL if we're not currently cold loading any object file
345 (defvar *cold-load-filename* nil)
346 (declaim (type (or string null) *cold-load-filename*))
347 \f
348 ;;;; miscellaneous stuff to read and write the core memory
349
350 ;;; FIXME: should be DEFINE-MODIFY-MACRO
351 (defmacro cold-push (thing list)
352   #!+sb-doc
353   "Push THING onto the given cold-load LIST."
354   `(setq ,list (cold-cons ,thing ,list)))
355
356 ;;; BYTE-VECTOR-REF-32 and friends.  These are like SAP-REF-n, except
357 ;;; that instead of a SAP we use a byte vector
358 (macrolet ((make-byte-vector-ref-n
359             (n)
360             (let* ((name (intern (format nil "BYTE-VECTOR-REF-~A" n)))
361                    (number-octets (/ n 8))
362                    (ash-list-le
363                     (loop for i from 0 to (1- number-octets)
364                           collect `(ash (aref byte-vector (+ byte-index ,i))
365                                         ,(* i 8))))
366                    (ash-list-be
367                     (loop for i from 0 to (1- number-octets)
368                           collect `(ash (aref byte-vector (+ byte-index
369                                                            ,(- number-octets 1 i)))
370                                         ,(* i 8))))
371                    (setf-list-le
372                     (loop for i from 0 to (1- number-octets)
373                           append
374                           `((aref byte-vector (+ byte-index ,i))
375                             (ldb (byte 8 ,(* i 8)) new-value))))
376                    (setf-list-be
377                     (loop for i from 0 to (1- number-octets)
378                           append
379                           `((aref byte-vector (+ byte-index ,i))
380                             (ldb (byte 8 ,(- n 8 (* i 8))) new-value)))))
381               `(progn
382                  (defun ,name (byte-vector byte-index)
383                    (aver (= sb!vm:n-word-bits 32))
384                    (aver (= sb!vm:n-byte-bits 8))
385                    (logior ,@(ecase sb!c:*backend-byte-order*
386                                     (:little-endian ash-list-le)
387                                     (:big-endian ash-list-be))))
388                 (defun (setf ,name) (new-value byte-vector byte-index)
389                   (aver (= sb!vm:n-word-bits 32))
390                   (aver (= sb!vm:n-byte-bits 8))
391                   (setf ,@(ecase sb!c:*backend-byte-order*
392                                  (:little-endian setf-list-le)
393                                  (:big-endian setf-list-be))))))))
394   (make-byte-vector-ref-n 8)
395   (make-byte-vector-ref-n 16)
396   (make-byte-vector-ref-n 32))
397
398 (declaim (ftype (function (descriptor sb!vm:word) descriptor) read-wordindexed))
399 (defun read-wordindexed (address index)
400   #!+sb-doc
401   "Return the value which is displaced by INDEX words from ADDRESS."
402   (let* ((gspace (descriptor-intuit-gspace address))
403          (bytes (gspace-bytes gspace))
404          (byte-index (ash (+ index (descriptor-word-offset address))
405                           sb!vm:word-shift))
406          (value (byte-vector-ref-32 bytes byte-index)))
407     (make-random-descriptor value)))
408
409 (declaim (ftype (function (descriptor) descriptor) read-memory))
410 (defun read-memory (address)
411   #!+sb-doc
412   "Return the value at ADDRESS."
413   (read-wordindexed address 0))
414
415 ;;; (Note: In CMU CL, this function expected a SAP-typed ADDRESS
416 ;;; value, instead of the SAP-INT we use here.)
417 (declaim (ftype (function (sb!vm:word descriptor) (values))
418                 note-load-time-value-reference))
419 (defun note-load-time-value-reference (address marker)
420   (cold-push (cold-cons
421               (cold-intern :load-time-value-fixup)
422               (cold-cons (sap-int-to-core address)
423                          (cold-cons
424                           (number-to-core (descriptor-word-offset marker))
425                           *nil-descriptor*)))
426              *current-reversed-cold-toplevels*)
427   (values))
428
429 (declaim (ftype (function (descriptor sb!vm:word descriptor)) write-wordindexed))
430 (defun write-wordindexed (address index value)
431   #!+sb-doc
432   "Write VALUE displaced INDEX words from ADDRESS."
433   ;; KLUDGE: There is an algorithm (used in DESCRIPTOR-INTUIT-GSPACE)
434   ;; for calculating the value of the GSPACE slot from scratch. It
435   ;; doesn't work for all values, only some of them, but mightn't it
436   ;; be reasonable to see whether it works on VALUE before we give up
437   ;; because (DESCRIPTOR-GSPACE VALUE) isn't set? (Or failing that,
438   ;; perhaps write a comment somewhere explaining why it's not a good
439   ;; idea?) -- WHN 19990817
440   (if (and (null (descriptor-gspace value))
441            (not (null (descriptor-word-offset value))))
442     (note-load-time-value-reference (+ (logandc2 (descriptor-bits address)
443                                                  sb!vm:lowtag-mask)
444                                        (ash index sb!vm:word-shift))
445                                     value)
446     (let* ((bytes (gspace-bytes (descriptor-intuit-gspace address)))
447            (byte-index (ash (+ index (descriptor-word-offset address))
448                                sb!vm:word-shift)))
449       (setf (byte-vector-ref-32 bytes byte-index)
450             (descriptor-bits value)))))
451
452 (declaim (ftype (function (descriptor descriptor)) write-memory))
453 (defun write-memory (address value)
454   #!+sb-doc
455   "Write VALUE (a DESCRIPTOR) at ADDRESS (also a DESCRIPTOR)."
456   (write-wordindexed address 0 value))
457 \f
458 ;;;; allocating images of primitive objects in the cold core
459
460 ;;; There are three kinds of blocks of memory in the type system:
461 ;;; * Boxed objects (cons cells, structures, etc): These objects have no
462 ;;;   header as all slots are descriptors.
463 ;;; * Unboxed objects (bignums): There is a single header word that contains
464 ;;;   the length.
465 ;;; * Vector objects: There is a header word with the type, then a word for
466 ;;;   the length, then the data.
467 (defun allocate-boxed-object (gspace length lowtag)
468   #!+sb-doc
469   "Allocate LENGTH words in GSPACE and return a new descriptor of type LOWTAG
470   pointing to them."
471   (allocate-cold-descriptor gspace (ash length sb!vm:word-shift) lowtag))
472 (defun allocate-unboxed-object (gspace element-bits length type)
473   #!+sb-doc
474   "Allocate LENGTH units of ELEMENT-BITS bits plus a header word in GSPACE and
475   return an ``other-pointer'' descriptor to them. Initialize the header word
476   with the resultant length and TYPE."
477   (let* ((bytes (/ (* element-bits length) sb!vm:n-byte-bits))
478          (des (allocate-cold-descriptor gspace
479                                         (+ bytes sb!vm:n-word-bytes)
480                                         sb!vm:other-pointer-lowtag)))
481     (write-memory des
482                   (make-other-immediate-descriptor (ash bytes
483                                                         (- sb!vm:word-shift))
484                                                    type))
485     des))
486 (defun allocate-vector-object (gspace element-bits length type)
487   #!+sb-doc
488   "Allocate LENGTH units of ELEMENT-BITS size plus a header plus a length slot in
489   GSPACE and return an ``other-pointer'' descriptor to them. Initialize the
490   header word with TYPE and the length slot with LENGTH."
491   ;; FIXME: Here and in ALLOCATE-UNBOXED-OBJECT, BYTES is calculated using
492   ;; #'/ instead of #'CEILING, which seems wrong.
493   (let* ((bytes (/ (* element-bits length) sb!vm:n-byte-bits))
494          (des (allocate-cold-descriptor gspace
495                                         (+ bytes (* 2 sb!vm:n-word-bytes))
496                                         sb!vm:other-pointer-lowtag)))
497     (write-memory des (make-other-immediate-descriptor 0 type))
498     (write-wordindexed des
499                        sb!vm:vector-length-slot
500                        (make-fixnum-descriptor length))
501     des))
502 \f
503 ;;;; copying simple objects into the cold core
504
505 (defun string-to-core (string &optional (gspace *dynamic*))
506   #!+sb-doc
507   "Copy string into the cold core and return a descriptor to it."
508   ;; (Remember that the system convention for storage of strings leaves an
509   ;; extra null byte at the end to aid in call-out to C.)
510   (let* ((length (length string))
511          (des (allocate-vector-object gspace
512                                       sb!vm:n-byte-bits
513                                       (1+ length)
514                                       sb!vm:simple-string-widetag))
515          (bytes (gspace-bytes gspace))
516          (offset (+ (* sb!vm:vector-data-offset sb!vm:n-word-bytes)
517                     (descriptor-byte-offset des))))
518     (write-wordindexed des
519                        sb!vm:vector-length-slot
520                        (make-fixnum-descriptor length))
521     (dotimes (i length)
522       (setf (aref bytes (+ offset i))
523             ;; KLUDGE: There's no guarantee that the character
524             ;; encoding here will be the same as the character
525             ;; encoding on the target machine, so using CHAR-CODE as
526             ;; we do, or a bitwise copy as CMU CL code did, is sleazy.
527             ;; (To make this more portable, perhaps we could use
528             ;; indices into the sequence which is used to test whether
529             ;; a character is a STANDARD-CHAR?) -- WHN 19990817
530             (char-code (aref string i))))
531     (setf (aref bytes (+ offset length))
532           0) ; null string-termination character for C
533     des))
534
535 (defun bignum-to-core (n)
536   #!+sb-doc
537   "Copy a bignum to the cold core."
538   (let* ((words (ceiling (1+ (integer-length n)) sb!vm:n-word-bits))
539          (handle (allocate-unboxed-object *dynamic*
540                                           sb!vm:n-word-bits
541                                           words
542                                           sb!vm:bignum-widetag)))
543     (declare (fixnum words))
544     (do ((index 1 (1+ index))
545          (remainder n (ash remainder (- sb!vm:n-word-bits))))
546         ((> index words)
547          (unless (zerop (integer-length remainder))
548            ;; FIXME: Shouldn't this be a fatal error?
549            (warn "~W words of ~W were written, but ~W bits were left over."
550                  words n remainder)))
551       (let ((word (ldb (byte sb!vm:n-word-bits 0) remainder)))
552         (write-wordindexed handle index
553                            (make-descriptor (ash word (- descriptor-low-bits))
554                                             (ldb (byte descriptor-low-bits 0)
555                                                  word)))))
556     handle))
557
558 (defun number-pair-to-core (first second type)
559   #!+sb-doc
560   "Makes a number pair of TYPE (ratio or complex) and fills it in."
561   (let ((des (allocate-unboxed-object *dynamic* sb!vm:n-word-bits 2 type)))
562     (write-wordindexed des 1 first)
563     (write-wordindexed des 2 second)
564     des))
565
566 (defun float-to-core (x)
567   (etypecase x
568     (single-float
569      (let ((des (allocate-unboxed-object *dynamic*
570                                          sb!vm:n-word-bits
571                                          (1- sb!vm:single-float-size)
572                                          sb!vm:single-float-widetag)))
573        (write-wordindexed des
574                           sb!vm:single-float-value-slot
575                           (make-random-descriptor (single-float-bits x)))
576        des))
577     (double-float
578      (let ((des (allocate-unboxed-object *dynamic*
579                                          sb!vm:n-word-bits
580                                          (1- sb!vm:double-float-size)
581                                          sb!vm:double-float-widetag))
582            (high-bits (make-random-descriptor (double-float-high-bits x)))
583            (low-bits (make-random-descriptor (double-float-low-bits x))))
584        (ecase sb!c:*backend-byte-order*
585          (:little-endian
586           (write-wordindexed des sb!vm:double-float-value-slot low-bits)
587           (write-wordindexed des (1+ sb!vm:double-float-value-slot) high-bits))
588          (:big-endian
589           (write-wordindexed des sb!vm:double-float-value-slot high-bits)
590           (write-wordindexed des (1+ sb!vm:double-float-value-slot) low-bits)))
591        des))
592     #!+(and long-float x86)
593     (long-float
594      (let ((des (allocate-unboxed-object *dynamic*
595                                          sb!vm:n-word-bits
596                                          (1- sb!vm:long-float-size)
597                                          sb!vm:long-float-widetag))
598            (exp-bits (make-random-descriptor (long-float-exp-bits x)))
599            (high-bits (make-random-descriptor (long-float-high-bits x)))
600            (low-bits (make-random-descriptor (long-float-low-bits x))))
601        (ecase sb!c:*backend-byte-order*
602          (:little-endian
603           (write-wordindexed des sb!vm:long-float-value-slot low-bits)
604           (write-wordindexed des (1+ sb!vm:long-float-value-slot) high-bits)
605           (write-wordindexed des (+ 2 sb!vm:long-float-value-slot) exp-bits))
606          (:big-endian
607           (error "LONG-FLOAT is not supported for big-endian byte order.")))
608        des))))
609
610 (defun complex-single-float-to-core (num)
611   (declare (type (complex single-float) num))
612   (let ((des (allocate-unboxed-object *dynamic* sb!vm:n-word-bits
613                                       (1- sb!vm:complex-single-float-size)
614                                       sb!vm:complex-single-float-widetag)))
615     (write-wordindexed des sb!vm:complex-single-float-real-slot
616                    (make-random-descriptor (single-float-bits (realpart num))))
617     (write-wordindexed des sb!vm:complex-single-float-imag-slot
618                    (make-random-descriptor (single-float-bits (imagpart num))))
619     des))
620
621 (defun complex-double-float-to-core (num)
622   (declare (type (complex double-float) num))
623   (let ((des (allocate-unboxed-object *dynamic* sb!vm:n-word-bits
624                                       (1- sb!vm:complex-double-float-size)
625                                       sb!vm:complex-double-float-widetag)))
626     (let* ((real (realpart num))
627            (high-bits (make-random-descriptor (double-float-high-bits real)))
628            (low-bits (make-random-descriptor (double-float-low-bits real))))
629       (ecase sb!c:*backend-byte-order*
630         (:little-endian
631          (write-wordindexed des sb!vm:complex-double-float-real-slot low-bits)
632          (write-wordindexed des (1+ sb!vm:complex-double-float-real-slot) high-bits))
633         (:big-endian
634          (write-wordindexed des sb!vm:complex-double-float-real-slot high-bits)
635          (write-wordindexed des (1+ sb!vm:complex-double-float-real-slot) low-bits))))
636     (let* ((imag (imagpart num))
637            (high-bits (make-random-descriptor (double-float-high-bits imag)))
638            (low-bits (make-random-descriptor (double-float-low-bits imag))))
639       (ecase sb!c:*backend-byte-order*
640         (:little-endian
641          (write-wordindexed des sb!vm:complex-double-float-imag-slot low-bits)
642          (write-wordindexed des (1+ sb!vm:complex-double-float-imag-slot) high-bits))
643         (:big-endian
644          (write-wordindexed des sb!vm:complex-double-float-imag-slot high-bits)
645          (write-wordindexed des (1+ sb!vm:complex-double-float-imag-slot) low-bits))))
646     des))
647
648 ;;; Copy the given number to the core.
649 (defun number-to-core (number)
650   (typecase number
651     (integer (if (< (integer-length number) 30)
652                  (make-fixnum-descriptor number)
653                  (bignum-to-core number)))
654     (ratio (number-pair-to-core (number-to-core (numerator number))
655                                 (number-to-core (denominator number))
656                                 sb!vm:ratio-widetag))
657     ((complex single-float) (complex-single-float-to-core number))
658     ((complex double-float) (complex-double-float-to-core number))
659     #!+long-float
660     ((complex long-float)
661      (error "~S isn't a cold-loadable number at all!" number))
662     (complex (number-pair-to-core (number-to-core (realpart number))
663                                   (number-to-core (imagpart number))
664                                   sb!vm:complex-widetag))
665     (float (float-to-core number))
666     (t (error "~S isn't a cold-loadable number at all!" number))))
667
668 (declaim (ftype (function (sb!vm:word) descriptor) sap-int-to-core))
669 (defun sap-int-to-core (sap-int)
670   (let ((des (allocate-unboxed-object *dynamic*
671                                       sb!vm:n-word-bits
672                                       (1- sb!vm:sap-size)
673                                       sb!vm:sap-widetag)))
674     (write-wordindexed des
675                        sb!vm:sap-pointer-slot
676                        (make-random-descriptor sap-int))
677     des))
678
679 ;;; Allocate a cons cell in GSPACE and fill it in with CAR and CDR.
680 (defun cold-cons (car cdr &optional (gspace *dynamic*))
681   (let ((dest (allocate-boxed-object gspace 2 sb!vm:list-pointer-lowtag)))
682     (write-memory dest car)
683     (write-wordindexed dest 1 cdr)
684     dest))
685
686 ;;; Make a simple-vector on the target that holds the specified
687 ;;; OBJECTS, and return its descriptor.
688 (defun vector-in-core (&rest objects)
689   (let* ((size (length objects))
690          (result (allocate-vector-object *dynamic* sb!vm:n-word-bits size
691                                          sb!vm:simple-vector-widetag)))
692     (dotimes (index size)
693       (write-wordindexed result (+ index sb!vm:vector-data-offset)
694                          (pop objects)))
695     result))
696 \f
697 ;;;; symbol magic
698
699 ;;; FIXME: This should be a &KEY argument of ALLOCATE-SYMBOL.
700 (defvar *cold-symbol-allocation-gspace* nil)
701
702 ;;; Allocate (and initialize) a symbol.
703 (defun allocate-symbol (name)
704   (declare (simple-string name))
705   (let ((symbol (allocate-unboxed-object (or *cold-symbol-allocation-gspace*
706                                              *dynamic*)
707                                          sb!vm:n-word-bits
708                                          (1- sb!vm:symbol-size)
709                                          sb!vm:symbol-header-widetag)))
710     (write-wordindexed symbol sb!vm:symbol-value-slot *unbound-marker*)
711     #!+x86
712     (write-wordindexed symbol
713                        sb!vm:symbol-hash-slot
714                        (make-fixnum-descriptor
715                         (1+ (random sb!xc:most-positive-fixnum))))
716     (write-wordindexed symbol sb!vm:symbol-plist-slot *nil-descriptor*)
717     (write-wordindexed symbol sb!vm:symbol-name-slot
718                        (string-to-core name *dynamic*))
719     (write-wordindexed symbol sb!vm:symbol-package-slot *nil-descriptor*)
720     symbol))
721
722 ;;; Set the cold symbol value of SYMBOL-OR-SYMBOL-DES, which can be either a
723 ;;; descriptor of a cold symbol or (in an abbreviation for the
724 ;;; most common usage pattern) an ordinary symbol, which will be
725 ;;; automatically cold-interned.
726 (declaim (ftype (function ((or descriptor symbol) descriptor)) cold-set))
727 (defun cold-set (symbol-or-symbol-des value)
728   (let ((symbol-des (etypecase symbol-or-symbol-des
729                       (descriptor symbol-or-symbol-des)
730                       (symbol (cold-intern symbol-or-symbol-des)))))
731     (write-wordindexed symbol-des sb!vm:symbol-value-slot value)))
732 \f
733 ;;;; layouts and type system pre-initialization
734
735 ;;; Since we want to be able to dump structure constants and
736 ;;; predicates with reference layouts, we need to create layouts at
737 ;;; cold-load time. We use the name to intern layouts by, and dump a
738 ;;; list of all cold layouts in *!INITIAL-LAYOUTS* so that type system
739 ;;; initialization can find them. The only thing that's tricky [sic --
740 ;;; WHN 19990816] is initializing layout's layout, which must point to
741 ;;; itself.
742
743 ;;; a map from class names to lists of
744 ;;;    `(,descriptor ,name ,length ,inherits ,depth)
745 ;;; KLUDGE: It would be more understandable and maintainable to use
746 ;;; DEFSTRUCT (:TYPE LIST) here. -- WHN 19990823
747 (defvar *cold-layouts* (make-hash-table :test 'equal))
748
749 ;;; a map from DESCRIPTOR-BITS of cold layouts to the name, for inverting
750 ;;; mapping
751 (defvar *cold-layout-names* (make-hash-table :test 'eql))
752
753 ;;; FIXME: *COLD-LAYOUTS* and *COLD-LAYOUT-NAMES* should be
754 ;;; initialized by binding in GENESIS.
755
756 ;;; the descriptor for layout's layout (needed when making layouts)
757 (defvar *layout-layout*)
758
759 ;;; FIXME: This information should probably be pulled out of the
760 ;;; cross-compiler's tables at genesis time instead of inserted by
761 ;;; hand here as a bare numeric constant.
762 (defconstant target-layout-length 16)
763
764 ;;; Return a list of names created from the cold layout INHERITS data
765 ;;; in X.
766 (defun listify-cold-inherits (x)
767   (let ((len (descriptor-fixnum (read-wordindexed x
768                                                   sb!vm:vector-length-slot))))
769     (collect ((res))
770       (dotimes (index len)
771         (let* ((des (read-wordindexed x (+ sb!vm:vector-data-offset index)))
772                (found (gethash (descriptor-bits des) *cold-layout-names*)))
773           (if found
774             (res found)
775             (error "unknown descriptor at index ~S (bits = ~8,'0X)"
776                    index
777                    (descriptor-bits des)))))
778       (res))))
779
780 (declaim (ftype (function (symbol descriptor descriptor descriptor) descriptor)
781                 make-cold-layout))
782 (defun make-cold-layout (name length inherits depthoid)
783   (let ((result (allocate-boxed-object *dynamic*
784                                        ;; KLUDGE: Why 1+? -- WHN 19990901
785                                        (1+ target-layout-length)
786                                        sb!vm:instance-pointer-lowtag)))
787     (write-memory result
788                   (make-other-immediate-descriptor
789                    target-layout-length sb!vm:instance-header-widetag))
790
791     ;; KLUDGE: The offsets into LAYOUT below should probably be pulled out
792     ;; of the cross-compiler's tables at genesis time instead of inserted
793     ;; by hand as bare numeric constants. -- WHN ca. 19990901
794
795     ;; Set slot 0 = the layout of the layout.
796     (write-wordindexed result sb!vm:instance-slots-offset *layout-layout*)
797
798     ;; Set the immediately following slots = CLOS hash values.
799     ;;
800     ;; Note: CMU CL didn't set these in genesis, but instead arranged
801     ;; for them to be set at cold init time. That resulted in slightly
802     ;; kludgy-looking code, but there were at least two things to be
803     ;; said for it:
804     ;;   1. It put the hash values under the control of the target Lisp's
805     ;;      RANDOM function, so that CLOS behavior would be nearly
806     ;;      deterministic (instead of depending on the implementation of
807     ;;      RANDOM in the cross-compilation host, and the state of its
808     ;;      RNG when genesis begins).
809     ;;   2. It automatically ensured that all hash values in the target Lisp
810     ;;      were part of the same sequence, so that we didn't have to worry
811     ;;      about the possibility of the first hash value set in genesis
812     ;;      being precisely equal to the some hash value set in cold init time
813     ;;      (because the target Lisp RNG has advanced to precisely the same
814     ;;      state that the host Lisp RNG was in earlier).
815     ;; Point 1 should not be an issue in practice because of the way we do our
816     ;; build procedure in two steps, so that the SBCL that we end up with has
817     ;; been created by another SBCL (whose RNG is under our control).
818     ;; Point 2 is more of an issue. If ANSI had provided a way to feed
819     ;; entropy into an RNG, we would have no problem: we'd just feed
820     ;; some specialized genesis-time-only pattern into the RNG state
821     ;; before using it. However, they didn't, so we have a slight
822     ;; problem. We address it by generating the hash values using a
823     ;; different algorithm than we use in ordinary operation.
824     (dotimes (i sb!kernel:layout-clos-hash-length)
825       (let (;; The expression here is pretty arbitrary, we just want
826             ;; to make sure that it's not something which is (1)
827             ;; evenly distributed and (2) not foreordained to arise in
828             ;; the target Lisp's (RANDOM-LAYOUT-CLOS-HASH) sequence
829             ;; and show up as the CLOS-HASH value of some other
830             ;; LAYOUT.
831             ;;
832             ;; FIXME: This expression here can generate a zero value,
833             ;; and the CMU CL code goes out of its way to generate
834             ;; strictly positive values (even though the field is
835             ;; declared as an INDEX). Check that it's really OK to
836             ;; have zero values in the CLOS-HASH slots.
837             (hash-value (mod (logxor (logand   (random-layout-clos-hash) 15253)
838                                      (logandc2 (random-layout-clos-hash) 15253)
839                                      1)
840                              ;; (The MOD here is defensive programming
841                              ;; to make sure we never write an
842                              ;; out-of-range value even if some joker
843                              ;; sets LAYOUT-CLOS-HASH-MAX to other
844                              ;; than 2^n-1 at some time in the
845                              ;; future.)
846                              (1+ sb!kernel:layout-clos-hash-max))))
847         (write-wordindexed result
848                            (+ i sb!vm:instance-slots-offset 1)
849                            (make-fixnum-descriptor hash-value))))
850
851     ;; Set other slot values.
852     (let ((base (+ sb!vm:instance-slots-offset
853                    sb!kernel:layout-clos-hash-length
854                    1)))
855       ;; (Offset 0 is CLASS, "the class this is a layout for", which
856       ;; is uninitialized at this point.)
857       (write-wordindexed result (+ base 1) *nil-descriptor*) ; marked invalid
858       (write-wordindexed result (+ base 2) inherits)
859       (write-wordindexed result (+ base 3) depthoid)
860       (write-wordindexed result (+ base 4) length)
861       (write-wordindexed result (+ base 5) *nil-descriptor*) ; info
862       (write-wordindexed result (+ base 6) *nil-descriptor*)) ; pure
863
864     (setf (gethash name *cold-layouts*)
865           (list result
866                 name
867                 (descriptor-fixnum length)
868                 (listify-cold-inherits inherits)
869                 (descriptor-fixnum depthoid)))
870     (setf (gethash (descriptor-bits result) *cold-layout-names*) name)
871
872     result))
873
874 (defun initialize-layouts ()
875
876   (clrhash *cold-layouts*)
877
878   ;; We initially create the layout of LAYOUT itself with NIL as the LAYOUT and
879   ;; #() as INHERITS,
880   (setq *layout-layout* *nil-descriptor*)
881   (setq *layout-layout*
882         (make-cold-layout 'layout
883                           (number-to-core target-layout-length)
884                           (vector-in-core)
885                           ;; FIXME: hard-coded LAYOUT-DEPTHOID of LAYOUT..
886                           (number-to-core 4)))
887   (write-wordindexed *layout-layout*
888                      sb!vm:instance-slots-offset
889                      *layout-layout*)
890
891   ;; Then we create the layouts that we'll need to make a correct INHERITS
892   ;; vector for the layout of LAYOUT itself..
893   ;;
894   ;; FIXME: The various LENGTH and DEPTHOID numbers should be taken from
895   ;; the compiler's tables, not set by hand.
896   (let* ((t-layout
897           (make-cold-layout 't
898                             (number-to-core 0)
899                             (vector-in-core)
900                             (number-to-core 0)))
901          (i-layout
902           (make-cold-layout 'instance
903                             (number-to-core 0)
904                             (vector-in-core t-layout)
905                             (number-to-core 1)))
906          (so-layout
907           (make-cold-layout 'structure-object
908                             (number-to-core 1)
909                             (vector-in-core t-layout i-layout)
910                             (number-to-core 2)))
911          (bso-layout
912           (make-cold-layout 'structure!object
913                             (number-to-core 1)
914                             (vector-in-core t-layout i-layout so-layout)
915                             (number-to-core 3)))
916          (layout-inherits (vector-in-core t-layout
917                                           i-layout
918                                           so-layout
919                                           bso-layout)))
920
921     ;; ..and return to backpatch the layout of LAYOUT.
922     (setf (fourth (gethash 'layout *cold-layouts*))
923           (listify-cold-inherits layout-inherits))
924     (write-wordindexed *layout-layout*
925                        ;; FIXME: hardcoded offset into layout struct
926                        (+ sb!vm:instance-slots-offset
927                           layout-clos-hash-length
928                           1
929                           2)
930                        layout-inherits)))
931 \f
932 ;;;; interning symbols in the cold image
933
934 ;;; In order to avoid having to know about the package format, we
935 ;;; build a data structure in *COLD-PACKAGE-SYMBOLS* that holds all
936 ;;; interned symbols along with info about their packages. The data
937 ;;; structure is a list of sublists, where the sublists have the
938 ;;; following format:
939 ;;;   (<make-package-arglist>
940 ;;;    <internal-symbols>
941 ;;;    <external-symbols>
942 ;;;    <imported-internal-symbols>
943 ;;;    <imported-external-symbols>
944 ;;;    <shadowing-symbols>)
945 ;;;
946 ;;; KLUDGE: It would be nice to implement the sublists as instances of
947 ;;; a DEFSTRUCT (:TYPE LIST). (They'd still be lists, but at least we'd be
948 ;;; using mnemonically-named operators to access them, instead of trying
949 ;;; to remember what THIRD and FIFTH mean, and hoping that we never
950 ;;; need to change the list layout..) -- WHN 19990825
951
952 ;;; an alist from packages to lists of that package's symbols to be dumped
953 (defvar *cold-package-symbols*)
954 (declaim (type list *cold-package-symbols*))
955
956 ;;; a map from descriptors to symbols, so that we can back up. The key
957 ;;; is the address in the target core.
958 (defvar *cold-symbols*)
959 (declaim (type hash-table *cold-symbols*))
960
961 ;;; sanity check for a symbol we're about to create on the target
962 ;;;
963 ;;; Make sure that the symbol has an appropriate package. In
964 ;;; particular, catch the so-easy-to-make error of typing something
965 ;;; like SB-KERNEL:%BYTE-BLT in cold sources when what you really
966 ;;; need is SB!KERNEL:%BYTE-BLT.
967 (defun package-ok-for-target-symbol-p (package)
968   (let ((package-name (package-name package)))
969     (or
970      ;; Cold interning things in these standard packages is OK. (Cold
971      ;; interning things in the other standard package, CL-USER, isn't
972      ;; OK. We just use CL-USER to expose symbols whose homes are in
973      ;; other packages. Thus, trying to cold intern a symbol whose
974      ;; home package is CL-USER probably means that a coding error has
975      ;; been made somewhere.)
976      (find package-name '("COMMON-LISP" "KEYWORD") :test #'string=)
977      ;; Cold interning something in one of our target-code packages,
978      ;; which are ever-so-rigorously-and-elegantly distinguished by
979      ;; this prefix on their names, is OK too.
980      (string= package-name "SB!" :end1 3 :end2 3)
981      ;; This one is OK too, since it ends up being COMMON-LISP on the
982      ;; target.
983      (string= package-name "SB-XC")
984      ;; Anything else looks bad. (maybe COMMON-LISP-USER? maybe an extension
985      ;; package in the xc host? something we can't think of
986      ;; a valid reason to cold intern, anyway...)
987      )))
988   
989 ;;; like SYMBOL-PACKAGE, but safe for symbols which end up on the target
990 ;;;
991 ;;; Most host symbols we dump onto the target are created by SBCL
992 ;;; itself, so that as long as we avoid gratuitously
993 ;;; cross-compilation-unfriendly hacks, it just happens that their
994 ;;; SYMBOL-PACKAGE in the host system corresponds to their
995 ;;; SYMBOL-PACKAGE in the target system. However, that's not the case
996 ;;; in the COMMON-LISP package, where we don't get to create the
997 ;;; symbols but instead have to use the ones that the xc host created.
998 ;;; In particular, while ANSI specifies which symbols are exported
999 ;;; from COMMON-LISP, it doesn't specify that their home packages are
1000 ;;; COMMON-LISP, so the xc host can keep them in random packages which
1001 ;;; don't exist on the target (e.g. CLISP keeping some CL-exported
1002 ;;; symbols in the CLOS package).
1003 (defun symbol-package-for-target-symbol (symbol)
1004   ;; We want to catch weird symbols like CLISP's
1005   ;; CL:FIND-METHOD=CLOS::FIND-METHOD, but we don't want to get
1006   ;; sidetracked by ordinary symbols like :CHARACTER which happen to
1007   ;; have the same SYMBOL-NAME as exports from COMMON-LISP.
1008   (multiple-value-bind (cl-symbol cl-status)
1009       (find-symbol (symbol-name symbol) *cl-package*)
1010     (if (and (eq symbol cl-symbol)
1011              (eq cl-status :external))
1012         ;; special case, to work around possible xc host weirdness
1013         ;; in COMMON-LISP package
1014         *cl-package*
1015         ;; ordinary case
1016         (let ((result (symbol-package symbol)))
1017           (aver (package-ok-for-target-symbol-p result))
1018           result))))
1019
1020 ;;; Return a handle on an interned symbol. If necessary allocate the
1021 ;;; symbol and record which package the symbol was referenced in. When
1022 ;;; we allocate the symbol, make sure we record a reference to the
1023 ;;; symbol in the home package so that the package gets set.
1024 (defun cold-intern (symbol
1025                     &optional
1026                     (package (symbol-package-for-target-symbol symbol)))
1027
1028   (aver (package-ok-for-target-symbol-p package))
1029
1030   ;; Anything on the cross-compilation host which refers to the target
1031   ;; machinery through the host SB-XC package should be translated to
1032   ;; something on the target which refers to the same machinery
1033   ;; through the target COMMON-LISP package.
1034   (let ((p (find-package "SB-XC")))
1035     (when (eq package p)
1036       (setf package *cl-package*))
1037     (when (eq (symbol-package symbol) p)
1038       (setf symbol (intern (symbol-name symbol) *cl-package*))))
1039
1040   (let (;; Information about each cold-interned symbol is stored
1041         ;; in COLD-INTERN-INFO.
1042         ;;   (CAR COLD-INTERN-INFO) = descriptor of symbol
1043         ;;   (CDR COLD-INTERN-INFO) = list of packages, other than symbol's
1044         ;;                            own package, referring to symbol
1045         ;; (*COLD-PACKAGE-SYMBOLS* and *COLD-SYMBOLS* store basically the
1046         ;; same information, but with the mapping running the opposite way.)
1047         (cold-intern-info (get symbol 'cold-intern-info)))
1048     (unless cold-intern-info
1049       (cond ((eq (symbol-package-for-target-symbol symbol) package)
1050              (let ((handle (allocate-symbol (symbol-name symbol))))
1051                (setf (gethash (descriptor-bits handle) *cold-symbols*) symbol)
1052                (when (eq package *keyword-package*)
1053                  (cold-set handle handle))
1054                (setq cold-intern-info
1055                      (setf (get symbol 'cold-intern-info) (cons handle nil)))))
1056             (t
1057              (cold-intern symbol)
1058              (setq cold-intern-info (get symbol 'cold-intern-info)))))
1059     (unless (or (null package)
1060                 (member package (cdr cold-intern-info)))
1061       (push package (cdr cold-intern-info))
1062       (let* ((old-cps-entry (assoc package *cold-package-symbols*))
1063              (cps-entry (or old-cps-entry
1064                             (car (push (list package)
1065                                        *cold-package-symbols*)))))
1066         (unless old-cps-entry
1067           (/show "created *COLD-PACKAGE-SYMBOLS* entry for" package symbol))
1068         (push symbol (rest cps-entry))))
1069     (car cold-intern-info)))
1070
1071 ;;; Construct and return a value for use as *NIL-DESCRIPTOR*.
1072 (defun make-nil-descriptor ()
1073   (let* ((des (allocate-unboxed-object
1074                *static*
1075                sb!vm:n-word-bits
1076                sb!vm:symbol-size
1077                0))
1078          (result (make-descriptor (descriptor-high des)
1079                                   (+ (descriptor-low des)
1080                                      (* 2 sb!vm:n-word-bytes)
1081                                      (- sb!vm:list-pointer-lowtag
1082                                         sb!vm:other-pointer-lowtag)))))
1083     (write-wordindexed des
1084                        1
1085                        (make-other-immediate-descriptor
1086                         0
1087                         sb!vm:symbol-header-widetag))
1088     (write-wordindexed des
1089                        (+ 1 sb!vm:symbol-value-slot)
1090                        result)
1091     (write-wordindexed des
1092                        (+ 2 sb!vm:symbol-value-slot)
1093                        result)
1094     (write-wordindexed des
1095                        (+ 1 sb!vm:symbol-plist-slot)
1096                        result)
1097     (write-wordindexed des
1098                        (+ 1 sb!vm:symbol-name-slot)
1099                        ;; This is *DYNAMIC*, and DES is *STATIC*,
1100                        ;; because that's the way CMU CL did it; I'm
1101                        ;; not sure whether there's an underlying
1102                        ;; reason. -- WHN 1990826
1103                        (string-to-core "NIL" *dynamic*))
1104     (write-wordindexed des
1105                        (+ 1 sb!vm:symbol-package-slot)
1106                        result)
1107     (setf (get nil 'cold-intern-info)
1108           (cons result nil))
1109     (cold-intern nil)
1110     result))
1111
1112 ;;; Since the initial symbols must be allocated before we can intern
1113 ;;; anything else, we intern those here. We also set the value of T.
1114 (defun initialize-non-nil-symbols ()
1115   #!+sb-doc
1116   "Initialize the cold load symbol-hacking data structures."
1117   (let ((*cold-symbol-allocation-gspace* *static*))
1118     ;; Intern the others.
1119     (dolist (symbol sb!vm:*static-symbols*)
1120       (let* ((des (cold-intern symbol))
1121              (offset-wanted (sb!vm:static-symbol-offset symbol))
1122              (offset-found (- (descriptor-low des)
1123                               (descriptor-low *nil-descriptor*))))
1124         (unless (= offset-wanted offset-found)
1125           ;; FIXME: should be fatal
1126           (warn "Offset from ~S to ~S is ~W, not ~W"
1127                 symbol
1128                 nil
1129                 offset-found
1130                 offset-wanted))))
1131     ;; Establish the value of T.
1132     (let ((t-symbol (cold-intern t)))
1133       (cold-set t-symbol t-symbol))))
1134
1135 ;;; a helper function for FINISH-SYMBOLS: Return a cold alist suitable
1136 ;;; to be stored in *!INITIAL-LAYOUTS*.
1137 (defun cold-list-all-layouts ()
1138   (let ((result *nil-descriptor*))
1139     (maphash (lambda (key stuff)
1140                (cold-push (cold-cons (cold-intern key)
1141                                      (first stuff))
1142                           result))
1143              *cold-layouts*)
1144     result))
1145
1146 ;;; Establish initial values for magic symbols.
1147 ;;;
1148 ;;; Scan over all the symbols referenced in each package in
1149 ;;; *COLD-PACKAGE-SYMBOLS* making that for each one there's an
1150 ;;; appropriate entry in the *!INITIAL-SYMBOLS* data structure to
1151 ;;; intern it.
1152 (defun finish-symbols ()
1153
1154   ;; I think the point of setting these functions into SYMBOL-VALUEs
1155   ;; here, instead of using SYMBOL-FUNCTION, is that in CMU CL
1156   ;; SYMBOL-FUNCTION reduces to FDEFINITION, which is a pretty
1157   ;; hairy operation (involving globaldb.lisp etc.) which we don't
1158   ;; want to invoke early in cold init. -- WHN 2001-12-05
1159   ;;
1160   ;; FIXME: So OK, that's a reasonable reason to do something weird like
1161   ;; this, but this is still a weird thing to do, and we should change
1162   ;; the names to highlight that something weird is going on. Perhaps
1163   ;; *MAYBE-GC-FUN*, *INTERNAL-ERROR-FUN*, *HANDLE-BREAKPOINT-FUN*,
1164   ;; and *HANDLE-FUN-END-BREAKPOINT-FUN*...
1165   (macrolet ((frob (symbol)
1166                `(cold-set ',symbol
1167                           (cold-fdefinition-object (cold-intern ',symbol)))))
1168     (frob maybe-gc)
1169     (frob internal-error)
1170     (frob sb!di::handle-breakpoint)
1171     (frob sb!di::handle-fun-end-breakpoint))
1172
1173   (cold-set '*current-catch-block*          (make-fixnum-descriptor 0))
1174   (cold-set '*current-unwind-protect-block* (make-fixnum-descriptor 0))
1175
1176   (cold-set '*free-interrupt-context-index* (make-fixnum-descriptor 0))
1177
1178   (cold-set '*!initial-layouts* (cold-list-all-layouts))
1179
1180   (/show "dumping packages" (mapcar #'car *cold-package-symbols*))
1181   (let ((initial-symbols *nil-descriptor*))
1182     (dolist (cold-package-symbols-entry *cold-package-symbols*)
1183       (let* ((cold-package (car cold-package-symbols-entry))
1184              (symbols (cdr cold-package-symbols-entry))
1185              (shadows (package-shadowing-symbols cold-package))
1186              (internal *nil-descriptor*)
1187              (external *nil-descriptor*)
1188              (imported-internal *nil-descriptor*)
1189              (imported-external *nil-descriptor*)
1190              (shadowing *nil-descriptor*))
1191         (declare (type package cold-package)) ; i.e. not a target descriptor
1192         (/show "dumping" cold-package symbols)
1193
1194         ;; FIXME: Add assertions here to make sure that inappropriate stuff
1195         ;; isn't being dumped:
1196         ;;   * the CL-USER package
1197         ;;   * the SB-COLD package
1198         ;;   * any internal symbols in the CL package
1199         ;;   * basically any package other than CL, KEYWORD, or the packages
1200         ;;     in package-data-list.lisp-expr
1201         ;; and that the structure of the KEYWORD package (e.g. whether
1202         ;; any symbols are internal to it) matches what we want in the
1203         ;; target SBCL.
1204
1205         ;; FIXME: It seems possible that by looking at the contents of
1206         ;; packages in the target SBCL we could find which symbols in
1207         ;; package-data-lisp.lisp-expr are now obsolete. (If I
1208         ;; understand correctly, only symbols which actually have
1209         ;; definitions or which are otherwise referred to actually end
1210         ;; up in the target packages.)
1211
1212         (dolist (symbol symbols)
1213           (let ((handle (car (get symbol 'cold-intern-info)))
1214                 (imported-p (not (eq (symbol-package-for-target-symbol symbol)
1215                                      cold-package))))
1216             (multiple-value-bind (found where)
1217                 (find-symbol (symbol-name symbol) cold-package)
1218               (unless (and where (eq found symbol))
1219                 (error "The symbol ~S is not available in ~S."
1220                        symbol
1221                        cold-package))
1222               (when (memq symbol shadows)
1223                 (cold-push handle shadowing))
1224               (case where
1225                 (:internal (if imported-p
1226                                (cold-push handle imported-internal)
1227                                (cold-push handle internal)))
1228                 (:external (if imported-p
1229                                (cold-push handle imported-external)
1230                                (cold-push handle external)))))))
1231         (let ((r *nil-descriptor*))
1232           (cold-push shadowing r)
1233           (cold-push imported-external r)
1234           (cold-push imported-internal r)
1235           (cold-push external r)
1236           (cold-push internal r)
1237           (cold-push (make-make-package-args cold-package) r)
1238           ;; FIXME: It would be more space-efficient to use vectors
1239           ;; instead of lists here, and space-efficiency here would be
1240           ;; nice, since it would reduce the peak memory usage in
1241           ;; genesis and cold init.
1242           (cold-push r initial-symbols))))
1243     (cold-set '*!initial-symbols* initial-symbols))
1244
1245   (cold-set '*!initial-fdefn-objects* (list-all-fdefn-objects))
1246
1247   (cold-set '*!reversed-cold-toplevels* *current-reversed-cold-toplevels*)
1248
1249   #!+x86
1250   (progn
1251     (cold-set 'sb!vm::*fp-constant-0d0* (number-to-core 0d0))
1252     (cold-set 'sb!vm::*fp-constant-1d0* (number-to-core 1d0))
1253     (cold-set 'sb!vm::*fp-constant-0s0* (number-to-core 0s0))
1254     (cold-set 'sb!vm::*fp-constant-1s0* (number-to-core 1s0))
1255     #!+long-float
1256     (progn
1257       (cold-set 'sb!vm::*fp-constant-0l0* (number-to-core 0L0))
1258       (cold-set 'sb!vm::*fp-constant-1l0* (number-to-core 1L0))
1259       ;; FIXME: Why is initialization of PI conditional on LONG-FLOAT?
1260       ;; (ditto LG2, LN2, L2E, etc.)
1261       (cold-set 'sb!vm::*fp-constant-pi* (number-to-core pi))
1262       (cold-set 'sb!vm::*fp-constant-l2t* (number-to-core (log 10L0 2L0)))
1263       (cold-set 'sb!vm::*fp-constant-l2e*
1264             (number-to-core (log 2.718281828459045235360287471352662L0 2L0)))
1265       (cold-set 'sb!vm::*fp-constant-lg2* (number-to-core (log 2L0 10L0)))
1266       (cold-set 'sb!vm::*fp-constant-ln2*
1267             (number-to-core
1268              (log 2L0 2.718281828459045235360287471352662L0))))))
1269
1270 ;;; Make a cold list that can be used as the arg list to MAKE-PACKAGE in order
1271 ;;; to make a package that is similar to PKG.
1272 (defun make-make-package-args (pkg)
1273   (let* ((use *nil-descriptor*)
1274          (cold-nicknames *nil-descriptor*)
1275          (res *nil-descriptor*))
1276     (dolist (u (package-use-list pkg))
1277       (when (assoc u *cold-package-symbols*)
1278         (cold-push (string-to-core (package-name u)) use)))
1279     (let* ((pkg-name (package-name pkg))
1280            ;; Make the package nickname lists for the standard packages
1281            ;; be the minimum specified by ANSI, regardless of what value
1282            ;; the cross-compilation host happens to use.
1283            (warm-nicknames (cond ((string= pkg-name "COMMON-LISP")
1284                                   '("CL"))
1285                                  ((string= pkg-name "COMMON-LISP-USER")
1286                                   '("CL-USER"))
1287                                  ((string= pkg-name "KEYWORD")
1288                                   '())
1289                                  ;; For packages other than the
1290                                  ;; standard packages, the nickname
1291                                  ;; list was specified by our package
1292                                  ;; setup code, not by properties of
1293                                  ;; what cross-compilation host we
1294                                  ;; happened to use, and we can just
1295                                  ;; propagate it into the target.
1296                                  (t
1297                                   (package-nicknames pkg)))))
1298       (dolist (warm-nickname warm-nicknames)
1299         (cold-push (string-to-core warm-nickname) cold-nicknames)))
1300
1301     (cold-push (number-to-core (truncate (package-internal-symbol-count pkg)
1302                                          0.8))
1303                res)
1304     (cold-push (cold-intern :internal-symbols) res)
1305     (cold-push (number-to-core (truncate (package-external-symbol-count pkg)
1306                                          0.8))
1307                res)
1308     (cold-push (cold-intern :external-symbols) res)
1309
1310     (cold-push cold-nicknames res)
1311     (cold-push (cold-intern :nicknames) res)
1312
1313     (cold-push use res)
1314     (cold-push (cold-intern :use) res)
1315
1316     (cold-push (string-to-core (package-name pkg)) res)
1317     res))
1318 \f
1319 ;;;; functions and fdefinition objects
1320
1321 ;;; a hash table mapping from fdefinition names to descriptors of cold
1322 ;;; objects
1323 ;;;
1324 ;;; Note: Since fdefinition names can be lists like '(SETF FOO), and
1325 ;;; we want to have only one entry per name, this must be an 'EQUAL
1326 ;;; hash table, not the default 'EQL.
1327 (defvar *cold-fdefn-objects*)
1328
1329 (defvar *cold-fdefn-gspace* nil)
1330
1331 ;;; Given a cold representation of a symbol, return a warm
1332 ;;; representation. 
1333 (defun warm-symbol (des)
1334   ;; Note that COLD-INTERN is responsible for keeping the
1335   ;; *COLD-SYMBOLS* table up to date, so if DES happens to refer to an
1336   ;; uninterned symbol, the code below will fail. But as long as we
1337   ;; don't need to look up uninterned symbols during bootstrapping,
1338   ;; that's OK..
1339   (multiple-value-bind (symbol found-p)
1340       (gethash (descriptor-bits des) *cold-symbols*)
1341     (declare (type symbol symbol))
1342     (unless found-p
1343       (error "no warm symbol"))
1344     symbol))
1345   
1346 ;;; like CL:CAR, CL:CDR, and CL:NULL but for cold values
1347 (defun cold-car (des)
1348   (aver (= (descriptor-lowtag des) sb!vm:list-pointer-lowtag))
1349   (read-wordindexed des sb!vm:cons-car-slot))
1350 (defun cold-cdr (des)
1351   (aver (= (descriptor-lowtag des) sb!vm:list-pointer-lowtag))
1352   (read-wordindexed des sb!vm:cons-cdr-slot))
1353 (defun cold-null (des)
1354   (= (descriptor-bits des)
1355      (descriptor-bits *nil-descriptor*)))
1356   
1357 ;;; Given a cold representation of a function name, return a warm
1358 ;;; representation.
1359 (declaim (ftype (function (descriptor) (or symbol list)) warm-fun-name))
1360 (defun warm-fun-name (des)
1361   (let ((result
1362          (ecase (descriptor-lowtag des)
1363            (#.sb!vm:list-pointer-lowtag
1364             (aver (not (cold-null des))) ; function named NIL? please no..
1365             ;; Do cold (DESTRUCTURING-BIND (COLD-CAR COLD-CADR) DES ..).
1366             (let* ((car-des (cold-car des))
1367                    (cdr-des (cold-cdr des))
1368                    (cadr-des (cold-car cdr-des))
1369                    (cddr-des (cold-cdr cdr-des)))
1370               (aver (cold-null cddr-des))
1371               (list (warm-symbol car-des)
1372                     (warm-symbol cadr-des))))
1373            (#.sb!vm:other-pointer-lowtag
1374             (warm-symbol des)))))
1375     (unless (legal-fun-name-p result)
1376       (error "not a legal function name: ~S" result))
1377     result))
1378
1379 (defun cold-fdefinition-object (cold-name &optional leave-fn-raw)
1380   (declare (type descriptor cold-name))
1381   (let ((warm-name (warm-fun-name cold-name)))
1382     (or (gethash warm-name *cold-fdefn-objects*)
1383         (let ((fdefn (allocate-boxed-object (or *cold-fdefn-gspace* *dynamic*)
1384                                             (1- sb!vm:fdefn-size)
1385                                             sb!vm:other-pointer-lowtag)))
1386
1387           (setf (gethash warm-name *cold-fdefn-objects*) fdefn)
1388           (write-memory fdefn (make-other-immediate-descriptor
1389                                (1- sb!vm:fdefn-size) sb!vm:fdefn-widetag))
1390           (write-wordindexed fdefn sb!vm:fdefn-name-slot cold-name)
1391           (unless leave-fn-raw
1392             (write-wordindexed fdefn sb!vm:fdefn-fun-slot
1393                                *nil-descriptor*)
1394             (write-wordindexed fdefn
1395                                sb!vm:fdefn-raw-addr-slot
1396                                (make-random-descriptor
1397                                 (cold-foreign-symbol-address-as-integer
1398                                  "undefined_tramp"))))
1399           fdefn))))
1400
1401 ;;; Handle the at-cold-init-time, fset-for-static-linkage operation
1402 ;;; requested by FOP-FSET.
1403 (defun static-fset (cold-name defn)
1404   (declare (type descriptor cold-name))
1405   (let ((fdefn (cold-fdefinition-object cold-name t))
1406         (type (logand (descriptor-low (read-memory defn)) sb!vm:widetag-mask)))
1407     (write-wordindexed fdefn sb!vm:fdefn-fun-slot defn)
1408     (write-wordindexed fdefn
1409                        sb!vm:fdefn-raw-addr-slot
1410                        (ecase type
1411                          (#.sb!vm:simple-fun-header-widetag
1412                           #!+sparc
1413                           defn
1414                           #!-sparc
1415                           (make-random-descriptor
1416                            (+ (logandc2 (descriptor-bits defn)
1417                                         sb!vm:lowtag-mask)
1418                               (ash sb!vm:simple-fun-code-offset
1419                                    sb!vm:word-shift))))
1420                          (#.sb!vm:closure-header-widetag
1421                           (make-random-descriptor
1422                            (cold-foreign-symbol-address-as-integer
1423                             "closure_tramp")))))
1424     fdefn))
1425
1426 (defun initialize-static-fns ()
1427   (let ((*cold-fdefn-gspace* *static*))
1428     (dolist (sym sb!vm:*static-funs*)
1429       (let* ((fdefn (cold-fdefinition-object (cold-intern sym)))
1430              (offset (- (+ (- (descriptor-low fdefn)
1431                               sb!vm:other-pointer-lowtag)
1432                            (* sb!vm:fdefn-raw-addr-slot sb!vm:n-word-bytes))
1433                         (descriptor-low *nil-descriptor*)))
1434              (desired (sb!vm:static-fun-offset sym)))
1435         (unless (= offset desired)
1436           ;; FIXME: should be fatal
1437           (warn "Offset from FDEFN ~S to ~S is ~W, not ~W."
1438                 sym nil offset desired))))))
1439
1440 (defun list-all-fdefn-objects ()
1441   (let ((result *nil-descriptor*))
1442     (maphash (lambda (key value)
1443                (declare (ignore key))
1444                (cold-push value result))
1445              *cold-fdefn-objects*)
1446     result))
1447 \f
1448 ;;;; fixups and related stuff
1449
1450 ;;; an EQUAL hash table
1451 (defvar *cold-foreign-symbol-table*)
1452 (declaim (type hash-table *cold-foreign-symbol-table*))
1453
1454 ;;; Read the sbcl.nm file to find the addresses for foreign-symbols in
1455 ;;; the C runtime.  
1456 (defun load-cold-foreign-symbol-table (filename)
1457   (with-open-file (file filename)
1458     (loop
1459       (let ((line (read-line file nil nil)))
1460         (unless line
1461           (return))
1462         ;; UNIX symbol tables might have tabs in them, and tabs are
1463         ;; not in Common Lisp STANDARD-CHAR, so there seems to be no
1464         ;; nice portable way to deal with them within Lisp, alas.
1465         ;; Fortunately, it's easy to use UNIX command line tools like
1466         ;; sed to remove the problem, so it's not too painful for us
1467         ;; to push responsibility for converting tabs to spaces out to
1468         ;; the caller.
1469         ;;
1470         ;; Other non-STANDARD-CHARs are problematic for the same reason.
1471         ;; Make sure that there aren't any..
1472         (let ((ch (find-if (lambda (char)
1473                              (not (typep char 'standard-char)))
1474                           line)))
1475           (when ch
1476             (error "non-STANDARD-CHAR ~S found in foreign symbol table:~%~S"
1477                    ch
1478                    line)))
1479         (setf line (string-trim '(#\space) line))
1480         (let ((p1 (position #\space line :from-end nil))
1481               (p2 (position #\space line :from-end t)))
1482           (if (not (and p1 p2 (< p1 p2)))
1483               ;; KLUDGE: It's too messy to try to understand all
1484               ;; possible output from nm, so we just punt the lines we
1485               ;; don't recognize. We realize that there's some chance
1486               ;; that might get us in trouble someday, so we warn
1487               ;; about it.
1488               (warn "ignoring unrecognized line ~S in ~A" line filename)
1489               (multiple-value-bind (value name)
1490                   (if (string= "0x" line :end2 2)
1491                       (values (parse-integer line :start 2 :end p1 :radix 16)
1492                               (subseq line (1+ p2)))
1493                       (values (parse-integer line :end p1 :radix 16)
1494                               (subseq line (1+ p2))))
1495                 (multiple-value-bind (old-value found)
1496                     (gethash name *cold-foreign-symbol-table*)
1497                   (when (and found
1498                              (not (= old-value value)))
1499                     (warn "redefining ~S from #X~X to #X~X"
1500                           name old-value value)))
1501                 (setf (gethash name *cold-foreign-symbol-table*) value))))))
1502     (values)))
1503
1504 (defun cold-foreign-symbol-address-as-integer (name)
1505   (or (find-foreign-symbol-in-table name *cold-foreign-symbol-table*)
1506       *foreign-symbol-placeholder-value*
1507       (progn
1508         (format *error-output* "~&The foreign symbol table is:~%")
1509         (maphash (lambda (k v)
1510                    (format *error-output* "~&~S = #X~8X~%" k v))
1511                  *cold-foreign-symbol-table*)
1512         (error "The foreign symbol ~S is undefined." name))))
1513
1514 (defvar *cold-assembler-routines*)
1515
1516 (defvar *cold-assembler-fixups*)
1517
1518 (defun record-cold-assembler-routine (name address)
1519   (/xhow "in RECORD-COLD-ASSEMBLER-ROUTINE" name address)
1520   (push (cons name address)
1521         *cold-assembler-routines*))
1522
1523 (defun record-cold-assembler-fixup (routine
1524                                     code-object
1525                                     offset
1526                                     &optional
1527                                     (kind :both))
1528   (push (list routine code-object offset kind)
1529         *cold-assembler-fixups*))
1530
1531 (defun lookup-assembler-reference (symbol)
1532   (let ((value (cdr (assoc symbol *cold-assembler-routines*))))
1533     ;; FIXME: Should this be ERROR instead of WARN?
1534     (unless value
1535       (warn "Assembler routine ~S not defined." symbol))
1536     value))
1537
1538 ;;; The x86 port needs to store code fixups along with code objects if
1539 ;;; they are to be moved, so fixups for code objects in the dynamic
1540 ;;; heap need to be noted.
1541 #!+x86
1542 (defvar *load-time-code-fixups*)
1543
1544 #!+x86
1545 (defun note-load-time-code-fixup (code-object offset value kind)
1546   ;; If CODE-OBJECT might be moved
1547   (when (= (gspace-identifier (descriptor-intuit-gspace code-object))
1548            dynamic-space-id)
1549     ;; FIXME: pushed thing should be a structure, not just a list
1550     (push (list code-object offset value kind) *load-time-code-fixups*))
1551   (values))
1552
1553 #!+x86
1554 (defun output-load-time-code-fixups ()
1555   (dolist (fixups *load-time-code-fixups*)
1556     (let ((code-object (first fixups))
1557           (offset (second fixups))
1558           (value (third fixups))
1559           (kind (fourth fixups)))
1560       (cold-push (cold-cons
1561                   (cold-intern :load-time-code-fixup)
1562                   (cold-cons
1563                    code-object
1564                    (cold-cons
1565                     (number-to-core offset)
1566                     (cold-cons
1567                      (number-to-core value)
1568                      (cold-cons
1569                       (cold-intern kind)
1570                       *nil-descriptor*)))))
1571                  *current-reversed-cold-toplevels*))))
1572
1573 ;;; Given a pointer to a code object and an offset relative to the
1574 ;;; tail of the code object's header, return an offset relative to the
1575 ;;; (beginning of the) code object.
1576 ;;;
1577 ;;; FIXME: It might be clearer to reexpress
1578 ;;;    (LET ((X (CALC-OFFSET CODE-OBJECT OFFSET0))) ..)
1579 ;;; as
1580 ;;;    (LET ((X (+ OFFSET0 (CODE-OBJECT-HEADER-N-BYTES CODE-OBJECT)))) ..).
1581 (declaim (ftype (function (descriptor sb!vm:word)) calc-offset))
1582 (defun calc-offset (code-object offset-from-tail-of-header)
1583   (let* ((header (read-memory code-object))
1584          (header-n-words (ash (descriptor-bits header)
1585                               (- sb!vm:n-widetag-bits)))
1586          (header-n-bytes (ash header-n-words sb!vm:word-shift))
1587          (result (+ offset-from-tail-of-header header-n-bytes)))
1588     result))
1589
1590 (declaim (ftype (function (descriptor sb!vm:word sb!vm:word keyword))
1591                 do-cold-fixup))
1592 (defun do-cold-fixup (code-object after-header value kind)
1593   (let* ((offset-within-code-object (calc-offset code-object after-header))
1594          (gspace-bytes (descriptor-bytes code-object))
1595          (gspace-byte-offset (+ (descriptor-byte-offset code-object)
1596                                 offset-within-code-object))
1597          (gspace-byte-address (gspace-byte-address
1598                                (descriptor-gspace code-object))))
1599     (ecase +backend-fasl-file-implementation+
1600       ;; See CMU CL source for other formerly-supported architectures
1601       ;; (and note that you have to rewrite them to use VECTOR-REF
1602       ;; unstead of SAP-REF).
1603       (:alpha
1604          (ecase kind
1605          (:jmp-hint
1606           (assert (zerop (ldb (byte 2 0) value))))
1607          (:bits-63-48
1608           (let* ((value (if (logbitp 15 value) (+ value (ash 1 16)) value))
1609                  (value (if (logbitp 31 value) (+ value (ash 1 32)) value))
1610                  (value (if (logbitp 47 value) (+ value (ash 1 48)) value)))
1611             (setf (byte-vector-ref-8 gspace-bytes gspace-byte-offset)
1612                   (ldb (byte 8 48) value)
1613                   (byte-vector-ref-8 gspace-bytes (1+ gspace-byte-offset))
1614                   (ldb (byte 8 56) value))))
1615          (:bits-47-32
1616           (let* ((value (if (logbitp 15 value) (+ value (ash 1 16)) value))
1617                  (value (if (logbitp 31 value) (+ value (ash 1 32)) value)))
1618             (setf (byte-vector-ref-8 gspace-bytes gspace-byte-offset)
1619                   (ldb (byte 8 32) value)
1620                   (byte-vector-ref-8 gspace-bytes (1+ gspace-byte-offset))
1621                   (ldb (byte 8 40) value))))
1622          (:ldah
1623           (let ((value (if (logbitp 15 value) (+ value (ash 1 16)) value)))
1624             (setf (byte-vector-ref-8 gspace-bytes gspace-byte-offset)
1625                   (ldb (byte 8 16) value)
1626                   (byte-vector-ref-8 gspace-bytes (1+ gspace-byte-offset))
1627                   (ldb (byte 8 24) value))))
1628          (:lda
1629           (setf (byte-vector-ref-8 gspace-bytes gspace-byte-offset)
1630                 (ldb (byte 8 0) value)
1631                 (byte-vector-ref-8 gspace-bytes (1+ gspace-byte-offset))
1632                 (ldb (byte 8 8) value)))))
1633       (:ppc
1634        (ecase kind
1635          (:ba
1636           (setf (byte-vector-ref-32 gspace-bytes gspace-byte-offset)
1637                 (dpb (ash value -2) (byte 24 2) 
1638                      (byte-vector-ref-32 gspace-bytes gspace-byte-offset))))
1639          (:ha
1640           (let* ((h (ldb (byte 16 16) value))
1641                  (l (ldb (byte 16 0) value)))
1642             (setf (byte-vector-ref-16 gspace-bytes (+ gspace-byte-offset 2))
1643                   (if (logbitp 15 l) (ldb (byte 16 0) (1+ h)) h))))
1644          (:l
1645           (setf (byte-vector-ref-16 gspace-bytes (+ gspace-byte-offset 2))
1646                 (ldb (byte 16 0) value)))))     
1647       (:sparc
1648        (ecase kind
1649          (:call
1650           (error "Can't deal with call fixups yet."))
1651          (:sethi
1652           (setf (byte-vector-ref-32 gspace-bytes gspace-byte-offset)
1653                 (dpb (ldb (byte 22 10) value)
1654                      (byte 22 0)
1655                      (byte-vector-ref-32 gspace-bytes gspace-byte-offset))))
1656          (:add
1657           (setf (byte-vector-ref-32 gspace-bytes gspace-byte-offset)
1658                 (dpb (ldb (byte 10 0) value)
1659                      (byte 10 0)
1660                      (byte-vector-ref-32 gspace-bytes gspace-byte-offset))))))
1661       (:x86
1662        (let* ((un-fixed-up (byte-vector-ref-32 gspace-bytes
1663                                                gspace-byte-offset))
1664               (code-object-start-addr (logandc2 (descriptor-bits code-object)
1665                                                 sb!vm:lowtag-mask)))
1666          (assert (= code-object-start-addr
1667                   (+ gspace-byte-address
1668                      (descriptor-byte-offset code-object))))
1669          (ecase kind
1670            (:absolute
1671             (let ((fixed-up (+ value un-fixed-up)))
1672               (setf (byte-vector-ref-32 gspace-bytes gspace-byte-offset)
1673                     fixed-up)
1674               ;; comment from CMU CL sources:
1675               ;;
1676               ;; Note absolute fixups that point within the object.
1677               ;; KLUDGE: There seems to be an implicit assumption in
1678               ;; the old CMU CL code here, that if it doesn't point
1679               ;; before the object, it must point within the object
1680               ;; (not beyond it). It would be good to add an
1681               ;; explanation of why that's true, or an assertion that
1682               ;; it's really true, or both.
1683               (unless (< fixed-up code-object-start-addr)
1684                 (note-load-time-code-fixup code-object
1685                                            after-header
1686                                            value
1687                                            kind))))
1688            (:relative ; (used for arguments to X86 relative CALL instruction)
1689             (let ((fixed-up (- (+ value un-fixed-up)
1690                                gspace-byte-address
1691                                gspace-byte-offset
1692                                sb!vm:n-word-bytes))) ; length of CALL argument
1693               (setf (byte-vector-ref-32 gspace-bytes gspace-byte-offset)
1694                     fixed-up)
1695               ;; Note relative fixups that point outside the code
1696               ;; object, which is to say all relative fixups, since
1697               ;; relative addressing within a code object never needs
1698               ;; a fixup.
1699               (note-load-time-code-fixup code-object
1700                                          after-header
1701                                          value
1702                                          kind)))))) ))
1703   (values))
1704
1705 (defun resolve-assembler-fixups ()
1706   (dolist (fixup *cold-assembler-fixups*)
1707     (let* ((routine (car fixup))
1708            (value (lookup-assembler-reference routine)))
1709       (when value
1710         (do-cold-fixup (second fixup) (third fixup) value (fourth fixup))))))
1711
1712 ;;; *COLD-FOREIGN-SYMBOL-TABLE* becomes *!INITIAL-FOREIGN-SYMBOLS* in
1713 ;;; the core. When the core is loaded, !LOADER-COLD-INIT uses this to
1714 ;;; create *STATIC-FOREIGN-SYMBOLS*, which the code in
1715 ;;; target-load.lisp refers to.
1716 (defun linkage-info-to-core ()
1717   (let ((result *nil-descriptor*))
1718     (maphash (lambda (symbol value)
1719                (cold-push (cold-cons (string-to-core symbol)
1720                                      (number-to-core value))
1721                           result))
1722              *cold-foreign-symbol-table*)
1723     (cold-set (cold-intern '*!initial-foreign-symbols*) result))
1724   (let ((result *nil-descriptor*))
1725     (dolist (rtn *cold-assembler-routines*)
1726       (cold-push (cold-cons (cold-intern (car rtn))
1727                             (number-to-core (cdr rtn)))
1728                  result))
1729     (cold-set (cold-intern '*!initial-assembler-routines*) result)))
1730 \f
1731 ;;;; general machinery for cold-loading FASL files
1732
1733 ;;; FOP functions for cold loading
1734 (defvar *cold-fop-funs*
1735   ;; We start out with a copy of the ordinary *FOP-FUNS*. The ones
1736   ;; which aren't appropriate for cold load will be destructively
1737   ;; modified.
1738   (copy-seq *fop-funs*))
1739
1740 (defvar *normal-fop-funs*)
1741
1742 ;;; Cause a fop to have a special definition for cold load.
1743 ;;; 
1744 ;;; This is similar to DEFINE-FOP, but unlike DEFINE-FOP, this version
1745 ;;;   (1) looks up the code for this name (created by a previous
1746 ;;        DEFINE-FOP) instead of creating a code, and
1747 ;;;   (2) stores its definition in the *COLD-FOP-FUNS* vector,
1748 ;;;       instead of storing in the *FOP-FUNS* vector.
1749 (defmacro define-cold-fop ((name &key (pushp t) (stackp t)) &rest forms)
1750   (aver (member pushp '(nil t)))
1751   (aver (member stackp '(nil t)))
1752   (let ((code (get name 'fop-code))
1753         (fname (symbolicate "COLD-" name)))
1754     (unless code
1755       (error "~S is not a defined FOP." name))
1756     `(progn
1757        (defun ,fname ()
1758          ,@(if stackp
1759                `((with-fop-stack ,pushp ,@forms))
1760                forms))
1761        (setf (svref *cold-fop-funs* ,code) #',fname))))
1762
1763 (defmacro clone-cold-fop ((name &key (pushp t) (stackp t)) (small-name) &rest forms)
1764   (aver (member pushp '(nil t)))
1765   (aver (member stackp '(nil t)))
1766   `(progn
1767     (macrolet ((clone-arg () '(read-arg 4)))
1768       (define-cold-fop (,name :pushp ,pushp :stackp ,stackp) ,@forms))
1769     (macrolet ((clone-arg () '(read-arg 1)))
1770       (define-cold-fop (,small-name :pushp ,pushp :stackp ,stackp) ,@forms))))
1771
1772 ;;; Cause a fop to be undefined in cold load.
1773 (defmacro not-cold-fop (name)
1774   `(define-cold-fop (,name)
1775      (error "The fop ~S is not supported in cold load." ',name)))
1776
1777 ;;; COLD-LOAD loads stuff into the core image being built by calling
1778 ;;; LOAD-AS-FASL with the fop function table rebound to a table of cold
1779 ;;; loading functions.
1780 (defun cold-load (filename)
1781   #!+sb-doc
1782   "Load the file named by FILENAME into the cold load image being built."
1783   (let* ((*normal-fop-funs* *fop-funs*)
1784          (*fop-funs* *cold-fop-funs*)
1785          (*cold-load-filename* (etypecase filename
1786                                  (string filename)
1787                                  (pathname (namestring filename)))))
1788     (with-open-file (s filename :element-type '(unsigned-byte 8))
1789       (load-as-fasl s nil nil))))
1790 \f
1791 ;;;; miscellaneous cold fops
1792
1793 (define-cold-fop (fop-misc-trap) *unbound-marker*)
1794
1795 (define-cold-fop (fop-character)
1796   (make-character-descriptor (read-arg 3)))
1797 (define-cold-fop (fop-short-character)
1798   (make-character-descriptor (read-arg 1)))
1799
1800 (define-cold-fop (fop-empty-list) *nil-descriptor*)
1801 (define-cold-fop (fop-truth) (cold-intern t))
1802
1803 (define-cold-fop (fop-normal-load :stackp nil)
1804   (setq *fop-funs* *normal-fop-funs*))
1805
1806 (define-fop (fop-maybe-cold-load 82 :stackp nil)
1807   (when *cold-load-filename*
1808     (setq *fop-funs* *cold-fop-funs*)))
1809
1810 (define-cold-fop (fop-maybe-cold-load :stackp nil))
1811
1812 (clone-cold-fop (fop-struct)
1813                 (fop-small-struct)
1814   (let* ((size (clone-arg))
1815          (result (allocate-boxed-object *dynamic*
1816                                         (1+ size)
1817                                         sb!vm:instance-pointer-lowtag)))
1818     (write-memory result (make-other-immediate-descriptor
1819                           size sb!vm:instance-header-widetag))
1820     (do ((index (1- size) (1- index)))
1821         ((minusp index))
1822       (declare (fixnum index))
1823       (write-wordindexed result
1824                          (+ index sb!vm:instance-slots-offset)
1825                          (pop-stack)))
1826     result))
1827
1828 (define-cold-fop (fop-layout)
1829   (let* ((length-des (pop-stack))
1830          (depthoid-des (pop-stack))
1831          (cold-inherits (pop-stack))
1832          (name (pop-stack))
1833          (old (gethash name *cold-layouts*)))
1834     (declare (type descriptor length-des depthoid-des cold-inherits))
1835     (declare (type symbol name))
1836     ;; If a layout of this name has been defined already
1837     (if old
1838       ;; Enforce consistency between the previous definition and the
1839       ;; current definition, then return the previous definition.
1840       (destructuring-bind
1841           ;; FIXME: This would be more maintainable if we used
1842           ;; DEFSTRUCT (:TYPE LIST) to define COLD-LAYOUT. -- WHN 19990825
1843           (old-layout-descriptor
1844            old-name
1845            old-length
1846            old-inherits-list
1847            old-depthoid)
1848           old
1849         (declare (type descriptor old-layout-descriptor))
1850         (declare (type index old-length))
1851         (declare (type fixnum old-depthoid))
1852         (declare (type list old-inherits-list))
1853         (aver (eq name old-name))
1854         (let ((length (descriptor-fixnum length-des))
1855               (inherits-list (listify-cold-inherits cold-inherits))
1856               (depthoid (descriptor-fixnum depthoid-des)))
1857           (unless (= length old-length)
1858             (error "cold loading a reference to class ~S when the compile~%~
1859                    time length was ~S and current length is ~S"
1860                    name
1861                    length
1862                    old-length))
1863           (unless (equal inherits-list old-inherits-list)
1864             (error "cold loading a reference to class ~S when the compile~%~
1865                    time inherits were ~S~%~
1866                    and current inherits are ~S"
1867                    name
1868                    inherits-list
1869                    old-inherits-list))
1870           (unless (= depthoid old-depthoid)
1871             (error "cold loading a reference to class ~S when the compile~%~
1872                    time inheritance depthoid was ~S and current inheritance~%~
1873                    depthoid is ~S"
1874                    name
1875                    depthoid
1876                    old-depthoid)))
1877         old-layout-descriptor)
1878       ;; Make a new definition from scratch.
1879       (make-cold-layout name length-des cold-inherits depthoid-des))))
1880 \f
1881 ;;;; cold fops for loading symbols
1882
1883 ;;; Load a symbol SIZE characters long from *FASL-INPUT-STREAM* and
1884 ;;; intern that symbol in PACKAGE.
1885 (defun cold-load-symbol (size package)
1886   (let ((string (make-string size)))
1887     (read-string-as-bytes *fasl-input-stream* string)
1888     (cold-intern (intern string package) package)))
1889
1890 (macrolet ((frob (name pname-len package-len)
1891              `(define-cold-fop (,name)
1892                 (let ((index (read-arg ,package-len)))
1893                   (push-fop-table
1894                    (cold-load-symbol (read-arg ,pname-len)
1895                                      (svref *current-fop-table* index)))))))
1896   (frob fop-symbol-in-package-save 4 4)
1897   (frob fop-small-symbol-in-package-save 1 4)
1898   (frob fop-symbol-in-byte-package-save 4 1)
1899   (frob fop-small-symbol-in-byte-package-save 1 1))
1900
1901 (clone-cold-fop (fop-lisp-symbol-save)
1902                 (fop-lisp-small-symbol-save)
1903   (push-fop-table (cold-load-symbol (clone-arg) *cl-package*)))
1904
1905 (clone-cold-fop (fop-keyword-symbol-save)
1906                 (fop-keyword-small-symbol-save)
1907   (push-fop-table (cold-load-symbol (clone-arg) *keyword-package*)))
1908
1909 (clone-cold-fop (fop-uninterned-symbol-save)
1910                 (fop-uninterned-small-symbol-save)
1911   (let* ((size (clone-arg))
1912          (name (make-string size)))
1913     (read-string-as-bytes *fasl-input-stream* name)
1914     (let ((symbol-des (allocate-symbol name)))
1915       (push-fop-table symbol-des))))
1916 \f
1917 ;;;; cold fops for loading lists
1918
1919 ;;; Make a list of the top LENGTH things on the fop stack. The last
1920 ;;; cdr of the list is set to LAST.
1921 (defmacro cold-stack-list (length last)
1922   `(do* ((index ,length (1- index))
1923          (result ,last (cold-cons (pop-stack) result)))
1924         ((= index 0) result)
1925      (declare (fixnum index))))
1926
1927 (define-cold-fop (fop-list)
1928   (cold-stack-list (read-arg 1) *nil-descriptor*))
1929 (define-cold-fop (fop-list*)
1930   (cold-stack-list (read-arg 1) (pop-stack)))
1931 (define-cold-fop (fop-list-1)
1932   (cold-stack-list 1 *nil-descriptor*))
1933 (define-cold-fop (fop-list-2)
1934   (cold-stack-list 2 *nil-descriptor*))
1935 (define-cold-fop (fop-list-3)
1936   (cold-stack-list 3 *nil-descriptor*))
1937 (define-cold-fop (fop-list-4)
1938   (cold-stack-list 4 *nil-descriptor*))
1939 (define-cold-fop (fop-list-5)
1940   (cold-stack-list 5 *nil-descriptor*))
1941 (define-cold-fop (fop-list-6)
1942   (cold-stack-list 6 *nil-descriptor*))
1943 (define-cold-fop (fop-list-7)
1944   (cold-stack-list 7 *nil-descriptor*))
1945 (define-cold-fop (fop-list-8)
1946   (cold-stack-list 8 *nil-descriptor*))
1947 (define-cold-fop (fop-list*-1)
1948   (cold-stack-list 1 (pop-stack)))
1949 (define-cold-fop (fop-list*-2)
1950   (cold-stack-list 2 (pop-stack)))
1951 (define-cold-fop (fop-list*-3)
1952   (cold-stack-list 3 (pop-stack)))
1953 (define-cold-fop (fop-list*-4)
1954   (cold-stack-list 4 (pop-stack)))
1955 (define-cold-fop (fop-list*-5)
1956   (cold-stack-list 5 (pop-stack)))
1957 (define-cold-fop (fop-list*-6)
1958   (cold-stack-list 6 (pop-stack)))
1959 (define-cold-fop (fop-list*-7)
1960   (cold-stack-list 7 (pop-stack)))
1961 (define-cold-fop (fop-list*-8)
1962   (cold-stack-list 8 (pop-stack)))
1963 \f
1964 ;;;; cold fops for loading vectors
1965
1966 (clone-cold-fop (fop-string)
1967                 (fop-small-string)
1968   (let* ((len (clone-arg))
1969          (string (make-string len)))
1970     (read-string-as-bytes *fasl-input-stream* string)
1971     (string-to-core string)))
1972
1973 (clone-cold-fop (fop-vector)
1974                 (fop-small-vector)
1975   (let* ((size (clone-arg))
1976          (result (allocate-vector-object *dynamic*
1977                                          sb!vm:n-word-bits
1978                                          size
1979                                          sb!vm:simple-vector-widetag)))
1980     (do ((index (1- size) (1- index)))
1981         ((minusp index))
1982       (declare (fixnum index))
1983       (write-wordindexed result
1984                          (+ index sb!vm:vector-data-offset)
1985                          (pop-stack)))
1986     result))
1987
1988 (define-cold-fop (fop-int-vector)
1989   (let* ((len (read-arg 4))
1990          (sizebits (read-arg 1))
1991          (type (case sizebits
1992                  (1 sb!vm:simple-bit-vector-widetag)
1993                  (2 sb!vm:simple-array-unsigned-byte-2-widetag)
1994                  (4 sb!vm:simple-array-unsigned-byte-4-widetag)
1995                  (8 sb!vm:simple-array-unsigned-byte-8-widetag)
1996                  (16 sb!vm:simple-array-unsigned-byte-16-widetag)
1997                  (32 sb!vm:simple-array-unsigned-byte-32-widetag)
1998                  (t (error "losing element size: ~W" sizebits))))
1999          (result (allocate-vector-object *dynamic* sizebits len type))
2000          (start (+ (descriptor-byte-offset result)
2001                    (ash sb!vm:vector-data-offset sb!vm:word-shift)))
2002          (end (+ start
2003                  (ceiling (* len sizebits)
2004                           sb!vm:n-byte-bits))))
2005     (read-sequence-or-die (descriptor-bytes result)
2006                           *fasl-input-stream*
2007                           :start start
2008                           :end end)
2009     result))
2010
2011 (define-cold-fop (fop-single-float-vector)
2012   (let* ((len (read-arg 4))
2013          (result (allocate-vector-object
2014                   *dynamic*
2015                   sb!vm:n-word-bits
2016                   len
2017                   sb!vm:simple-array-single-float-widetag))
2018          (start (+ (descriptor-byte-offset result)
2019                    (ash sb!vm:vector-data-offset sb!vm:word-shift)))
2020          (end (+ start (* len sb!vm:n-word-bytes))))
2021     (read-sequence-or-die (descriptor-bytes result)
2022                           *fasl-input-stream*
2023                           :start start
2024                           :end end)
2025     result))
2026
2027 (not-cold-fop fop-double-float-vector)
2028 #!+long-float (not-cold-fop fop-long-float-vector)
2029 (not-cold-fop fop-complex-single-float-vector)
2030 (not-cold-fop fop-complex-double-float-vector)
2031 #!+long-float (not-cold-fop fop-complex-long-float-vector)
2032
2033 (define-cold-fop (fop-array)
2034   (let* ((rank (read-arg 4))
2035          (data-vector (pop-stack))
2036          (result (allocate-boxed-object *dynamic*
2037                                         (+ sb!vm:array-dimensions-offset rank)
2038                                         sb!vm:other-pointer-lowtag)))
2039     (write-memory result
2040                   (make-other-immediate-descriptor rank
2041                                                    sb!vm:simple-array-widetag))
2042     (write-wordindexed result sb!vm:array-fill-pointer-slot *nil-descriptor*)
2043     (write-wordindexed result sb!vm:array-data-slot data-vector)
2044     (write-wordindexed result sb!vm:array-displacement-slot *nil-descriptor*)
2045     (write-wordindexed result sb!vm:array-displaced-p-slot *nil-descriptor*)
2046     (let ((total-elements 1))
2047       (dotimes (axis rank)
2048         (let ((dim (pop-stack)))
2049           (unless (or (= (descriptor-lowtag dim) sb!vm:even-fixnum-lowtag)
2050                       (= (descriptor-lowtag dim) sb!vm:odd-fixnum-lowtag))
2051             (error "non-fixnum dimension? (~S)" dim))
2052           (setf total-elements
2053                 (* total-elements
2054                    (logior (ash (descriptor-high dim)
2055                                 (- descriptor-low-bits
2056                                    (1- sb!vm:n-lowtag-bits)))
2057                            (ash (descriptor-low dim)
2058                                 (- 1 sb!vm:n-lowtag-bits)))))
2059           (write-wordindexed result
2060                              (+ sb!vm:array-dimensions-offset axis)
2061                              dim)))
2062       (write-wordindexed result
2063                          sb!vm:array-elements-slot
2064                          (make-fixnum-descriptor total-elements)))
2065     result))
2066 \f
2067 ;;;; cold fops for loading numbers
2068
2069 (defmacro define-cold-number-fop (fop)
2070   `(define-cold-fop (,fop :stackp nil)
2071      ;; Invoke the ordinary warm version of this fop to push the
2072      ;; number.
2073      (,fop)
2074      ;; Replace the warm fop result with the cold image of the warm
2075      ;; fop result.
2076      (with-fop-stack t
2077        (let ((number (pop-stack)))
2078          (number-to-core number)))))
2079
2080 (define-cold-number-fop fop-single-float)
2081 (define-cold-number-fop fop-double-float)
2082 (define-cold-number-fop fop-integer)
2083 (define-cold-number-fop fop-small-integer)
2084 (define-cold-number-fop fop-word-integer)
2085 (define-cold-number-fop fop-byte-integer)
2086 (define-cold-number-fop fop-complex-single-float)
2087 (define-cold-number-fop fop-complex-double-float)
2088
2089 #!+long-float
2090 (define-cold-fop (fop-long-float)
2091   (ecase +backend-fasl-file-implementation+
2092     (:x86 ; (which has 80-bit long-float format)
2093      (prepare-for-fast-read-byte *fasl-input-stream*
2094        (let* ((des (allocate-unboxed-object *dynamic* sb!vm:n-word-bits
2095                                             (1- sb!vm:long-float-size)
2096                                             sb!vm:long-float-widetag))
2097               (low-bits (make-random-descriptor (fast-read-u-integer 4)))
2098               (high-bits (make-random-descriptor (fast-read-u-integer 4)))
2099               (exp-bits (make-random-descriptor (fast-read-s-integer 2))))
2100          (done-with-fast-read-byte)
2101          (write-wordindexed des sb!vm:long-float-value-slot low-bits)
2102          (write-wordindexed des (1+ sb!vm:long-float-value-slot) high-bits)
2103          (write-wordindexed des (+ 2 sb!vm:long-float-value-slot) exp-bits)
2104          des)))
2105     ;; This was supported in CMU CL, but isn't currently supported in
2106     ;; SBCL.
2107     #+nil
2108     (#.sb!c:sparc-fasl-file-implementation ; 128 bit long-float format
2109      (prepare-for-fast-read-byte *fasl-input-stream*
2110        (let* ((des (allocate-unboxed-object *dynamic* sb!vm:n-word-bits
2111                                             (1- sb!vm:long-float-size)
2112                                             sb!vm:long-float-widetag))
2113               (low-bits (make-random-descriptor (fast-read-u-integer 4)))
2114               (mid-bits (make-random-descriptor (fast-read-u-integer 4)))
2115               (high-bits (make-random-descriptor (fast-read-u-integer 4)))
2116               (exp-bits (make-random-descriptor (fast-read-s-integer 4))))
2117          (done-with-fast-read-byte)
2118          (write-wordindexed des sb!vm:long-float-value-slot exp-bits)
2119          (write-wordindexed des (1+ sb!vm:long-float-value-slot) high-bits)
2120          (write-wordindexed des (+ 2 sb!vm:long-float-value-slot) mid-bits)
2121          (write-wordindexed des (+ 3 sb!vm:long-float-value-slot) low-bits)
2122          des)))))
2123
2124 #!+long-float
2125 (define-cold-fop (fop-complex-long-float)
2126   (ecase +backend-fasl-file-implementation+
2127     (:x86 ; (which has 80-bit long-float format)
2128      (prepare-for-fast-read-byte *fasl-input-stream*
2129        (let* ((des (allocate-unboxed-object *dynamic* sb!vm:n-word-bits
2130                                             (1- sb!vm:complex-long-float-size)
2131                                             sb!vm:complex-long-float-widetag))
2132               (real-low-bits (make-random-descriptor (fast-read-u-integer 4)))
2133               (real-high-bits (make-random-descriptor (fast-read-u-integer 4)))
2134               (real-exp-bits (make-random-descriptor (fast-read-s-integer 2)))
2135               (imag-low-bits (make-random-descriptor (fast-read-u-integer 4)))
2136               (imag-high-bits (make-random-descriptor (fast-read-u-integer 4)))
2137               (imag-exp-bits (make-random-descriptor (fast-read-s-integer 2))))
2138          (done-with-fast-read-byte)
2139          (write-wordindexed des
2140                             sb!vm:complex-long-float-real-slot
2141                             real-low-bits)
2142          (write-wordindexed des
2143                             (1+ sb!vm:complex-long-float-real-slot)
2144                             real-high-bits)
2145          (write-wordindexed des
2146                             (+ 2 sb!vm:complex-long-float-real-slot)
2147                             real-exp-bits)
2148          (write-wordindexed des
2149                             sb!vm:complex-long-float-imag-slot
2150                             imag-low-bits)
2151          (write-wordindexed des
2152                             (1+ sb!vm:complex-long-float-imag-slot)
2153                             imag-high-bits)
2154          (write-wordindexed des
2155                             (+ 2 sb!vm:complex-long-float-imag-slot)
2156                             imag-exp-bits)
2157          des)))
2158     ;; This was supported in CMU CL, but isn't currently supported in SBCL.
2159     #+nil
2160     (#.sb!c:sparc-fasl-file-implementation ; 128 bit long-float format
2161      (prepare-for-fast-read-byte *fasl-input-stream*
2162        (let* ((des (allocate-unboxed-object *dynamic* sb!vm:n-word-bits
2163                                             (1- sb!vm:complex-long-float-size)
2164                                             sb!vm:complex-long-float-widetag))
2165               (real-low-bits (make-random-descriptor (fast-read-u-integer 4)))
2166               (real-mid-bits (make-random-descriptor (fast-read-u-integer 4)))
2167               (real-high-bits (make-random-descriptor (fast-read-u-integer 4)))
2168               (real-exp-bits (make-random-descriptor (fast-read-s-integer 4)))
2169               (imag-low-bits (make-random-descriptor (fast-read-u-integer 4)))
2170               (imag-mid-bits (make-random-descriptor (fast-read-u-integer 4)))
2171               (imag-high-bits (make-random-descriptor (fast-read-u-integer 4)))
2172               (imag-exp-bits (make-random-descriptor (fast-read-s-integer 4))))
2173          (done-with-fast-read-byte)
2174          (write-wordindexed des
2175                             sb!vm:complex-long-float-real-slot
2176                             real-exp-bits)
2177          (write-wordindexed des
2178                             (1+ sb!vm:complex-long-float-real-slot)
2179                             real-high-bits)
2180          (write-wordindexed des
2181                             (+ 2 sb!vm:complex-long-float-real-slot)
2182                             real-mid-bits)
2183          (write-wordindexed des
2184                             (+ 3 sb!vm:complex-long-float-real-slot)
2185                             real-low-bits)
2186          (write-wordindexed des
2187                             sb!vm:complex-long-float-real-slot
2188                             imag-exp-bits)
2189          (write-wordindexed des
2190                             (1+ sb!vm:complex-long-float-real-slot)
2191                             imag-high-bits)
2192          (write-wordindexed des
2193                             (+ 2 sb!vm:complex-long-float-real-slot)
2194                             imag-mid-bits)
2195          (write-wordindexed des
2196                             (+ 3 sb!vm:complex-long-float-real-slot)
2197                             imag-low-bits)
2198          des)))))
2199
2200 (define-cold-fop (fop-ratio)
2201   (let ((den (pop-stack)))
2202     (number-pair-to-core (pop-stack) den sb!vm:ratio-widetag)))
2203
2204 (define-cold-fop (fop-complex)
2205   (let ((im (pop-stack)))
2206     (number-pair-to-core (pop-stack) im sb!vm:complex-widetag)))
2207 \f
2208 ;;;; cold fops for calling (or not calling)
2209
2210 (not-cold-fop fop-eval)
2211 (not-cold-fop fop-eval-for-effect)
2212
2213 (defvar *load-time-value-counter*)
2214
2215 (define-cold-fop (fop-funcall)
2216   (unless (= (read-arg 1) 0)
2217     (error "You can't FOP-FUNCALL arbitrary stuff in cold load."))
2218   (let ((counter *load-time-value-counter*))
2219     (cold-push (cold-cons
2220                 (cold-intern :load-time-value)
2221                 (cold-cons
2222                  (pop-stack)
2223                  (cold-cons
2224                   (number-to-core counter)
2225                   *nil-descriptor*)))
2226                *current-reversed-cold-toplevels*)
2227     (setf *load-time-value-counter* (1+ counter))
2228     (make-descriptor 0 0 nil counter)))
2229
2230 (defun finalize-load-time-value-noise ()
2231   (cold-set (cold-intern '*!load-time-values*)
2232             (allocate-vector-object *dynamic*
2233                                     sb!vm:n-word-bits
2234                                     *load-time-value-counter*
2235                                     sb!vm:simple-vector-widetag)))
2236
2237 (define-cold-fop (fop-funcall-for-effect :pushp nil)
2238   (if (= (read-arg 1) 0)
2239       (cold-push (pop-stack)
2240                  *current-reversed-cold-toplevels*)
2241       (error "You can't FOP-FUNCALL arbitrary stuff in cold load.")))
2242 \f
2243 ;;;; cold fops for fixing up circularities
2244
2245 (define-cold-fop (fop-rplaca :pushp nil)
2246   (let ((obj (svref *current-fop-table* (read-arg 4)))
2247         (idx (read-arg 4)))
2248     (write-memory (cold-nthcdr idx obj) (pop-stack))))
2249
2250 (define-cold-fop (fop-rplacd :pushp nil)
2251   (let ((obj (svref *current-fop-table* (read-arg 4)))
2252         (idx (read-arg 4)))
2253     (write-wordindexed (cold-nthcdr idx obj) 1 (pop-stack))))
2254
2255 (define-cold-fop (fop-svset :pushp nil)
2256   (let ((obj (svref *current-fop-table* (read-arg 4)))
2257         (idx (read-arg 4)))
2258     (write-wordindexed obj
2259                    (+ idx
2260                       (ecase (descriptor-lowtag obj)
2261                         (#.sb!vm:instance-pointer-lowtag 1)
2262                         (#.sb!vm:other-pointer-lowtag 2)))
2263                    (pop-stack))))
2264
2265 (define-cold-fop (fop-structset :pushp nil)
2266   (let ((obj (svref *current-fop-table* (read-arg 4)))
2267         (idx (read-arg 4)))
2268     (write-wordindexed obj (1+ idx) (pop-stack))))
2269
2270 ;;; In the original CMUCL code, this actually explicitly declared PUSHP
2271 ;;; to be T, even though that's what it defaults to in DEFINE-COLD-FOP.
2272 (define-cold-fop (fop-nthcdr)
2273   (cold-nthcdr (read-arg 4) (pop-stack)))
2274
2275 (defun cold-nthcdr (index obj)
2276   (dotimes (i index)
2277     (setq obj (read-wordindexed obj 1)))
2278   obj)
2279 \f
2280 ;;;; cold fops for loading code objects and functions
2281
2282 ;;; the names of things which have had COLD-FSET used on them already
2283 ;;; (used to make sure that we don't try to statically link a name to
2284 ;;; more than one definition)
2285 (defparameter *cold-fset-warm-names*
2286   ;; This can't be an EQL hash table because names can be conses, e.g.
2287   ;; (SETF CAR).
2288   (make-hash-table :test 'equal))
2289
2290 (define-cold-fop (fop-fset :pushp nil)
2291   (let* ((fn (pop-stack))
2292          (cold-name (pop-stack))
2293          (warm-name (warm-fun-name cold-name)))
2294     (if (gethash warm-name *cold-fset-warm-names*)
2295         (error "duplicate COLD-FSET for ~S" warm-name)
2296         (setf (gethash warm-name *cold-fset-warm-names*) t))
2297     (static-fset cold-name fn)))
2298
2299 (define-cold-fop (fop-fdefinition)
2300   (cold-fdefinition-object (pop-stack)))
2301
2302 (define-cold-fop (fop-sanctify-for-execution)
2303   (pop-stack))
2304
2305 ;;; Setting this variable shows what code looks like before any
2306 ;;; fixups (or function headers) are applied.
2307 #!+sb-show (defvar *show-pre-fixup-code-p* nil)
2308
2309 ;;; FIXME: The logic here should be converted into a function
2310 ;;; COLD-CODE-FOP-GUTS (NCONST CODE-SIZE) called by DEFINE-COLD-FOP
2311 ;;; FOP-CODE and DEFINE-COLD-FOP FOP-SMALL-CODE, so that
2312 ;;; variable-capture nastiness like (LET ((NCONST ,NCONST) ..) ..)
2313 ;;; doesn't keep me awake at night.
2314 (defmacro define-cold-code-fop (name nconst code-size)
2315   `(define-cold-fop (,name)
2316      (let* ((nconst ,nconst)
2317             (code-size ,code-size)
2318             (raw-header-n-words (+ sb!vm:code-trace-table-offset-slot nconst))
2319             (header-n-words
2320              ;; Note: we round the number of constants up to ensure
2321              ;; that the code vector will be properly aligned.
2322              (round-up raw-header-n-words 2))
2323             (des (allocate-cold-descriptor *dynamic*
2324                                            (+ (ash header-n-words
2325                                                    sb!vm:word-shift)
2326                                               code-size)
2327                                            sb!vm:other-pointer-lowtag)))
2328        (write-memory des
2329                      (make-other-immediate-descriptor
2330                       header-n-words sb!vm:code-header-widetag))
2331        (write-wordindexed des
2332                           sb!vm:code-code-size-slot
2333                           (make-fixnum-descriptor
2334                            (ash (+ code-size (1- (ash 1 sb!vm:word-shift)))
2335                                 (- sb!vm:word-shift))))
2336        (write-wordindexed des sb!vm:code-entry-points-slot *nil-descriptor*)
2337        (write-wordindexed des sb!vm:code-debug-info-slot (pop-stack))
2338        (when (oddp raw-header-n-words)
2339          (write-wordindexed des
2340                             raw-header-n-words
2341                             (make-random-descriptor 0)))
2342        (do ((index (1- raw-header-n-words) (1- index)))
2343            ((< index sb!vm:code-trace-table-offset-slot))
2344          (write-wordindexed des index (pop-stack)))
2345        (let* ((start (+ (descriptor-byte-offset des)
2346                         (ash header-n-words sb!vm:word-shift)))
2347               (end (+ start code-size)))
2348          (read-sequence-or-die (descriptor-bytes des)
2349                                *fasl-input-stream*
2350                                :start start
2351                                :end end)
2352          #!+sb-show
2353          (when *show-pre-fixup-code-p*
2354            (format *trace-output*
2355                    "~&/raw code from code-fop ~W ~W:~%"
2356                    nconst
2357                    code-size)
2358            (do ((i start (+ i sb!vm:n-word-bytes)))
2359                ((>= i end))
2360              (format *trace-output*
2361                      "/#X~8,'0x: #X~8,'0x~%"
2362                      (+ i (gspace-byte-address (descriptor-gspace des)))
2363                      (byte-vector-ref-32 (descriptor-bytes des) i)))))
2364        des)))
2365
2366 (define-cold-code-fop fop-code (read-arg 4) (read-arg 4))
2367
2368 (define-cold-code-fop fop-small-code (read-arg 1) (read-arg 2))
2369
2370 (clone-cold-fop (fop-alter-code :pushp nil)
2371                 (fop-byte-alter-code)
2372   (let ((slot (clone-arg))
2373         (value (pop-stack))
2374         (code (pop-stack)))
2375     (write-wordindexed code slot value)))
2376
2377 (define-cold-fop (fop-fun-entry)
2378   (let* ((type (pop-stack))
2379          (arglist (pop-stack))
2380          (name (pop-stack))
2381          (code-object (pop-stack))
2382          (offset (calc-offset code-object (read-arg 4)))
2383          (fn (descriptor-beyond code-object
2384                                 offset
2385                                 sb!vm:fun-pointer-lowtag))
2386          (next (read-wordindexed code-object sb!vm:code-entry-points-slot)))
2387     (unless (zerop (logand offset sb!vm:lowtag-mask))
2388       (error "unaligned function entry: ~S at #X~X" name offset))
2389     (write-wordindexed code-object sb!vm:code-entry-points-slot fn)
2390     (write-memory fn
2391                   (make-other-immediate-descriptor
2392                    (ash offset (- sb!vm:word-shift))
2393                    sb!vm:simple-fun-header-widetag))
2394     (write-wordindexed fn
2395                        sb!vm:simple-fun-self-slot
2396                        ;; KLUDGE: Wiring decisions like this in at
2397                        ;; this level ("if it's an x86") instead of a
2398                        ;; higher level of abstraction ("if it has such
2399                        ;; and such relocation peculiarities (which
2400                        ;; happen to be confined to the x86)") is bad.
2401                        ;; It would be nice if the code were instead
2402                        ;; conditional on some more descriptive
2403                        ;; feature, :STICKY-CODE or
2404                        ;; :LOAD-GC-INTERACTION or something.
2405                        ;;
2406                        ;; FIXME: The X86 definition of the function
2407                        ;; self slot breaks everything object.tex says
2408                        ;; about it. (As far as I can tell, the X86
2409                        ;; definition makes it a pointer to the actual
2410                        ;; code instead of a pointer back to the object
2411                        ;; itself.) Ask on the mailing list whether
2412                        ;; this is documented somewhere, and if not,
2413                        ;; try to reverse engineer some documentation.
2414                        #!-x86
2415                        ;; a pointer back to the function object, as
2416                        ;; described in CMU CL
2417                        ;; src/docs/internals/object.tex
2418                        fn
2419                        #!+x86
2420                        ;; KLUDGE: a pointer to the actual code of the
2421                        ;; object, as described nowhere that I can find
2422                        ;; -- WHN 19990907
2423                        (make-random-descriptor
2424                         (+ (descriptor-bits fn)
2425                            (- (ash sb!vm:simple-fun-code-offset
2426                                    sb!vm:word-shift)
2427                               ;; FIXME: We should mask out the type
2428                               ;; bits, not assume we know what they
2429                               ;; are and subtract them out this way.
2430                               sb!vm:fun-pointer-lowtag))))
2431     (write-wordindexed fn sb!vm:simple-fun-next-slot next)
2432     (write-wordindexed fn sb!vm:simple-fun-name-slot name)
2433     (write-wordindexed fn sb!vm:simple-fun-arglist-slot arglist)
2434     (write-wordindexed fn sb!vm:simple-fun-type-slot type)
2435     fn))
2436
2437 (define-cold-fop (fop-foreign-fixup)
2438   (let* ((kind (pop-stack))
2439          (code-object (pop-stack))
2440          (len (read-arg 1))
2441          (sym (make-string len)))
2442     (read-string-as-bytes *fasl-input-stream* sym)
2443     (let ((offset (read-arg 4))
2444           (value (cold-foreign-symbol-address-as-integer sym)))
2445       (do-cold-fixup code-object offset value kind))
2446     code-object))
2447
2448 (define-cold-fop (fop-assembler-code)
2449   (let* ((length (read-arg 4))
2450          (header-n-words
2451           ;; Note: we round the number of constants up to ensure that
2452           ;; the code vector will be properly aligned.
2453           (round-up sb!vm:code-constants-offset 2))
2454          (des (allocate-cold-descriptor *read-only*
2455                                         (+ (ash header-n-words
2456                                                 sb!vm:word-shift)
2457                                            length)
2458                                         sb!vm:other-pointer-lowtag)))
2459     (write-memory des
2460                   (make-other-immediate-descriptor
2461                    header-n-words sb!vm:code-header-widetag))
2462     (write-wordindexed des
2463                        sb!vm:code-code-size-slot
2464                        (make-fixnum-descriptor
2465                         (ash (+ length (1- (ash 1 sb!vm:word-shift)))
2466                              (- sb!vm:word-shift))))
2467     (write-wordindexed des sb!vm:code-entry-points-slot *nil-descriptor*)
2468     (write-wordindexed des sb!vm:code-debug-info-slot *nil-descriptor*)
2469
2470     (let* ((start (+ (descriptor-byte-offset des)
2471                      (ash header-n-words sb!vm:word-shift)))
2472            (end (+ start length)))
2473       (read-sequence-or-die (descriptor-bytes des)
2474                             *fasl-input-stream*
2475                             :start start
2476                             :end end))
2477     des))
2478
2479 (define-cold-fop (fop-assembler-routine)
2480   (let* ((routine (pop-stack))
2481          (des (pop-stack))
2482          (offset (calc-offset des (read-arg 4))))
2483     (record-cold-assembler-routine
2484      routine
2485      (+ (logandc2 (descriptor-bits des) sb!vm:lowtag-mask) offset))
2486     des))
2487
2488 (define-cold-fop (fop-assembler-fixup)
2489   (let* ((routine (pop-stack))
2490          (kind (pop-stack))
2491          (code-object (pop-stack))
2492          (offset (read-arg 4)))
2493     (record-cold-assembler-fixup routine code-object offset kind)
2494     code-object))
2495
2496 (define-cold-fop (fop-code-object-fixup)
2497   (let* ((kind (pop-stack))
2498          (code-object (pop-stack))
2499          (offset (read-arg 4))
2500          (value (descriptor-bits code-object)))
2501     (do-cold-fixup code-object offset value kind)
2502     code-object))
2503 \f
2504 ;;;; emitting C header file
2505
2506 (defun tailwise-equal (string tail)
2507   (and (>= (length string) (length tail))
2508        (string= string tail :start1 (- (length string) (length tail)))))
2509
2510 (defun write-c-header ()
2511
2512   ;; writing beginning boilerplate
2513   (format t "/*~%")
2514   (dolist (line
2515            '("This is a machine-generated file. Please do not edit it by hand."
2516              ""
2517              "This file contains low-level information about the"
2518              "internals of a particular version and configuration"
2519              "of SBCL. It is used by the C compiler to create a runtime"
2520              "support environment, an executable program in the host"
2521              "operating system's native format, which can then be used to"
2522              "load and run 'core' files, which are basically programs"
2523              "in SBCL's own format."))
2524     (format t " * ~A~%" line))
2525   (format t " */~%")
2526   (terpri)
2527   (format t "#ifndef _SBCL_H_~%#define _SBCL_H_~%")
2528   (terpri)
2529
2530   ;; propagating *SHEBANG-FEATURES* into C-level #define's
2531   (dolist (shebang-feature-name (sort (mapcar #'symbol-name
2532                                               sb-cold:*shebang-features*)
2533                                       #'string<))
2534     (format t
2535             "#define LISP_FEATURE_~A~%"
2536             (substitute #\_ #\- shebang-feature-name)))
2537   (terpri)
2538
2539   ;; writing miscellaneous constants
2540   (format t "#define SBCL_CORE_VERSION_INTEGER ~D~%" sbcl-core-version-integer)
2541   (format t
2542           "#define SBCL_VERSION_STRING ~S~%"
2543           (sb!xc:lisp-implementation-version))
2544   (format t "#define CORE_MAGIC 0x~X~%" core-magic)
2545   (terpri)
2546   ;; FIXME: Other things from core.h should be defined here too:
2547   ;; #define CORE_END 3840
2548   ;; #define CORE_NDIRECTORY 3861
2549   ;; #define CORE_VALIDATE 3845
2550   ;; #define CORE_VERSION 3860
2551   ;; #define CORE_MACHINE_STATE 3862
2552   ;; (Except that some of them are obsolete and should be deleted instead.)
2553   ;; also
2554   ;; #define DYNAMIC_SPACE_ID (1)
2555   ;; #define STATIC_SPACE_ID (2)
2556   ;; #define READ_ONLY_SPACE_ID (3)
2557
2558   ;; writing entire families of named constants from SB!VM
2559   (let ((constants nil))
2560     (do-external-symbols (symbol (find-package "SB!VM"))
2561       (when (constantp symbol)
2562         (let ((name (symbol-name symbol)))
2563           (labels (;; shared machinery
2564                    (record (string priority)
2565                      (push (list string
2566                                  priority
2567                                  (symbol-value symbol)
2568                                  (documentation symbol 'variable))
2569                            constants))
2570                    ;; machinery for old-style CMU CL Lisp-to-C
2571                    ;; arbitrary renaming, being phased out in favor of
2572                    ;; the newer systematic RECORD-WITH-TRANSLATED-NAME
2573                    ;; renaming
2574                    (record-with-munged-name (prefix string priority)
2575                      (record (concatenate
2576                               'simple-string
2577                               prefix
2578                               (delete #\- (string-capitalize string)))
2579                              priority))
2580                    (maybe-record-with-munged-name (tail prefix priority)
2581                      (when (tailwise-equal name tail)
2582                        (record-with-munged-name prefix
2583                                                 (subseq name 0
2584                                                         (- (length name)
2585                                                            (length tail)))
2586                                                 priority)))
2587                    ;; machinery for new-style SBCL Lisp-to-C naming
2588                    (record-with-translated-name (priority)
2589                      (record (substitute #\_ #\- name)
2590                              priority))
2591                    (maybe-record-with-translated-name (suffixes priority)
2592                      (when (some (lambda (suffix)
2593                                    (tailwise-equal name suffix))
2594                                  suffixes)
2595                        (record-with-translated-name priority))))
2596
2597             (maybe-record-with-translated-name '("-LOWTAG") 0)
2598             (maybe-record-with-translated-name '("-WIDETAG") 1)
2599             (maybe-record-with-munged-name "-FLAG" "flag_" 2)
2600             (maybe-record-with-munged-name "-TRAP" "trap_" 3)
2601             (maybe-record-with-munged-name "-SUBTYPE" "subtype_" 4)
2602             (maybe-record-with-munged-name "-SC-NUMBER" "sc_" 5)
2603             (maybe-record-with-translated-name '("-START" "-END") 6)))))
2604     (setf constants
2605           (sort constants
2606                 (lambda (const1 const2)
2607                   (if (= (second const1) (second const2))
2608                       (< (third const1) (third const2))
2609                       (< (second const1) (second const2))))))
2610     (let ((prev-priority (second (car constants))))
2611       (dolist (const constants)
2612         (destructuring-bind (name priority value doc) const
2613           (unless (= prev-priority priority)
2614             (terpri)
2615             (setf prev-priority priority))
2616           (format t "#define ~A " name)
2617           (format t 
2618                   ;; KLUDGE: As of sbcl-0.6.7.14, we're dumping two
2619                   ;; different kinds of values here, (1) small codes
2620                   ;; and (2) machine addresses. The small codes can be
2621                   ;; dumped as bare integer values. The large machine
2622                   ;; addresses might cause problems if they're large
2623                   ;; and represented as (signed) C integers, so we
2624                   ;; want to force them to be unsigned. We do that by
2625                   ;; wrapping them in the LISPOBJ macro. (We could do
2626                   ;; it with a bare "(unsigned)" cast, except that
2627                   ;; this header file is used not only in C files, but
2628                   ;; also in assembly files, which don't understand
2629                   ;; the cast syntax. The LISPOBJ macro goes away in
2630                   ;; assembly files, but that shouldn't matter because
2631                   ;; we don't do arithmetic on address constants in
2632                   ;; assembly files. See? It really is a kludge..) --
2633                   ;; WHN 2000-10-18
2634                   (let (;; cutoff for treatment as a small code
2635                         (cutoff (expt 2 16)))
2636                     (cond ((minusp value)
2637                            (error "stub: negative values unsupported"))
2638                           ((< value cutoff)
2639                            "~D")
2640                           (t
2641                            "LISPOBJ(~D)")))
2642                   value)
2643           (format t " /* 0x~X */~@[  /* ~A */~]~%" value doc))))
2644     (terpri))
2645
2646   ;; writing information about internal errors
2647   (let ((internal-errors sb!c:*backend-internal-errors*))
2648     (dotimes (i (length internal-errors))
2649       (let ((current-error (aref internal-errors i)))
2650         ;; FIXME: this UNLESS should go away (see also FIXME in
2651         ;; interr.lisp) -- APD, 2002-03-05
2652         (unless (eq nil (car current-error))
2653           (format t "#define ~A ~D~%"
2654                   (substitute #\_ #\- (symbol-name (car current-error)))
2655                   i)))))
2656   (terpri)
2657
2658   ;; FIXME: The SPARC has a PSEUDO-ATOMIC-TRAP that differs between
2659   ;; platforms. If we export this from the SB!VM package, it gets
2660   ;; written out as #define trap_PseudoAtomic, which is confusing as
2661   ;; the runtime treats trap_ as the prefix for illegal instruction
2662   ;; type things. We therefore don't export it, but instead do
2663   #!+sparc
2664   (when (boundp 'sb!vm::pseudo-atomic-trap)
2665     (format t "#define PSEUDO_ATOMIC_TRAP ~D /* 0x~:*~X */~%" sb!vm::pseudo-atomic-trap)
2666     (terpri))
2667   ;; possibly this is another candidate for a rename (to
2668   ;; pseudo-atomic-trap-number or pseudo-atomic-magic-constant
2669   ;; [possibly applicable to other platforms])
2670
2671   ;; writing primitive object layouts
2672   (let ((structs (sort (copy-list sb!vm:*primitive-objects*) #'string<
2673                        :key (lambda (obj)
2674                               (symbol-name
2675                                (sb!vm:primitive-object-name obj))))))
2676     (format t "#ifndef LANGUAGE_ASSEMBLY~2%")
2677     (format t "#define LISPOBJ(x) ((lispobj)x)~2%")
2678     (dolist (obj structs)
2679       (format t
2680               "struct ~A {~%"
2681               (nsubstitute #\_ #\-
2682               (string-downcase (string (sb!vm:primitive-object-name obj)))))
2683       (when (sb!vm:primitive-object-widetag obj)
2684         (format t "    lispobj header;~%"))
2685       (dolist (slot (sb!vm:primitive-object-slots obj))
2686         (format t "    ~A ~A~@[[1]~];~%"
2687         (getf (sb!vm:slot-options slot) :c-type "lispobj")
2688         (nsubstitute #\_ #\-
2689                      (string-downcase (string (sb!vm:slot-name slot))))
2690         (sb!vm:slot-rest-p slot)))
2691       (format t "};~2%"))
2692     (format t "#else /* LANGUAGE_ASSEMBLY */~2%")
2693     (format t "#define LISPOBJ(thing) thing~2%")
2694     (dolist (obj structs)
2695       (let ((name (sb!vm:primitive-object-name obj))
2696       (lowtag (eval (sb!vm:primitive-object-lowtag obj))))
2697         (when lowtag
2698         (dolist (slot (sb!vm:primitive-object-slots obj))
2699           (format t "#define ~A_~A_OFFSET ~D~%"
2700                   (substitute #\_ #\- (string name))
2701                   (substitute #\_ #\- (string (sb!vm:slot-name slot)))
2702                   (- (* (sb!vm:slot-offset slot) sb!vm:n-word-bytes) lowtag)))
2703         (terpri))))
2704     (format t "#endif /* LANGUAGE_ASSEMBLY */~2%"))
2705
2706   ;; writing static symbol offsets
2707   (dolist (symbol (cons nil sb!vm:*static-symbols*))
2708     ;; FIXME: It would be nice to use longer names than NIL and
2709     ;; (particularly) T in #define statements.
2710     (format t "#define ~A LISPOBJ(0x~X)~%"
2711             (nsubstitute #\_ #\-
2712                          (remove-if (lambda (char)
2713                                       (member char '(#\% #\* #\. #\!)))
2714                                     (symbol-name symbol)))
2715             (if *static*                ; if we ran GENESIS
2716               ;; We actually ran GENESIS, use the real value.
2717               (descriptor-bits (cold-intern symbol))
2718               ;; We didn't run GENESIS, so guess at the address.
2719               (+ sb!vm:static-space-start
2720                  sb!vm:n-word-bytes
2721                  sb!vm:other-pointer-lowtag
2722                  (if symbol (sb!vm:static-symbol-offset symbol) 0)))))
2723
2724   ;; Voila.
2725   (format t "~%#endif~%"))
2726 \f
2727 ;;;; writing map file
2728
2729 ;;; Write a map file describing the cold load. Some of this
2730 ;;; information is subject to change due to relocating GC, but even so
2731 ;;; it can be very handy when attempting to troubleshoot the early
2732 ;;; stages of cold load.
2733 (defun write-map ()
2734   (let ((*print-pretty* nil)
2735         (*print-case* :upcase))
2736     (format t "assembler routines defined in core image:~2%")
2737     (dolist (routine (sort (copy-list *cold-assembler-routines*) #'<
2738                            :key #'cdr))
2739       (format t "#X~8,'0X: ~S~%" (cdr routine) (car routine)))
2740     (let ((funs nil)
2741           (undefs nil))
2742       (maphash (lambda (name fdefn)
2743                  (let ((fun (read-wordindexed fdefn
2744                                               sb!vm:fdefn-fun-slot)))
2745                    (if (= (descriptor-bits fun)
2746                           (descriptor-bits *nil-descriptor*))
2747                        (push name undefs)
2748                        (let ((addr (read-wordindexed
2749                                     fdefn sb!vm:fdefn-raw-addr-slot)))
2750                          (push (cons name (descriptor-bits addr))
2751                                funs)))))
2752                *cold-fdefn-objects*)
2753       (format t "~%~|~%initially defined functions:~2%")
2754       (setf funs (sort funs #'< :key #'cdr))
2755       (dolist (info funs)
2756         (format t "0x~8,'0X: ~S   #X~8,'0X~%" (cdr info) (car info)
2757                 (- (cdr info) #x17)))
2758       (format t
2759 "~%~|
2760 (a note about initially undefined function references: These functions
2761 are referred to by code which is installed by GENESIS, but they are not
2762 installed by GENESIS. This is not necessarily a problem; functions can
2763 be defined later, by cold init toplevel forms, or in files compiled and
2764 loaded at warm init, or elsewhere. As long as they are defined before
2765 they are called, everything should be OK. Things are also OK if the
2766 cross-compiler knew their inline definition and used that everywhere
2767 that they were called before the out-of-line definition is installed,
2768 as is fairly common for structure accessors.)
2769 initially undefined function references:~2%")
2770
2771       (setf undefs (sort undefs #'string< :key #'fun-name-block-name))
2772       (dolist (name undefs)
2773         (format t "~S~%" name)))
2774
2775     (format t "~%~|~%layout names:~2%")
2776     (collect ((stuff))
2777       (maphash (lambda (name gorp)
2778                  (declare (ignore name))
2779                  (stuff (cons (descriptor-bits (car gorp))
2780                               (cdr gorp))))
2781                *cold-layouts*)
2782       (dolist (x (sort (stuff) #'< :key #'car))
2783         (apply #'format t "~8,'0X: ~S[~D]~%~10T~S~%" x))))
2784
2785   (values))
2786 \f
2787 ;;;; writing core file
2788
2789 (defvar *core-file*)
2790 (defvar *data-page*)
2791
2792 ;;; KLUDGE: These numbers correspond to values in core.h. If they're
2793 ;;; documented anywhere, I haven't found it. (I haven't tried very
2794 ;;; hard yet.) -- WHN 19990826
2795 (defparameter version-entry-type-code 3860)
2796 (defparameter validate-entry-type-code 3845)
2797 (defparameter directory-entry-type-code 3841)
2798 (defparameter new-directory-entry-type-code 3861)
2799 (defparameter initial-fun-entry-type-code 3863)
2800 (defparameter end-entry-type-code 3840)
2801
2802 (declaim (ftype (function (sb!vm:word) sb!vm:word) write-word))
2803 (defun write-word (num)
2804   (ecase sb!c:*backend-byte-order*
2805     (:little-endian
2806      (dotimes (i 4)
2807        (write-byte (ldb (byte 8 (* i 8)) num) *core-file*)))
2808     (:big-endian
2809      (dotimes (i 4)
2810        (write-byte (ldb (byte 8 (* (- 3 i) 8)) num) *core-file*))))
2811   num)
2812
2813 (defun advance-to-page ()
2814   (force-output *core-file*)
2815   (file-position *core-file*
2816                  (round-up (file-position *core-file*)
2817                            sb!c:*backend-page-size*)))
2818
2819 (defun output-gspace (gspace)
2820   (force-output *core-file*)
2821   (let* ((posn (file-position *core-file*))
2822          (bytes (* (gspace-free-word-index gspace) sb!vm:n-word-bytes))
2823          (pages (ceiling bytes sb!c:*backend-page-size*))
2824          (total-bytes (* pages sb!c:*backend-page-size*)))
2825
2826     (file-position *core-file*
2827                    (* sb!c:*backend-page-size* (1+ *data-page*)))
2828     (format t
2829             "writing ~S byte~:P [~S page~:P] from ~S~%"
2830             total-bytes
2831             pages
2832             gspace)
2833     (force-output)
2834
2835     ;; Note: It is assumed that the GSPACE allocation routines always
2836     ;; allocate whole pages (of size *target-page-size*) and that any
2837     ;; empty gspace between the free pointer and the end of page will
2838     ;; be zero-filled. This will always be true under Mach on machines
2839     ;; where the page size is equal. (RT is 4K, PMAX is 4K, Sun 3 is
2840     ;; 8K).
2841     (write-sequence (gspace-bytes gspace) *core-file* :end total-bytes)
2842     (force-output *core-file*)
2843     (file-position *core-file* posn)
2844
2845     ;; Write part of a (new) directory entry which looks like this:
2846     ;;   GSPACE IDENTIFIER
2847     ;;   WORD COUNT
2848     ;;   DATA PAGE
2849     ;;   ADDRESS
2850     ;;   PAGE COUNT
2851     (write-word (gspace-identifier gspace))
2852     (write-word (gspace-free-word-index gspace))
2853     (write-word *data-page*)
2854     (multiple-value-bind (floor rem)
2855         (floor (gspace-byte-address gspace) sb!c:*backend-page-size*)
2856       (aver (zerop rem))
2857       (write-word floor))
2858     (write-word pages)
2859
2860     (incf *data-page* pages)))
2861
2862 ;;; Create a core file created from the cold loaded image. (This is
2863 ;;; the "initial core file" because core files could be created later
2864 ;;; by executing SAVE-LISP in a running system, perhaps after we've
2865 ;;; added some functionality to the system.)
2866 (declaim (ftype (function (string)) write-initial-core-file))
2867 (defun write-initial-core-file (filename)
2868
2869   (let ((filenamestring (namestring filename))
2870         (*data-page* 0))
2871
2872     (format t
2873             "[building initial core file in ~S: ~%"
2874             filenamestring)
2875     (force-output)
2876
2877     (with-open-file (*core-file* filenamestring
2878                                  :direction :output
2879                                  :element-type '(unsigned-byte 8)
2880                                  :if-exists :rename-and-delete)
2881
2882       ;; Write the magic number.
2883       (write-word core-magic)
2884
2885       ;; Write the Version entry.
2886       (write-word version-entry-type-code)
2887       (write-word 3)
2888       (write-word sbcl-core-version-integer)
2889
2890       ;; Write the New Directory entry header.
2891       (write-word new-directory-entry-type-code)
2892       (write-word 17) ; length = (5 words/space) * 3 spaces + 2 for header.
2893
2894       (output-gspace *read-only*)
2895       (output-gspace *static*)
2896       (output-gspace *dynamic*)
2897
2898       ;; Write the initial function.
2899       (write-word initial-fun-entry-type-code)
2900       (write-word 3)
2901       (let* ((cold-name (cold-intern '!cold-init))
2902              (cold-fdefn (cold-fdefinition-object cold-name))
2903              (initial-fun (read-wordindexed cold-fdefn
2904                                             sb!vm:fdefn-fun-slot)))
2905         (format t
2906                 "~&/(DESCRIPTOR-BITS INITIAL-FUN)=#X~X~%"
2907                 (descriptor-bits initial-fun))
2908         (write-word (descriptor-bits initial-fun)))
2909
2910       ;; Write the End entry.
2911       (write-word end-entry-type-code)
2912       (write-word 2)))
2913
2914   (format t "done]~%")
2915   (force-output)
2916   (/show "leaving WRITE-INITIAL-CORE-FILE")
2917   (values))
2918 \f
2919 ;;;; the actual GENESIS function
2920
2921 ;;; Read the FASL files in OBJECT-FILE-NAMES and produce a Lisp core,
2922 ;;; and/or information about a Lisp core, therefrom.
2923 ;;;
2924 ;;; input file arguments:
2925 ;;;   SYMBOL-TABLE-FILE-NAME names a UNIX-style .nm file *with* *any*
2926 ;;;     *tab* *characters* *converted* *to* *spaces*. (We push
2927 ;;;     responsibility for removing tabs out to the caller it's
2928 ;;;     trivial to remove them using UNIX command line tools like
2929 ;;;     sed, whereas it's a headache to do it portably in Lisp because
2930 ;;;     #\TAB is not a STANDARD-CHAR.) If this file is not supplied,
2931 ;;;     a core file cannot be built (but a C header file can be).
2932 ;;;
2933 ;;; output files arguments (any of which may be NIL to suppress output):
2934 ;;;   CORE-FILE-NAME gets a Lisp core.
2935 ;;;   C-HEADER-FILE-NAME gets a C header file, traditionally called
2936 ;;;     internals.h, which is used by the C compiler when constructing
2937 ;;;     the executable which will load the core.
2938 ;;;   MAP-FILE-NAME gets (?) a map file. (dunno about this -- WHN 19990815)
2939 ;;;
2940 ;;; FIXME: GENESIS doesn't belong in SB!VM. Perhaps in %KERNEL for now,
2941 ;;; perhaps eventually in SB-LD or SB-BOOT.
2942 (defun sb!vm:genesis (&key
2943                       object-file-names
2944                       symbol-table-file-name
2945                       core-file-name
2946                       map-file-name
2947                       c-header-file-name)
2948
2949   (when (and core-file-name
2950              (not symbol-table-file-name))
2951     (error "can't output a core file without symbol table file input"))
2952
2953   (format t
2954           "~&beginning GENESIS, ~A~%"
2955           (if core-file-name
2956             ;; Note: This output summarizing what we're doing is
2957             ;; somewhat telegraphic in style, not meant to imply that
2958             ;; we're not e.g. also creating a header file when we
2959             ;; create a core.
2960             (format nil "creating core ~S" core-file-name)
2961             (format nil "creating header ~S" c-header-file-name)))
2962
2963   (let* ((*cold-foreign-symbol-table* (make-hash-table :test 'equal)))
2964
2965     ;; Read symbol table, if any.
2966     (when symbol-table-file-name
2967       (load-cold-foreign-symbol-table symbol-table-file-name))
2968
2969     ;; Now that we've successfully read our only input file (by
2970     ;; loading the symbol table, if any), it's a good time to ensure
2971     ;; that there'll be someplace for our output files to go when
2972     ;; we're done.
2973     (flet ((frob (filename)
2974              (when filename
2975                (ensure-directories-exist filename :verbose t))))
2976       (frob core-file-name)
2977       (frob map-file-name)
2978       (frob c-header-file-name))
2979
2980     ;; (This shouldn't matter in normal use, since GENESIS normally
2981     ;; only runs once in any given Lisp image, but it could reduce
2982     ;; confusion if we ever experiment with running, tweaking, and
2983     ;; rerunning genesis interactively.)
2984     (do-all-symbols (sym)
2985       (remprop sym 'cold-intern-info))
2986
2987     (let* ((*foreign-symbol-placeholder-value* (if core-file-name nil 0))
2988            (*load-time-value-counter* 0)
2989            (*cold-fdefn-objects* (make-hash-table :test 'equal))
2990            (*cold-symbols* (make-hash-table :test 'equal))
2991            (*cold-package-symbols* nil)
2992            (*read-only* (make-gspace :read-only
2993                                      read-only-space-id
2994                                      sb!vm:read-only-space-start))
2995            (*static*    (make-gspace :static
2996                                      static-space-id
2997                                      sb!vm:static-space-start))
2998            (*dynamic*   (make-gspace :dynamic
2999                                      dynamic-space-id
3000                                      #!+gencgc sb!vm:dynamic-space-start
3001                                      #!-gencgc sb!vm:dynamic-0-space-start))
3002            (*nil-descriptor* (make-nil-descriptor))
3003            (*current-reversed-cold-toplevels* *nil-descriptor*)
3004            (*unbound-marker* (make-other-immediate-descriptor
3005                               0
3006                               sb!vm:unbound-marker-widetag))
3007            *cold-assembler-fixups*
3008            *cold-assembler-routines*
3009            #!+x86 *load-time-code-fixups*)
3010
3011       ;; Prepare for cold load.
3012       (initialize-non-nil-symbols)
3013       (initialize-layouts)
3014       (initialize-static-fns)
3015
3016       ;; Initialize the *COLD-SYMBOLS* system with the information
3017       ;; from package-data-list.lisp-expr and
3018       ;; common-lisp-exports.lisp-expr.
3019       ;;
3020       ;; Why do things this way? Historically, the *COLD-SYMBOLS*
3021       ;; machinery was designed and implemented in CMU CL long before
3022       ;; I (WHN) ever heard of CMU CL. It dumped symbols and packages
3023       ;; iff they were used in the cold image. When I added the
3024       ;; package-data-list.lisp-expr mechanism, the idea was to
3025       ;; centralize all information about packages and exports. Thus,
3026       ;; it was the natural place for information even about packages
3027       ;; (such as SB!PCL and SB!WALKER) which aren't used much until
3028       ;; after cold load. This didn't quite match the CMU CL approach
3029       ;; of filling *COLD-SYMBOLS* with symbols which appear in the
3030       ;; cold image and then dumping only those symbols. By explicitly
3031       ;; putting all the symbols from package-data-list.lisp-expr and
3032       ;; from common-lisp-exports.lisp-expr into *COLD-SYMBOLS* here,
3033       ;; we feed our centralized symbol information into the old CMU
3034       ;; CL code without having to change the old CMU CL code too
3035       ;; much. (And the old CMU CL code is still useful for making
3036       ;; sure that the appropriate keywords and internal symbols end
3037       ;; up interned in the target Lisp, which is good, e.g. in order
3038       ;; to make &KEY arguments work right and in order to make
3039       ;; BACKTRACEs into target Lisp system code be legible.)
3040       (dolist (exported-name
3041                (sb-cold:read-from-file "common-lisp-exports.lisp-expr"))
3042         (cold-intern (intern exported-name *cl-package*)))
3043       (dolist (pd (sb-cold:read-from-file "package-data-list.lisp-expr"))
3044         (declare (type sb-cold:package-data pd))
3045         (let ((package (find-package (sb-cold:package-data-name pd))))
3046           (labels (;; Call FN on every node of the TREE.
3047                    (mapc-on-tree (fn tree)
3048                                  (typecase tree
3049                                    (cons (mapc-on-tree fn (car tree))
3050                                          (mapc-on-tree fn (cdr tree)))
3051                                    (t (funcall fn tree)
3052                                       (values))))
3053                    ;; Make sure that information about the association
3054                    ;; between PACKAGE and the symbol named NAME gets
3055                    ;; recorded in the cold-intern system or (as a
3056                    ;; convenience when dealing with the tree structure
3057                    ;; allowed in the PACKAGE-DATA-EXPORTS slot) do
3058                    ;; nothing if NAME is NIL.
3059                    (chill (name)
3060                      (when name
3061                        (cold-intern (intern name package) package))))
3062             (mapc-on-tree #'chill (sb-cold:package-data-export pd))
3063             (mapc #'chill (sb-cold:package-data-reexport pd))
3064             (dolist (sublist (sb-cold:package-data-import-from pd))
3065               (destructuring-bind (package-name &rest symbol-names) sublist
3066                 (declare (ignore package-name))
3067                 (mapc #'chill symbol-names))))))
3068
3069       ;; Cold load.
3070       (dolist (file-name object-file-names)
3071         (write-line (namestring file-name))
3072         (cold-load file-name))
3073
3074       ;; Tidy up loose ends left by cold loading. ("Postpare from cold load?")
3075       (resolve-assembler-fixups)
3076       #!+x86 (output-load-time-code-fixups)
3077       (linkage-info-to-core)
3078       (finish-symbols)
3079       (/show "back from FINISH-SYMBOLS")
3080       (finalize-load-time-value-noise)
3081
3082       ;; Tell the target Lisp how much stuff we've allocated.
3083       (cold-set 'sb!vm:*read-only-space-free-pointer*
3084                 (allocate-cold-descriptor *read-only*
3085                                           0
3086                                           sb!vm:even-fixnum-lowtag))
3087       (cold-set 'sb!vm:*static-space-free-pointer*
3088                 (allocate-cold-descriptor *static*
3089                                           0
3090                                           sb!vm:even-fixnum-lowtag))
3091       (cold-set 'sb!vm:*initial-dynamic-space-free-pointer*
3092                 (allocate-cold-descriptor *dynamic*
3093                                           0
3094                                           sb!vm:even-fixnum-lowtag))
3095       (/show "done setting free pointers")
3096
3097       ;; Write results to files.
3098       ;;
3099       ;; FIXME: I dislike this approach of redefining
3100       ;; *STANDARD-OUTPUT* instead of putting the new stream in a
3101       ;; lexical variable, and it's annoying to have WRITE-MAP (to
3102       ;; *STANDARD-OUTPUT*) not be parallel to WRITE-INITIAL-CORE-FILE
3103       ;; (to a stream explicitly passed as an argument).
3104       (when map-file-name
3105         (with-open-file (*standard-output* map-file-name
3106                                            :direction :output
3107                                            :if-exists :supersede)
3108           (write-map)))
3109       (when c-header-file-name
3110         (with-open-file (*standard-output* c-header-file-name
3111                                            :direction :output
3112                                            :if-exists :supersede)
3113           (write-c-header)))
3114       (when core-file-name
3115         (write-initial-core-file core-file-name)))))