0.7.12.50
[sbcl/lichteblau.git] / src / code / defbangstruct.lisp
blobbcde0b550fb4e494bb05235278398af880c481eb
1 ;;;; DEF!STRUCT = bootstrap DEFSTRUCT, a wrapper around DEFSTRUCT which
2 ;;;; provides special features to help at bootstrap time:
3 ;;;; 1. Layout information, inheritance information, and so forth is
4 ;;;; retained in such a way that we can get to it even on vanilla
5 ;;;; ANSI Common Lisp at cross-compiler build time.
6 ;;;; 2. MAKE-LOAD-FORM information is stored in such a way that we can
7 ;;;; get to it at bootstrap time before CLOS is built. This is
8 ;;;; important because at least as of sbcl-0.6.11.26, CLOS is built
9 ;;;; (compiled) after cold init, so we need to have the compiler
10 ;;;; even before CLOS runs.
12 ;;;; This software is part of the SBCL system. See the README file for
13 ;;;; more information.
14 ;;;;
15 ;;;; This software is derived from the CMU CL system, which was
16 ;;;; written at Carnegie Mellon University and released into the
17 ;;;; public domain. The software is in the public domain and is
18 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
19 ;;;; files for more information.
21 (in-package "SB!KERNEL")
23 ;;; A bootstrap MAKE-LOAD-FORM method can be a function or the name
24 ;;; of a function.
25 (deftype def!struct-type-make-load-form-fun () '(or function symbol))
27 ;;; a little single-inheritance system to keep track of MAKE-LOAD-FORM
28 ;;; information for DEF!STRUCT-defined types
29 (eval-when (#-sb-xc :compile-toplevel :load-toplevel :execute)
31 ;; (DEF!STRUCT-SUPERTYPE TYPE) is the DEF!STRUCT-defined type that
32 ;; TYPE inherits from, or NIL if none.
33 (defvar *def!struct-supertype* (make-hash-table))
34 (defun def!struct-supertype (type)
35 (multiple-value-bind (value value-p) (gethash type *def!struct-supertype*)
36 (unless value-p
37 (error "~S is not a DEF!STRUCT-defined type." type))
38 value))
39 (defun (setf def!struct-supertype) (value type)
40 (when (and value #-sb-xc-host *type-system-initialized*)
41 (aver (subtypep value 'structure!object))
42 (aver (subtypep type value)))
43 (setf (gethash type *def!struct-supertype*) value))
45 ;; (DEF!STRUCT-TYPE-MAKE-LOAD-FORM-FUN TYPE) is the load form
46 ;; generator associated with the DEF!STRUCT-defined structure named
47 ;; TYPE, stored in a way which works independently of CLOS. The
48 ;; *DEF!STRUCT-TYPE-MAKE-LOAD-FORM-FUN* table is used to store the
49 ;; values. All types defined by DEF!STRUCT have an entry in the
50 ;; table; those with no MAKE-LOAD-FORM function have an explicit NIL
51 ;; entry.
52 (defvar *def!struct-type-make-load-form-fun* (make-hash-table))
53 (defun def!struct-type-make-load-form-fun (type)
54 (do ((supertype type))
55 (nil)
56 (multiple-value-bind (value value-p)
57 (gethash supertype *def!struct-type-make-load-form-fun*)
58 (unless value-p
59 (error "~S (supertype of ~S) is not a DEF!STRUCT-defined type."
60 supertype
61 type))
62 (when value
63 (return value))
64 (setf supertype (def!struct-supertype supertype))
65 (unless supertype
66 (error "There is no MAKE-LOAD-FORM function for bootstrap type ~S."
67 type)))))
68 (defun (setf def!struct-type-make-load-form-fun) (new-value type)
69 (when #+sb-xc-host t #-sb-xc-host *type-system-initialized*
70 (aver (subtypep type 'structure!object))
71 (aver (typep new-value 'def!struct-type-make-load-form-fun)))
72 (setf (gethash type *def!struct-type-make-load-form-fun*) new-value)))
74 ;;; the simplest, most vanilla MAKE-LOAD-FORM function for DEF!STRUCT
75 ;;; objects
76 (defun just-dump-it-normally (object &optional (env nil env-p))
77 (declare (type structure!object object))
78 (if env-p
79 (sb!xc:make-load-form-saving-slots object :environment env)
80 (sb!xc:make-load-form-saving-slots object)))
82 ;;; a MAKE-LOAD-FORM function for objects which don't use the load
83 ;;; form system. This is used for LAYOUT objects because the special
84 ;;; dumping requirements of LAYOUT objects are met by using special
85 ;;; VOPs which bypass the load form system. It's also used for various
86 ;;; compiler internal structures like nodes and VOP-INFO (FIXME:
87 ;;; Why?).
88 (defun ignore-it (object &optional env)
89 (declare (type structure!object object))
90 (declare (ignore object env))
91 ;; This magic tag is handled specially by the compiler downstream.
92 :ignore-it)
94 ;;; machinery used in the implementation of DEF!STRUCT
95 #+sb-xc-host
96 (eval-when (:compile-toplevel :load-toplevel :execute)
97 ;; a description of a DEF!STRUCT call to be stored until we get
98 ;; enough of the system running to finish processing it
99 (defstruct delayed-def!struct
100 (args (missing-arg) :type cons)
101 (package (sane-package) :type package))
102 ;; a list of DELAYED-DEF!STRUCTs stored until we get DEF!STRUCT
103 ;; working fully so that we can apply it to them then. After
104 ;; DEF!STRUCT is made to work fully, this list is processed, then
105 ;; made unbound, and should no longer be used.
106 (defvar *delayed-def!structs* nil))
107 (eval-when (:compile-toplevel :load-toplevel :execute)
108 ;; Parse the arguments for a DEF!STRUCT call, and return
109 ;; (VALUES NAME DEFSTRUCT-ARGS MAKE-LOAD-FORM-FUN DEF!STRUCT-SUPERTYPE),
110 ;; where NAME is the name of the new type, DEFSTRUCT-ARGS is the
111 ;; munged result suitable for passing on to DEFSTRUCT,
112 ;; MAKE-LOAD-FORM-FUN is the make load form function, or NIL if
113 ;; there's none, and DEF!STRUCT-SUPERTYPE is the direct supertype of
114 ;; the type if it is another DEF!STRUCT-defined type, or NIL
115 ;; otherwise.
116 (defun parse-def!struct-args (nameoid &rest rest)
117 (multiple-value-bind (name options) ; Note: OPTIONS can change below.
118 (if (consp nameoid)
119 (values (first nameoid) (rest nameoid))
120 (values nameoid nil))
121 (declare (type list options))
122 (let* ((include-clause (find :include options :key #'first))
123 (def!struct-supertype nil) ; may change below
124 (mlff-clause (find :make-load-form-fun options :key #'first))
125 (mlff (and mlff-clause (second mlff-clause))))
126 (when (find :type options :key #'first)
127 (error "can't use :TYPE option in DEF!STRUCT"))
128 (when mlff-clause
129 (setf options (remove mlff-clause options)))
130 (when include-clause
131 (setf def!struct-supertype (second include-clause)))
132 (if (eq name 'structure!object) ; if root of hierarchy
133 (aver (not include-clause))
134 (unless include-clause
135 (setf def!struct-supertype 'structure!object)
136 (push `(:include ,def!struct-supertype) options)))
137 (values name `((,name ,@options) ,@rest) mlff def!struct-supertype)))))
139 ;;; Part of the raison d'etre for DEF!STRUCT is to be able to emulate
140 ;;; these low-level CMU CL functions in a vanilla ANSI Common Lisp
141 ;;; cross compilation host. (The emulation doesn't need to be
142 ;;; efficient, since it's needed for things like dumping objects, not
143 ;;; inner loops.)
144 #+sb-xc-host
145 (progn
146 (defun %instance-length (instance)
147 (aver (typep instance 'structure!object))
148 (layout-length (class-layout (sb!xc:find-class (type-of instance)))))
149 (defun %instance-ref (instance index)
150 (aver (typep instance 'structure!object))
151 (let* ((class (sb!xc:find-class (type-of instance)))
152 (layout (class-layout class)))
153 (if (zerop index)
154 layout
155 (let* ((dd (layout-info layout))
156 (dsd (elt (dd-slots dd) (1- index)))
157 (accessor-name (dsd-accessor-name dsd)))
158 (declare (type symbol accessor-name))
159 (funcall accessor-name instance)))))
160 (defun %instance-set (instance index new-value)
161 (aver (typep instance 'structure!object))
162 (let* ((class (sb!xc:find-class (type-of instance)))
163 (layout (class-layout class)))
164 (if (zerop index)
165 (error "can't set %INSTANCE-REF FOO 0 in cross-compilation host")
166 (let* ((dd (layout-info layout))
167 (dsd (elt (dd-slots dd) (1- index)))
168 (accessor-name (dsd-accessor-name dsd)))
169 (declare (type symbol accessor-name))
170 (funcall (fdefinition `(setf ,accessor-name))
171 new-value
172 instance))))))
174 ;;; a helper function for DEF!STRUCT in the #+SB-XC-HOST case: Return
175 ;;; DEFSTRUCT-style arguments with any class names in the SB!XC
176 ;;; package (i.e. the name of the class being defined, and/or the
177 ;;; names of classes in :INCLUDE clauses) converted from SB!XC::FOO to
178 ;;; CL::FOO.
179 #+sb-xc-host
180 (eval-when (:compile-toplevel :load-toplevel :execute)
181 (defun uncross-defstruct-args (defstruct-args)
182 (destructuring-bind (name-and-options &rest slots-and-doc) defstruct-args
183 (multiple-value-bind (name options)
184 (if (symbolp name-and-options)
185 (values name-and-options nil)
186 (values (first name-and-options)
187 (rest name-and-options)))
188 (flet ((uncross-option (option)
189 (if (eq (first option) :include)
190 (destructuring-bind
191 (include-keyword included-name &rest rest)
192 option
193 `(,include-keyword
194 ,(uncross included-name)
195 ,@rest))
196 option)))
197 `((,(uncross name)
198 ,@(mapcar #'uncross-option options))
199 ,@slots-and-doc))))))
201 ;;; DEF!STRUCT's arguments are like DEFSTRUCT's arguments, except that
202 ;;; DEF!STRUCT accepts an extra optional :MAKE-LOAD-FORM-FUN clause.
203 ;;; DEF!STRUCT also does some magic to ensure that anything it defines
204 ;;; includes STRUCTURE!OBJECT, so that when CLOS is/becomes available,
205 ;;; we can hook the DEF!STRUCT system into
206 ;;; (DEFMETHOD MAKE-LOAD-FORM ((X STRUCTURE!OBJECT) &OPTIONAL ENV) ..)
207 ;;; and everything will continue to work.
208 (defmacro def!struct (&rest args)
209 (multiple-value-bind (name defstruct-args mlff def!struct-supertype)
210 (apply #'parse-def!struct-args args)
211 `(progn
212 ;; Make sure that we really do include STRUCTURE!OBJECT. (If an
213 ;; :INCLUDE clause was used, and the included class didn't
214 ;; itself include STRUCTURE!OBJECT, then we wouldn't; and it's
215 ;; better to find out ASAP then to let the bug lurk until
216 ;; someone tries to do MAKE-LOAD-FORM on the object.)
217 (aver (subtypep ',def!struct-supertype 'structure!object))
218 (defstruct ,@defstruct-args)
219 (setf (def!struct-type-make-load-form-fun ',name)
220 ,(if (symbolp mlff)
221 `',mlff
222 mlff)
223 (def!struct-supertype ',name)
224 ',def!struct-supertype)
225 ;; This bit of commented-out code hasn't been needed for quite
226 ;; some time, but the comments here about why not might still
227 ;; be useful to me until I finally get the system to work. When
228 ;; I do remove all this, I should be sure also to remove the
229 ;; "outside the EVAL-WHEN" comments above, since they will no
230 ;; longer make sense. -- WHN 19990803
231 ;;(eval-when (:compile-toplevel :load-toplevel :execute)
232 ;; ;; (The DEFSTRUCT used to be in here, but that failed when trying
233 ;; ;; to cross-compile the hash table implementation.)
234 ;; ;;(defstruct ,@defstruct-args)
235 ;; ;; The (SETF (DEF!STRUCT-TYPE-MAKE-LOAD-FORM-FUN ..) ..) used to
236 ;; ;; be in here too, but that failed an assertion in the SETF
237 ;; ;; definition once we moved the DEFSTRUCT outside.)
238 ;; )
239 #+sb-xc-host ,(let ((u (uncross-defstruct-args defstruct-args)))
240 (if (boundp '*delayed-def!structs*)
241 `(push (make-delayed-def!struct :args ',u)
242 *delayed-def!structs*)
243 `(sb!xc:defstruct ,@u)))
244 ',name)))
246 ;;; When building the cross-compiler, this function has to be called
247 ;;; some time after SB!XC:DEFSTRUCT is set up, in order to take care
248 ;;; of any processing which had to be delayed until then.
249 #+sb-xc-host
250 (defun force-delayed-def!structs ()
251 (if (boundp '*delayed-def!structs*)
252 (progn
253 (mapcar (lambda (x)
254 (let ((*package* (delayed-def!struct-package x)))
255 ;; KLUDGE(?): EVAL is almost always the wrong thing.
256 ;; However, since we have to map DEFSTRUCT over the
257 ;; list, and since ANSI declined to specify any
258 ;; functional primitives corresponding to the
259 ;; DEFSTRUCT macro, it seems to me that EVAL is
260 ;; required in there somewhere..
261 (eval `(sb!xc:defstruct ,@(delayed-def!struct-args x)))))
262 (reverse *delayed-def!structs*))
263 ;; We shouldn't need this list any more. Making it unbound
264 ;; serves as a signal to DEF!STRUCT that it needn't delay
265 ;; DEF!STRUCTs any more. It is also generally a good thing for
266 ;; other reasons: it frees garbage, and it discourages anyone
267 ;; else from pushing anything else onto the list later.
268 (makunbound '*delayed-def!structs*))
269 ;; This condition is probably harmless if it comes up when
270 ;; interactively experimenting with the system by loading a source
271 ;; file into it more than once. But it's worth warning about it
272 ;; because it definitely shouldn't come up in an ordinary build
273 ;; process.
274 (warn "*DELAYED-DEF!STRUCTS* is already unbound.")))
276 ;;; The STRUCTURE!OBJECT abstract class is the base of the type
277 ;;; hierarchy for objects which have/use DEF!STRUCT functionality.
278 ;;; (The extra hackery in DEF!STRUCT-defined things isn't needed for
279 ;;; STRUCTURE-OBJECTs defined by ordinary, post-warm-init programs, so
280 ;;; it's only put into STRUCTURE-OBJECTs which inherit from
281 ;;; STRUCTURE!OBJECT.)
282 (def!struct (structure!object (:constructor nil)))
284 ;;;; hooking this all into the standard MAKE-LOAD-FORM system
286 ;;; MAKE-LOAD-FORM for DEF!STRUCT-defined types
287 (defun structure!object-make-load-form (object &optional env)
288 (declare (ignore env))
289 (funcall (def!struct-type-make-load-form-fun (type-of object))
290 object))
292 ;;; Do the right thing at cold load time.
294 ;;; (Eventually this MAKE-LOAD-FORM function be overwritten by CLOS's
295 ;;; generic MAKE-LOAD-FORM, at which time a STRUCTURE!OBJECT method
296 ;;; should be added to call STRUCTURE!OBJECT-MAKE-LOAD-FORM.)
297 (setf (symbol-function 'sb!xc:make-load-form)
298 #'structure!object-make-load-form)
300 ;;; Do the right thing in the vanilla ANSI CLOS of the
301 ;;; cross-compilation host. (Something similar will have to be done in
302 ;;; our CLOS, too, but later, some time long after the toplevel forms
303 ;;; of this file have run.)
304 #+sb-xc-host
305 (defmethod make-load-form ((obj structure!object) &optional (env nil env-p))
306 (if env-p
307 (structure!object-make-load-form obj env)
308 (structure!object-make-load-form obj)))