aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Analysis
diff options
context:
space:
mode:
authorWojciech Matyjewicz <wmatyjewicz@fastmail.fm>2008-02-12 15:09:36 +0000
committerWojciech Matyjewicz <wmatyjewicz@fastmail.fm>2008-02-12 15:09:36 +0000
commita5718fc3ad7af8dc39f557e55881e365d56c550f (patch)
tree80946930e84cc1b0228e8ab9081da9fe304e68e5 /lib/Analysis
parent350307faa8002cd91c610d0dcd98f7b443b4a889 (diff)
downloadexternal_llvm-a5718fc3ad7af8dc39f557e55881e365d56c550f.zip
external_llvm-a5718fc3ad7af8dc39f557e55881e365d56c550f.tar.gz
external_llvm-a5718fc3ad7af8dc39f557e55881e365d56c550f.tar.bz2
Fix PR2002. Suppose n is the initial value for the induction
variable (with step 1) and m is its final value. Then, the correct trip count is SMAX(m,n)-n. Previously, we used SMAX(0,m-n), but m-n may overflow and can't in general be interpreted as signed. Patch by Nick Lewycky. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47007 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis')
-rw-r--r--lib/Analysis/ScalarEvolution.cpp10
1 files changed, 4 insertions, 6 deletions
diff --git a/lib/Analysis/ScalarEvolution.cpp b/lib/Analysis/ScalarEvolution.cpp
index 122dba3..65cee82 100644
--- a/lib/Analysis/ScalarEvolution.cpp
+++ b/lib/Analysis/ScalarEvolution.cpp
@@ -2527,19 +2527,17 @@ HowManyLessThans(SCEV *LHS, SCEV *RHS, const Loop *L, bool isSigned) {
if (AddRec->isAffine()) {
// The number of iterations for "{n,+,1} < m", is m-n. However, we don't
// know that m is >= n on input to the loop. If it is, the condition
- // returns true zero times. To handle both cases, we return SMAX(0, m-n).
+ // returns true zero times. To handle both cases, we return SMAX(m, n)-n.
// FORNOW: We only support unit strides.
SCEVHandle One = SE.getIntegerSCEV(1, RHS->getType());
if (AddRec->getOperand(1) != One)
return UnknownValue;
- SCEVHandle Iters = SE.getMinusSCEV(RHS, AddRec->getOperand(0));
+ SCEVHandle Start = AddRec->getOperand(0);
+ SCEVHandle End = isSigned ? SE.getSMaxExpr(RHS, Start) : (SCEVHandle)RHS;
- if (isSigned)
- return SE.getSMaxExpr(SE.getIntegerSCEV(0, RHS->getType()), Iters);
- else
- return Iters;
+ return SE.getMinusSCEV(End, Start);
}
return UnknownValue;