e1e7b6ad1ff2fb46ba7df66c874cf946d4483d77
[sbcl.git] / src / compiler / generic / early-objdef.lisp
1 ;;;; type-based constants
2
3 ;;;; This software is part of the SBCL system. See the README file for
4 ;;;; more information.
5 ;;;;
6 ;;;; This software is derived from the CMU CL system, which was
7 ;;;; written at Carnegie Mellon University and released into the
8 ;;;; public domain. The software is in the public domain and is
9 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
10 ;;;; files for more information.
11
12 (in-package "SB!VM")
13
14 ;;; FIXME: It's clever using :SUFFIX -LOWTAG for these things, but
15 ;;; it's a pain for people just learning to find their way around the
16 ;;; code who want to use lexical search to figure out where things
17 ;;; like EVEN-FIXNUM-LOWTAG are defined. Remove the :SUFFIXes and just
18 ;;; expand out the full names. Or even define them in DEF
19 ;;; EVEN-FIXNUM-LOWTAG style so searches like
20 ;;; 'def.*even-fixnum-lowtag' can find them.
21
22 ;;; Tags for the main low-level types are stored in the low n (usually three)
23 ;;; bits to identify the type of a machine word.  Certain constraints 
24 ;;; apply:
25 ;;;   * EVEN-FIXNUM-LOWTAG and ODD-FIXNUM-LOWTAG must be 0 and 4: code
26 ;;;     which shifts left two places to convert raw integers to tagged
27 ;;;     fixnums is ubiquitous.
28 ;;;   * LIST-POINTER-LOWTAG + N-WORD-BYTES = OTHER-POINTER-LOWTAG: NIL 
29 ;;;     is both a cons and a symbol (at the same address) and depends on this.
30 ;;;     See the definition of SYMBOL in objdef.lisp
31 ;;;   * OTHER-POINTER-LOWTAG > 4: Some code in the SPARC backend,
32 ;;;     which uses bit 2 of the ALLOC register to indicate that
33 ;;;     PSEUDO-ATOMIC is on, doesn't strip the low bits of reg_ALLOC
34 ;;;     before ORing in OTHER-POINTER-LOWTAG within a PSEUDO-ATOMIC
35 ;;;     section.
36 ;;;   * OTHER-IMMEDIATE-0-LOWTAG are spaced 4 apart: various code wants to 
37 ;;;     iterate through these
38 ;;; (These are just the ones we know about as of sbcl-0.7.1.22. There
39 ;;; might easily be more, since these values have stayed highly
40 ;;; constrained for more than a decade, an inviting target for
41 ;;; inventive abstraction-phobic maintainers.:-)
42 (eval-when (:compile-toplevel :load-toplevel :execute)
43   ;; The EVAL-WHEN is necessary (at least for Lispworks), because the
44   ;; second DEFENUM uses the value of OTHER-IMMEDIATE-0-LOWTAG, which is
45   ;; defined in the first DEFENUM. -- AL 20000216
46   #!+#.(cl:if (cl:= 64 sb!vm:n-word-bits) '(and) '(or))
47   (defenum (:suffix -lowtag)
48     even-fixnum
49     instance-pointer
50     other-immediate-0
51     pad0 pad1 pad2
52     other-immediate-1
53     list-pointer
54     odd-fixnum
55     fun-pointer
56     other-immediate-2
57     pad3 pad4 pad5
58     other-immediate-3
59     other-pointer)
60   #!+#.(cl:if (cl:= 32 sb!vm:n-word-bits) '(and) '(or))
61   (defenum (:suffix -lowtag)
62     even-fixnum
63     instance-pointer
64     other-immediate-0
65     list-pointer
66     odd-fixnum
67     fun-pointer
68     other-immediate-1
69     other-pointer))
70
71 (def!constant nil-value
72     (+ static-space-start n-word-bytes other-pointer-lowtag))
73
74 ;;; the heap types, stored in 8 bits of the header of an object on the
75 ;;; heap, to identify the type of the heap object (which'll be at
76 ;;; least two machine words, often more)
77 ;;;
78 ;;; Note: the order specified here is not critical for correctness,
79 ;;; but (FIXME) with %TEST-HEADERS as currently defined, BIGNUM must
80 ;;; be first, and COMPLEX-ARRAY must be last.
81 ;;;
82 ;;; However, for efficiency, we prefer contiguous sets of widetags for
83 ;;; "similar" objects, so that type checking can be done with a range
84 ;;; check, rather than several individual checks.
85 ;;;
86 ;;; * BIGNUM + RATIO (+ FIXNUM) = RATIONAL
87 ;;;
88 ;;; * SINGLE-FLOAT + DOUBLE-FLOAT + LONG-FLOAT = FLOAT
89 ;;;
90 ;;; * RATIONAL + FLOAT = REAL
91 ;;;
92 ;;; * (FIXME: COMPLEX example, which needs fixing anyway -- see
93 ;;;   UPGRADED-COMPLEX-PART-TYPE)
94 ;;;
95 ;;; * SIMPLE-ARRAY-* = (SIMPLE-ARRAY * (*))
96 ;;;
97 ;;; * SIMPLE-ARRAY-NIL + SIMPLE-BASE-STRING = SIMPLE-STRING
98 ;;;
99 ;;; * SIMPLE-ARRAY + COMPLEX-ARRAYOID = (SATISFIES ARRAY-HEADER-P)
100 ;;;
101 ;;; In addition, with
102 ;;; sufficient care we can cause extra combinations to appear with
103 ;;; differences in only one bit, permitting a more efficient type
104 ;;; test.  As an example, if SIMPLE-BASE-STRING = 0xA6 and
105 ;;; COMPLEX-BASE-STRING = 0xE6, then the type test for BASE-STRING is
106 ;;;
107 ;;;   AND   tag, ~0x40, tag
108 ;;;   ANDcc tag,  0xA6, tag
109 ;;;   JNE   tag, label
110 ;;;
111 ;;; rather than two separate tests and jumps 
112 (defenum (:suffix -widetag
113           ;; The first widetag must be greater than SB!VM:LOWTAG-LIMIT
114           ;; otherwise code in generic/early-type-vops will suffer
115           ;; a long, horrible death.  --njf, 2004-08-09
116           :start (+ (ash 1 n-lowtag-bits) other-immediate-0-lowtag)
117           :step 4)
118   ;; NOTE: the binary numbers off to the side are only valid for 32-bit
119   ;; ports; add #b1000 if you want to know the values for 64-bit ports.
120   ;; And note that the numbers get a little scrambled further down.
121   ;;   --njf, 2004-08-09
122   bignum                            ; 00001010
123   ratio                             ; 00001110
124   single-float                      ; 00010010
125   double-float                      ; 00010110
126   complex                           ; 00011010
127   complex-single-float              ; 00011110
128   complex-double-float              ; 00100010
129
130   code-header                       ; 00100110
131
132   simple-fun-header                 ; 00101010
133   closure-header                    ; 00101110
134   funcallable-instance-header       ; 00110010
135
136   return-pc-header                  ; 00110110
137   value-cell-header                 ; 00111010
138   symbol-header                     ; 00111110
139   character                         ; 01000010
140   sap                               ; 01000110
141   unbound-marker                    ; 01001010
142   weak-pointer                      ; 01001110
143   instance-header                   ; 01010010
144   fdefn                             ; 01010110
145
146   unused00                          ; 01011010
147   unused01                          ; 01011110
148   unused02                          ; 01100010
149   unused03                          ; 01100110
150   unused04                          ; 01101010
151   unused05                          ; 01101110
152   unused06                          ; 01110010
153   unused07                          ; 01110110
154   #!+#.(cl:if (cl:= 32 sb!vm:n-word-bits) '(and) '(or))
155   unused08                          ; 01111010
156   #!+#.(cl:if (cl:= 32 sb!vm:n-word-bits) '(and) '(or))
157   unused09                          ; 01111110
158
159   #!+#.(cl:if (cl:= 32 sb!vm:n-word-bits) '(and) '(or))
160   unused10                          ; 10000010
161   #!+#.(cl:if (cl:= 32 sb!vm:n-word-bits) '(and) '(or))
162   unused11                          ; 10000110
163
164   simple-array-unsigned-byte-2      ; 10001010
165   simple-array-unsigned-byte-4      ; 10001110
166   simple-array-unsigned-byte-7      ; 10010010
167   simple-array-unsigned-byte-8      ; 10010110
168   simple-array-unsigned-byte-15     ; 10011010
169   simple-array-unsigned-byte-16     ; 10011110
170   simple-array-nil                  ; 10100010
171   simple-base-string                ; 10100110
172   #!+sb-unicode simple-character-string
173   simple-bit-vector                 ; 10101010
174   simple-vector                     ; 10101110
175   #!+#.(cl:if (cl:= 32 sb!vm:n-word-bits) '(and) '(or))
176   simple-array-unsigned-byte-29     ; 10110010
177   simple-array-unsigned-byte-31     ; 10110110
178   simple-array-unsigned-byte-32     ; 10111010
179   #!+#.(cl:if (cl:= 64 sb!vm:n-word-bits) '(and) '(or))
180   simple-array-unsigned-byte-60
181   #!+#.(cl:if (cl:= 64 sb!vm:n-word-bits) '(and) '(or))
182   simple-array-unsigned-byte-63
183   #!+#.(cl:if (cl:= 64 sb!vm:n-word-bits) '(and) '(or))
184   simple-array-unsigned-byte-64
185   simple-array-signed-byte-8        ; 10111110
186   simple-array-signed-byte-16       ; 11000010
187   #!+#.(cl:if (cl:= 32 sb!vm:n-word-bits) '(and) '(or))
188   simple-array-signed-byte-30       ; 11000110
189   simple-array-signed-byte-32       ; 11001010
190   #!+#.(cl:if (cl:= 64 sb!vm:n-word-bits) '(and) '(or))
191   simple-array-signed-byte-61
192   #!+#.(cl:if (cl:= 64 sb!vm:n-word-bits) '(and) '(or))
193   simple-array-signed-byte-64
194   simple-array-single-float         ; 11001110
195   simple-array-double-float         ; 11010010
196   simple-array-complex-single-float ; 11010110
197   simple-array-complex-double-float ; 11011010
198   simple-array                      ; 11011110
199   complex-vector-nil                ; 11100010
200   complex-base-string               ; 11100110
201   #!+sb-unicode complex-character-string
202   complex-bit-vector                ; 11101010
203   complex-vector                    ; 11101110
204   complex-array                     ; 11110010
205
206   #!+#.(cl:if (cl:= 32 sb!vm:n-word-bits) '(and) '(or))
207   unused12                          ; 11110110
208   #!+(and #.(cl:if (cl:= 32 sb!vm:n-word-bits) '(and) '(or))
209           (not sb-unicode))
210   unused13                          ; 11111010
211   #!+(and #.(cl:if (cl:= 32 sb!vm:n-word-bits) '(and) '(or))
212           (not sb-unicode))
213   unused14                          ; 11111110
214 )
215
216 ;;; the different vector subtypes
217 (defenum (:prefix vector- :suffix -subtype)
218   normal
219   unused
220   valid-hashing
221   must-rehash)