diff --git a/compiler/sparc/arith.lisp b/compiler/sparc/arith.lisp index e4bd7f9e9fe8a374f122404c3f7d08dfbedc0add..27de74eccfd9a396d99136f5896a8e20e0064578 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.17 1999/12/22 19:26:23 dtc Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/arith.lisp,v 1.18 2000/01/16 20:12:12 dtc Exp $") ;;; ;;; ********************************************************************** ;;; @@ -204,13 +204,50 @@ ;;; Shifting -(define-vop (fast-ash) +(define-vop (fast-ash/unsigned=>unsigned) (:note "inline ASH") - (:args (number :scs (signed-reg unsigned-reg) :to :save) + (:args (number :scs (unsigned-reg) :to :save) (amount :scs (signed-reg immediate))) - (:arg-types (:or signed-num unsigned-num) signed-num) - (:results (result :scs (signed-reg unsigned-reg))) - (:result-types (:or signed-num unsigned-num)) + (:arg-types unsigned-num signed-num) + (:results (result :scs unsigned-reg)) + (:result-types unsigned-num) + (:translate ash) + (:policy :fast-safe) + (:temporary (:sc non-descriptor-reg) ndesc) + (:generator 3 + (sc-case amount + (signed-reg + (let ((positive (gen-label)) + (done (gen-label))) + (inst cmp amount) + (inst b :ge positive) + (inst neg ndesc amount) + (inst cmp ndesc 31) + (inst b :le done) + (inst srl result number ndesc) + (inst b done) + (inst srl result number 31) + + (emit-label positive) + ;; The result-type assures us that this shift will not overflow. + (inst sll result number amount) + + (emit-label done))) + + (immediate + (let ((amount (tn-value amount))) + (if (minusp amount) + (let ((amount (min 31 (- amount)))) + (inst srl result number amount)) + (inst sll result number amount))))))) + +(define-vop (fast-ash/signed=>signed) + (:note "inline ASH") + (:args (number :scs signed-reg :to :save) + (amount :scs (signed-reg immediate))) + (:arg-types signed-num signed-num) + (:results (result :scs signed-reg)) + (:result-types signed-num) (:translate ash) (:policy :fast-safe) (:temporary (:sc non-descriptor-reg) ndesc) @@ -224,13 +261,9 @@ (inst neg ndesc amount) (inst cmp ndesc 31) (inst b :le done) - (sc-case number - (signed-reg (inst sra result number ndesc)) - (unsigned-reg (inst srl result number ndesc))) + (inst sra result number ndesc) (inst b done) - (sc-case number - (signed-reg (inst sra result number 31)) - (unsigned-reg (inst srl result number 31))) + (inst sra result number 31) (emit-label positive) ;; The result-type assures us that this shift will not overflow. @@ -242,11 +275,7 @@ (let ((amount (tn-value amount))) (if (minusp amount) (let ((amount (min 31 (- amount)))) - (sc-case number - (unsigned-reg - (inst srl result number amount)) - (signed-reg - (inst sra result number amount)))) + (inst sra result number amount)) (inst sll result number amount))))))) diff --git a/compiler/x86/arith.lisp b/compiler/x86/arith.lisp index 6921e4a7afff609c3b29ff6553b8c856aaedbe7d..a6ca3530bbc85de8781711be80896c19f1f7629b 100644 --- a/compiler/x86/arith.lisp +++ b/compiler/x86/arith.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/x86/arith.lisp,v 1.11 1999/11/11 15:33:55 dtc Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/x86/arith.lisp,v 1.12 2000/01/16 20:12:23 dtc Exp $") ;;; ;;; ********************************************************************** ;;; @@ -623,21 +623,51 @@ ;; The result-type assures us that this shift will not overflow. (inst shl result :cl))) -(define-vop (fast-ash-c) +(define-vop (fast-ash-c/unsigned=>unsigned) (:translate ash) (:policy :fast-safe) - (:args (number :scs (signed-reg unsigned-reg) :target result - :load-if (not (and (sc-is number signed-stack unsigned-stack) - (sc-is result signed-stack unsigned-stack) + (:args (number :scs (unsigned-reg) :target result + :load-if (not (and (sc-is number unsigned-stack) + (sc-is result unsigned-stack) (location= number result))))) (:info amount) - (:arg-types (:or signed-num unsigned-num) (:constant integer)) - (:results (result :scs (signed-reg unsigned-reg) - :load-if (not - (and (sc-is number signed-stack unsigned-stack) - (sc-is result signed-stack unsigned-stack) - (location= number result))))) - (:result-types (:or signed-num unsigned-num)) + (:arg-types unsigned-num (:constant integer)) + (:results (result :scs (unsigned-reg) + :load-if (not (and (sc-is number unsigned-stack) + (sc-is result unsigned-stack) + (location= number result))))) + (:result-types unsigned-num) + (:note "inline ASH") + (:generator 3 + (cond ((and (= amount 1) (not (location= number result))) + (inst lea result (make-ea :dword :index number :scale 2))) + ((and (= amount 2) (not (location= number result))) + (inst lea result (make-ea :dword :index number :scale 4))) + ((and (= amount 3) (not (location= number result))) + (inst lea result (make-ea :dword :index number :scale 8))) + (t + (move result number) + (cond ((plusp amount) + ;; We don't have to worry about overflow because of the + ;; result type restriction. + (inst shl result amount)) + (t + (inst shr result (min 31 (- amount))))))))) + +(define-vop (fast-ash-c/signed=>signed) + (:translate ash) + (:policy :fast-safe) + (:args (number :scs (signed-reg) :target result + :load-if (not (and (sc-is number signed-stack) + (sc-is result signed-stack) + (location= number result))))) + (:info amount) + (:arg-types signed-num (:constant integer)) + (:results (result :scs (signed-reg) + :load-if (not (and (sc-is number signed-stack) + (sc-is result signed-stack) + (location= number result))))) + (:result-types signed-num) (:note "inline ASH") (:generator 3 (cond ((and (= amount 1) (not (location= number result))) @@ -652,29 +682,48 @@ ;; We don't have to worry about overflow because of the ;; result type restriction. (inst shl result amount)) - ((sc-is number signed-reg signed-stack) + (t ;; If the amount is greater than 31, only shift by 31. We ;; have to do this because the shift instructions only look ;; at the low five bits of the result. - (inst sar result (min 31 (- amount)))) - (t - (inst shr result (min 31 (- amount))))))))) + (inst sar result (min 31 (- amount))))))))) + +(define-vop (fast-ash-left/unsigned=>unsigned) + (:translate ash) + (:args (number :scs (unsigned-reg) :target result + :load-if (not (and (sc-is number unsigned-stack) + (sc-is result unsigned-stack) + (location= number result)))) + (amount :scs (unsigned-reg) :target ecx)) + (:arg-types unsigned-num positive-fixnum) + (:temporary (:sc unsigned-reg :offset ecx-offset :from (:argument 1)) ecx) + (:results (result :scs (unsigned-reg) :from (:argument 0) + :load-if (not (and (sc-is number unsigned-stack) + (sc-is result unsigned-stack) + (location= number result))))) + (:result-types unsigned-num) + (:policy :fast-safe) + (:note "inline ASH") + (:generator 4 + (move result number) + (move ecx amount) + ;; The result-type assures us that this shift will not overflow. + (inst shl result :cl))) -(define-vop (fast-ash-left) +(define-vop (fast-ash-left/signed=>signed) (:translate ash) - (:args (number :scs (signed-reg unsigned-reg) :target result - :load-if (not (and (sc-is number signed-stack unsigned-stack) - (sc-is result signed-stack unsigned-stack) + (:args (number :scs (signed-reg) :target result + :load-if (not (and (sc-is number signed-stack) + (sc-is result signed-stack) (location= number result)))) (amount :scs (unsigned-reg) :target ecx)) - (:arg-types (:or signed-num unsigned-num) positive-fixnum) + (:arg-types signed-num positive-fixnum) (:temporary (:sc unsigned-reg :offset ecx-offset :from (:argument 1)) ecx) - (:results (result :scs (signed-reg unsigned-reg) :from (:argument 0) - :load-if (not - (and (sc-is number signed-stack unsigned-stack) - (sc-is result signed-stack unsigned-stack) - (location= number result))))) - (:result-types (:or signed-num unsigned-num)) + (:results (result :scs (signed-reg) :from (:argument 0) + :load-if (not (and (sc-is number signed-stack) + (sc-is result signed-stack) + (location= number result))))) + (:result-types signed-num) (:policy :fast-safe) (:note "inline ASH") (:generator 4 @@ -683,19 +732,19 @@ ;; The result-type assures us that this shift will not overflow. (inst shl result :cl))) -(define-vop (fast-ash) +(define-vop (fast-ash/unsigned=>unsigned) (:translate ash) (:policy :fast-safe) - (:args (number :scs (signed-reg unsigned-reg) :target result) + (:args (number :scs (unsigned-reg) :target result) (amount :scs (signed-reg) :target ecx)) - (:arg-types (:or signed-num unsigned-num) signed-num) - (:results (result :scs (signed-reg unsigned-reg) :from (:argument 0))) - (:result-types (:or signed-num unsigned-num)) + (:arg-types unsigned-num signed-num) + (:results (result :scs (unsigned-reg) :from (:argument 0))) + (:result-types unsigned-num) (:temporary (:sc signed-reg :offset ecx-offset :from (:argument 1)) ecx) (:note "inline ASH") (:generator 5 (move result number) - (move ecx amount) + (move ecx amount) (inst or ecx ecx) (inst jmp :ns positive) (inst neg ecx) @@ -703,9 +752,7 @@ (inst jmp :be okay) (inst mov ecx 31) OKAY - (sc-case number - (signed-reg (inst sar result :cl)) - (unsigned-reg (inst shr result :cl))) + (inst shr result :cl) (inst jmp done) POSITIVE @@ -714,6 +761,34 @@ DONE)) +(define-vop (fast-ash/signed=>signed) + (:translate ash) + (:policy :fast-safe) + (:args (number :scs (signed-reg) :target result) + (amount :scs (signed-reg) :target ecx)) + (:arg-types signed-num signed-num) + (:results (result :scs (signed-reg) :from (:argument 0))) + (:result-types signed-num) + (:temporary (:sc signed-reg :offset ecx-offset :from (:argument 1)) ecx) + (:note "inline ASH") + (:generator 5 + (move result number) + (move ecx amount) + (inst or ecx ecx) + (inst jmp :ns positive) + (inst neg ecx) + (inst cmp ecx 31) + (inst jmp :be okay) + (inst mov ecx 31) + OKAY + (inst sar result :cl) + (inst jmp done) + + POSITIVE + ;; The result-type assures us that this shift will not overflow. + (inst shl result :cl) + + DONE)) ;;; note documentation for this function is wrong - rtfm