1 ;;;; the VM definition arithmetic VOPs for the PPC
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.
14 ;;;; Unary operations.
16 (define-vop (fast-safe-arith-op)
21 (define-vop (fixnum-unop fast-safe-arith-op)
22 (:args (x :scs (any-reg)))
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)))
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)
40 (define-vop (fast-negate/signed signed-unop)
45 (define-vop (fast-lognot/fixnum fixnum-unop)
48 (inst subfic res x (fixnumize -1))))
50 (define-vop (fast-lognot/signed signed-unop)
55 ;;;; Binary fixnum operations.
57 ;;; Assume that any constant operand is the second arg...
59 (define-vop (fast-fixnum-binop fast-safe-arith-op)
60 (:args (x :target r :scs (any-reg zero))
61 (y :target r :scs (any-reg zero)))
62 (:arg-types tagged-num tagged-num)
63 (:results (r :scs (any-reg)))
64 (:result-types tagged-num)
65 (:note "inline fixnum arithmetic"))
67 (define-vop (fast-unsigned-binop fast-safe-arith-op)
68 (:args (x :target r :scs (unsigned-reg zero))
69 (y :target r :scs (unsigned-reg zero)))
70 (:arg-types unsigned-num unsigned-num)
71 (:results (r :scs (unsigned-reg)))
72 (:result-types unsigned-num)
73 (:note "inline (unsigned-byte 32) arithmetic"))
75 (define-vop (fast-signed-binop fast-safe-arith-op)
76 (:args (x :target r :scs (signed-reg zero))
77 (y :target r :scs (signed-reg zero)))
78 (:arg-types signed-num signed-num)
79 (:results (r :scs (signed-reg)))
80 (:result-types signed-num)
81 (:note "inline (signed-byte 32) arithmetic"))
83 (define-vop (fast-fixnum-binop-c fast-safe-arith-op)
84 (:args (x :target r :scs (any-reg zero)))
86 (:arg-types tagged-num
87 (:constant (and (signed-byte 14) (not (integer 0 0)))))
88 (:results (r :scs (any-reg)))
89 (:result-types tagged-num)
90 (:note "inline fixnum arithmetic"))
92 (define-vop (fast-fixnum-binop30-c fast-safe-arith-op)
93 (:args (x :target r :scs (any-reg zero)))
95 (:arg-types tagged-num
96 (:constant (and (signed-byte 30) (not (integer 0 0)))))
97 (:results (r :scs (any-reg)))
98 (:result-types tagged-num)
99 (:note "inline fixnum arithmetic"))
101 (define-vop (fast-fixnum-logop-c fast-safe-arith-op)
102 (:args (x :target r :scs (any-reg zero)))
104 (:arg-types tagged-num
105 (:constant (and (unsigned-byte 14) (not (integer 0 0)))))
106 (:results (r :scs (any-reg)))
107 (:result-types tagged-num)
108 (:note "inline fixnum logical op"))
110 (define-vop (fast-fixnum-logop30-c fast-safe-arith-op)
111 (:args (x :target r :scs (any-reg zero)))
113 (:arg-types tagged-num
114 (:constant (and (unsigned-byte 16) (not (integer 0 0)))))
115 (:results (r :scs (any-reg)))
116 (:result-types tagged-num)
117 (:note "inline fixnum logical op"))
119 (define-vop (fast-unsigned-binop-c fast-safe-arith-op)
120 (:args (x :target r :scs (unsigned-reg zero)))
122 (:arg-types unsigned-num
123 (:constant (and (signed-byte 16) (not (integer 0 0)))))
124 (:results (r :scs (unsigned-reg)))
125 (:result-types unsigned-num)
126 (:note "inline (unsigned-byte 32) arithmetic"))
128 (define-vop (fast-unsigned-binop32-c fast-safe-arith-op)
129 (:args (x :target r :scs (unsigned-reg zero)))
131 (:arg-types unsigned-num
132 (:constant (and (unsigned-byte 32) (not (integer 0 0)))))
133 (:results (r :scs (unsigned-reg)))
134 (:result-types unsigned-num)
135 (:note "inline (unsigned-byte 32) arithmetic"))
137 (define-vop (fast-signed-binop32-c fast-safe-arith-op)
138 (:args (x :target r :scs (signed-reg zero)))
140 (:arg-types signed-num
141 (:constant (and (signed-byte 32) (not (integer 0 0)))))
142 (:results (r :scs (signed-reg)))
143 (:result-types signed-num)
144 (:note "inline (signed-byte 32) arithmetic"))
146 (define-vop (fast-unsigned-logop-c fast-safe-arith-op)
147 (:args (x :target r :scs (unsigned-reg zero)))
149 (:arg-types unsigned-num
150 (:constant (and (unsigned-byte 16) (not (integer 0 0)))))
151 (:results (r :scs (unsigned-reg)))
152 (:result-types unsigned-num)
153 (:note "inline (unsigned-byte 32) logical op"))
155 (define-vop (fast-unsigned-logop32-c fast-safe-arith-op)
156 (:args (x :target r :scs (unsigned-reg zero)))
158 (:arg-types unsigned-num
159 (:constant (and (unsigned-byte 32) (not (integer 0 0)))))
160 (:results (r :scs (unsigned-reg)))
161 (:result-types unsigned-num)
162 (:note "inline (unsigned-byte 32) logical op"))
164 (define-vop (fast-signed-logop32-c fast-safe-arith-op)
165 (:args (x :target r :scs (signed-reg zero)))
167 (:arg-types signed-num
168 (:constant (and (unsigned-byte 32) (not (integer 0 0)))))
169 (:results (r :scs (signed-reg)))
170 (:result-types signed-num)
171 (:note "inline (signed-byte 32) logical op"))
173 (define-vop (fast-signed-binop-c fast-safe-arith-op)
174 (:args (x :target r :scs (signed-reg zero)))
176 (:arg-types signed-num
177 (:constant (and (signed-byte 16) (not (integer 0 0)))))
178 (:results (r :scs (signed-reg)))
179 (:result-types signed-num)
180 (:note "inline (signed-byte 32) arithmetic"))
182 (define-vop (fast-signed-logop-c fast-safe-arith-op)
183 (:args (x :target r :scs (signed-reg zero)))
185 (:arg-types signed-num
186 (:constant (and (unsigned-byte 16) (not (integer 0 0)))))
187 (:results (r :scs (signed-reg)))
188 (:result-types signed-num)
189 (:note "inline (signed-byte 32) logical op"))
191 (eval-when (:compile-toplevel :load-toplevel :execute)
193 (defmacro !define-var-binop (translate untagged-penalty op
194 &optional arg-swap restore-fixnum-mask)
196 (define-vop (,(symbolicate "FAST-" translate "/FIXNUM=>FIXNUM")
198 ,@(when restore-fixnum-mask
199 `((:temporary (:sc non-descriptor-reg) temp)))
200 (:translate ,translate)
203 `(inst ,op ,(if restore-fixnum-mask 'temp 'r) y x)
204 `(inst ,op ,(if restore-fixnum-mask 'temp 'r) x y))
205 ;; FIXME: remind me what convention we used for 64bitizing
206 ;; stuff? -- CSR, 2003-08-27
207 ,@(when restore-fixnum-mask
208 `((inst clrrwi r temp (1- n-lowtag-bits))))))
209 (define-vop (,(symbolicate "FAST-" translate "/SIGNED=>SIGNED")
211 (:translate ,translate)
212 (:generator ,(1+ untagged-penalty)
216 (define-vop (,(symbolicate "FAST-" translate "/UNSIGNED=>UNSIGNED")
218 (:translate ,translate)
219 (:generator ,(1+ untagged-penalty)
222 `(inst ,op r x y))))))
224 ;;; FIXME: the code has really only been checked for adds; we could do
225 ;;; subtracts, too, but my brain is not up to the task of figuring out
226 ;;; signs and borrows.
227 (defmacro !define-const-binop (translate untagged-penalty op &optional (shifted-op nil))
229 (define-vop (,(symbolicate 'fast- translate '-c/fixnum=>fixnum)
231 'fast-fixnum-binop30-c
232 'fast-fixnum-binop-c))
233 (:translate ,translate)
235 `((:temporary (:sc any-reg :target r) temp)))
238 `(let* ((y (fixnumize y))
239 (high-half (ldb (byte 16 16) y))
240 (low-half (ldb (byte 16 0) y)))
241 ;; Compare %LR in insts.lisp.
243 ((and (logbitp 15 low-half) (= high-half #xffff))
244 ;; Let sign-extension do the work for us, but make sure
245 ;; to turn LOW-HALF into a signed integer.
246 (inst ,op r x (dpb low-half (byte 16 0) -1)))
247 ((and (not (logbitp 15 low-half)) (zerop high-half))
248 (inst ,op r x low-half))
250 (inst ,shifted-op r x (if (logbitp 15 high-half)
251 (dpb high-half (byte 16 0) -1)
254 ;; Check to see whether compensating for the sign bit
255 ;; of LOW-HALF is necessary.
256 (let ((high-half (let ((top (if (logbitp 15 low-half)
261 (dpb top (byte 16 0) -1)
263 (inst ,shifted-op temp x high-half)
264 (inst ,op r temp low-half)))))
265 `(inst ,op r x (fixnumize y)))))
266 (define-vop (,(symbolicate 'fast- translate '-c/signed=>signed)
268 'fast-signed-binop32-c
269 'fast-signed-binop-c))
270 (:translate ,translate)
272 `((:temporary (:sc non-descriptor-reg :target r) temp)))
273 (:generator ,untagged-penalty
275 `(let ((high-half (ldb (byte 16 16) y))
276 (low-half (ldb (byte 16 0) y)))
277 ;; Compare %LR in insts.lisp.
279 ((and (logbitp 15 low-half) (= high-half #xffff))
280 ;; Let sign-extension do the work for us, but make sure
281 ;; to turn LOW-HALF into a signed integer.
282 (inst ,op r x (dpb low-half (byte 16 0) -1)))
283 ((and (not (logbitp 15 low-half)) (zerop high-half))
284 (inst ,op r x low-half))
286 (inst ,shifted-op r x (if (logbitp 15 high-half)
287 (dpb high-half (byte 16 0) -1)
290 ;; Check to see whether compensating for the sign bit
291 ;; of LOW-HALF is necessary.
292 (let ((high-half (let ((top (if (logbitp 15 low-half)
297 (dpb top (byte 16 0) -1)
299 (inst ,shifted-op temp x high-half)
300 (inst ,op r temp low-half)))))
302 (define-vop (,(symbolicate 'fast- translate '-c/unsigned=>unsigned)
304 'fast-unsigned-binop32-c
305 'fast-unsigned-binop-c))
306 (:translate ,translate)
308 `((:temporary (:sc non-descriptor-reg :target r) temp)))
309 (:generator ,untagged-penalty
311 `(let ((high-half (ldb (byte 16 16) y))
312 (low-half (ldb (byte 16 0) y)))
313 ;; Compare %LR in insts.lisp.
315 ((and (logbitp 15 low-half) (= high-half #xffff))
316 ;; Let sign-extension do the work for us, but make sure
317 ;; to turn LOW-HALF into a signed integer.
318 (inst ,op r x (dpb low-half (byte 16 0) -1)))
319 ((and (not (logbitp 15 low-half)) (zerop high-half))
320 (inst ,op r x low-half))
322 (inst ,shifted-op r x (if (logbitp 15 high-half)
323 (dpb high-half (byte 16 0) -1)
326 ;; Check to see whether compensating for the sign bit
327 ;; of LOW-HALF is necessary.
328 (let ((high-half (let ((top (if (logbitp 15 low-half)
333 (dpb top (byte 16 0) -1)
335 (inst ,shifted-op temp x high-half)
336 (inst ,op r temp low-half)))))
337 `(inst ,op r x y))))))
339 ;;; For logical operations, we don't have to worry about signed bit
340 ;;; propagation from the lower half of a 32-bit operand.
341 (defmacro !define-const-logop (translate untagged-penalty op &optional (shifted-op nil))
343 (define-vop (,(symbolicate 'fast- translate '-c/fixnum=>fixnum)
345 'fast-fixnum-logop30-c
346 'fast-fixnum-logop-c))
347 (:translate ,translate)
349 `((:temporary (:sc any-reg :target r) temp)))
352 `(let* ((y (fixnumize y))
353 (high-half (ldb (byte 16 16) y))
354 (low-half (ldb (byte 16 0) y)))
356 ((zerop high-half) (inst ,op r x low-half))
357 ((zerop low-half) (inst ,shifted-op r x high-half))
359 (inst ,shifted-op temp x high-half)
360 (inst ,op r temp low-half))))
361 `(inst ,op r x (fixnumize y)))))
362 (define-vop (,(symbolicate 'fast- translate '-c/signed=>signed)
364 'fast-signed-logop32-c
365 'fast-signed-logop-c))
366 (:translate ,translate)
368 `((:temporary (:sc non-descriptor-reg :target r) temp)))
369 (:generator ,untagged-penalty
371 `(let ((high-half (ldb (byte 16 16) y))
372 (low-half (ldb (byte 16 0) y)))
374 ((zerop high-half) (inst ,op r x low-half))
375 ((zerop low-half) (inst ,shifted-op r x high-half))
377 (inst ,shifted-op temp x high-half)
378 (inst ,op r temp low-half))))
380 (define-vop (,(symbolicate 'fast- translate '-c/unsigned=>unsigned)
382 'fast-unsigned-logop32-c
383 'fast-unsigned-logop-c))
384 (:translate ,translate)
386 `((:temporary (:sc non-descriptor-reg :target r) temp)))
387 (:generator ,untagged-penalty
389 `(let ((high-half (ldb (byte 16 16) y))
390 (low-half (ldb (byte 16 0) y)))
392 ((zerop high-half) (inst ,op r x low-half))
393 ((zerop low-half) (inst ,shifted-op r x high-half))
395 (inst ,shifted-op temp x high-half)
396 (inst ,op r temp low-half))))
397 `(inst ,op r x y))))))
401 (!define-var-binop + 4 add)
402 (!define-var-binop - 4 sub)
403 (!define-var-binop logand 2 and)
404 (!define-var-binop logandc1 2 andc t)
405 (!define-var-binop logandc2 2 andc)
406 (!define-var-binop logior 2 or)
407 (!define-var-binop logorc1 2 orc t t)
408 (!define-var-binop logorc2 2 orc nil t)
409 (!define-var-binop logxor 2 xor)
410 (!define-var-binop logeqv 2 eqv nil t)
411 (!define-var-binop lognand 2 nand nil t)
412 (!define-var-binop lognor 2 nor nil t)
414 (!define-const-binop + 4 addi addis)
415 (!define-const-binop - 4 subi)
416 ;;; Implementing a 32-bit immediate version of LOGAND wouldn't be any
417 ;;; better than loading the 32-bit constant via LR and then performing
418 ;;; an /AND/. So don't bother. (It would be better in some cases, such
419 ;;; as when one half of the word is zeros--we save a register--but we
420 ;;; would have specified one temporary register in the VOP, so we lose
421 ;;; any possible advantage.)
422 (!define-const-logop logand 2 andi.)
423 (!define-const-logop logior 2 ori oris)
424 (!define-const-logop logxor 2 xori xoris)
427 ;;; Special case fixnum + and - that trap on overflow. Useful when we
428 ;;; don't know that the output type is a fixnum.
430 (define-vop (+/fixnum fast-+/fixnum=>fixnum)
432 (:results (r :scs (any-reg descriptor-reg)))
433 (:result-types tagged-num)
434 (:note "safe inline fixnum arithmetic")
436 (let* ((no-overflow (gen-label)))
439 (inst bns no-overflow)
440 (inst unimp (logior (ash (reg-tn-encoding r) 5)
441 fixnum-additive-overflow-trap))
442 (emit-label no-overflow))))
444 (define-vop (-/fixnum fast--/fixnum=>fixnum)
446 (:results (r :scs (any-reg descriptor-reg)))
447 (:result-types tagged-num)
448 (:note "safe inline fixnum arithmetic")
450 (let* ((no-overflow (gen-label)))
453 (inst bns no-overflow)
454 (inst unimp (logior (ash (reg-tn-encoding r) 5)
455 fixnum-additive-overflow-trap))
456 (emit-label no-overflow))))
458 (define-vop (fast-*/fixnum=>fixnum fast-fixnum-binop)
459 (:temporary (:scs (non-descriptor-reg)) temp)
462 (inst srawi temp y 2)
463 (inst mullw r x temp)))
465 (define-vop (fast-*-c/fixnum=>fixnum fast-fixnum-binop-c)
467 (:arg-types tagged-num
468 (:constant (and (signed-byte 16) (not (integer 0 0)))))
472 (define-vop (fast-*-bigc/fixnum=>fixnum fast-fixnum-binop-c)
474 (:arg-types tagged-num
475 (:constant (and fixnum (not (signed-byte 16)))))
476 (:temporary (:scs (non-descriptor-reg)) temp)
479 (inst mullw r x temp)))
481 (define-vop (fast-*/signed=>signed fast-signed-binop)
486 (define-vop (fast-*-c/signed=>signed fast-signed-binop-c)
491 (define-vop (fast-*/unsigned=>unsigned fast-unsigned-binop)
496 (define-vop (fast-*-c/unsigned=>unsigned fast-unsigned-binop-c)
503 (macrolet ((def (name sc-type type result-type cost)
507 (:args (number :scs (,sc-type))
508 (amount :scs (signed-reg unsigned-reg immediate)))
509 (:arg-types ,type positive-fixnum)
510 (:results (result :scs (,result-type)))
511 (:result-types ,type)
515 ((signed-reg unsigned-reg)
516 (inst slw result number amount))
518 (let ((amount (tn-value amount)))
520 (inst slwi result number amount))))))))
521 ;; FIXME: There's the opportunity for a sneaky optimization here, I
522 ;; think: a FAST-ASH-LEFT-C/FIXNUM=>SIGNED vop. -- CSR, 2003-09-03
523 (def fast-ash-left/fixnum=>fixnum any-reg tagged-num any-reg 2)
524 (def fast-ash-left/signed=>signed signed-reg signed-num signed-reg 3)
525 (def fast-ash-left/unsigned=>unsigned unsigned-reg unsigned-num unsigned-reg 3))
527 (define-vop (fast-ash/unsigned=>unsigned)
529 (:args (number :scs (unsigned-reg) :to :save)
530 (amount :scs (signed-reg)))
531 (:arg-types (:or unsigned-num) signed-num)
532 (:results (result :scs (unsigned-reg)))
533 (:result-types unsigned-num)
536 (:temporary (:sc non-descriptor-reg) ndesc)
538 (let ((positive (gen-label))
540 (inst cmpwi amount 0)
541 (inst neg ndesc amount)
543 (inst cmpwi ndesc 31)
544 (inst srw result number ndesc)
546 (move result zero-tn)
549 (emit-label positive)
550 ;; The result-type assures us that this shift will not overflow.
551 (inst slw result number amount)
555 (define-vop (fast-ash-c/unsigned=>unsigned)
556 (:note "inline constant ASH")
557 (:args (number :scs (unsigned-reg)))
559 (:arg-types unsigned-num (:constant integer))
560 (:results (result :scs (unsigned-reg)))
561 (:result-types unsigned-num)
566 ((and (minusp amount) (< amount -31)) (move result zero-tn))
567 ((minusp amount) (inst srwi result number (- amount)))
568 ;; possible because this is used in the modular version too
569 ((> amount 31) (move result zero-tn))
570 (t (inst slwi result number amount)))))
572 (define-vop (fast-ash/signed=>signed)
574 (:args (number :scs (signed-reg) :to :save)
575 (amount :scs (signed-reg immediate)))
576 (:arg-types (:or signed-num) signed-num)
577 (:results (result :scs (signed-reg)))
578 (:result-types (:or signed-num))
581 (:temporary (:sc non-descriptor-reg) ndesc)
585 (let ((positive (gen-label))
587 (inst cmpwi amount 0)
588 (inst neg ndesc amount)
590 (inst cmpwi ndesc 31)
591 (inst sraw result number ndesc)
593 (inst srawi result number 31)
596 (emit-label positive)
597 ;; The result-type assures us that this shift will not overflow.
598 (inst slw result number amount)
603 (let ((amount (tn-value amount)))
605 (let ((amount (min 31 (- amount))))
606 (inst srawi result number amount))
607 (inst slwi result number amount)))))))
609 (define-vop (signed-byte-32-len)
610 (:translate integer-length)
611 (:note "inline (signed-byte 32) integer-length")
613 (:args (arg :scs (signed-reg)))
614 (:arg-types signed-num)
615 (:results (res :scs (unsigned-reg) :from :load))
616 (:result-types unsigned-num)
618 ; (integer-length arg) = (- 32 (cntlz (if (>= arg 0) arg (lognot arg))))
619 (let ((nonneg (gen-label)))
620 (inst cntlzw. res arg)
623 (inst cntlzw res res)
625 (inst subfic res res 32))))
627 (define-vop (unsigned-byte-32-len)
628 (:translate integer-length)
629 (:note "inline (unsigned-byte 32) integer-length")
631 (:args (arg :scs (unsigned-reg)))
632 (:arg-types unsigned-num)
633 (:results (res :scs (unsigned-reg)))
634 (:result-types unsigned-num)
636 (inst cntlzw res arg)
637 (inst subfic res res 32)))
639 (define-vop (unsigned-byte-32-count)
640 (:translate logcount)
641 (:note "inline (unsigned-byte 32) logcount")
643 (:args (arg :scs (unsigned-reg) :target shift))
644 (:arg-types unsigned-num)
645 (:results (res :scs (any-reg)))
646 (:result-types positive-fixnum)
647 (:temporary (:scs (non-descriptor-reg) :from (:argument 0)) shift temp)
649 (let ((loop (gen-label))
651 (inst add. shift zero-tn arg)
656 (inst subi temp shift 1)
657 (inst and. shift shift temp)
658 (inst addi res res (fixnumize 1))
666 (defknown %%ldb (integer unsigned-byte unsigned-byte) unsigned-byte
667 (movable foldable flushable always-translatable))
669 ;;; only for constant folding within the compiler
670 (defun %%ldb (integer size posn)
671 (sb!kernel::%ldb size posn integer))
673 (define-vop (ldb-c/fixnum)
675 (:args (x :scs (any-reg)))
676 (:arg-types tagged-num (:constant (integer 1 29)) (:constant (integer 0 29)))
678 (:results (res :scs (any-reg)))
679 (:result-types tagged-num)
683 (mod (- 32 posn) 32) ; effectively rotate right
684 (- 32 size n-fixnum-tag-bits)
685 (- 31 n-fixnum-tag-bits))))
687 (define-vop (ldb-c/signed)
689 (:args (x :scs (signed-reg)))
690 (:arg-types signed-num (:constant (integer 1 29)) (:constant (integer 0 29)))
692 (:results (res :scs (any-reg)))
693 (:result-types tagged-num)
697 (mod (- (+ 32 n-fixnum-tag-bits) posn) 32)
698 (- 32 size n-fixnum-tag-bits)
699 (- 31 n-fixnum-tag-bits))))
701 (define-vop (ldb-c/unsigned)
703 (:args (x :scs (unsigned-reg)))
704 (:arg-types unsigned-num (:constant (integer 1 29)) (:constant (integer 0 29)))
706 (:results (res :scs (any-reg)))
707 (:result-types tagged-num)
711 (mod (- (+ 32 n-fixnum-tag-bits) posn) 32)
712 (- 32 size n-fixnum-tag-bits)
713 (- 31 n-fixnum-tag-bits))))
716 ;;;; Modular functions:
717 (define-modular-fun lognot-mod32 (x) lognot :untagged nil 32)
718 (define-vop (lognot-mod32/unsigned=>unsigned)
719 (:translate lognot-mod32)
720 (:args (x :scs (unsigned-reg)))
721 (:arg-types unsigned-num)
722 (:results (res :scs (unsigned-reg)))
723 (:result-types unsigned-num)
728 (define-vop (fast-ash-left-mod32-c/unsigned=>unsigned
729 fast-ash-c/unsigned=>unsigned)
730 (:translate ash-left-mod32))
732 (define-vop (fast-ash-left-mod32/unsigned=>unsigned
733 fast-ash-left/unsigned=>unsigned))
734 (deftransform ash-left-mod32 ((integer count)
735 ((unsigned-byte 32) (unsigned-byte 5)))
736 (when (sb!c::constant-lvar-p count)
737 (sb!c::give-up-ir1-transform))
738 '(%primitive fast-ash-left-mod32/unsigned=>unsigned integer count))
741 ((define-modular-backend (fun &optional constantp)
742 (let ((mfun-name (symbolicate fun '-mod32))
743 (modvop (symbolicate 'fast- fun '-mod32/unsigned=>unsigned))
744 (modcvop (symbolicate 'fast- fun 'mod32-c/unsigned=>unsigned))
745 (vop (symbolicate 'fast- fun '/unsigned=>unsigned))
746 (cvop (symbolicate 'fast- fun '-c/unsigned=>unsigned)))
748 (define-modular-fun ,mfun-name (x y) ,fun :untagged nil 32)
749 (define-vop (,modvop ,vop)
750 (:translate ,mfun-name))
752 `((define-vop (,modcvop ,cvop)
753 (:translate ,mfun-name))))))))
754 (define-modular-backend + t)
755 (define-modular-backend - t)
756 (define-modular-backend * t)
757 (define-modular-backend logeqv)
758 (define-modular-backend lognand)
759 (define-modular-backend lognor)
760 (define-modular-backend logandc1)
761 (define-modular-backend logandc2)
762 (define-modular-backend logorc1)
763 (define-modular-backend logorc2))
765 ;;;; Binary conditional VOPs:
767 (define-vop (fast-conditional)
772 (:policy :fast-safe))
774 (define-vop (fast-conditional/fixnum fast-conditional)
775 (:args (x :scs (any-reg zero))
776 (y :scs (any-reg zero)))
777 (:arg-types tagged-num tagged-num)
778 (:note "inline fixnum comparison"))
780 (define-vop (fast-conditional-c/fixnum fast-conditional/fixnum)
781 (:args (x :scs (any-reg zero)))
782 (:arg-types tagged-num (:constant (signed-byte 14)))
783 (:info target not-p y))
785 (define-vop (fast-conditional/signed fast-conditional)
786 (:args (x :scs (signed-reg zero))
787 (y :scs (signed-reg zero)))
788 (:arg-types signed-num signed-num)
789 (:note "inline (signed-byte 32) comparison"))
791 (define-vop (fast-conditional-c/signed fast-conditional/signed)
792 (:args (x :scs (signed-reg zero)))
793 (:arg-types signed-num (:constant (signed-byte 16)))
794 (:info target not-p y))
796 (define-vop (fast-conditional/unsigned fast-conditional)
797 (:args (x :scs (unsigned-reg zero))
798 (y :scs (unsigned-reg zero)))
799 (:arg-types unsigned-num unsigned-num)
800 (:note "inline (unsigned-byte 32) comparison"))
802 (define-vop (fast-conditional-c/unsigned fast-conditional/unsigned)
803 (:args (x :scs (unsigned-reg zero)))
804 (:arg-types unsigned-num (:constant (unsigned-byte 16)))
805 (:info target not-p y))
807 (macrolet ((define-logtest-vops ()
809 ,@(loop for suffix in '(/fixnum -c/fixnum
811 /unsigned -c/unsigned)
812 for sc in '(any-reg any-reg
813 signed-reg signed-reg
814 unsigned-reg unsigned-reg)
815 for cost in '(4 3 6 5 6 5)
817 `(define-vop (,(symbolicate "FAST-LOGTEST" suffix)
818 ,(symbolicate "FAST-CONDITIONAL" suffix))
820 (:temporary (:scs (,sc) :to (:result 0)) test)
822 ;; We could be a lot more sophisticated here and
823 ;; check for possibilities with ANDIS..
824 ,(if (string= "-C" suffix :end2 2)
825 `(inst andi. test x ,(if (eq suffix '-c/fixnum)
828 `(inst and. test x y))
829 (inst b? (if not-p :eq :ne) target)))))))
830 (define-logtest-vops))
832 (defknown %logbitp (integer unsigned-byte) boolean
833 (movable foldable flushable always-translatable))
835 ;;; only for constant folding within the compiler
836 (defun %logbitp (integer index)
837 (logbitp index integer))
839 ;;; We only handle the constant cases because those are the only ones
840 ;;; guaranteed to make it past COMBINATION-IMPLEMENTATION-STYLE.
841 ;;; --njf, 06-02-2006
842 (define-vop (fast-logbitp-c/fixnum fast-conditional-c/fixnum)
843 (:translate %logbitp)
844 (:arg-types tagged-num (:constant (integer 0 29)))
845 (:temporary (:scs (any-reg) :to (:result 0)) test)
848 (inst andi. test x (ash 1 (+ y n-fixnum-tag-bits)))
849 (inst andis. test x (ash 1 (- y 14))))
850 (inst b? (if not-p :eq :ne) target)))
852 (define-vop (fast-logbitp-c/signed fast-conditional-c/signed)
853 (:translate %logbitp)
854 (:arg-types signed-num (:constant (integer 0 31)))
855 (:temporary (:scs (signed-reg) :to (:result 0)) test)
858 (inst andi. test x (ash 1 y))
859 (inst andis. test x (ash 1 (- y 16))))
860 (inst b? (if not-p :eq :ne) target)))
862 (define-vop (fast-logbitp-c/unsigned fast-conditional-c/unsigned)
863 (:translate %logbitp)
864 (:arg-types unsigned-num (:constant (integer 0 31)))
865 (:temporary (:scs (unsigned-reg) :to (:result 0)) test)
868 (inst andi. test x (ash 1 y))
869 (inst andis. test x (ash 1 (- y 16))))
870 (inst b? (if not-p :eq :ne) target)))
872 (define-vop (fast-if-</fixnum fast-conditional/fixnum)
876 (inst b? (if not-p :ge :lt) target)))
878 (define-vop (fast-if-<-c/fixnum fast-conditional-c/fixnum)
881 (inst cmpwi x (fixnumize y))
882 (inst b? (if not-p :ge :lt) target)))
884 (define-vop (fast-if-</signed fast-conditional/signed)
888 (inst b? (if not-p :ge :lt) target)))
890 (define-vop (fast-if-<-c/signed fast-conditional-c/signed)
894 (inst b? (if not-p :ge :lt) target)))
896 (define-vop (fast-if-</unsigned fast-conditional/unsigned)
900 (inst b? (if not-p :ge :lt) target)))
902 (define-vop (fast-if-<-c/unsigned fast-conditional-c/unsigned)
906 (inst b? (if not-p :ge :lt) target)))
908 (define-vop (fast-if->/fixnum fast-conditional/fixnum)
912 (inst b? (if not-p :le :gt) target)))
914 (define-vop (fast-if->-c/fixnum fast-conditional-c/fixnum)
917 (inst cmpwi x (fixnumize y))
918 (inst b? (if not-p :le :gt) target)))
920 (define-vop (fast-if->/signed fast-conditional/signed)
924 (inst b? (if not-p :le :gt) target)))
926 (define-vop (fast-if->-c/signed fast-conditional-c/signed)
930 (inst b? (if not-p :le :gt) target)))
932 (define-vop (fast-if->/unsigned fast-conditional/unsigned)
936 (inst b? (if not-p :le :gt) target)))
938 (define-vop (fast-if->-c/unsigned fast-conditional-c/unsigned)
942 (inst b? (if not-p :le :gt) target)))
944 (define-vop (fast-if-eql/signed fast-conditional/signed)
948 (inst b? (if not-p :ne :eq) target)))
950 (define-vop (fast-if-eql-c/signed fast-conditional-c/signed)
954 (inst b? (if not-p :ne :eq) target)))
956 (define-vop (fast-if-eql/unsigned fast-conditional/unsigned)
960 (inst b? (if not-p :ne :eq) target)))
962 (define-vop (fast-if-eql-c/unsigned fast-conditional-c/unsigned)
966 (inst b? (if not-p :ne :eq) target)))
969 ;;; EQL/FIXNUM is funny because the first arg can be of any type, not just a
972 ;;; These versions specify a fixnum restriction on their first arg. We have
973 ;;; also generic-eql/fixnum VOPs which are the same, but have no restriction on
974 ;;; the first arg and a higher cost. The reason for doing this is to prevent
975 ;;; fixnum specific operations from being used on word integers, spuriously
976 ;;; consing the argument.
979 (define-vop (fast-eql/fixnum fast-conditional)
980 (:args (x :scs (any-reg descriptor-reg zero))
981 (y :scs (any-reg zero)))
982 (:arg-types tagged-num tagged-num)
983 (:note "inline fixnum comparison")
987 (inst b? (if not-p :ne :eq) target)))
989 (define-vop (generic-eql/fixnum fast-eql/fixnum)
990 (:arg-types * tagged-num)
993 (define-vop (fast-eql-c/fixnum fast-conditional/fixnum)
994 (:args (x :scs (any-reg descriptor-reg zero)))
995 (:arg-types tagged-num (:constant (signed-byte 14)))
996 (:info target not-p y)
999 (inst cmpwi x (fixnumize y))
1000 (inst b? (if not-p :ne :eq) target)))
1002 (define-vop (generic-eql-c/fixnum fast-eql-c/fixnum)
1003 (:arg-types * (:constant (signed-byte 11)))
1007 ;;;; 32-bit logical operations
1009 (define-vop (shift-towards-someplace)
1010 (:policy :fast-safe)
1011 (:args (num :scs (unsigned-reg))
1012 (amount :scs (signed-reg)))
1013 (:arg-types unsigned-num tagged-num)
1014 (:results (r :scs (unsigned-reg)))
1015 (:result-types unsigned-num))
1017 (define-vop (shift-towards-start shift-towards-someplace)
1018 (:translate shift-towards-start)
1019 (:note "shift-towards-start")
1021 (inst rlwinm amount amount 0 27 31)
1022 (inst slw r num amount)))
1024 (define-vop (shift-towards-end shift-towards-someplace)
1025 (:translate shift-towards-end)
1026 (:note "shift-towards-end")
1028 (inst rlwinm amount amount 0 27 31)
1029 (inst srw r num amount)))
1033 (define-vop (bignum-length get-header-data)
1034 (:translate sb!bignum:%bignum-length)
1035 (:policy :fast-safe))
1037 (define-vop (bignum-set-length set-header-data)
1038 (:translate sb!bignum:%bignum-set-length)
1039 (:policy :fast-safe))
1041 (define-vop (bignum-ref word-index-ref)
1042 (:variant bignum-digits-offset other-pointer-lowtag)
1043 (:translate sb!bignum:%bignum-ref)
1044 (:results (value :scs (unsigned-reg)))
1045 (:result-types unsigned-num))
1047 (define-vop (bignum-set word-index-set)
1048 (:variant bignum-digits-offset other-pointer-lowtag)
1049 (:translate sb!bignum:%bignum-set)
1050 (:args (object :scs (descriptor-reg))
1051 (index :scs (any-reg immediate zero))
1052 (value :scs (unsigned-reg)))
1053 (:arg-types t positive-fixnum unsigned-num)
1054 (:results (result :scs (unsigned-reg)))
1055 (:result-types unsigned-num))
1057 (define-vop (digit-0-or-plus)
1058 (:translate sb!bignum:%digit-0-or-plusp)
1059 (:policy :fast-safe)
1060 (:args (digit :scs (unsigned-reg)))
1061 (:arg-types unsigned-num)
1062 (:results (result :scs (descriptor-reg)))
1064 (let ((done (gen-label)))
1065 (inst cmpwi digit 0)
1066 (move result null-tn)
1068 (load-symbol result t)
1069 (emit-label done))))
1071 (define-vop (add-w/carry)
1072 (:translate sb!bignum:%add-with-carry)
1073 (:policy :fast-safe)
1074 (:args (a :scs (unsigned-reg))
1075 (b :scs (unsigned-reg))
1077 (:arg-types unsigned-num unsigned-num positive-fixnum)
1078 (:temporary (:scs (unsigned-reg)) temp)
1079 (:results (result :scs (unsigned-reg))
1080 (carry :scs (unsigned-reg)))
1081 (:result-types unsigned-num positive-fixnum)
1083 (inst addic temp c -1)
1084 (inst adde result a b)
1085 (inst addze carry zero-tn)))
1087 (define-vop (sub-w/borrow)
1088 (:translate sb!bignum:%subtract-with-borrow)
1089 (:policy :fast-safe)
1090 (:args (a :scs (unsigned-reg))
1091 (b :scs (unsigned-reg))
1093 (:arg-types unsigned-num unsigned-num positive-fixnum)
1094 (:temporary (:scs (unsigned-reg)) temp)
1095 (:results (result :scs (unsigned-reg))
1096 (borrow :scs (unsigned-reg)))
1097 (:result-types unsigned-num positive-fixnum)
1099 (inst addic temp c -1)
1100 (inst sube result a b)
1101 (inst addze borrow zero-tn)))
1103 (define-vop (bignum-mult-and-add-3-arg)
1104 (:translate sb!bignum:%multiply-and-add)
1105 (:policy :fast-safe)
1106 (:args (x :scs (unsigned-reg))
1107 (y :scs (unsigned-reg))
1108 (carry-in :scs (unsigned-reg) :to (:eval 1)))
1109 (:arg-types unsigned-num unsigned-num unsigned-num)
1110 (:temporary (:scs (unsigned-reg) :to (:result 0) :target hi) hi-temp)
1111 (:temporary (:scs (unsigned-reg) :from (:eval 0) :to (:result 1)
1112 :target lo) lo-temp)
1113 (:results (hi :scs (unsigned-reg))
1114 (lo :scs (unsigned-reg)))
1115 (:result-types unsigned-num unsigned-num)
1117 (inst mulhwu hi-temp x y)
1118 (inst mullw lo-temp x y)
1119 (inst addc lo lo-temp carry-in)
1120 (inst addze hi hi-temp)))
1122 (define-vop (bignum-mult-and-add-4-arg)
1123 (:translate sb!bignum:%multiply-and-add)
1124 (:policy :fast-safe)
1125 (:args (x :scs (unsigned-reg))
1126 (y :scs (unsigned-reg))
1127 (prev :scs (unsigned-reg) :to (:eval 1))
1128 (carry-in :scs (unsigned-reg) :to (:eval 1)))
1129 (:arg-types unsigned-num unsigned-num unsigned-num unsigned-num)
1130 (:temporary (:scs (unsigned-reg) :to (:result 0) :target hi) hi-temp)
1131 (:temporary (:scs (unsigned-reg) :from (:eval 0) :to (:result 1)
1132 :target lo) lo-temp)
1133 (:results (hi :scs (unsigned-reg))
1134 (lo :scs (unsigned-reg)))
1135 (:result-types unsigned-num unsigned-num)
1137 (inst mulhwu hi-temp x y)
1138 (inst mullw lo-temp x y)
1139 (inst addc lo-temp lo-temp carry-in)
1140 (inst addze hi-temp hi-temp)
1141 (inst addc lo lo-temp prev)
1142 (inst addze hi hi-temp)))
1144 (define-vop (bignum-mult)
1145 (:translate sb!bignum:%multiply)
1146 (:policy :fast-safe)
1147 (:args (x :scs (unsigned-reg) :to (:eval 1))
1148 (y :scs (unsigned-reg) :to (:eval 1)))
1149 (:arg-types unsigned-num unsigned-num)
1150 (:results (hi :scs (unsigned-reg) :from (:eval 1))
1151 (lo :scs (unsigned-reg) :from (:eval 0)))
1152 (:result-types unsigned-num unsigned-num)
1155 (inst mulhwu hi x y)))
1157 (define-vop (bignum-lognot lognot-mod32/unsigned=>unsigned)
1158 (:translate sb!bignum:%lognot))
1160 (define-vop (fixnum-to-digit)
1161 (:translate sb!bignum:%fixnum-to-digit)
1162 (:policy :fast-safe)
1163 (:args (fixnum :scs (any-reg)))
1164 (:arg-types tagged-num)
1165 (:results (digit :scs (unsigned-reg)))
1166 (:result-types unsigned-num)
1168 (inst srawi digit fixnum 2)))
1171 (define-vop (bignum-floor)
1172 (:translate sb!bignum:%floor)
1173 (:policy :fast-safe)
1174 (:args (num-high :scs (unsigned-reg) :target rem)
1175 (num-low :scs (unsigned-reg) :target rem-low)
1176 (denom :scs (unsigned-reg) :to (:eval 1)))
1177 (:arg-types unsigned-num unsigned-num unsigned-num)
1178 (:temporary (:scs (unsigned-reg) :from (:argument 1)) rem-low)
1179 (:temporary (:scs (unsigned-reg) :from (:eval 0)) temp)
1180 (:results (quo :scs (unsigned-reg) :from (:eval 0))
1181 (rem :scs (unsigned-reg) :from (:argument 0)))
1182 (:result-types unsigned-num unsigned-num)
1183 (:generator 325 ; number of inst assuming targeting works.
1185 (move rem-low num-low)
1186 (flet ((maybe-subtract (&optional (guess temp))
1187 (inst subi temp guess 1)
1188 (inst and temp temp denom)
1189 (inst sub rem rem temp))
1191 (inst subfc res y x)
1192 (inst subfe res res res)
1193 (inst neg res res)))
1194 (sltu quo rem denom)
1195 (maybe-subtract quo)
1197 (inst slwi rem rem 1)
1198 (inst srwi temp rem-low 31)
1199 (inst or rem rem temp)
1200 (inst slwi rem-low rem-low 1)
1201 (sltu temp rem denom)
1202 (inst slwi quo quo 1)
1203 (inst or quo quo temp)
1205 (inst not quo quo)))
1209 (define-vop (bignum-floor)
1210 (:translate sb!bignum:%floor)
1211 (:policy :fast-safe)
1212 (:args (div-high :scs (unsigned-reg) :target rem)
1213 (div-low :scs (unsigned-reg) :target quo)
1214 (divisor :scs (unsigned-reg)))
1215 (:arg-types unsigned-num unsigned-num unsigned-num)
1216 (:results (quo :scs (unsigned-reg) :from (:argument 1))
1217 (rem :scs (unsigned-reg) :from (:argument 0)))
1218 (:result-types unsigned-num unsigned-num)
1221 (inst div quo div-high divisor)
1225 (define-vop (signify-digit)
1226 (:translate sb!bignum:%fixnum-digit-with-correct-sign)
1227 (:policy :fast-safe)
1228 (:args (digit :scs (unsigned-reg) :target res))
1229 (:arg-types unsigned-num)
1230 (:results (res :scs (any-reg signed-reg)))
1231 (:result-types signed-num)
1235 (inst slwi res digit 2))
1237 (move res digit)))))
1240 (define-vop (digit-ashr)
1241 (:translate sb!bignum:%ashr)
1242 (:policy :fast-safe)
1243 (:args (digit :scs (unsigned-reg))
1244 (count :scs (unsigned-reg)))
1245 (:arg-types unsigned-num positive-fixnum)
1246 (:results (result :scs (unsigned-reg)))
1247 (:result-types unsigned-num)
1249 (inst sraw result digit count)))
1251 (define-vop (digit-lshr digit-ashr)
1252 (:translate sb!bignum:%digit-logical-shift-right)
1254 (inst srw result digit count)))
1256 (define-vop (digit-ashl digit-ashr)
1257 (:translate sb!bignum:%ashl)
1259 (inst slw result digit count)))
1264 (define-static-fun two-arg-gcd (x y) :translate gcd)
1265 (define-static-fun two-arg-lcm (x y) :translate lcm)
1267 (define-static-fun two-arg-+ (x y) :translate +)
1268 (define-static-fun two-arg-- (x y) :translate -)
1269 (define-static-fun two-arg-* (x y) :translate *)
1270 (define-static-fun two-arg-/ (x y) :translate /)
1272 (define-static-fun two-arg-< (x y) :translate <)
1273 (define-static-fun two-arg-<= (x y) :translate <=)
1274 (define-static-fun two-arg-> (x y) :translate >)
1275 (define-static-fun two-arg->= (x y) :translate >=)
1276 (define-static-fun two-arg-= (x y) :translate =)
1277 (define-static-fun two-arg-/= (x y) :translate /=)
1279 (define-static-fun %negate (x) :translate %negate)
1281 (define-static-fun two-arg-and (x y) :translate logand)
1282 (define-static-fun two-arg-ior (x y) :translate logior)
1283 (define-static-fun two-arg-xor (x y) :translate logxor)
1284 (define-static-fun two-arg-eqv (x y) :translate logeqv)
1288 (deftransform * ((x y)
1289 ((unsigned-byte 32) (constant-arg (unsigned-byte 32)))
1291 "recode as shifts and adds"
1292 (let ((y (lvar-value y)))
1293 (multiple-value-bind (result adds shifts)
1294 (ub32-strength-reduce-constant-multiply 'x y)
1296 ((typep y '(signed-byte 16))
1297 ;; a mulli instruction has a latency of 5.
1298 (when (> (+ adds shifts) 4)
1299 (give-up-ir1-transform)))
1301 ;; a mullw instruction also has a latency of 5, plus two
1302 ;; instructions (in general) to load the immediate into a
1304 (when (> (+ adds shifts) 6)
1305 (give-up-ir1-transform))))