X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcompiler%2Fhppa%2Fsystem.lisp;h=fd2dcff81143fc24f7e32798ddc6d6d43196f547;hb=70c40b1892a606163d0f60ac7b20093724e8e5e5;hp=c99cab8da45d1c921fddee7310c03764868aca7e;hpb=7deecae2d959173eda6a153d490c752c32050a9e;p=sbcl.git diff --git a/src/compiler/hppa/system.lisp b/src/compiler/hppa/system.lisp index c99cab8..fd2dcff 100644 --- a/src/compiler/hppa/system.lisp +++ b/src/compiler/hppa/system.lisp @@ -130,23 +130,6 @@ (:policy :fast-safe) (:generator 1 (inst zdep ptr n-positive-fixnum-bits n-positive-fixnum-bits res))) - -(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) - (:temporary (:scs (non-descriptor-reg)) t2) - (:generator 2 - (sc-case type - ((immediate) - (inst sll val n-widetag-bits temp) - (inst li (tn-value type) t2) - (inst or temp t2 res)) - (t - (inst sra type 2 temp) - (inst sll val (- n-widetag-bits 2) res) - (inst or res temp res))))) ;;;; Allocation @@ -259,3 +242,8 @@ (inst addi 1 count count) (inst stw count offset count-vector)))) +;;;; Dummy definition for a spin-loop hint VOP +(define-vop (spin-loop-hint) + (:translate spin-loop-hint) + (:policy :fast-safe) + (:generator 0))