X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcode%2Fclass.lisp;h=c1ece12fe32e7bbab6e454d4e1146f77c656e799;hb=975f1932acc3a8e90fb31d2b055bfbdde78ea927;hp=b7ada1fc57e895ffc2b8372c431d5ebbe990b236;hpb=f73aadf04d841e0f1bfede4c11a13c4ba5c4e264;p=sbcl.git diff --git a/src/code/class.lisp b/src/code/class.lisp index b7ada1f..c1ece12 100644 --- a/src/code/class.lisp +++ b/src/code/class.lisp @@ -114,6 +114,13 @@ ;;; type checking and garbage collection. Whenever a class is ;;; incompatibly redefined, a new layout is allocated. If two object's ;;; layouts are EQ, then they are exactly the same type. +;;; +;;; *** IMPORTANT *** +;;; +;;; If you change the slots of LAYOUT, you need to alter genesis as +;;; well, since the initialization of layout slots is hardcoded there. +;;; +;;; FIXME: ...it would be better to automate this, of course... (def!struct (layout ;; KLUDGE: A special hack keeps this from being ;; called when building code for the @@ -186,6 +193,9 @@ (n-untagged-slots 0 :type index) ;; Definition location (source-location nil) + ;; Information about slots in the class to PCL: this provides fast + ;; access to slot-definitions and locations by name, etc. + (slot-table #(nil) :type simple-vector) ;; True IFF the layout belongs to a standand-instance or a ;; standard-funcallable-instance -- that is, true only if the layout ;; is really a wrapper.