Initial revision
[sbcl.git] / doc / cmucl / internals / errata-object
1 Look at primtype.lisp and objdef.lisp (and early-objdef.lisp) for more
2 up-to-date definitions of various tags. (For example, the simple
3 string tag has changed since object.tex was written.)
4
5 The string format has changed. According to "object.tex", string length is
6 stored in the 24 bits of the string header. Instead, those 24 bits
7 are set to zero, and string length is encoded in the same way as the
8 other specialized simple-array counts, as a fixnum following the 
9 header.
10
11 The number of slots for objects has changed since object.tex was
12 written. The only reliable source for current slot definitions seems
13 to be the primitive object data maintained by the compiler itself. See
14 primtype.lisp and objdef.lisp, or look at the genesis code which reads
15 this data to generate the various slot offsets in the C header file.
16
17 The meaning of the function-self slot has changed in the X86 port:
18 it points directly to the code to be executed.
19
20 Nothing about FDEFN objects seems to be documented. FDEFN objects
21 replace the simple SYMBOL-FUNCTION slot with a much more complicated
22 mechanism, which I [WHN] dislike and would like to get rid of, but
23 haven't [yet?].