From 52d57db518a40f95e863b88f878e74c491642658 Mon Sep 17 00:00:00 2001 From: ram <ram> Date: Wed, 23 May 1990 16:39:30 +0000 Subject: [PATCH] Improved IR1-TRANFORM-< to expand to NIL in some interesting cases where the types do intersect. The old code was correct, but missed some opportunities. --- compiler/srctran.lisp | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/compiler/srctran.lisp b/compiler/srctran.lisp index 37f51e7d7..1bc909a79 100644 --- a/compiler/srctran.lisp +++ b/compiler/srctran.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman (FAHLMAN@CMUC). ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/srctran.lisp,v 1.8 1990/05/09 12:00:13 ram Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/srctran.lisp,v 1.9 1990/05/23 16:39:30 ram Exp $ ;;; ;;; This file contains macro-like source transformations which convert ;;; uses of certain functions into the canonical form desired within the @@ -790,21 +790,25 @@ ;;; IR1-TRANSFORM-< -- Internal ;;; ;;; See if we can statically determine (< X Y) using type information. If -;;; the types don't intersect, then we can always determine the relationship. -;;; < can only be true if X has a high bound and Y has a low bound, and X's -;;; high bound is < Y's low bound. +;;; X's high bound is < Y's low, then X < Y. Similarly, if X's low is >= to +;;; Y's high, the X >= Y (so return NIL). ;;; (defun ir1-transform-< (x y) (if (same-leaf-ref-p x y) 'nil (let* ((x (numeric-type-or-lose x)) + (x-lo (numeric-type-low x)) (x-hi (numeric-type-high x)) (y (numeric-type-or-lose y)) - (y-lo (numeric-type-low y))) - (when (types-intersect x y) (give-up)) - (if (and x-hi y-lo (< x-hi y-lo)) - 't - 'nil)))) + (y-lo (numeric-type-low y)) + (y-hi (numeric-type-high y))) + (cond ((and x-hi y-lo (< x-hi y-lo)) + 't) + ((and y-hi x-lo (>= x-lo y-hi)) + 'nil) + (t + (give-up)))))) + (deftransform < ((x y) (integer integer)) (ir1-transform-< x y)) -- GitLab