X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fcompiler%2Fppc%2Fmove.lisp;h=e0c83feb4965fa3843393d1d7085aa5a23dd4f53;hb=74cf7a4d01664fbf72a662ba093ad67ca243b524;hp=21f330f45ae57998a97728408a9760137f6626f6;hpb=52cfe54802db8736f1f4e2b67764c43bba9b78b3;p=sbcl.git diff --git a/src/compiler/ppc/move.lisp b/src/compiler/ppc/move.lisp index 21f330f..e0c83fe 100644 --- a/src/compiler/ppc/move.lisp +++ b/src/compiler/ppc/move.lisp @@ -33,7 +33,7 @@ (define-move-fun (load-character 1) (vop x y) ((immediate) (character-reg)) - (inst li y (char-code (tn-value x)))) + (inst lr y (char-code (tn-value x)))) (define-move-fun (load-system-area-pointer 1) (vop x y) ((immediate) (sap-reg)) @@ -123,7 +123,7 @@ (:vop-var vop) (:save-p :compute-only) (:generator 666 - (error-call vop object-not-type-error x type))) + (error-call vop 'object-not-type-error x type))) @@ -141,7 +141,7 @@ (:arg-types tagged-num) (:note "fixnum untagging") (:generator 1 - (inst srawi y x 2))) + (inst srawi y x n-fixnum-tag-bits))) (define-move-vop move-to-word/fixnum :move (any-reg descriptor-reg) (signed-reg unsigned-reg)) @@ -151,7 +151,11 @@ (:results (y :scs (signed-reg unsigned-reg))) (:note "constant load") (:generator 1 - (inst lr y (tn-value x)))) + (cond ((sb!c::tn-leaf x) + (inst lr y (tn-value x))) + (t + (loadw y code-tn (tn-offset x) other-pointer-lowtag) + (inst srawi y y n-fixnum-tag-bits))))) (define-move-vop move-to-word-c :move (constant) (signed-reg unsigned-reg)) @@ -163,12 +167,8 @@ (:temporary (:scs (non-descriptor-reg)) temp) (:generator 4 (let ((done (gen-label))) - (inst andi. temp x 3) - (sc-case y - (signed-reg - (inst srawi y x 2)) - (unsigned-reg - (inst srwi y x 2))) + (inst andi. temp x fixnum-tag-mask) + (inst srawi y x n-fixnum-tag-bits) (inst beq done) (loadw y x bignum-digits-offset other-pointer-lowtag) @@ -185,7 +185,7 @@ (:result-types tagged-num) (:note "fixnum tagging") (:generator 1 - (inst slwi y x 2))) + (inst slwi y x n-fixnum-tag-bits))) (define-move-vop move-from-word/fixnum :move (signed-reg unsigned-reg) (any-reg descriptor-reg)) @@ -203,7 +203,7 @@ (inst mtxer zero-tn) ; clear sticky overflow bit in XER, CR0 (inst addo temp x x) ; set XER OV if top two bits differ (inst addo. temp temp temp) ; set CR0 SO if any top three bits differ - (inst slwi y x 2) ; assume fixnum (tagged ok, maybe lost some high bits) + (inst slwi y x n-fixnum-tag-bits) ; assume fixnum (tagged ok, maybe lost some high bits) (inst bns done) (with-fixed-allocation (y pa-flag temp bignum-widetag (1+ bignum-digits-offset)) @@ -224,20 +224,16 @@ (:generator 20 (move x arg) (let ((done (gen-label)) - (one-word (gen-label)) - (initial-alloc (pad-data-block (1+ bignum-digits-offset)))) - (inst srawi. temp x 29) - (inst slwi y x 2) + (one-word (gen-label))) + (inst srawi. temp x n-positive-fixnum-bits) + (inst slwi y x n-fixnum-tag-bits) (inst beq done) - (pseudo-atomic (pa-flag :extra initial-alloc) + (with-fixed-allocation + (y pa-flag temp bignum-widetag (+ 2 bignum-digits-offset)) (inst cmpwi x 0) - (inst ori y alloc-tn other-pointer-lowtag) (inst li temp (logior (ash 1 n-widetag-bits) bignum-widetag)) (inst bge one-word) - (inst addi alloc-tn alloc-tn - (- (pad-data-block (+ bignum-digits-offset 2)) - (pad-data-block (+ bignum-digits-offset 1)))) (inst li temp (logior (ash 2 n-widetag-bits) bignum-widetag)) (emit-label one-word) (storew temp y 0 other-pointer-lowtag)