38a8fe262ad1326e014e1c0380775c328de26a22
[sbcl.git] / src / compiler / x86 / c-call.lisp
1 ;;;; the VOPs and other necessary machine specific support
2 ;;;; routines for call-out to C
3
4 ;;;; This software is part of the SBCL system. See the README file for
5 ;;;; more information.
6 ;;;;
7 ;;;; This software is derived from the CMU CL system, which was
8 ;;;; written at Carnegie Mellon University and released into the
9 ;;;; public domain. The software is in the public domain and is
10 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
11 ;;;; files for more information.
12
13 (in-package "SB!VM")
14
15 ;; The MOVE-ARG vop is going to store args on the stack for
16 ;; call-out. These tn's will be used for that. move-arg is normally
17 ;; used for things going down the stack but C wants to have args
18 ;; indexed in the positive direction.
19
20 (defun my-make-wired-tn (prim-type-name sc-name offset)
21   (make-wired-tn (primitive-type-or-lose prim-type-name)
22                  (sc-number-or-lose sc-name)
23                  offset))
24
25 (defstruct (arg-state (:copier nil))
26   (stack-frame-size 0))
27
28 (define-alien-type-method (integer :arg-tn) (type state)
29   (let ((stack-frame-size (arg-state-stack-frame-size state)))
30     (setf (arg-state-stack-frame-size state) (1+ stack-frame-size))
31     (multiple-value-bind (ptype stack-sc)
32         (if (alien-integer-type-signed type)
33             (values 'signed-byte-32 'signed-stack)
34             (values 'unsigned-byte-32 'unsigned-stack))
35       (my-make-wired-tn ptype stack-sc stack-frame-size))))
36
37 (define-alien-type-method (system-area-pointer :arg-tn) (type state)
38   (declare (ignore type))
39   (let ((stack-frame-size (arg-state-stack-frame-size state)))
40     (setf (arg-state-stack-frame-size state) (1+ stack-frame-size))
41     (my-make-wired-tn 'system-area-pointer
42                       'sap-stack
43                       stack-frame-size)))
44
45 #!+long-float
46 (define-alien-type-method (long-float :arg-tn) (type state)
47   (declare (ignore type))
48   (let ((stack-frame-size (arg-state-stack-frame-size state)))
49     (setf (arg-state-stack-frame-size state) (+ stack-frame-size 3))
50     (my-make-wired-tn 'long-float 'long-stack stack-frame-size)))
51
52 (define-alien-type-method (double-float :arg-tn) (type state)
53   (declare (ignore type))
54   (let ((stack-frame-size (arg-state-stack-frame-size state)))
55     (setf (arg-state-stack-frame-size state) (+ stack-frame-size 2))
56     (my-make-wired-tn 'double-float 'double-stack stack-frame-size)))
57
58 (define-alien-type-method (single-float :arg-tn) (type state)
59   (declare (ignore type))
60   (let ((stack-frame-size (arg-state-stack-frame-size state)))
61     (setf (arg-state-stack-frame-size state) (1+ stack-frame-size))
62     (my-make-wired-tn 'single-float 'single-stack stack-frame-size)))
63
64 (defstruct (result-state (:copier nil))
65   (num-results 0))
66
67 (defun result-reg-offset (slot)
68   (ecase slot
69     (0 eax-offset)
70     (1 edx-offset)))
71
72 (define-alien-type-method (integer :result-tn) (type state)
73   (let ((num-results (result-state-num-results state)))
74     (setf (result-state-num-results state) (1+ num-results))
75     (multiple-value-bind (ptype reg-sc)
76         (if (alien-integer-type-signed type)
77             (values 'signed-byte-32 'signed-reg)
78             (values 'unsigned-byte-32 'unsigned-reg))
79       (my-make-wired-tn ptype reg-sc (result-reg-offset num-results)))))
80
81 (define-alien-type-method (system-area-pointer :result-tn) (type state)
82   (declare (ignore type))
83   (let ((num-results (result-state-num-results state)))
84     (setf (result-state-num-results state) (1+ num-results))
85     (my-make-wired-tn 'system-area-pointer 'sap-reg
86                       (result-reg-offset num-results))))
87
88 #!+long-float
89 (define-alien-type-method (long-float :result-tn) (type state)
90   (declare (ignore type))
91   (let ((num-results (result-state-num-results state)))
92     (setf (result-state-num-results state) (1+ num-results))
93     (my-make-wired-tn 'long-float 'long-reg (* num-results 2))))
94
95 (define-alien-type-method (double-float :result-tn) (type state)
96   (declare (ignore type))
97   (let ((num-results (result-state-num-results state)))
98     (setf (result-state-num-results state) (1+ num-results))
99     (my-make-wired-tn 'double-float 'double-reg (* num-results 2))))
100
101 (define-alien-type-method (single-float :result-tn) (type state)
102   (declare (ignore type))
103   (let ((num-results (result-state-num-results state)))
104     (setf (result-state-num-results state) (1+ num-results))
105     (my-make-wired-tn 'single-float 'single-reg (* num-results 2))))
106
107 (define-alien-type-method (values :result-tn) (type state)
108   (let ((values (alien-values-type-values type)))
109     (when (> (length values) 2)
110       (error "Too many result values from c-call."))
111     (mapcar (lambda (type)
112               (invoke-alien-type-method :result-tn type state))
113             values)))
114
115 (!def-vm-support-routine make-call-out-tns (type)
116   (let ((arg-state (make-arg-state)))
117     (collect ((arg-tns))
118       (dolist (arg-type (alien-fun-type-arg-types type))
119         (arg-tns (invoke-alien-type-method :arg-tn arg-type arg-state)))
120       (values (my-make-wired-tn 'positive-fixnum 'any-reg esp-offset)
121               (* (arg-state-stack-frame-size arg-state) n-word-bytes)
122               (arg-tns)
123               (invoke-alien-type-method :result-tn
124                                         (alien-fun-type-result-type type)
125                                         (make-result-state))))))
126
127
128 (deftransform %alien-funcall ((function type &rest args) * * :node node)
129   (aver (sb!c::constant-lvar-p type))
130   (let* ((type (sb!c::lvar-value type))
131          (env (sb!c::node-lexenv node))
132          (arg-types (alien-fun-type-arg-types type))
133          (result-type (alien-fun-type-result-type type)))
134     (aver (= (length arg-types) (length args)))
135     (if (or (some #'(lambda (type)
136                       (and (alien-integer-type-p type)
137                            (> (sb!alien::alien-integer-type-bits type) 32)))
138                   arg-types)
139             (and (alien-integer-type-p result-type)
140                  (> (sb!alien::alien-integer-type-bits result-type) 32)))
141         (collect ((new-args) (lambda-vars) (new-arg-types))
142           (dolist (type arg-types)
143             (let ((arg (gensym)))
144               (lambda-vars arg)
145               (cond ((and (alien-integer-type-p type)
146                           (> (sb!alien::alien-integer-type-bits type) 32))
147                      (new-args `(logand ,arg #xffffffff))
148                      (new-args `(ash ,arg -32))
149                      (new-arg-types (parse-alien-type '(unsigned 32) env))
150                      (if (alien-integer-type-signed type)
151                          (new-arg-types (parse-alien-type '(signed 32) env))
152                          (new-arg-types (parse-alien-type '(unsigned 32) env))))
153                     (t
154                      (new-args arg)
155                      (new-arg-types type)))))
156           (cond ((and (alien-integer-type-p result-type)
157                       (> (sb!alien::alien-integer-type-bits result-type) 32))
158                  (let ((new-result-type
159                         (let ((sb!alien::*values-type-okay* t))
160                           (parse-alien-type
161                            (if (alien-integer-type-signed result-type)
162                                '(values (unsigned 32) (signed 32))
163                                '(values (unsigned 32) (unsigned 32)))
164                            env))))
165                    `(lambda (function type ,@(lambda-vars))
166                       (declare (ignore type))
167                       (multiple-value-bind (low high)
168                           (%alien-funcall function
169                                           ',(make-alien-fun-type
170                                              :arg-types (new-arg-types)
171                                              :result-type new-result-type)
172                                           ,@(new-args))
173                         (logior low (ash high 32))))))
174                 (t
175                  `(lambda (function type ,@(lambda-vars))
176                     (declare (ignore type))
177                     (%alien-funcall function
178                                     ',(make-alien-fun-type
179                                        :arg-types (new-arg-types)
180                                        :result-type result-type)
181                                     ,@(new-args))))))
182         (sb!c::give-up-ir1-transform))))
183
184 (define-vop (foreign-symbol-sap)
185   (:translate foreign-symbol-sap)
186   (:policy :fast-safe)
187   (:args)
188   (:arg-types (:constant simple-string))
189   (:info foreign-symbol)
190   (:results (res :scs (sap-reg)))
191   (:result-types system-area-pointer)
192   (:generator 2
193    (inst lea res (make-fixup foreign-symbol :foreign))))
194
195 #!+linkage-table
196 (define-vop (foreign-symbol-dataref-sap)
197   (:translate foreign-symbol-dataref-sap)
198   (:policy :fast-safe)
199   (:args)
200   (:arg-types (:constant simple-string))
201   (:info foreign-symbol)
202   (:results (res :scs (sap-reg)))
203   (:result-types system-area-pointer)
204   (:generator 2
205    (inst mov res (make-fixup foreign-symbol :foreign-dataref))))
206
207 (define-vop (call-out)
208   (:args (function :scs (sap-reg))
209          (args :more t))
210   (:results (results :more t))
211   (:temporary (:sc unsigned-reg :offset eax-offset
212                    :from :eval :to :result) eax)
213   (:temporary (:sc unsigned-reg :offset ecx-offset
214                    :from :eval :to :result) ecx)
215   (:temporary (:sc unsigned-reg :offset edx-offset
216                    :from :eval :to :result) edx)
217   (:node-var node)
218   (:vop-var vop)
219   (:save-p t)
220   (:ignore args ecx edx)
221   (:generator 0
222     (cond ((policy node (> space speed))
223            (move eax function)
224            (inst call (make-fixup "call_into_c" :foreign)))
225           (t
226            ;; Setup the NPX for C; all the FP registers need to be
227            ;; empty; pop them all.
228            (dotimes (i 8)
229              (inst fstp fr0-tn))
230
231            #!+win32 (inst cld)
232
233            (inst call function)
234            ;; To give the debugger a clue. XX not really internal-error?
235            (note-this-location vop :internal-error)
236
237            ;; Restore the NPX for lisp; ensure no regs are empty
238            (dotimes (i 7)
239              (inst fldz))
240
241            (if (and results
242                     (location= (tn-ref-tn results) fr0-tn))
243                ;; The return result is in fr0.
244                (inst fxch fr7-tn) ; move the result back to fr0
245                (inst fldz)) ; insure no regs are empty
246            ))))
247
248 ;;; While SBCL uses the FPU in 53-bit mode, most C libraries assume that
249 ;;; the FPU is in 64-bit mode. So we change the FPU mode to 64-bit with
250 ;;; the SET-FPU-WORD-FOR-C VOP before calling out to C and set it back
251 ;;; to 53-bit mode after coming back using the SET-FPU-WORD-FOR-LISP VOP.
252 (define-vop (set-fpu-word-for-c)
253   (:node-var node)
254   (:generator 0
255     (when (policy node (= sb!c::float-accuracy 3))
256       (inst sub esp-tn 4)
257       (inst fnstcw (make-ea :word :base esp-tn))
258       (inst wait)
259       (inst or (make-ea :word :base esp-tn) #x300)
260       (inst fldcw (make-ea :word :base esp-tn))
261       (inst wait))))
262
263 (define-vop (set-fpu-word-for-lisp)
264   (:node-var node)
265   (:generator 0
266     (when (policy node (= sb!c::float-accuracy 3))
267       (inst fnstcw (make-ea :word :base esp-tn))
268       (inst wait)
269       (inst and (make-ea :word :base esp-tn) #xfeff)
270       (inst fldcw (make-ea :word :base esp-tn))
271       (inst wait)
272       (inst add esp-tn 4))))
273
274 (define-vop (alloc-number-stack-space)
275   (:info amount)
276   (:results (result :scs (sap-reg any-reg)))
277   (:generator 0
278     (aver (location= result esp-tn))
279     (unless (zerop amount)
280       (let ((delta (logandc2 (+ amount 3) 3)))
281         (inst sub esp-tn delta)))
282     (move result esp-tn)))
283
284 (define-vop (dealloc-number-stack-space)
285   (:info amount)
286   (:generator 0
287     (unless (zerop amount)
288       (let ((delta (logandc2 (+ amount 3) 3)))
289         (inst add esp-tn delta)))))
290
291 (define-vop (alloc-alien-stack-space)
292   (:info amount)
293   #!+sb-thread (:temporary (:sc unsigned-reg) temp)
294   (:results (result :scs (sap-reg any-reg)))
295   #!+sb-thread
296   (:generator 0
297     (aver (not (location= result esp-tn)))
298     (unless (zerop amount)
299       (let ((delta (logandc2 (+ amount 3) 3)))
300         (inst mov temp
301               (make-ea :dword
302                        :disp (+ nil-value
303                                 (static-symbol-offset '*alien-stack*)
304                                 (ash symbol-tls-index-slot word-shift)
305                                 (- other-pointer-lowtag))))
306         (inst fs-segment-prefix)
307         (inst sub (make-ea :dword :scale 1 :index temp) delta)))
308     (load-tl-symbol-value result *alien-stack*))
309   #!-sb-thread
310   (:generator 0
311     (aver (not (location= result esp-tn)))
312     (unless (zerop amount)
313       (let ((delta (logandc2 (+ amount 3) 3)))
314         (inst sub (make-ea :dword
315                            :disp (+ nil-value
316                                     (static-symbol-offset '*alien-stack*)
317                                     (ash symbol-value-slot word-shift)
318                                     (- other-pointer-lowtag)))
319               delta)))
320     (load-symbol-value result *alien-stack*)))
321
322 (define-vop (dealloc-alien-stack-space)
323   (:info amount)
324   #!+sb-thread (:temporary (:sc unsigned-reg) temp)
325   #!+sb-thread
326   (:generator 0
327     (unless (zerop amount)
328       (let ((delta (logandc2 (+ amount 3) 3)))
329         (inst mov temp
330               (make-ea :dword
331                            :disp (+ nil-value
332                                     (static-symbol-offset '*alien-stack*)
333                                 (ash symbol-tls-index-slot word-shift)
334                                 (- other-pointer-lowtag))))
335         (inst fs-segment-prefix)
336         (inst add (make-ea :dword :scale 1 :index temp) delta))))
337   #!-sb-thread
338   (:generator 0
339     (unless (zerop amount)
340       (let ((delta (logandc2 (+ amount 3) 3)))
341         (inst add (make-ea :dword
342                            :disp (+ nil-value
343                                     (static-symbol-offset '*alien-stack*)
344                                     (ash symbol-value-slot word-shift)
345                                     (- other-pointer-lowtag)))
346               delta)))))
347
348 ;;; these are not strictly part of the c-call convention, but are
349 ;;; needed for the WITH-PRESERVED-POINTERS macro used for "locking
350 ;;; down" lisp objects so that GC won't move them while foreign
351 ;;; functions go to work.
352
353 (define-vop (push-word-on-c-stack)
354     (:translate push-word-on-c-stack)
355   (:args (val :scs (sap-reg)))
356   (:policy :fast-safe)
357   (:arg-types system-area-pointer)
358   (:generator 2
359     (inst push val)))
360
361 (define-vop (pop-words-from-c-stack)
362     (:translate pop-words-from-c-stack)
363   (:args)
364   (:arg-types (:constant (unsigned-byte 29)))
365   (:info number)
366   (:policy :fast-safe)
367   (:generator 2
368     (inst add esp-tn (fixnumize number))))
369
370 #-sb-xc-host
371 (defun alien-callback-accessor-form (type sp offset)
372   `(deref (sap-alien (sap+ ,sp ,offset) (* ,type))))
373
374 #-sb-xc-host
375 (defun alien-callback-assembler-wrapper (index return-type arg-types)
376   "Cons up a piece of code which calls call-callback with INDEX and a
377 pointer to the arguments."
378   (declare (ignore arg-types))
379   (let* ((segment (make-segment))
380          (eax eax-tn)
381          (edx edx-tn)
382          (ebp ebp-tn)
383          (esp esp-tn)
384          ([ebp-8] (make-ea :dword :base ebp :disp -8))
385          ([ebp-4] (make-ea :dword :base ebp :disp -4)))
386     (assemble (segment)
387               (inst push ebp)                       ; save old frame pointer
388               (inst mov  ebp esp)                   ; establish new frame
389               (inst mov  eax esp)                   ;
390               (inst sub  eax 8)                     ; place for result
391               (inst push eax)                       ; arg2
392               (inst add  eax 16)                    ; arguments
393               (inst push eax)                       ; arg1
394               (inst push (ash index 2))             ; arg0
395
396               ;; Indirect the access to ENTER-ALIEN-CALLBACK through
397               ;; the symbol-value slot of SB-ALIEN::*ENTER-ALIEN-CALLBACK*
398               ;; to ensure it'll work even if the GC moves ENTER-ALIEN-CALLBACK.
399               ;; Skip any SB-THREAD TLS magic, since we don't expecte anyone
400               ;; to rebind the variable. -- JES, 2006-01-01
401               (inst mov eax (+ nil-value (static-symbol-offset
402                                           'sb!alien::*enter-alien-callback*)))
403               (loadw eax eax symbol-value-slot other-pointer-lowtag)
404               (inst push eax) ; function
405               (inst mov  eax (foreign-symbol-address "funcall3"))
406               (inst call eax)
407               ;; now put the result into the right register
408               (cond
409                 ((and (alien-integer-type-p return-type)
410                       (eql (alien-type-bits return-type) 64))
411                  (inst mov eax [ebp-8])
412                  (inst mov edx [ebp-4]))
413                 ((or (alien-integer-type-p return-type)
414                      (alien-pointer-type-p return-type)
415                      (alien-type-= #.(parse-alien-type 'system-area-pointer nil)
416                                    return-type))
417                  (inst mov eax [ebp-8]))
418                 ((alien-single-float-type-p return-type)
419                  (inst fld  [ebp-8]))
420                 ((alien-double-float-type-p return-type)
421                  (inst fldd [ebp-8]))
422                 ((alien-void-type-p return-type))
423                 (t
424                  (error "unrecognized alien type: ~A" return-type)))
425               (inst mov esp ebp)                   ; discard frame
426               (inst pop ebp)                       ; restore frame pointer
427               (inst ret))
428     (finalize-segment segment)
429     ;; Now that the segment is done, convert it to a static
430     ;; vector we can point foreign code to.
431     (let ((buffer (sb!assem::segment-buffer segment)))
432       (make-static-vector (length buffer)
433                           :element-type '(unsigned-byte 8)
434                           :initial-contents buffer))))