1 ;;;; transforms and other stuff used to compile ALIEN operations
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.
16 (defknown %sap-alien (system-area-pointer alien-type) alien-value
18 (defknown alien-sap (alien-value) system-area-pointer
21 (defknown slot (alien-value symbol) t
22 (flushable recursive))
23 (defknown %set-slot (alien-value symbol t) t
25 (defknown %slot-addr (alien-value symbol) (alien (* t))
26 (flushable movable recursive))
28 (defknown deref (alien-value &rest index) t
30 (defknown %set-deref (alien-value t &rest index) t
32 (defknown %deref-addr (alien-value &rest index) (alien (* t))
35 (defknown %heap-alien (heap-alien-info) t
37 (defknown %set-heap-alien (heap-alien-info t) t
39 (defknown %heap-alien-addr (heap-alien-info) (alien (* t))
42 (defknown make-local-alien (local-alien-info) t
44 (defknown note-local-alien-type (local-alien-info t) null
46 (defknown local-alien (local-alien-info t) t
48 (defknown %local-alien-forced-to-memory-p (local-alien-info) (member t nil)
50 (defknown %set-local-alien (local-alien-info t t) t
52 (defknown %local-alien-addr (local-alien-info t) (alien (* t))
54 (defknown dispose-local-alien (local-alien-info t) t
57 (defknown %cast (alien-value alien-type) alien
60 (defknown naturalize (t alien-type) alien
62 (defknown deport (alien alien-type) t
64 (defknown deport-alloc (alien alien-type) t
66 (defknown %alien-value (system-area-pointer unsigned-byte alien-type) t
68 (defknown (setf %alien-value) (t system-area-pointer unsigned-byte alien-type) t
71 (defknown alien-funcall (alien-value &rest *) *
74 ;;;; cosmetic transforms
76 (deftransform slot ((object slot)
77 ((alien (* t)) symbol))
78 '(slot (deref object) slot))
80 (deftransform %set-slot ((object slot value)
81 ((alien (* t)) symbol t))
82 '(%set-slot (deref object) slot value))
84 (deftransform %slot-addr ((object slot)
85 ((alien (* t)) symbol))
86 '(%slot-addr (deref object) slot))
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)))
104 (abort-ir1-transform "~S doesn't have a slot named ~S"
107 (values (alien-record-field-offset field)
108 (alien-record-field-type field))))))
110 #+nil ;; Shouldn't be necessary.
111 (defoptimizer (slot derive-type) ((alien slot))
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))))
120 (deftransform slot ((alien slot) * * :important t)
121 (multiple-value-bind (slot-offset slot-type)
122 (find-slot-offset-and-type alien slot)
123 `(%alien-value (alien-sap alien)
127 #+nil ;; ### But what about coercions?
128 (defoptimizer (%set-slot derive-type) ((alien slot value))
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)
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 `(setf (%alien-value (alien-sap alien)
147 (defoptimizer (%slot-addr derive-type) ((alien slot))
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)))))
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))))
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)
173 (give-up-ir1-transform)))))
175 (defun find-deref-element-type (alien)
176 (let ((alien-type (find-deref-alien-type alien)))
179 (alien-pointer-type-to alien-type))
181 (alien-array-type-element-type alien-type))
183 (give-up-ir1-transform)))))
185 (defun compute-deref-guts (alien indices)
186 (let ((alien-type (find-deref-alien-type alien)))
190 (abort-ir1-transform "too many indices for pointer deref: ~W"
192 (let ((element-type (alien-pointer-type-to alien-type)))
194 (give-up-ir1-transform "unable to open code deref of wild pointer type"))
196 (let ((bits (alien-type-bits element-type))
197 (alignment (alien-type-alignment element-type)))
199 (abort-ir1-transform "unknown element size"))
201 (abort-ir1-transform "unknown element alignment"))
204 ,(align-offset bits alignment))
206 (values nil 0 element-type))))
208 (let* ((element-type (alien-array-type-element-type alien-type))
209 (bits (alien-type-bits element-type))
210 (alignment (alien-type-alignment element-type))
211 (dims (alien-array-type-dimensions alien-type)))
212 (unless (= (length indices) (length dims))
213 (give-up-ir1-transform "incorrect number of indices"))
215 (give-up-ir1-transform "Element size is unknown."))
217 (give-up-ir1-transform "Element alignment is unknown."))
219 (values nil 0 element-type)
220 (let* ((arg (gensym))
223 (dolist (dim (cdr dims))
224 (let ((arg (gensym)))
226 (setf offsetexpr `(+ (* ,offsetexpr ,dim) ,arg))))
227 (values (reverse args)
229 ,(align-offset bits alignment))
232 (abort-ir1-transform "~S not either a pointer or array type."
235 #+nil ;; Shouldn't be necessary.
236 (defoptimizer (deref derive-type) ((alien &rest noise))
237 (declare (ignore noise))
239 (catch 'give-up-ir1-transform
240 (return (make-alien-type-type (find-deref-element-type alien))))
243 (deftransform deref ((alien &rest indices) * * :important t)
244 (multiple-value-bind (indices-args offset-expr element-type)
245 (compute-deref-guts alien indices)
246 `(lambda (alien ,@indices-args)
247 (%alien-value (alien-sap alien)
251 #+nil ;; ### Again, the value might be coerced.
252 (defoptimizer (%set-deref derive-type) ((alien value &rest noise))
253 (declare (ignore noise))
255 (catch 'give-up-ir1-transform
256 (let ((type (make-alien-type-type
257 (make-alien-pointer-type
258 :to (find-deref-element-type alien)))))
259 (assert-lvar-type value type)
263 (deftransform %set-deref ((alien value &rest indices) * * :important t)
264 (multiple-value-bind (indices-args offset-expr element-type)
265 (compute-deref-guts alien indices)
266 `(lambda (alien value ,@indices-args)
267 (setf (%alien-value (alien-sap alien)
272 (defoptimizer (%deref-addr derive-type) ((alien &rest noise))
273 (declare (ignore noise))
275 (catch 'give-up-ir1-transform
276 (return (make-alien-type-type
277 (make-alien-pointer-type
278 :to (find-deref-element-type alien)))))
281 (deftransform %deref-addr ((alien &rest indices) * * :important t)
282 (multiple-value-bind (indices-args offset-expr element-type)
283 (compute-deref-guts alien indices)
284 (/noshow "in DEFTRANSFORM %DEREF-ADDR, creating (LAMBDA .. %SAP-ALIEN)")
285 `(lambda (alien ,@indices-args)
286 (%sap-alien (sap+ (alien-sap alien) (/ ,offset-expr sb!vm:n-byte-bits))
287 ',(make-alien-pointer-type :to element-type)))))
289 ;;;; support for aliens on the heap
291 (defun heap-alien-sap-and-type (info)
292 (unless (constant-lvar-p info)
293 (give-up-ir1-transform "info not constant; can't open code"))
294 (let ((info (lvar-value info)))
295 (values (heap-alien-info-sap-form info)
296 (heap-alien-info-type info))))
298 #+nil ; shouldn't be necessary
299 (defoptimizer (%heap-alien derive-type) ((info))
302 (multiple-value-bind (sap type) (heap-alien-sap-and-type info)
303 (declare (ignore sap))
304 (return (make-alien-type-type type))))
307 (deftransform %heap-alien ((info) ((constant-arg heap-alien-info)) * :important t)
308 (multiple-value-bind (sap type) (heap-alien-sap-and-type info)
309 `(%alien-value ,sap 0 ',type)))
311 #+nil ;; ### Again, deposit value might change the type.
312 (defoptimizer (%set-heap-alien derive-type) ((info value))
314 (catch 'give-up-ir1-transform
315 (multiple-value-bind (sap type) (heap-alien-sap-and-type info)
316 (declare (ignore sap))
317 (let ((type (make-alien-type-type type)))
318 (assert-lvar-type value type)
322 (deftransform %set-heap-alien ((info value) (heap-alien-info *) * :important t)
323 (multiple-value-bind (sap type) (heap-alien-sap-and-type info)
324 `(setf (%alien-value ,sap 0 ',type) value)))
326 (defoptimizer (%heap-alien-addr derive-type) ((info))
328 (catch 'give-up-ir1-transform
329 (multiple-value-bind (sap type) (heap-alien-sap-and-type info)
330 (declare (ignore sap))
331 (return (make-alien-type-type (make-alien-pointer-type :to type)))))
334 (deftransform %heap-alien-addr ((info) * * :important t)
335 (multiple-value-bind (sap type) (heap-alien-sap-and-type info)
336 (/noshow "in DEFTRANSFORM %HEAP-ALIEN-ADDR, creating %SAP-ALIEN")
337 `(%sap-alien ,sap ',(make-alien-pointer-type :to type))))
340 ;;;; support for local (stack or register) aliens
342 (defun alien-info-constant-or-abort (info)
343 (unless (constant-lvar-p info)
344 (abort-ir1-transform "Local alien info isn't constant?")))
346 (deftransform make-local-alien ((info) * * :important t)
347 (alien-info-constant-or-abort info)
348 (let* ((info (lvar-value info))
349 (alien-type (local-alien-info-type info))
350 (bits (alien-type-bits alien-type)))
352 (abort-ir1-transform "unknown size: ~S" (unparse-alien-type alien-type)))
353 (/noshow "in DEFTRANSFORM MAKE-LOCAL-ALIEN" info)
354 (/noshow (local-alien-info-force-to-memory-p info))
355 (/noshow alien-type (unparse-alien-type alien-type) (alien-type-bits alien-type))
356 (if (local-alien-info-force-to-memory-p info)
358 `(%primitive alloc-alien-stack-space
359 ,(ceiling (alien-type-bits alien-type)
362 `(%primitive alloc-number-stack-space
363 ,(ceiling (alien-type-bits alien-type)
365 (let* ((alien-rep-type-spec (compute-alien-rep-type alien-type))
366 (alien-rep-type (specifier-type alien-rep-type-spec)))
367 (cond ((csubtypep (specifier-type 'system-area-pointer)
370 ((ctypep 0 alien-rep-type) 0)
371 ((ctypep 0.0f0 alien-rep-type) 0.0f0)
372 ((ctypep 0.0d0 alien-rep-type) 0.0d0)
375 "Aliens of type ~S cannot be represented immediately."
376 (unparse-alien-type alien-type))))))))
378 (deftransform note-local-alien-type ((info var) * * :important t)
379 (alien-info-constant-or-abort info)
380 (let ((info (lvar-value info)))
381 (/noshow "in DEFTRANSFORM NOTE-LOCAL-ALIEN-TYPE" info)
382 (/noshow (local-alien-info-force-to-memory-p info))
383 (unless (local-alien-info-force-to-memory-p info)
384 (let ((var-node (lvar-uses var)))
385 (/noshow var-node (ref-p var-node))
386 (when (ref-p var-node)
387 (propagate-to-refs (ref-leaf var-node)
389 (compute-alien-rep-type
390 (local-alien-info-type info))))))))
393 (deftransform local-alien ((info var) * * :important t)
394 (alien-info-constant-or-abort info)
395 (let* ((info (lvar-value info))
396 (alien-type (local-alien-info-type info)))
397 (/noshow "in DEFTRANSFORM LOCAL-ALIEN" info alien-type)
398 (/noshow (local-alien-info-force-to-memory-p info))
399 (if (local-alien-info-force-to-memory-p info)
400 `(%alien-value var 0 ',alien-type)
401 `(naturalize var ',alien-type))))
403 (deftransform %local-alien-forced-to-memory-p ((info) * * :important t)
404 (alien-info-constant-or-abort info)
405 (let ((info (lvar-value info)))
406 (local-alien-info-force-to-memory-p info)))
408 (deftransform %set-local-alien ((info var value) * * :important t)
409 (alien-info-constant-or-abort info)
410 (let* ((info (lvar-value info))
411 (alien-type (local-alien-info-type info)))
412 (if (local-alien-info-force-to-memory-p info)
413 `(setf (%alien-value var 0 ',alien-type) value)
414 '(error "This should be eliminated as dead code."))))
416 (defoptimizer (%local-alien-addr derive-type) ((info var))
417 (if (constant-lvar-p info)
418 (let* ((info (lvar-value info))
419 (alien-type (local-alien-info-type info)))
420 (make-alien-type-type (make-alien-pointer-type :to alien-type)))
423 (deftransform %local-alien-addr ((info var) * * :important t)
424 (alien-info-constant-or-abort info)
425 (let* ((info (lvar-value info))
426 (alien-type (local-alien-info-type info)))
427 (/noshow "in DEFTRANSFORM %LOCAL-ALIEN-ADDR, creating %SAP-ALIEN")
428 (if (local-alien-info-force-to-memory-p info)
429 `(%sap-alien var ',(make-alien-pointer-type :to alien-type))
430 (error "This shouldn't happen."))))
432 (deftransform dispose-local-alien ((info var) * * :important t)
433 (alien-info-constant-or-abort info)
434 (let* ((info (lvar-value info))
435 (alien-type (local-alien-info-type info)))
436 (if (local-alien-info-force-to-memory-p info)
437 #!+(or x86 x86-64) `(%primitive dealloc-alien-stack-space
438 ,(ceiling (alien-type-bits alien-type)
440 #!-(or x86 x86-64) `(%primitive dealloc-number-stack-space
441 ,(ceiling (alien-type-bits alien-type)
447 (defoptimizer (%cast derive-type) ((alien type))
448 (or (when (constant-lvar-p type)
449 (let ((alien-type (lvar-value type)))
450 (when (alien-type-p alien-type)
451 (make-alien-type-type alien-type))))
454 (deftransform %cast ((alien target-type) * * :important t)
455 (unless (constant-lvar-p target-type)
456 (give-up-ir1-transform
457 "The alien type is not constant, so access cannot be open coded."))
458 (let ((target-type (lvar-value target-type)))
459 (cond ((or (alien-pointer-type-p target-type)
460 (alien-array-type-p target-type)
461 (alien-fun-type-p target-type))
462 `(naturalize (alien-sap alien) ',target-type))
464 (abort-ir1-transform "cannot cast to alien type ~S" target-type)))))
466 ;;;; ALIEN-SAP, %SAP-ALIEN, %ADDR, etc.
468 (deftransform alien-sap ((alien) * * :important t)
469 (let ((alien-node (lvar-uses alien)))
472 (splice-fun-args alien '%sap-alien 2)
474 (declare (ignore type))
477 (give-up-ir1-transform)))))
479 (defoptimizer (%sap-alien derive-type) ((sap type))
480 (declare (ignore sap))
481 (if (constant-lvar-p type)
482 (make-alien-type-type (lvar-value type))
485 (deftransform %sap-alien ((sap type) * * :important t)
486 (give-up-ir1-transform
487 ;; FIXME: The hardcoded newline here causes more-than-usually
488 ;; screwed-up formatting of the optimization note output.
489 "could not optimize away %SAP-ALIEN: forced to do runtime ~@
490 allocation of alien-value structure"))
492 ;;;; NATURALIZE/DEPORT/EXTRACT/DEPOSIT magic
494 (flet ((%computed-lambda (compute-lambda type)
495 (declare (type function compute-lambda))
496 (unless (constant-lvar-p type)
497 (give-up-ir1-transform
498 "The type is not constant at compile time; can't open code."))
500 (let ((result (funcall compute-lambda (lvar-value type))))
501 (/noshow "in %COMPUTED-LAMBDA" (lvar-value type) result)
504 (compiler-error "~A" condition)))))
505 (deftransform naturalize ((object type) * * :important t)
506 (%computed-lambda #'compute-naturalize-lambda type))
507 (deftransform deport ((alien type) * * :important t)
508 (%computed-lambda #'compute-deport-lambda type))
509 (deftransform deport-alloc ((alien type) * * :important t)
510 (%computed-lambda #'compute-deport-alloc-lambda type))
511 (deftransform %alien-value ((sap offset type) * * :important t)
512 (%computed-lambda #'compute-extract-lambda type))
513 (deftransform (setf %alien-value) ((value sap offset type) * * :important t)
514 (%computed-lambda #'compute-deposit-lambda type)))
516 ;;;; a hack to clean up divisions
518 (defun count-low-order-zeros (thing)
521 (if (constant-lvar-p thing)
522 (count-low-order-zeros (lvar-value thing))
523 (count-low-order-zeros (lvar-uses thing))))
525 (case (let ((name (lvar-fun-name (combination-fun thing))))
526 (or (modular-version-info name :untagged nil) name))
528 (let ((min most-positive-fixnum)
529 (itype (specifier-type 'integer)))
530 (dolist (arg (combination-args thing) min)
531 (if (csubtypep (lvar-type arg) itype)
532 (setf min (min min (count-low-order-zeros arg)))
536 (itype (specifier-type 'integer)))
537 (dolist (arg (combination-args thing) result)
538 (if (csubtypep (lvar-type arg) itype)
539 (setf result (+ result (count-low-order-zeros arg)))
542 (let ((args (combination-args thing)))
543 (if (= (length args) 2)
544 (let ((amount (second args)))
545 (if (constant-lvar-p amount)
546 (max (+ (count-low-order-zeros (first args))
556 (do ((result 0 (1+ result))
557 (num thing (ash num -1)))
558 ((logbitp 0 num) result))))
560 (count-low-order-zeros (cast-value thing)))
564 (deftransform / ((numerator denominator) (integer integer))
565 "convert x/2^k to shift"
566 (unless (constant-lvar-p denominator)
567 (give-up-ir1-transform))
568 (let* ((denominator (lvar-value denominator))
569 (bits (1- (integer-length denominator))))
570 (unless (and (> denominator 0) (= (ash 1 bits) denominator))
571 (give-up-ir1-transform))
572 (let ((alignment (count-low-order-zeros numerator)))
573 (unless (>= alignment bits)
574 (give-up-ir1-transform))
575 `(ash numerator ,(- bits)))))
577 (deftransform ash ((value amount))
578 (let ((value-node (lvar-uses value)))
579 (unless (combination-p value-node)
580 (give-up-ir1-transform))
581 (let ((inside-fun-name (lvar-fun-name (combination-fun value-node))))
582 (multiple-value-bind (prototype width)
583 (modular-version-info inside-fun-name :untagged nil)
584 (unless (eq (or prototype inside-fun-name) 'ash)
585 (give-up-ir1-transform))
586 (when (and width (not (constant-lvar-p amount)))
587 (give-up-ir1-transform))
588 (let ((inside-args (combination-args value-node)))
589 (unless (= (length inside-args) 2)
590 (give-up-ir1-transform))
591 (let ((inside-amount (second inside-args)))
592 (unless (and (constant-lvar-p inside-amount)
593 (not (minusp (lvar-value inside-amount))))
594 (give-up-ir1-transform)))
595 (splice-fun-args value inside-fun-name 2)
597 `(lambda (value amount1 amount2)
598 (logand (ash value (+ amount1 amount2))
599 ,(1- (ash 1 (+ width (lvar-value amount))))))
600 `(lambda (value amount1 amount2)
601 (ash value (+ amount1 amount2)))))))))
603 ;;;; ALIEN-FUNCALL support
605 (deftransform alien-funcall ((function &rest args)
606 ((alien (* t)) &rest *) *
608 (let ((names (make-gensym-list (length args))))
609 (/noshow "entering first DEFTRANSFORM ALIEN-FUNCALL" function args)
610 `(lambda (function ,@names)
611 (alien-funcall (deref function) ,@names))))
613 ;;; Frame pointer, program counter conses. In each thread it's bound
614 ;;; locally or not bound at all.
615 (defvar *saved-fp-and-pcs*)
617 #!+:c-stack-is-control-stack
618 (declaim (inline invoke-with-saved-fp-and-pc))
619 #!+:c-stack-is-control-stack
620 (defun invoke-with-saved-fp-and-pc (fn)
621 (declare #-sb-xc-host (muffle-conditions compiler-note)
622 (optimize (speed 3)))
623 (let* ((fp-and-pc (cons (%caller-frame)
624 (sap-int (%caller-pc)))))
625 (declare (truly-dynamic-extent fp-and-pc))
626 (let ((*saved-fp-and-pcs* (if (boundp '*saved-fp-and-pcs*)
627 (cons fp-and-pc *saved-fp-and-pcs*)
629 (declare (truly-dynamic-extent *saved-fp-and-pcs*))
632 (defun find-saved-fp-and-pc (fp)
633 (when (boundp '*saved-fp-and-pcs*)
634 (dolist (x *saved-fp-and-pcs*)
635 (when (#!+:stack-grows-downward-not-upward
637 #!-:stack-grows-downward-not-upward
639 (int-sap (get-lisp-obj-address (car x))) fp)
640 (return (values (car x) (cdr x)))))))
642 (deftransform alien-funcall ((function &rest args) * * :node node :important t)
643 (let ((type (lvar-type function)))
644 (unless (alien-type-type-p type)
645 (give-up-ir1-transform "can't tell function type at compile time"))
646 (/noshow "entering second DEFTRANSFORM ALIEN-FUNCALL" function)
647 (let ((alien-type (alien-type-type-alien-type type)))
648 (unless (alien-fun-type-p alien-type)
649 (give-up-ir1-transform))
650 (let ((arg-types (alien-fun-type-arg-types alien-type)))
651 (unless (= (length args) (length arg-types))
653 "wrong number of arguments; expected ~W, got ~W"
656 (collect ((params) (deports))
657 (dolist (arg-type arg-types)
658 (let ((param (gensym)))
660 (deports `(deport ,param ',arg-type))))
661 ;; Build BODY from the inside out.
662 (let ((return-type (alien-fun-type-result-type alien-type))
663 ;; Innermost, we DEPORT the parameters (e.g. by taking SAPs
664 ;; to them) and do the call.
665 (body `(%alien-funcall (deport function ',alien-type)
668 ;; Wrap that in a WITH-PINNED-OBJECTS to ensure the values
669 ;; the SAPs are taken for won't be moved by the GC. (If
670 ;; needed: some alien types won't need it).
671 (setf body `(maybe-with-pinned-objects ,(params) ,arg-types
673 ;; Around that handle any memory allocation that's needed.
674 ;; Mostly the DEPORT-ALLOC alien-type-methods are just an
675 ;; identity operation, but for example for deporting a
676 ;; Unicode string we need to convert the string into an
677 ;; octet array. This step needs to be done before the pinning
678 ;; to ensure we pin the right objects, so it can't be combined
679 ;; with the deporting.
681 (loop for param in (params)
682 for arg-type in arg-types
684 `(let ((,param (deport-alloc ,param ',arg-type)))
686 (if (alien-values-type-p return-type)
687 (collect ((temps) (results))
688 (dolist (type (alien-values-type-values return-type))
689 (let ((temp (gensym)))
691 (results `(naturalize ,temp ',type))))
693 `(multiple-value-bind ,(temps) ,body
694 (values ,@(results)))))
695 (setf body `(naturalize ,body ',return-type)))
696 ;; Remember this frame to make sure that we can get back
697 ;; to it later regardless of how the foreign stack looks
699 #!+:c-stack-is-control-stack
700 (when (policy node (= 3 alien-funcall-saves-fp-and-pc))
701 (setf body `(invoke-with-saved-fp-and-pc (lambda () ,body))))
702 (/noshow "returning from DEFTRANSFORM ALIEN-FUNCALL" (params) body)
703 `(lambda (function ,@(params))
704 (declare (optimize (let-conversion 3)))
707 (defoptimizer (%alien-funcall derive-type) ((function type &rest args))
708 (declare (ignore function args))
709 (unless (constant-lvar-p type)
710 (error "Something is broken."))
711 (let ((type (lvar-value type)))
712 (unless (alien-fun-type-p type)
713 (error "Something is broken."))
714 (values-specifier-type
715 (compute-alien-rep-type
716 (alien-fun-type-result-type type)
719 (defoptimizer (%alien-funcall ltn-annotate)
720 ((function type &rest args) node ltn-policy)
721 (setf (basic-combination-info node) :funny)
722 (setf (node-tail-p node) nil)
723 (annotate-ordinary-lvar function)
725 (annotate-ordinary-lvar arg)))
727 ;;; We support both the stdcall and cdecl calling conventions on win32 by
728 ;;; resetting ESP after the foreign function returns. This way it works
729 ;;; correctly whether the party that is supposed to pop arguments from
730 ;;; the stack is the caller (cdecl) or the callee (stdcall).
731 (defoptimizer (%alien-funcall ir2-convert)
732 ((function type &rest args) call block)
733 (let ((type (if (constant-lvar-p type)
735 (error "Something is broken.")))
736 (lvar (node-lvar call))
739 (stack-pointer (make-stack-pointer-tn)))
740 (multiple-value-bind (nsp stack-frame-size arg-tns result-tns)
741 (make-call-out-tns type)
744 (vop set-fpu-word-for-c call block)
745 (vop current-stack-pointer call block stack-pointer))
746 (vop alloc-number-stack-space call block stack-frame-size nsp)
748 ;; On PPC, TN might be a list. This is used to indicate
749 ;; something special needs to happen. See below.
751 ;; FIXME: We should implement something better than this.
752 (let* ((first-tn (if (listp tn) (car tn) tn))
754 (sc (tn-sc first-tn))
756 #!-(or x86 x86-64) (temp-tn (make-representation-tn
757 (tn-primitive-type first-tn) scn))
758 (move-arg-vops (svref (sc-move-arg-vops sc) scn)))
760 (unless (= (length move-arg-vops) 1)
761 (error "no unique move-arg-vop for moves in SC ~S" (sc-name sc)))
762 #!+(or x86 x86-64) (emit-move-arg-template call
764 (first move-arg-vops)
765 (lvar-tn call block arg)
768 #!-(or x86 x86-64) (progn
771 (lvar-tn call block arg)
773 (emit-move-arg-template call
775 (first move-arg-vops)
781 ;; This means that we have a float arg that we need to
782 ;; also copy to some int regs. The list contains the TN
783 ;; for the float as well as the TNs to use for the int
785 (destructuring-bind (float-tn i1-tn &optional i2-tn)
788 (vop sb!vm::move-double-to-int-arg call block
789 float-tn i1-tn i2-tn)
790 (vop sb!vm::move-single-to-int-arg call block
793 (unless (listp result-tns)
794 (setf result-tns (list result-tns)))
795 (let ((arg-tns (flatten-list arg-tns)))
796 (vop* call-out call block
797 ((lvar-tn call block function)
798 (reference-tn-list arg-tns nil))
799 ((reference-tn-list result-tns t))))
801 (vop dealloc-number-stack-space call block stack-frame-size)
804 (vop reset-stack-pointer call block stack-pointer)
805 (vop set-fpu-word-for-lisp call block))
806 (move-lvar-result call block result-tns lvar))))