X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcompiler%2Fppc%2Farith.lisp;h=67365c150f05b914c24d3624b68d35a53be1fadc;hb=8bea80bd6b4daca547ceb46f54ebed14cc8e7d93;hp=aca19f4133f9dec2c775de9a17068776a8b713a3;hpb=51344a3364f2cd6b14985719a77f697c094ea14d;p=sbcl.git diff --git a/src/compiler/ppc/arith.lisp b/src/compiler/ppc/arith.lisp index aca19f4..67365c1 100644 --- a/src/compiler/ppc/arith.lisp +++ b/src/compiler/ppc/arith.lisp @@ -664,7 +664,11 @@ ;;;; %LDB (defknown %%ldb (integer unsigned-byte unsigned-byte) unsigned-byte - (movable foldable flushable)) + (movable foldable flushable always-translatable)) + +;;; only for constant folding within the compiler +(defun %%ldb (integer size posn) + (sb!kernel::%ldb size posn integer)) (define-vop (ldb-c/fixnum) (:translate %%ldb) @@ -827,13 +831,18 @@ (define-logtest-vops)) (defknown %logbitp (integer unsigned-byte) boolean - (movable foldable flushable)) + (movable foldable flushable always-translatable)) + +;;; only for constant folding within the compiler +(defun %logbitp (integer index) + (logbitp index integer)) ;;; We only handle the constant cases because those are the only ones ;;; guaranteed to make it past COMBINATION-IMPLEMENTATION-STYLE. ;;; --njf, 06-02-2006 (define-vop (fast-logbitp-c/fixnum fast-conditional-c/fixnum) (:translate %logbitp) + (:arg-types tagged-num (:constant (integer 0 29))) (:temporary (:scs (any-reg) :to (:result 0)) test) (:generator 4 (if (< y 14) @@ -843,6 +852,7 @@ (define-vop (fast-logbitp-c/signed fast-conditional-c/signed) (:translate %logbitp) + (:arg-types signed-num (:constant (integer 0 31))) (:temporary (:scs (signed-reg) :to (:result 0)) test) (:generator 4 (if (< y 16) @@ -852,6 +862,7 @@ (define-vop (fast-logbitp-c/unsigned fast-conditional-c/unsigned) (:translate %logbitp) + (:arg-types unsigned-num (:constant (integer 0 31))) (:temporary (:scs (unsigned-reg) :to (:result 0)) test) (:generator 4 (if (< y 16)