1 ;;;; the VM definition of arithmetic VOPs for the x86
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 (define-vop (fast-safe-arith-op)
21 (define-vop (fixnum-unop fast-safe-arith-op)
22 (:args (x :scs (any-reg) :target res))
23 (:results (res :scs (any-reg)))
24 (:note "inline fixnum arithmetic")
25 (:arg-types tagged-num)
26 (:result-types tagged-num))
28 (define-vop (signed-unop fast-safe-arith-op)
29 (:args (x :scs (signed-reg) :target res))
30 (:results (res :scs (signed-reg)))
31 (:note "inline (signed-byte 32) arithmetic")
32 (:arg-types signed-num)
33 (:result-types signed-num))
35 (define-vop (fast-negate/fixnum fixnum-unop)
41 (define-vop (fast-negate/signed signed-unop)
47 (define-vop (fast-lognot/fixnum fixnum-unop)
51 (inst xor res (fixnumize -1))))
53 (define-vop (fast-lognot/signed signed-unop)
59 ;;;; binary fixnum operations
61 ;;; Assume that any constant operand is the second arg...
63 (define-vop (fast-fixnum-binop fast-safe-arith-op)
64 (:args (x :target r :scs (any-reg)
65 :load-if (not (and (sc-is x control-stack)
67 (sc-is r control-stack)
69 (y :scs (any-reg control-stack)))
70 (:arg-types tagged-num tagged-num)
71 (:results (r :scs (any-reg) :from (:argument 0)
72 :load-if (not (and (sc-is x control-stack)
74 (sc-is r control-stack)
76 (:result-types tagged-num)
77 (:note "inline fixnum arithmetic"))
79 (define-vop (fast-unsigned-binop fast-safe-arith-op)
80 (:args (x :target r :scs (unsigned-reg)
81 :load-if (not (and (sc-is x unsigned-stack)
82 (sc-is y unsigned-reg)
83 (sc-is r unsigned-stack)
85 (y :scs (unsigned-reg unsigned-stack)))
86 (:arg-types unsigned-num unsigned-num)
87 (:results (r :scs (unsigned-reg) :from (:argument 0)
88 :load-if (not (and (sc-is x unsigned-stack)
89 (sc-is y unsigned-reg)
90 (sc-is r unsigned-stack)
92 (:result-types unsigned-num)
93 (:note "inline (unsigned-byte 32) arithmetic"))
95 (define-vop (fast-signed-binop fast-safe-arith-op)
96 (:args (x :target r :scs (signed-reg)
97 :load-if (not (and (sc-is x signed-stack)
99 (sc-is r signed-stack)
101 (y :scs (signed-reg signed-stack)))
102 (:arg-types signed-num signed-num)
103 (:results (r :scs (signed-reg) :from (:argument 0)
104 :load-if (not (and (sc-is x signed-stack)
106 (sc-is r signed-stack)
108 (:result-types signed-num)
109 (:note "inline (signed-byte 32) arithmetic"))
111 (define-vop (fast-fixnum-binop-c fast-safe-arith-op)
112 (:args (x :target r :scs (any-reg control-stack)))
114 (:arg-types tagged-num (:constant (signed-byte 30)))
115 (:results (r :scs (any-reg)
116 :load-if (not (location= x r))))
117 (:result-types tagged-num)
118 (:note "inline fixnum arithmetic"))
120 (define-vop (fast-unsigned-binop-c fast-safe-arith-op)
121 (:args (x :target r :scs (unsigned-reg unsigned-stack)))
123 (:arg-types unsigned-num (:constant (unsigned-byte 32)))
124 (:results (r :scs (unsigned-reg)
125 :load-if (not (location= x r))))
126 (:result-types unsigned-num)
127 (:note "inline (unsigned-byte 32) arithmetic"))
129 (define-vop (fast-signed-binop-c fast-safe-arith-op)
130 (:args (x :target r :scs (signed-reg signed-stack)))
132 (:arg-types signed-num (:constant (signed-byte 32)))
133 (:results (r :scs (signed-reg)
134 :load-if (not (location= x r))))
135 (:result-types signed-num)
136 (:note "inline (signed-byte 32) arithmetic"))
138 (macrolet ((define-binop (translate untagged-penalty op)
140 (define-vop (,(symbolicate "FAST-" translate "/FIXNUM=>FIXNUM")
142 (:translate ,translate)
146 (define-vop (,(symbolicate 'fast- translate '-c/fixnum=>fixnum)
148 (:translate ,translate)
151 (inst ,op r (fixnumize y))))
152 (define-vop (,(symbolicate "FAST-" translate "/SIGNED=>SIGNED")
154 (:translate ,translate)
155 (:generator ,(1+ untagged-penalty)
158 (define-vop (,(symbolicate 'fast- translate '-c/signed=>signed)
160 (:translate ,translate)
161 (:generator ,untagged-penalty
164 (define-vop (,(symbolicate "FAST-"
166 "/UNSIGNED=>UNSIGNED")
168 (:translate ,translate)
169 (:generator ,(1+ untagged-penalty)
172 (define-vop (,(symbolicate 'fast-
174 '-c/unsigned=>unsigned)
175 fast-unsigned-binop-c)
176 (:translate ,translate)
177 (:generator ,untagged-penalty
179 ,(if (eq translate 'logand)
180 ;; for the -C/UNSIGNED=>UNSIGNED VOP, this case
181 ;; is optimized away as an identity somewhere
182 ;; along the lines. However, this VOP is used in
183 ;; -C/SIGNED=>UNSIGNED, below, when the
184 ;; higher-level lisp code can't optimize away the
185 ;; non-trivial identity.
186 `(unless (= y #.(1- (ash 1 n-word-bits)))
188 `(inst ,op r y)))))))
189 (define-binop - 4 sub)
190 (define-binop logand 2 and)
191 (define-binop logior 2 or)
192 (define-binop logxor 2 xor))
194 ;;; Special handling of add on the x86; can use lea to avoid a
195 ;;; register load, otherwise it uses add.
196 (define-vop (fast-+/fixnum=>fixnum fast-safe-arith-op)
198 (:args (x :scs (any-reg) :target r
199 :load-if (not (and (sc-is x control-stack)
201 (sc-is r control-stack)
203 (y :scs (any-reg control-stack)))
204 (:arg-types tagged-num tagged-num)
205 (:results (r :scs (any-reg) :from (:argument 0)
206 :load-if (not (and (sc-is x control-stack)
208 (sc-is r control-stack)
210 (:result-types tagged-num)
211 (:note "inline fixnum arithmetic")
213 (cond ((and (sc-is x any-reg) (sc-is y any-reg) (sc-is r any-reg)
214 (not (location= x r)))
215 (inst lea r (make-ea :dword :base x :index y :scale 1)))
220 (define-vop (fast-+-c/fixnum=>fixnum fast-safe-arith-op)
222 (:args (x :target r :scs (any-reg control-stack)))
224 (:arg-types tagged-num (:constant (signed-byte 30)))
225 (:results (r :scs (any-reg)
226 :load-if (not (location= x r))))
227 (:result-types tagged-num)
228 (:note "inline fixnum arithmetic")
230 (cond ((and (sc-is x any-reg) (sc-is r any-reg) (not (location= x r)))
231 (inst lea r (make-ea :dword :base x :disp (fixnumize y))))
234 (inst add r (fixnumize y))))))
236 (define-vop (fast-+/signed=>signed fast-safe-arith-op)
238 (:args (x :scs (signed-reg) :target r
239 :load-if (not (and (sc-is x signed-stack)
241 (sc-is r signed-stack)
243 (y :scs (signed-reg signed-stack)))
244 (:arg-types signed-num signed-num)
245 (:results (r :scs (signed-reg) :from (:argument 0)
246 :load-if (not (and (sc-is x signed-stack)
249 (:result-types signed-num)
250 (:note "inline (signed-byte 32) arithmetic")
252 (cond ((and (sc-is x signed-reg) (sc-is y signed-reg) (sc-is r signed-reg)
253 (not (location= x r)))
254 (inst lea r (make-ea :dword :base x :index y :scale 1)))
259 ;;;; Special logand cases: (logand signed unsigned) => unsigned
261 (define-vop (fast-logand/signed-unsigned=>unsigned
262 fast-logand/unsigned=>unsigned)
263 (:args (x :target r :scs (signed-reg)
264 :load-if (not (and (sc-is x signed-stack)
265 (sc-is y unsigned-reg)
266 (sc-is r unsigned-stack)
268 (y :scs (unsigned-reg unsigned-stack)))
269 (:arg-types signed-num unsigned-num))
271 (define-vop (fast-logand-c/signed-unsigned=>unsigned
272 fast-logand-c/unsigned=>unsigned)
273 (:args (x :target r :scs (signed-reg signed-stack)))
274 (:arg-types signed-num (:constant (unsigned-byte 32))))
276 (define-vop (fast-logand/unsigned-signed=>unsigned
277 fast-logand/unsigned=>unsigned)
278 (:args (x :target r :scs (unsigned-reg)
279 :load-if (not (and (sc-is x unsigned-stack)
281 (sc-is r unsigned-stack)
283 (y :scs (signed-reg signed-stack)))
284 (:arg-types unsigned-num signed-num))
287 (define-vop (fast-+-c/signed=>signed fast-safe-arith-op)
289 (:args (x :target r :scs (signed-reg signed-stack)))
291 (:arg-types signed-num (:constant (signed-byte 32)))
292 (:results (r :scs (signed-reg)
293 :load-if (not (location= x r))))
294 (:result-types signed-num)
295 (:note "inline (signed-byte 32) arithmetic")
297 (cond ((and (sc-is x signed-reg) (sc-is r signed-reg)
298 (not (location= x r)))
299 (inst lea r (make-ea :dword :base x :disp y)))
306 (define-vop (fast-+/unsigned=>unsigned fast-safe-arith-op)
308 (:args (x :scs (unsigned-reg) :target r
309 :load-if (not (and (sc-is x unsigned-stack)
310 (sc-is y unsigned-reg)
311 (sc-is r unsigned-stack)
313 (y :scs (unsigned-reg unsigned-stack)))
314 (:arg-types unsigned-num unsigned-num)
315 (:results (r :scs (unsigned-reg) :from (:argument 0)
316 :load-if (not (and (sc-is x unsigned-stack)
317 (sc-is y unsigned-reg)
318 (sc-is r unsigned-stack)
320 (:result-types unsigned-num)
321 (:note "inline (unsigned-byte 32) arithmetic")
323 (cond ((and (sc-is x unsigned-reg) (sc-is y unsigned-reg)
324 (sc-is r unsigned-reg) (not (location= x r)))
325 (inst lea r (make-ea :dword :base x :index y :scale 1)))
330 (define-vop (fast-+-c/unsigned=>unsigned fast-safe-arith-op)
332 (:args (x :target r :scs (unsigned-reg unsigned-stack)))
334 (:arg-types unsigned-num (:constant (unsigned-byte 32)))
335 (:results (r :scs (unsigned-reg)
336 :load-if (not (location= x r))))
337 (:result-types unsigned-num)
338 (:note "inline (unsigned-byte 32) arithmetic")
340 (cond ((and (sc-is x unsigned-reg) (sc-is r unsigned-reg)
341 (not (location= x r)))
342 (inst lea r (make-ea :dword :base x :disp y)))
349 ;;;; multiplication and division
351 (define-vop (fast-*/fixnum=>fixnum fast-safe-arith-op)
353 ;; We need different loading characteristics.
354 (:args (x :scs (any-reg) :target r)
355 (y :scs (any-reg control-stack)))
356 (:arg-types tagged-num tagged-num)
357 (:results (r :scs (any-reg) :from (:argument 0)))
358 (:result-types tagged-num)
359 (:note "inline fixnum arithmetic")
365 (define-vop (fast-*-c/fixnum=>fixnum fast-safe-arith-op)
367 ;; We need different loading characteristics.
368 (:args (x :scs (any-reg control-stack)))
370 (:arg-types tagged-num (:constant (signed-byte 30)))
371 (:results (r :scs (any-reg)))
372 (:result-types tagged-num)
373 (:note "inline fixnum arithmetic")
377 (define-vop (fast-*/signed=>signed fast-safe-arith-op)
379 ;; We need different loading characteristics.
380 (:args (x :scs (signed-reg) :target r)
381 (y :scs (signed-reg signed-stack)))
382 (:arg-types signed-num signed-num)
383 (:results (r :scs (signed-reg) :from (:argument 0)))
384 (:result-types signed-num)
385 (:note "inline (signed-byte 32) arithmetic")
390 (define-vop (fast-*-c/signed=>signed fast-safe-arith-op)
392 ;; We need different loading characteristics.
393 (:args (x :scs (signed-reg signed-stack)))
395 (:arg-types signed-num (:constant (signed-byte 32)))
396 (:results (r :scs (signed-reg)))
397 (:result-types signed-num)
398 (:note "inline (signed-byte 32) arithmetic")
402 (define-vop (fast-*/unsigned=>unsigned fast-safe-arith-op)
404 (:args (x :scs (unsigned-reg) :target eax)
405 (y :scs (unsigned-reg unsigned-stack)))
406 (:arg-types unsigned-num unsigned-num)
407 (:temporary (:sc unsigned-reg :offset eax-offset :target r
408 :from (:argument 0) :to :result) eax)
409 (:temporary (:sc unsigned-reg :offset edx-offset
410 :from :eval :to :result) edx)
412 (:results (r :scs (unsigned-reg)))
413 (:result-types unsigned-num)
414 (:note "inline (unsigned-byte 32) arithmetic")
416 (:save-p :compute-only)
423 (define-vop (fast-truncate/fixnum=>fixnum fast-safe-arith-op)
424 (:translate truncate)
425 (:args (x :scs (any-reg) :target eax)
426 (y :scs (any-reg control-stack)))
427 (:arg-types tagged-num tagged-num)
428 (:temporary (:sc signed-reg :offset eax-offset :target quo
429 :from (:argument 0) :to (:result 0)) eax)
430 (:temporary (:sc unsigned-reg :offset edx-offset :target rem
431 :from (:argument 0) :to (:result 1)) edx)
432 (:results (quo :scs (any-reg))
433 (rem :scs (any-reg)))
434 (:result-types tagged-num tagged-num)
435 (:note "inline fixnum arithmetic")
437 (:save-p :compute-only)
439 (let ((zero (generate-error-code vop division-by-zero-error x y)))
440 (if (sc-is y any-reg)
441 (inst test y y) ; smaller instruction
447 (if (location= quo eax)
449 (inst lea quo (make-ea :dword :index eax :scale 4)))
452 (define-vop (fast-truncate-c/fixnum=>fixnum fast-safe-arith-op)
453 (:translate truncate)
454 (:args (x :scs (any-reg) :target eax))
456 (:arg-types tagged-num (:constant (signed-byte 30)))
457 (:temporary (:sc signed-reg :offset eax-offset :target quo
458 :from :argument :to (:result 0)) eax)
459 (:temporary (:sc any-reg :offset edx-offset :target rem
460 :from :eval :to (:result 1)) edx)
461 (:temporary (:sc any-reg :from :eval :to :result) y-arg)
462 (:results (quo :scs (any-reg))
463 (rem :scs (any-reg)))
464 (:result-types tagged-num tagged-num)
465 (:note "inline fixnum arithmetic")
467 (:save-p :compute-only)
471 (inst mov y-arg (fixnumize y))
472 (inst idiv eax y-arg)
473 (if (location= quo eax)
475 (inst lea quo (make-ea :dword :index eax :scale 4)))
478 (define-vop (fast-truncate/unsigned=>unsigned fast-safe-arith-op)
479 (:translate truncate)
480 (:args (x :scs (unsigned-reg) :target eax)
481 (y :scs (unsigned-reg signed-stack)))
482 (:arg-types unsigned-num unsigned-num)
483 (:temporary (:sc unsigned-reg :offset eax-offset :target quo
484 :from (:argument 0) :to (:result 0)) eax)
485 (:temporary (:sc unsigned-reg :offset edx-offset :target rem
486 :from (:argument 0) :to (:result 1)) edx)
487 (:results (quo :scs (unsigned-reg))
488 (rem :scs (unsigned-reg)))
489 (:result-types unsigned-num unsigned-num)
490 (:note "inline (unsigned-byte 32) arithmetic")
492 (:save-p :compute-only)
494 (let ((zero (generate-error-code vop division-by-zero-error x y)))
495 (if (sc-is y unsigned-reg)
496 (inst test y y) ; smaller instruction
505 (define-vop (fast-truncate-c/unsigned=>unsigned fast-safe-arith-op)
506 (:translate truncate)
507 (:args (x :scs (unsigned-reg) :target eax))
509 (:arg-types unsigned-num (:constant (unsigned-byte 32)))
510 (:temporary (:sc unsigned-reg :offset eax-offset :target quo
511 :from :argument :to (:result 0)) eax)
512 (:temporary (:sc unsigned-reg :offset edx-offset :target rem
513 :from :eval :to (:result 1)) edx)
514 (:temporary (:sc unsigned-reg :from :eval :to :result) y-arg)
515 (:results (quo :scs (unsigned-reg))
516 (rem :scs (unsigned-reg)))
517 (:result-types unsigned-num unsigned-num)
518 (:note "inline (unsigned-byte 32) arithmetic")
520 (:save-p :compute-only)
529 (define-vop (fast-truncate/signed=>signed fast-safe-arith-op)
530 (:translate truncate)
531 (:args (x :scs (signed-reg) :target eax)
532 (y :scs (signed-reg signed-stack)))
533 (:arg-types signed-num signed-num)
534 (:temporary (:sc signed-reg :offset eax-offset :target quo
535 :from (:argument 0) :to (:result 0)) eax)
536 (:temporary (:sc signed-reg :offset edx-offset :target rem
537 :from (:argument 0) :to (:result 1)) edx)
538 (:results (quo :scs (signed-reg))
539 (rem :scs (signed-reg)))
540 (:result-types signed-num signed-num)
541 (:note "inline (signed-byte 32) arithmetic")
543 (:save-p :compute-only)
545 (let ((zero (generate-error-code vop division-by-zero-error x y)))
546 (if (sc-is y signed-reg)
547 (inst test y y) ; smaller instruction
556 (define-vop (fast-truncate-c/signed=>signed fast-safe-arith-op)
557 (:translate truncate)
558 (:args (x :scs (signed-reg) :target eax))
560 (:arg-types signed-num (:constant (signed-byte 32)))
561 (:temporary (:sc signed-reg :offset eax-offset :target quo
562 :from :argument :to (:result 0)) eax)
563 (:temporary (:sc signed-reg :offset edx-offset :target rem
564 :from :eval :to (:result 1)) edx)
565 (:temporary (:sc signed-reg :from :eval :to :result) y-arg)
566 (:results (quo :scs (signed-reg))
567 (rem :scs (signed-reg)))
568 (:result-types signed-num signed-num)
569 (:note "inline (signed-byte 32) arithmetic")
571 (:save-p :compute-only)
576 (inst idiv eax y-arg)
583 (define-vop (fast-ash-c/fixnum=>fixnum)
586 (:args (number :scs (any-reg) :target result
587 :load-if (not (and (sc-is number any-reg control-stack)
588 (sc-is result any-reg control-stack)
589 (location= number result)))))
591 (:arg-types tagged-num (:constant integer))
592 (:results (result :scs (any-reg)
593 :load-if (not (and (sc-is number control-stack)
594 (sc-is result control-stack)
595 (location= number result)))))
596 (:result-types tagged-num)
599 (cond ((and (= amount 1) (not (location= number result)))
600 (inst lea result (make-ea :dword :index number :scale 2)))
601 ((and (= amount 2) (not (location= number result)))
602 (inst lea result (make-ea :dword :index number :scale 4)))
603 ((and (= amount 3) (not (location= number result)))
604 (inst lea result (make-ea :dword :index number :scale 8)))
607 (cond ((plusp amount)
608 ;; We don't have to worry about overflow because of the
609 ;; result type restriction.
610 (inst shl result amount))
612 ;; If the amount is greater than 31, only shift by 31. We
613 ;; have to do this because the shift instructions only look
614 ;; at the low five bits of the result.
615 (inst sar result (min 31 (- amount)))
616 ;; Fixnum correction.
617 (inst and result (lognot fixnum-tag-mask))))))))
619 (define-vop (fast-ash-left/fixnum=>fixnum)
621 (:args (number :scs (any-reg) :target result
622 :load-if (not (and (sc-is number control-stack)
623 (sc-is result control-stack)
624 (location= number result))))
625 (amount :scs (unsigned-reg) :target ecx))
626 (:arg-types tagged-num positive-fixnum)
627 (:temporary (:sc unsigned-reg :offset ecx-offset :from (:argument 1)) ecx)
628 (:results (result :scs (any-reg) :from (:argument 0)
629 :load-if (not (and (sc-is number control-stack)
630 (sc-is result control-stack)
631 (location= number result)))))
632 (:result-types tagged-num)
638 ;; The result-type ensures us that this shift will not overflow.
639 (inst shl result :cl)))
641 (define-vop (fast-ash-c/signed=>signed)
644 (:args (number :scs (signed-reg) :target result
645 :load-if (not (and (sc-is number signed-stack)
646 (sc-is result signed-stack)
647 (location= number result)))))
649 (:arg-types signed-num (:constant integer))
650 (:results (result :scs (signed-reg)
651 :load-if (not (and (sc-is number signed-stack)
652 (sc-is result signed-stack)
653 (location= number result)))))
654 (:result-types signed-num)
657 (cond ((and (= amount 1) (not (location= number result)))
658 (inst lea result (make-ea :dword :index number :scale 2)))
659 ((and (= amount 2) (not (location= number result)))
660 (inst lea result (make-ea :dword :index number :scale 4)))
661 ((and (= amount 3) (not (location= number result)))
662 (inst lea result (make-ea :dword :index number :scale 8)))
665 (cond ((plusp amount) (inst shl result amount))
666 (t (inst sar result (min 31 (- amount)))))))))
668 (define-vop (fast-ash-c/unsigned=>unsigned)
671 (:args (number :scs (unsigned-reg) :target result
672 :load-if (not (and (sc-is number unsigned-stack)
673 (sc-is result unsigned-stack)
674 (location= number result)))))
676 (:arg-types unsigned-num (:constant integer))
677 (:results (result :scs (unsigned-reg)
678 :load-if (not (and (sc-is number unsigned-stack)
679 (sc-is result unsigned-stack)
680 (location= number result)))))
681 (:result-types unsigned-num)
684 (cond ((and (= amount 1) (not (location= number result)))
685 (inst lea result (make-ea :dword :index number :scale 2)))
686 ((and (= amount 2) (not (location= number result)))
687 (inst lea result (make-ea :dword :index number :scale 4)))
688 ((and (= amount 3) (not (location= number result)))
689 (inst lea result (make-ea :dword :index number :scale 8)))
692 (cond ((< -32 amount 32)
693 ;; this code is used both in ASH and ASH-MOD32, so
696 (inst shl result amount)
697 (inst shr result (- amount))))
698 (t (if (sc-is result unsigned-reg)
699 (inst xor result result)
700 (inst mov result 0))))))))
702 (define-vop (fast-ash-left/signed=>signed)
704 (:args (number :scs (signed-reg) :target result
705 :load-if (not (and (sc-is number signed-stack)
706 (sc-is result signed-stack)
707 (location= number result))))
708 (amount :scs (unsigned-reg) :target ecx))
709 (:arg-types signed-num positive-fixnum)
710 (:temporary (:sc unsigned-reg :offset ecx-offset :from (:argument 1)) ecx)
711 (:results (result :scs (signed-reg) :from (:argument 0)
712 :load-if (not (and (sc-is number signed-stack)
713 (sc-is result signed-stack)
714 (location= number result)))))
715 (:result-types signed-num)
721 (inst shl result :cl)))
723 (define-vop (fast-ash-left/unsigned=>unsigned)
725 (:args (number :scs (unsigned-reg) :target result
726 :load-if (not (and (sc-is number unsigned-stack)
727 (sc-is result unsigned-stack)
728 (location= number result))))
729 (amount :scs (unsigned-reg) :target ecx))
730 (:arg-types unsigned-num positive-fixnum)
731 (:temporary (:sc unsigned-reg :offset ecx-offset :from (:argument 1)) ecx)
732 (:results (result :scs (unsigned-reg) :from (:argument 0)
733 :load-if (not (and (sc-is number unsigned-stack)
734 (sc-is result unsigned-stack)
735 (location= number result)))))
736 (:result-types unsigned-num)
742 (inst shl result :cl)))
744 (define-vop (fast-ash/signed=>signed)
747 (:args (number :scs (signed-reg) :target result)
748 (amount :scs (signed-reg) :target ecx))
749 (:arg-types signed-num signed-num)
750 (:results (result :scs (signed-reg) :from (:argument 0)))
751 (:result-types signed-num)
752 (:temporary (:sc signed-reg :offset ecx-offset :from (:argument 1)) ecx)
758 (inst jmp :ns positive)
764 (inst sar result :cl)
768 ;; The result-type ensures us that this shift will not overflow.
769 (inst shl result :cl)
773 (define-vop (fast-ash/unsigned=>unsigned)
776 (:args (number :scs (unsigned-reg) :target result)
777 (amount :scs (signed-reg) :target ecx))
778 (:arg-types unsigned-num signed-num)
779 (:results (result :scs (unsigned-reg) :from (:argument 0)))
780 (:result-types unsigned-num)
781 (:temporary (:sc signed-reg :offset ecx-offset :from (:argument 1)) ecx)
787 (inst jmp :ns positive)
791 (inst xor result result)
794 (inst shr result :cl)
798 ;; The result-type ensures us that this shift will not overflow.
799 (inst shl result :cl)
805 (defknown %lea (integer integer (member 1 2 4 8) (signed-byte 32))
807 (foldable flushable movable))
809 (defoptimizer (%lea derive-type) ((base index scale disp))
810 (when (and (constant-lvar-p scale)
811 (constant-lvar-p disp))
812 (let ((scale (lvar-value scale))
813 (disp (lvar-value disp))
814 (base-type (lvar-type base))
815 (index-type (lvar-type index)))
816 (when (and (numeric-type-p base-type)
817 (numeric-type-p index-type))
818 (let ((base-lo (numeric-type-low base-type))
819 (base-hi (numeric-type-high base-type))
820 (index-lo (numeric-type-low index-type))
821 (index-hi (numeric-type-high index-type)))
822 (make-numeric-type :class 'integer
824 :low (when (and base-lo index-lo)
825 (+ base-lo (* index-lo scale) disp))
826 :high (when (and base-hi index-hi)
827 (+ base-hi (* index-hi scale) disp))))))))
829 (defun %lea (base index scale disp)
830 (+ base (* index scale) disp))
834 (define-vop (%lea/unsigned=>unsigned)
837 (:args (base :scs (unsigned-reg))
838 (index :scs (unsigned-reg)))
840 (:arg-types unsigned-num unsigned-num
841 (:constant (member 1 2 4 8))
842 (:constant (signed-byte 32)))
843 (:results (r :scs (unsigned-reg)))
844 (:result-types unsigned-num)
846 (inst lea r (make-ea :dword :base base :index index
847 :scale scale :disp disp))))
849 (define-vop (%lea/signed=>signed)
852 (:args (base :scs (signed-reg))
853 (index :scs (signed-reg)))
855 (:arg-types signed-num signed-num
856 (:constant (member 1 2 4 8))
857 (:constant (signed-byte 32)))
858 (:results (r :scs (signed-reg)))
859 (:result-types signed-num)
861 (inst lea r (make-ea :dword :base base :index index
862 :scale scale :disp disp))))
864 (define-vop (%lea/fixnum=>fixnum)
867 (:args (base :scs (any-reg))
868 (index :scs (any-reg)))
870 (:arg-types tagged-num tagged-num
871 (:constant (member 1 2 4 8))
872 (:constant (signed-byte 32)))
873 (:results (r :scs (any-reg)))
874 (:result-types tagged-num)
876 (inst lea r (make-ea :dword :base base :index index
877 :scale scale :disp disp))))
879 ;;; FIXME: before making knowledge of this too public, it needs to be
880 ;;; fixed so that it's actually _faster_ than the non-CMOV version; at
881 ;;; least on my Celeron-XXX laptop, this version is marginally slower
882 ;;; than the above version with branches. -- CSR, 2003-09-04
883 (define-vop (fast-cmov-ash/unsigned=>unsigned)
886 (:args (number :scs (unsigned-reg) :target result)
887 (amount :scs (signed-reg) :target ecx))
888 (:arg-types unsigned-num signed-num)
889 (:results (result :scs (unsigned-reg) :from (:argument 0)))
890 (:result-types unsigned-num)
891 (:temporary (:sc signed-reg :offset ecx-offset :from (:argument 1)) ecx)
892 (:temporary (:sc any-reg :from (:eval 0) :to (:eval 1)) zero)
894 (:guard (member :cmov *backend-subfeatures*))
899 (inst jmp :ns positive)
902 (inst shr result :cl)
904 (inst cmov :nbe result zero)
908 ;; The result-type ensures us that this shift will not overflow.
909 (inst shl result :cl)
913 (define-vop (signed-byte-32-len)
914 (:translate integer-length)
915 (:note "inline (signed-byte 32) integer-length")
917 (:args (arg :scs (signed-reg) :target res))
918 (:arg-types signed-num)
919 (:results (res :scs (unsigned-reg)))
920 (:result-types unsigned-num)
935 (define-vop (unsigned-byte-32-len)
936 (:translate integer-length)
937 (:note "inline (unsigned-byte 32) integer-length")
939 (:args (arg :scs (unsigned-reg)))
940 (:arg-types unsigned-num)
941 (:results (res :scs (unsigned-reg)))
942 (:result-types unsigned-num)
952 (define-vop (unsigned-byte-32-count)
953 (:translate logcount)
954 (:note "inline (unsigned-byte 32) logcount")
956 (:args (arg :scs (unsigned-reg) :target result))
957 (:arg-types unsigned-num)
958 (:results (result :scs (unsigned-reg)))
959 (:result-types positive-fixnum)
960 (:temporary (:sc unsigned-reg) temp)
962 ;; See the comments below for how the algorithm works. The tricks
963 ;; used can be found for example in AMD's software optimization
964 ;; guide or at "http://www.hackersdelight.org/HDcode/pop.cc" in the
966 ;; Calculate 2-bit sums. Note that the value of a two-digit binary
967 ;; number is the sum of the right digit and twice the left digit.
968 ;; Thus we can calculate the sum of the two digits by shifting the
969 ;; left digit to the right position and doing a two-bit subtraction.
970 ;; This subtraction will never create a borrow and thus can be made
971 ;; on all 16 2-digit numbers at once.
975 (inst and result #x55555555)
976 (inst sub temp result)
977 ;; Calculate 4-bit sums by straightforward shift, mask and add.
978 ;; Note that we shift the source operand of the MOV and not its
979 ;; destination so that the SHR and the MOV can execute in the same
981 (inst mov result temp)
983 (inst and result #x33333333)
984 (inst and temp #x33333333)
985 (inst add result temp)
986 ;; Calculate 8-bit sums. Since each sum is at most 8, which fits
987 ;; into 4 bits, we can apply the mask after the addition, saving one
989 (inst mov temp result)
991 (inst add result temp)
992 (inst and result #x0f0f0f0f)
993 ;; Calculate the two 16-bit sums and the 32-bit sum. No masking is
994 ;; necessary inbetween since the final sum is at most 32 which fits
996 (inst mov temp result)
998 (inst add result temp)
999 (inst mov temp result)
1000 (inst shr result 16)
1001 (inst add result temp)
1002 (inst and result #xff)))
1004 ;;;; binary conditional VOPs
1006 (define-vop (fast-conditional)
1008 (:info target not-p)
1011 (:policy :fast-safe))
1013 (define-vop (fast-conditional/fixnum fast-conditional)
1014 (:args (x :scs (any-reg)
1015 :load-if (not (and (sc-is x control-stack)
1016 (sc-is y any-reg))))
1017 (y :scs (any-reg control-stack)))
1018 (:arg-types tagged-num tagged-num)
1019 (:note "inline fixnum comparison"))
1021 (define-vop (fast-conditional-c/fixnum fast-conditional/fixnum)
1022 (:args (x :scs (any-reg control-stack)))
1023 (:arg-types tagged-num (:constant (signed-byte 30)))
1024 (:info target not-p y))
1026 (define-vop (fast-conditional/signed fast-conditional)
1027 (:args (x :scs (signed-reg)
1028 :load-if (not (and (sc-is x signed-stack)
1029 (sc-is y signed-reg))))
1030 (y :scs (signed-reg signed-stack)))
1031 (:arg-types signed-num signed-num)
1032 (:note "inline (signed-byte 32) comparison"))
1034 (define-vop (fast-conditional-c/signed fast-conditional/signed)
1035 (:args (x :scs (signed-reg signed-stack)))
1036 (:arg-types signed-num (:constant (signed-byte 32)))
1037 (:info target not-p y))
1039 (define-vop (fast-conditional/unsigned fast-conditional)
1040 (:args (x :scs (unsigned-reg)
1041 :load-if (not (and (sc-is x unsigned-stack)
1042 (sc-is y unsigned-reg))))
1043 (y :scs (unsigned-reg unsigned-stack)))
1044 (:arg-types unsigned-num unsigned-num)
1045 (:note "inline (unsigned-byte 32) comparison"))
1047 (define-vop (fast-conditional-c/unsigned fast-conditional/unsigned)
1048 (:args (x :scs (unsigned-reg unsigned-stack)))
1049 (:arg-types unsigned-num (:constant (unsigned-byte 32)))
1050 (:info target not-p y))
1052 (macrolet ((define-logtest-vops ()
1054 ,@(loop for suffix in '(/fixnum -c/fixnum
1056 /unsigned -c/unsigned)
1057 for cost in '(4 3 6 5 6 5)
1059 `(define-vop (,(symbolicate "FAST-LOGTEST" suffix)
1060 ,(symbolicate "FAST-CONDITIONAL" suffix))
1061 (:translate logtest)
1063 (emit-optimized-test-inst x
1064 ,(if (eq suffix '-c/fixnum)
1067 (inst jmp (if not-p :e :ne) target)))))))
1068 (define-logtest-vops))
1070 (defknown %logbitp (integer unsigned-byte) boolean
1071 (movable foldable flushable always-translatable))
1073 ;;; only for constant folding within the compiler
1074 (defun %logbitp (integer index)
1075 (logbitp index integer))
1077 ;;; too much work to do the non-constant case (maybe?)
1078 (define-vop (fast-logbitp-c/fixnum fast-conditional-c/fixnum)
1079 (:translate %logbitp)
1080 (:arg-types tagged-num (:constant (integer 0 29)))
1082 (inst bt x (+ y n-fixnum-tag-bits))
1083 (inst jmp (if not-p :nc :c) target)))
1085 (define-vop (fast-logbitp/signed fast-conditional/signed)
1086 (:args (x :scs (signed-reg signed-stack))
1087 (y :scs (signed-reg)))
1088 (:translate %logbitp)
1091 (inst jmp (if not-p :nc :c) target)))
1093 (define-vop (fast-logbitp-c/signed fast-conditional-c/signed)
1094 (:translate %logbitp)
1095 (:arg-types signed-num (:constant (integer 0 31)))
1098 (inst jmp (if not-p :nc :c) target)))
1100 (define-vop (fast-logbitp/unsigned fast-conditional/unsigned)
1101 (:args (x :scs (unsigned-reg unsigned-stack))
1102 (y :scs (unsigned-reg)))
1103 (:translate %logbitp)
1106 (inst jmp (if not-p :nc :c) target)))
1108 (define-vop (fast-logbitp-c/unsigned fast-conditional-c/unsigned)
1109 (:translate %logbitp)
1110 (:arg-types unsigned-num (:constant (integer 0 31)))
1113 (inst jmp (if not-p :nc :c) target)))
1115 (macrolet ((define-conditional-vop (tran cond unsigned not-cond not-unsigned)
1118 (lambda (suffix cost signed)
1119 `(define-vop (;; FIXME: These could be done more
1120 ;; cleanly with SYMBOLICATE.
1121 ,(intern (format nil "~:@(FAST-IF-~A~A~)"
1124 (format nil "~:@(FAST-CONDITIONAL~A~)"
1129 ,(if (eq suffix '-c/fixnum)
1140 '(/fixnum -c/fixnum /signed -c/signed /unsigned -c/unsigned)
1142 '(t t t t nil nil)))))
1144 (define-conditional-vop < :l :b :ge :ae)
1145 (define-conditional-vop > :g :a :le :be))
1147 (define-vop (fast-if-eql/signed fast-conditional/signed)
1151 (inst jmp (if not-p :ne :e) target)))
1153 (define-vop (fast-if-eql-c/signed fast-conditional-c/signed)
1156 (cond ((and (sc-is x signed-reg) (zerop y))
1157 (inst test x x)) ; smaller instruction
1160 (inst jmp (if not-p :ne :e) target)))
1162 (define-vop (fast-if-eql/unsigned fast-conditional/unsigned)
1166 (inst jmp (if not-p :ne :e) target)))
1168 (define-vop (fast-if-eql-c/unsigned fast-conditional-c/unsigned)
1171 (cond ((and (sc-is x unsigned-reg) (zerop y))
1172 (inst test x x)) ; smaller instruction
1175 (inst jmp (if not-p :ne :e) target)))
1177 ;;; EQL/FIXNUM is funny because the first arg can be of any type, not just a
1180 ;;; These versions specify a fixnum restriction on their first arg. We have
1181 ;;; also generic-eql/fixnum VOPs which are the same, but have no restriction on
1182 ;;; the first arg and a higher cost. The reason for doing this is to prevent
1183 ;;; fixnum specific operations from being used on word integers, spuriously
1184 ;;; consing the argument.
1186 (define-vop (fast-eql/fixnum fast-conditional)
1187 (:args (x :scs (any-reg)
1188 :load-if (not (and (sc-is x control-stack)
1189 (sc-is y any-reg))))
1190 (y :scs (any-reg control-stack)))
1191 (:arg-types tagged-num tagged-num)
1192 (:note "inline fixnum comparison")
1196 (inst jmp (if not-p :ne :e) target)))
1197 (define-vop (generic-eql/fixnum fast-eql/fixnum)
1198 (:args (x :scs (any-reg descriptor-reg)
1199 :load-if (not (and (sc-is x control-stack)
1200 (sc-is y any-reg))))
1201 (y :scs (any-reg control-stack)))
1202 (:arg-types * tagged-num)
1205 (define-vop (fast-eql-c/fixnum fast-conditional/fixnum)
1206 (:args (x :scs (any-reg control-stack)))
1207 (:arg-types tagged-num (:constant (signed-byte 30)))
1208 (:info target not-p y)
1211 (cond ((and (sc-is x any-reg) (zerop y))
1212 (inst test x x)) ; smaller instruction
1214 (inst cmp x (fixnumize y))))
1215 (inst jmp (if not-p :ne :e) target)))
1216 (define-vop (generic-eql-c/fixnum fast-eql-c/fixnum)
1217 (:args (x :scs (any-reg descriptor-reg control-stack)))
1218 (:arg-types * (:constant (signed-byte 30)))
1221 ;;;; 32-bit logical operations
1223 (define-vop (merge-bits)
1224 (:translate merge-bits)
1225 (:args (shift :scs (signed-reg unsigned-reg) :target ecx)
1226 (prev :scs (unsigned-reg) :target result)
1227 (next :scs (unsigned-reg)))
1228 (:arg-types tagged-num unsigned-num unsigned-num)
1229 (:temporary (:sc signed-reg :offset ecx-offset :from (:argument 0)) ecx)
1230 (:results (result :scs (unsigned-reg) :from (:argument 1)))
1231 (:result-types unsigned-num)
1232 (:policy :fast-safe)
1236 (inst shrd result next :cl)))
1238 ;;; Only the lower 5 bits of the shift amount are significant.
1239 (define-vop (shift-towards-someplace)
1240 (:policy :fast-safe)
1241 (:args (num :scs (unsigned-reg) :target r)
1242 (amount :scs (signed-reg) :target ecx))
1243 (:arg-types unsigned-num tagged-num)
1244 (:temporary (:sc signed-reg :offset ecx-offset :from (:argument 1)) ecx)
1245 (:results (r :scs (unsigned-reg) :from (:argument 0)))
1246 (:result-types unsigned-num))
1248 (define-vop (shift-towards-start shift-towards-someplace)
1249 (:translate shift-towards-start)
1250 (:note "SHIFT-TOWARDS-START")
1256 (define-vop (shift-towards-end shift-towards-someplace)
1257 (:translate shift-towards-end)
1258 (:note "SHIFT-TOWARDS-END")
1264 ;;;; Modular functions
1265 (defmacro define-mod-binop ((name prototype) function)
1266 `(define-vop (,name ,prototype)
1267 (:args (x :target r :scs (unsigned-reg signed-reg)
1268 :load-if (not (and (or (sc-is x unsigned-stack)
1269 (sc-is x signed-stack))
1270 (or (sc-is y unsigned-reg)
1271 (sc-is y signed-reg))
1272 (or (sc-is r unsigned-stack)
1273 (sc-is r signed-stack))
1275 (y :scs (unsigned-reg signed-reg unsigned-stack signed-stack)))
1276 (:arg-types untagged-num untagged-num)
1277 (:results (r :scs (unsigned-reg signed-reg) :from (:argument 0)
1278 :load-if (not (and (or (sc-is x unsigned-stack)
1279 (sc-is x signed-stack))
1280 (or (sc-is y unsigned-reg)
1281 (sc-is y unsigned-reg))
1282 (or (sc-is r unsigned-stack)
1283 (sc-is r unsigned-stack))
1285 (:result-types unsigned-num)
1286 (:translate ,function)))
1287 (defmacro define-mod-binop-c ((name prototype) function)
1288 `(define-vop (,name ,prototype)
1289 (:args (x :target r :scs (unsigned-reg signed-reg)
1290 :load-if (not (and (or (sc-is x unsigned-stack)
1291 (sc-is x signed-stack))
1292 (or (sc-is r unsigned-stack)
1293 (sc-is r signed-stack))
1296 (:arg-types untagged-num (:constant (or (unsigned-byte 32) (signed-byte 32))))
1297 (:results (r :scs (unsigned-reg signed-reg) :from (:argument 0)
1298 :load-if (not (and (or (sc-is x unsigned-stack)
1299 (sc-is x signed-stack))
1300 (or (sc-is r unsigned-stack)
1301 (sc-is r unsigned-stack))
1303 (:result-types unsigned-num)
1304 (:translate ,function)))
1306 (macrolet ((def (name -c-p)
1307 (let ((fun32 (intern (format nil "~S-MOD32" name)))
1308 (vopu (intern (format nil "FAST-~S/UNSIGNED=>UNSIGNED" name)))
1309 (vopcu (intern (format nil "FAST-~S-C/UNSIGNED=>UNSIGNED" name)))
1310 (vopf (intern (format nil "FAST-~S/FIXNUM=>FIXNUM" name)))
1311 (vopcf (intern (format nil "FAST-~S-C/FIXNUM=>FIXNUM" name)))
1312 (vop32u (intern (format nil "FAST-~S-MOD32/WORD=>UNSIGNED" name)))
1313 (vop32f (intern (format nil "FAST-~S-MOD32/FIXNUM=>FIXNUM" name)))
1314 (vop32cu (intern (format nil "FAST-~S-MOD32-C/WORD=>UNSIGNED" name)))
1315 (vop32cf (intern (format nil "FAST-~S-MOD32-C/FIXNUM=>FIXNUM" name)))
1316 (sfun30 (intern (format nil "~S-SMOD30" name)))
1317 (svop30f (intern (format nil "FAST-~S-SMOD30/FIXNUM=>FIXNUM" name)))
1318 (svop30cf (intern (format nil "FAST-~S-SMOD30-C/FIXNUM=>FIXNUM" name))))
1320 (define-modular-fun ,fun32 (x y) ,name :unsigned 32)
1321 (define-modular-fun ,sfun30 (x y) ,name :signed 30)
1322 (define-mod-binop (,vop32u ,vopu) ,fun32)
1323 (define-vop (,vop32f ,vopf) (:translate ,fun32))
1324 (define-vop (,svop30f ,vopf) (:translate ,sfun30))
1326 `((define-mod-binop-c (,vop32cu ,vopcu) ,fun32)
1327 (define-vop (,svop30cf ,vopcf) (:translate ,sfun30))))))))
1330 ;; (no -C variant as x86 MUL instruction doesn't take an immediate)
1334 (define-vop (fast-ash-left-mod32-c/unsigned=>unsigned
1335 fast-ash-c/unsigned=>unsigned)
1336 (:translate ash-left-mod32))
1338 (define-vop (fast-ash-left-mod32/unsigned=>unsigned
1339 fast-ash-left/unsigned=>unsigned))
1340 (deftransform ash-left-mod32 ((integer count)
1341 ((unsigned-byte 32) (unsigned-byte 5)))
1342 (when (sb!c::constant-lvar-p count)
1343 (sb!c::give-up-ir1-transform))
1344 '(%primitive fast-ash-left-mod32/unsigned=>unsigned integer count))
1346 (define-vop (fast-ash-left-smod30-c/fixnum=>fixnum
1347 fast-ash-c/fixnum=>fixnum)
1348 (:translate ash-left-smod30))
1350 (define-vop (fast-ash-left-smod30/fixnum=>fixnum
1351 fast-ash-left/fixnum=>fixnum))
1352 (deftransform ash-left-smod30 ((integer count)
1353 ((signed-byte 30) (unsigned-byte 5)))
1354 (when (sb!c::constant-lvar-p count)
1355 (sb!c::give-up-ir1-transform))
1356 '(%primitive fast-ash-left-smod30/fixnum=>fixnum integer count))
1360 (defknown sb!vm::%lea-mod32 (integer integer (member 1 2 4 8) (signed-byte 32))
1362 (foldable flushable movable))
1363 (defknown sb!vm::%lea-smod30 (integer integer (member 1 2 4 8) (signed-byte 32))
1365 (foldable flushable movable))
1367 (define-modular-fun-optimizer %lea ((base index scale disp) :unsigned :width width)
1368 (when (and (<= width 32)
1369 (constant-lvar-p scale)
1370 (constant-lvar-p disp))
1371 (cut-to-width base :unsigned width)
1372 (cut-to-width index :unsigned width)
1373 'sb!vm::%lea-mod32))
1374 (define-modular-fun-optimizer %lea ((base index scale disp) :signed :width width)
1375 (when (and (<= width 30)
1376 (constant-lvar-p scale)
1377 (constant-lvar-p disp))
1378 (cut-to-width base :signed width)
1379 (cut-to-width index :signed width)
1380 'sb!vm::%lea-smod30))
1384 (defun sb!vm::%lea-mod32 (base index scale disp)
1385 (ldb (byte 32 0) (%lea base index scale disp)))
1386 (defun sb!vm::%lea-smod30 (base index scale disp)
1387 (mask-signed-field 30 (%lea base index scale disp))))
1390 (defun sb!vm::%lea-mod32 (base index scale disp)
1391 (let ((base (logand base #xffffffff))
1392 (index (logand index #xffffffff)))
1393 ;; can't use modular version of %LEA, as we only have VOPs for
1394 ;; constant SCALE and DISP.
1395 (ldb (byte 32 0) (+ base (* index scale) disp))))
1396 (defun sb!vm::%lea-smod30 (base index scale disp)
1397 (let ((base (mask-signed-field 30 base))
1398 (index (mask-signed-field 30 index)))
1399 ;; can't use modular version of %LEA, as we only have VOPs for
1400 ;; constant SCALE and DISP.
1401 (mask-signed-field 30 (+ base (* index scale) disp)))))
1403 (in-package "SB!VM")
1405 (define-vop (%lea-mod32/unsigned=>unsigned
1406 %lea/unsigned=>unsigned)
1407 (:translate %lea-mod32))
1408 (define-vop (%lea-smod30/fixnum=>fixnum
1409 %lea/fixnum=>fixnum)
1410 (:translate %lea-smod30))
1412 ;;; logical operations
1413 (define-modular-fun lognot-mod32 (x) lognot :unsigned 32)
1414 (define-vop (lognot-mod32/word=>unsigned)
1415 (:translate lognot-mod32)
1416 (:args (x :scs (unsigned-reg signed-reg unsigned-stack signed-stack) :target r
1417 :load-if (not (and (or (sc-is x unsigned-stack)
1418 (sc-is x signed-stack))
1419 (or (sc-is r unsigned-stack)
1420 (sc-is r signed-stack))
1422 (:arg-types unsigned-num)
1423 (:results (r :scs (unsigned-reg)
1424 :load-if (not (and (or (sc-is x unsigned-stack)
1425 (sc-is x signed-stack))
1426 (or (sc-is r unsigned-stack)
1427 (sc-is r signed-stack))
1428 (sc-is r unsigned-stack)
1430 (:result-types unsigned-num)
1431 (:policy :fast-safe)
1436 (define-modular-fun logxor-mod32 (x y) logxor :unsigned 32)
1437 (define-mod-binop (fast-logxor-mod32/word=>unsigned
1438 fast-logxor/unsigned=>unsigned)
1440 (define-mod-binop-c (fast-logxor-mod32-c/word=>unsigned
1441 fast-logxor-c/unsigned=>unsigned)
1443 (define-vop (fast-logxor-mod32/fixnum=>fixnum
1444 fast-logxor/fixnum=>fixnum)
1445 (:translate logxor-mod32))
1446 (define-vop (fast-logxor-mod32-c/fixnum=>fixnum
1447 fast-logxor-c/fixnum=>fixnum)
1448 (:translate logxor-mod32))
1450 (define-source-transform logeqv (&rest args)
1451 (if (oddp (length args))
1453 `(lognot (logxor ,@args))))
1454 (define-source-transform logandc1 (x y)
1455 `(logand (lognot ,x) ,y))
1456 (define-source-transform logandc2 (x y)
1457 `(logand ,x (lognot ,y)))
1458 (define-source-transform logorc1 (x y)
1459 `(logior (lognot ,x) ,y))
1460 (define-source-transform logorc2 (x y)
1461 `(logior ,x (lognot ,y)))
1462 (define-source-transform lognor (x y)
1463 `(lognot (logior ,x ,y)))
1464 (define-source-transform lognand (x y)
1465 `(lognot (logand ,x ,y)))
1469 (define-vop (bignum-length get-header-data)
1470 (:translate sb!bignum:%bignum-length)
1471 (:policy :fast-safe))
1473 (define-vop (bignum-set-length set-header-data)
1474 (:translate sb!bignum:%bignum-set-length)
1475 (:policy :fast-safe))
1477 (define-full-reffer bignum-ref * bignum-digits-offset other-pointer-lowtag
1478 (unsigned-reg) unsigned-num sb!bignum:%bignum-ref)
1480 (define-full-setter bignum-set * bignum-digits-offset other-pointer-lowtag
1481 (unsigned-reg) unsigned-num sb!bignum:%bignum-set)
1483 (define-vop (digit-0-or-plus)
1484 (:translate sb!bignum:%digit-0-or-plusp)
1485 (:policy :fast-safe)
1486 (:args (digit :scs (unsigned-reg)))
1487 (:arg-types unsigned-num)
1489 (:info target not-p)
1491 (inst or digit digit)
1492 (inst jmp (if not-p :s :ns) target)))
1495 ;;; For add and sub with carry the sc of carry argument is any-reg so
1496 ;;; that it may be passed as a fixnum or word and thus may be 0, 1, or
1497 ;;; 4. This is easy to deal with and may save a fixnum-word
1499 (define-vop (add-w/carry)
1500 (:translate sb!bignum:%add-with-carry)
1501 (:policy :fast-safe)
1502 (:args (a :scs (unsigned-reg) :target result)
1503 (b :scs (unsigned-reg unsigned-stack) :to :eval)
1504 (c :scs (any-reg) :target temp))
1505 (:arg-types unsigned-num unsigned-num positive-fixnum)
1506 (:temporary (:sc any-reg :from (:argument 2) :to :eval) temp)
1507 (:results (result :scs (unsigned-reg) :from (:argument 0))
1508 (carry :scs (unsigned-reg)))
1509 (:result-types unsigned-num positive-fixnum)
1513 (inst neg temp) ; Set the carry flag to 0 if c=0 else to 1
1516 (inst adc carry carry)))
1518 ;;; Note: the borrow is 1 for no borrow and 0 for a borrow, the opposite
1519 ;;; of the x86 convention.
1520 (define-vop (sub-w/borrow)
1521 (:translate sb!bignum:%subtract-with-borrow)
1522 (:policy :fast-safe)
1523 (:args (a :scs (unsigned-reg) :to :eval :target result)
1524 (b :scs (unsigned-reg unsigned-stack) :to :result)
1525 (c :scs (any-reg control-stack)))
1526 (:arg-types unsigned-num unsigned-num positive-fixnum)
1527 (:results (result :scs (unsigned-reg) :from :eval)
1528 (borrow :scs (unsigned-reg)))
1529 (:result-types unsigned-num positive-fixnum)
1531 (inst cmp c 1) ; Set the carry flag to 1 if c=0 else to 0
1535 (inst sbb borrow 0)))
1538 (define-vop (bignum-mult-and-add-3-arg)
1539 (:translate sb!bignum:%multiply-and-add)
1540 (:policy :fast-safe)
1541 (:args (x :scs (unsigned-reg) :target eax)
1542 (y :scs (unsigned-reg unsigned-stack))
1543 (carry-in :scs (unsigned-reg unsigned-stack)))
1544 (:arg-types unsigned-num unsigned-num unsigned-num)
1545 (:temporary (:sc unsigned-reg :offset eax-offset :from (:argument 0)
1546 :to (:result 1) :target lo) eax)
1547 (:temporary (:sc unsigned-reg :offset edx-offset :from (:argument 1)
1548 :to (:result 0) :target hi) edx)
1549 (:results (hi :scs (unsigned-reg))
1550 (lo :scs (unsigned-reg)))
1551 (:result-types unsigned-num unsigned-num)
1555 (inst add eax carry-in)
1560 (define-vop (bignum-mult-and-add-4-arg)
1561 (:translate sb!bignum:%multiply-and-add)
1562 (:policy :fast-safe)
1563 (:args (x :scs (unsigned-reg) :target eax)
1564 (y :scs (unsigned-reg unsigned-stack))
1565 (prev :scs (unsigned-reg unsigned-stack))
1566 (carry-in :scs (unsigned-reg unsigned-stack)))
1567 (:arg-types unsigned-num 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)
1580 (inst add eax carry-in)
1586 (define-vop (bignum-mult)
1587 (:translate sb!bignum:%multiply)
1588 (:policy :fast-safe)
1589 (:args (x :scs (unsigned-reg) :target eax)
1590 (y :scs (unsigned-reg unsigned-stack)))
1591 (:arg-types unsigned-num unsigned-num)
1592 (:temporary (:sc unsigned-reg :offset eax-offset :from (:argument 0)
1593 :to (:result 1) :target lo) eax)
1594 (:temporary (:sc unsigned-reg :offset edx-offset :from (:argument 1)
1595 :to (:result 0) :target hi) edx)
1596 (:results (hi :scs (unsigned-reg))
1597 (lo :scs (unsigned-reg)))
1598 (:result-types unsigned-num unsigned-num)
1605 (define-vop (bignum-lognot lognot-mod32/word=>unsigned)
1606 (:translate sb!bignum:%lognot))
1608 (define-vop (fixnum-to-digit)
1609 (:translate sb!bignum:%fixnum-to-digit)
1610 (:policy :fast-safe)
1611 (:args (fixnum :scs (any-reg control-stack) :target digit))
1612 (:arg-types tagged-num)
1613 (:results (digit :scs (unsigned-reg)
1614 :load-if (not (and (sc-is fixnum control-stack)
1615 (sc-is digit unsigned-stack)
1616 (location= fixnum digit)))))
1617 (:result-types unsigned-num)
1620 (inst sar digit 2)))
1622 (define-vop (bignum-floor)
1623 (:translate sb!bignum:%floor)
1624 (:policy :fast-safe)
1625 (:args (div-high :scs (unsigned-reg) :target edx)
1626 (div-low :scs (unsigned-reg) :target eax)
1627 (divisor :scs (unsigned-reg unsigned-stack)))
1628 (:arg-types unsigned-num unsigned-num unsigned-num)
1629 (:temporary (:sc unsigned-reg :offset eax-offset :from (:argument 1)
1630 :to (:result 0) :target quo) eax)
1631 (:temporary (:sc unsigned-reg :offset edx-offset :from (:argument 0)
1632 :to (:result 1) :target rem) edx)
1633 (:results (quo :scs (unsigned-reg))
1634 (rem :scs (unsigned-reg)))
1635 (:result-types unsigned-num unsigned-num)
1639 (inst div eax divisor)
1643 (define-vop (signify-digit)
1644 (:translate sb!bignum:%fixnum-digit-with-correct-sign)
1645 (:policy :fast-safe)
1646 (:args (digit :scs (unsigned-reg unsigned-stack) :target res))
1647 (:arg-types unsigned-num)
1648 (:results (res :scs (any-reg signed-reg)
1649 :load-if (not (and (sc-is digit unsigned-stack)
1650 (sc-is res control-stack signed-stack)
1651 (location= digit res)))))
1652 (:result-types signed-num)
1655 (when (sc-is res any-reg control-stack)
1658 (define-vop (digit-ashr)
1659 (:translate sb!bignum:%ashr)
1660 (:policy :fast-safe)
1661 (:args (digit :scs (unsigned-reg unsigned-stack) :target result)
1662 (count :scs (unsigned-reg) :target ecx))
1663 (:arg-types unsigned-num positive-fixnum)
1664 (:temporary (:sc unsigned-reg :offset ecx-offset :from (:argument 1)) ecx)
1665 (:results (result :scs (unsigned-reg) :from (:argument 0)
1666 :load-if (not (and (sc-is result unsigned-stack)
1667 (location= digit result)))))
1668 (:result-types unsigned-num)
1672 (inst sar result :cl)))
1674 (define-vop (digit-ashr/c)
1675 (:translate sb!bignum:%ashr)
1676 (:policy :fast-safe)
1677 (:args (digit :scs (unsigned-reg unsigned-stack) :target result))
1678 (:arg-types unsigned-num (:constant (integer 0 31)))
1680 (:results (result :scs (unsigned-reg) :from (:argument 0)
1681 :load-if (not (and (sc-is result unsigned-stack)
1682 (location= digit result)))))
1683 (:result-types unsigned-num)
1686 (inst sar result count)))
1688 (define-vop (digit-lshr digit-ashr)
1689 (:translate sb!bignum:%digit-logical-shift-right)
1693 (inst shr result :cl)))
1695 (define-vop (digit-ashl digit-ashr)
1696 (:translate sb!bignum:%ashl)
1700 (inst shl result :cl)))
1702 ;;;; static functions
1704 (define-static-fun two-arg-/ (x y) :translate /)
1706 (define-static-fun two-arg-gcd (x y) :translate gcd)
1707 (define-static-fun two-arg-lcm (x y) :translate lcm)
1709 (define-static-fun two-arg-and (x y) :translate logand)
1710 (define-static-fun two-arg-ior (x y) :translate logior)
1711 (define-static-fun two-arg-xor (x y) :translate logxor)
1714 ;;; Support for the Mersenne Twister, MT19937, random number generator
1715 ;;; due to Matsumoto and Nishimura.
1717 ;;; Makoto Matsumoto and T. Nishimura, "Mersenne twister: A
1718 ;;; 623-dimensionally equidistributed uniform pseudorandom number
1719 ;;; generator.", ACM Transactions on Modeling and Computer Simulation,
1720 ;;; 1997, to appear.
1723 ;;; 0-1: Constant matrix A. [0, #x9908b0df] (not used here)
1724 ;;; 2: Index; init. to 1.
1726 (defknown random-mt19937 ((simple-array (unsigned-byte 32) (*)))
1727 (unsigned-byte 32) ())
1728 (define-vop (random-mt19937)
1729 (:policy :fast-safe)
1730 (:translate random-mt19937)
1731 (:args (state :scs (descriptor-reg) :to :result))
1732 (:arg-types simple-array-unsigned-byte-32)
1733 (:temporary (:sc unsigned-reg :from (:eval 0) :to :result) k)
1734 (:temporary (:sc unsigned-reg :offset eax-offset
1735 :from (:eval 0) :to :result) tmp)
1736 (:results (y :scs (unsigned-reg) :from (:eval 0)))
1737 (:result-types unsigned-num)
1739 (inst mov k (make-ea :dword :base state
1740 :disp (- (* (+ 2 vector-data-offset)
1742 other-pointer-lowtag)))
1744 (inst jmp :ne no-update)
1745 (inst mov tmp state) ; The state is passed in EAX.
1746 (inst call (make-fixup 'random-mt19937-update :assembly-routine))
1747 ;; Restore k, and set to 0.
1751 (inst mov y (make-ea :dword :base state :index k :scale 4
1752 :disp (- (* (+ 3 vector-data-offset)
1754 other-pointer-lowtag)))
1757 (inst xor y (make-ea :dword :base state :index k :scale 4
1758 :disp (- (* (+ 3 vector-data-offset)
1760 other-pointer-lowtag)))
1761 ;; y ^= (y << 7) & #x9d2c5680
1765 (inst mov (make-ea :dword :base state
1766 :disp (- (* (+ 2 vector-data-offset)
1768 other-pointer-lowtag))
1770 (inst and tmp #x9d2c5680)
1772 ;; y ^= (y << 15) & #xefc60000
1775 (inst and tmp #xefc60000)
1784 (defun mask-result (class width result)
1787 `(logand ,result ,(1- (ash 1 width))))
1789 `(mask-signed-field ,width ,result))))
1791 ;;; This is essentially a straight implementation of the algorithm in
1792 ;;; "Strength Reduction of Multiplications by Integer Constants",
1793 ;;; Youfeng Wu, ACM SIGPLAN Notices, Vol. 30, No.2, February 1995.
1794 (defun basic-decompose-multiplication (class width arg num n-bits condensed)
1795 (case (aref condensed 0)
1797 (let ((tmp (min 3 (aref condensed 1))))
1798 (decf (aref condensed 1) tmp)
1799 (mask-result class width
1801 ,(decompose-multiplication class width
1802 arg (ash (1- num) (- tmp)) (1- n-bits) (subseq condensed 1))
1805 (let ((r0 (aref condensed 0)))
1806 (incf (aref condensed 1) r0)
1807 (mask-result class width
1808 `(%lea ,(decompose-multiplication class width
1809 arg (- num (ash 1 r0)) (1- n-bits) (subseq condensed 1))
1812 (t (let ((r0 (aref condensed 0)))
1813 (setf (aref condensed 0) 0)
1814 (mask-result class width
1815 `(ash ,(decompose-multiplication class width
1816 arg (ash num (- r0)) n-bits condensed)
1819 (defun decompose-multiplication (class width arg num n-bits condensed)
1824 (mask-result class width `(ash ,arg ,(1- (integer-length num)))))
1825 ((let ((max 0) (end 0))
1826 (loop for i from 2 to (length condensed)
1827 for j = (reduce #'+ (subseq condensed 0 i))
1828 when (and (> (- (* 2 i) 3 j) max)
1829 (< (+ (ash 1 (1+ j))
1830 (ash (ldb (byte (- 32 (1+ j)) (1+ j)) num)
1833 do (setq max (- (* 2 i) 3 j)
1836 (let ((j (reduce #'+ (subseq condensed 0 end))))
1837 (let ((n2 (+ (ash 1 (1+ j))
1838 (ash (ldb (byte (- 32 (1+ j)) (1+ j)) num) (1+ j))))
1839 (n1 (1+ (ldb (byte (1+ j) 0) (lognot num)))))
1840 (mask-result class width
1841 `(- ,(optimize-multiply class width arg n2)
1842 ,(optimize-multiply class width arg n1))))))))
1843 ((dolist (i '(9 5 3))
1844 (when (integerp (/ num i))
1845 (when (< (logcount (/ num i)) (logcount num))
1847 (return `(let ((,x ,(optimize-multiply class width arg (/ num i))))
1848 ,(mask-result class width
1849 `(%lea ,x ,x (1- ,i) 0)))))))))
1850 (t (basic-decompose-multiplication class width arg num n-bits condensed))))
1852 (defun optimize-multiply (class width arg x)
1853 (let* ((n-bits (logcount x))
1854 (condensed (make-array n-bits)))
1855 (let ((count 0) (bit 0))
1857 (cond ((logbitp i x)
1858 (setf (aref condensed bit) count)
1862 (decompose-multiplication class width arg x n-bits condensed)))
1864 (defun *-transformer (class width y)
1866 ((= y (ash 1 (integer-length y)))
1867 ;; there's a generic transform for y = 2^k
1868 (give-up-ir1-transform))
1869 ((member y '(3 5 9))
1870 ;; we can do these multiplications directly using LEA
1871 `(%lea x x ,(1- y) 0))
1872 ((member :pentium4 *backend-subfeatures*)
1873 ;; the pentium4's multiply unit is reportedly very good
1874 (give-up-ir1-transform))
1875 ;; FIXME: should make this more fine-grained. If nothing else,
1876 ;; there should probably be a cutoff of about 9 instructions on
1877 ;; pentium-class machines.
1878 (t (optimize-multiply class width 'x y))))
1880 (deftransform * ((x y)
1881 ((unsigned-byte 32) (constant-arg (unsigned-byte 32)))
1883 "recode as leas, shifts and adds"
1884 (let ((y (lvar-value y)))
1885 (*-transformer :unsigned 32 y)))
1886 (deftransform sb!vm::*-mod32
1887 ((x y) ((unsigned-byte 32) (constant-arg (unsigned-byte 32)))
1889 "recode as leas, shifts and adds"
1890 (let ((y (lvar-value y)))
1891 (*-transformer :unsigned 32 y)))
1893 (deftransform * ((x y)
1894 ((signed-byte 30) (constant-arg (unsigned-byte 32)))
1896 "recode as leas, shifts and adds"
1897 (let ((y (lvar-value y)))
1898 (*-transformer :signed 30 y)))
1899 (deftransform sb!vm::*-smod30
1900 ((x y) ((signed-byte 30) (constant-arg (unsigned-byte 32)))
1902 "recode as leas, shifts and adds"
1903 (let ((y (lvar-value y)))
1904 (*-transformer :signed 30 y)))
1906 ;;; FIXME: we should also be able to write an optimizer or two to
1907 ;;; convert (+ (* x 2) 17), (- (* x 9) 5) to a %LEA.