X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcompiler%2Fppc%2Farith.lisp;h=67365c150f05b914c24d3624b68d35a53be1fadc;hb=8bea80bd6b4daca547ceb46f54ebed14cc8e7d93;hp=c8f1eae67d85f673d73543d5d9b1cd4b34a9923d;hpb=625e155af989109f79fc4759a72a54ab2d18c8c1;p=sbcl.git diff --git a/src/compiler/ppc/arith.lisp b/src/compiler/ppc/arith.lisp index c8f1eae..67365c1 100644 --- a/src/compiler/ppc/arith.lisp +++ b/src/compiler/ppc/arith.lisp @@ -664,10 +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)) + (sb!kernel::%ldb size posn integer)) (define-vop (ldb-c/fixnum) (:translate %%ldb) @@ -830,9 +831,10 @@ (define-logtest-vops)) (defknown %logbitp (integer unsigned-byte) boolean - (movable foldable flushable)) + (movable foldable flushable always-translatable)) -(defun %logbitp (index integer) +;;; 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 @@ -840,6 +842,7 @@ ;;; --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) @@ -849,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) @@ -858,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)