e0a48990ebe2957f74691e23969c83dac6ff2456
[sbcl.git] / src / compiler / generic / vm-fndb.lisp
1 ;;;; signatures of machine-specific functions
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!C")
13 \f
14 ;;;; internal type predicates
15
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
22            complex-vector-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
27            array-header-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))
58            unsigned-byte-32-p
59            #!+#.(cl:if (cl:= 32 sb!vm:n-word-bits) '(and) '(or))
60            signed-byte-32-p
61            #!+#.(cl:if (cl:= 64 sb!vm:n-word-bits) '(and) '(or))
62            unsigned-byte-64-p
63            #!+#.(cl:if (cl:= 64 sb!vm:n-word-bits) '(and) '(or))
64            signed-byte-64-p
65            vector-t-p weak-pointer-p code-component-p lra-p
66            funcallable-instance-p)
67   (t) boolean (movable foldable flushable))
68 \f
69 ;;;; miscellaneous "sub-primitives"
70
71 (defknown %sp-string-compare
72   (simple-string index index simple-string index index)
73   (or index null)
74   (foldable flushable))
75
76 (defknown %sxhash-simple-string (simple-string) index
77   (foldable flushable))
78
79 (defknown %sxhash-simple-substring (simple-string index) index
80   (foldable flushable))
81
82 (defknown symbol-hash (symbol) (integer 0 #.sb!xc:most-positive-fixnum)
83   (flushable movable))
84
85 (defknown %set-symbol-hash (symbol (integer 0 #.sb!xc:most-positive-fixnum))
86   t (unsafe))
87
88 (defknown vector-length (vector) index (flushable))
89
90 (defknown vector-sap ((simple-unboxed-array (*))) system-area-pointer
91   (flushable))
92
93 (defknown lowtag-of (t) (unsigned-byte #.sb!vm:n-lowtag-bits)
94   (flushable movable))
95 (defknown widetag-of (t) (unsigned-byte #.sb!vm:n-widetag-bits)
96   (flushable movable))
97
98 (defknown (get-header-data get-closure-length) (t) (unsigned-byte 24)
99   (flushable))
100 (defknown set-header-data (t (unsigned-byte 24)) t
101   (unsafe))
102
103 (defknown %array-dimension (t index) index
104   (flushable))
105 (defknown %set-array-dimension (t index index) index
106   ())
107 (defknown %array-rank (t) index
108   (flushable))
109
110 (defknown %make-instance (index) instance
111   (unsafe))
112 (defknown %instance-layout (instance) layout
113   (foldable flushable))
114 (defknown %set-instance-layout (instance layout) layout
115   (unsafe))
116 (defknown %instance-length (instance) index
117   (foldable flushable))
118 (defknown %instance-ref (instance index) t
119   (flushable))
120 (defknown %instance-set (instance index t) t
121   (unsafe))
122 (defknown %layout-invalid-error (t layout) nil)
123
124
125 (sb!xc:deftype raw-vector () '(simple-array sb!vm:word (*)))
126
127 ;;; %RAW-{REF,SET}-FOO VOPs should be declared as taking a RAW-VECTOR
128 ;;; as their first argument (clarity and to match these DEFKNOWNs).
129 ;;; We declare RAW-VECTOR as a primitive type so the VOP machinery
130 ;;; will accept our VOPs as legitimate.  --njf, 2004-08-10
131 (sb!vm::!def-primitive-type-alias raw-vector
132                                   #!+#.(cl:if (cl:= 32 sb!vm:n-word-bits) '(and) '(or))
133                                   sb!vm::simple-array-unsigned-byte-32
134                                   #!+#.(cl:if (cl:= 64 sb!vm:n-word-bits) '(and) '(or))
135                                   sb!vm::simple-array-unsigned-byte-64)
136
137 (defknown %raw-ref-single (raw-vector index) single-float
138   (foldable flushable))
139 (defknown %raw-ref-double (raw-vector index) double-float
140   (foldable flushable))
141 #!+long-float
142 (defknown %raw-ref-long (raw-vector index) long-float
143   (foldable flushable))
144 (defknown %raw-set-single (raw-vector index single-float) single-float
145   (unsafe))
146 (defknown %raw-set-double (raw-vector index double-float) double-float
147   (unsafe))
148 #!+long-float
149 (defknown %raw-set-long (raw-vector index long-float) long-float
150   (unsafe))
151
152 (defknown %raw-ref-complex-single (raw-vector index) (complex single-float)
153   (foldable flushable))
154 (defknown %raw-ref-complex-double (raw-vector index) (complex double-float)
155   (foldable flushable))
156
157 (defknown %raw-set-complex-single (raw-vector index (complex single-float))
158   (complex single-float)
159   (unsafe))
160 (defknown %raw-set-complex-double (raw-vector index (complex double-float))
161   (complex double-float)
162   (unsafe))
163
164
165 (defknown %raw-bits (t fixnum) sb!vm:word
166   (foldable flushable))
167 (defknown (%set-raw-bits) (t fixnum sb!vm:word) sb!vm:word
168   (unsafe))
169
170
171 (defknown allocate-vector ((unsigned-byte 8) index index) (simple-array * (*))
172   (flushable movable))
173
174 (defknown make-array-header ((unsigned-byte 8) (unsigned-byte 24)) array
175   (flushable movable))
176
177
178 (defknown make-weak-pointer (t) weak-pointer
179   (flushable))
180
181 (defknown %make-complex (real real) complex
182   (flushable movable))
183 (defknown %make-ratio (rational rational) ratio
184   (flushable movable))
185 (defknown make-value-cell (t) t
186   (flushable movable))
187
188 (defknown (dynamic-space-free-pointer binding-stack-pointer-sap
189                                       control-stack-pointer-sap)  ()
190   system-area-pointer
191   (flushable))
192 \f
193 ;;;; debugger support
194
195 (defknown current-sp () system-area-pointer (movable flushable))
196 (defknown current-fp () system-area-pointer (movable flushable))
197 (defknown stack-ref (system-area-pointer index) t (flushable))
198 (defknown %set-stack-ref (system-area-pointer index t) t (unsafe))
199 (defknown lra-code-header (t) t (movable flushable))
200 (defknown fun-code-header (t) t (movable flushable))
201 (defknown make-lisp-obj (sb!vm:word) t (movable flushable))
202 (defknown get-lisp-obj-address (t) sb!vm:word (movable flushable))
203 (defknown fun-word-offset (function) index (movable flushable))
204 \f
205 ;;;; 32-bit logical operations
206
207 (defknown merge-bits ((unsigned-byte 5) sb!vm:word sb!vm:word)
208   sb!vm:word
209   (foldable flushable movable))
210
211 (defknown word-logical-not (sb!vm:word) sb!vm:word
212   (foldable flushable movable))
213
214 (defknown (word-logical-and word-logical-nand
215            word-logical-or word-logical-nor
216            word-logical-xor word-logical-eqv
217            word-logical-andc1 word-logical-andc2
218            word-logical-orc1 word-logical-orc2)
219           (sb!vm:word sb!vm:word) sb!vm:word
220   (foldable flushable movable))
221
222 (defknown (shift-towards-start shift-towards-end) (sb!vm:word fixnum)
223   sb!vm:word
224   (foldable flushable movable))
225 \f
226 ;;;; bignum operations
227
228 (defknown %allocate-bignum (bignum-index) bignum-type
229   (flushable))
230
231 (defknown %bignum-length (bignum-type) bignum-index
232   (foldable flushable movable))
233
234 (defknown %bignum-set-length (bignum-type bignum-index) bignum-type
235   (unsafe))
236
237 (defknown %bignum-ref (bignum-type bignum-index) bignum-element-type
238   (flushable))
239
240 (defknown %bignum-set (bignum-type bignum-index bignum-element-type)
241   bignum-element-type
242   (unsafe))
243
244 (defknown %digit-0-or-plusp (bignum-element-type) boolean
245   (foldable flushable movable))
246
247 (defknown (%add-with-carry %subtract-with-borrow)
248           (bignum-element-type bignum-element-type (mod 2))
249   (values bignum-element-type (mod 2))
250   (foldable flushable movable))
251
252 (defknown %multiply-and-add
253           (bignum-element-type bignum-element-type bignum-element-type
254                                &optional bignum-element-type)
255   (values bignum-element-type bignum-element-type)
256   (foldable flushable movable))
257
258 (defknown %multiply (bignum-element-type bignum-element-type)
259   (values bignum-element-type bignum-element-type)
260   (foldable flushable movable))
261
262 (defknown %lognot (bignum-element-type) bignum-element-type
263   (foldable flushable movable))
264
265 (defknown (%logand %logior %logxor) (bignum-element-type bignum-element-type)
266   bignum-element-type
267   (foldable flushable movable))
268
269 (defknown %fixnum-to-digit (fixnum) bignum-element-type
270   (foldable flushable movable))
271
272 (defknown %floor (bignum-element-type bignum-element-type bignum-element-type)
273   (values bignum-element-type bignum-element-type)
274   (foldable flushable movable))
275
276 (defknown %fixnum-digit-with-correct-sign (bignum-element-type)
277   (signed-byte #.sb!vm:n-word-bits)
278   (foldable flushable movable))
279
280 (defknown (%ashl %ashr %digit-logical-shift-right)
281           (bignum-element-type (mod #.sb!vm:n-word-bits)) bignum-element-type
282   (foldable flushable movable))
283 \f
284 ;;;; bit-bashing routines
285
286 (defknown copy-to-system-area
287           ((simple-unboxed-array (*)) index system-area-pointer index index)
288   (values)
289   ())
290
291 (defknown copy-from-system-area
292           (system-area-pointer index (simple-unboxed-array (*)) index index)
293   (values)
294   ())
295
296 (defknown system-area-copy
297           (system-area-pointer index system-area-pointer index index)
298   (values)
299   ())
300
301 (defknown bit-bash-copy
302           ((simple-unboxed-array (*)) index
303            (simple-unboxed-array (*)) index index)
304   (values)
305   ())
306
307 ;;; (not really a bit-bashing routine, but starting to take over from
308 ;;; bit-bashing routines in byte-sized copies as of sbcl-0.6.12.29:)
309 (defknown %byte-blt
310   ((or (simple-unboxed-array (*)) system-area-pointer) index
311    (or (simple-unboxed-array (*)) system-area-pointer) index index)
312   (values)
313   ())
314 \f
315 ;;;; code/function/fdefn object manipulation routines
316
317 (defknown code-instructions (t) system-area-pointer (flushable movable))
318 (defknown code-header-ref (t index) t (flushable))
319 (defknown code-header-set (t index t) t ())
320
321 (defknown fun-subtype (function) (unsigned-byte #.sb!vm:n-widetag-bits)
322   (flushable))
323 (defknown ((setf fun-subtype))
324           ((unsigned-byte #.sb!vm:n-widetag-bits) function)
325   (unsigned-byte #.sb!vm:n-widetag-bits)
326   ())
327
328 (defknown make-fdefn (t) fdefn (flushable movable))
329 (defknown fdefn-p (t) boolean (movable foldable flushable))
330 (defknown fdefn-name (fdefn) t (foldable flushable))
331 (defknown fdefn-fun (fdefn) (or function null) (flushable))
332 (defknown (setf fdefn-fun) (function fdefn) t (unsafe))
333 (defknown fdefn-makunbound (fdefn) t ())
334
335 (defknown %simple-fun-self (function) function
336   (flushable))
337 (defknown (setf %simple-fun-self) (function function) function
338   (unsafe))
339
340 (defknown %closure-fun (function) function
341   (flushable))
342
343 (defknown %closure-index-ref (function index) t
344   (flushable))
345
346 (defknown %make-funcallable-instance (index layout) function
347   (unsafe))
348
349 (defknown %funcallable-instance-info (function index) t (flushable))
350 (defknown %set-funcallable-instance-info (function index t) t (unsafe))
351 \f
352 ;;;; mutator accessors
353
354 (defknown mutator-self () system-area-pointer (flushable movable))
355
356 (defknown %data-vector-and-index (array index)
357                                  (values (simple-array * (*)) index)
358                                  (foldable flushable))