X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcompiler%2Fmips%2Fmove.lisp;h=5bb0c85926fb3da40fdeb8f5ddfd1adaaa01383b;hb=49e8403800426f37a54d9b87353a31af36e7af40;hp=b8391996b13ae2fe47ada6bf30f427fcd5bb75ac;hpb=f8841336df537830152819a8dd346f51a8a62869;p=sbcl.git diff --git a/src/compiler/mips/move.lisp b/src/compiler/mips/move.lisp index b839199..5bb0c85 100644 --- a/src/compiler/mips/move.lisp +++ b/src/compiler/mips/move.lisp @@ -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))