X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcompiler%2Fmips%2Fmove.lisp;h=ae0c33b835dd9a030d63f7319e6d1ce56cf07b76;hb=7deecae2d959173eda6a153d490c752c32050a9e;hp=3854874c675490dc12414e33e1d5d922df26ff5d;hpb=63817d29028c8551cda23f432a3328acd7fdd62f;p=sbcl.git diff --git a/src/compiler/mips/move.lisp b/src/compiler/mips/move.lisp index 3854874..ae0c33b 100644 --- a/src/compiler/mips/move.lisp +++ b/src/compiler/mips/move.lisp @@ -14,7 +14,7 @@ (load-symbol y val)) (character (inst li y (logior (ash (char-code val) n-widetag-bits) - character-widetag)))))) + character-widetag)))))) (define-move-fun (load-number 1) (vop x y) ((zero immediate) @@ -62,19 +62,19 @@ ;;; (define-vop (move) (:args (x :target y - :scs (any-reg descriptor-reg zero null) - :load-if (not (location= x y)))) + :scs (any-reg descriptor-reg zero null) + :load-if (not (location= x y)))) (:results (y :scs (any-reg descriptor-reg control-stack) - :load-if (not (location= x y)))) + :load-if (not (location= x y)))) (:effects) (:affected) (:generator 0 (unless (location= x y) (sc-case y - ((any-reg descriptor-reg) - (inst move y x)) - (control-stack - (store-stack-tn y x)))))) + ((any-reg descriptor-reg) + (inst move y x)) + (control-stack + (store-stack-tn y x)))))) (define-move-vop move :move (any-reg descriptor-reg zero null) @@ -91,9 +91,9 @@ ;;; (define-vop (move-arg) (:args (x :target y - :scs (any-reg descriptor-reg null zero)) - (fp :scs (any-reg) - :load-if (not (sc-is y any-reg descriptor-reg)))) + :scs (any-reg descriptor-reg null zero)) + (fp :scs (any-reg) + :load-if (not (sc-is y any-reg descriptor-reg)))) (:results (y)) (:generator 0 (sc-case y @@ -141,7 +141,7 @@ (:arg-types tagged-num) (:note "fixnum untagging") (:generator 1 - (inst sra y x 2))) + (inst sra y x n-fixnum-tag-bits))) ;;; (define-move-vop move-to-word/fixnum :move (any-reg descriptor-reg) (signed-reg unsigned-reg)) @@ -152,7 +152,11 @@ (:results (y :scs (signed-reg unsigned-reg))) (:note "constant load") (:generator 1 - (inst li y (tn-value x)))) + (cond ((sb!c::tn-leaf x) + (inst li y (tn-value x))) + (t + (loadw y code-tn (tn-offset x) other-pointer-lowtag) + (inst sra y y n-fixnum-tag-bits))))) ;;; (define-move-vop move-to-word-c :move (constant) (signed-reg unsigned-reg)) @@ -165,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)))) @@ -185,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)) @@ -202,21 +206,21 @@ (:generator 18 (move x arg) (let ((fixnum (gen-label)) - (done (gen-label))) - (inst sra temp x 29) + (done (gen-label))) + (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)) - (storew x y bignum-digits-offset other-pointer-lowtag)) + (y pa-flag temp bignum-widetag (1+ bignum-digits-offset) nil) + (storew x y bignum-digits-offset other-pointer-lowtag)) (inst b done) (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 @@ -234,12 +238,12 @@ (: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))) + (pa-flag :extra (pad-data-block (+ bignum-digits-offset 2))) (inst or y alloc-tn other-pointer-lowtag) (inst slt temp x zero-tn) (inst sll temp n-widetag-bits) @@ -257,10 +261,10 @@ ;;; (define-vop (word-move) (:args (x :target y - :scs (signed-reg unsigned-reg) - :load-if (not (location= x y)))) + :scs (signed-reg unsigned-reg) + :load-if (not (location= x y)))) (:results (y :scs (signed-reg unsigned-reg) - :load-if (not (location= x y)))) + :load-if (not (location= x y)))) (:effects) (:affected) (:note "word integer move") @@ -275,9 +279,9 @@ ;;; (define-vop (move-word-arg) (:args (x :target y - :scs (signed-reg unsigned-reg)) - (fp :scs (any-reg) - :load-if (not (sc-is y sap-reg)))) + :scs (signed-reg unsigned-reg)) + (fp :scs (any-reg) + :load-if (not (sc-is y sap-reg)))) (:results (y)) (:note "word integer argument move") (:generator 0