X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcompiler%2Fmips%2Fmove.lisp;h=ae0c33b835dd9a030d63f7319e6d1ce56cf07b76;hb=179812c3ad5dad69239c625ec929a7d486cf568f;hp=5bb0c85926fb3da40fdeb8f5ddfd1adaaa01383b;hpb=e6a7faf7fe4193f61eeaf1151f891c38b7c8e6ed;p=sbcl.git diff --git a/src/compiler/mips/move.lisp b/src/compiler/mips/move.lisp index 5bb0c85..ae0c33b 100644 --- a/src/compiler/mips/move.lisp +++ b/src/compiler/mips/move.lisp @@ -169,9 +169,9 @@ (:temporary (:scs (non-descriptor-reg)) temp) (:generator 3 (let ((done (gen-label))) - (inst and temp x 3) + (inst and temp x fixnum-tag-mask) (inst beq temp done) - (inst sra y x 2) + (inst sra y x n-fixnum-tag-bits) (loadw y x bignum-digits-offset other-pointer-lowtag) (emit-label done)))) @@ -189,7 +189,7 @@ (:result-types tagged-num) (:note "fixnum tagging") (:generator 1 - (inst sll y x 2))) + (inst sll y x n-fixnum-tag-bits))) ;;; (define-move-vop move-from-word/fixnum :move (signed-reg unsigned-reg) (any-reg descriptor-reg)) @@ -207,11 +207,11 @@ (move x arg) (let ((fixnum (gen-label)) (done (gen-label))) - (inst sra temp x 29) + (inst sra temp x n-positive-fixnum-bits) (inst beq temp fixnum) (inst nor temp zero-tn) (inst beq temp done) - (inst sll y x 2) + (inst sll y x n-fixnum-tag-bits) (with-fixed-allocation (y pa-flag temp bignum-widetag (1+ bignum-digits-offset) nil) @@ -220,7 +220,7 @@ (inst nop) (emit-label fixnum) - (inst sll y x 2) + (inst sll y x n-fixnum-tag-bits) (emit-label done)))) ;;; (define-move-vop move-from-signed :move @@ -238,9 +238,9 @@ (:note "unsigned word to integer coercion") (:generator 20 (move x arg) - (inst srl temp x 29) + (inst srl temp x n-positive-fixnum-bits) (inst beq temp done) - (inst sll y x 2) + (inst sll y x n-fixnum-tag-bits) (pseudo-atomic (pa-flag :extra (pad-data-block (+ bignum-digits-offset 2)))