1 ;;;; this file centralizes information about the array types
2 ;;;; implemented by the system, where previously such information was
3 ;;;; spread over several files.
5 ;;;; This software is part of the SBCL system. See the README file for
8 ;;;; This software is derived from the CMU CL system, which was
9 ;;;; written at Carnegie Mellon University and released into the
10 ;;;; public domain. The software is in the public domain and is
11 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
12 ;;;; files for more information.
16 (defstruct (specialized-array-element-type-properties
21 initial-element-default
24 &key
(n-pad-elements 0) complex-typecode
(importance 0) fixnum-p
26 (symbol-value (symbolicate primitive-type-name
"-WIDETAG")))))
28 ;; the element specifier, e.g. BASE-CHAR or (UNSIGNED-BYTE 4)
29 ;; TYPE-SPECIFIER is too general - this doesn't allow CLASS/CLASSOID.
30 (specifier (missing-arg) :type
(or symbol list
) :read-only t
)
31 ;; the element type, e.g. #<BUILT-IN-CLASS BASE-CHAR (sealed)> or
32 ;; #<SB-KERNEL:NUMERIC-TYPE (UNSIGNED-BYTE 4)>
33 (ctype nil
:type
(or ctype null
))
34 ;; true if the elements are tagged fixnums
35 (fixnum-p nil
:type boolean
:read-only t
)
36 ;; what we get when the low-level vector-creation logic zeroes all
37 ;; the bits (which also serves as the default value of MAKE-ARRAY's
38 ;; :INITIAL-ELEMENT keyword)
39 (initial-element-default (missing-arg) :read-only t
)
40 ;; how many bits per element
41 (n-bits (missing-arg) :type index
:read-only t
)
42 ;; the low-level type code (aka "widetag")
43 (typecode (missing-arg) :type index
:read-only t
)
44 ;; if an integer, a typecode corresponding to a complex vector
45 ;; specialized on this element type.
46 (complex-typecode nil
:type
(or index null
) :read-only t
)
47 ;; the name of the primitive type of data vectors specialized on
49 (primitive-type-name (missing-arg) :type symbol
:read-only t
)
50 ;; the number of extra elements we use at the end of the array for
51 ;; low level hackery (e.g., one element for arrays of BASE-CHAR,
52 ;; which is used for a fixed #\NULL so that when we call out to C
53 ;; we don't need to cons a new copy)
54 (n-pad-elements (missing-arg) :type index
:read-only t
)
55 ;; the relative importance of this array type. Previously used for
56 ;; determining the order of the TYPECASE in
57 ;; HAIRY-DATA-VECTOR-{REF,SET}; currently (as of 2013-09-18) unused.
58 (importance (missing-arg) :type fixnum
:read-only t
))
60 ;; Simulate DEFINE-LOAD-TIME-GLOBAL - always bound in the image
61 ;; but not eval'd in the compiler.
62 (defglobal *specialized-array-element-type-properties
* nil
)
63 (setq *specialized-array-element-type-properties
*
66 (apply #'!make-saetp args
))
67 `(;; Erm. Yeah. There aren't a lot of things that make sense
68 ;; for an initial element for (ARRAY NIL). -- CSR, 2002-03-07
69 (nil #:mu
0 simple-array-nil
70 :complex-typecode
#.complex-vector-nil-widetag
73 (character ,(code-char 0) 8 simple-base-string
74 ;; (SIMPLE-BASE-STRINGs are stored with an extra
75 ;; trailing #\NULL for convenience in calling out
78 :complex-typecode
#.complex-base-string-widetag
81 (base-char ,(code-char 0) 8 simple-base-string
82 ;; (SIMPLE-BASE-STRINGs are stored with an extra
83 ;; trailing #\NULL for convenience in calling out
86 :complex-typecode
#.complex-base-string-widetag
89 (character ,(code-char 0) 32 simple-character-string
91 :complex-typecode
#.complex-character-string-widetag
93 (single-float 0.0f0
32 simple-array-single-float
95 (double-float 0.0d0
64 simple-array-double-float
97 (bit 0 1 simple-bit-vector
98 :complex-typecode
#.complex-bit-vector-widetag
100 ;; KLUDGE: The fact that these UNSIGNED-BYTE entries come
101 ;; before their SIGNED-BYTE partners is significant in the
102 ;; implementation of the compiler; some of the cross-compiler
103 ;; code (see e.g. COERCE-TO-SMALLEST-ELTYPE in
104 ;; src/compiler/debug-dump.lisp) attempts to create an array
105 ;; specialized on (UNSIGNED-BYTE FOO), where FOO could be 7;
106 ;; (UNSIGNED-BYTE 7) is SUBTYPEP (SIGNED-BYTE 8), so if we're
107 ;; not careful we could get the wrong specialized array when
108 ;; we try to FIND-IF, below. -- CSR, 2002-07-08
109 ((unsigned-byte 2) 0 2 simple-array-unsigned-byte-2
111 ((unsigned-byte 4) 0 4 simple-array-unsigned-byte-4
113 ((unsigned-byte 7) 0 8 simple-array-unsigned-byte-7
115 ((unsigned-byte 8) 0 8 simple-array-unsigned-byte-8
117 ((unsigned-byte 15) 0 16 simple-array-unsigned-byte-15
119 ((unsigned-byte 16) 0 16 simple-array-unsigned-byte-16
122 ((unsigned-byte #.n-positive-fixnum-bits
)
123 0 32 simple-array-unsigned-fixnum
126 ((unsigned-byte 31) 0 32 simple-array-unsigned-byte-31
128 ((unsigned-byte 32) 0 32 simple-array-unsigned-byte-32
131 ((unsigned-byte #.n-positive-fixnum-bits
)
132 0 64 simple-array-unsigned-fixnum
136 ((unsigned-byte 63) 0 64 simple-array-unsigned-byte-63
139 ((unsigned-byte 64) 0 64 simple-array-unsigned-byte-64
141 ((signed-byte 8) 0 8 simple-array-signed-byte-8
143 ((signed-byte 16) 0 16 simple-array-signed-byte-16
145 ;; KLUDGE: See the comment in PRIMITIVE-TYPE-AUX,
146 ;; compiler/generic/primtype.lisp, for why this is FIXNUM and
147 ;; not (SIGNED-BYTE 30)
149 (fixnum 0 32 simple-array-fixnum
152 ((signed-byte 32) 0 32 simple-array-signed-byte-32
154 ;; KLUDGE: see above KLUDGE for the 32-bit case
156 (fixnum 0 64 simple-array-fixnum
160 ((signed-byte 64) 0 64 simple-array-signed-byte-64
162 ((complex single-float
) #C
(0.0f0
0.0f0
) 64
163 simple-array-complex-single-float
165 ((complex double-float
) #C
(0.0d0
0.0d0
) 128
166 simple-array-complex-double-float
169 ((complex long-float
) #C
(0.0l0
0.0l0) #!+x86
192 #!+sparc
256
170 simple-array-complex-long-float
172 (t 0 #.n-word-bits simple-vector
:importance
18))))
174 ;; The compiler can see that the number of types that must be present in a
175 ;; union of arrays to convert (OR (array t1) ... (array tN)) to (ARRAY *)
176 ;; is a constant if (LENGTH *SPECIALIZED-ARRAY-ELEMENT-TYPE-PROPERTIES*) is
177 ;; a constant. So proclaim the type of the global var. This works because
178 ;; the compiler doesn't retroactively try to check the initializer of NIL.
180 (declaim (type (simple-vector
181 #.
(length *specialized-array-element-type-properties
*))
182 *specialized-array-element-type-properties
*))
184 (defun valid-bit-bash-saetp-p (saetp)
185 ;; BIT-BASHing isn't allowed on simple vectors that contain pointers
186 (and (not (eq t
(saetp-specifier saetp
)))
187 ;; Disallowing (VECTOR NIL) also means that we won't transform
188 ;; sequence functions into bit-bashing code and we let the
189 ;; generic sequence functions signal errors if necessary.
190 (not (zerop (saetp-n-bits saetp
)))
191 ;; Due to limitations with the current BIT-BASHing code, we can't
192 ;; BIT-BASH reliably on arrays whose element types are larger
193 ;; than the word size.
194 (<= (saetp-n-bits saetp
) n-word-bits
)))
197 (defvar sb
!kernel
::*specialized-array-element-types
*
200 *specialized-array-element-type-properties
*))
203 (!defglobal sb
!kernel
::*specialized-array-element-types
*
204 '#.sb
!kernel
::*specialized-array-element-types
*)
206 (defvar *vector-without-complex-typecode-infos
*
208 (loop for saetp across
*specialized-array-element-type-properties
*
209 for specifier
= (saetp-specifier saetp
)
210 unless
(saetp-complex-typecode saetp
)
211 collect
(list (if (atom specifier
)
212 (intern (format nil
"VECTOR-~A-P" specifier
))
213 ;; at the moment, all specialized array
214 ;; specifiers are either atoms or
215 ;; two-element lists.
216 (intern (format nil
"VECTOR-~A-~A-P" (car specifier
) (cadr specifier
))))
219 '#.
*vector-without-complex-typecode-infos
*)
221 (def!struct
(room-info) ; FIXME: find a better home for this
222 ;; the name of this type
223 (name nil
:type symbol
)
224 ;; kind of type (how to reconstitute an object)
226 :type
(member :other
:small-other
:closure
:instance
:list
227 :code
:vector-nil
:weak-pointer
)))
228 (!set-load-form-method room-info
(:xc
))
232 (defun find-saetp (element-type)
233 (find element-type sb
!vm
:*specialized-array-element-type-properties
*
234 :key
#'sb
!vm
:saetp-specifier
:test
#'equal
))
236 (defun find-saetp-by-ctype (ctype)
237 (find ctype sb
!vm
:*specialized-array-element-type-properties
*
238 :key
#'sb
!vm
:saetp-ctype
:test
#'csubtypep
))