1 ;;;; bootstrapping the meta-braid
3 ;;;; The code in this file takes the early definitions that have been saved
4 ;;;; up and actually builds those class objects. This work is largely driven
5 ;;;; off of those class definitions, but the fact that STANDARD-CLASS is the
6 ;;;; class of all metaclasses in the braid is built into this code pretty
9 ;;;; This software is part of the SBCL system. See the README file for
10 ;;;; more information.
12 ;;;; This software is derived from software originally released by Xerox
13 ;;;; Corporation. Copyright and release statements follow. Later modifications
14 ;;;; to the software are in the public domain and are provided with
15 ;;;; absolutely no warranty. See the COPYING and CREDITS files for more
18 ;;;; copyright information from original PCL sources:
20 ;;;; Copyright (c) 1985, 1986, 1987, 1988, 1989, 1990 Xerox Corporation.
21 ;;;; All rights reserved.
23 ;;;; Use and copying of this software and preparation of derivative works based
24 ;;;; upon this software are permitted. Any distribution of this software or
25 ;;;; derivative works must comply with all applicable United States export
28 ;;;; This software is made available AS IS, and Xerox Corporation makes no
29 ;;;; warranty about the software, its performance or its conformity to any
34 (defun allocate-standard-instance (wrapper
35 &optional (slots-init nil slots-init-p))
36 (let ((instance (%%allocate-instance--class))
37 (no-of-slots (wrapper-no-of-instance-slots wrapper)))
38 (setf (std-instance-wrapper instance) wrapper)
39 (setf (std-instance-slots instance)
41 ;; Inline the slots vector allocation and initialization.
42 (let ((slots (make-array no-of-slots :initial-element 0)))
43 (do ((rem-slots slots-init (rest rem-slots))
45 ((>= i no-of-slots)) ;endp rem-slots))
46 (declare (list rem-slots)
48 (setf (aref slots i) (first rem-slots)))
51 (make-array no-of-slots
52 :initial-element +slot-unbound+))))
55 (defmacro allocate-funcallable-instance-slots (wrapper &optional
56 slots-init-p slots-init)
57 `(let ((no-of-slots (wrapper-no-of-instance-slots ,wrapper)))
60 (make-array no-of-slots :initial-contents ,slots-init)
61 (make-array no-of-slots :initial-element +slot-unbound+))
62 `(make-array no-of-slots :initial-element +slot-unbound+))))
64 (defun allocate-funcallable-instance (wrapper &optional
65 (slots-init nil slots-init-p))
66 (let ((fin (allocate-funcallable-instance-1)))
67 (set-funcallable-instance-function
69 #'(sb-kernel:instance-lambda (&rest args)
70 (declare (ignore args))
71 (error "The function of the funcallable-instance ~S has not been set."
73 (setf (fsc-instance-wrapper fin) wrapper
74 (fsc-instance-slots fin) (allocate-funcallable-instance-slots
75 wrapper slots-init-p slots-init))
78 (defun allocate-structure-instance (wrapper &optional
79 (slots-init nil slots-init-p))
80 (let* ((class (wrapper-class wrapper))
81 (constructor (class-defstruct-constructor class)))
83 (let ((instance (funcall constructor))
84 (slots (class-slots class)))
87 (setf (slot-value-using-class class instance slot)
90 (error "can't allocate an instance of class ~S" (class-name class)))))
92 ;;;; BOOTSTRAP-META-BRAID
94 ;;;; This function builds the base metabraid from the early class definitions.
96 ;;;; FIXME: This, like lotso the other stuff in PCL, is not needed in target
97 ;;;; Lisp, only at bootstrap time. Perhaps we should do something kludgy like
98 ;;;; putting a special character (#\$, perhaps) at the beginning of each
99 ;;;; needed-only-at-bootstrap-time symbol and then UNINTERN them all once we're
100 ;;;; done bootstrapping?
102 (defmacro initial-classes-and-wrappers (&rest classes)
104 ,@(mapcar #'(lambda (class)
105 (let ((wr (intern (format nil "~A-WRAPPER" class)
107 `(setf ,wr ,(if (eq class 'standard-generic-function)
110 (early-class-size ',class)
112 ,class (allocate-standard-instance
113 ,(if (eq class 'standard-generic-function)
114 'funcallable-standard-class-wrapper
115 'standard-class-wrapper))
116 (wrapper-class ,wr) ,class
117 (find-class ',class) ,class)))
120 (defun !bootstrap-meta-braid ()
122 (predicate-name (make-type-predicate-name name)))
123 (setf (gdefinition predicate-name)
124 #'(lambda (x) (declare (ignore x)) t))
125 (do-satisfies-deftype name predicate-name))
126 (let* ((*create-classes-from-internal-structure-definitions-p* nil)
127 std-class-wrapper std-class
128 standard-class-wrapper standard-class
129 funcallable-standard-class-wrapper funcallable-standard-class
130 slot-class-wrapper slot-class
131 built-in-class-wrapper built-in-class
132 structure-class-wrapper structure-class
133 standard-direct-slot-definition-wrapper
134 standard-direct-slot-definition
135 standard-effective-slot-definition-wrapper
136 standard-effective-slot-definition
137 class-eq-specializer-wrapper class-eq-specializer
138 standard-generic-function-wrapper standard-generic-function)
139 (initial-classes-and-wrappers
140 standard-class funcallable-standard-class
141 slot-class built-in-class structure-class std-class
142 standard-direct-slot-definition standard-effective-slot-definition
143 class-eq-specializer standard-generic-function)
144 ;; First, make a class metaobject for each of the early classes. For
145 ;; each metaobject we also set its wrapper. Except for the class T,
146 ;; the wrapper is always that of STANDARD-CLASS.
147 (dolist (definition *early-class-definitions*)
148 (let* ((name (ecd-class-name definition))
149 (meta (ecd-metaclass definition))
151 (slot-class slot-class-wrapper)
152 (std-class std-class-wrapper)
153 (standard-class standard-class-wrapper)
154 (funcallable-standard-class
155 funcallable-standard-class-wrapper)
156 (built-in-class built-in-class-wrapper)
157 (structure-class structure-class-wrapper)))
158 (class (or (find-class name nil)
159 (allocate-standard-instance wrapper))))
160 (when (or (eq meta 'standard-class)
161 (eq meta 'funcallable-standard-class))
162 (inform-type-system-about-std-class name))
163 (setf (find-class name) class)))
164 (dolist (definition *early-class-definitions*)
165 (let ((name (ecd-class-name definition))
166 (meta (ecd-metaclass definition))
167 (source (ecd-source definition))
168 (direct-supers (ecd-superclass-names definition))
169 (direct-slots (ecd-canonical-slots definition))
170 (other-initargs (ecd-other-initargs definition)))
171 (let ((direct-default-initargs
172 (getf other-initargs :direct-default-initargs)))
173 (multiple-value-bind (slots cpl default-initargs direct-subclasses)
174 (early-collect-inheritance name)
175 (let* ((class (find-class name))
176 (wrapper (cond ((eq class slot-class)
178 ((eq class std-class)
180 ((eq class standard-class)
181 standard-class-wrapper)
182 ((eq class funcallable-standard-class)
183 funcallable-standard-class-wrapper)
184 ((eq class standard-direct-slot-definition)
185 standard-direct-slot-definition-wrapper)
187 standard-effective-slot-definition)
188 standard-effective-slot-definition-wrapper)
189 ((eq class built-in-class)
190 built-in-class-wrapper)
191 ((eq class structure-class)
192 structure-class-wrapper)
193 ((eq class class-eq-specializer)
194 class-eq-specializer-wrapper)
195 ((eq class standard-generic-function)
196 standard-generic-function-wrapper)
198 (boot-make-wrapper (length slots) name))))
200 (when (eq name t) (setq *the-wrapper-of-t* wrapper))
201 (set (intern (format nil "*THE-CLASS-~A*" (symbol-name name))
205 (unless (eq (getf slot :allocation :instance) :instance)
206 (error "Slot allocation ~S is not supported in bootstrap.")))
208 (when (typep wrapper 'wrapper)
209 (setf (wrapper-instance-slots-layout wrapper)
210 (mapcar #'canonical-slot-name slots))
211 (setf (wrapper-class-slots wrapper)
214 (setq proto (if (eq meta 'funcallable-standard-class)
215 (allocate-funcallable-instance wrapper)
216 (allocate-standard-instance wrapper)))
219 (!bootstrap-make-slot-definitions
220 name class direct-slots
221 standard-direct-slot-definition-wrapper nil))
223 (!bootstrap-make-slot-definitions
225 standard-effective-slot-definition-wrapper t))
228 ((std-class standard-class funcallable-standard-class)
229 (!bootstrap-initialize-class
231 class name class-eq-specializer-wrapper source
232 direct-supers direct-subclasses cpl wrapper proto
233 direct-slots slots direct-default-initargs default-initargs))
234 (built-in-class ; *the-class-t*
235 (!bootstrap-initialize-class
237 class name class-eq-specializer-wrapper source
238 direct-supers direct-subclasses cpl wrapper proto))
239 (slot-class ; *the-class-slot-object*
240 (!bootstrap-initialize-class
242 class name class-eq-specializer-wrapper source
243 direct-supers direct-subclasses cpl wrapper proto))
244 (structure-class ; *the-class-structure-object*
245 (!bootstrap-initialize-class
247 class name class-eq-specializer-wrapper source
248 direct-supers direct-subclasses cpl wrapper))))))))
250 (let* ((smc-class (find-class 'standard-method-combination))
251 (smc-wrapper (!bootstrap-get-slot 'standard-class
254 (smc (allocate-standard-instance smc-wrapper)))
255 (flet ((set-slot (name value)
256 (!bootstrap-set-slot 'standard-method-combination
260 (set-slot 'source *load-truename*)
261 (set-slot 'type 'standard)
262 (set-slot 'documentation "The standard method combination.")
263 (set-slot 'options ()))
264 (setq *standard-method-combination* smc))))
266 ;;; Initialize a class metaobject.
268 ;;; FIXME: This and most stuff in this file is probably only needed at
270 (defun !bootstrap-initialize-class
271 (metaclass-name class name
272 class-eq-wrapper source direct-supers direct-subclasses cpl wrapper
274 proto direct-slots slots direct-default-initargs default-initargs)
275 (flet ((classes (names) (mapcar #'find-class names))
276 (set-slot (slot-name value)
277 (!bootstrap-set-slot metaclass-name class slot-name value)))
278 (set-slot 'name name)
279 (set-slot 'source source)
280 (set-slot 'type (if (eq class (find-class t))
282 ;; FIXME: Could this just be CLASS instead
283 ;; of `(CLASS ,CLASS)? If not, why not?
284 ;; (See also similar expression in
285 ;; SHARED-INITIALIZE :BEFORE (CLASS).)
287 (set-slot 'class-eq-specializer
288 (let ((spec (allocate-standard-instance class-eq-wrapper)))
289 (!bootstrap-set-slot 'class-eq-specializer spec 'type
291 (!bootstrap-set-slot 'class-eq-specializer spec 'object
294 (set-slot 'class-precedence-list (classes cpl))
295 (set-slot 'can-precede-list (classes (cdr cpl)))
296 (set-slot 'incompatible-superclass-list nil)
297 (set-slot 'direct-superclasses (classes direct-supers))
298 (set-slot 'direct-subclasses (classes direct-subclasses))
299 (set-slot 'direct-methods (cons nil nil))
300 (set-slot 'wrapper wrapper)
301 (set-slot 'predicate-name (or (cadr (assoc name *early-class-predicates*))
302 (make-class-predicate-name name)))
304 `(,@(and direct-default-initargs
305 `(direct-default-initargs ,direct-default-initargs))
306 ,@(and default-initargs
307 `(default-initargs ,default-initargs))))
308 (when (memq metaclass-name '(standard-class funcallable-standard-class
309 structure-class slot-class std-class))
310 (set-slot 'direct-slots direct-slots)
311 (set-slot 'slots slots)
312 (set-slot 'initialize-info nil))
313 (if (eq metaclass-name 'structure-class)
314 (let ((constructor-sym '|STRUCTURE-OBJECT class constructor|))
315 (set-slot 'predicate-name (or (cadr (assoc name
316 *early-class-predicates*))
317 (make-class-predicate-name name)))
318 (set-slot 'defstruct-form
319 `(defstruct (structure-object (:constructor
322 (set-slot 'defstruct-constructor constructor-sym)
323 (set-slot 'from-defclass-p t)
324 (set-slot 'plist nil)
325 (set-slot 'prototype (funcall constructor-sym)))
326 (set-slot 'prototype (or proto (allocate-standard-instance wrapper))))
329 (defun !bootstrap-make-slot-definitions (name class slots wrapper effective-p)
331 (mapcar (lambda (slot)
333 (!bootstrap-make-slot-definition
334 name class slot wrapper effective-p index))
337 (defun !bootstrap-make-slot-definition
338 (name class slot wrapper effective-p index)
339 (let* ((slotd-class-name (if effective-p
340 'standard-effective-slot-definition
341 'standard-direct-slot-definition))
342 (slotd (allocate-standard-instance wrapper))
343 (slot-name (getf slot :name)))
344 (flet ((get-val (name) (getf slot name))
346 (!bootstrap-set-slot slotd-class-name slotd name val)))
347 (set-val 'name slot-name)
348 (set-val 'initform (get-val :initform))
349 (set-val 'initfunction (get-val :initfunction))
350 (set-val 'initargs (get-val :initargs))
351 (set-val 'readers (get-val :readers))
352 (set-val 'writers (get-val :writers))
353 (set-val 'allocation :instance)
354 (set-val 'type (or (get-val :type) t))
355 (set-val 'documentation (or (get-val :documentation) ""))
356 (set-val 'class class)
358 (set-val 'location index)
360 (set-val 'reader-function (make-optimized-std-reader-method-function
361 fsc-p slot-name index))
362 (set-val 'writer-function (make-optimized-std-writer-method-function
363 fsc-p slot-name index))
364 (set-val 'boundp-function (make-optimized-std-boundp-method-function
365 fsc-p slot-name index)))
366 (set-val 'accessor-flags 7)
367 (let ((table (or (gethash slot-name *name->class->slotd-table*)
368 (setf (gethash slot-name *name->class->slotd-table*)
369 (make-hash-table :test 'eq :size 5)))))
370 (setf (gethash class table) slotd)))
371 (when (and (eq name 'standard-class)
372 (eq slot-name 'slots) effective-p)
373 (setq *the-eslotd-standard-class-slots* slotd))
374 (when (and (eq name 'funcallable-standard-class)
375 (eq slot-name 'slots) effective-p)
376 (setq *the-eslotd-funcallable-standard-class-slots* slotd))
379 (defun !bootstrap-accessor-definitions (early-p)
380 (let ((*early-p* early-p))
381 (dolist (definition *early-class-definitions*)
382 (let ((name (ecd-class-name definition))
383 (meta (ecd-metaclass definition)))
384 (unless (eq meta 'built-in-class)
385 (let ((direct-slots (ecd-canonical-slots definition)))
386 (dolist (slotd direct-slots)
387 (let ((slot-name (getf slotd :name))
388 (readers (getf slotd :readers))
389 (writers (getf slotd :writers)))
390 (!bootstrap-accessor-definitions1
396 (!bootstrap-accessor-definitions1
399 (list (slot-reader-symbol slot-name))
400 (list (slot-writer-symbol slot-name))
401 (list (slot-boundp-symbol slot-name)))))))))))
403 (defun !bootstrap-accessor-definition (class-name accessor-name slot-name type)
404 (multiple-value-bind (accessor-class make-method-function arglist specls doc)
406 (reader (values 'standard-reader-method
407 #'make-std-reader-method-function
410 "automatically generated reader method"))
411 (writer (values 'standard-writer-method
412 #'make-std-writer-method-function
413 (list 'new-value class-name)
415 "automatically generated writer method"))
416 (boundp (values 'standard-boundp-method
417 #'make-std-boundp-method-function
420 "automatically generated boundp method")))
421 (let ((gf (ensure-generic-function accessor-name)))
422 (if (find specls (early-gf-methods gf)
423 :key #'early-method-specializers
425 (unless (assoc accessor-name *!generic-function-fixups*
429 (make-a-method accessor-class
432 (funcall make-method-function
433 class-name slot-name)
437 (defun !bootstrap-accessor-definitions1 (class-name
442 (flet ((do-reader-definition (reader)
443 (!bootstrap-accessor-definition class-name
447 (do-writer-definition (writer)
448 (!bootstrap-accessor-definition class-name
452 (do-boundp-definition (boundp)
453 (!bootstrap-accessor-definition class-name
457 (dolist (reader readers) (do-reader-definition reader))
458 (dolist (writer writers) (do-writer-definition writer))
459 (dolist (boundp boundps) (do-boundp-definition boundp))))
461 (defun !bootstrap-class-predicates (early-p)
462 (let ((*early-p* early-p))
463 (dolist (definition *early-class-definitions*)
464 (let* ((name (ecd-class-name definition))
465 (class (find-class name)))
466 (setf (find-class-predicate name)
467 (make-class-predicate class (class-predicate-name class)))))))
469 (defun !bootstrap-built-in-classes ()
471 ;; First make sure that all the supers listed in
472 ;; *BUILT-IN-CLASS-LATTICE* are themselves defined by
473 ;; *BUILT-IN-CLASS-LATTICE*. This is just to check for typos and
474 ;; other sorts of brainos.
475 (dolist (e *built-in-classes*)
476 (dolist (super (cadr e))
477 (unless (or (eq super t)
478 (assq super *built-in-classes*))
479 (error "in *BUILT-IN-CLASSES*: ~S has ~S as a super,~%~
480 but ~S is not itself a class in *BUILT-IN-CLASSES*."
481 (car e) super super))))
483 ;; In the first pass, we create a skeletal object to be bound to the
485 (let* ((built-in-class (find-class 'built-in-class))
486 (built-in-class-wrapper (class-wrapper built-in-class)))
487 (dolist (e *built-in-classes*)
488 (let ((class (allocate-standard-instance built-in-class-wrapper)))
489 (setf (find-class (car e)) class))))
491 ;; In the second pass, we initialize the class objects.
492 (let ((class-eq-wrapper (class-wrapper (find-class 'class-eq-specializer))))
493 (dolist (e *built-in-classes*)
494 (destructuring-bind (name supers subs cpl prototype) e
495 (let* ((class (find-class name))
496 (lclass (cl:find-class name))
497 (wrapper (sb-kernel:class-layout lclass)))
498 (set (get-built-in-class-symbol name) class)
499 (set (get-built-in-wrapper-symbol name) wrapper)
500 (setf (sb-kernel:class-pcl-class lclass) class)
502 (!bootstrap-initialize-class 'built-in-class class
503 name class-eq-wrapper nil
506 wrapper prototype)))))
508 (dolist (e *built-in-classes*)
509 (let* ((name (car e))
510 (class (find-class name)))
511 (setf (find-class-predicate name)
512 (make-class-predicate class (class-predicate-name class))))))
514 (defmacro wrapper-of-macro (x)
515 `(sb-kernel:layout-of ,x))
518 (wrapper-class* (wrapper-of-macro x)))
520 ;;; FIXME: We probably don't need both WRAPPER-OF and WRAPPER-OF-MACRO.
521 #-sb-fluid (declaim (inline wrapper-of))
522 (defun wrapper-of (x)
523 (wrapper-of-macro x))
525 (defvar *find-structure-class* nil)
527 (defun eval-form (form)
528 #'(lambda () (eval form)))
530 (defun slot-initargs-from-structure-slotd (slotd)
531 `(:name ,(structure-slotd-name slotd)
532 :defstruct-accessor-symbol ,(structure-slotd-accessor-symbol slotd)
533 :internal-reader-function ,(structure-slotd-reader-function slotd)
534 :internal-writer-function ,(structure-slotd-writer-function slotd)
535 :type ,(or (structure-slotd-type slotd) t)
536 :initform ,(structure-slotd-init-form slotd)
537 :initfunction ,(eval-form (structure-slotd-init-form slotd))))
539 (defun find-structure-class (symbol)
540 (if (structure-type-p symbol)
541 (unless (eq *find-structure-class* symbol)
542 (let ((*find-structure-class* symbol))
544 :metaclass 'structure-class
547 (cond ;; Handle our CMU-CL-ish structure-based
549 ((cl:subtypep symbol 'condition)
550 (mapcar #'cl:class-name
551 (sb-kernel:class-direct-superclasses
552 (cl:find-class symbol))))
553 ;; a hack to add the STREAM class as a
554 ;; mixin to the LISP-STREAM class.
555 ((eq symbol 'sb-kernel:lisp-stream)
556 '(structure-object stream))
557 ((structure-type-included-type-name symbol)
558 (list (structure-type-included-type-name
561 (mapcar #'slot-initargs-from-structure-slotd
562 (structure-type-slot-description-list
564 (error "~S is not a legal structure class name." symbol)))
566 (defun make-class-predicate (class name)
567 (let* ((gf (ensure-generic-function name))
568 (mlist (if (eq *boot-state* 'complete)
569 (generic-function-methods gf)
570 (early-gf-methods gf))))
572 (unless (eq class *the-class-t*)
573 (let* ((default-method-function #'constantly-nil)
574 (default-method-initargs (list :function
575 default-method-function))
576 (default-method (make-a-method 'standard-method
580 default-method-initargs
581 "class predicate default method")))
582 (setf (method-function-get default-method-function :constant-value)
584 (add-method gf default-method)))
585 (let* ((class-method-function #'constantly-t)
586 (class-method-initargs (list :function
587 class-method-function))
588 (class-method (make-a-method 'standard-method
592 class-method-initargs
593 "class predicate class method")))
594 (setf (method-function-get class-method-function :constant-value) t)
595 (add-method gf class-method)))
598 ;;; Set the inherits from CPL, and register the layout. This actually
599 ;;; installs the class in the Lisp type system.
600 (defun update-lisp-class-layout (class layout)
601 (let ((lclass (sb-kernel:layout-class layout)))
602 (unless (eq (sb-kernel:class-layout lclass) layout)
603 (setf (sb-kernel:layout-inherits layout)
604 (map 'vector #'class-wrapper
605 (reverse (rest (class-precedence-list class)))))
606 (sb-kernel:register-layout layout :invalidate nil)
608 ;; Subclasses of formerly forward-referenced-class may be unknown
609 ;; to CL:FIND-CLASS and also anonymous. This functionality moved
610 ;; here from (SETF FIND-CLASS).
611 (let ((name (class-name class)))
612 (setf (cl:find-class name) lclass
613 ;; FIXME: It's nasty to use double colons. Perhaps the
614 ;; best way to fix this is not to export CLASS-%NAME
615 ;; from SB-KERNEL, but instead to move the whole
616 ;; UPDATE-LISP-CLASS-LAYOUT function to SB-KERNEL, and
617 ;; export it. (since it's also nasty for us to be
618 ;; reaching into %KERNEL implementation details my
619 ;; messing with raw CLASS-%NAME)
620 (sb-kernel::class-%name lclass) name)))))
622 (eval-when (:load-toplevel :execute)
624 (clrhash *find-class*)
625 (!bootstrap-meta-braid)
626 (!bootstrap-accessor-definitions t)
627 (!bootstrap-class-predicates t)
628 (!bootstrap-accessor-definitions nil)
629 (!bootstrap-class-predicates nil)
630 (!bootstrap-built-in-classes)
632 (dohash (name x *find-class*)
633 (let* ((class (find-class-from-cell name x))
634 (layout (class-wrapper class))
635 (lclass (sb-kernel:layout-class layout))
636 (lclass-pcl-class (sb-kernel:class-pcl-class lclass))
637 (olclass (cl:find-class name nil)))
639 (assert (eq class lclass-pcl-class))
640 (setf (sb-kernel:class-pcl-class lclass) class))
642 (update-lisp-class-layout class layout)
645 (assert (eq lclass olclass)))
647 (setf (cl:find-class name) lclass)))))
649 (setq *boot-state* 'braid)
653 (defmethod no-applicable-method (generic-function &rest args)
654 ;; FIXME: probably could be ERROR instead of CERROR
655 (cerror "Retry call to ~S."
656 "There is no matching method for the generic function ~S~@
657 when called with arguments ~S."
660 (apply generic-function args))