Merged sbcl-1.0.14 with the sb-simd 1.3 patches
[sbcl/simd.git] / src / compiler / x86-64 / static-fn.lisp
blobae940611d55290752f6e5eff66314890b7eae200
1 ;;;; the VOPs and macro magic required to call static functions
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.
12 (in-package "SB!VM")
14 (define-vop (static-fun-template)
15 (:save-p t)
16 (:policy :safe)
17 (:variant-vars function)
18 (:vop-var vop)
19 (:node-var node)
20 (:temporary (:sc unsigned-reg :offset ebx-offset
21 :from (:eval 0) :to (:eval 2)) ebx)
22 (:temporary (:sc unsigned-reg :offset ecx-offset
23 :from (:eval 0) :to (:eval 2)) ecx))
25 (eval-when (#-sb-xc :compile-toplevel :load-toplevel :execute)
27 (defun static-fun-template-name (num-args num-results)
28 (intern (format nil "~:@(~R-arg-~R-result-static-fun~)"
29 num-args num-results)))
31 (defun moves (dst src)
32 (collect ((moves))
33 (do ((dst dst (cdr dst))
34 (src src (cdr src)))
35 ((or (null dst) (null src)))
36 (moves `(move ,(car dst) ,(car src))))
37 (moves)))
39 (defun static-fun-template-vop (num-args num-results)
40 (unless (and (<= num-args register-arg-count)
41 (<= num-results register-arg-count))
42 (error "either too many args (~W) or too many results (~W); max = ~W"
43 num-args num-results register-arg-count))
44 (let ((num-temps (max num-args num-results)))
45 (collect ((temp-names) (temps) (arg-names) (args) (result-names) (results))
46 (dotimes (i num-results)
47 (let ((result-name (intern (format nil "RESULT-~D" i))))
48 (result-names result-name)
49 (results `(,result-name :scs (any-reg descriptor-reg)))))
50 (dotimes (i num-temps)
51 (let ((temp-name (intern (format nil "TEMP-~D" i))))
52 (temp-names temp-name)
53 (temps `(:temporary (:sc descriptor-reg
54 :offset ,(nth i *register-arg-offsets*)
55 :from ,(if (< i num-args)
56 `(:argument ,i)
57 '(:eval 1))
58 :to ,(if (< i num-results)
59 `(:result ,i)
60 '(:eval 1))
61 ,@(when (< i num-results)
62 `(:target ,(nth i (result-names)))))
63 ,temp-name))))
64 (dotimes (i num-args)
65 (let ((arg-name (intern (format nil "ARG-~D" i))))
66 (arg-names arg-name)
67 (args `(,arg-name
68 :scs (any-reg descriptor-reg)
69 :target ,(nth i (temp-names))))))
70 `(define-vop (,(static-fun-template-name num-args num-results)
71 static-fun-template)
72 (:args ,@(args))
73 ,@(temps)
74 (:temporary (:sc unsigned-reg) call-target)
75 (:results ,@(results))
76 (:generator ,(+ 50 num-args num-results)
77 ,@(moves (temp-names) (arg-names))
79 ;; If speed not more important than size, duplicate the
80 ;; effect of the ENTER with discrete instructions. Takes
81 ;; 2+1+3+2=8 bytes as opposed to 4+3=7 bytes.
82 (cond ((policy node (>= speed space))
83 (inst mov ebx rsp-tn)
84 ;; Save the old-fp
85 (inst push rbp-tn)
86 ;; Ensure that at least three slots are available; one
87 ;; above, two more needed.
88 (inst sub rsp-tn (fixnumize 2))
89 (inst mov rbp-tn ebx))
91 (inst enter (fixnumize 2))
92 ;; The enter instruction pushes EBP and then copies
93 ;; ESP into EBP. We want the new EBP to be the
94 ;; original ESP, so we fix it up afterwards.
95 (inst add rbp-tn (fixnumize 1))))
97 ,(if (zerop num-args)
98 '(inst xor ecx ecx)
99 `(inst mov ecx (fixnumize ,num-args)))
101 (note-this-location vop :call-site)
102 ;; Old CMU CL comment:
103 ;; STATIC-FUN-OFFSET gives the offset from the start of
104 ;; the NIL object to the static function FDEFN and has the
105 ;; low tag of 1 added. When the NIL symbol value with its
106 ;; low tag of 3 is added the resulting value points to the
107 ;; raw address slot of the fdefn (at +4).
108 ;; FIXME: Since the fork from CMU CL, we've swapped
109 ;; FUN-POINTER-LOWTAG and INSTANCE-POINTER-LOWTAG, so the
110 ;; text above is no longer right. Mysteriously, things still
111 ;; work. It would be good to explain why. (Is this code no
112 ;; longer executed? Does it not depend on the
113 ;; 1+3=4=fdefn_raw_address_offset relationship above?
114 ;; Is something else going on?)
116 ;; Need to load the target address into a register, since
117 ;; immediate call arguments are just a 32-bit displacement,
118 ;; which obviously can't work with >4G spaces.
119 (inst mov call-target
120 (make-ea :qword
121 :disp (+ nil-value (static-fun-offset function))))
122 (inst call call-target)
123 ,(collect ((bindings) (links))
124 (do ((temp (temp-names) (cdr temp))
125 (name 'values (gensym))
126 (prev nil name)
127 (i 0 (1+ i)))
128 ((= i num-results))
129 (bindings `(,name
130 (make-tn-ref ,(car temp) nil)))
131 (when prev
132 (links `(setf (tn-ref-across ,prev) ,name))))
133 `(let ,(bindings)
134 ,@(links)
135 (default-unknown-values
137 ,(if (zerop num-results) nil 'values)
138 ,num-results)))
139 ,@(moves (result-names) (temp-names)))))))
141 ) ; EVAL-WHEN
143 (macrolet ((frob (num-args num-res)
144 (static-fun-template-vop (eval num-args) (eval num-res))))
145 (frob 0 1)
146 (frob 1 1)
147 (frob 2 1)
148 (frob 3 1))
150 (defmacro define-static-fun (name args &key (results '(x)) translate
151 policy cost arg-types result-types)
152 `(define-vop (,name
153 ,(static-fun-template-name (length args)
154 (length results)))
155 (:variant ',name)
156 (:note ,(format nil "static-fun ~@(~S~)" name))
157 ,@(when translate
158 `((:translate ,translate)))
159 ,@(when policy
160 `((:policy ,policy)))
161 ,@(when cost
162 `((:generator-cost ,cost)))
163 ,@(when arg-types
164 `((:arg-types ,@arg-types)))
165 ,@(when result-types
166 `((:result-types ,@result-types)))))