From c736685e26f17608b173447f2c2ecadc38f0868d Mon Sep 17 00:00:00 2001 From: toy <toy> Date: Mon, 20 Oct 2003 01:25:02 +0000 Subject: [PATCH] Use the "natural" shift instructions instead of the V8 shift instructions, when possible. Also convert some shift instructions to signx or clruw synthetic instructions. --- compiler/sparc/alloc.lisp | 8 ++--- compiler/sparc/arith.lisp | 70 +++++++++++++++++++------------------- compiler/sparc/array.lisp | 56 +++++++++++++++--------------- compiler/sparc/call.lisp | 4 +-- compiler/sparc/cell.lisp | 4 +-- compiler/sparc/char.lisp | 10 +++--- compiler/sparc/debug.lisp | 8 ++--- compiler/sparc/float.lisp | 4 +-- compiler/sparc/memory.lisp | 4 +-- compiler/sparc/move.lisp | 52 ++++++++++++++-------------- compiler/sparc/system.lisp | 28 +++++++-------- 11 files changed, 124 insertions(+), 124 deletions(-) diff --git a/compiler/sparc/alloc.lisp b/compiler/sparc/alloc.lisp index eef6cd0aa..89688c474 100644 --- a/compiler/sparc/alloc.lisp +++ b/compiler/sparc/alloc.lisp @@ -5,7 +5,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/alloc.lisp,v 1.20 2003/10/08 01:15:00 toy Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/alloc.lisp,v 1.21 2003/10/20 01:25:01 toy Exp $") ;;; ;;; ********************************************************************** ;;; @@ -118,14 +118,14 @@ (:generator 100 (inst add boxed boxed-arg (fixnumize (1+ code-trace-table-offset-slot))) (inst and boxed (lognot lowtag-mask)) - (inst srl unboxed unboxed-arg word-shift) + (inst srln unboxed unboxed-arg word-shift) (inst add unboxed lowtag-mask) (inst and unboxed (lognot lowtag-mask)) (pseudo-atomic () ;; Figure out how much space we really need and allocate it. (inst add size boxed unboxed) (allocation result size other-pointer-type :temp-tn ndescr) - (inst sll ndescr boxed (- type-bits word-shift)) + (inst slln ndescr boxed (- type-bits word-shift)) (inst or ndescr code-header-type) (storew ndescr result 0 other-pointer-type) (storew unboxed result code-code-size-slot other-pointer-type) @@ -206,7 +206,7 @@ (:temporary (:scs (any-reg)) temp) (:generator 6 (inst add bytes extra (* (1+ words) word-bytes)) - (inst sll header bytes (- type-bits 2)) + (inst slln header bytes (- type-bits vm:fixnum-tag-bits)) ; because bytes is already a fixnum (inst add header header (+ (ash -2 type-bits) type)) (inst and bytes (lognot lowtag-mask)) (pseudo-atomic () diff --git a/compiler/sparc/arith.lisp b/compiler/sparc/arith.lisp index 4772faa36..2b6e8f372 100644 --- a/compiler/sparc/arith.lisp +++ b/compiler/sparc/arith.lisp @@ -5,7 +5,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/arith.lisp,v 1.35 2003/10/13 16:10:22 toy Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/arith.lisp,v 1.36 2003/10/20 01:25:01 toy Exp $") ;;; ;;; ********************************************************************** ;;; @@ -401,8 +401,8 @@ (inst cmp y zero-tn) (inst b :eq zero :pn) ;; Zap the higher 32 bits, just in case - (inst srl x 0) - (inst srl y 0) + (inst clruw x) + (inst clruw y) (inst udivx q x y) ;; Compute remainder (inst mulx r q y) @@ -431,28 +431,28 @@ (inst b :ge done) ;; The result-type assures us that this shift will not ;; overflow. - (inst sll result number amount) + (inst slln result number amount) (inst neg ndesc amount) ;; ndesc = max(-amount, 31) (inst cmp ndesc 31) (inst cmove :ge ndesc 31) - (inst sra result number ndesc) + (inst sran result number ndesc) (emit-label done))) (t (let ((done (gen-label))) (inst cmp amount) (inst b :ge done) ;; The result-type assures us that this shift will not overflow. - (inst sll result number amount) + (inst slln result number amount) ;; Handle right shifts here. (inst neg ndesc amount) (inst cmp ndesc 31) (inst b :le done) - (inst sra result number ndesc) + (inst sran result number ndesc) ;; Right shift of greater than 31 bits is the same as a shift ;; of 31 bits for signed 32-bit numbers. - (inst sra result number 31) + (inst sran result number 31) (emit-label done))))) @@ -461,9 +461,9 @@ (cond ((< amount -31) (inst li result -1)) ((< amount 0) - (inst sra result number (- amount))) + (inst sran result number (- amount))) ((> amount 0) - (inst sll result number amount)) + (inst slln result number amount)) (t ;; amount = 0. Shouldn't happen because of a ;; deftransform, but it's easy. @@ -488,11 +488,11 @@ (inst b :ge done) ;; The result-type assures us that this shift will not ;; overflow. - (inst sll result number amount) + (inst slln result number amount) (inst neg ndesc amount) ;; A right shift of 32 or more results in zero. (inst cmp ndesc 32) - (inst srl result number ndesc) + (inst srln result number ndesc) (inst cmove :ge result zero-tn) (emit-label done))) (t @@ -501,11 +501,11 @@ (inst b :ge done) ;; The result-type assures us that this shift will not ;; overflow. - (inst sll result number amount) + (inst slln result number amount) (inst neg ndesc amount) (inst cmp ndesc 32) (inst b :lt done) - (inst srl result number ndesc) + (inst srln result number ndesc) ;; Right shift of 32 or more is the same as zero for unsigned ;; 32-bit numbers. (move result zero-tn) @@ -517,9 +517,9 @@ (cond ((< amount -31) (move result zero-tn)) ((< amount 0) - (inst srl result number (- amount))) + (inst srln result number (- amount))) ((> amount 0) - (inst sll result number amount)) + (inst slln result number amount)) (t ;; amount = 0. Shouldn't happen because of a ;; deftransform, but it's easy. @@ -544,11 +544,11 @@ ;; shifted in are just fine for the fixnum tag. (sc-case amount ((signed-reg unsigned-reg) - (inst sll result number amount)) + (inst slln result number amount)) (immediate (let ((amount (tn-value amount))) (assert (>= amount 0)) - (inst sll result number amount)))))))) + (inst slln result number amount)))))))) (frob fast-ash-left/signed=>signed signed-reg signed-num signed-reg 3) (frob fast-ash-left/fixnum=>fixnum any-reg tagged-num any-reg 2) (frob fast-ash-left/unsigned=>unsigned unsigned-reg unsigned-num unsigned-reg 3)) @@ -650,9 +650,9 @@ ;; 2 LSBs to make it a fixnum again. (Those bits are junk.) (sc-case amount ((signed-reg unsigned-reg) - (inst sra temp number amount)) + (inst sran temp number amount)) (immediate - (inst sra temp number (tn-value amount)))) + (inst sran temp number (tn-value amount)))) (inst andn result temp fixnum-tag-mask))) @@ -682,7 +682,7 @@ (emit-label test) (inst cmp shift) (inst b :ne loop) - (inst srl shift 1)))) + (inst srln shift 1)))) (define-vop (unsigned-byte-32-count) (:translate logcount) @@ -705,7 +705,7 @@ (inst add mask (ldb (byte 10 0) bit-mask)) (inst and temp res mask) - (inst srl res shift) + (inst srln res shift) (inst and res mask) (inst add res temp))))) @@ -723,7 +723,7 @@ ;; */signed=>signed. Why? A fixnum product using signed=>signed ;; has to convert both args to signed-nums. But using this, we ;; don't have to and that saves an instruction. - (inst sra temp y fixnum-tag-bits) + (inst sran temp y fixnum-tag-bits) (inst smul r x temp))) ;; Multiplication by a constant. @@ -782,7 +782,7 @@ (:translate *) (:guard (backend-featurep :sparc-64)) (:generator 4 - (inst sra temp y fixnum-tag-bits) + (inst sran temp y fixnum-tag-bits) (inst mulx r x temp))) (define-vop (fast-v9-*/signed=>signed fast-signed-binop) @@ -939,9 +939,9 @@ (let ((done (gen-label))) (inst cmp shift) (inst b :eq done) - (inst srl res next shift) + (inst srln res next shift) (inst sub temp zero-tn shift) - (inst sll temp prev temp) + (inst slln temp prev temp) (inst or res temp) (emit-label done) (move result res)))) @@ -1017,13 +1017,13 @@ (:translate shift-towards-start) (:note "shift-towards-start") (:generator 1 - (inst sll r num amount))) + (inst slln r num amount))) (define-vop (shift-towards-end shift-towards-someplace) (:translate shift-towards-end) (:note "shift-towards-end") (:generator 1 - (inst srl r num amount))) + (inst srln r num amount))) @@ -1144,8 +1144,8 @@ ;; ;; Make sure the multiplier and multiplicand are really ;; unsigned 64-bit numbers. - (inst srl multiplier 0) - (inst srl multiplicand 0) + (inst clruw multiplier) + (inst clruw multiplicand) ;; Multiply the two numbers and put the result in ;; result-high. Copy the low 32-bits to result-low. Then @@ -1242,7 +1242,7 @@ (:results (digit :scs (unsigned-reg))) (:result-types unsigned-num) (:generator 1 - (inst sra digit fixnum fixnum-tag-bits))) + (inst sran digit fixnum fixnum-tag-bits))) (define-vop (bignum-floor) (:translate bignum::%floor) @@ -1332,7 +1332,7 @@ (:generator 1 (sc-case res (any-reg - (inst sll res digit fixnum-tag-bits)) + (inst slln res digit fixnum-tag-bits)) (signed-reg (move res digit))))) @@ -1346,17 +1346,17 @@ (:results (result :scs (unsigned-reg))) (:result-types unsigned-num) (:generator 1 - (inst sra result digit count))) + (inst sran result digit count))) (define-vop (digit-lshr digit-ashr) (:translate bignum::%digit-logical-shift-right) (:generator 1 - (inst srl result digit count))) + (inst srln result digit count))) (define-vop (digit-ashl digit-ashr) (:translate bignum::%ashl) (:generator 1 - (inst sll result digit count))) + (inst slln result digit count))) ;;;; Static functions. diff --git a/compiler/sparc/array.lisp b/compiler/sparc/array.lisp index 4dcd79e9c..a83cdfc8a 100644 --- a/compiler/sparc/array.lisp +++ b/compiler/sparc/array.lisp @@ -5,7 +5,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/array.lisp,v 1.29 2003/08/22 13:20:03 toy Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/array.lisp,v 1.30 2003/10/20 01:25:01 toy Exp $") ;;; ;;; ********************************************************************** ;;; @@ -36,11 +36,11 @@ (inst andn ndescr 4) (allocation header ndescr other-pointer-type :temp-tn gc-temp) (inst add ndescr rank (fixnumize (1- vm:array-dimensions-offset))) - (inst sll ndescr ndescr vm:type-bits) + (inst slln ndescr ndescr vm:type-bits) (inst or ndescr ndescr type) ;; Remove the extraneous fixnum tag bits because TYPE and RANK ;; were fixnums - (inst srl ndescr ndescr fixnum-tag-bits) + (inst srln ndescr ndescr fixnum-tag-bits) (storew ndescr header 0 vm:other-pointer-type)) (move result header))) @@ -76,7 +76,7 @@ (loadw temp x 0 vm:other-pointer-type) (inst sra temp vm:type-bits) (inst sub temp (1- vm:array-dimensions-offset)) - (inst sll res temp fixnum-tag-bits))) + (inst slln res temp fixnum-tag-bits))) @@ -181,8 +181,8 @@ (:generator 20 ;; temp = floor(index bit-shift), to get address of word ;; containing our bits. - (inst srl temp index ,bit-shift) - (inst sll temp fixnum-tag-bits) + (inst srln temp index ,bit-shift) + (inst slln temp fixnum-tag-bits) (inst add temp (- (* vm:vector-data-offset vm:word-bytes) vm:other-pointer-type)) (inst ld result object temp) @@ -192,10 +192,10 @@ (inst and temp index ,(1- elements-per-word)) (inst xor temp ,(1- elements-per-word)) ,@(unless (= bits 1) - `((inst sll temp ,(1- (integer-length bits))))) - (inst srl result temp) + `((inst slln temp ,(1- (integer-length bits))))) + (inst srln result temp) (inst and result ,(1- (ash 1 bits))) - (inst sll value result 2))) + (inst slln value result vm:fixnum-tag-bits))) (define-vop (,(symbolicate 'data-vector-ref-c/ type)) (:translate data-vector-ref) (:policy :fast-safe) @@ -219,7 +219,7 @@ (inst li temp offset) (inst ld result object temp)))) (unless (zerop extra) - (inst srl result (* ,bits extra))) + (inst srln result (* ,bits extra))) ;; Always need the mask unless the bits we wanted were the ;; most significant bits of the word. (unless (= extra ,(1- elements-per-word)) @@ -237,19 +237,19 @@ (:temporary (:scs (non-descriptor-reg)) temp old offset) (:temporary (:scs (non-descriptor-reg) :from (:argument 1)) shift) (:generator 25 - (inst srl offset index ,bit-shift) - (inst sll offset fixnum-tag-bits) + (inst srln offset index ,bit-shift) + (inst slln offset fixnum-tag-bits) (inst add offset (- (* vm:vector-data-offset vm:word-bytes) vm:other-pointer-type)) (inst ld old object offset) (inst and shift index ,(1- elements-per-word)) (inst xor shift ,(1- elements-per-word)) ,@(unless (= bits 1) - `((inst sll shift ,(1- (integer-length bits))))) + `((inst slln shift ,(1- (integer-length bits))))) (unless (and (sc-is value immediate) (= (tn-value value) ,(1- (ash 1 bits)))) (inst li temp ,(1- (ash 1 bits))) - (inst sll temp shift) + (inst slln temp shift) (inst not temp) (inst and old temp)) (unless (sc-is value zero) @@ -258,7 +258,7 @@ (inst li temp (logand (tn-value value) ,(1- (ash 1 bits))))) (unsigned-reg (inst and temp value ,(1- (ash 1 bits))))) - (inst sll temp shift) + (inst slln temp shift) (inst or old temp)) (inst st old object offset) (sc-case value @@ -290,8 +290,8 @@ (unless (and (sc-is value immediate) (= (tn-value value) ,(1- (ash 1 bits)))) (cond ((zerop extra) - (inst sll old ,bits) - (inst srl old ,bits)) + (inst slln old ,bits) + (inst srln old ,bits)) (t (inst li temp (lognot (ash ,(1- (ash 1 bits)) @@ -313,7 +313,7 @@ (inst li temp value) (inst or old temp))))) (unsigned-reg - (inst sll temp value + (inst slln temp value (* (logxor extra ,(1- elements-per-word)) ,bits)) (inst or old temp))) (if (typep offset '(signed-byte 13)) @@ -426,7 +426,7 @@ (:result-types double-float) (:temporary (:scs (non-descriptor-reg)) offset) (:generator 7 - (inst sll offset index 1) + (inst slln offset index 1) (inst add offset (- (* vm:vector-data-offset vm:word-bytes) vm:other-pointer-type)) (inst lddf value object offset))) @@ -463,7 +463,7 @@ (:result-types double-float) (:temporary (:scs (non-descriptor-reg)) offset) (:generator 20 - (inst sll offset index 1) + (inst slln offset index 1) (inst add offset (- (* vm:vector-data-offset vm:word-bytes) vm:other-pointer-type)) (inst stdf value object offset) @@ -507,7 +507,7 @@ (:result-types long-float) (:temporary (:scs (non-descriptor-reg)) offset) (:generator 7 - (inst sll offset index 2) + (inst slln offset index 2) (inst add offset (- (* vm:vector-data-offset vm:word-bytes) vm:other-pointer-type)) (load-long-reg value object offset nil))) @@ -525,7 +525,7 @@ (:result-types long-float) (:temporary (:scs (non-descriptor-reg)) offset) (:generator 20 - (inst sll offset index 2) + (inst slln offset index 2) (inst add offset (- (* vm:vector-data-offset vm:word-bytes) vm:other-pointer-type)) (store-long-reg value object offset nil) @@ -604,7 +604,7 @@ (:result-types complex-single-float) (:generator 5 (let ((real-tn (complex-single-reg-real-tn value))) - (inst sll offset index 1) + (inst slln offset index 1) (inst add offset (- (* vm:vector-data-offset vm:word-bytes) vm:other-pointer-type)) (inst ldf real-tn object offset)) @@ -653,7 +653,7 @@ (:generator 5 (let ((value-real (complex-single-reg-real-tn value)) (result-real (complex-single-reg-real-tn result))) - (inst sll offset index 1) + (inst slln offset index 1) (inst add offset (- (* vm:vector-data-offset vm:word-bytes) vm:other-pointer-type)) (inst stf value-real object offset) @@ -712,7 +712,7 @@ (:temporary (:scs (non-descriptor-reg) :from (:argument 1)) offset) (:generator 7 (let ((real-tn (complex-double-reg-real-tn value))) - (inst sll offset index 2) + (inst slln offset index 2) (inst add offset (- (* vm:vector-data-offset vm:word-bytes) vm:other-pointer-type)) (inst lddf real-tn object offset)) @@ -760,7 +760,7 @@ (:generator 20 (let ((value-real (complex-double-reg-real-tn value)) (result-real (complex-double-reg-real-tn result))) - (inst sll offset index 2) + (inst slln offset index 2) (inst add offset (- (* vm:vector-data-offset vm:word-bytes) vm:other-pointer-type)) (inst stdf value-real object offset) @@ -824,7 +824,7 @@ (:temporary (:scs (non-descriptor-reg) :from (:argument 1)) offset) (:generator 7 (let ((real-tn (complex-long-reg-real-tn value))) - (inst sll offset index 3) + (inst slln offset index 3) (inst add offset (- (* vm:vector-data-offset vm:word-bytes) vm:other-pointer-type)) (load-long-reg real-tn object offset nil)) @@ -848,7 +848,7 @@ (:generator 20 (let ((value-real (complex-long-reg-real-tn value)) (result-real (complex-long-reg-real-tn result))) - (inst sll offset index 3) + (inst slln offset index 3) (inst add offset (- (* vm:vector-data-offset vm:word-bytes) vm:other-pointer-type)) (store-long-reg value-real object offset nil) diff --git a/compiler/sparc/call.lisp b/compiler/sparc/call.lisp index 7b2bdff45..1d24cc642 100644 --- a/compiler/sparc/call.lisp +++ b/compiler/sparc/call.lisp @@ -5,7 +5,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/call.lisp,v 1.34 2003/08/26 11:50:04 toy Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/call.lisp,v 1.35 2003/10/20 01:25:01 toy Exp $") ;;; ;;; ********************************************************************** ;;; @@ -1190,7 +1190,7 @@ default-value-8 (pseudo-atomic () (assemble () ;; Allocate a cons (2 words) for each item. - (inst sll temp count 1) + (inst slln temp count 1) (allocation result temp list-pointer-type :stack-p dynamic-extent :temp-tn dst) diff --git a/compiler/sparc/cell.lisp b/compiler/sparc/cell.lisp index 550849627..8b77685cf 100644 --- a/compiler/sparc/cell.lisp +++ b/compiler/sparc/cell.lisp @@ -5,7 +5,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/cell.lisp,v 1.21 2002/10/24 20:38:58 toy Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/cell.lisp,v 1.22 2003/10/20 01:25:01 toy Exp $") ;;; ;;; ********************************************************************** ;;; @@ -263,7 +263,7 @@ (:result-types positive-fixnum) (:generator 4 (loadw temp struct 0 instance-pointer-type) - (inst srl res temp vm:type-bits))) + (inst srln res temp vm:type-bits))) (define-vop (instance-ref slot-ref) (:variant instance-slots-offset instance-pointer-type) diff --git a/compiler/sparc/char.lisp b/compiler/sparc/char.lisp index 482cac6c5..15f9cfadc 100644 --- a/compiler/sparc/char.lisp +++ b/compiler/sparc/char.lisp @@ -5,7 +5,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/char.lisp,v 1.11 2003/07/08 13:50:36 toy Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/char.lisp,v 1.12 2003/10/20 01:25:01 toy Rel $") ;;; ;;; ********************************************************************** ;;; @@ -28,7 +28,7 @@ (:results (y :scs (base-char-reg))) (:note "character untagging") (:generator 1 - (inst srl y x vm:type-bits))) + (inst srln y x vm:type-bits))) ;;; (define-move-vop move-to-base-char :move (any-reg descriptor-reg) (base-char-reg)) @@ -41,7 +41,7 @@ (:results (y :scs (any-reg descriptor-reg))) (:note "character tagging") (:generator 1 - (inst sll y x vm:type-bits) + (inst slln y x vm:type-bits) (inst or y vm:base-char-type))) ;;; (define-move-vop move-from-base-char :move @@ -104,7 +104,7 @@ (:results (res :scs (any-reg))) (:result-types positive-fixnum) (:generator 1 - (inst sll res ch fixnum-tag-bits))) + (inst slln res ch fixnum-tag-bits))) (define-vop (code-char) (:translate code-char) @@ -114,7 +114,7 @@ (:results (res :scs (base-char-reg))) (:result-types base-char) (:generator 1 - (inst srl res code fixnum-tag-bits))) + (inst srln res code fixnum-tag-bits))) ;;; Comparison of base-chars. diff --git a/compiler/sparc/debug.lisp b/compiler/sparc/debug.lisp index e8a76697d..449e81ef5 100644 --- a/compiler/sparc/debug.lisp +++ b/compiler/sparc/debug.lisp @@ -5,7 +5,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/debug.lisp,v 1.4 1994/10/31 04:46:41 ram Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/debug.lisp,v 1.5 2003/10/20 01:25:01 toy Exp $") ;;; ;;; ********************************************************************** ;;; @@ -75,10 +75,10 @@ (let ((bogus (gen-label)) (done (gen-label))) (loadw temp thing 0 lowtag) - (inst srl temp vm:type-bits) + (inst srln temp vm:type-bits) (inst cmp temp) (inst b :eq bogus) - (inst sll temp (1- (integer-length vm:word-bytes))) + (inst slln temp (1- (integer-length vm:word-bytes))) (unless (= lowtag vm:other-pointer-type) (inst add temp (- lowtag vm:other-pointer-type))) (inst sub code thing temp) @@ -123,4 +123,4 @@ (:result-types positive-fixnum) (:generator 5 (loadw res fun 0 function-pointer-type) - (inst srl res vm:type-bits))) + (inst srln res vm:type-bits))) diff --git a/compiler/sparc/float.lisp b/compiler/sparc/float.lisp index 80849ca0c..3d76206b9 100644 --- a/compiler/sparc/float.lisp +++ b/compiler/sparc/float.lisp @@ -5,7 +5,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/float.lisp,v 1.41 2003/09/05 15:35:32 toy Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/float.lisp,v 1.42 2003/10/20 01:25:01 toy Exp $") ;;; ;;; ********************************************************************** ;;; @@ -1400,7 +1400,7 @@ ;; %fcc's on the sparc V9. If not, we don't need this, but we ;; do need to make sure that the unused bits are written as ;; zeroes, according the the V9 architecture manual. - (inst sra new 0) + (inst signx new) (inst srlx my-fsr 32) (inst sllx my-fsr 32) (inst or my-fsr new) diff --git a/compiler/sparc/memory.lisp b/compiler/sparc/memory.lisp index a8aebf195..014b0a536 100644 --- a/compiler/sparc/memory.lisp +++ b/compiler/sparc/memory.lisp @@ -5,7 +5,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/memory.lisp,v 1.4 2002/09/04 14:04:18 toy Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/memory.lisp,v 1.5 2003/10/20 01:25:01 toy Rel $") ;;; ;;; ********************************************************************** ;;; @@ -96,7 +96,7 @@ (inst ,op value object temp))))) (t ,@(unless (zerop shift) - `((inst srl temp index ,shift))) + `((inst srln temp index ,shift))) (inst add temp ,(if (zerop shift) 'index 'temp) (- (ash offset vm:word-shift) lowtag)) (inst ,op value object temp))) diff --git a/compiler/sparc/move.lisp b/compiler/sparc/move.lisp index d86a0c872..6e2db27f0 100644 --- a/compiler/sparc/move.lisp +++ b/compiler/sparc/move.lisp @@ -5,11 +5,11 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/move.lisp,v 1.11 2003/08/03 11:27:46 gerd Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/move.lisp,v 1.12 2003/10/20 01:25:01 toy Exp $") ;;; ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/move.lisp,v 1.11 2003/08/03 11:27:46 gerd Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/move.lisp,v 1.12 2003/10/20 01:25:01 toy Exp $ ;;; ;;; This file contains the SPARC VM definition of operand loading/saving and ;;; the Move VOP. @@ -163,7 +163,7 @@ (:arg-types tagged-num) (:note "fixnum untagging") (:generator 1 - (inst sra y x fixnum-tag-bits))) + (inst sran y x fixnum-tag-bits))) ;;; (define-move-vop move-to-word/fixnum :move @@ -192,7 +192,7 @@ (let ((done (gen-label))) (inst andcc temp x fixnum-tag-mask) (inst b :eq done) - (inst sra y x fixnum-tag-bits) + (inst sran y x fixnum-tag-bits) (loadw y x bignum-digits-offset other-pointer-type) @@ -209,7 +209,7 @@ (:generator 4 (let ((done (gen-label))) (inst andcc temp x fixnum-tag-mask) - (inst sra temp x 0) ; sign-extend x to temp + (inst signx temp x) ; sign-extend x to temp (inst b :eq done) (inst srax y temp fixnum-tag-bits) @@ -232,7 +232,7 @@ (:result-types tagged-num) (:note "fixnum tagging") (:generator 1 - (inst sll y x fixnum-tag-bits))) + (inst slln y x fixnum-tag-bits))) ;;; (define-move-vop move-from-word/fixnum :move (signed-reg unsigned-reg) (any-reg descriptor-reg)) @@ -250,12 +250,12 @@ (move x arg) (let ((fixnum (gen-label)) (done (gen-label))) - (inst sra temp x positive-fixnum-bits) + (inst sran temp x positive-fixnum-bits) (inst cmp temp) (inst b :eq fixnum) (inst orncc temp zero-tn temp) (inst b :eq done) - (inst sll y x fixnum-tag-bits) + (inst slln y x fixnum-tag-bits) (with-fixed-allocation (y temp bignum-type (1+ bignum-digits-offset)) @@ -264,7 +264,7 @@ (inst nop) (emit-label fixnum) - (inst sll y x fixnum-tag-bits) + (inst slln y x fixnum-tag-bits) (emit-label done)))) ;;; (define-move-vop move-from-signed :move @@ -286,10 +286,10 @@ (move x arg) (let ((done (gen-label)) (one-word (gen-label))) - (inst sra temp x positive-fixnum-bits) + (inst sran temp x positive-fixnum-bits) (inst cmp temp) (inst b :eq done) - (inst sll y x fixnum-tag-bits) + (inst slln y x fixnum-tag-bits) ;; We always allocate 2 words even if we don't need it. (The ;; copying GC will take care of freeing the unused extra word.) @@ -361,7 +361,7 @@ ;; needed?) (define-move-function (load-signed64-signed 1) (vop x y) ((signed-reg) (signed64-reg unsigned64-reg)) - (inst sra y x 0)) + (inst signx y x)) ;; Move a signed64-reg to signed-reg by setting the high 32 bits to be ;; the sign. (Is this needed and will this do the right thing when @@ -369,7 +369,7 @@ #+nil (define-move-function (load-signed-signed64 1) (vop x y) ((signed64-reg) (signed-reg)) - (inst sra y x 0)) + (inst signx y x)) ;; Load a 64-bit number from the stack (define-move-function (load-number-stack-64 5) (vop x y) @@ -395,7 +395,7 @@ ;; Sign-extend the fixnum and then remove the tag. (Can't just ;; remove the tag because we don't know for sure if X has been ;; sign-extended to 64-bits. Let's be safe.) - (inst sra y x 0) + (inst signx y x) (inst srax y y fixnum-tag-bits))) (define-move-vop move-to-64bit-word/fixnum :move @@ -421,16 +421,16 @@ (:generator 4 (let ((done (gen-label))) (inst andcc temp x fixnum-tag-mask) - (inst sra temp x 0) ; sign-extend X to TEMP + (inst signx temp x) ; sign-extend X to TEMP (inst b :eq done :pt :xcc) - (inst sra y temp fixnum-tag-bits) ; Zap the tag bits + (inst sran y temp fixnum-tag-bits) ; Zap the tag bits ;; We have a bignum. We need to check the length. If the ;; length is 1, just get the one word. If it's 2, we need to ;; get both words. (loadw temp x 0 other-pointer-type) - (inst srl temp 8) + (inst srln temp 8) (inst cmp temp 1) (inst b :eq done) ;; Get the low word and sign-extend it @@ -463,7 +463,7 @@ (:arg-types signed-num) (:generator 0 ;; Sign-extend the 32-bit number - (inst sra y x 0))) + (inst signx y x))) (define-move-vop move-to-64bit-word/signed :move (signed-reg) (signed64-reg unsigned64-reg)) @@ -476,7 +476,7 @@ (:arg-types unsigned-num) (:generator 1 ;; Zero-extend the 32-bit number - (inst srl y x 0))) + (inst clruw y x 0))) (define-move-vop move-to-64bit-word/unsigned :move (unsigned-reg) (signed64-reg unsigned64-reg)) @@ -499,7 +499,7 @@ (inst orncc temp zero-tn temp) ;; If result is all zeroes, we have a negative fixnum. (inst b :eq done :pt :xcc) - (inst sll y x fixnum-tag-bits) + (inst slln y x fixnum-tag-bits) ;; A 64-bit signed integer takes exactly 2 bignum digits (with-fixed-allocation @@ -515,7 +515,7 @@ (inst nop) (emit-label fixnum) - (inst sll y x fixnum-tag-bits) + (inst slln y x fixnum-tag-bits) (emit-label done)))) (define-move-vop move-from-signed64 :move @@ -536,7 +536,7 @@ (inst cmp temp) ;; If result is all zeroes, we have a positive fixnum. (inst b :eq done :pt :xcc) - (inst sll y x fixnum-tag-bits) + (inst slln y x fixnum-tag-bits) ;; A unsigned 64-bit signed integer takes exactly 2 or 3 bignum ;; digits. We always allocate 3. (The copying GC will take @@ -570,16 +570,16 @@ (:generator 4 (let ((done (gen-label))) (inst andcc temp x fixnum-tag-mask) - (inst sra temp x 0) ; sign-extend X to TEMP + (inst signx temp x) ; sign-extend X to TEMP (inst b :eq done :pt :xcc) - (inst sra y temp fixnum-tag-bits) ; Zap the tag bits + (inst sran y temp fixnum-tag-bits) ; Zap the tag bits ;; We have a bignum. We need to check the length. If the ;; length is 1, just get the one word. If it's 2, we need to ;; get both words. (loadw temp x 0 other-pointer-type) - (inst srl temp 8) + (inst srln temp 8) (inst cmp temp 1) (inst b :eq done) ;; Get the low word and zero-extend it and we're done. @@ -634,7 +634,7 @@ ((signed64-reg unsigned64-reg) (move y x)) (signed-reg - (inst sra y x 0)) + (inst signx y x)) (immediate (inst li64 y (tn-value x))))) ((signed64-stack unsigned64-stack) diff --git a/compiler/sparc/system.lisp b/compiler/sparc/system.lisp index ab6991642..6a9c2c29d 100644 --- a/compiler/sparc/system.lisp +++ b/compiler/sparc/system.lisp @@ -5,7 +5,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/system.lisp,v 1.13 2003/02/25 15:54:55 emarsden Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/system.lisp,v 1.14 2003/10/20 01:25:02 toy Exp $") ;;; ;;; ********************************************************************** ;;; @@ -96,7 +96,7 @@ (:result-types positive-fixnum) (:generator 6 (loadw res x 0 vm:other-pointer-type) - (inst srl res res vm:type-bits))) + (inst srln res res vm:type-bits))) (define-vop (get-closure-length) (:translate get-closure-length) @@ -106,7 +106,7 @@ (:result-types positive-fixnum) (:generator 6 (loadw res x 0 vm:function-pointer-type) - (inst srl res res vm:type-bits))) + (inst srln res res vm:type-bits))) (define-vop (set-header-data) (:translate set-header-data) @@ -121,7 +121,7 @@ (inst and t1 vm:type-mask) (sc-case data (any-reg - (inst sll t2 data (- vm:type-bits 2)) + (inst slln t2 data (- vm:type-bits vm:fixnum-tag-bits)) (inst or t1 t2)) (immediate (inst or t1 (ash (tn-value data) vm:type-bits))) @@ -137,8 +137,8 @@ ;; ;; Some code (the hash table code) depends on this returning a ;; positive number so make sure it does. - (inst sll res ptr 3) - (inst srl res res 1))) + (inst slln res ptr vm:lowtag-bits) + (inst srln res res 1))) (define-vop (make-other-immediate-type) (:args (val :scs (any-reg descriptor-reg)) @@ -149,11 +149,11 @@ (:generator 2 (sc-case type (immediate - (inst sll temp val vm:type-bits) + (inst slln temp val vm:type-bits) (inst or res temp (tn-value type))) (t - (inst sra temp type 2) - (inst sll res val (- vm:type-bits 2)) + (inst sran temp type vm:fixnum-tag-bits) + (inst slln res val (- vm:type-bits vm:fixnum-tag-bits)) (inst or res res temp))))) @@ -195,8 +195,8 @@ (:result-types system-area-pointer) (:generator 10 (loadw ndescr code 0 vm:other-pointer-type) - (inst srl ndescr vm:type-bits) - (inst sll ndescr vm:word-shift) + (inst srln ndescr vm:type-bits) + (inst slln ndescr vm:word-shift) (inst sub ndescr vm:other-pointer-type) (inst add sap code ndescr))) @@ -208,8 +208,8 @@ (:temporary (:scs (non-descriptor-reg)) ndescr) (:generator 10 (loadw ndescr code 0 vm:other-pointer-type) - (inst srl ndescr vm:type-bits) - (inst sll ndescr vm:word-shift) + (inst srln ndescr vm:type-bits) + (inst slln ndescr vm:word-shift) (inst add ndescr offset) (inst add ndescr (- vm:function-pointer-type vm:other-pointer-type)) (inst add func code ndescr))) @@ -272,7 +272,7 @@ (inst rdtick tick) ;; Get the hi and low parts of the counter into the results. (inst srlx hi tick 32) - (inst srl lo tick 0))) + (inst clruw lo tick))) #+sparc-v9 (defun read-cycle-counter () -- GitLab