1.0.27.32: implement and use SB!XC:GENSYM
[sbcl.git] / src / compiler / aliencomp.lisp
1 ;;;; transforms and other stuff used to compile ALIEN operations
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 ;;;; DEFKNOWNs
15
16 (defknown %sap-alien (system-area-pointer alien-type) alien-value
17   (flushable movable))
18 (defknown alien-sap (alien-value) system-area-pointer
19   (flushable movable))
20
21 (defknown slot (alien-value symbol) t
22   (flushable recursive))
23 (defknown %set-slot (alien-value symbol t) t
24   (recursive))
25 (defknown %slot-addr (alien-value symbol) (alien (* t))
26   (flushable movable recursive))
27
28 (defknown deref (alien-value &rest index) t
29   (flushable))
30 (defknown %set-deref (alien-value t &rest index) t
31   ())
32 (defknown %deref-addr (alien-value &rest index) (alien (* t))
33   (flushable movable))
34
35 (defknown %heap-alien (heap-alien-info) t
36   (flushable))
37 (defknown %set-heap-alien (heap-alien-info t) t
38   ())
39 (defknown %heap-alien-addr (heap-alien-info) (alien (* t))
40   (flushable movable))
41
42 (defknown make-local-alien (local-alien-info) t
43   ())
44 (defknown note-local-alien-type (local-alien-info t) null
45   ())
46 (defknown local-alien (local-alien-info t) t
47   (flushable))
48 (defknown %local-alien-forced-to-memory-p (local-alien-info) (member t nil)
49   (movable))
50 (defknown %set-local-alien (local-alien-info t t) t
51   ())
52 (defknown %local-alien-addr (local-alien-info t) (alien (* t))
53   (flushable movable))
54 (defknown dispose-local-alien (local-alien-info t) t
55   ())
56
57 (defknown %cast (alien-value alien-type) alien
58   (flushable movable))
59
60 (defknown naturalize (t alien-type) alien
61   (flushable movable))
62 (defknown deport (alien alien-type) t
63   (flushable movable))
64 (defknown deport-alloc (alien alien-type) t
65   (flushable movable))
66 (defknown extract-alien-value (system-area-pointer unsigned-byte alien-type) t
67   (flushable))
68 (defknown deposit-alien-value (system-area-pointer unsigned-byte alien-type t) t
69   ())
70
71 (defknown alien-funcall (alien-value &rest *) *
72   (any recursive))
73 \f
74 ;;;; cosmetic transforms
75
76 (deftransform slot ((object slot)
77                     ((alien (* t)) symbol))
78   '(slot (deref object) slot))
79
80 (deftransform %set-slot ((object slot value)
81                          ((alien (* t)) symbol t))
82   '(%set-slot (deref object) slot value))
83
84 (deftransform %slot-addr ((object slot)
85                           ((alien (* t)) symbol))
86   '(%slot-addr (deref object) slot))
87 \f
88 ;;;; SLOT support
89
90 (defun find-slot-offset-and-type (alien slot)
91   (unless (constant-lvar-p slot)
92     (give-up-ir1-transform
93      "The slot is not constant, so access cannot be open coded."))
94   (let ((type (lvar-type alien)))
95     (unless (alien-type-type-p type)
96       (give-up-ir1-transform))
97     (let ((alien-type (alien-type-type-alien-type type)))
98       (unless (alien-record-type-p alien-type)
99         (give-up-ir1-transform))
100       (let* ((slot-name (lvar-value slot))
101              (field (find slot-name (alien-record-type-fields alien-type)
102                           :key #'alien-record-field-name)))
103         (unless field
104           (abort-ir1-transform "~S doesn't have a slot named ~S"
105                                alien
106                                slot-name))
107         (values (alien-record-field-offset field)
108                 (alien-record-field-type field))))))
109
110 #+nil ;; Shouldn't be necessary.
111 (defoptimizer (slot derive-type) ((alien slot))
112   (block nil
113     (catch 'give-up-ir1-transform
114       (multiple-value-bind (slot-offset slot-type)
115           (find-slot-offset-and-type alien slot)
116         (declare (ignore slot-offset))
117         (return (make-alien-type-type slot-type))))
118     *wild-type*))
119
120 (deftransform slot ((alien slot) * * :important t)
121   (multiple-value-bind (slot-offset slot-type)
122       (find-slot-offset-and-type alien slot)
123     `(extract-alien-value (alien-sap alien)
124                           ,slot-offset
125                           ',slot-type)))
126
127 #+nil ;; ### But what about coercions?
128 (defoptimizer (%set-slot derive-type) ((alien slot value))
129   (block nil
130     (catch 'give-up-ir1-transform
131       (multiple-value-bind (slot-offset slot-type)
132           (find-slot-offset-and-type alien slot)
133         (declare (ignore slot-offset))
134         (let ((type (make-alien-type-type slot-type)))
135           (assert-lvar-type value type)
136           (return type))))
137     *wild-type*))
138
139 (deftransform %set-slot ((alien slot value) * * :important t)
140   (multiple-value-bind (slot-offset slot-type)
141       (find-slot-offset-and-type alien slot)
142     `(deposit-alien-value (alien-sap alien)
143                           ,slot-offset
144                           ',slot-type
145                           value)))
146
147 (defoptimizer (%slot-addr derive-type) ((alien slot))
148   (block nil
149     (catch 'give-up-ir1-transform
150       (multiple-value-bind (slot-offset slot-type)
151           (find-slot-offset-and-type alien slot)
152         (declare (ignore slot-offset))
153         (return (make-alien-type-type
154                  (make-alien-pointer-type :to slot-type)))))
155     *wild-type*))
156
157 (deftransform %slot-addr ((alien slot) * * :important t)
158   (multiple-value-bind (slot-offset slot-type)
159       (find-slot-offset-and-type alien slot)
160     (/noshow "in DEFTRANSFORM %SLOT-ADDR, creating %SAP-ALIEN")
161     `(%sap-alien (sap+ (alien-sap alien) (/ ,slot-offset sb!vm:n-byte-bits))
162                  ',(make-alien-pointer-type :to slot-type))))
163 \f
164 ;;;; DEREF support
165
166 (defun find-deref-alien-type (alien)
167   (let ((alien-type (lvar-type alien)))
168     (unless (alien-type-type-p alien-type)
169       (give-up-ir1-transform))
170     (let ((alien-type (alien-type-type-alien-type alien-type)))
171       (if (alien-type-p alien-type)
172           alien-type
173           (give-up-ir1-transform)))))
174
175 (defun find-deref-element-type (alien)
176   (let ((alien-type (find-deref-alien-type alien)))
177     (typecase alien-type
178       (alien-pointer-type
179        (alien-pointer-type-to alien-type))
180       (alien-array-type
181        (alien-array-type-element-type alien-type))
182       (t
183        (give-up-ir1-transform)))))
184
185 (defun compute-deref-guts (alien indices)
186   (let ((alien-type (find-deref-alien-type alien)))
187     (typecase alien-type
188       (alien-pointer-type
189        (when (cdr indices)
190          (abort-ir1-transform "too many indices for pointer deref: ~W"
191                               (length indices)))
192        (let ((element-type (alien-pointer-type-to alien-type)))
193          (if indices
194              (let ((bits (alien-type-bits element-type))
195                    (alignment (alien-type-alignment element-type)))
196                (unless bits
197                  (abort-ir1-transform "unknown element size"))
198                (unless alignment
199                  (abort-ir1-transform "unknown element alignment"))
200                (values '(offset)
201                        `(* offset
202                            ,(align-offset bits alignment))
203                        element-type))
204              (values nil 0 element-type))))
205       (alien-array-type
206        (let* ((element-type (alien-array-type-element-type alien-type))
207               (bits (alien-type-bits element-type))
208               (alignment (alien-type-alignment element-type))
209               (dims (alien-array-type-dimensions alien-type)))
210          (unless (= (length indices) (length dims))
211            (give-up-ir1-transform "incorrect number of indices"))
212          (unless bits
213            (give-up-ir1-transform "Element size is unknown."))
214          (unless alignment
215            (give-up-ir1-transform "Element alignment is unknown."))
216          (if (null dims)
217              (values nil 0 element-type)
218              (let* ((arg (gensym))
219                     (args (list arg))
220                     (offsetexpr arg))
221                (dolist (dim (cdr dims))
222                  (let ((arg (gensym)))
223                    (push arg args)
224                    (setf offsetexpr `(+ (* ,offsetexpr ,dim) ,arg))))
225                (values (reverse args)
226                        `(* ,offsetexpr
227                            ,(align-offset bits alignment))
228                        element-type)))))
229       (t
230        (abort-ir1-transform "~S not either a pointer or array type."
231                             alien-type)))))
232
233 #+nil ;; Shouldn't be necessary.
234 (defoptimizer (deref derive-type) ((alien &rest noise))
235   (declare (ignore noise))
236   (block nil
237     (catch 'give-up-ir1-transform
238       (return (make-alien-type-type (find-deref-element-type alien))))
239     *wild-type*))
240
241 (deftransform deref ((alien &rest indices) * * :important t)
242   (multiple-value-bind (indices-args offset-expr element-type)
243       (compute-deref-guts alien indices)
244     `(lambda (alien ,@indices-args)
245        (extract-alien-value (alien-sap alien)
246                             ,offset-expr
247                             ',element-type))))
248
249 #+nil ;; ### Again, the value might be coerced.
250 (defoptimizer (%set-deref derive-type) ((alien value &rest noise))
251   (declare (ignore noise))
252   (block nil
253     (catch 'give-up-ir1-transform
254       (let ((type (make-alien-type-type
255                    (make-alien-pointer-type
256                     :to (find-deref-element-type alien)))))
257         (assert-lvar-type value type)
258         (return type)))
259     *wild-type*))
260
261 (deftransform %set-deref ((alien value &rest indices) * * :important t)
262   (multiple-value-bind (indices-args offset-expr element-type)
263       (compute-deref-guts alien indices)
264     `(lambda (alien value ,@indices-args)
265        (deposit-alien-value (alien-sap alien)
266                             ,offset-expr
267                             ',element-type
268                             value))))
269
270 (defoptimizer (%deref-addr derive-type) ((alien &rest noise))
271   (declare (ignore noise))
272   (block nil
273     (catch 'give-up-ir1-transform
274       (return (make-alien-type-type
275                (make-alien-pointer-type
276                 :to (find-deref-element-type alien)))))
277     *wild-type*))
278
279 (deftransform %deref-addr ((alien &rest indices) * * :important t)
280   (multiple-value-bind (indices-args offset-expr element-type)
281       (compute-deref-guts alien indices)
282     (/noshow "in DEFTRANSFORM %DEREF-ADDR, creating (LAMBDA .. %SAP-ALIEN)")
283     `(lambda (alien ,@indices-args)
284        (%sap-alien (sap+ (alien-sap alien) (/ ,offset-expr sb!vm:n-byte-bits))
285                    ',(make-alien-pointer-type :to element-type)))))
286 \f
287 ;;;; support for aliens on the heap
288
289 (defun heap-alien-sap-and-type (info)
290   (unless (constant-lvar-p info)
291     (give-up-ir1-transform "info not constant; can't open code"))
292   (let ((info (lvar-value info)))
293     (values (heap-alien-info-sap-form info)
294             (heap-alien-info-type info))))
295
296 #+nil ; shouldn't be necessary
297 (defoptimizer (%heap-alien derive-type) ((info))
298   (block nil
299     (catch 'give-up
300       (multiple-value-bind (sap type) (heap-alien-sap-and-type info)
301         (declare (ignore sap))
302         (return (make-alien-type-type type))))
303     *wild-type*))
304
305 (deftransform %heap-alien ((info) * * :important t)
306   (multiple-value-bind (sap type) (heap-alien-sap-and-type info)
307     `(extract-alien-value ,sap 0 ',type)))
308
309 #+nil ;; ### Again, deposit value might change the type.
310 (defoptimizer (%set-heap-alien derive-type) ((info value))
311   (block nil
312     (catch 'give-up-ir1-transform
313       (multiple-value-bind (sap type) (heap-alien-sap-and-type info)
314         (declare (ignore sap))
315         (let ((type (make-alien-type-type type)))
316           (assert-lvar-type value type)
317           (return type))))
318     *wild-type*))
319
320 (deftransform %set-heap-alien ((info value) (heap-alien-info *) * :important t)
321   (multiple-value-bind (sap type) (heap-alien-sap-and-type info)
322     `(deposit-alien-value ,sap 0 ',type value)))
323
324 (defoptimizer (%heap-alien-addr derive-type) ((info))
325   (block nil
326     (catch 'give-up-ir1-transform
327       (multiple-value-bind (sap type) (heap-alien-sap-and-type info)
328         (declare (ignore sap))
329         (return (make-alien-type-type (make-alien-pointer-type :to type)))))
330     *wild-type*))
331
332 (deftransform %heap-alien-addr ((info) * * :important t)
333   (multiple-value-bind (sap type) (heap-alien-sap-and-type info)
334     (/noshow "in DEFTRANSFORM %HEAP-ALIEN-ADDR, creating %SAP-ALIEN")
335     `(%sap-alien ,sap ',(make-alien-pointer-type :to type))))
336
337 \f
338 ;;;; support for local (stack or register) aliens
339
340 (deftransform make-local-alien ((info) * * :important t)
341   (unless (constant-lvar-p info)
342     (abort-ir1-transform "Local alien info isn't constant?"))
343   (let* ((info (lvar-value info))
344          (alien-type (local-alien-info-type info))
345          (bits (alien-type-bits alien-type)))
346     (unless bits
347       (abort-ir1-transform "unknown size: ~S" (unparse-alien-type alien-type)))
348     (/noshow "in DEFTRANSFORM MAKE-LOCAL-ALIEN" info)
349     (/noshow (local-alien-info-force-to-memory-p info))
350     (/noshow alien-type (unparse-alien-type alien-type) (alien-type-bits alien-type))
351     (if (local-alien-info-force-to-memory-p info)
352         #!+(or x86 x86-64)
353         `(%primitive alloc-alien-stack-space
354                      ,(ceiling (alien-type-bits alien-type)
355                                sb!vm:n-byte-bits))
356         #!-(or x86 x86-64)
357         `(%primitive alloc-number-stack-space
358                      ,(ceiling (alien-type-bits alien-type)
359                                sb!vm:n-byte-bits))
360         (let* ((alien-rep-type-spec (compute-alien-rep-type alien-type))
361                (alien-rep-type (specifier-type alien-rep-type-spec)))
362           (cond ((csubtypep (specifier-type 'system-area-pointer)
363                             alien-rep-type)
364                  '(int-sap 0))
365                 ((ctypep 0 alien-rep-type) 0)
366                 ((ctypep 0.0f0 alien-rep-type) 0.0f0)
367                 ((ctypep 0.0d0 alien-rep-type) 0.0d0)
368                 (t
369                  (compiler-error
370                   "Aliens of type ~S cannot be represented immediately."
371                   (unparse-alien-type alien-type))))))))
372
373 (deftransform note-local-alien-type ((info var) * * :important t)
374   ;; FIXME: This test and error occur about a zillion times. They
375   ;; could be factored into a function.
376   (unless (constant-lvar-p info)
377     (abort-ir1-transform "Local alien info isn't constant?"))
378   (let ((info (lvar-value info)))
379     (/noshow "in DEFTRANSFORM NOTE-LOCAL-ALIEN-TYPE" info)
380     (/noshow (local-alien-info-force-to-memory-p info))
381     (unless (local-alien-info-force-to-memory-p info)
382       (let ((var-node (lvar-uses var)))
383         (/noshow var-node (ref-p var-node))
384         (when (ref-p var-node)
385           (propagate-to-refs (ref-leaf var-node)
386                              (specifier-type
387                               (compute-alien-rep-type
388                                (local-alien-info-type info))))))))
389   nil)
390
391 (deftransform local-alien ((info var) * * :important t)
392   (unless (constant-lvar-p info)
393     (abort-ir1-transform "Local alien info isn't constant?"))
394   (let* ((info (lvar-value info))
395          (alien-type (local-alien-info-type info)))
396     (/noshow "in DEFTRANSFORM LOCAL-ALIEN" info alien-type)
397     (/noshow (local-alien-info-force-to-memory-p info))
398     (if (local-alien-info-force-to-memory-p info)
399         `(extract-alien-value var 0 ',alien-type)
400         `(naturalize var ',alien-type))))
401
402 (deftransform %local-alien-forced-to-memory-p ((info) * * :important t)
403   (unless (constant-lvar-p info)
404     (abort-ir1-transform "Local alien info isn't constant?"))
405   (let ((info (lvar-value info)))
406     (local-alien-info-force-to-memory-p info)))
407
408 (deftransform %set-local-alien ((info var value) * * :important t)
409   (unless (constant-lvar-p info)
410     (abort-ir1-transform "Local alien info isn't constant?"))
411   (let* ((info (lvar-value info))
412          (alien-type (local-alien-info-type info)))
413     (if (local-alien-info-force-to-memory-p info)
414         `(deposit-alien-value var 0 ',alien-type value)
415         '(error "This should be eliminated as dead code."))))
416
417 (defoptimizer (%local-alien-addr derive-type) ((info var))
418   (if (constant-lvar-p info)
419       (let* ((info (lvar-value info))
420              (alien-type (local-alien-info-type info)))
421         (make-alien-type-type (make-alien-pointer-type :to alien-type)))
422       *wild-type*))
423
424 (deftransform %local-alien-addr ((info var) * * :important t)
425   (unless (constant-lvar-p info)
426     (abort-ir1-transform "Local alien info isn't constant?"))
427   (let* ((info (lvar-value info))
428          (alien-type (local-alien-info-type info)))
429     (/noshow "in DEFTRANSFORM %LOCAL-ALIEN-ADDR, creating %SAP-ALIEN")
430     (if (local-alien-info-force-to-memory-p info)
431         `(%sap-alien var ',(make-alien-pointer-type :to alien-type))
432         (error "This shouldn't happen."))))
433
434 (deftransform dispose-local-alien ((info var) * * :important t)
435   (unless (constant-lvar-p info)
436     (abort-ir1-transform "Local alien info isn't constant?"))
437   (let* ((info (lvar-value info))
438          (alien-type (local-alien-info-type info)))
439     (if (local-alien-info-force-to-memory-p info)
440       #!+(or x86 x86-64) `(%primitive dealloc-alien-stack-space
441                           ,(ceiling (alien-type-bits alien-type)
442                                     sb!vm:n-byte-bits))
443       #!-(or x86 x86-64) `(%primitive dealloc-number-stack-space
444                           ,(ceiling (alien-type-bits alien-type)
445                                     sb!vm:n-byte-bits))
446       nil)))
447 \f
448 ;;;; %CAST
449
450 (defoptimizer (%cast derive-type) ((alien type))
451   (or (when (constant-lvar-p type)
452         (let ((alien-type (lvar-value type)))
453           (when (alien-type-p alien-type)
454             (make-alien-type-type alien-type))))
455       *wild-type*))
456
457 (deftransform %cast ((alien target-type) * * :important t)
458   (unless (constant-lvar-p target-type)
459     (give-up-ir1-transform
460      "The alien type is not constant, so access cannot be open coded."))
461   (let ((target-type (lvar-value target-type)))
462     (cond ((or (alien-pointer-type-p target-type)
463                (alien-array-type-p target-type)
464                (alien-fun-type-p target-type))
465            `(naturalize (alien-sap alien) ',target-type))
466           (t
467            (abort-ir1-transform "cannot cast to alien type ~S" target-type)))))
468 \f
469 ;;;; ALIEN-SAP, %SAP-ALIEN, %ADDR, etc.
470
471 (deftransform alien-sap ((alien) * * :important t)
472   (let ((alien-node (lvar-uses alien)))
473     (typecase alien-node
474       (combination
475        (splice-fun-args alien '%sap-alien 2)
476        '(lambda (sap type)
477           (declare (ignore type))
478           sap))
479       (t
480        (give-up-ir1-transform)))))
481
482 (defoptimizer (%sap-alien derive-type) ((sap type))
483   (declare (ignore sap))
484   (if (constant-lvar-p type)
485       (make-alien-type-type (lvar-value type))
486       *wild-type*))
487
488 (deftransform %sap-alien ((sap type) * * :important t)
489   (give-up-ir1-transform
490    ;; FIXME: The hardcoded newline here causes more-than-usually
491    ;; screwed-up formatting of the optimization note output.
492    "could not optimize away %SAP-ALIEN: forced to do runtime ~@
493     allocation of alien-value structure"))
494 \f
495 ;;;; NATURALIZE/DEPORT/EXTRACT/DEPOSIT magic
496
497 (flet ((%computed-lambda (compute-lambda type)
498          (declare (type function compute-lambda))
499          (unless (constant-lvar-p type)
500            (give-up-ir1-transform
501             "The type is not constant at compile time; can't open code."))
502          (handler-case
503              (let ((result (funcall compute-lambda (lvar-value type))))
504                (/noshow "in %COMPUTED-LAMBDA" (lvar-value type) result)
505                result)
506            (error (condition)
507                   (compiler-error "~A" condition)))))
508   (deftransform naturalize ((object type) * * :important t)
509     (%computed-lambda #'compute-naturalize-lambda type))
510   (deftransform deport ((alien type) * * :important t)
511     (%computed-lambda #'compute-deport-lambda type))
512   (deftransform deport-alloc ((alien type) * * :important t)
513     (%computed-lambda #'compute-deport-alloc-lambda type))
514   (deftransform extract-alien-value ((sap offset type) * * :important t)
515     (%computed-lambda #'compute-extract-lambda type))
516   (deftransform deposit-alien-value ((sap offset type value) * * :important t)
517     (%computed-lambda #'compute-deposit-lambda type)))
518 \f
519 ;;;; a hack to clean up divisions
520
521 (defun count-low-order-zeros (thing)
522   (typecase thing
523     (lvar
524      (if (constant-lvar-p thing)
525          (count-low-order-zeros (lvar-value thing))
526          (count-low-order-zeros (lvar-uses thing))))
527     (combination
528      (case (let ((name (lvar-fun-name (combination-fun thing))))
529              (or (modular-version-info name :untagged nil) name))
530        ((+ -)
531         (let ((min most-positive-fixnum)
532               (itype (specifier-type 'integer)))
533           (dolist (arg (combination-args thing) min)
534             (if (csubtypep (lvar-type arg) itype)
535                 (setf min (min min (count-low-order-zeros arg)))
536                 (return 0)))))
537        (*
538         (let ((result 0)
539               (itype (specifier-type 'integer)))
540           (dolist (arg (combination-args thing) result)
541             (if (csubtypep (lvar-type arg) itype)
542                 (setf result (+ result (count-low-order-zeros arg)))
543                 (return 0)))))
544        (ash
545         (let ((args (combination-args thing)))
546           (if (= (length args) 2)
547               (let ((amount (second args)))
548                 (if (constant-lvar-p amount)
549                     (max (+ (count-low-order-zeros (first args))
550                             (lvar-value amount))
551                          0)
552                     0))
553               0)))
554        (t
555         0)))
556     (integer
557      (if (zerop thing)
558          most-positive-fixnum
559          (do ((result 0 (1+ result))
560               (num thing (ash num -1)))
561              ((logbitp 0 num) result))))
562     (cast
563      (count-low-order-zeros (cast-value thing)))
564     (t
565      0)))
566
567 (deftransform / ((numerator denominator) (integer integer))
568   "convert x/2^k to shift"
569   (unless (constant-lvar-p denominator)
570     (give-up-ir1-transform))
571   (let* ((denominator (lvar-value denominator))
572          (bits (1- (integer-length denominator))))
573     (unless (and (> denominator 0) (= (ash 1 bits) denominator))
574       (give-up-ir1-transform))
575     (let ((alignment (count-low-order-zeros numerator)))
576       (unless (>= alignment bits)
577         (give-up-ir1-transform))
578       `(ash numerator ,(- bits)))))
579
580 (deftransform ash ((value amount))
581   (let ((value-node (lvar-uses value)))
582     (unless (combination-p value-node)
583       (give-up-ir1-transform))
584     (let ((inside-fun-name (lvar-fun-name (combination-fun value-node))))
585       (multiple-value-bind (prototype width)
586           (modular-version-info inside-fun-name :untagged nil)
587         (unless (eq (or prototype inside-fun-name) 'ash)
588           (give-up-ir1-transform))
589         (when (and width (not (constant-lvar-p amount)))
590           (give-up-ir1-transform))
591         (let ((inside-args (combination-args value-node)))
592           (unless (= (length inside-args) 2)
593             (give-up-ir1-transform))
594           (let ((inside-amount (second inside-args)))
595             (unless (and (constant-lvar-p inside-amount)
596                          (not (minusp (lvar-value inside-amount))))
597               (give-up-ir1-transform)))
598           (splice-fun-args value inside-fun-name 2)
599           (if width
600               `(lambda (value amount1 amount2)
601                  (logand (ash value (+ amount1 amount2))
602                          ,(1- (ash 1 (+ width (lvar-value amount))))))
603               `(lambda (value amount1 amount2)
604                  (ash value (+ amount1 amount2)))))))))
605 \f
606 ;;;; ALIEN-FUNCALL support
607
608 (deftransform alien-funcall ((function &rest args)
609                              ((alien (* t)) &rest *) *
610                              :important t)
611   (let ((names (make-gensym-list (length args))))
612     (/noshow "entering first DEFTRANSFORM ALIEN-FUNCALL" function args)
613     `(lambda (function ,@names)
614        (alien-funcall (deref function) ,@names))))
615
616 ;;; Frame pointer, program counter conses. In each thread it's bound
617 ;;; locally or not bound at all.
618 (defvar *saved-fp-and-pcs*)
619
620 #!+:c-stack-is-control-stack
621 (declaim (inline invoke-with-saved-fp-and-pc))
622 #!+:c-stack-is-control-stack
623 (defun invoke-with-saved-fp-and-pc (fn)
624   (declare #-sb-xc-host (muffle-conditions compiler-note)
625            (optimize (speed 3)))
626   (let* ((fp-and-pc (cons (%caller-frame)
627                           (sap-int (%caller-pc)))))
628     (declare (truly-dynamic-extent fp-and-pc))
629     (let ((*saved-fp-and-pcs* (if (boundp '*saved-fp-and-pcs*)
630                                   (cons fp-and-pc *saved-fp-and-pcs*)
631                                   (list fp-and-pc))))
632       (declare (truly-dynamic-extent *saved-fp-and-pcs*))
633       (funcall fn))))
634
635 (defun find-saved-fp-and-pc (fp)
636   (when (boundp '*saved-fp-and-pcs*)
637     (dolist (x *saved-fp-and-pcs*)
638       (when (#!+:stack-grows-downward-not-upward
639              sap>
640              #!-:stack-grows-downward-not-upward
641              sap<
642              (int-sap (get-lisp-obj-address (car x))) fp)
643         (return (values (car x) (cdr x)))))))
644
645 (deftransform alien-funcall ((function &rest args) * * :node node :important t)
646   (let ((type (lvar-type function)))
647     (unless (alien-type-type-p type)
648       (give-up-ir1-transform "can't tell function type at compile time"))
649     (/noshow "entering second DEFTRANSFORM ALIEN-FUNCALL" function)
650     (let ((alien-type (alien-type-type-alien-type type)))
651       (unless (alien-fun-type-p alien-type)
652         (give-up-ir1-transform))
653       (let ((arg-types (alien-fun-type-arg-types alien-type)))
654         (unless (= (length args) (length arg-types))
655           (abort-ir1-transform
656            "wrong number of arguments; expected ~W, got ~W"
657            (length arg-types)
658            (length args)))
659         (collect ((params) (deports))
660           (dolist (arg-type arg-types)
661             (let ((param (gensym)))
662               (params param)
663               (deports `(deport ,param ',arg-type))))
664           ;; Build BODY from the inside out.
665           (let ((return-type (alien-fun-type-result-type alien-type))
666                 ;; Innermost, we DEPORT the parameters (e.g. by taking SAPs
667                 ;; to them) and do the call.
668                 (body `(%alien-funcall (deport function ',alien-type)
669                                        ',alien-type
670                                        ,@(deports))))
671             ;; Wrap that in a WITH-PINNED-OBJECTS to ensure the values
672             ;; the SAPs are taken for won't be moved by the GC. (If
673             ;; needed: some alien types won't need it).
674             (setf body `(maybe-with-pinned-objects ,(params) ,arg-types
675                           ,body))
676             ;; Around that handle any memory allocation that's needed.
677             ;; Mostly the DEPORT-ALLOC alien-type-methods are just an
678             ;; identity operation, but for example for deporting a
679             ;; Unicode string we need to convert the string into an
680             ;; octet array. This step needs to be done before the pinning
681             ;; to ensure we pin the right objects, so it can't be combined
682             ;; with the deporting.
683             ;; -- JES 2006-03-16
684             (loop for param in (params)
685                   for arg-type in arg-types
686                   do (setf body
687                            `(let ((,param (deport-alloc ,param ',arg-type)))
688                               ,body)))
689             (if (alien-values-type-p return-type)
690                 (collect ((temps) (results))
691                   (dolist (type (alien-values-type-values return-type))
692                     (let ((temp (gensym)))
693                       (temps temp)
694                       (results `(naturalize ,temp ',type))))
695                   (setf body
696                         `(multiple-value-bind ,(temps) ,body
697                            (values ,@(results)))))
698                 (setf body `(naturalize ,body ',return-type)))
699             ;; Remember this frame to make sure that we can get back
700             ;; to it later regardless of how the foreign stack looks
701             ;; like.
702             #!+:c-stack-is-control-stack
703             (when (policy node (<= speed debug))
704               (setf body `(invoke-with-saved-fp-and-pc (lambda () ,body))))
705             (/noshow "returning from DEFTRANSFORM ALIEN-FUNCALL" (params) body)
706             `(lambda (function ,@(params))
707                ,body)))))))
708
709 (defoptimizer (%alien-funcall derive-type) ((function type &rest args))
710   (declare (ignore function args))
711   (unless (constant-lvar-p type)
712     (error "Something is broken."))
713   (let ((type (lvar-value type)))
714     (unless (alien-fun-type-p type)
715       (error "Something is broken."))
716     (values-specifier-type
717      (compute-alien-rep-type
718       (alien-fun-type-result-type type)))))
719
720 (defoptimizer (%alien-funcall ltn-annotate)
721               ((function type &rest args) node ltn-policy)
722   (setf (basic-combination-info node) :funny)
723   (setf (node-tail-p node) nil)
724   (annotate-ordinary-lvar function)
725   (dolist (arg args)
726     (annotate-ordinary-lvar arg)))
727
728 ;;; We support both the stdcall and cdecl calling conventions on win32 by
729 ;;; resetting ESP after the foreign function returns. This way it works
730 ;;; correctly whether the party that is supposed to pop arguments from
731 ;;; the stack is the caller (cdecl) or the callee (stdcall).
732 (defoptimizer (%alien-funcall ir2-convert)
733               ((function type &rest args) call block)
734   (let ((type (if (constant-lvar-p type)
735                   (lvar-value type)
736                   (error "Something is broken.")))
737         (lvar (node-lvar call))
738         (args args)
739         #!+x86
740         (stack-pointer (make-stack-pointer-tn)))
741     (multiple-value-bind (nsp stack-frame-size arg-tns result-tns)
742         (make-call-out-tns type)
743       #!+x86
744       (progn
745         (vop set-fpu-word-for-c call block)
746         (vop current-stack-pointer call block stack-pointer))
747       (vop alloc-number-stack-space call block stack-frame-size nsp)
748       (dolist (tn arg-tns)
749         ;; On PPC, TN might be a list. This is used to indicate
750         ;; something special needs to happen. See below.
751         ;;
752         ;; FIXME: We should implement something better than this.
753         (let* ((first-tn (if (listp tn) (car tn) tn))
754                (arg (pop args))
755                (sc (tn-sc first-tn))
756                (scn (sc-number sc))
757                #!-(or x86 x86-64) (temp-tn (make-representation-tn
758                                             (tn-primitive-type first-tn) scn))
759                (move-arg-vops (svref (sc-move-arg-vops sc) scn)))
760           (aver arg)
761           (unless (= (length move-arg-vops) 1)
762             (error "no unique move-arg-vop for moves in SC ~S" (sc-name sc)))
763           #!+(or x86 x86-64) (emit-move-arg-template call
764                                                      block
765                                                      (first move-arg-vops)
766                                                      (lvar-tn call block arg)
767                                                      nsp
768                                                      first-tn)
769           #!-(or x86 x86-64) (progn
770                                (emit-move call
771                                           block
772                                           (lvar-tn call block arg)
773                                           temp-tn)
774                                (emit-move-arg-template call
775                                                        block
776                                                        (first move-arg-vops)
777                                                        temp-tn
778                                                        nsp
779                                                        first-tn))
780           #!+(and ppc darwin)
781           (when (listp tn)
782             ;; This means that we have a float arg that we need to
783             ;; also copy to some int regs. The list contains the TN
784             ;; for the float as well as the TNs to use for the int
785             ;; arg.
786             (destructuring-bind (float-tn i1-tn &optional i2-tn)
787                 tn
788               (if i2-tn
789                   (vop sb!vm::move-double-to-int-arg call block
790                        float-tn i1-tn i2-tn)
791                   (vop sb!vm::move-single-to-int-arg call block
792                        float-tn i1-tn))))))
793       (aver (null args))
794       (unless (listp result-tns)
795         (setf result-tns (list result-tns)))
796       (let ((arg-tns (flatten-list arg-tns)))
797         (vop* call-out call block
798               ((lvar-tn call block function)
799                (reference-tn-list arg-tns nil))
800               ((reference-tn-list result-tns t))))
801       #!-x86
802       (vop dealloc-number-stack-space call block stack-frame-size)
803       #!+x86
804       (progn
805         (vop reset-stack-pointer call block stack-pointer)
806         (vop set-fpu-word-for-lisp call block))
807       (move-lvar-result call block result-tns lvar))))