From d9a2d732104a2bea46b6e4243e07cc7fb38c5fc6 Mon Sep 17 00:00:00 2001 From: dtc <dtc> Date: Thu, 11 Dec 1997 22:28:50 +0000 Subject: [PATCH] Fix the folding of (+ x 0.0) which was being incorrectly transformed into 'x, which fails for (+ -0.0 0.0) => 0.0. Although (+ x -0.0) can be transformed to 'x. Also (expt x 0.0) was being transformed into 1 but not (expt x -0.0), both are now transformed into 1. But note that the result still isn't coerced to the correct type. --- compiler/srctran.lisp | 45 +++++++++++++++++++++++++++---------------- 1 file changed, 28 insertions(+), 17 deletions(-) diff --git a/compiler/srctran.lisp b/compiler/srctran.lisp index 46fde871e..1301148d6 100644 --- a/compiler/srctran.lisp +++ b/compiler/srctran.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/srctran.lisp,v 1.62 1997/11/16 14:00:01 dtc Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/srctran.lisp,v 1.63 1997/12/11 22:28:50 dtc Exp $") ;;; ;;; ********************************************************************** ;;; @@ -2503,23 +2503,33 @@ (values (type= (numeric-contagion x y) (numeric-contagion y y))))))) -;;; Fold (OP x 0). +;;; Fold (+ x 0). ;;; -;;; If y is not constant, not zerop, or is contagious, then give up. +;;; If y is not constant, not zerop, or is contagious, or a +;;; positive float +0.0 then give up. ;;; -(dolist (stuff '((+ x) - (- x) - (expt 1))) - (destructuring-bind (name result) stuff - (deftransform name ((x y) '(t (constant-argument t)) '* :eval-name t - :when :both) - "fold zero arg" - (let ((val (continuation-value y))) - (unless (and (zerop val) - (not (and (floatp val) (minusp (float-sign val)))) - (not-more-contagious y x)) - (give-up))) - result))) +(deftransform + ((x y) (t (constant-argument t)) * :when :both) + "fold zero arg" + (let ((val (continuation-value y))) + (unless (and (zerop val) + (not (and (floatp val) (plusp (float-sign val)))) + (not-more-contagious y x)) + (give-up))) + 'x) + +;;; Fold (- x 0). +;;; +;;; If y is not constant, not zerop, or is contagious, or a +;;; negative float -0.0 then give up. +;;; +(deftransform - ((x y) (t (constant-argument t)) * :when :both) + "fold zero arg" + (let ((val (continuation-value y))) + (unless (and (zerop val) + (not (and (floatp val) (minusp (float-sign val)))) + (not-more-contagious y x)) + (give-up))) + 'x) ;;; Fold (OP x +/-1) ;;; @@ -2546,7 +2556,8 @@ ;; multiplication and division for small integral powers. (unless (not-more-contagious y x) (give-up)) - (cond ((= val 2) '(* x x)) + (cond ((zerop val) 1) ; X should be coerced to the correct type. + ((= val 2) '(* x x)) ((= val -2) '(/ (* x x))) ((= val 3) '(* x x x)) ((= val -3) '(/ (* x x x))) -- GitLab