X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcompiler%2Fmips%2Fsystem.lisp;h=9cd4b39c562412f5c6fb0c1ec2c5bbcd4100a0bf;hb=b83353d9f998e5c0e34604b5593df70c66d2c510;hp=4ac025c6df297700978b7834a9bfd74de63f0507;hpb=4cb16425e2ffce3f70ad6ca10f0cde4f1545fa9d;p=sbcl.git diff --git a/src/compiler/mips/system.lisp b/src/compiler/mips/system.lisp index 4ac025c..9cd4b39 100644 --- a/src/compiler/mips/system.lisp +++ b/src/compiler/mips/system.lisp @@ -39,7 +39,7 @@ (inst beq ndescr function-ptr) ;; Pick off fixnums. - (inst and result object 3) + (inst and result object fixnum-tag-mask) (inst beq result done) ;; Pick off structure and list pointers. @@ -122,7 +122,7 @@ (inst and t1 widetag-mask) (sc-case data (any-reg - (inst sll t2 data (- n-widetag-bits 2)) + (inst sll t2 data (- n-widetag-bits n-fixnum-tag-bits)) (inst or t1 t2)) (immediate (inst or t1 (ash (tn-value data) n-widetag-bits))) @@ -141,22 +141,6 @@ (inst sll res ptr 3) (inst srl res res 1))) -(define-vop (make-other-immediate-type) - (:args (val :scs (any-reg descriptor-reg)) - (type :scs (any-reg descriptor-reg immediate) - :target temp)) - (:results (res :scs (any-reg descriptor-reg))) - (:temporary (:scs (non-descriptor-reg)) temp) - (:generator 2 - (sc-case type - ((immediate) - (inst sll temp val n-widetag-bits) - (inst or res temp (tn-value type))) - (t - (inst sra temp type 2) - (inst sll res val (- n-widetag-bits 2)) - (inst or res res temp))))) - ;;;; Allocation @@ -245,3 +229,9 @@ (inst nop) (inst addu count 1) (inst sw count count-vector offset)))) + +;;;; Dummy definition for a spin-loop hint VOP +(define-vop (spin-loop-hint) + (:translate spin-loop-hint) + (:policy :fast-safe) + (:generator 0))