1 ;;;; the VM definition of arithmetic VOPs for the x86-64
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.
15 ;; A fixnum that can be represented in tagged form by a signed 32-bit
16 ;; value and that can therefore be used as an immediate argument of
17 ;; arithmetic machine instructions.
18 (deftype short-tagged-num () '(signed-byte #.(- 32 n-fixnum-tag-bits)))
22 (define-vop (fast-safe-arith-op)
27 (define-vop (fixnum-unop fast-safe-arith-op)
28 (:args (x :scs (any-reg) :target res))
29 (:results (res :scs (any-reg)))
30 (:note "inline fixnum arithmetic")
31 (:arg-types tagged-num)
32 (:result-types tagged-num))
34 (define-vop (signed-unop fast-safe-arith-op)
35 (:args (x :scs (signed-reg) :target res))
36 (:results (res :scs (signed-reg)))
37 (:note "inline (signed-byte 64) arithmetic")
38 (:arg-types signed-num)
39 (:result-types signed-num))
41 (define-vop (fast-negate/fixnum fixnum-unop)
47 (define-vop (fast-negate/signed signed-unop)
53 (define-vop (fast-lognot/fixnum fixnum-unop)
57 (inst xor res (fixnumize -1))))
59 (define-vop (fast-lognot/signed signed-unop)
65 ;;;; binary fixnum operations
67 ;;; Assume that any constant operand is the second arg...
69 (define-vop (fast-fixnum-binop fast-safe-arith-op)
70 (:args (x :target r :scs (any-reg)
71 :load-if (not (and (sc-is x control-stack)
73 (sc-is r control-stack)
75 (y :scs (any-reg control-stack)))
76 (:arg-types tagged-num tagged-num)
77 (:results (r :scs (any-reg) :from (:argument 0)
78 :load-if (not (and (sc-is x control-stack)
80 (sc-is r control-stack)
82 (:result-types tagged-num)
83 (:note "inline fixnum arithmetic"))
85 (define-vop (fast-unsigned-binop fast-safe-arith-op)
86 (:args (x :target r :scs (unsigned-reg)
87 :load-if (not (and (sc-is x unsigned-stack)
88 (sc-is y unsigned-reg)
89 (sc-is r unsigned-stack)
91 (y :scs (unsigned-reg unsigned-stack)))
92 (:arg-types unsigned-num unsigned-num)
93 (:results (r :scs (unsigned-reg) :from (:argument 0)
94 :load-if (not (and (sc-is x unsigned-stack)
95 (sc-is y unsigned-reg)
96 (sc-is r unsigned-stack)
98 (:result-types unsigned-num)
99 (:note "inline (unsigned-byte 64) arithmetic"))
101 (define-vop (fast-signed-binop fast-safe-arith-op)
102 (:args (x :target r :scs (signed-reg)
103 :load-if (not (and (sc-is x signed-stack)
105 (sc-is r signed-stack)
107 (y :scs (signed-reg signed-stack)))
108 (:arg-types signed-num signed-num)
109 (:results (r :scs (signed-reg) :from (:argument 0)
110 :load-if (not (and (sc-is x signed-stack)
112 (sc-is r signed-stack)
114 (:result-types signed-num)
115 (:note "inline (signed-byte 64) arithmetic"))
117 (define-vop (fast-fixnum-binop-c fast-safe-arith-op)
118 (:args (x :target r :scs (any-reg)
119 :load-if (or (not (typep y 'short-tagged-num))
120 (not (sc-is x any-reg control-stack)))))
122 (:arg-types tagged-num (:constant fixnum))
123 (:results (r :scs (any-reg)
124 :load-if (or (not (location= x r))
125 (not (typep y 'short-tagged-num)))))
126 (:result-types tagged-num)
127 (:note "inline fixnum arithmetic"))
129 (define-vop (fast-unsigned-binop-c fast-safe-arith-op)
130 (:args (x :target r :scs (unsigned-reg)
131 :load-if (or (not (typep y '(unsigned-byte 31)))
132 (not (sc-is x unsigned-reg unsigned-stack)))))
134 (:arg-types unsigned-num (:constant (unsigned-byte 64)))
135 (:results (r :scs (unsigned-reg)
136 :load-if (or (not (location= x r))
137 (not (typep y '(unsigned-byte 31))))))
138 (:result-types unsigned-num)
139 (:note "inline (unsigned-byte 64) arithmetic"))
141 (define-vop (fast-signed-binop-c fast-safe-arith-op)
142 (:args (x :target r :scs (signed-reg)
143 :load-if (or (not (typep y '(signed-byte 32)))
144 (not (sc-is x signed-reg signed-stack)))))
146 (:arg-types signed-num (:constant (signed-byte 64)))
147 (:results (r :scs (signed-reg)
148 :load-if (or (not (location= x r))
149 (not (typep y '(signed-byte 32))))))
150 (:result-types signed-num)
151 (:note "inline (signed-byte 64) arithmetic"))
153 (macrolet ((define-binop (translate untagged-penalty op)
155 (define-vop (,(symbolicate "FAST-" translate "/FIXNUM=>FIXNUM")
157 (:translate ,translate)
161 (define-vop (,(symbolicate 'fast- translate '-c/fixnum=>fixnum)
163 (:translate ,translate)
166 (inst ,op r (if (typep y 'short-tagged-num)
168 (register-inline-constant :qword (fixnumize y))))))
169 (define-vop (,(symbolicate "FAST-" translate "/SIGNED=>SIGNED")
171 (:translate ,translate)
172 (:generator ,(1+ untagged-penalty)
175 (define-vop (,(symbolicate 'fast- translate '-c/signed=>signed)
177 (:translate ,translate)
178 (:generator ,untagged-penalty
180 (inst ,op r (if (typep y '(signed-byte 32))
182 (register-inline-constant :qword y)))))
183 (define-vop (,(symbolicate "FAST-"
185 "/UNSIGNED=>UNSIGNED")
187 (:translate ,translate)
188 (:generator ,(1+ untagged-penalty)
191 (define-vop (,(symbolicate 'fast-
193 '-c/unsigned=>unsigned)
194 fast-unsigned-binop-c)
195 (:translate ,translate)
196 (:generator ,untagged-penalty
198 (inst ,op r (if (typep y '(unsigned-byte 31))
200 (register-inline-constant :qword y))))))))
202 ;;(define-binop + 4 add)
203 (define-binop - 4 sub)
204 (define-binop logand 2 and)
205 (define-binop logior 2 or)
206 (define-binop logxor 2 xor))
208 ;;; Special handling of add on the x86; can use lea to avoid a
209 ;;; register load, otherwise it uses add.
210 (define-vop (fast-+/fixnum=>fixnum fast-safe-arith-op)
212 (:args (x :scs (any-reg) :target r
213 :load-if (not (and (sc-is x control-stack)
215 (sc-is r control-stack)
217 (y :scs (any-reg control-stack)))
218 (:arg-types tagged-num tagged-num)
219 (:results (r :scs (any-reg) :from (:argument 0)
220 :load-if (not (and (sc-is x control-stack)
222 (sc-is r control-stack)
224 (:result-types tagged-num)
225 (:note "inline fixnum arithmetic")
227 (cond ((and (sc-is x any-reg) (sc-is y any-reg) (sc-is r any-reg)
228 (not (location= x r)))
229 (inst lea r (make-ea :qword :base x :index y :scale 1)))
234 (define-vop (fast-+-c/fixnum=>fixnum fast-safe-arith-op)
236 (:args (x :target r :scs (any-reg)
237 :load-if (or (not (typep y 'short-tagged-num))
238 (not (sc-is x any-reg control-stack)))))
240 (:arg-types tagged-num (:constant fixnum))
241 (:results (r :scs (any-reg)
242 :load-if (or (not (location= x r))
243 (not (typep y 'short-tagged-num)))))
244 (:result-types tagged-num)
245 (:note "inline fixnum arithmetic")
247 (cond ((and (sc-is x any-reg) (sc-is r any-reg) (not (location= x r))
248 (typep y 'short-tagged-num))
249 (inst lea r (make-ea :qword :base x :disp (fixnumize y))))
250 ((typep y 'short-tagged-num)
252 (inst add r (fixnumize y)))
255 (inst add r (register-inline-constant :qword (fixnumize y)))))))
257 (define-vop (fast-+/signed=>signed fast-safe-arith-op)
259 (:args (x :scs (signed-reg) :target r
260 :load-if (not (and (sc-is x signed-stack)
262 (sc-is r signed-stack)
264 (y :scs (signed-reg signed-stack)))
265 (:arg-types signed-num signed-num)
266 (:results (r :scs (signed-reg) :from (:argument 0)
267 :load-if (not (and (sc-is x signed-stack)
270 (:result-types signed-num)
271 (:note "inline (signed-byte 64) arithmetic")
273 (cond ((and (sc-is x signed-reg) (sc-is y signed-reg) (sc-is r signed-reg)
274 (not (location= x r)))
275 (inst lea r (make-ea :qword :base x :index y :scale 1)))
281 ;;;; Special logand cases: (logand signed unsigned) => unsigned
283 (define-vop (fast-logand/signed-unsigned=>unsigned
284 fast-logand/unsigned=>unsigned)
285 (:args (x :target r :scs (signed-reg)
286 :load-if (not (and (sc-is x signed-stack)
287 (sc-is y unsigned-reg)
288 (sc-is r unsigned-stack)
290 (y :scs (unsigned-reg unsigned-stack)))
291 (:arg-types signed-num unsigned-num))
293 (define-vop (fast-logand-c/signed-unsigned=>unsigned
294 fast-logand-c/unsigned=>unsigned)
295 (:args (x :target r :scs (signed-reg)
296 :load-if (or (not (typep y '(unsigned-byte 31)))
297 (not (sc-is r signed-reg signed-stack)))))
298 (:arg-types signed-num (:constant (unsigned-byte 64))))
300 (define-vop (fast-logand/unsigned-signed=>unsigned
301 fast-logand/unsigned=>unsigned)
302 (:args (x :target r :scs (unsigned-reg)
303 :load-if (not (and (sc-is x unsigned-stack)
305 (sc-is r unsigned-stack)
307 (y :scs (signed-reg signed-stack)))
308 (:arg-types unsigned-num signed-num))
311 (define-vop (fast-+-c/signed=>signed fast-safe-arith-op)
313 (:args (x :target r :scs (signed-reg)
314 :load-if (or (not (typep y '(signed-byte 32)))
315 (not (sc-is r signed-reg signed-stack)))))
317 (:arg-types signed-num (:constant (signed-byte 64)))
318 (:results (r :scs (signed-reg)
319 :load-if (or (not (location= x r))
320 (not (typep y '(signed-byte 32))))))
321 (:result-types signed-num)
322 (:note "inline (signed-byte 64) arithmetic")
324 (cond ((and (sc-is x signed-reg) (sc-is r signed-reg)
325 (not (location= x r))
326 (typep y '(signed-byte 32)))
327 (inst lea r (make-ea :qword :base x :disp y)))
332 ((typep y '(signed-byte 32))
335 (inst add r (register-inline-constant :qword y))))))))
337 (define-vop (fast-+/unsigned=>unsigned fast-safe-arith-op)
339 (:args (x :scs (unsigned-reg) :target r
340 :load-if (not (and (sc-is x unsigned-stack)
341 (sc-is y unsigned-reg)
342 (sc-is r unsigned-stack)
344 (y :scs (unsigned-reg unsigned-stack)))
345 (:arg-types unsigned-num unsigned-num)
346 (:results (r :scs (unsigned-reg) :from (:argument 0)
347 :load-if (not (and (sc-is x unsigned-stack)
348 (sc-is y unsigned-reg)
349 (sc-is r unsigned-stack)
351 (:result-types unsigned-num)
352 (:note "inline (unsigned-byte 64) arithmetic")
354 (cond ((and (sc-is x unsigned-reg) (sc-is y unsigned-reg)
355 (sc-is r unsigned-reg) (not (location= x r)))
356 (inst lea r (make-ea :qword :base x :index y :scale 1)))
361 (define-vop (fast-+-c/unsigned=>unsigned fast-safe-arith-op)
363 (:args (x :target r :scs (unsigned-reg)
364 :load-if (or (not (typep y '(unsigned-byte 31)))
365 (not (sc-is x unsigned-reg unsigned-stack)))))
367 (:arg-types unsigned-num (:constant (unsigned-byte 64)))
368 (:results (r :scs (unsigned-reg)
369 :load-if (or (not (location= x r))
370 (not (typep y '(unsigned-byte 31))))))
371 (:result-types unsigned-num)
372 (:note "inline (unsigned-byte 64) arithmetic")
374 (cond ((and (sc-is x unsigned-reg) (sc-is r unsigned-reg)
375 (not (location= x r))
376 (typep y '(unsigned-byte 31)))
377 (inst lea r (make-ea :qword :base x :disp y)))
382 ((typep y '(unsigned-byte 31))
385 (inst add r (register-inline-constant :qword y))))))))
387 ;;;; multiplication and division
389 (define-vop (fast-*/fixnum=>fixnum fast-safe-arith-op)
391 ;; We need different loading characteristics.
392 (:args (x :scs (any-reg) :target r)
393 (y :scs (any-reg control-stack)))
394 (:arg-types tagged-num tagged-num)
395 (:results (r :scs (any-reg) :from (:argument 0)))
396 (:result-types tagged-num)
397 (:note "inline fixnum arithmetic")
400 (inst sar r n-fixnum-tag-bits)
403 (define-vop (fast-*-c/fixnum=>fixnum fast-safe-arith-op)
405 ;; We need different loading characteristics.
406 (:args (x :scs (any-reg)
407 :load-if (or (not (typep y '(signed-byte 32)))
408 (not (sc-is x any-reg control-stack)))))
410 (:arg-types tagged-num (:constant fixnum))
411 (:results (r :scs (any-reg)))
412 (:result-types tagged-num)
413 (:note "inline fixnum arithmetic")
415 (cond ((typep y '(signed-byte 32))
419 (inst imul r (register-inline-constant :qword y))))))
421 (define-vop (fast-*/signed=>signed fast-safe-arith-op)
423 ;; We need different loading characteristics.
424 (:args (x :scs (signed-reg) :target r)
425 (y :scs (signed-reg signed-stack)))
426 (:arg-types signed-num signed-num)
427 (:results (r :scs (signed-reg) :from (:argument 0)))
428 (:result-types signed-num)
429 (:note "inline (signed-byte 64) arithmetic")
434 (define-vop (fast-*-c/signed=>signed fast-safe-arith-op)
436 ;; We need different loading characteristics.
437 (:args (x :scs (signed-reg)
438 :load-if (or (not (typep y '(signed-byte 32)))
439 (not (sc-is x signed-reg signed-stack)))))
441 (:arg-types signed-num (:constant (signed-byte 64)))
442 (:results (r :scs (signed-reg)))
443 (:result-types signed-num)
444 (:note "inline (signed-byte 64) arithmetic")
446 (cond ((typep y '(signed-byte 32))
450 (inst imul r (register-inline-constant :qword y))))))
452 (define-vop (fast-*/unsigned=>unsigned fast-safe-arith-op)
454 (:args (x :scs (unsigned-reg) :target eax)
455 (y :scs (unsigned-reg unsigned-stack)))
456 (:arg-types unsigned-num unsigned-num)
457 (:temporary (:sc unsigned-reg :offset eax-offset :target r
458 :from (:argument 0) :to :result) eax)
459 (:temporary (:sc unsigned-reg :offset edx-offset
460 :from :eval :to :result) edx)
462 (:results (r :scs (unsigned-reg)))
463 (:result-types unsigned-num)
464 (:note "inline (unsigned-byte 64) arithmetic")
466 (:save-p :compute-only)
472 (define-vop (fast-*-c/unsigned=>unsigned fast-safe-arith-op)
474 (:args (x :scs (unsigned-reg) :target eax))
476 (:arg-types unsigned-num (:constant (unsigned-byte 64)))
477 (:temporary (:sc unsigned-reg :offset eax-offset :target r
478 :from (:argument 0) :to :result) eax)
479 (:temporary (:sc unsigned-reg :offset edx-offset
480 :from :eval :to :result) edx)
482 (:results (r :scs (unsigned-reg)))
483 (:result-types unsigned-num)
484 (:note "inline (unsigned-byte 64) arithmetic")
486 (:save-p :compute-only)
489 (inst mul eax (register-inline-constant :qword y))
493 (define-vop (fast-truncate/fixnum=>fixnum fast-safe-arith-op)
494 (:translate truncate)
495 (:args (x :scs (any-reg) :target eax)
496 (y :scs (any-reg control-stack)))
497 (:arg-types tagged-num tagged-num)
498 (:temporary (:sc signed-reg :offset eax-offset :target quo
499 :from (:argument 0) :to (:result 0)) eax)
500 (:temporary (:sc unsigned-reg :offset edx-offset :target rem
501 :from (:argument 0) :to (:result 1)) edx)
502 (:results (quo :scs (any-reg))
503 (rem :scs (any-reg)))
504 (:result-types tagged-num tagged-num)
505 (:note "inline fixnum arithmetic")
507 (:save-p :compute-only)
509 (let ((zero (generate-error-code vop 'division-by-zero-error x y)))
510 (if (sc-is y any-reg)
511 (inst test y y) ; smaller instruction
517 (if (location= quo eax)
518 (inst shl eax n-fixnum-tag-bits)
519 (if (= n-fixnum-tag-bits 1)
520 (inst lea quo (make-ea :qword :base eax :index eax))
521 (inst lea quo (make-ea :qword :index eax
522 :scale (ash 1 n-fixnum-tag-bits)))))
525 (define-vop (fast-truncate-c/fixnum=>fixnum fast-safe-arith-op)
526 (:translate truncate)
527 (:args (x :scs (any-reg) :target eax))
529 (:arg-types tagged-num (:constant fixnum))
530 (:temporary (:sc signed-reg :offset eax-offset :target quo
531 :from :argument :to (:result 0)) eax)
532 (:temporary (:sc any-reg :offset edx-offset :target rem
533 :from :eval :to (:result 1)) edx)
534 (:temporary (:sc any-reg :from :eval :to :result) y-arg)
535 (:results (quo :scs (any-reg))
536 (rem :scs (any-reg)))
537 (:result-types tagged-num tagged-num)
538 (:note "inline fixnum arithmetic")
540 (:save-p :compute-only)
544 (if (typep y 'short-tagged-num)
545 (inst mov y-arg (fixnumize y))
546 (setf y-arg (register-inline-constant :qword (fixnumize y))))
547 (inst idiv eax y-arg)
548 (if (location= quo eax)
549 (inst shl eax n-fixnum-tag-bits)
550 (if (= n-fixnum-tag-bits 1)
551 (inst lea quo (make-ea :qword :base eax :index eax))
552 (inst lea quo (make-ea :qword :index eax
553 :scale (ash 1 n-fixnum-tag-bits)))))
556 (define-vop (fast-truncate/unsigned=>unsigned fast-safe-arith-op)
557 (:translate truncate)
558 (:args (x :scs (unsigned-reg) :target eax)
559 (y :scs (unsigned-reg signed-stack)))
560 (:arg-types unsigned-num unsigned-num)
561 (:temporary (:sc unsigned-reg :offset eax-offset :target quo
562 :from (:argument 0) :to (:result 0)) eax)
563 (:temporary (:sc unsigned-reg :offset edx-offset :target rem
564 :from (:argument 0) :to (:result 1)) edx)
565 (:results (quo :scs (unsigned-reg))
566 (rem :scs (unsigned-reg)))
567 (:result-types unsigned-num unsigned-num)
568 (:note "inline (unsigned-byte 64) arithmetic")
570 (:save-p :compute-only)
572 (let ((zero (generate-error-code vop 'division-by-zero-error x y)))
573 (if (sc-is y unsigned-reg)
574 (inst test y y) ; smaller instruction
583 (define-vop (fast-truncate-c/unsigned=>unsigned fast-safe-arith-op)
584 (:translate truncate)
585 (:args (x :scs (unsigned-reg) :target eax))
587 (:arg-types unsigned-num (:constant (unsigned-byte 64)))
588 (:temporary (:sc unsigned-reg :offset eax-offset :target quo
589 :from :argument :to (:result 0)) eax)
590 (:temporary (:sc unsigned-reg :offset edx-offset :target rem
591 :from :eval :to (:result 1)) edx)
592 (:temporary (:sc unsigned-reg :from :eval :to :result) y-arg)
593 (:results (quo :scs (unsigned-reg))
594 (rem :scs (unsigned-reg)))
595 (:result-types unsigned-num unsigned-num)
596 (:note "inline (unsigned-byte 64) arithmetic")
598 (:save-p :compute-only)
602 (if (typep y '(unsigned-byte 31))
604 (setf y-arg (register-inline-constant :qword y)))
609 (define-vop (fast-truncate/signed=>signed fast-safe-arith-op)
610 (:translate truncate)
611 (:args (x :scs (signed-reg) :target eax)
612 (y :scs (signed-reg signed-stack)))
613 (:arg-types signed-num signed-num)
614 (:temporary (:sc signed-reg :offset eax-offset :target quo
615 :from (:argument 0) :to (:result 0)) eax)
616 (:temporary (:sc signed-reg :offset edx-offset :target rem
617 :from (:argument 0) :to (:result 1)) edx)
618 (:results (quo :scs (signed-reg))
619 (rem :scs (signed-reg)))
620 (:result-types signed-num signed-num)
621 (:note "inline (signed-byte 64) arithmetic")
623 (:save-p :compute-only)
625 (let ((zero (generate-error-code vop 'division-by-zero-error x y)))
626 (if (sc-is y signed-reg)
627 (inst test y y) ; smaller instruction
636 (define-vop (fast-truncate-c/signed=>signed fast-safe-arith-op)
637 (:translate truncate)
638 (:args (x :scs (signed-reg) :target eax))
640 (:arg-types signed-num (:constant (signed-byte 64)))
641 (:temporary (:sc signed-reg :offset eax-offset :target quo
642 :from :argument :to (:result 0)) eax)
643 (:temporary (:sc signed-reg :offset edx-offset :target rem
644 :from :eval :to (:result 1)) edx)
645 (:temporary (:sc signed-reg :from :eval :to :result) y-arg)
646 (:results (quo :scs (signed-reg))
647 (rem :scs (signed-reg)))
648 (:result-types signed-num signed-num)
649 (:note "inline (signed-byte 64) arithmetic")
651 (:save-p :compute-only)
655 (if (typep y '(signed-byte 32))
657 (setf y-arg (register-inline-constant :qword y)))
658 (inst idiv eax y-arg)
665 (define-vop (fast-ash-c/fixnum=>fixnum)
668 (:args (number :scs (any-reg) :target result
669 :load-if (not (and (sc-is number any-reg control-stack)
670 (sc-is result any-reg control-stack)
671 (location= number result)))))
673 (:arg-types tagged-num (:constant integer))
674 (:results (result :scs (any-reg)
675 :load-if (not (and (sc-is number control-stack)
676 (sc-is result control-stack)
677 (location= number result)))))
678 (:result-types tagged-num)
681 (:variant-vars modularp)
683 (cond ((and (= amount 1) (not (location= number result)))
684 (inst lea result (make-ea :qword :base number :index number)))
685 ((and (= amount 2) (not (location= number result)))
686 (inst lea result (make-ea :qword :index number :scale 4)))
687 ((and (= amount 3) (not (location= number result)))
688 (inst lea result (make-ea :qword :index number :scale 8)))
691 (cond ((< -64 amount 64)
692 ;; this code is used both in ASH and ASH-MODFX, so
695 (inst shl result amount)
697 (inst sar result (- amount))
698 (inst and result (lognot fixnum-tag-mask)))))
699 ;; shifting left (zero fill)
702 (aver (not "Impossible: fixnum ASH should not be called with
703 constant shift greater than word length")))
704 (if (sc-is result any-reg)
706 (inst mov result 0)))
707 ;; shifting right (sign fill)
708 (t (inst sar result 63)
709 (inst and result (lognot fixnum-tag-mask))))))))
711 (define-vop (fast-ash-left/fixnum=>fixnum)
713 (:args (number :scs (any-reg) :target result
714 :load-if (not (and (sc-is number control-stack)
715 (sc-is result control-stack)
716 (location= number result))))
717 (amount :scs (unsigned-reg) :target ecx))
718 (:arg-types tagged-num positive-fixnum)
719 (:temporary (:sc unsigned-reg :offset ecx-offset :from (:argument 1)) ecx)
720 (:results (result :scs (any-reg) :from (:argument 0)
721 :load-if (not (and (sc-is number control-stack)
722 (sc-is result control-stack)
723 (location= number result)))))
724 (:result-types tagged-num)
730 ;; The result-type ensures us that this shift will not overflow.
731 (inst shl result :cl)))
733 (define-vop (fast-ash-c/signed=>signed)
736 (:args (number :scs (signed-reg) :target result
737 :load-if (not (and (sc-is number signed-stack)
738 (sc-is result signed-stack)
739 (location= number result)))))
741 (:arg-types signed-num (:constant integer))
742 (:results (result :scs (signed-reg)
743 :load-if (not (and (sc-is number signed-stack)
744 (sc-is result signed-stack)
745 (location= number result)))))
746 (:result-types signed-num)
749 (cond ((and (= amount 1) (not (location= number result)))
750 (inst lea result (make-ea :qword :base number :index number)))
751 ((and (= amount 2) (not (location= number result)))
752 (inst lea result (make-ea :qword :index number :scale 4)))
753 ((and (= amount 3) (not (location= number result)))
754 (inst lea result (make-ea :qword :index number :scale 8)))
757 (cond ((plusp amount) (inst shl result amount))
758 (t (inst sar result (min 63 (- amount)))))))))
760 (define-vop (fast-ash-c/unsigned=>unsigned)
763 (:args (number :scs (unsigned-reg) :target result
764 :load-if (not (and (sc-is number unsigned-stack)
765 (sc-is result unsigned-stack)
766 (location= number result)))))
768 (:arg-types unsigned-num (:constant integer))
769 (:results (result :scs (unsigned-reg)
770 :load-if (not (and (sc-is number unsigned-stack)
771 (sc-is result unsigned-stack)
772 (location= number result)))))
773 (:result-types unsigned-num)
776 (cond ((and (= amount 1) (not (location= number result)))
777 (inst lea result (make-ea :qword :base number :index number)))
778 ((and (= amount 2) (not (location= number result)))
779 (inst lea result (make-ea :qword :index number :scale 4)))
780 ((and (= amount 3) (not (location= number result)))
781 (inst lea result (make-ea :qword :index number :scale 8)))
784 (cond ((< -64 amount 64) ;; XXXX
785 ;; this code is used both in ASH and ASH-MOD32, so
788 (inst shl result amount)
789 (inst shr result (- amount))))
790 (t (if (sc-is result unsigned-reg)
792 (inst mov result 0))))))))
794 (define-vop (fast-ash-left/signed=>signed)
796 (:args (number :scs (signed-reg) :target result
797 :load-if (not (and (sc-is number signed-stack)
798 (sc-is result signed-stack)
799 (location= number result))))
800 (amount :scs (unsigned-reg) :target ecx))
801 (:arg-types signed-num positive-fixnum)
802 (:temporary (:sc unsigned-reg :offset ecx-offset :from (:argument 1)) ecx)
803 (:results (result :scs (signed-reg) :from (:argument 0)
804 :load-if (not (and (sc-is number signed-stack)
805 (sc-is result signed-stack)
806 (location= number result)))))
807 (:result-types signed-num)
813 (inst shl result :cl)))
815 (define-vop (fast-ash-left/unsigned=>unsigned)
817 (:args (number :scs (unsigned-reg) :target result
818 :load-if (not (and (sc-is number unsigned-stack)
819 (sc-is result unsigned-stack)
820 (location= number result))))
821 (amount :scs (unsigned-reg) :target ecx))
822 (:arg-types unsigned-num positive-fixnum)
823 (:temporary (:sc unsigned-reg :offset ecx-offset :from (:argument 1)) ecx)
824 (:results (result :scs (unsigned-reg) :from (:argument 0)
825 :load-if (not (and (sc-is number unsigned-stack)
826 (sc-is result unsigned-stack)
827 (location= number result)))))
828 (:result-types unsigned-num)
834 (inst shl result :cl)))
836 (define-vop (fast-ash/signed=>signed)
839 (:args (number :scs (signed-reg) :target result)
840 (amount :scs (signed-reg) :target ecx))
841 (:arg-types signed-num signed-num)
842 (:results (result :scs (signed-reg) :from (:argument 0)))
843 (:result-types signed-num)
844 (:temporary (:sc signed-reg :offset ecx-offset :from (:argument 1)) ecx)
850 (inst jmp :ns POSITIVE)
856 (inst sar result :cl)
860 ;; The result-type ensures us that this shift will not overflow.
861 (inst shl result :cl)
865 (define-vop (fast-ash/unsigned=>unsigned)
868 (:args (number :scs (unsigned-reg) :target result)
869 (amount :scs (signed-reg) :target ecx))
870 (:arg-types unsigned-num signed-num)
871 (:results (result :scs (unsigned-reg) :from (:argument 0)))
872 (:result-types unsigned-num)
873 (:temporary (:sc signed-reg :offset ecx-offset :from (:argument 1)) ecx)
879 (inst jmp :ns POSITIVE)
886 (inst shr result :cl)
890 ;; The result-type ensures us that this shift will not overflow.
891 (inst shl result :cl)
897 (defknown %lea (integer integer (member 1 2 4 8 16) (signed-byte 64))
899 (foldable flushable movable))
901 (defoptimizer (%lea derive-type) ((base index scale disp))
902 (when (and (constant-lvar-p scale)
903 (constant-lvar-p disp))
904 (let ((scale (lvar-value scale))
905 (disp (lvar-value disp))
906 (base-type (lvar-type base))
907 (index-type (lvar-type index)))
908 (when (and (numeric-type-p base-type)
909 (numeric-type-p index-type))
910 (let ((base-lo (numeric-type-low base-type))
911 (base-hi (numeric-type-high base-type))
912 (index-lo (numeric-type-low index-type))
913 (index-hi (numeric-type-high index-type)))
914 (make-numeric-type :class 'integer
916 :low (when (and base-lo index-lo)
917 (+ base-lo (* index-lo scale) disp))
918 :high (when (and base-hi index-hi)
919 (+ base-hi (* index-hi scale) disp))))))))
921 (defun %lea (base index scale disp)
922 (+ base (* index scale) disp))
926 (define-vop (%lea/unsigned=>unsigned)
929 (:args (base :scs (unsigned-reg))
930 (index :scs (unsigned-reg)))
932 (:arg-types unsigned-num unsigned-num
933 (:constant (member 1 2 4 8))
934 (:constant (signed-byte 64)))
935 (:results (r :scs (unsigned-reg)))
936 (:result-types unsigned-num)
938 (inst lea r (make-ea :qword :base base :index index
939 :scale scale :disp disp))))
941 (define-vop (%lea/signed=>signed)
944 (:args (base :scs (signed-reg))
945 (index :scs (signed-reg)))
947 (:arg-types signed-num signed-num
948 (:constant (member 1 2 4 8))
949 (:constant (signed-byte 64)))
950 (:results (r :scs (signed-reg)))
951 (:result-types signed-num)
953 (inst lea r (make-ea :qword :base base :index index
954 :scale scale :disp disp))))
956 (define-vop (%lea/fixnum=>fixnum)
959 (:args (base :scs (any-reg))
960 (index :scs (any-reg)))
962 (:arg-types tagged-num tagged-num
963 (:constant (member 1 2 4 8))
964 (:constant (signed-byte 64)))
965 (:results (r :scs (any-reg)))
966 (:result-types tagged-num)
968 (inst lea r (make-ea :qword :base base :index index
969 :scale scale :disp disp))))
971 ;;; FIXME: before making knowledge of this too public, it needs to be
972 ;;; fixed so that it's actually _faster_ than the non-CMOV version; at
973 ;;; least on my Celeron-XXX laptop, this version is marginally slower
974 ;;; than the above version with branches. -- CSR, 2003-09-04
975 (define-vop (fast-cmov-ash/unsigned=>unsigned)
978 (:args (number :scs (unsigned-reg) :target result)
979 (amount :scs (signed-reg) :target ecx))
980 (:arg-types unsigned-num signed-num)
981 (:results (result :scs (unsigned-reg) :from (:argument 0)))
982 (:result-types unsigned-num)
983 (:temporary (:sc signed-reg :offset ecx-offset :from (:argument 1)) ecx)
984 (:temporary (:sc any-reg :from (:eval 0) :to (:eval 1)) zero)
986 (:guard (member :cmov *backend-subfeatures*))
991 (inst jmp :ns POSITIVE)
994 (inst shr result :cl)
996 (inst cmov :nbe result zero)
1000 ;; The result-type ensures us that this shift will not overflow.
1001 (inst shl result :cl)
1005 (define-vop (signed-byte-64-len)
1006 (:translate integer-length)
1007 (:note "inline (signed-byte 64) integer-length")
1008 (:policy :fast-safe)
1009 (:args (arg :scs (signed-reg) :target res))
1010 (:arg-types signed-num)
1011 (:results (res :scs (unsigned-reg)))
1012 (:result-types unsigned-num)
1015 (if (sc-is res unsigned-reg)
1029 (define-vop (unsigned-byte-64-len)
1030 (:translate integer-length)
1031 (:note "inline (unsigned-byte 64) integer-length")
1032 (:policy :fast-safe)
1033 (:args (arg :scs (unsigned-reg)))
1034 (:arg-types unsigned-num)
1035 (:results (res :scs (unsigned-reg)))
1036 (:result-types unsigned-num)
1046 (define-vop (unsigned-byte-64-count)
1047 (:translate logcount)
1048 (:note "inline (unsigned-byte 64) logcount")
1049 (:policy :fast-safe)
1050 (:args (arg :scs (unsigned-reg) :target result))
1051 (:arg-types unsigned-num)
1052 (:results (result :scs (unsigned-reg)))
1053 (:result-types positive-fixnum)
1054 (:temporary (:sc unsigned-reg) temp)
1055 (:temporary (:sc unsigned-reg) mask)
1057 ;; See the comments below for how the algorithm works. The tricks
1058 ;; used can be found for example in AMD's software optimization
1059 ;; guide or at "http://www.hackersdelight.org/HDcode/pop.cc" in the
1060 ;; function "pop1", for 32-bit words. The extension to 64 bits is
1062 ;; Calculate 2-bit sums. Note that the value of a two-digit binary
1063 ;; number is the sum of the right digit and twice the left digit.
1064 ;; Thus we can calculate the sum of the two digits by shifting the
1065 ;; left digit to the right position and doing a two-bit subtraction.
1066 ;; This subtraction will never create a borrow and thus can be made
1067 ;; on all 32 2-digit numbers at once.
1071 (inst mov mask #x5555555555555555)
1072 (inst and result mask)
1073 (inst sub temp result)
1074 ;; Calculate 4-bit sums by straightforward shift, mask and add.
1075 ;; Note that we shift the source operand of the MOV and not its
1076 ;; destination so that the SHR and the MOV can execute in the same
1078 (inst mov result temp)
1080 (inst mov mask #x3333333333333333)
1081 (inst and result mask)
1082 (inst and temp mask)
1083 (inst add result temp)
1084 ;; Calculate 8-bit sums. Since each sum is at most 8, which fits
1085 ;; into 4 bits, we can apply the mask after the addition, saving one
1087 (inst mov temp result)
1089 (inst add result temp)
1090 (inst mov mask #x0f0f0f0f0f0f0f0f)
1091 (inst and result mask)
1092 ;; Add all 8 bytes at once by multiplying with #256r11111111.
1093 ;; We need to calculate only the lower 8 bytes of the product.
1094 ;; Of these the most significant byte contains the final result.
1095 ;; Note that there can be no overflow from one byte to the next
1096 ;; as the sum is at most 64 which needs only 7 bits.
1097 (inst mov mask #x0101010101010101)
1098 (inst imul result mask)
1099 (inst shr result 56)))
1101 ;;;; binary conditional VOPs
1103 (define-vop (fast-conditional)
1108 (:policy :fast-safe))
1110 ;;; constant variants are declared for 32 bits not 64 bits, because
1111 ;;; loading a 64 bit constant is silly
1113 (define-vop (fast-conditional/fixnum fast-conditional)
1114 (:args (x :scs (any-reg)
1115 :load-if (not (and (sc-is x control-stack)
1116 (sc-is y any-reg))))
1117 (y :scs (any-reg control-stack)))
1118 (:arg-types tagged-num tagged-num)
1119 (:note "inline fixnum comparison"))
1121 (define-vop (fast-conditional-c/fixnum fast-conditional/fixnum)
1122 (:args (x :scs (any-reg)
1123 :load-if (or (not (typep y 'short-tagged-num))
1124 (not (sc-is x any-reg control-stack)))))
1125 (:arg-types tagged-num (:constant fixnum))
1128 (define-vop (fast-conditional/signed fast-conditional)
1129 (:args (x :scs (signed-reg)
1130 :load-if (not (and (sc-is x signed-stack)
1131 (sc-is y signed-reg))))
1132 (y :scs (signed-reg signed-stack)))
1133 (:arg-types signed-num signed-num)
1134 (:note "inline (signed-byte 64) comparison"))
1136 (define-vop (fast-conditional-c/signed fast-conditional/signed)
1137 (:args (x :scs (signed-reg)
1138 :load-if (or (not (typep y '(signed-byte 32)))
1139 (not (sc-is x signed-reg signed-stack)))))
1140 (:arg-types signed-num (:constant (signed-byte 64)))
1143 (define-vop (fast-conditional/unsigned fast-conditional)
1144 (:args (x :scs (unsigned-reg)
1145 :load-if (not (and (sc-is x unsigned-stack)
1146 (sc-is y unsigned-reg))))
1147 (y :scs (unsigned-reg unsigned-stack)))
1148 (:arg-types unsigned-num unsigned-num)
1149 (:note "inline (unsigned-byte 64) comparison"))
1151 (define-vop (fast-conditional-c/unsigned fast-conditional/unsigned)
1152 (:args (x :scs (unsigned-reg)
1153 :load-if (or (not (typep y '(unsigned-byte 31)))
1154 (not (sc-is x unsigned-reg unsigned-stack)))))
1155 (:arg-types unsigned-num (:constant (unsigned-byte 64)))
1158 (macrolet ((define-conditional-vop (tran cond unsigned not-cond not-unsigned)
1161 (lambda (suffix cost signed)
1162 `(define-vop (;; FIXME: These could be done more
1163 ;; cleanly with SYMBOLICATE.
1164 ,(intern (format nil "~:@(FAST-IF-~A~A~)"
1167 (format nil "~:@(FAST-CONDITIONAL~A~)"
1170 (:conditional ,(if signed cond unsigned))
1175 `(if (typep y 'short-tagged-num)
1177 (register-inline-constant
1178 :qword (fixnumize y))))
1180 `(if (typep y '(signed-byte 32))
1182 (register-inline-constant
1185 `(if (typep y '(unsigned-byte 31))
1187 (register-inline-constant
1190 '(/fixnum -c/fixnum /signed -c/signed /unsigned -c/unsigned)
1191 ; '(/fixnum /signed /unsigned)
1193 '(t t t t nil nil)))))
1195 (define-conditional-vop < :l :b :ge :ae)
1196 (define-conditional-vop > :g :a :le :be))
1198 (define-vop (fast-if-eql/signed fast-conditional/signed)
1203 (define-vop (fast-if-eql-c/signed fast-conditional-c/signed)
1206 (cond ((and (sc-is x signed-reg) (zerop y))
1207 (inst test x x)) ; smaller instruction
1208 ((typep y '(signed-byte 32))
1211 (inst cmp x (register-inline-constant :qword y))))))
1213 (define-vop (fast-if-eql/unsigned fast-conditional/unsigned)
1218 (define-vop (fast-if-eql-c/unsigned fast-conditional-c/unsigned)
1221 (cond ((and (sc-is x unsigned-reg) (zerop y))
1222 (inst test x x)) ; smaller instruction
1223 ((typep y '(unsigned-byte 31))
1226 (inst cmp x (register-inline-constant :qword y))))))
1228 ;;; EQL/FIXNUM is funny because the first arg can be of any type, not just a
1231 ;;; These versions specify a fixnum restriction on their first arg. We have
1232 ;;; also generic-eql/fixnum VOPs which are the same, but have no restriction on
1233 ;;; the first arg and a higher cost. The reason for doing this is to prevent
1234 ;;; fixnum specific operations from being used on word integers, spuriously
1235 ;;; consing the argument.
1237 (define-vop (fast-eql/fixnum fast-conditional)
1238 (:args (x :scs (any-reg)
1239 :load-if (not (and (sc-is x control-stack)
1240 (sc-is y any-reg))))
1241 (y :scs (any-reg control-stack)))
1242 (:arg-types tagged-num tagged-num)
1243 (:note "inline fixnum comparison")
1248 (define-vop (generic-eql/fixnum fast-eql/fixnum)
1249 (:args (x :scs (any-reg descriptor-reg)
1250 :load-if (not (and (sc-is x control-stack)
1251 (sc-is y any-reg))))
1252 (y :scs (any-reg control-stack)))
1253 (:arg-types * tagged-num)
1256 (define-vop (fast-eql-c/fixnum fast-conditional/fixnum)
1257 (:args (x :scs (any-reg)
1258 :load-if (or (not (typep y 'short-tagged-num))
1259 (not (sc-is x any-reg descriptor-reg control-stack)))))
1260 (:arg-types tagged-num (:constant fixnum))
1264 (cond ((and (sc-is x any-reg descriptor-reg) (zerop y))
1265 (inst test x x)) ; smaller instruction
1266 ((typep y 'short-tagged-num)
1267 (inst cmp x (fixnumize y)))
1269 (inst cmp x (register-inline-constant :qword (fixnumize y)))))))
1271 (define-vop (generic-eql-c/fixnum fast-eql-c/fixnum)
1272 (:args (x :scs (any-reg descriptor-reg)))
1273 (:arg-types * (:constant fixnum))
1276 ;;;; 32-bit logical operations
1278 ;;; Only the lower 6 bits of the shift amount are significant.
1279 (define-vop (shift-towards-someplace)
1280 (:policy :fast-safe)
1281 (:args (num :scs (unsigned-reg) :target r)
1282 (amount :scs (signed-reg) :target ecx))
1283 (:arg-types unsigned-num tagged-num)
1284 (:temporary (:sc signed-reg :offset ecx-offset :from (:argument 1)) ecx)
1285 (:results (r :scs (unsigned-reg) :from (:argument 0)))
1286 (:result-types unsigned-num))
1288 (define-vop (shift-towards-start shift-towards-someplace)
1289 (:translate shift-towards-start)
1290 (:note "SHIFT-TOWARDS-START")
1296 (define-vop (shift-towards-end shift-towards-someplace)
1297 (:translate shift-towards-end)
1298 (:note "SHIFT-TOWARDS-END")
1304 ;;;; Modular functions
1306 (defmacro define-mod-binop ((name prototype) function)
1307 `(define-vop (,name ,prototype)
1308 (:args (x :target r :scs (unsigned-reg signed-reg)
1309 :load-if (not (and (or (sc-is x unsigned-stack)
1310 (sc-is x signed-stack))
1311 (or (sc-is y unsigned-reg)
1312 (sc-is y signed-reg))
1313 (or (sc-is r unsigned-stack)
1314 (sc-is r signed-stack))
1316 (y :scs (unsigned-reg signed-reg unsigned-stack signed-stack)))
1317 (:arg-types untagged-num untagged-num)
1318 (:results (r :scs (unsigned-reg signed-reg) :from (:argument 0)
1319 :load-if (not (and (or (sc-is x unsigned-stack)
1320 (sc-is x signed-stack))
1321 (or (sc-is y unsigned-reg)
1322 (sc-is y unsigned-reg))
1323 (or (sc-is r unsigned-stack)
1324 (sc-is r unsigned-stack))
1326 (:result-types unsigned-num)
1327 (:translate ,function)))
1328 (defmacro define-mod-binop-c ((name prototype) function)
1329 `(define-vop (,name ,prototype)
1330 (:args (x :target r :scs (unsigned-reg signed-reg)
1331 :load-if (not (and (or (sc-is x unsigned-stack)
1332 (sc-is x signed-stack))
1333 (or (sc-is r unsigned-stack)
1334 (sc-is r signed-stack))
1336 (typep y '(signed-byte 32))))))
1338 (:arg-types untagged-num (:constant (or (unsigned-byte 64) (signed-byte 64))))
1339 (:results (r :scs (unsigned-reg signed-reg) :from (:argument 0)
1340 :load-if (not (and (or (sc-is x unsigned-stack)
1341 (sc-is x signed-stack))
1342 (or (sc-is r unsigned-stack)
1343 (sc-is r unsigned-stack))
1345 (:result-types unsigned-num)
1346 (:translate ,function)))
1348 (macrolet ((def (name -c-p)
1349 (let ((fun64 (intern (format nil "~S-MOD64" name)))
1350 (vopu (intern (format nil "FAST-~S/UNSIGNED=>UNSIGNED" name)))
1351 (vopcu (intern (format nil "FAST-~S-C/UNSIGNED=>UNSIGNED" name)))
1352 (vopf (intern (format nil "FAST-~S/FIXNUM=>FIXNUM" name)))
1353 (vopcf (intern (format nil "FAST-~S-C/FIXNUM=>FIXNUM" name)))
1354 (vop64u (intern (format nil "FAST-~S-MOD64/WORD=>UNSIGNED" name)))
1355 (vop64f (intern (format nil "FAST-~S-MOD64/FIXNUM=>FIXNUM" name)))
1356 (vop64cu (intern (format nil "FAST-~S-MOD64-C/WORD=>UNSIGNED" name)))
1357 (vop64cf (intern (format nil "FAST-~S-MOD64-C/FIXNUM=>FIXNUM" name)))
1358 (funfx (intern (format nil "~S-MODFX" name)))
1359 (vopfxf (intern (format nil "FAST-~S-MODFX/FIXNUM=>FIXNUM" name)))
1360 (vopfxcf (intern (format nil "FAST-~S-MODFX-C/FIXNUM=>FIXNUM" name))))
1362 (define-modular-fun ,fun64 (x y) ,name :untagged nil 64)
1363 (define-modular-fun ,funfx (x y) ,name :tagged t
1364 #.(- n-word-bits n-fixnum-tag-bits))
1365 (define-mod-binop (,vop64u ,vopu) ,fun64)
1366 (define-vop (,vop64f ,vopf) (:translate ,fun64))
1367 (define-vop (,vopfxf ,vopf) (:translate ,funfx))
1369 `((define-mod-binop-c (,vop64cu ,vopcu) ,fun64)
1370 (define-vop (,vopfxcf ,vopcf) (:translate ,funfx))))))))
1375 (define-vop (fast-ash-left-mod64-c/unsigned=>unsigned
1376 fast-ash-c/unsigned=>unsigned)
1377 (:translate ash-left-mod64))
1378 (define-vop (fast-ash-left-mod64/unsigned=>unsigned
1379 fast-ash-left/unsigned=>unsigned))
1380 (deftransform ash-left-mod64 ((integer count)
1381 ((unsigned-byte 64) (unsigned-byte 6)))
1382 (when (sb!c::constant-lvar-p count)
1383 (sb!c::give-up-ir1-transform))
1384 '(%primitive fast-ash-left-mod64/unsigned=>unsigned integer count))
1386 (define-vop (fast-ash-left-modfx-c/fixnum=>fixnum
1387 fast-ash-c/fixnum=>fixnum)
1389 (:translate ash-left-modfx))
1390 (define-vop (fast-ash-left-modfx/fixnum=>fixnum
1391 fast-ash-left/fixnum=>fixnum))
1392 (deftransform ash-left-modfx ((integer count)
1393 (fixnum (unsigned-byte 6)))
1394 (when (sb!c::constant-lvar-p count)
1395 (sb!c::give-up-ir1-transform))
1396 '(%primitive fast-ash-left-modfx/fixnum=>fixnum integer count))
1400 (defknown sb!vm::%lea-mod64 (integer integer (member 1 2 4 8) (signed-byte 64))
1402 (foldable flushable movable))
1403 (defknown sb!vm::%lea-modfx (integer integer (member 1 2 4 8) (signed-byte 64))
1405 (foldable flushable movable))
1407 (define-modular-fun-optimizer %lea ((base index scale disp) :untagged nil :width width)
1408 (when (and (<= width 64)
1409 (constant-lvar-p scale)
1410 (constant-lvar-p disp))
1411 (cut-to-width base :untagged width nil)
1412 (cut-to-width index :untagged width nil)
1413 'sb!vm::%lea-mod64))
1414 (define-modular-fun-optimizer %lea ((base index scale disp) :tagged t :width width)
1415 (when (and (<= width (- sb!vm:n-word-bits sb!vm:n-fixnum-tag-bits))
1416 (constant-lvar-p scale)
1417 (constant-lvar-p disp))
1418 (cut-to-width base :tagged width t)
1419 (cut-to-width index :tagged width t)
1420 'sb!vm::%lea-modfx))
1424 (defun sb!vm::%lea-mod64 (base index scale disp)
1425 (ldb (byte 64 0) (%lea base index scale disp)))
1426 (defun sb!vm::%lea-modfx (base index scale disp)
1427 (mask-signed-field (- sb!vm:n-word-bits sb!vm:n-fixnum-tag-bits)
1428 (%lea base index scale disp))))
1431 (defun sb!vm::%lea-mod64 (base index scale disp)
1432 (let ((base (logand base #xffffffffffffffff))
1433 (index (logand index #xffffffffffffffff)))
1434 ;; can't use modular version of %LEA, as we only have VOPs for
1435 ;; constant SCALE and DISP.
1436 (ldb (byte 64 0) (+ base (* index scale) disp))))
1437 (defun sb!vm::%lea-modfx (base index scale disp)
1438 (let* ((fixnum-width (- sb!vm:n-word-bits sb!vm:n-fixnum-tag-bits))
1439 (base (mask-signed-field fixnum-width base))
1440 (index (mask-signed-field fixnum-width index)))
1441 ;; can't use modular version of %LEA, as we only have VOPs for
1442 ;; constant SCALE and DISP.
1443 (mask-signed-field fixnum-width (+ base (* index scale) disp)))))
1445 (in-package "SB!VM")
1447 (define-vop (%lea-mod64/unsigned=>unsigned
1448 %lea/unsigned=>unsigned)
1449 (:translate %lea-mod64))
1450 (define-vop (%lea-modfx/fixnum=>fixnum
1451 %lea/fixnum=>fixnum)
1452 (:translate %lea-modfx))
1454 ;;; logical operations
1455 (define-modular-fun lognot-mod64 (x) lognot :untagged nil 64)
1456 (define-vop (lognot-mod64/unsigned=>unsigned)
1457 (:translate lognot-mod64)
1458 (:args (x :scs (unsigned-reg unsigned-stack) :target r
1459 :load-if (not (and (sc-is x unsigned-stack)
1460 (sc-is r unsigned-stack)
1462 (:arg-types unsigned-num)
1463 (:results (r :scs (unsigned-reg)
1464 :load-if (not (and (sc-is x unsigned-stack)
1465 (sc-is r unsigned-stack)
1467 (:result-types unsigned-num)
1468 (:policy :fast-safe)
1473 (define-source-transform logeqv (&rest args)
1474 (if (oddp (length args))
1476 `(lognot (logxor ,@args))))
1477 (define-source-transform logandc1 (x y)
1478 `(logand (lognot ,x) ,y))
1479 (define-source-transform logandc2 (x y)
1480 `(logand ,x (lognot ,y)))
1481 (define-source-transform logorc1 (x y)
1482 `(logior (lognot ,x) ,y))
1483 (define-source-transform logorc2 (x y)
1484 `(logior ,x (lognot ,y)))
1485 (define-source-transform lognor (x y)
1486 `(lognot (logior ,x ,y)))
1487 (define-source-transform lognand (x y)
1488 `(lognot (logand ,x ,y)))
1492 (define-vop (bignum-length get-header-data)
1493 (:translate sb!bignum:%bignum-length)
1494 (:policy :fast-safe))
1496 (define-vop (bignum-set-length set-header-data)
1497 (:translate sb!bignum:%bignum-set-length)
1498 (:policy :fast-safe))
1500 (define-full-reffer bignum-ref * bignum-digits-offset other-pointer-lowtag
1501 (unsigned-reg) unsigned-num sb!bignum:%bignum-ref)
1502 (define-full-reffer+offset bignum--ref-with-offset * bignum-digits-offset
1503 other-pointer-lowtag (unsigned-reg) unsigned-num
1504 sb!bignum:%bignum-ref-with-offset)
1505 (define-full-setter bignum-set * bignum-digits-offset other-pointer-lowtag
1506 (unsigned-reg) unsigned-num sb!bignum:%bignum-set)
1508 (define-vop (digit-0-or-plus)
1509 (:translate sb!bignum:%digit-0-or-plusp)
1510 (:policy :fast-safe)
1511 (:args (digit :scs (unsigned-reg)))
1512 (:arg-types unsigned-num)
1515 (inst test digit digit)))
1518 ;;; For add and sub with carry the sc of carry argument is any-reg so
1519 ;;; that it may be passed as a fixnum or word and thus may be 0, 1, or
1520 ;;; 8. This is easy to deal with and may save a fixnum-word
1522 (define-vop (add-w/carry)
1523 (:translate sb!bignum:%add-with-carry)
1524 (:policy :fast-safe)
1525 (:args (a :scs (unsigned-reg) :target result)
1526 (b :scs (unsigned-reg unsigned-stack) :to :eval)
1527 (c :scs (any-reg) :target temp))
1528 (:arg-types unsigned-num unsigned-num positive-fixnum)
1529 (:temporary (:sc any-reg :from (:argument 2) :to :eval) temp)
1530 (:results (result :scs (unsigned-reg) :from (:argument 0))
1531 (carry :scs (unsigned-reg)))
1532 (:result-types unsigned-num positive-fixnum)
1536 (inst neg temp) ; Set the carry flag to 0 if c=0 else to 1
1539 (inst adc carry carry)))
1541 ;;; Note: the borrow is 1 for no borrow and 0 for a borrow, the opposite
1542 ;;; of the x86-64 convention.
1543 (define-vop (sub-w/borrow)
1544 (:translate sb!bignum:%subtract-with-borrow)
1545 (:policy :fast-safe)
1546 (:args (a :scs (unsigned-reg) :to :eval :target result)
1547 (b :scs (unsigned-reg unsigned-stack) :to :result)
1548 (c :scs (any-reg control-stack)))
1549 (:arg-types unsigned-num unsigned-num positive-fixnum)
1550 (:results (result :scs (unsigned-reg) :from :eval)
1551 (borrow :scs (unsigned-reg)))
1552 (:result-types unsigned-num positive-fixnum)
1554 (inst cmp c 1) ; Set the carry flag to 1 if c=0 else to 0
1558 (inst sbb borrow 0)))
1561 (define-vop (bignum-mult-and-add-3-arg)
1562 (:translate sb!bignum:%multiply-and-add)
1563 (:policy :fast-safe)
1564 (:args (x :scs (unsigned-reg) :target eax)
1565 (y :scs (unsigned-reg unsigned-stack))
1566 (carry-in :scs (unsigned-reg unsigned-stack)))
1567 (:arg-types unsigned-num unsigned-num unsigned-num)
1568 (:temporary (:sc unsigned-reg :offset eax-offset :from (:argument 0)
1569 :to (:result 1) :target lo) eax)
1570 (:temporary (:sc unsigned-reg :offset edx-offset :from (:argument 1)
1571 :to (:result 0) :target hi) edx)
1572 (:results (hi :scs (unsigned-reg))
1573 (lo :scs (unsigned-reg)))
1574 (:result-types unsigned-num unsigned-num)
1578 (inst add eax carry-in)
1583 (define-vop (bignum-mult-and-add-4-arg)
1584 (:translate sb!bignum:%multiply-and-add)
1585 (:policy :fast-safe)
1586 (:args (x :scs (unsigned-reg) :target eax)
1587 (y :scs (unsigned-reg unsigned-stack))
1588 (prev :scs (unsigned-reg unsigned-stack))
1589 (carry-in :scs (unsigned-reg unsigned-stack)))
1590 (:arg-types unsigned-num unsigned-num unsigned-num unsigned-num)
1591 (:temporary (:sc unsigned-reg :offset eax-offset :from (:argument 0)
1592 :to (:result 1) :target lo) eax)
1593 (:temporary (:sc unsigned-reg :offset edx-offset :from (:argument 1)
1594 :to (:result 0) :target hi) edx)
1595 (:results (hi :scs (unsigned-reg))
1596 (lo :scs (unsigned-reg)))
1597 (:result-types unsigned-num unsigned-num)
1603 (inst add eax carry-in)
1609 (define-vop (bignum-mult)
1610 (:translate sb!bignum:%multiply)
1611 (:policy :fast-safe)
1612 (:args (x :scs (unsigned-reg) :target eax)
1613 (y :scs (unsigned-reg unsigned-stack)))
1614 (:arg-types unsigned-num unsigned-num)
1615 (:temporary (:sc unsigned-reg :offset eax-offset :from (:argument 0)
1616 :to (:result 1) :target lo) eax)
1617 (:temporary (:sc unsigned-reg :offset edx-offset :from (:argument 1)
1618 :to (:result 0) :target hi) edx)
1619 (:results (hi :scs (unsigned-reg))
1620 (lo :scs (unsigned-reg)))
1621 (:result-types unsigned-num unsigned-num)
1628 #!+multiply-high-vops
1630 (:translate sb!kernel:%multiply-high)
1631 (:policy :fast-safe)
1632 (:args (x :scs (unsigned-reg) :target eax)
1633 (y :scs (unsigned-reg unsigned-stack)))
1634 (:arg-types unsigned-num unsigned-num)
1635 (:temporary (:sc unsigned-reg :offset eax-offset :from (:argument 0))
1637 (:temporary (:sc unsigned-reg :offset edx-offset :from (:argument 1)
1638 :to (:result 0) :target hi) edx)
1639 (:results (hi :scs (unsigned-reg)))
1640 (:result-types unsigned-num)
1646 #!+multiply-high-vops
1647 (define-vop (mulhi/fx)
1648 (:translate sb!kernel:%multiply-high)
1649 (:policy :fast-safe)
1650 (:args (x :scs (any-reg) :target eax)
1651 (y :scs (unsigned-reg unsigned-stack)))
1652 (:arg-types positive-fixnum unsigned-num)
1653 (:temporary (:sc any-reg :offset eax-offset :from (:argument 0)) eax)
1654 (:temporary (:sc any-reg :offset edx-offset :from (:argument 1)
1655 :to (:result 0) :target hi) edx)
1656 (:results (hi :scs (any-reg)))
1657 (:result-types positive-fixnum)
1662 (inst and hi (lognot fixnum-tag-mask))))
1664 (define-vop (bignum-lognot lognot-mod64/unsigned=>unsigned)
1665 (:translate sb!bignum:%lognot))
1667 (define-vop (fixnum-to-digit)
1668 (:translate sb!bignum:%fixnum-to-digit)
1669 (:policy :fast-safe)
1670 (:args (fixnum :scs (any-reg control-stack) :target digit))
1671 (:arg-types tagged-num)
1672 (:results (digit :scs (unsigned-reg)
1673 :load-if (not (and (sc-is fixnum control-stack)
1674 (sc-is digit unsigned-stack)
1675 (location= fixnum digit)))))
1676 (:result-types unsigned-num)
1679 (inst sar digit n-fixnum-tag-bits)))
1681 (define-vop (bignum-floor)
1682 (:translate sb!bignum:%bigfloor)
1683 (:policy :fast-safe)
1684 (:args (div-high :scs (unsigned-reg) :target edx)
1685 (div-low :scs (unsigned-reg) :target eax)
1686 (divisor :scs (unsigned-reg unsigned-stack)))
1687 (:arg-types unsigned-num unsigned-num unsigned-num)
1688 (:temporary (:sc unsigned-reg :offset eax-offset :from (:argument 1)
1689 :to (:result 0) :target quo) eax)
1690 (:temporary (:sc unsigned-reg :offset edx-offset :from (:argument 0)
1691 :to (:result 1) :target rem) edx)
1692 (:results (quo :scs (unsigned-reg))
1693 (rem :scs (unsigned-reg)))
1694 (:result-types unsigned-num unsigned-num)
1698 (inst div eax divisor)
1702 (define-vop (signify-digit)
1703 (:translate sb!bignum:%fixnum-digit-with-correct-sign)
1704 (:policy :fast-safe)
1705 (:args (digit :scs (unsigned-reg unsigned-stack) :target res))
1706 (:arg-types unsigned-num)
1707 (:results (res :scs (any-reg signed-reg)
1708 :load-if (not (and (sc-is digit unsigned-stack)
1709 (sc-is res control-stack signed-stack)
1710 (location= digit res)))))
1711 (:result-types signed-num)
1714 (when (sc-is res any-reg control-stack)
1715 (inst shl res n-fixnum-tag-bits))))
1717 (define-vop (digit-ashr)
1718 (:translate sb!bignum:%ashr)
1719 (:policy :fast-safe)
1720 (:args (digit :scs (unsigned-reg unsigned-stack) :target result)
1721 (count :scs (unsigned-reg) :target ecx))
1722 (:arg-types unsigned-num positive-fixnum)
1723 (:temporary (:sc unsigned-reg :offset ecx-offset :from (:argument 1)) ecx)
1724 (:results (result :scs (unsigned-reg) :from (:argument 0)
1725 :load-if (not (and (sc-is result unsigned-stack)
1726 (location= digit result)))))
1727 (:result-types unsigned-num)
1731 (inst sar result :cl)))
1733 (define-vop (digit-ashr/c)
1734 (:translate sb!bignum:%ashr)
1735 (:policy :fast-safe)
1736 (:args (digit :scs (unsigned-reg unsigned-stack) :target result))
1737 (:arg-types unsigned-num (:constant (integer 0 63)))
1739 (:results (result :scs (unsigned-reg) :from (:argument 0)
1740 :load-if (not (and (sc-is result unsigned-stack)
1741 (location= digit result)))))
1742 (:result-types unsigned-num)
1745 (inst sar result count)))
1747 (define-vop (digit-lshr digit-ashr)
1748 (:translate sb!bignum:%digit-logical-shift-right)
1752 (inst shr result :cl)))
1754 (define-vop (digit-ashl digit-ashr)
1755 (:translate sb!bignum:%ashl)
1759 (inst shl result :cl)))
1761 ;;;; static functions
1763 (define-static-fun two-arg-/ (x y) :translate /)
1765 (define-static-fun two-arg-gcd (x y) :translate gcd)
1766 (define-static-fun two-arg-lcm (x y) :translate lcm)
1768 (define-static-fun two-arg-and (x y) :translate logand)
1769 (define-static-fun two-arg-ior (x y) :translate logior)
1770 (define-static-fun two-arg-xor (x y) :translate logxor)
1775 (defun *-transformer (y)
1777 ((= y (ash 1 (integer-length y)))
1778 ;; there's a generic transform for y = 2^k
1779 (give-up-ir1-transform))
1780 ((member y '(3 5 9))
1781 ;; we can do these multiplications directly using LEA
1782 `(%lea x x ,(1- y) 0))
1784 ;; A normal 64-bit multiplication takes 4 cycles on Athlon 64/Opteron.
1785 ;; Optimizing multiplications (other than the above cases) to
1786 ;; shifts/adds/leas gives a maximum improvement of 1 cycle, but requires
1787 ;; quite a lot of hairy code.
1788 (give-up-ir1-transform))))
1790 (deftransform * ((x y)
1791 ((unsigned-byte 64) (constant-arg (unsigned-byte 64)))
1793 "recode as leas, shifts and adds"
1794 (let ((y (lvar-value y)))
1796 (deftransform sb!vm::*-mod64
1797 ((x y) ((unsigned-byte 64) (constant-arg (unsigned-byte 64)))
1799 "recode as leas, shifts and adds"
1800 (let ((y (lvar-value y)))
1803 (deftransform * ((x y)
1804 (fixnum (constant-arg (unsigned-byte 64)))
1806 "recode as leas, shifts and adds"
1807 (let ((y (lvar-value y)))
1809 (deftransform sb!vm::*-modfx
1810 ((x y) (fixnum (constant-arg (unsigned-byte 64)))
1812 "recode as leas, shifts and adds"
1813 (let ((y (lvar-value y)))