1 ;;;; signatures of machine-specific functions
3 ;;;; This software is part of the SBCL system. See the README file for
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.
14 ;;;; internal type predicates
16 ;;; Simple TYPEP uses that don't have any standard predicate are
17 ;;; translated into non-standard unary predicates.
18 (defknown (fixnump bignump ratiop
19 short-float-p single-float-p double-float-p long-float-p
20 complex-rational-p complex-float-p complex-single-float-p
21 complex-double-float-p #!+long-float complex-long-float-p
23 base-char-p %standard-char-p %instancep
24 base-string-p simple-base-string-p
25 #!+sb-unicode character-string-p
26 #!+sb-unicode simple-character-string-p
28 simple-array-p simple-array-nil-p vector-nil-p
29 simple-array-unsigned-byte-2-p
30 simple-array-unsigned-byte-4-p simple-array-unsigned-byte-7-p
31 simple-array-unsigned-byte-8-p simple-array-unsigned-byte-15-p
32 simple-array-unsigned-byte-16-p
33 #!+#.(cl:if (cl:= 32 sb!vm:n-word-bits) '(and) '(or))
34 simple-array-unsigned-byte-29-p
35 simple-array-unsigned-byte-31-p
36 simple-array-unsigned-byte-32-p
37 #!+#.(cl:if (cl:= 64 sb!vm:n-word-bits) '(and) '(or))
38 simple-array-unsigned-byte-60-p
39 #!+#.(cl:if (cl:= 64 sb!vm:n-word-bits) '(and) '(or))
40 simple-array-unsigned-byte-63-p
41 #!+#.(cl:if (cl:= 64 sb!vm:n-word-bits) '(and) '(or))
42 simple-array-unsigned-byte-64-p
43 simple-array-signed-byte-8-p simple-array-signed-byte-16-p
44 #!+#.(cl:if (cl:= 32 sb!vm:n-word-bits) '(and) '(or))
45 simple-array-signed-byte-30-p
46 simple-array-signed-byte-32-p
47 #!+#.(cl:if (cl:= 64 sb!vm:n-word-bits) '(and) '(or))
48 simple-array-signed-byte-61-p
49 #!+#.(cl:if (cl:= 64 sb!vm:n-word-bits) '(and) '(or))
50 simple-array-signed-byte-64-p
51 simple-array-single-float-p simple-array-double-float-p
52 #!+long-float simple-array-long-float-p
53 simple-array-complex-single-float-p
54 simple-array-complex-double-float-p
55 #!+long-float simple-array-complex-long-float-p
56 system-area-pointer-p realp
57 ;; #!+#.(cl:if (cl:= 32 sb!vm:n-word-bits) '(and) '(or))
59 ;; #!+#.(cl:if (cl:= 32 sb!vm:n-word-bits) '(and) '(or))
61 #!+#.(cl:if (cl:= 64 sb!vm:n-word-bits) '(and) '(or))
63 #!+#.(cl:if (cl:= 64 sb!vm:n-word-bits) '(and) '(or))
65 vector-t-p weak-pointer-p code-component-p lra-p
66 funcallable-instance-p)
67 (t) boolean (movable foldable flushable))
69 ;;;; miscellaneous "sub-primitives"
71 (defknown %sp-string-compare
72 (simple-string index index simple-string index index)
76 (defknown %sxhash-simple-string (simple-string) index
79 (defknown %sxhash-simple-substring (simple-string index) index
82 (defknown symbol-hash (symbol) (integer 0 #.sb!xc:most-positive-fixnum)
85 (defknown %set-symbol-hash (symbol (integer 0 #.sb!xc:most-positive-fixnum))
88 (defknown vector-length (vector) index (flushable))
90 (defknown vector-sap ((simple-unboxed-array (*))) system-area-pointer
93 (defknown lowtag-of (t) (unsigned-byte #.sb!vm:n-lowtag-bits)
95 (defknown widetag-of (t) (unsigned-byte #.sb!vm:n-widetag-bits)
98 (defknown (get-header-data get-closure-length) (t) (unsigned-byte 24)
100 (defknown set-header-data (t (unsigned-byte 24)) t
103 (defknown %array-dimension (t index) index
105 (defknown %set-array-dimension (t index index) index
107 (defknown %array-rank (t) index
110 (defknown %make-instance (index) instance
112 (defknown %instance-layout (instance) layout
113 (foldable flushable))
114 (defknown %set-instance-layout (instance layout) layout
116 (defknown %instance-length (instance) index
117 (foldable flushable))
118 (defknown %instance-ref (instance index) t
120 (defknown %instance-set (instance index t) t
122 (defknown %layout-invalid-error (t layout) nil)
124 (defknown %raw-instance-ref/word (instance index) sb!vm:word
126 (defknown %raw-instance-set/word (instance index sb!vm:word) sb!vm:word
128 (defknown %raw-instance-ref/single (instance index) single-float
130 (defknown %raw-instance-set/single (instance index single-float) single-float
132 (defknown %raw-instance-ref/double (instance index) double-float
134 (defknown %raw-instance-set/double (instance index double-float) double-float
136 (defknown %raw-instance-ref/complex-single (instance index)
137 (complex single-float)
139 (defknown %raw-instance-set/complex-single
140 (instance index (complex single-float))
141 (complex single-float)
143 (defknown %raw-instance-ref/complex-double (instance index)
144 (complex double-float)
146 (defknown %raw-instance-set/complex-double
147 (instance index (complex double-float))
148 (complex double-float)
151 (sb!xc:deftype raw-vector () '(simple-array sb!vm:word (*)))
153 ;;; %RAW-{REF,SET}-FOO VOPs should be declared as taking a RAW-VECTOR
154 ;;; as their first argument (clarity and to match these DEFKNOWNs).
155 ;;; We declare RAW-VECTOR as a primitive type so the VOP machinery
156 ;;; will accept our VOPs as legitimate. --njf, 2004-08-10
157 (sb!vm::!def-primitive-type-alias raw-vector
158 #!+#.(cl:if (cl:= 32 sb!vm:n-word-bits) '(and) '(or))
159 sb!vm::simple-array-unsigned-byte-32
160 #!+#.(cl:if (cl:= 64 sb!vm:n-word-bits) '(and) '(or))
161 sb!vm::simple-array-unsigned-byte-64)
163 (defknown %raw-ref-single (raw-vector index) single-float
164 (foldable flushable))
165 (defknown %raw-ref-double (raw-vector index) double-float
166 (foldable flushable))
168 (defknown %raw-ref-long (raw-vector index) long-float
169 (foldable flushable))
170 (defknown %raw-set-single (raw-vector index single-float) single-float
172 (defknown %raw-set-double (raw-vector index double-float) double-float
175 (defknown %raw-set-long (raw-vector index long-float) long-float
178 (defknown %raw-ref-complex-single (raw-vector index) (complex single-float)
179 (foldable flushable))
180 (defknown %raw-ref-complex-double (raw-vector index) (complex double-float)
181 (foldable flushable))
183 (defknown %raw-set-complex-single (raw-vector index (complex single-float))
184 (complex single-float)
186 (defknown %raw-set-complex-double (raw-vector index (complex double-float))
187 (complex double-float)
191 (defknown %raw-bits (t fixnum) sb!vm:word
192 (foldable flushable))
193 (defknown (%set-raw-bits) (t fixnum sb!vm:word) sb!vm:word
195 ;; These two are mostly used for bit-bashing operations.
196 (defknown %vector-raw-bits (t fixnum) sb!vm:word
197 (foldable flushable))
198 (defknown (%set-vector-raw-bits) (t fixnum sb!vm:word) sb!vm:word
202 (defknown allocate-vector ((unsigned-byte 8) index index) (simple-array * (*))
205 (defknown make-array-header ((unsigned-byte 8) (unsigned-byte 24)) array
209 (defknown make-weak-pointer (t) weak-pointer
212 (defknown %make-complex (real real) complex
214 (defknown %make-ratio (rational rational) ratio
216 (defknown make-value-cell (t) t
219 (defknown (dynamic-space-free-pointer binding-stack-pointer-sap
220 control-stack-pointer-sap) ()
224 ;;;; debugger support
226 (defknown current-sp () system-area-pointer (movable flushable))
227 (defknown current-fp () system-area-pointer (movable flushable))
228 (defknown stack-ref (system-area-pointer index) t (flushable))
229 (defknown %set-stack-ref (system-area-pointer index t) t (unsafe))
230 (defknown lra-code-header (t) t (movable flushable))
231 (defknown fun-code-header (t) t (movable flushable))
232 (defknown make-lisp-obj (sb!vm:word) t (movable flushable))
233 (defknown get-lisp-obj-address (t) sb!vm:word (movable flushable))
234 (defknown fun-word-offset (function) index (movable flushable))
236 ;;;; 32-bit logical operations
238 (defknown merge-bits ((unsigned-byte 5) sb!vm:word sb!vm:word)
240 (foldable flushable movable))
242 (defknown word-logical-not (sb!vm:word) sb!vm:word
243 (foldable flushable movable))
245 (defknown (word-logical-and word-logical-nand
246 word-logical-or word-logical-nor
247 word-logical-xor word-logical-eqv
248 word-logical-andc1 word-logical-andc2
249 word-logical-orc1 word-logical-orc2)
250 (sb!vm:word sb!vm:word) sb!vm:word
251 (foldable flushable movable))
253 (defknown (shift-towards-start shift-towards-end) (sb!vm:word fixnum)
255 (foldable flushable movable))
257 ;;;; bignum operations
259 (defknown %allocate-bignum (bignum-index) bignum-type
262 (defknown %bignum-length (bignum-type) bignum-index
263 (foldable flushable movable))
265 (defknown %bignum-set-length (bignum-type bignum-index) bignum-type
268 (defknown %bignum-ref (bignum-type bignum-index) bignum-element-type
271 (defknown %bignum-set (bignum-type bignum-index bignum-element-type)
275 (defknown %digit-0-or-plusp (bignum-element-type) boolean
276 (foldable flushable movable))
278 (defknown (%add-with-carry %subtract-with-borrow)
279 (bignum-element-type bignum-element-type (mod 2))
280 (values bignum-element-type (mod 2))
281 (foldable flushable movable))
283 (defknown %multiply-and-add
284 (bignum-element-type bignum-element-type bignum-element-type
285 &optional bignum-element-type)
286 (values bignum-element-type bignum-element-type)
287 (foldable flushable movable))
289 (defknown %multiply (bignum-element-type bignum-element-type)
290 (values bignum-element-type bignum-element-type)
291 (foldable flushable movable))
293 (defknown %lognot (bignum-element-type) bignum-element-type
294 (foldable flushable movable))
296 (defknown (%logand %logior %logxor) (bignum-element-type bignum-element-type)
298 (foldable flushable movable))
300 (defknown %fixnum-to-digit (fixnum) bignum-element-type
301 (foldable flushable movable))
303 (defknown %floor (bignum-element-type bignum-element-type bignum-element-type)
304 (values bignum-element-type bignum-element-type)
305 (foldable flushable movable))
307 (defknown %fixnum-digit-with-correct-sign (bignum-element-type)
308 (signed-byte #.sb!vm:n-word-bits)
309 (foldable flushable movable))
311 (defknown (%ashl %ashr %digit-logical-shift-right)
312 (bignum-element-type (mod #.sb!vm:n-word-bits)) bignum-element-type
313 (foldable flushable movable))
315 ;;;; bit-bashing routines
317 ;;; FIXME: there's some ugly duplication between the (INTERN (FORMAT ...))
318 ;;; magic here and the same magic in src/code/bit-bash.lisp. I don't know
319 ;;; of any good way to clean it up, but it's definitely violating OAOO.
320 (macrolet ((define-known-copiers ()
322 ,@(loop for i = 1 then (* i 2)
323 collect `(defknown ,(intern (format nil "UB~D-BASH-COPY" i)
324 (find-package "SB!KERNEL"))
325 ((simple-unboxed-array (*)) index (simple-unboxed-array (*)) index index)
328 collect `(defknown ,(intern (format nil "SYSTEM-AREA-UB~D-COPY" i)
329 (find-package "SB!KERNEL"))
330 (system-area-pointer index system-area-pointer index index)
333 collect `(defknown ,(intern (format nil "COPY-UB~D-TO-SYSTEM-AREA" i)
334 (find-package "SB!KERNEL"))
335 ((simple-unboxed-array (*)) index system-area-pointer index index)
338 collect `(defknown ,(intern (format nil "COPY-UB~D-FROM-SYSTEM-AREA" i)
339 (find-package "SB!KERNEL"))
340 (system-area-pointer index (simple-unboxed-array (*)) index index)
343 until (= i sb!vm:n-word-bits)))))
344 (define-known-copiers))
346 ;;; (not really a bit-bashing routine, but starting to take over from
347 ;;; bit-bashing routines in byte-sized copies as of sbcl-0.6.12.29:)
349 ((or (simple-unboxed-array (*)) system-area-pointer) index
350 (or (simple-unboxed-array (*)) system-area-pointer) index index)
354 ;;;; code/function/fdefn object manipulation routines
356 (defknown code-instructions (t) system-area-pointer (flushable movable))
357 (defknown code-header-ref (t index) t (flushable))
358 (defknown code-header-set (t index t) t ())
360 (defknown fun-subtype (function) (unsigned-byte #.sb!vm:n-widetag-bits)
362 (defknown ((setf fun-subtype))
363 ((unsigned-byte #.sb!vm:n-widetag-bits) function)
364 (unsigned-byte #.sb!vm:n-widetag-bits)
367 (defknown make-fdefn (t) fdefn (flushable movable))
368 (defknown fdefn-p (t) boolean (movable foldable flushable))
369 (defknown fdefn-name (fdefn) t (foldable flushable))
370 (defknown fdefn-fun (fdefn) (or function null) (flushable))
371 (defknown (setf fdefn-fun) (function fdefn) t (unsafe))
372 (defknown fdefn-makunbound (fdefn) t ())
374 (defknown %simple-fun-self (function) function
376 (defknown (setf %simple-fun-self) (function function) function
379 (defknown %closure-fun (function) function
382 (defknown %closure-index-ref (function index) t
385 (defknown %make-funcallable-instance (index) function
388 (defknown %funcallable-instance-info (function index) t (flushable))
389 (defknown %set-funcallable-instance-info (function index t) t (unsafe))
391 ;;;; mutator accessors
393 (defknown mutator-self () system-area-pointer (flushable movable))
395 (defknown %data-vector-and-index (array index)
396 (values (simple-array * (*)) index)
397 (foldable flushable))