0.8alpha.0.13:
[sbcl.git] / src / code / class.lisp
1 ;;;; This file contains structures and functions for the maintenance of
2 ;;;; basic information about defined types. Different object systems
3 ;;;; can be supported simultaneously. 
4
5 ;;;; This software is part of the SBCL system. See the README file for
6 ;;;; more information.
7 ;;;;
8 ;;;; This software is derived from the CMU CL system, which was
9 ;;;; written at Carnegie Mellon University and released into the
10 ;;;; public domain. The software is in the public domain and is
11 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
12 ;;;; files for more information.
13
14 (in-package "SB!KERNEL")
15
16 (!begin-collecting-cold-init-forms)
17 \f
18 ;;;; the CLASSOID structure
19
20 ;;; The CLASSOID structure is a supertype of all classoid types.  A
21 ;;; CLASSOID is also a CTYPE structure as recognized by the type
22 ;;; system.  (FIXME: It's also a type specifier, though this might go
23 ;;; away as with the merger of SB-PCL:CLASS and CL:CLASS it's no
24 ;;; longer necessary)
25 (def!struct (classoid
26              (:make-load-form-fun classoid-make-load-form-fun)
27              (:include ctype
28                        (class-info (type-class-or-lose 'classoid)))
29              (:constructor nil)
30              #-no-ansi-print-object
31              (:print-object
32               (lambda (class stream)
33                 (let ((name (classoid-name class)))
34                   (print-unreadable-object (class stream
35                                                   :type t
36                                                   :identity (not name))
37                     (format stream
38                             ;; FIXME: Make sure that this prints
39                             ;; reasonably for anonymous classes.
40                             "~:[anonymous~;~:*~S~]~@[ (~(~A~))~]"
41                             name
42                             (classoid-state class))))))
43              #-sb-xc-host (:pure nil))
44   ;; the value to be returned by CLASSOID-NAME.
45   (name nil :type symbol)
46   ;; the current layout for this class, or NIL if none assigned yet
47   (layout nil :type (or layout null))
48   ;; How sure are we that this class won't be redefined?
49   ;;   :READ-ONLY = We are committed to not changing the effective 
50   ;;                slots or superclasses.
51   ;;   :SEALED    = We can't even add subclasses.
52   ;;   NIL        = Anything could happen.
53   (state nil :type (member nil :read-only :sealed))
54   ;; direct superclasses of this class
55   (direct-superclasses () :type list)
56   ;; representation of all of the subclasses (direct or indirect) of
57   ;; this class. This is NIL if no subclasses or not initalized yet;
58   ;; otherwise, it's an EQ hash-table mapping CLASSOID objects to the
59   ;; subclass layout that was in effect at the time the subclass was
60   ;; created.
61   (subclasses nil :type (or null hash-table))
62   ;; the PCL class (= CL:CLASS, but with a view to future flexibility
63   ;; we don't just call it the CLASS slot) object for this class, or
64   ;; NIL if none assigned yet
65   (pcl-class nil))
66
67 (defun classoid-make-load-form-fun (class)
68   (/show "entering CLASSOID-MAKE-LOAD-FORM-FUN" class)
69   (let ((name (classoid-name class)))
70     (unless (and name (eq (find-classoid name nil) class))
71       (/show "anonymous/undefined class case")
72       (error "can't use anonymous or undefined class as constant:~%  ~S"
73              class))
74     `(locally
75        ;; KLUDGE: There's a FIND-CLASSOID DEFTRANSFORM for constant
76        ;; class names which creates fast but non-cold-loadable,
77        ;; non-compact code. In this context, we'd rather have compact,
78        ;; cold-loadable code. -- WHN 19990928
79        (declare (notinline find-classoid))
80        (find-classoid ',name))))
81 \f
82 ;;;; basic LAYOUT stuff
83
84 ;;; Note: This bound is set somewhat less than MOST-POSITIVE-FIXNUM
85 ;;; in order to guarantee that several hash values can be added without
86 ;;; overflowing into a bignum.
87 (def!constant layout-clos-hash-max (ash most-positive-fixnum -3)
88   #!+sb-doc
89   "the inclusive upper bound on LAYOUT-CLOS-HASH values")
90
91 ;;; a list of conses, initialized by genesis
92 ;;;
93 ;;; In each cons, the car is the symbol naming the layout, and the
94 ;;; cdr is the layout itself.
95 (defvar *!initial-layouts*)
96
97 ;;; a table mapping class names to layouts for classes we have
98 ;;; referenced but not yet loaded. This is initialized from an alist
99 ;;; created by genesis describing the layouts that genesis created at
100 ;;; cold-load time.
101 (defvar *forward-referenced-layouts*)
102 (!cold-init-forms
103   (setq *forward-referenced-layouts* (make-hash-table :test 'equal))
104   #-sb-xc-host (progn
105                  (/show0 "processing *!INITIAL-LAYOUTS*")
106                  (dolist (x *!initial-layouts*)
107                    (setf (gethash (car x) *forward-referenced-layouts*)
108                          (cdr x)))
109                  (/show0 "done processing *!INITIAL-LAYOUTS*")))
110
111 ;;; The LAYOUT structure is pointed to by the first cell of instance
112 ;;; (or structure) objects. It represents what we need to know for
113 ;;; type checking and garbage collection. Whenever a class is
114 ;;; incompatibly redefined, a new layout is allocated. If two object's
115 ;;; layouts are EQ, then they are exactly the same type.
116 ;;;
117 ;;; KLUDGE: The genesis code has raw offsets of slots in this
118 ;;; structure hardwired into it. It would be good to rewrite that code
119 ;;; so that it looks up those offsets in the compiler's tables, but
120 ;;; for now if you change this structure, lucky you, you get to grovel
121 ;;; over the genesis code by hand.:-( -- WHN 19990820
122 (def!struct (layout
123              ;; KLUDGE: A special hack keeps this from being
124              ;; called when building code for the
125              ;; cross-compiler. See comments at the DEFUN for
126              ;; this. -- WHN 19990914
127              (:make-load-form-fun #-sb-xc-host ignore-it
128                                   ;; KLUDGE: DEF!STRUCT at #+SB-XC-HOST
129                                   ;; time controls both the
130                                   ;; build-the-cross-compiler behavior
131                                   ;; and the run-the-cross-compiler
132                                   ;; behavior. The value below only
133                                   ;; works for build-the-cross-compiler.
134                                   ;; There's a special hack in
135                                   ;; EMIT-MAKE-LOAD-FORM which gives
136                                   ;; effectively IGNORE-IT behavior for
137                                   ;; LAYOUT at run-the-cross-compiler
138                                   ;; time. It would be cleaner to
139                                   ;; actually have an IGNORE-IT value
140                                   ;; stored, but it's hard to see how to
141                                   ;; do that concisely with the current
142                                   ;; DEF!STRUCT setup. -- WHN 19990930
143                                   #+sb-xc-host
144                                   make-load-form-for-layout))
145   ;; hash bits which should be set to constant pseudo-random values
146   ;; for use by CLOS. Sleazily accessed via %INSTANCE-REF, see
147   ;; LAYOUT-CLOS-HASH.
148   ;;
149   ;; FIXME: We should get our story straight on what the type of these
150   ;; values is. (declared INDEX here, described as <=
151   ;; LAYOUT-CLOS-HASH-MAX by the doc string of that constant,
152   ;; generated as strictly positive in RANDOM-LAYOUT-CLOS-HASH..)
153   ;;
154   ;; KLUDGE: The fact that the slots here start at offset 1 is known
155   ;; to the LAYOUT-CLOS-HASH function and to the LAYOUT-dumping code
156   ;; in GENESIS.
157   (clos-hash-0 (random-layout-clos-hash) :type index)
158   (clos-hash-1 (random-layout-clos-hash) :type index)
159   (clos-hash-2 (random-layout-clos-hash) :type index)
160   (clos-hash-3 (random-layout-clos-hash) :type index)
161   (clos-hash-4 (random-layout-clos-hash) :type index)
162   (clos-hash-5 (random-layout-clos-hash) :type index)
163   (clos-hash-6 (random-layout-clos-hash) :type index)
164   (clos-hash-7 (random-layout-clos-hash) :type index)
165   ;; the class that this is a layout for
166   (classoid (missing-arg) :type classoid)
167   ;; The value of this slot can be:
168   ;;   * :UNINITIALIZED if not initialized yet;
169   ;;   * NIL if this is the up-to-date layout for a class; or
170   ;;   * T if this layout has been invalidated (by being replaced by 
171   ;;     a new, more-up-to-date LAYOUT).
172   ;;   * something else (probably a list) if the class is a PCL wrapper
173   ;;     and PCL has made it invalid and made a note to itself about it
174   (invalid :uninitialized :type (or cons (member nil t :uninitialized)))
175   ;; the layouts for all classes we inherit. If hierarchical, i.e. if
176   ;; DEPTHOID >= 0, then these are ordered by ORDER-LAYOUT-INHERITS,
177   ;; so that each inherited layout appears at its expected depth,
178   ;; i.e. at its LAYOUT-DEPTHOID value.
179   ;;
180   ;; Remaining elements are filled by the non-hierarchical layouts or,
181   ;; if they would otherwise be empty, by copies of succeeding layouts.
182   (inherits #() :type simple-vector)
183   ;; If inheritance is not hierarchical, this is -1. If inheritance is 
184   ;; hierarchical, this is the inheritance depth, i.e. (LENGTH INHERITS).
185   ;; Note:
186   ;;  (1) This turns out to be a handy encoding for arithmetically
187   ;;      comparing deepness; it is generally useful to do a bare numeric
188   ;;      comparison of these depthoid values, and we hardly ever need to
189   ;;      test whether the values are negative or not.
190   ;;  (2) This was called INHERITANCE-DEPTH in classic CMU CL. It was
191   ;;      renamed because some of us find it confusing to call something
192   ;;      a depth when it isn't quite.
193   (depthoid -1 :type layout-depthoid)
194   ;; the number of top level descriptor cells in each instance
195   (length 0 :type index)
196   ;; If this layout has some kind of compiler meta-info, then this is
197   ;; it. If a structure, then we store the DEFSTRUCT-DESCRIPTION here.
198   (info nil)
199   ;; This is true if objects of this class are never modified to
200   ;; contain dynamic pointers in their slots or constant-like
201   ;; substructure (and hence can be copied into read-only space by
202   ;; PURIFY).
203   ;;
204   ;; KLUDGE: This slot is known to the C runtime support code.
205   (pure nil :type (member t nil 0)))
206
207 (def!method print-object ((layout layout) stream)
208   (print-unreadable-object (layout stream :type t :identity t)
209     (format stream
210             "for ~S~@[, INVALID=~S~]"
211             (layout-proper-name layout)
212             (layout-invalid layout))))
213
214 (eval-when (#-sb-xc :compile-toplevel :load-toplevel :execute)
215   (defun layout-proper-name (layout)
216     (classoid-proper-name (layout-classoid layout))))
217 \f
218 ;;;; support for the hash values used by CLOS when working with LAYOUTs
219
220 (def!constant layout-clos-hash-length 8)
221 #!-sb-fluid (declaim (inline layout-clos-hash))
222 (defun layout-clos-hash (layout i)
223   ;; FIXME: Either this I should be declared to be `(MOD
224   ;; ,LAYOUT-CLOS-HASH-LENGTH), or this is used in some inner loop
225   ;; where we can't afford to check that kind of thing and therefore
226   ;; should have some insane level of optimization. (This is true both
227   ;; of this function and of the SETF function below.)
228   (declare (type layout layout) (type index i))
229   ;; FIXME: LAYOUT slots should have type `(MOD ,LAYOUT-CLOS-HASH-MAX),
230   ;; not INDEX.
231   (truly-the index (%instance-ref layout (1+ i))))
232 #!-sb-fluid (declaim (inline (setf layout-clos-hash)))
233 (defun (setf layout-clos-hash) (new-value layout i)
234   (declare (type layout layout) (type index new-value i))
235   (setf (%instance-ref layout (1+ i)) new-value))
236
237 ;;; a generator for random values suitable for the CLOS-HASH slots of
238 ;;; LAYOUTs. We use our own RANDOM-STATE here because we'd like
239 ;;; pseudo-random values to come the same way in the target even when
240 ;;; we make minor changes to the system, in order to reduce the
241 ;;; mysteriousness of possible CLOS bugs.
242 (defvar *layout-clos-hash-random-state*)
243 (defun random-layout-clos-hash ()
244   ;; FIXME: I'm not sure why this expression is (1+ (RANDOM FOO)),
245   ;; returning a strictly positive value. I copied it verbatim from
246   ;; CMU CL INITIALIZE-LAYOUT-HASH, so presumably it works, but I
247   ;; dunno whether the hash values are really supposed to be 1-based.
248   ;; They're declared as INDEX.. Or is this a hack to try to avoid
249   ;; having to use bignum arithmetic? Or what? An explanation would be
250   ;; nice.
251   (1+ (random layout-clos-hash-max
252               (if (boundp '*layout-clos-hash-random-state*)
253                   *layout-clos-hash-random-state*
254                   (setf *layout-clos-hash-random-state*
255                         (make-random-state))))))
256 \f
257 ;;; If we can't find any existing layout, then we create a new one
258 ;;; storing it in *FORWARD-REFERENCED-LAYOUTS*. In classic CMU CL, we
259 ;;; used to immediately check for compatibility, but for
260 ;;; cross-compilability reasons (i.e. convenience of using this
261 ;;; function in a MAKE-LOAD-FORM expression) that functionality has
262 ;;; been split off into INIT-OR-CHECK-LAYOUT.
263 (declaim (ftype (function (symbol) layout) find-layout))
264 (defun find-layout (name)
265   (let ((classoid (find-classoid name nil)))
266     (or (and classoid (classoid-layout classoid))
267         (gethash name *forward-referenced-layouts*)
268         (setf (gethash name *forward-referenced-layouts*)
269               (make-layout :classoid (or classoid
270                                          (make-undefined-classoid name)))))))
271
272 ;;; If LAYOUT is uninitialized, initialize it with CLASSOID, LENGTH,
273 ;;; INHERITS, and DEPTHOID, otherwise require that it be consistent
274 ;;; with CLASSOID, LENGTH, INHERITS, and DEPTHOID.
275 ;;;
276 ;;; UNDEFINED-CLASS values are interpreted specially as "we don't know
277 ;;; anything about the class", so if LAYOUT is initialized, any
278 ;;; preexisting class slot value is OK, and if it's not initialized,
279 ;;; its class slot value is set to an UNDEFINED-CLASS. -- FIXME: This
280 ;;; is no longer true, :UNINITIALIZED used instead.
281 (declaim (ftype (function (layout classoid index simple-vector layout-depthoid)
282                           layout)
283                 init-or-check-layout))
284 (defun init-or-check-layout (layout classoid length inherits depthoid)
285   (cond ((eq (layout-invalid layout) :uninitialized)
286          ;; There was no layout before, we just created one which
287          ;; we'll now initialize with our information.
288          (setf (layout-length layout) length
289                (layout-inherits layout) inherits
290                (layout-depthoid layout) depthoid
291                (layout-classoid layout) classoid
292                (layout-invalid layout) nil))
293         ;; FIXME: Now that LAYOUTs are born :UNINITIALIZED, maybe this
294         ;; clause is not needed?
295         ((not *type-system-initialized*)
296          (setf (layout-classoid layout) classoid))
297         (t
298          ;; There was an old layout already initialized with old
299          ;; information, and we'll now check that old information
300          ;; which was known with certainty is consistent with current
301          ;; information which is known with certainty.
302          (check-layout layout classoid length inherits depthoid)))
303   layout)
304
305 ;;; In code for the target Lisp, we don't use dump LAYOUTs using the
306 ;;; standard load form mechanism, we use special fops instead, in
307 ;;; order to make cold load come out right. But when we're building
308 ;;; the cross-compiler, we can't do that because we don't have access
309 ;;; to special non-ANSI low-level things like special fops, and we
310 ;;; don't need to do that anyway because our code isn't going to be
311 ;;; cold loaded, so we use the ordinary load form system.
312 ;;;
313 ;;; KLUDGE: A special hack causes this not to be called when we are
314 ;;; building code for the target Lisp. It would be tidier to just not
315 ;;; have it in place when we're building the target Lisp, but it
316 ;;; wasn't clear how to do that without rethinking DEF!STRUCT quite a
317 ;;; bit, so I punted. -- WHN 19990914
318 #+sb-xc-host
319 (defun make-load-form-for-layout (layout &optional env)
320   (declare (type layout layout))
321   (declare (ignore env))
322   (when (layout-invalid layout)
323     (compiler-error "can't dump reference to obsolete class: ~S"
324                     (layout-classoid layout)))
325   (let ((name (classoid-name (layout-classoid layout))))
326     (unless name
327       (compiler-error "can't dump anonymous LAYOUT: ~S" layout))
328     ;; Since LAYOUT refers to a class which refers back to the LAYOUT,
329     ;; we have to do this in two stages, like the TREE-WITH-PARENT
330     ;; example in the MAKE-LOAD-FORM entry in the ANSI spec.
331     (values
332      ;; "creation" form (which actually doesn't create a new LAYOUT if
333      ;; there's a preexisting one with this name)
334      `(find-layout ',name)
335      ;; "initialization" form (which actually doesn't initialize
336      ;; preexisting LAYOUTs, just checks that they're consistent).
337      `(init-or-check-layout ',layout
338                             ',(layout-classoid layout)
339                             ',(layout-length layout)
340                             ',(layout-inherits layout)
341                             ',(layout-depthoid layout)))))
342
343 ;;; If LAYOUT's slot values differ from the specified slot values in
344 ;;; any interesting way, then give a warning and return T.
345 (declaim (ftype (function (simple-string
346                            layout
347                            simple-string
348                            index
349                            simple-vector
350                            layout-depthoid))
351                 redefine-layout-warning))
352 (defun redefine-layout-warning (old-context old-layout
353                                 context length inherits depthoid)
354   (declare (type layout old-layout) (type simple-string old-context context))
355   (let ((name (layout-proper-name old-layout)))
356     (or (let ((old-inherits (layout-inherits old-layout)))
357           (or (when (mismatch old-inherits
358                               inherits
359                               :key #'layout-proper-name)
360                 (warn "change in superclasses of class ~S:~%  ~
361                        ~A superclasses: ~S~%  ~
362                        ~A superclasses: ~S"
363                       name
364                       old-context
365                       (map 'list #'layout-proper-name old-inherits)
366                       context
367                       (map 'list #'layout-proper-name inherits))
368                 t)
369               (let ((diff (mismatch old-inherits inherits)))
370                 (when diff
371                   (warn
372                    "in class ~S:~%  ~
373                     ~:(~A~) definition of superclass ~S is incompatible with~%  ~
374                     ~A definition."
375                    name
376                    old-context
377                    (layout-proper-name (svref old-inherits diff))
378                    context)
379                   t))))
380         (let ((old-length (layout-length old-layout)))
381           (unless (= old-length length)
382             (warn "change in instance length of class ~S:~%  ~
383                    ~A length: ~W~%  ~
384                    ~A length: ~W"
385                   name
386                   old-context old-length
387                   context length)
388             t))
389         (unless (= (layout-depthoid old-layout) depthoid)
390           (warn "change in the inheritance structure of class ~S~%  ~
391                  between the ~A definition and the ~A definition"
392                 name old-context context)
393           t))))
394
395 ;;; Require that LAYOUT data be consistent with CLASS, LENGTH,
396 ;;; INHERITS, and DEPTHOID.
397 (declaim (ftype (function
398                  (layout classoid index simple-vector layout-depthoid))
399                 check-layout))
400 (defun check-layout (layout classoid length inherits depthoid)
401   (aver (eq (layout-classoid layout) classoid))
402   (when (redefine-layout-warning "current" layout
403                                  "compile time" length inherits depthoid)
404     ;; Classic CMU CL had more options here. There are several reasons
405     ;; why they might want more options which are less appropriate for
406     ;; us: (1) It's hard to fit the classic CMU CL flexible approach
407     ;; into the ANSI-style MAKE-LOAD-FORM system, and having a
408     ;; non-MAKE-LOAD-FORM-style system is painful when we're trying to
409     ;; make the cross-compiler run under vanilla ANSI Common Lisp. (2)
410     ;; We have CLOS now, and if you want to be able to flexibly
411     ;; redefine classes without restarting the system, it'd make sense
412     ;; to use that, so supporting complexity in order to allow
413     ;; modifying DEFSTRUCTs without restarting the system is a low
414     ;; priority. (3) We now have the ability to rebuild the SBCL
415     ;; system from scratch, so we no longer need this functionality in
416     ;; order to maintain the SBCL system by modifying running images.
417     (error "The class ~S was not changed, and there's no guarantee that~@
418             the loaded code (which expected another layout) will work."
419            (layout-proper-name layout)))
420   (values))
421
422 ;;; a common idiom (the same as CMU CL FIND-LAYOUT) rolled up into a
423 ;;; single function call
424 ;;;
425 ;;; Used by the loader to forward-reference layouts for classes whose
426 ;;; definitions may not have been loaded yet. This allows type tests
427 ;;; to be loaded when the type definition hasn't been loaded yet.
428 (declaim (ftype (function (symbol index simple-vector layout-depthoid) layout)
429                 find-and-init-or-check-layout))
430 (defun find-and-init-or-check-layout (name length inherits depthoid)
431   (let ((layout (find-layout name)))
432     (init-or-check-layout layout
433                           (or (find-classoid name nil)
434                               (make-undefined-classoid name))
435                           length
436                           inherits
437                           depthoid)))
438
439 ;;; Record LAYOUT as the layout for its class, adding it as a subtype
440 ;;; of all superclasses. This is the operation that "installs" a
441 ;;; layout for a class in the type system, clobbering any old layout.
442 ;;; However, this does not modify the class namespace; that is a
443 ;;; separate operation (think anonymous classes.)
444 ;;; -- If INVALIDATE, then all the layouts for any old definition
445 ;;;    and subclasses are invalidated, and the SUBCLASSES slot is cleared.
446 ;;; -- If DESTRUCT-LAYOUT, then this is some old layout, and is to be
447 ;;;    destructively modified to hold the same type information.
448 (eval-when (#-sb-xc :compile-toplevel :load-toplevel :execute)
449 (defun register-layout (layout &key (invalidate t) destruct-layout)
450   (declare (type layout layout) (type (or layout null) destruct-layout))
451   (let* ((classoid (layout-classoid layout))
452          (classoid-layout (classoid-layout classoid))
453          (subclasses (classoid-subclasses classoid)))
454
455     ;; Attempting to register ourselves with a temporary undefined
456     ;; class placeholder is almost certainly a programmer error. (I
457     ;; should know, I did it.) -- WHN 19990927
458     (aver (not (undefined-classoid-p classoid)))
459
460     ;; This assertion dates from classic CMU CL. The rationale is
461     ;; probably that calling REGISTER-LAYOUT more than once for the
462     ;; same LAYOUT is almost certainly a programmer error.
463     (aver (not (eq classoid-layout layout)))
464
465     ;; Figure out what classes are affected by the change, and issue
466     ;; appropriate warnings and invalidations.
467     (when classoid-layout
468       (modify-classoid classoid)
469       (when subclasses
470         (dohash (subclass subclass-layout subclasses)
471           (modify-classoid subclass)
472           (when invalidate
473             (invalidate-layout subclass-layout))))
474       (when invalidate
475         (invalidate-layout classoid-layout)
476         (setf (classoid-subclasses classoid) nil)))
477
478     (if destruct-layout
479         (setf (layout-invalid destruct-layout) nil
480               (layout-inherits destruct-layout) (layout-inherits layout)
481               (layout-depthoid destruct-layout)(layout-depthoid layout)
482               (layout-length destruct-layout) (layout-length layout)
483               (layout-info destruct-layout) (layout-info layout)
484               (classoid-layout classoid) destruct-layout)
485         (setf (layout-invalid layout) nil
486               (classoid-layout classoid) layout))
487
488     (let ((inherits (layout-inherits layout)))
489       (dotimes (i (length inherits)) ; FIXME: should be DOVECTOR
490         (let* ((super (layout-classoid (svref inherits i)))
491                (subclasses (or (classoid-subclasses super)
492                                (setf (classoid-subclasses super)
493                                      (make-hash-table :test 'eq)))))
494           (when (and (eq (classoid-state super) :sealed)
495                      (not (gethash classoid subclasses)))
496             (warn "unsealing sealed class ~S in order to subclass it"
497                   (classoid-name super))
498             (setf (classoid-state super) :read-only))
499           (setf (gethash classoid subclasses)
500                 (or destruct-layout layout))))))
501
502   (values))
503 ); EVAL-WHEN
504
505 ;;; Arrange the inherited layouts to appear at their expected depth,
506 ;;; ensuring that hierarchical type tests succeed. Layouts with 
507 ;;; DEPTHOID >= 0 (i.e. hierarchical classes) are placed first,
508 ;;; at exactly that index in the INHERITS vector. Then, non-hierarchical
509 ;;; layouts are placed in remaining elements. Then, any still-empty
510 ;;; elements are filled with their successors, ensuring that each
511 ;;; element contains a valid layout.
512 ;;;
513 ;;; This reordering may destroy CPL ordering, so the inherits should
514 ;;; not be read as being in CPL order.
515 (defun order-layout-inherits (layouts)
516   (declare (simple-vector layouts))
517   (let ((length (length layouts))
518         (max-depth -1))
519     (dotimes (i length)
520       (let ((depth (layout-depthoid (svref layouts i))))
521         (when (> depth max-depth)
522           (setf max-depth depth))))
523     (let* ((new-length (max (1+ max-depth) length))
524            ;; KLUDGE: 0 here is the "uninitialized" element.  We need
525            ;; to specify it explicitly for portability purposes, as
526            ;; elements can be read before being set [ see below, "(EQL
527            ;; OLD-LAYOUT 0)" ].  -- CSR, 2002-04-20
528            (inherits (make-array new-length :initial-element 0)))
529       (dotimes (i length)
530         (let* ((layout (svref layouts i))
531                (depth (layout-depthoid layout)))
532           (unless (eql depth -1)
533             (let ((old-layout (svref inherits depth)))
534               (unless (or (eql old-layout 0) (eq old-layout layout))
535                 (error "layout depth conflict: ~S~%" layouts)))
536             (setf (svref inherits depth) layout))))
537       (do ((i 0 (1+ i))
538            (j 0))
539           ((>= i length))
540         (declare (type index i j))
541         (let* ((layout (svref layouts i))
542                (depth (layout-depthoid layout)))
543           (when (eql depth -1)
544             (loop (when (eql (svref inherits j) 0)
545                     (return))
546                   (incf j))
547             (setf (svref inherits j) layout))))
548       (do ((i (1- new-length) (1- i)))
549           ((< i 0))
550         (declare (type fixnum i))
551         (when (eql (svref inherits i) 0)
552           (setf (svref inherits i) (svref inherits (1+ i)))))
553       inherits)))
554 \f
555 ;;;; class precedence lists
556
557 ;;; Topologically sort the list of objects to meet a set of ordering
558 ;;; constraints given by pairs (A . B) constraining A to precede B.
559 ;;; When there are multiple objects to choose, the tie-breaker
560 ;;; function is called with both the list of object to choose from and
561 ;;; the reverse ordering built so far.
562 (defun topological-sort (objects constraints tie-breaker)
563   (declare (list objects constraints)
564            (function tie-breaker))
565   (let ((obj-info (make-hash-table :size (length objects)))
566         (free-objs nil)
567         (result nil))
568     (dolist (constraint constraints)
569       (let ((obj1 (car constraint))
570             (obj2 (cdr constraint)))
571         (let ((info2 (gethash obj2 obj-info)))
572           (if info2
573               (incf (first info2))
574               (setf (gethash obj2 obj-info) (list 1))))
575         (let ((info1 (gethash obj1 obj-info)))
576           (if info1
577               (push obj2 (rest info1))
578               (setf (gethash obj1 obj-info) (list 0 obj2))))))
579     (dolist (obj objects)
580       (let ((info (gethash obj obj-info)))
581         (when (or (not info) (zerop (first info)))
582           (push obj free-objs))))
583     (loop
584      (flet ((next-result (obj)
585               (push obj result)
586               (dolist (successor (rest (gethash obj obj-info)))
587                 (let* ((successor-info (gethash successor obj-info))
588                        (count (1- (first successor-info))))
589                   (setf (first successor-info) count)
590                   (when (zerop count)
591                     (push successor free-objs))))))
592        (cond ((endp free-objs)
593               (dohash (obj info obj-info)
594                 (unless (zerop (first info))
595                   (error "Topological sort failed due to constraint on ~S."
596                          obj)))
597               (return (nreverse result)))
598              ((endp (rest free-objs))
599               (next-result (pop free-objs)))
600              (t
601               (let ((obj (funcall tie-breaker free-objs result)))
602                 (setf free-objs (remove obj free-objs))
603                 (next-result obj))))))))
604
605
606 ;;; standard class precedence list computation
607 (defun std-compute-class-precedence-list (class)
608   (let ((classes nil)
609         (constraints nil))
610     (labels ((note-class (class)
611                (unless (member class classes)
612                  (push class classes)
613                  (let ((superclasses (classoid-direct-superclasses class)))
614                    (do ((prev class)
615                         (rest superclasses (rest rest)))
616                        ((endp rest))
617                      (let ((next (first rest)))
618                        (push (cons prev next) constraints)
619                        (setf prev next)))
620                    (dolist (class superclasses)
621                      (note-class class)))))
622              (std-cpl-tie-breaker (free-classes rev-cpl)
623                (dolist (class rev-cpl (first free-classes))
624                  (let* ((superclasses (classoid-direct-superclasses class))
625                         (intersection (intersection free-classes
626                                                     superclasses)))
627                    (when intersection
628                      (return (first intersection)))))))
629       (note-class class)
630       (topological-sort classes constraints #'std-cpl-tie-breaker))))
631 \f
632 ;;;; object types to represent classes
633
634 ;;; An UNDEFINED-CLASSOID is a cookie we make up to stick in forward
635 ;;; referenced layouts. Users should never see them.
636 (def!struct (undefined-classoid
637              (:include classoid)
638              (:constructor make-undefined-classoid (name))))
639
640 ;;; BUILT-IN-CLASS is used to represent the standard classes that
641 ;;; aren't defined with DEFSTRUCT and other specially implemented
642 ;;; primitive types whose only attribute is their name.
643 ;;;
644 ;;; Some BUILT-IN-CLASSes have a TRANSLATION, which means that they
645 ;;; are effectively DEFTYPE'd to some other type (usually a union of
646 ;;; other classes or a "primitive" type such as NUMBER, ARRAY, etc.)
647 ;;; This translation is done when type specifiers are parsed. Type
648 ;;; system operations (union, subtypep, etc.) should never encounter
649 ;;; translated classes, only their translation.
650 (def!struct (built-in-classoid (:include classoid)
651                                (:constructor make-built-in-classoid))
652   ;; the type we translate to on parsing. If NIL, then this class
653   ;; stands on its own; or it can be set to :INITIALIZING for a period
654   ;; during cold-load.
655   (translation nil :type (or ctype (member nil :initializing))))
656
657 ;;; FIXME: In CMU CL, this was a class with a print function, but not
658 ;;; necessarily a structure class (e.g. CONDITIONs). In SBCL,
659 ;;; we let CLOS handle our print functions, so that is no longer needed.
660 ;;; Is there any need for this class any more?
661 (def!struct (slot-classoid (:include classoid)
662                            (:constructor nil)))
663
664 ;;; STRUCTURE-CLASS represents what we need to know about structure
665 ;;; classes. Non-structure "typed" defstructs are a special case, and
666 ;;; don't have a corresponding class.
667 (def!struct (basic-structure-classoid (:include slot-classoid)
668                                       (:constructor nil)))
669
670 (def!struct (structure-classoid (:include basic-structure-classoid)
671                                 (:constructor make-structure-classoid))
672   ;; If true, a default keyword constructor for this structure.
673   (constructor nil :type (or function null)))
674
675 ;;; FUNCALLABLE-STRUCTURE-CLASS is used to represent funcallable
676 ;;; structures, which are used to implement generic functions.
677 (def!struct (funcallable-structure-classoid
678              (:include basic-structure-classoid)
679              (:constructor make-funcallable-structure-classoid)))
680 \f
681 ;;;; classoid namespace
682
683 ;;; We use an indirection to allow forward referencing of class
684 ;;; definitions with load-time resolution.
685 (def!struct (classoid-cell
686              (:constructor make-classoid-cell (name &optional classoid))
687              (:make-load-form-fun (lambda (c)
688                                     `(find-classoid-cell
689                                       ',(classoid-cell-name c))))
690              #-no-ansi-print-object
691              (:print-object (lambda (s stream)
692                               (print-unreadable-object (s stream :type t)
693                                 (prin1 (classoid-cell-name s) stream)))))
694   ;; Name of class we expect to find.
695   (name nil :type symbol :read-only t)
696   ;; Class or NIL if not yet defined.
697   (classoid nil :type (or classoid null)))
698 (defun find-classoid-cell (name)
699   (or (info :type :classoid name)
700       (setf (info :type :classoid name)
701             (make-classoid-cell name))))
702
703 ;;; FIXME: When the system is stable, this DECLAIM FTYPE should
704 ;;; probably go away in favor of the DEFKNOWN for FIND-CLASS.
705 (declaim (ftype (function (symbol &optional t (or null sb!c::lexenv)))
706                 find-classoid))
707 (eval-when (#-sb-xc :compile-toplevel :load-toplevel :execute)
708 (defun find-classoid (name &optional (errorp t) environment)
709   #!+sb-doc
710   "Return the class with the specified NAME. If ERRORP is false, then NIL is
711    returned when no such class exists."
712   (declare (type symbol name) (ignore environment))
713   (let ((res (classoid-cell-classoid (find-classoid-cell name))))
714     (if (or res (not errorp))
715         res
716         (error "class not yet defined:~%  ~S" name))))
717 (defun (setf find-classoid) (new-value name)
718   #-sb-xc (declare (type classoid new-value))
719   (ecase (info :type :kind name)
720     ((nil))
721     (:forthcoming-defclass-type
722      ;; XXX Currently, nothing needs to be done in this case. Later, when
723      ;; PCL is integrated tighter into SBCL, this might need more work.
724      nil)
725     (:instance
726      ;; KLUDGE: The reason these clauses aren't directly parallel is
727      ;; that we need to use the internal CLASSOID structure ourselves,
728      ;; because we don't have CLASSes to work with until PCL is built.
729      ;; In the host, CLASSes have an approximately one-to-one
730      ;; correspondence with the target CLASSOIDs (as well as with the
731      ;; target CLASSes, modulo potential differences with respect to
732      ;; conditions).
733      #+sb-xc-host
734      (let ((old (class-of (find-classoid name)))
735            (new (class-of new-value)))
736        (unless (eq old new)
737          (bug "trying to change the metaclass of ~S from ~S to ~S in the ~
738                cross-compiler."
739               name (class-name old) (class-name new))))
740      #-sb-xc-host
741      (let ((old (classoid-of (find-classoid name)))
742            (new (classoid-of new-value)))
743        (unless (eq old new)
744          (warn "changing meta-class of ~S from ~S to ~S"
745                name (classoid-name old) (classoid-name new)))))
746     (:primitive
747      (error "illegal to redefine standard type ~S" name))
748     (:defined
749      (warn "redefining DEFTYPE type to be a class: ~S" name)
750      (setf (info :type :expander name) nil)))
751
752   (remhash name *forward-referenced-layouts*)
753   (%note-type-defined name)
754   (setf (info :type :kind name) :instance)
755   (setf (classoid-cell-classoid (find-classoid-cell name)) new-value)
756   (unless (eq (info :type :compiler-layout name)
757               (classoid-layout new-value))
758     (setf (info :type :compiler-layout name) (classoid-layout new-value)))
759   new-value)
760 ) ; EVAL-WHEN
761
762 ;;; Called when we are about to define NAME as a class meeting some
763 ;;; predicate (such as a meta-class type test.) The first result is
764 ;;; always of the desired class. The second result is any existing
765 ;;; LAYOUT for this name.
766 (defun insured-find-classoid (name predicate constructor)
767   (declare (type function predicate constructor))
768   (let* ((old (find-classoid name nil))
769          (res (if (and old (funcall predicate old))
770                   old
771                   (funcall constructor :name name)))
772          (found (or (gethash name *forward-referenced-layouts*)
773                     (when old (classoid-layout old)))))
774     (when found
775       (setf (layout-classoid found) res))
776     (values res found)))
777
778 ;;; If the class has a proper name, return the name, otherwise return
779 ;;; the class.
780 (defun classoid-proper-name (class)
781   #-sb-xc (declare (type classoid class))
782   (let ((name (classoid-name class)))
783     (if (and name (eq (find-classoid name nil) class))
784         name
785         class)))
786 \f
787 ;;;; CLASS type operations
788
789 (!define-type-class classoid)
790
791 ;;; Simple methods for TYPE= and SUBTYPEP should never be called when
792 ;;; the two classes are equal, since there are EQ checks in those
793 ;;; operations.
794 (!define-type-method (classoid :simple-=) (type1 type2)
795   (aver (not (eq type1 type2)))
796   (values nil t))
797
798 (!define-type-method (classoid :simple-subtypep) (class1 class2)
799   (aver (not (eq class1 class2)))
800   (let ((subclasses (classoid-subclasses class2)))
801     (if (and subclasses (gethash class1 subclasses))
802         (values t t)
803         (values nil t))))
804
805 ;;; When finding the intersection of a sealed class and some other
806 ;;; class (not hierarchically related) the intersection is the union
807 ;;; of the currently shared subclasses.
808 (defun sealed-class-intersection2 (sealed other)
809   (declare (type classoid sealed other))
810   (let ((s-sub (classoid-subclasses sealed))
811         (o-sub (classoid-subclasses other)))
812     (if (and s-sub o-sub)
813         (collect ((res *empty-type* type-union))
814           (dohash (subclass layout s-sub)
815             (declare (ignore layout))
816             (when (gethash subclass o-sub)
817               (res (specifier-type subclass))))
818           (res))
819         *empty-type*)))
820
821 (!define-type-method (classoid :simple-intersection2) (class1 class2)
822   (declare (type classoid class1 class2))
823   (cond ((eq class1 class2)
824          class1)
825         ;; If one is a subclass of the other, then that is the
826         ;; intersection.
827         ((let ((subclasses (classoid-subclasses class2)))
828            (and subclasses (gethash class1 subclasses)))
829          class1)
830         ((let ((subclasses (classoid-subclasses class1)))
831            (and subclasses (gethash class2 subclasses)))
832          class2)
833         ;; Otherwise, we can't in general be sure that the
834         ;; intersection is empty, since a subclass of both might be
835         ;; defined. But we can eliminate it for some special cases.
836         ((or (basic-structure-classoid-p class1)
837              (basic-structure-classoid-p class2))
838          ;; No subclass of both can be defined.
839          *empty-type*)
840         ((eq (classoid-state class1) :sealed)
841          ;; checking whether a subclass of both can be defined:
842          (sealed-class-intersection2 class1 class2))
843         ((eq (classoid-state class2) :sealed)
844          ;; checking whether a subclass of both can be defined:
845          (sealed-class-intersection2 class2 class1))
846         (t
847          ;; uncertain, since a subclass of both might be defined
848          nil)))
849
850 ;;; KLUDGE: we need this because of the need to represent
851 ;;; intersections of two classes, even when empty at a given time, as
852 ;;; uncanonicalized intersections because of the possibility of later
853 ;;; defining a subclass of both classes.  The necessity for changing
854 ;;; the default return value from SUBTYPEP to NIL, T if no alternate
855 ;;; method is present comes about because, unlike the other places we
856 ;;; use INVOKE-COMPLEX-SUBTYPEP-ARG1-METHOD, in HAIRY methods and the
857 ;;; like, classes are in their own hierarchy with no possibility of
858 ;;; mixtures with other type classes.
859 (!define-type-method (classoid :complex-subtypep-arg2) (type1 class2)
860   (if (and (intersection-type-p type1)
861            (> (count-if #'classoid-p (intersection-type-types type1)) 1))
862       (values nil nil)
863       (invoke-complex-subtypep-arg1-method type1 class2 nil t)))
864
865 (!define-type-method (classoid :unparse) (type)
866   (classoid-proper-name type))
867 \f
868 ;;;; PCL stuff
869
870 (def!struct (std-classoid (:include classoid)
871                           (:constructor nil)))
872 (def!struct (standard-classoid (:include std-classoid)
873                                (:constructor make-standard-classoid)))
874 (def!struct (random-pcl-classoid (:include std-classoid)
875                                  (:constructor make-random-pcl-classoid)))
876 \f
877 ;;;; built-in classes
878
879 ;;; The BUILT-IN-CLASSES list is a data structure which configures the
880 ;;; creation of all the built-in classes. It contains all the info
881 ;;; that we need to maintain the mapping between classes, compile-time
882 ;;; types and run-time type codes. These options are defined:
883 ;;;
884 ;;; :TRANSLATION (default none)
885 ;;;     When this class is "parsed" as a type specifier, it is
886 ;;;     translated into the specified internal type representation,
887 ;;;     rather than being left as a class. This is used for types
888 ;;;     which we want to canonicalize to some other kind of type
889 ;;;     object because in general we want to be able to include more
890 ;;;     information than just the class (e.g. for numeric types.)
891 ;;;
892 ;;; :ENUMERABLE (default NIL)
893 ;;;     The value of the :ENUMERABLE slot in the created class.
894 ;;;     Meaningless in translated classes.
895 ;;;
896 ;;; :STATE (default :SEALED)
897 ;;;     The value of CLASS-STATE which we want on completion,
898 ;;;     indicating whether subclasses can be created at run-time.
899 ;;;
900 ;;; :HIERARCHICAL-P (default T unless any of the inherits are non-hierarchical)
901 ;;;     True if we can assign this class a unique inheritance depth.
902 ;;;
903 ;;; :CODES (default none)
904 ;;;     Run-time type codes which should be translated back to this
905 ;;;     class by CLASS-OF. Unspecified for abstract classes.
906 ;;;
907 ;;; :INHERITS (default this class and T)
908 ;;;     The class-precedence list for this class, with this class and
909 ;;;     T implicit.
910 ;;;
911 ;;; :DIRECT-SUPERCLASSES (default to head of CPL)
912 ;;;     List of the direct superclasses of this class.
913 ;;;
914 ;;; FIXME: This doesn't seem to be needed after cold init (and so can
915 ;;; probably be uninterned at the end of cold init).
916 (defvar *built-in-classes*)
917 (!cold-init-forms
918   (/show0 "setting *BUILT-IN-CLASSES*")
919   (setq
920    *built-in-classes*
921    '((t :state :read-only :translation t)
922      (character :enumerable t :translation base-char)
923      (base-char :enumerable t
924                 :inherits (character)
925                 :codes (#.sb!vm:base-char-widetag))
926      (symbol :codes (#.sb!vm:symbol-header-widetag))
927
928      (instance :state :read-only)
929
930      (system-area-pointer :codes (#.sb!vm:sap-widetag))
931      (weak-pointer :codes (#.sb!vm:weak-pointer-widetag))
932      (code-component :codes (#.sb!vm:code-header-widetag))
933      (lra :codes (#.sb!vm:return-pc-header-widetag))
934      (fdefn :codes (#.sb!vm:fdefn-widetag))
935      (random-class) ; used for unknown type codes
936
937      (function
938       :codes (#.sb!vm:closure-header-widetag
939               #.sb!vm:simple-fun-header-widetag)
940       :state :read-only)
941      (funcallable-instance
942       :inherits (function)
943       :state :read-only)
944
945      (array :translation array :codes (#.sb!vm:complex-array-widetag)
946             :hierarchical-p nil)
947      (simple-array
948       :translation simple-array :codes (#.sb!vm:simple-array-widetag)
949       :inherits (array))
950      (sequence
951       :translation (or cons (member nil) vector))
952      (vector
953       :translation vector :codes (#.sb!vm:complex-vector-widetag)
954       :direct-superclasses (array sequence)
955       :inherits (array sequence))
956      (simple-vector
957       :translation simple-vector :codes (#.sb!vm:simple-vector-widetag)
958       :direct-superclasses (vector simple-array)
959       :inherits (vector simple-array array sequence))
960      (bit-vector
961       :translation bit-vector :codes (#.sb!vm:complex-bit-vector-widetag)
962       :inherits (vector array sequence))
963      (simple-bit-vector
964       :translation simple-bit-vector :codes (#.sb!vm:simple-bit-vector-widetag)
965       :direct-superclasses (bit-vector simple-array)
966       :inherits (bit-vector vector simple-array
967                  array sequence))
968      (simple-array-unsigned-byte-2
969       :translation (simple-array (unsigned-byte 2) (*))
970       :codes (#.sb!vm:simple-array-unsigned-byte-2-widetag)
971       :direct-superclasses (vector simple-array)
972       :inherits (vector simple-array array sequence))
973      (simple-array-unsigned-byte-4
974       :translation (simple-array (unsigned-byte 4) (*))
975       :codes (#.sb!vm:simple-array-unsigned-byte-4-widetag)
976       :direct-superclasses (vector simple-array)
977       :inherits (vector simple-array array sequence))
978      (simple-array-unsigned-byte-8
979       :translation (simple-array (unsigned-byte 8) (*))
980       :codes (#.sb!vm:simple-array-unsigned-byte-8-widetag)
981       :direct-superclasses (vector simple-array)
982       :inherits (vector simple-array array sequence))
983      (simple-array-unsigned-byte-16
984      :translation (simple-array (unsigned-byte 16) (*))
985      :codes (#.sb!vm:simple-array-unsigned-byte-16-widetag)
986      :direct-superclasses (vector simple-array)
987      :inherits (vector simple-array array sequence))
988      (simple-array-unsigned-byte-32
989      :translation (simple-array (unsigned-byte 32) (*))
990      :codes (#.sb!vm:simple-array-unsigned-byte-32-widetag)
991      :direct-superclasses (vector simple-array)
992      :inherits (vector simple-array array sequence))
993      (simple-array-signed-byte-8
994      :translation (simple-array (signed-byte 8) (*))
995      :codes (#.sb!vm:simple-array-signed-byte-8-widetag)
996      :direct-superclasses (vector simple-array)
997      :inherits (vector simple-array array sequence))
998      (simple-array-signed-byte-16
999      :translation (simple-array (signed-byte 16) (*))
1000      :codes (#.sb!vm:simple-array-signed-byte-16-widetag)
1001      :direct-superclasses (vector simple-array)
1002      :inherits (vector simple-array array sequence))
1003      (simple-array-signed-byte-30
1004      :translation (simple-array (signed-byte 30) (*))
1005      :codes (#.sb!vm:simple-array-signed-byte-30-widetag)
1006      :direct-superclasses (vector simple-array)
1007      :inherits (vector simple-array array sequence))
1008      (simple-array-signed-byte-32
1009      :translation (simple-array (signed-byte 32) (*))
1010      :codes (#.sb!vm:simple-array-signed-byte-32-widetag)
1011      :direct-superclasses (vector simple-array)
1012      :inherits (vector simple-array array sequence))
1013      (simple-array-single-float
1014      :translation (simple-array single-float (*))
1015      :codes (#.sb!vm:simple-array-single-float-widetag)
1016      :direct-superclasses (vector simple-array)
1017      :inherits (vector simple-array array sequence))
1018      (simple-array-double-float
1019      :translation (simple-array double-float (*))
1020      :codes (#.sb!vm:simple-array-double-float-widetag)
1021      :direct-superclasses (vector simple-array)
1022      :inherits (vector simple-array array sequence))
1023     #!+long-float
1024     (simple-array-long-float
1025      :translation (simple-array long-float (*))
1026      :codes (#.sb!vm:simple-array-long-float-widetag)
1027      :direct-superclasses (vector simple-array)
1028      :inherits (vector simple-array array sequence))
1029     (simple-array-complex-single-float
1030      :translation (simple-array (complex single-float) (*))
1031      :codes (#.sb!vm:simple-array-complex-single-float-widetag)
1032      :direct-superclasses (vector simple-array)
1033      :inherits (vector simple-array array sequence))
1034     (simple-array-complex-double-float
1035      :translation (simple-array (complex double-float) (*))
1036      :codes (#.sb!vm:simple-array-complex-double-float-widetag)
1037      :direct-superclasses (vector simple-array)
1038      :inherits (vector simple-array array sequence))
1039     #!+long-float
1040     (simple-array-complex-long-float
1041      :translation (simple-array (complex long-float) (*))
1042      :codes (#.sb!vm:simple-array-complex-long-float-widetag)
1043      :direct-superclasses (vector simple-array)
1044      :inherits (vector simple-array array sequence))
1045     (string
1046      :translation string
1047      :codes (#.sb!vm:complex-string-widetag)
1048      :direct-superclasses (vector)
1049      :inherits (vector array sequence))
1050     (simple-string
1051      :translation simple-string
1052      :codes (#.sb!vm:simple-string-widetag)
1053      :direct-superclasses (string simple-array)
1054      :inherits (string vector simple-array
1055                 array sequence))
1056     (list
1057      :translation (or cons (member nil))
1058      :inherits (sequence))
1059     (cons
1060      :codes (#.sb!vm:list-pointer-lowtag)
1061      :translation cons
1062      :inherits (list sequence))
1063     (null
1064      :translation (member nil)
1065      :inherits (symbol list sequence)
1066      :direct-superclasses (symbol list))
1067     (number :translation number)
1068     (complex
1069      :translation complex
1070      :inherits (number)
1071      :codes (#.sb!vm:complex-widetag))
1072     (complex-single-float
1073      :translation (complex single-float)
1074      :inherits (complex number)
1075      :codes (#.sb!vm:complex-single-float-widetag))
1076     (complex-double-float
1077      :translation (complex double-float)
1078      :inherits (complex number)
1079      :codes (#.sb!vm:complex-double-float-widetag))
1080     #!+long-float
1081     (complex-long-float
1082      :translation (complex long-float)
1083      :inherits (complex number)
1084      :codes (#.sb!vm:complex-long-float-widetag))
1085     (real :translation real :inherits (number))
1086     (float
1087      :translation float
1088      :inherits (real number))
1089     (single-float
1090      :translation single-float
1091      :inherits (float real number)
1092      :codes (#.sb!vm:single-float-widetag))
1093     (double-float
1094      :translation double-float
1095      :inherits (float real number)
1096      :codes (#.sb!vm:double-float-widetag))
1097     #!+long-float
1098     (long-float
1099      :translation long-float
1100      :inherits (float real number)
1101      :codes (#.sb!vm:long-float-widetag))
1102     (rational
1103      :translation rational
1104      :inherits (real number))
1105     (ratio
1106      :translation (and rational (not integer))
1107      :inherits (rational real number)
1108      :codes (#.sb!vm:ratio-widetag))
1109     (integer
1110      :translation integer
1111      :inherits (rational real number))
1112     (fixnum
1113      :translation (integer #.sb!xc:most-negative-fixnum
1114                            #.sb!xc:most-positive-fixnum)
1115      :inherits (integer rational real number)
1116      :codes (#.sb!vm:even-fixnum-lowtag #.sb!vm:odd-fixnum-lowtag))
1117     (bignum
1118      :translation (and integer (not fixnum))
1119      :inherits (integer rational real number)
1120      :codes (#.sb!vm:bignum-widetag))
1121     (stream
1122      :state :read-only
1123      :depth 3
1124      :inherits (instance)))))
1125
1126 ;;; comment from CMU CL:
1127 ;;;   See also type-init.lisp where we finish setting up the
1128 ;;;   translations for built-in types.
1129 (!cold-init-forms
1130   (dolist (x *built-in-classes*)
1131     #-sb-xc-host (/show0 "at head of loop over *BUILT-IN-CLASSES*")
1132     (destructuring-bind
1133         (name &key
1134               (translation nil trans-p)
1135               inherits
1136               codes
1137               enumerable
1138               state
1139               depth
1140               (hierarchical-p t) ; might be modified below
1141               (direct-superclasses (if inherits
1142                                      (list (car inherits))
1143                                      '(t))))
1144         x
1145       (declare (ignore codes state translation))
1146       (let ((inherits-list (if (eq name t)
1147                                ()
1148                                (cons t (reverse inherits))))
1149             (classoid (make-built-in-classoid
1150                        :enumerable enumerable
1151                        :name name
1152                        :translation (if trans-p :initializing nil)
1153                        :direct-superclasses
1154                        (if (eq name t)
1155                            nil
1156                            (mapcar #'find-classoid direct-superclasses)))))
1157         (setf (info :type :kind name) #+sb-xc-host :defined #-sb-xc-host :primitive
1158               (classoid-cell-classoid (find-classoid-cell name)) classoid)
1159         (unless trans-p
1160           (setf (info :type :builtin name) classoid))
1161         (let* ((inherits-vector
1162                 (map 'simple-vector
1163                      (lambda (x)
1164                        (let ((super-layout
1165                               (classoid-layout (find-classoid x))))
1166                          (when (minusp (layout-depthoid super-layout))
1167                            (setf hierarchical-p nil))
1168                          super-layout))
1169                      inherits-list))
1170                (depthoid (if hierarchical-p
1171                            (or depth (length inherits-vector))
1172                            -1)))
1173           (register-layout
1174            (find-and-init-or-check-layout name
1175                                           0
1176                                           inherits-vector
1177                                           depthoid)
1178            :invalidate nil)))))
1179   (/show0 "done with loop over *BUILT-IN-CLASSES*"))
1180
1181 ;;; Define temporary PCL STANDARD-CLASSes. These will be set up
1182 ;;; correctly and the Lisp layout replaced by a PCL wrapper after PCL
1183 ;;; is loaded and the class defined.
1184 (!cold-init-forms
1185   (/show0 "about to define temporary STANDARD-CLASSes")
1186   (dolist (x '(;; Why is STREAM duplicated in this list? Because, when
1187                ;; the inherits-vector of FUNDAMENTAL-STREAM is set up,
1188                ;; a vector containing the elements of the list below,
1189                ;; i.e. '(T INSTANCE STREAM STREAM), is created, and
1190                ;; this is what the function ORDER-LAYOUT-INHERITS
1191                ;; would do, too.
1192                ;;
1193                ;; So, the purpose is to guarantee a valid layout for
1194                ;; the FUNDAMENTAL-STREAM class, matching what
1195                ;; ORDER-LAYOUT-INHERITS would do.
1196                ;; ORDER-LAYOUT-INHERITS would place STREAM at index 3
1197                ;; in the INHERITS(-VECTOR). Index 2 would not be
1198                ;; filled, so STREAM is duplicated there (as
1199                ;; ORDER-LAYOUTS-INHERITS would do). Maybe the
1200                ;; duplicate definition could be removed (removing a
1201                ;; STREAM element), because FUNDAMENTAL-STREAM is
1202                ;; redefined after PCL is set up, anyway. But to play
1203                ;; it safely, we define the class with a valid INHERITS
1204                ;; vector.
1205                (fundamental-stream (t instance stream stream))))
1206     (/show0 "defining temporary STANDARD-CLASS")
1207     (let* ((name (first x))
1208            (inherits-list (second x))
1209            (classoid (make-standard-classoid :name name))
1210            (classoid-cell (find-classoid-cell name)))
1211       ;; Needed to open-code the MAP, below
1212       (declare (type list inherits-list))
1213       (setf (classoid-cell-classoid classoid-cell) classoid
1214             (info :type :classoid name) classoid-cell
1215             (info :type :kind name) :instance)
1216       (let ((inherits (map 'simple-vector
1217                            (lambda (x)
1218                              (classoid-layout (find-classoid x)))
1219                            inherits-list)))
1220         #-sb-xc-host (/show0 "INHERITS=..") #-sb-xc-host (/hexstr inherits)
1221         (register-layout (find-and-init-or-check-layout name 0 inherits -1)
1222                          :invalidate nil))))
1223   (/show0 "done defining temporary STANDARD-CLASSes"))
1224
1225 ;;; Now that we have set up the class heterarchy, seal the sealed
1226 ;;; classes. This must be done after the subclasses have been set up.
1227 (!cold-init-forms
1228   (dolist (x *built-in-classes*)
1229     (destructuring-bind (name &key (state :sealed) &allow-other-keys) x
1230       (setf (classoid-state (find-classoid name)) state))))
1231 \f
1232 ;;;; class definition/redefinition
1233
1234 ;;; This is to be called whenever we are altering a class.
1235 (defun modify-classoid (classoid)
1236   (clear-type-caches)
1237   (when (member (classoid-state classoid) '(:read-only :frozen))
1238     ;; FIXME: This should probably be CERROR.
1239     (warn "making ~(~A~) class ~S writable"
1240           (classoid-state classoid)
1241           (classoid-name classoid))
1242     (setf (classoid-state classoid) nil)))
1243
1244 ;;; Mark LAYOUT as invalid. Setting DEPTHOID -1 helps cause unsafe
1245 ;;; structure type tests to fail. Remove class from all superclasses
1246 ;;; too (might not be registered, so might not be in subclasses of the
1247 ;;; nominal superclasses.)
1248 (defun invalidate-layout (layout)
1249   (declare (type layout layout))
1250   (setf (layout-invalid layout) t
1251         (layout-depthoid layout) -1)
1252   (let ((inherits (layout-inherits layout))
1253         (classoid (layout-classoid layout)))
1254     (modify-classoid classoid)
1255     (dotimes (i (length inherits)) ; FIXME: DOVECTOR
1256       (let* ((super (svref inherits i))
1257              (subs (classoid-subclasses (layout-classoid super))))
1258         (when subs
1259           (remhash classoid subs)))))
1260   (values))
1261 \f
1262 ;;;; cold loading initializations
1263
1264 ;;; FIXME: It would be good to arrange for this to be called when the
1265 ;;; cross-compiler is being built, not just when the target Lisp is
1266 ;;; being cold loaded. Perhaps this could be moved to its own file
1267 ;;; late in the build-order.lisp-expr sequence, and be put in
1268 ;;; !COLD-INIT-FORMS there?
1269 (defun !class-finalize ()
1270   (dohash (name layout *forward-referenced-layouts*)
1271     (let ((class (find-classoid name nil)))
1272       (cond ((not class)
1273              (setf (layout-classoid layout) (make-undefined-classoid name)))
1274             ((eq (classoid-layout class) layout)
1275              (remhash name *forward-referenced-layouts*))
1276             (t
1277              ;; FIXME: ERROR?
1278              (warn "something strange with forward layout for ~S:~%  ~S"
1279                    name
1280                    layout))))))
1281
1282 ;;; a vector that maps type codes to layouts, used for quickly finding
1283 ;;; the layouts of built-in classes
1284 (defvar *built-in-class-codes*) ; initialized in cold load
1285 (declaim (type simple-vector *built-in-class-codes*))
1286
1287 (!cold-init-forms
1288   #-sb-xc-host (/show0 "about to set *BUILT-IN-CLASS-CODES*")
1289   (setq *built-in-class-codes*
1290         (let* ((initial-element
1291                 (locally
1292                   ;; KLUDGE: There's a FIND-CLASSOID DEFTRANSFORM for
1293                   ;; constant class names which creates fast but
1294                   ;; non-cold-loadable, non-compact code. In this
1295                   ;; context, we'd rather have compact, cold-loadable
1296                   ;; code. -- WHN 19990928
1297                   (declare (notinline find-classoid))
1298                   (classoid-layout (find-classoid 'random-class))))
1299                (res (make-array 256 :initial-element initial-element)))
1300           (dolist (x *built-in-classes* res)
1301             (destructuring-bind (name &key codes &allow-other-keys)
1302                                 x
1303               (let ((layout (classoid-layout (find-classoid name))))
1304                 (dolist (code codes)
1305                   (setf (svref res code) layout)))))))
1306   #-sb-xc-host (/show0 "done setting *BUILT-IN-CLASS-CODES*"))
1307 \f
1308 (!defun-from-collected-cold-init-forms !classes-cold-init)