From db374f49377d8e8c491f3ed3fffdd768f2fd2c78 Mon Sep 17 00:00:00 2001 From: Carl Shapiro <cshapiro@common-lisp.net> Date: Thu, 8 Aug 2013 00:55:07 -0700 Subject: [PATCH] Use the faster imul instruction in the fast-*/unsigned=>unsigned vop. --- src/compiler/x86/arith.lisp | 18 +++++------------- 1 file changed, 5 insertions(+), 13 deletions(-) diff --git a/src/compiler/x86/arith.lisp b/src/compiler/x86/arith.lisp index ccd865ce9..d889e47e8 100644 --- a/src/compiler/x86/arith.lisp +++ b/src/compiler/x86/arith.lisp @@ -426,24 +426,16 @@ (define-vop (fast-*/unsigned=>unsigned fast-safe-arith-op) (:translate *) - (:args (x :scs (unsigned-reg) :target eax) + (:args (x :scs (unsigned-reg) :target r) (y :scs (unsigned-reg unsigned-stack))) (:arg-types unsigned-num unsigned-num) - (:temporary (:sc unsigned-reg :offset eax-offset :target result - :from (:argument 0) :to :result) eax) - (:temporary (:sc unsigned-reg :offset edx-offset - :from :eval :to :result) edx) - (:ignore edx) - (:results (result :scs (unsigned-reg))) + (:results (r :scs (unsigned-reg) :from (:argument 0))) (:result-types unsigned-num) (:note _N"inline (unsigned-byte 32) arithmetic") - (:vop-var vop) (:save-p :compute-only) - (:generator 6 - (move eax x) - (inst mul eax y) - (move result eax))) - + (:generator 5 + (move r x) + (inst imul r y))) (define-vop (fast-truncate/fixnum=>fixnum fast-safe-arith-op) (:translate truncate) -- GitLab