1.0.23.37: more CLOS and classoid thread safety
[sbcl/tcr.git] / src / assembly / alpha / arith.lisp
blob52f02652206270364b30a9c4c4a4e80f4baa2f0c
1 ;;;; stuff to handle simple cases for generic arithmetic
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-assembly-routine (generic-+
15 (:cost 10)
16 (:return-style :full-call)
17 (:translate +)
18 (:policy :safe)
19 (:save-p t))
20 ((:arg x (descriptor-reg any-reg) a0-offset)
21 (:arg y (descriptor-reg any-reg) a1-offset)
23 (:res res (descriptor-reg any-reg) a0-offset)
25 (:temp temp non-descriptor-reg nl0-offset)
26 (:temp temp2 non-descriptor-reg nl1-offset)
27 (:temp temp3 non-descriptor-reg nl2-offset)
28 (:temp lip interior-reg lip-offset)
29 (:temp lra descriptor-reg lra-offset)
30 (:temp nargs any-reg nargs-offset)
31 (:temp ocfp any-reg ocfp-offset))
32 (inst and x 3 temp)
33 (inst bne temp DO-STATIC-FUN)
34 (inst and y 3 temp)
35 (inst bne temp DO-STATIC-FUN)
36 (inst addq x y res)
38 ; Check whether we need a bignum.
39 (inst sra res 31 temp)
40 (inst beq temp DONE)
41 (inst not temp temp)
42 (inst beq temp DONE)
43 (inst sra res 2 temp3)
45 ; from move-from-signed
46 (inst li 2 temp2)
47 (inst sra temp3 31 temp)
48 (inst cmoveq temp 1 temp2)
49 (inst not temp temp)
50 (inst cmoveq temp 1 temp2)
51 (inst sll temp2 n-widetag-bits temp2)
52 (inst bis temp2 bignum-widetag temp2)
54 (pseudo-atomic (:extra (pad-data-block (+ bignum-digits-offset 3)))
55 (inst bis alloc-tn other-pointer-lowtag res)
56 (storew temp2 res 0 other-pointer-lowtag)
57 (storew temp3 res bignum-digits-offset other-pointer-lowtag)
58 (inst srl temp3 32 temp)
59 (storew temp res (1+ bignum-digits-offset) other-pointer-lowtag))
60 DONE
61 (lisp-return lra lip :offset 2)
63 DO-STATIC-FUN
64 (inst ldl lip (static-fun-offset 'two-arg-+) null-tn)
65 (inst li (fixnumize 2) nargs)
66 (inst move cfp-tn ocfp)
67 (inst move csp-tn cfp-tn)
68 (inst jmp zero-tn lip))
71 (define-assembly-routine (generic--
72 (:cost 10)
73 (:return-style :full-call)
74 (:translate -)
75 (:policy :safe)
76 (:save-p t))
77 ((:arg x (descriptor-reg any-reg) a0-offset)
78 (:arg y (descriptor-reg any-reg) a1-offset)
80 (:res res (descriptor-reg any-reg) a0-offset)
82 (:temp temp non-descriptor-reg nl0-offset)
83 (:temp temp2 non-descriptor-reg nl1-offset)
84 (:temp temp3 non-descriptor-reg nl2-offset)
85 (:temp lip interior-reg lip-offset)
86 (:temp lra descriptor-reg lra-offset)
87 (:temp nargs any-reg nargs-offset)
88 (:temp ocfp any-reg ocfp-offset))
89 (inst and x 3 temp)
90 (inst bne temp DO-STATIC-FUN)
91 (inst and y 3 temp)
92 (inst bne temp DO-STATIC-FUN)
93 (inst subq x y res)
95 ; Check whether we need a bignum.
96 (inst sra res 31 temp)
97 (inst beq temp DONE)
98 (inst not temp temp)
99 (inst beq temp DONE)
100 (inst sra res 2 temp3)
102 ; from move-from-signed
103 (inst li 2 temp2)
104 (inst sra temp3 31 temp)
105 (inst cmoveq temp 1 temp2)
106 (inst not temp temp)
107 (inst cmoveq temp 1 temp2)
108 (inst sll temp2 n-widetag-bits temp2)
109 (inst bis temp2 bignum-widetag temp2)
111 (pseudo-atomic (:extra (pad-data-block (+ bignum-digits-offset 3)))
112 (inst bis alloc-tn other-pointer-lowtag res)
113 (storew temp2 res 0 other-pointer-lowtag)
114 (storew temp3 res bignum-digits-offset other-pointer-lowtag)
115 (inst srl temp3 32 temp)
116 (storew temp res (1+ bignum-digits-offset) other-pointer-lowtag))
117 DONE
118 (lisp-return lra lip :offset 2)
120 DO-STATIC-FUN
121 (inst ldl lip (static-fun-offset 'two-arg--) null-tn)
122 (inst li (fixnumize 2) nargs)
123 (inst move cfp-tn ocfp)
124 (inst move csp-tn cfp-tn)
125 (inst jmp zero-tn lip))
128 (define-assembly-routine (generic-*
129 (:cost 25)
130 (:return-style :full-call)
131 (:translate *)
132 (:policy :safe)
133 (:save-p t))
134 ((:arg x (descriptor-reg any-reg) a0-offset)
135 (:arg y (descriptor-reg any-reg) a1-offset)
137 (:res res (descriptor-reg any-reg) a0-offset)
139 (:temp temp non-descriptor-reg nl0-offset)
140 (:temp lo non-descriptor-reg nl1-offset)
141 (:temp hi non-descriptor-reg nl2-offset)
142 (:temp temp2 non-descriptor-reg nl3-offset)
143 (:temp lip interior-reg lip-offset)
144 (:temp lra descriptor-reg lra-offset)
145 (:temp nargs any-reg nargs-offset)
146 (:temp ocfp any-reg ocfp-offset))
147 ;; If either arg is not a fixnum, call the static function.
148 (inst and x 3 temp)
149 (inst bne temp DO-STATIC-FUN)
150 (inst and y 3 temp)
151 (inst bne temp DO-STATIC-FUN)
153 ;; Remove the tag from one arg so that the result will have the
154 ;; correct fixnum tag.
155 (inst sra x 2 temp)
156 (inst mulq temp y lo)
157 (inst sra lo 32 hi)
158 (inst sll lo 32 res)
159 (inst sra res 32 res)
160 ;; Check to see if the result will fit in a fixnum. (I.e. the high
161 ;; word is just 32 copies of the sign bit of the low word).
162 (inst sra res 31 temp)
163 (inst xor hi temp temp)
164 (inst beq temp DONE)
165 ;; Shift the double word hi:res down two bits into hi:low to get rid
166 ;; of the fixnum tag.
167 (inst sra lo 2 lo)
168 (inst sra lo 32 hi)
170 ;; Do we need one word or two? Assume two.
171 (inst li (logior (ash 2 n-widetag-bits) bignum-widetag) temp2)
172 (inst sra lo 31 temp)
173 (inst xor temp hi temp)
174 (inst bne temp two-words)
176 ;; Only need one word, fix the header.
177 (inst li (logior (ash 1 n-widetag-bits) bignum-widetag) temp2)
178 ;; Allocate one word.
179 (pseudo-atomic (:extra (pad-data-block (1+ bignum-digits-offset)))
180 (inst bis alloc-tn other-pointer-lowtag res)
181 (storew temp2 res 0 other-pointer-lowtag))
182 ;; Store one word
183 (storew lo res bignum-digits-offset other-pointer-lowtag)
184 ;; Out of here
185 (lisp-return lra lip :offset 2)
187 TWO-WORDS
188 ;; Allocate two words.
189 (pseudo-atomic (:extra (pad-data-block (+ 2 bignum-digits-offset)))
190 (inst bis alloc-tn other-pointer-lowtag res)
191 (storew temp2 res 0 other-pointer-lowtag))
192 ;; Store two words.
193 (storew lo res bignum-digits-offset other-pointer-lowtag)
194 (storew hi res (1+ bignum-digits-offset) other-pointer-lowtag)
195 ;; out of here
196 (lisp-return lra lip :offset 2)
198 DO-STATIC-FUN
199 (inst ldl lip (static-fun-offset 'two-arg-*) null-tn)
200 (inst li (fixnumize 2) nargs)
201 (inst move cfp-tn ocfp)
202 (inst move csp-tn cfp-tn)
203 (inst jmp zero-tn lip)
205 DONE)
208 ;;;; division
210 (define-assembly-routine (signed-truncate
211 (:note "(signed-byte 64) truncate")
212 (:cost 60)
213 (:policy :fast-safe)
214 (:translate truncate)
215 (:arg-types signed-num signed-num)
216 (:result-types signed-num signed-num))
218 ((:arg dividend signed-reg nl0-offset)
219 (:arg divisor signed-reg nl1-offset)
221 (:res quo signed-reg nl2-offset)
222 (:res rem signed-reg nl3-offset)
224 (:temp quo-sign signed-reg nl5-offset)
225 (:temp rem-sign signed-reg nargs-offset)
226 (:temp temp1 non-descriptor-reg nl4-offset))
228 (let ((error (generate-error-code nil division-by-zero-error
229 dividend divisor)))
230 (inst beq divisor error))
232 (inst xor dividend divisor quo-sign)
233 (inst move dividend rem-sign)
234 (let ((label (gen-label)))
235 (inst bge dividend label)
236 (inst subq zero-tn dividend dividend)
237 (emit-label label))
238 (let ((label (gen-label)))
239 (inst bge divisor label)
240 (inst subq zero-tn divisor divisor)
241 (emit-label label))
242 (inst move zero-tn rem)
243 (inst move zero-tn quo)
245 (dotimes (i 64)
246 (inst srl dividend 63 temp1)
247 (inst sll rem 1 rem)
248 (inst bis temp1 rem rem)
249 (inst cmple divisor rem temp1)
250 (inst sll quo 1 quo)
251 (inst bis temp1 quo quo)
252 (inst sll dividend 1 dividend)
253 (inst subq temp1 1 temp1)
254 (inst zap divisor temp1 temp1)
255 (inst subq rem temp1 rem))
257 (let ((label (gen-label)))
258 ;; If the quo-sign is negative, we need to negate quo.
259 (inst bge quo-sign label)
260 (inst subq zero-tn quo quo)
261 (emit-label label))
262 (let ((label (gen-label)))
263 ;; If the rem-sign is negative, we need to negate rem.
264 (inst bge rem-sign label)
265 (inst subq zero-tn rem rem)
266 (emit-label label)))
269 ;;;; comparison routines
271 (macrolet
272 ((define-cond-assem-rtn (name translate static-fn cmp not-p)
273 `(define-assembly-routine (,name
274 (:cost 10)
275 (:return-style :full-call)
276 (:policy :safe)
277 (:translate ,translate)
278 (:save-p t))
279 ((:arg x (descriptor-reg any-reg) a0-offset)
280 (:arg y (descriptor-reg any-reg) a1-offset)
282 (:res res descriptor-reg a0-offset)
284 (:temp temp non-descriptor-reg nl0-offset)
285 (:temp lip interior-reg lip-offset)
286 (:temp nargs any-reg nargs-offset)
287 (:temp ocfp any-reg ocfp-offset))
288 (inst and x 3 temp)
289 (inst bne temp DO-STATIC-FN)
290 (inst and y 3 temp)
291 (inst beq temp DO-COMPARE)
293 DO-STATIC-FN
294 (inst ldl lip (static-fun-offset ',static-fn) null-tn)
295 (inst li (fixnumize 2) nargs)
296 (inst move cfp-tn ocfp)
297 (inst move csp-tn cfp-tn)
298 (inst jmp zero-tn lip)
300 DO-COMPARE
301 ,cmp
302 (inst move null-tn res)
303 (inst ,(if not-p 'bne 'beq) temp done)
304 (load-symbol res t)
305 DONE)))
307 (define-cond-assem-rtn generic-< < two-arg-< (inst cmplt x y temp) nil)
308 (define-cond-assem-rtn generic-> > two-arg-> (inst cmplt y x temp) nil))
311 (define-assembly-routine (generic-eql
312 (:cost 10)
313 (:return-style :full-call)
314 (:policy :safe)
315 (:translate eql)
316 (:save-p t))
317 ((:arg x (descriptor-reg any-reg) a0-offset)
318 (:arg y (descriptor-reg any-reg) a1-offset)
320 (:res res descriptor-reg a0-offset)
322 (:temp temp non-descriptor-reg nl0-offset)
323 (:temp lip interior-reg lip-offset)
324 (:temp lra descriptor-reg lra-offset)
325 (:temp nargs any-reg nargs-offset)
326 (:temp ocfp any-reg ocfp-offset))
327 (inst cmpeq x y temp)
328 (inst bne temp RETURN-T)
329 (inst and x 3 temp)
330 (inst beq temp RETURN-NIL)
331 (inst and y 3 temp)
332 (inst bne temp DO-STATIC-FN)
334 RETURN-NIL
335 (inst move null-tn res)
336 (lisp-return lra lip :offset 2)
338 DO-STATIC-FN
339 (inst ldl lip (static-fun-offset 'eql) null-tn)
340 (inst li (fixnumize 2) nargs)
341 (inst move cfp-tn ocfp)
342 (inst move csp-tn cfp-tn)
343 (inst jmp zero-tn lip)
345 RETURN-T
346 (load-symbol res t))
348 (define-assembly-routine (generic-=
349 (:cost 10)
350 (:return-style :full-call)
351 (:policy :safe)
352 (:translate =)
353 (:save-p t))
354 ((:arg x (descriptor-reg any-reg) a0-offset)
355 (:arg y (descriptor-reg any-reg) a1-offset)
357 (:res res descriptor-reg a0-offset)
359 (:temp temp non-descriptor-reg nl0-offset)
360 (:temp lip interior-reg lip-offset)
361 (:temp lra descriptor-reg lra-offset)
362 (:temp nargs any-reg nargs-offset)
363 (:temp ocfp any-reg ocfp-offset))
364 (inst and x 3 temp)
365 (inst bne temp DO-STATIC-FN)
366 (inst and y 3 temp)
367 (inst bne temp DO-STATIC-FN)
368 (inst cmpeq x y temp)
369 (inst bne temp RETURN-T)
371 (inst move null-tn res)
372 (lisp-return lra lip :offset 2)
374 DO-STATIC-FN
375 (inst ldl lip (static-fun-offset 'two-arg-=) null-tn)
376 (inst li (fixnumize 2) nargs)
377 (inst move cfp-tn ocfp)
378 (inst move csp-tn cfp-tn)
379 (inst jmp zero-tn lip)
381 RETURN-T
382 (load-symbol res t))
384 (define-assembly-routine (generic-/=
385 (:cost 10)
386 (:return-style :full-call)
387 (:policy :safe)
388 (:translate /=)
389 (:save-p t))
390 ((:arg x (descriptor-reg any-reg) a0-offset)
391 (:arg y (descriptor-reg any-reg) a1-offset)
393 (:res res descriptor-reg a0-offset)
395 (:temp temp non-descriptor-reg nl0-offset)
396 (:temp lip interior-reg lip-offset)
397 (:temp lra descriptor-reg lra-offset)
398 (:temp nargs any-reg nargs-offset)
399 (:temp ocfp any-reg ocfp-offset))
400 (inst and x 3 temp)
401 (inst bne temp DO-STATIC-FN)
402 (inst and y 3 temp)
403 (inst bne temp DO-STATIC-FN)
404 (inst cmpeq x y temp)
405 (inst bne temp RETURN-NIL)
407 (load-symbol res t)
408 (lisp-return lra lip :offset 2)
410 DO-STATIC-FN
411 (inst ldl lip (static-fun-offset 'two-arg-/=) null-tn)
412 (inst li (fixnumize 2) nargs)
413 (inst move cfp-tn ocfp)
414 (inst move csp-tn cfp-tn)
415 (inst jmp zero-tn lip)
417 RETURN-NIL
418 (inst move null-tn res))