blob: 81194adb37373e1be27c7e92775f0d3bcf06c89d [file] [log] [blame]
Chris Lattner53e677a2004-04-02 20:23:17 +00001//===- ScalarEvolution.cpp - Scalar Evolution Analysis ----------*- C++ -*-===//
Misha Brukman2b37d7c2005-04-21 21:13:18 +00002//
Chris Lattner53e677a2004-04-02 20:23:17 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukman2b37d7c2005-04-21 21:13:18 +00007//
Chris Lattner53e677a2004-04-02 20:23:17 +00008//===----------------------------------------------------------------------===//
9//
10// This file contains the implementation of the scalar evolution analysis
11// engine, which is used primarily to analyze expressions involving induction
12// variables in loops.
13//
14// There are several aspects to this library. First is the representation of
15// scalar expressions, which are represented as subclasses of the SCEV class.
16// These classes are used to represent certain types of subexpressions that we
Dan Gohmanbc3d77a2009-07-25 16:18:07 +000017// can handle. We only create one SCEV of a particular shape, so
18// pointer-comparisons for equality are legal.
Chris Lattner53e677a2004-04-02 20:23:17 +000019//
20// One important aspect of the SCEV objects is that they are never cyclic, even
21// if there is a cycle in the dataflow for an expression (ie, a PHI node). If
22// the PHI node is one of the idioms that we can represent (e.g., a polynomial
23// recurrence) then we represent it directly as a recurrence node, otherwise we
24// represent it as a SCEVUnknown node.
25//
26// In addition to being able to represent expressions of various types, we also
27// have folders that are used to build the *canonical* representation for a
28// particular expression. These folders are capable of using a variety of
29// rewrite rules to simplify the expressions.
Misha Brukman2b37d7c2005-04-21 21:13:18 +000030//
Chris Lattner53e677a2004-04-02 20:23:17 +000031// Once the folders are defined, we can implement the more interesting
32// higher-level code, such as the code that recognizes PHI nodes of various
33// types, computes the execution count of a loop, etc.
34//
Chris Lattner53e677a2004-04-02 20:23:17 +000035// TODO: We should use these routines and value representations to implement
36// dependence analysis!
37//
38//===----------------------------------------------------------------------===//
39//
40// There are several good references for the techniques used in this analysis.
41//
42// Chains of recurrences -- a method to expedite the evaluation
43// of closed-form functions
44// Olaf Bachmann, Paul S. Wang, Eugene V. Zima
45//
46// On computational properties of chains of recurrences
47// Eugene V. Zima
48//
49// Symbolic Evaluation of Chains of Recurrences for Loop Optimization
50// Robert A. van Engelen
51//
52// Efficient Symbolic Analysis for Optimizing Compilers
53// Robert A. van Engelen
54//
55// Using the chains of recurrences algebra for data dependence testing and
56// induction variable substitution
57// MS Thesis, Johnie Birch
58//
59//===----------------------------------------------------------------------===//
60
Chris Lattner3b27d682006-12-19 22:30:33 +000061#define DEBUG_TYPE "scalar-evolution"
Chris Lattner0a7f98c2004-04-15 15:07:24 +000062#include "llvm/Analysis/ScalarEvolutionExpressions.h"
Chris Lattner53e677a2004-04-02 20:23:17 +000063#include "llvm/Constants.h"
64#include "llvm/DerivedTypes.h"
Chris Lattner673e02b2004-10-12 01:49:27 +000065#include "llvm/GlobalVariable.h"
Dan Gohman26812322009-08-25 17:49:57 +000066#include "llvm/GlobalAlias.h"
Chris Lattner53e677a2004-04-02 20:23:17 +000067#include "llvm/Instructions.h"
Owen Anderson76f600b2009-07-06 22:37:39 +000068#include "llvm/LLVMContext.h"
Dan Gohmanca178902009-07-17 20:47:02 +000069#include "llvm/Operator.h"
John Criswella1156432005-10-27 15:54:34 +000070#include "llvm/Analysis/ConstantFolding.h"
Evan Cheng5a6c1a82009-02-17 00:13:06 +000071#include "llvm/Analysis/Dominators.h"
Chris Lattner53e677a2004-04-02 20:23:17 +000072#include "llvm/Analysis/LoopInfo.h"
Dan Gohman61ffa8e2009-06-16 19:52:01 +000073#include "llvm/Analysis/ValueTracking.h"
Chris Lattner53e677a2004-04-02 20:23:17 +000074#include "llvm/Assembly/Writer.h"
Dan Gohman2d1be872009-04-16 03:18:22 +000075#include "llvm/Target/TargetData.h"
Chris Lattner95255282006-06-28 23:17:24 +000076#include "llvm/Support/CommandLine.h"
Chris Lattner53e677a2004-04-02 20:23:17 +000077#include "llvm/Support/ConstantRange.h"
David Greene63c94632009-12-23 22:58:38 +000078#include "llvm/Support/Debug.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000079#include "llvm/Support/ErrorHandling.h"
Dan Gohman2d1be872009-04-16 03:18:22 +000080#include "llvm/Support/GetElementPtrTypeIterator.h"
Chris Lattner53e677a2004-04-02 20:23:17 +000081#include "llvm/Support/InstIterator.h"
Chris Lattner75de5ab2006-12-19 01:16:02 +000082#include "llvm/Support/MathExtras.h"
Dan Gohmanb7ef7292009-04-21 00:47:46 +000083#include "llvm/Support/raw_ostream.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000084#include "llvm/ADT/Statistic.h"
Dan Gohman2d1be872009-04-16 03:18:22 +000085#include "llvm/ADT/STLExtras.h"
Dan Gohman59ae6b92009-07-08 19:23:34 +000086#include "llvm/ADT/SmallPtrSet.h"
Alkis Evlogimenos20aa4742004-09-03 18:19:51 +000087#include <algorithm>
Chris Lattner53e677a2004-04-02 20:23:17 +000088using namespace llvm;
89
Chris Lattner3b27d682006-12-19 22:30:33 +000090STATISTIC(NumArrayLenItCounts,
91 "Number of trip counts computed with array length");
92STATISTIC(NumTripCountsComputed,
93 "Number of loops with predictable loop counts");
94STATISTIC(NumTripCountsNotComputed,
95 "Number of loops without predictable loop counts");
96STATISTIC(NumBruteForceTripCountsComputed,
97 "Number of loops with trip counts computed by force");
98
Dan Gohman844731a2008-05-13 00:00:25 +000099static cl::opt<unsigned>
Chris Lattner3b27d682006-12-19 22:30:33 +0000100MaxBruteForceIterations("scalar-evolution-max-iterations", cl::ReallyHidden,
101 cl::desc("Maximum number of iterations SCEV will "
Dan Gohman64a845e2009-06-24 04:48:43 +0000102 "symbolically execute a constant "
103 "derived loop"),
Chris Lattner3b27d682006-12-19 22:30:33 +0000104 cl::init(100));
105
Owen Andersond13db2c2010-07-21 22:09:45 +0000106INITIALIZE_PASS(ScalarEvolution, "scalar-evolution",
107 "Scalar Evolution Analysis", false, true);
Devang Patel19974732007-05-03 01:11:54 +0000108char ScalarEvolution::ID = 0;
Chris Lattner53e677a2004-04-02 20:23:17 +0000109
110//===----------------------------------------------------------------------===//
111// SCEV class definitions
112//===----------------------------------------------------------------------===//
113
114//===----------------------------------------------------------------------===//
115// Implementation of the SCEV class.
116//
Dan Gohmanc39f44b2009-06-30 20:13:32 +0000117
Chris Lattner53e677a2004-04-02 20:23:17 +0000118SCEV::~SCEV() {}
Dan Gohmanc39f44b2009-06-30 20:13:32 +0000119
Chris Lattner53e677a2004-04-02 20:23:17 +0000120void SCEV::dump() const {
David Greene25e0e872009-12-23 22:18:14 +0000121 print(dbgs());
122 dbgs() << '\n';
Dan Gohmanb7ef7292009-04-21 00:47:46 +0000123}
124
Dan Gohmancfeb6a42008-06-18 16:23:07 +0000125bool SCEV::isZero() const {
126 if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(this))
127 return SC->getValue()->isZero();
128 return false;
129}
130
Dan Gohman70a1fe72009-05-18 15:22:39 +0000131bool SCEV::isOne() const {
132 if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(this))
133 return SC->getValue()->isOne();
134 return false;
135}
Chris Lattner53e677a2004-04-02 20:23:17 +0000136
Dan Gohman4d289bf2009-06-24 00:30:26 +0000137bool SCEV::isAllOnesValue() const {
138 if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(this))
139 return SC->getValue()->isAllOnesValue();
140 return false;
141}
142
Owen Anderson753ad612009-06-22 21:57:23 +0000143SCEVCouldNotCompute::SCEVCouldNotCompute() :
Dan Gohman3bf63762010-06-18 19:54:20 +0000144 SCEV(FoldingSetNodeIDRef(), scCouldNotCompute) {}
Dan Gohman1c343752009-06-27 21:21:31 +0000145
Chris Lattner53e677a2004-04-02 20:23:17 +0000146bool SCEVCouldNotCompute::isLoopInvariant(const Loop *L) const {
Torok Edwinc23197a2009-07-14 16:55:14 +0000147 llvm_unreachable("Attempt to use a SCEVCouldNotCompute object!");
Misha Brukmanbb2aff12004-04-05 19:00:46 +0000148 return false;
Chris Lattner53e677a2004-04-02 20:23:17 +0000149}
150
151const Type *SCEVCouldNotCompute::getType() const {
Torok Edwinc23197a2009-07-14 16:55:14 +0000152 llvm_unreachable("Attempt to use a SCEVCouldNotCompute object!");
Misha Brukmanbb2aff12004-04-05 19:00:46 +0000153 return 0;
Chris Lattner53e677a2004-04-02 20:23:17 +0000154}
155
156bool SCEVCouldNotCompute::hasComputableLoopEvolution(const Loop *L) const {
Torok Edwinc23197a2009-07-14 16:55:14 +0000157 llvm_unreachable("Attempt to use a SCEVCouldNotCompute object!");
Chris Lattner53e677a2004-04-02 20:23:17 +0000158 return false;
159}
160
Dan Gohmanfef8bb22009-07-25 01:13:03 +0000161bool SCEVCouldNotCompute::hasOperand(const SCEV *) const {
162 llvm_unreachable("Attempt to use a SCEVCouldNotCompute object!");
163 return false;
Chris Lattner4dc534c2005-02-13 04:37:18 +0000164}
165
Dan Gohmanb7ef7292009-04-21 00:47:46 +0000166void SCEVCouldNotCompute::print(raw_ostream &OS) const {
Chris Lattner53e677a2004-04-02 20:23:17 +0000167 OS << "***COULDNOTCOMPUTE***";
168}
169
170bool SCEVCouldNotCompute::classof(const SCEV *S) {
171 return S->getSCEVType() == scCouldNotCompute;
172}
173
Dan Gohman0bba49c2009-07-07 17:06:11 +0000174const SCEV *ScalarEvolution::getConstant(ConstantInt *V) {
Dan Gohman1c343752009-06-27 21:21:31 +0000175 FoldingSetNodeID ID;
176 ID.AddInteger(scConstant);
177 ID.AddPointer(V);
178 void *IP = 0;
179 if (const SCEV *S = UniqueSCEVs.FindNodeOrInsertPos(ID, IP)) return S;
Dan Gohman3bf63762010-06-18 19:54:20 +0000180 SCEV *S = new (SCEVAllocator) SCEVConstant(ID.Intern(SCEVAllocator), V);
Dan Gohman1c343752009-06-27 21:21:31 +0000181 UniqueSCEVs.InsertNode(S, IP);
182 return S;
Chris Lattner0a7f98c2004-04-15 15:07:24 +0000183}
Chris Lattner53e677a2004-04-02 20:23:17 +0000184
Dan Gohman0bba49c2009-07-07 17:06:11 +0000185const SCEV *ScalarEvolution::getConstant(const APInt& Val) {
Owen Andersoneed707b2009-07-24 23:12:02 +0000186 return getConstant(ConstantInt::get(getContext(), Val));
Dan Gohman9a6ae962007-07-09 15:25:17 +0000187}
188
Dan Gohman0bba49c2009-07-07 17:06:11 +0000189const SCEV *
Dan Gohman6de29f82009-06-15 22:12:54 +0000190ScalarEvolution::getConstant(const Type *Ty, uint64_t V, bool isSigned) {
Dan Gohmana560fd22010-04-21 16:04:04 +0000191 const IntegerType *ITy = cast<IntegerType>(getEffectiveSCEVType(Ty));
192 return getConstant(ConstantInt::get(ITy, V, isSigned));
Dan Gohman6de29f82009-06-15 22:12:54 +0000193}
194
Chris Lattner0a7f98c2004-04-15 15:07:24 +0000195const Type *SCEVConstant::getType() const { return V->getType(); }
Chris Lattner53e677a2004-04-02 20:23:17 +0000196
Dan Gohmanb7ef7292009-04-21 00:47:46 +0000197void SCEVConstant::print(raw_ostream &OS) const {
Chris Lattner0a7f98c2004-04-15 15:07:24 +0000198 WriteAsOperand(OS, V, false);
199}
Chris Lattner53e677a2004-04-02 20:23:17 +0000200
Dan Gohman3bf63762010-06-18 19:54:20 +0000201SCEVCastExpr::SCEVCastExpr(const FoldingSetNodeIDRef ID,
Dan Gohmanc050fd92009-07-13 20:50:19 +0000202 unsigned SCEVTy, const SCEV *op, const Type *ty)
Dan Gohman3bf63762010-06-18 19:54:20 +0000203 : SCEV(ID, SCEVTy), Op(op), Ty(ty) {}
Dan Gohman1c343752009-06-27 21:21:31 +0000204
Dan Gohman84923602009-04-21 01:25:57 +0000205bool SCEVCastExpr::dominates(BasicBlock *BB, DominatorTree *DT) const {
206 return Op->dominates(BB, DT);
207}
208
Dan Gohman6e70e312009-09-27 15:26:03 +0000209bool SCEVCastExpr::properlyDominates(BasicBlock *BB, DominatorTree *DT) const {
210 return Op->properlyDominates(BB, DT);
211}
212
Dan Gohman3bf63762010-06-18 19:54:20 +0000213SCEVTruncateExpr::SCEVTruncateExpr(const FoldingSetNodeIDRef ID,
Dan Gohmanc050fd92009-07-13 20:50:19 +0000214 const SCEV *op, const Type *ty)
Dan Gohman3bf63762010-06-18 19:54:20 +0000215 : SCEVCastExpr(ID, scTruncate, op, ty) {
Duncan Sands1df98592010-02-16 11:11:14 +0000216 assert((Op->getType()->isIntegerTy() || Op->getType()->isPointerTy()) &&
217 (Ty->isIntegerTy() || Ty->isPointerTy()) &&
Chris Lattner0a7f98c2004-04-15 15:07:24 +0000218 "Cannot truncate non-integer value!");
Chris Lattner0a7f98c2004-04-15 15:07:24 +0000219}
Chris Lattner53e677a2004-04-02 20:23:17 +0000220
Dan Gohmanb7ef7292009-04-21 00:47:46 +0000221void SCEVTruncateExpr::print(raw_ostream &OS) const {
Dan Gohman36b8e532009-04-29 20:27:52 +0000222 OS << "(trunc " << *Op->getType() << " " << *Op << " to " << *Ty << ")";
Chris Lattner0a7f98c2004-04-15 15:07:24 +0000223}
224
Dan Gohman3bf63762010-06-18 19:54:20 +0000225SCEVZeroExtendExpr::SCEVZeroExtendExpr(const FoldingSetNodeIDRef ID,
Dan Gohmanc050fd92009-07-13 20:50:19 +0000226 const SCEV *op, const Type *ty)
Dan Gohman3bf63762010-06-18 19:54:20 +0000227 : SCEVCastExpr(ID, scZeroExtend, op, ty) {
Duncan Sands1df98592010-02-16 11:11:14 +0000228 assert((Op->getType()->isIntegerTy() || Op->getType()->isPointerTy()) &&
229 (Ty->isIntegerTy() || Ty->isPointerTy()) &&
Chris Lattner0a7f98c2004-04-15 15:07:24 +0000230 "Cannot zero extend non-integer value!");
Chris Lattner0a7f98c2004-04-15 15:07:24 +0000231}
232
Dan Gohmanb7ef7292009-04-21 00:47:46 +0000233void SCEVZeroExtendExpr::print(raw_ostream &OS) const {
Dan Gohman36b8e532009-04-29 20:27:52 +0000234 OS << "(zext " << *Op->getType() << " " << *Op << " to " << *Ty << ")";
Chris Lattner0a7f98c2004-04-15 15:07:24 +0000235}
236
Dan Gohman3bf63762010-06-18 19:54:20 +0000237SCEVSignExtendExpr::SCEVSignExtendExpr(const FoldingSetNodeIDRef ID,
Dan Gohmanc050fd92009-07-13 20:50:19 +0000238 const SCEV *op, const Type *ty)
Dan Gohman3bf63762010-06-18 19:54:20 +0000239 : SCEVCastExpr(ID, scSignExtend, op, ty) {
Duncan Sands1df98592010-02-16 11:11:14 +0000240 assert((Op->getType()->isIntegerTy() || Op->getType()->isPointerTy()) &&
241 (Ty->isIntegerTy() || Ty->isPointerTy()) &&
Dan Gohmand19534a2007-06-15 14:38:12 +0000242 "Cannot sign extend non-integer value!");
Dan Gohmand19534a2007-06-15 14:38:12 +0000243}
244
Dan Gohmanb7ef7292009-04-21 00:47:46 +0000245void SCEVSignExtendExpr::print(raw_ostream &OS) const {
Dan Gohman36b8e532009-04-29 20:27:52 +0000246 OS << "(sext " << *Op->getType() << " " << *Op << " to " << *Ty << ")";
Dan Gohmand19534a2007-06-15 14:38:12 +0000247}
248
Dan Gohmanb7ef7292009-04-21 00:47:46 +0000249void SCEVCommutativeExpr::print(raw_ostream &OS) const {
Chris Lattner0a7f98c2004-04-15 15:07:24 +0000250 const char *OpStr = getOperationStr();
Dan Gohmana5145c82010-04-16 15:03:25 +0000251 OS << "(";
252 for (op_iterator I = op_begin(), E = op_end(); I != E; ++I) {
253 OS << **I;
Oscar Fuentesee56c422010-08-02 06:00:15 +0000254 if (llvm::next(I) != E)
Dan Gohmana5145c82010-04-16 15:03:25 +0000255 OS << OpStr;
256 }
Chris Lattner0a7f98c2004-04-15 15:07:24 +0000257 OS << ")";
258}
259
Dan Gohmanecb403a2009-05-07 14:00:19 +0000260bool SCEVNAryExpr::dominates(BasicBlock *BB, DominatorTree *DT) const {
Dan Gohmanbb854092010-08-16 16:16:11 +0000261 for (op_iterator I = op_begin(), E = op_end(); I != E; ++I)
262 if (!(*I)->dominates(BB, DT))
Evan Cheng5a6c1a82009-02-17 00:13:06 +0000263 return false;
Evan Cheng5a6c1a82009-02-17 00:13:06 +0000264 return true;
265}
266
Dan Gohman6e70e312009-09-27 15:26:03 +0000267bool SCEVNAryExpr::properlyDominates(BasicBlock *BB, DominatorTree *DT) const {
Dan Gohmanbb854092010-08-16 16:16:11 +0000268 for (op_iterator I = op_begin(), E = op_end(); I != E; ++I)
269 if (!(*I)->properlyDominates(BB, DT))
Dan Gohman6e70e312009-09-27 15:26:03 +0000270 return false;
Dan Gohman6e70e312009-09-27 15:26:03 +0000271 return true;
272}
273
Dan Gohman2f199f92010-08-16 16:21:27 +0000274bool SCEVNAryExpr::isLoopInvariant(const Loop *L) const {
275 for (op_iterator I = op_begin(), E = op_end(); I != E; ++I)
276 if (!(*I)->isLoopInvariant(L))
277 return false;
278 return true;
279}
280
281// hasComputableLoopEvolution - N-ary expressions have computable loop
282// evolutions iff they have at least one operand that varies with the loop,
283// but that all varying operands are computable.
284bool SCEVNAryExpr::hasComputableLoopEvolution(const Loop *L) const {
285 bool HasVarying = false;
286 for (op_iterator I = op_begin(), E = op_end(); I != E; ++I) {
287 const SCEV *S = *I;
288 if (!S->isLoopInvariant(L)) {
289 if (S->hasComputableLoopEvolution(L))
290 HasVarying = true;
291 else
292 return false;
293 }
294 }
295 return HasVarying;
296}
297
298bool SCEVNAryExpr::hasOperand(const SCEV *O) const {
299 for (op_iterator I = op_begin(), E = op_end(); I != E; ++I) {
300 const SCEV *S = *I;
301 if (O == S || S->hasOperand(O))
302 return true;
303 }
304 return false;
305}
306
Evan Cheng5a6c1a82009-02-17 00:13:06 +0000307bool SCEVUDivExpr::dominates(BasicBlock *BB, DominatorTree *DT) const {
308 return LHS->dominates(BB, DT) && RHS->dominates(BB, DT);
309}
310
Dan Gohman6e70e312009-09-27 15:26:03 +0000311bool SCEVUDivExpr::properlyDominates(BasicBlock *BB, DominatorTree *DT) const {
312 return LHS->properlyDominates(BB, DT) && RHS->properlyDominates(BB, DT);
313}
314
Dan Gohmanb7ef7292009-04-21 00:47:46 +0000315void SCEVUDivExpr::print(raw_ostream &OS) const {
Wojciech Matyjewicze3320a12008-02-11 11:03:14 +0000316 OS << "(" << *LHS << " /u " << *RHS << ")";
Chris Lattner0a7f98c2004-04-15 15:07:24 +0000317}
318
Wojciech Matyjewicze3320a12008-02-11 11:03:14 +0000319const Type *SCEVUDivExpr::getType() const {
Dan Gohman91bb61a2009-05-26 17:44:05 +0000320 // In most cases the types of LHS and RHS will be the same, but in some
321 // crazy cases one or the other may be a pointer. ScalarEvolution doesn't
322 // depend on the type for correctness, but handling types carefully can
323 // avoid extra casts in the SCEVExpander. The LHS is more likely to be
324 // a pointer type than the RHS, so use the RHS' type here.
325 return RHS->getType();
Chris Lattner0a7f98c2004-04-15 15:07:24 +0000326}
327
Chris Lattner0a7f98c2004-04-15 15:07:24 +0000328bool SCEVAddRecExpr::isLoopInvariant(const Loop *QueryLoop) const {
Dan Gohmana3035a62009-05-20 01:01:24 +0000329 // Add recurrences are never invariant in the function-body (null loop).
Dan Gohmane890eea2009-06-26 22:17:21 +0000330 if (!QueryLoop)
331 return false;
332
333 // This recurrence is variant w.r.t. QueryLoop if QueryLoop contains L.
Dan Gohman92329c72009-12-18 01:24:09 +0000334 if (QueryLoop->contains(L))
Dan Gohmane890eea2009-06-26 22:17:21 +0000335 return false;
336
Dan Gohman71c41442010-08-13 20:11:39 +0000337 // This recurrence is invariant w.r.t. QueryLoop if L contains QueryLoop.
338 if (L->contains(QueryLoop))
339 return true;
340
Dan Gohmane890eea2009-06-26 22:17:21 +0000341 // This recurrence is variant w.r.t. QueryLoop if any of its operands
342 // are variant.
343 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
344 if (!getOperand(i)->isLoopInvariant(QueryLoop))
345 return false;
346
347 // Otherwise it's loop-invariant.
348 return true;
Chris Lattner53e677a2004-04-02 20:23:17 +0000349}
350
Dan Gohman39125d82010-02-13 00:19:39 +0000351bool
352SCEVAddRecExpr::dominates(BasicBlock *BB, DominatorTree *DT) const {
353 return DT->dominates(L->getHeader(), BB) &&
354 SCEVNAryExpr::dominates(BB, DT);
355}
356
357bool
358SCEVAddRecExpr::properlyDominates(BasicBlock *BB, DominatorTree *DT) const {
359 // This uses a "dominates" query instead of "properly dominates" query because
360 // the instruction which produces the addrec's value is a PHI, and a PHI
361 // effectively properly dominates its entire containing block.
362 return DT->dominates(L->getHeader(), BB) &&
363 SCEVNAryExpr::properlyDominates(BB, DT);
364}
365
Dan Gohmanb7ef7292009-04-21 00:47:46 +0000366void SCEVAddRecExpr::print(raw_ostream &OS) const {
Chris Lattner0a7f98c2004-04-15 15:07:24 +0000367 OS << "{" << *Operands[0];
Dan Gohmanf9e64722010-03-18 01:17:13 +0000368 for (unsigned i = 1, e = NumOperands; i != e; ++i)
Chris Lattner0a7f98c2004-04-15 15:07:24 +0000369 OS << ",+," << *Operands[i];
Dan Gohman30733292010-01-09 18:17:45 +0000370 OS << "}<";
371 WriteAsOperand(OS, L->getHeader(), /*PrintType=*/false);
372 OS << ">";
Chris Lattner0a7f98c2004-04-15 15:07:24 +0000373}
Chris Lattner53e677a2004-04-02 20:23:17 +0000374
Dan Gohmanab37f502010-08-02 23:49:30 +0000375void SCEVUnknown::deleted() {
376 // Clear this SCEVUnknown from ValuesAtScopes.
377 SE->ValuesAtScopes.erase(this);
378
379 // Remove this SCEVUnknown from the uniquing map.
380 SE->UniqueSCEVs.RemoveNode(this);
381
382 // Release the value.
383 setValPtr(0);
384}
385
386void SCEVUnknown::allUsesReplacedWith(Value *New) {
387 // Clear this SCEVUnknown from ValuesAtScopes.
388 SE->ValuesAtScopes.erase(this);
389
390 // Remove this SCEVUnknown from the uniquing map.
391 SE->UniqueSCEVs.RemoveNode(this);
392
393 // Update this SCEVUnknown to point to the new value. This is needed
394 // because there may still be outstanding SCEVs which still point to
395 // this SCEVUnknown.
396 setValPtr(New);
397}
398
Chris Lattner0a7f98c2004-04-15 15:07:24 +0000399bool SCEVUnknown::isLoopInvariant(const Loop *L) const {
400 // All non-instruction values are loop invariant. All instructions are loop
401 // invariant if they are not contained in the specified loop.
Dan Gohmana3035a62009-05-20 01:01:24 +0000402 // Instructions are never considered invariant in the function body
403 // (null loop) because they are defined within the "loop".
Dan Gohmanab37f502010-08-02 23:49:30 +0000404 if (Instruction *I = dyn_cast<Instruction>(getValue()))
Dan Gohman92329c72009-12-18 01:24:09 +0000405 return L && !L->contains(I);
Chris Lattner0a7f98c2004-04-15 15:07:24 +0000406 return true;
407}
Chris Lattner53e677a2004-04-02 20:23:17 +0000408
Evan Cheng5a6c1a82009-02-17 00:13:06 +0000409bool SCEVUnknown::dominates(BasicBlock *BB, DominatorTree *DT) const {
410 if (Instruction *I = dyn_cast<Instruction>(getValue()))
411 return DT->dominates(I->getParent(), BB);
412 return true;
413}
414
Dan Gohman6e70e312009-09-27 15:26:03 +0000415bool SCEVUnknown::properlyDominates(BasicBlock *BB, DominatorTree *DT) const {
416 if (Instruction *I = dyn_cast<Instruction>(getValue()))
417 return DT->properlyDominates(I->getParent(), BB);
418 return true;
419}
420
Chris Lattner0a7f98c2004-04-15 15:07:24 +0000421const Type *SCEVUnknown::getType() const {
Dan Gohmanab37f502010-08-02 23:49:30 +0000422 return getValue()->getType();
Chris Lattner0a7f98c2004-04-15 15:07:24 +0000423}
Chris Lattner53e677a2004-04-02 20:23:17 +0000424
Dan Gohman0f5efe52010-01-28 02:15:55 +0000425bool SCEVUnknown::isSizeOf(const Type *&AllocTy) const {
Dan Gohmanab37f502010-08-02 23:49:30 +0000426 if (ConstantExpr *VCE = dyn_cast<ConstantExpr>(getValue()))
Dan Gohman0f5efe52010-01-28 02:15:55 +0000427 if (VCE->getOpcode() == Instruction::PtrToInt)
428 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(VCE->getOperand(0)))
Dan Gohman8db08df2010-02-02 01:38:49 +0000429 if (CE->getOpcode() == Instruction::GetElementPtr &&
430 CE->getOperand(0)->isNullValue() &&
431 CE->getNumOperands() == 2)
432 if (ConstantInt *CI = dyn_cast<ConstantInt>(CE->getOperand(1)))
433 if (CI->isOne()) {
434 AllocTy = cast<PointerType>(CE->getOperand(0)->getType())
435 ->getElementType();
436 return true;
437 }
Dan Gohman0f5efe52010-01-28 02:15:55 +0000438
439 return false;
440}
441
442bool SCEVUnknown::isAlignOf(const Type *&AllocTy) const {
Dan Gohmanab37f502010-08-02 23:49:30 +0000443 if (ConstantExpr *VCE = dyn_cast<ConstantExpr>(getValue()))
Dan Gohman0f5efe52010-01-28 02:15:55 +0000444 if (VCE->getOpcode() == Instruction::PtrToInt)
445 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(VCE->getOperand(0)))
Dan Gohman8db08df2010-02-02 01:38:49 +0000446 if (CE->getOpcode() == Instruction::GetElementPtr &&
447 CE->getOperand(0)->isNullValue()) {
448 const Type *Ty =
449 cast<PointerType>(CE->getOperand(0)->getType())->getElementType();
450 if (const StructType *STy = dyn_cast<StructType>(Ty))
451 if (!STy->isPacked() &&
452 CE->getNumOperands() == 3 &&
453 CE->getOperand(1)->isNullValue()) {
454 if (ConstantInt *CI = dyn_cast<ConstantInt>(CE->getOperand(2)))
455 if (CI->isOne() &&
456 STy->getNumElements() == 2 &&
Duncan Sandsb0bc6c32010-02-15 16:12:20 +0000457 STy->getElementType(0)->isIntegerTy(1)) {
Dan Gohman8db08df2010-02-02 01:38:49 +0000458 AllocTy = STy->getElementType(1);
459 return true;
460 }
461 }
462 }
Dan Gohman0f5efe52010-01-28 02:15:55 +0000463
464 return false;
465}
466
Dan Gohman4f8eea82010-02-01 18:27:38 +0000467bool SCEVUnknown::isOffsetOf(const Type *&CTy, Constant *&FieldNo) const {
Dan Gohmanab37f502010-08-02 23:49:30 +0000468 if (ConstantExpr *VCE = dyn_cast<ConstantExpr>(getValue()))
Dan Gohman4f8eea82010-02-01 18:27:38 +0000469 if (VCE->getOpcode() == Instruction::PtrToInt)
470 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(VCE->getOperand(0)))
471 if (CE->getOpcode() == Instruction::GetElementPtr &&
472 CE->getNumOperands() == 3 &&
473 CE->getOperand(0)->isNullValue() &&
474 CE->getOperand(1)->isNullValue()) {
475 const Type *Ty =
476 cast<PointerType>(CE->getOperand(0)->getType())->getElementType();
477 // Ignore vector types here so that ScalarEvolutionExpander doesn't
478 // emit getelementptrs that index into vectors.
Duncan Sands1df98592010-02-16 11:11:14 +0000479 if (Ty->isStructTy() || Ty->isArrayTy()) {
Dan Gohman4f8eea82010-02-01 18:27:38 +0000480 CTy = Ty;
481 FieldNo = CE->getOperand(2);
482 return true;
483 }
484 }
485
486 return false;
487}
488
Dan Gohmanb7ef7292009-04-21 00:47:46 +0000489void SCEVUnknown::print(raw_ostream &OS) const {
Dan Gohman0f5efe52010-01-28 02:15:55 +0000490 const Type *AllocTy;
491 if (isSizeOf(AllocTy)) {
492 OS << "sizeof(" << *AllocTy << ")";
493 return;
494 }
495 if (isAlignOf(AllocTy)) {
496 OS << "alignof(" << *AllocTy << ")";
497 return;
498 }
499
Dan Gohman4f8eea82010-02-01 18:27:38 +0000500 const Type *CTy;
Dan Gohman0f5efe52010-01-28 02:15:55 +0000501 Constant *FieldNo;
Dan Gohman4f8eea82010-02-01 18:27:38 +0000502 if (isOffsetOf(CTy, FieldNo)) {
503 OS << "offsetof(" << *CTy << ", ";
Dan Gohman0f5efe52010-01-28 02:15:55 +0000504 WriteAsOperand(OS, FieldNo, false);
505 OS << ")";
506 return;
507 }
508
509 // Otherwise just print it normally.
Dan Gohmanab37f502010-08-02 23:49:30 +0000510 WriteAsOperand(OS, getValue(), false);
Chris Lattner53e677a2004-04-02 20:23:17 +0000511}
512
Chris Lattner8d741b82004-06-20 06:23:15 +0000513//===----------------------------------------------------------------------===//
514// SCEV Utilities
515//===----------------------------------------------------------------------===//
516
517namespace {
518 /// SCEVComplexityCompare - Return true if the complexity of the LHS is less
519 /// than the complexity of the RHS. This comparator is used to canonicalize
520 /// expressions.
Nick Lewycky6726b6d2009-10-25 06:33:48 +0000521 class SCEVComplexityCompare {
Dan Gohman9f1fb422010-08-13 20:17:27 +0000522 const LoopInfo *const LI;
Dan Gohman72861302009-05-07 14:39:04 +0000523 public:
Dan Gohmane72079a2010-07-23 21:18:55 +0000524 explicit SCEVComplexityCompare(const LoopInfo *li) : LI(li) {}
Dan Gohman72861302009-05-07 14:39:04 +0000525
Dan Gohmanf7b37b22008-04-14 18:23:56 +0000526 bool operator()(const SCEV *LHS, const SCEV *RHS) const {
Dan Gohman42214892009-08-31 21:15:23 +0000527 // Fast-path: SCEVs are uniqued so we can do a quick equality check.
528 if (LHS == RHS)
529 return false;
530
Dan Gohman72861302009-05-07 14:39:04 +0000531 // Primarily, sort the SCEVs by their getSCEVType().
Dan Gohman304a7a62010-07-23 21:20:52 +0000532 unsigned LType = LHS->getSCEVType(), RType = RHS->getSCEVType();
533 if (LType != RType)
534 return LType < RType;
Dan Gohman72861302009-05-07 14:39:04 +0000535
Dan Gohman3bf63762010-06-18 19:54:20 +0000536 // Aside from the getSCEVType() ordering, the particular ordering
537 // isn't very important except that it's beneficial to be consistent,
538 // so that (a + b) and (b + a) don't end up as different expressions.
539
540 // Sort SCEVUnknown values with some loose heuristics. TODO: This is
541 // not as complete as it could be.
542 if (const SCEVUnknown *LU = dyn_cast<SCEVUnknown>(LHS)) {
543 const SCEVUnknown *RU = cast<SCEVUnknown>(RHS);
Dan Gohman0ad2c7a2010-08-13 21:24:58 +0000544 const Value *LV = LU->getValue(), *RV = RU->getValue();
Dan Gohman3bf63762010-06-18 19:54:20 +0000545
546 // Order pointer values after integer values. This helps SCEVExpander
547 // form GEPs.
Dan Gohman0ad2c7a2010-08-13 21:24:58 +0000548 bool LIsPointer = LV->getType()->isPointerTy(),
549 RIsPointer = RV->getType()->isPointerTy();
Dan Gohman304a7a62010-07-23 21:20:52 +0000550 if (LIsPointer != RIsPointer)
551 return RIsPointer;
Dan Gohman3bf63762010-06-18 19:54:20 +0000552
553 // Compare getValueID values.
Dan Gohman0ad2c7a2010-08-13 21:24:58 +0000554 unsigned LID = LV->getValueID(),
555 RID = RV->getValueID();
Dan Gohman304a7a62010-07-23 21:20:52 +0000556 if (LID != RID)
557 return LID < RID;
Dan Gohman3bf63762010-06-18 19:54:20 +0000558
559 // Sort arguments by their position.
Dan Gohman0ad2c7a2010-08-13 21:24:58 +0000560 if (const Argument *LA = dyn_cast<Argument>(LV)) {
561 const Argument *RA = cast<Argument>(RV);
Dan Gohman3bf63762010-06-18 19:54:20 +0000562 return LA->getArgNo() < RA->getArgNo();
563 }
564
565 // For instructions, compare their loop depth, and their opcode.
566 // This is pretty loose.
Dan Gohman0ad2c7a2010-08-13 21:24:58 +0000567 if (const Instruction *LInst = dyn_cast<Instruction>(LV)) {
568 const Instruction *RInst = cast<Instruction>(RV);
Dan Gohman3bf63762010-06-18 19:54:20 +0000569
570 // Compare loop depths.
Dan Gohman0ad2c7a2010-08-13 21:24:58 +0000571 const BasicBlock *LParent = LInst->getParent(),
572 *RParent = RInst->getParent();
573 if (LParent != RParent) {
574 unsigned LDepth = LI->getLoopDepth(LParent),
575 RDepth = LI->getLoopDepth(RParent);
576 if (LDepth != RDepth)
577 return LDepth < RDepth;
578 }
Dan Gohman3bf63762010-06-18 19:54:20 +0000579
580 // Compare the number of operands.
Dan Gohman0ad2c7a2010-08-13 21:24:58 +0000581 unsigned LNumOps = LInst->getNumOperands(),
582 RNumOps = RInst->getNumOperands();
Dan Gohman304a7a62010-07-23 21:20:52 +0000583 if (LNumOps != RNumOps)
584 return LNumOps < RNumOps;
Dan Gohman3bf63762010-06-18 19:54:20 +0000585 }
586
587 return false;
588 }
589
590 // Compare constant values.
591 if (const SCEVConstant *LC = dyn_cast<SCEVConstant>(LHS)) {
592 const SCEVConstant *RC = cast<SCEVConstant>(RHS);
Dan Gohmane28d7922010-08-16 16:25:35 +0000593 const APInt &LA = LC->getValue()->getValue();
594 const APInt &RA = RC->getValue()->getValue();
595 unsigned LBitWidth = LA.getBitWidth(), RBitWidth = RA.getBitWidth();
Dan Gohman304a7a62010-07-23 21:20:52 +0000596 if (LBitWidth != RBitWidth)
597 return LBitWidth < RBitWidth;
Dan Gohmane28d7922010-08-16 16:25:35 +0000598 return LA.ult(RA);
Dan Gohman3bf63762010-06-18 19:54:20 +0000599 }
600
601 // Compare addrec loop depths.
602 if (const SCEVAddRecExpr *LA = dyn_cast<SCEVAddRecExpr>(LHS)) {
603 const SCEVAddRecExpr *RA = cast<SCEVAddRecExpr>(RHS);
Dan Gohman0ad2c7a2010-08-13 21:24:58 +0000604 const Loop *LLoop = LA->getLoop(), *RLoop = RA->getLoop();
605 if (LLoop != RLoop) {
606 unsigned LDepth = LLoop->getLoopDepth(),
607 RDepth = RLoop->getLoopDepth();
608 if (LDepth != RDepth)
609 return LDepth < RDepth;
610 }
Dan Gohman3bf63762010-06-18 19:54:20 +0000611 }
612
613 // Lexicographically compare n-ary expressions.
614 if (const SCEVNAryExpr *LC = dyn_cast<SCEVNAryExpr>(LHS)) {
615 const SCEVNAryExpr *RC = cast<SCEVNAryExpr>(RHS);
Dan Gohman304a7a62010-07-23 21:20:52 +0000616 unsigned LNumOps = LC->getNumOperands(), RNumOps = RC->getNumOperands();
617 for (unsigned i = 0; i != LNumOps; ++i) {
618 if (i >= RNumOps)
Dan Gohman3bf63762010-06-18 19:54:20 +0000619 return false;
Dan Gohman304a7a62010-07-23 21:20:52 +0000620 const SCEV *LOp = LC->getOperand(i), *ROp = RC->getOperand(i);
621 if (operator()(LOp, ROp))
Dan Gohman3bf63762010-06-18 19:54:20 +0000622 return true;
Dan Gohman304a7a62010-07-23 21:20:52 +0000623 if (operator()(ROp, LOp))
Dan Gohman3bf63762010-06-18 19:54:20 +0000624 return false;
625 }
Dan Gohman304a7a62010-07-23 21:20:52 +0000626 return LNumOps < RNumOps;
Dan Gohman3bf63762010-06-18 19:54:20 +0000627 }
628
629 // Lexicographically compare udiv expressions.
630 if (const SCEVUDivExpr *LC = dyn_cast<SCEVUDivExpr>(LHS)) {
631 const SCEVUDivExpr *RC = cast<SCEVUDivExpr>(RHS);
Dan Gohman304a7a62010-07-23 21:20:52 +0000632 const SCEV *LL = LC->getLHS(), *LR = LC->getRHS(),
633 *RL = RC->getLHS(), *RR = RC->getRHS();
634 if (operator()(LL, RL))
Dan Gohman3bf63762010-06-18 19:54:20 +0000635 return true;
Dan Gohman304a7a62010-07-23 21:20:52 +0000636 if (operator()(RL, LL))
Dan Gohman3bf63762010-06-18 19:54:20 +0000637 return false;
Dan Gohman304a7a62010-07-23 21:20:52 +0000638 if (operator()(LR, RR))
Dan Gohman3bf63762010-06-18 19:54:20 +0000639 return true;
Dan Gohman304a7a62010-07-23 21:20:52 +0000640 if (operator()(RR, LR))
Dan Gohman3bf63762010-06-18 19:54:20 +0000641 return false;
642 return false;
643 }
644
645 // Compare cast expressions by operand.
646 if (const SCEVCastExpr *LC = dyn_cast<SCEVCastExpr>(LHS)) {
647 const SCEVCastExpr *RC = cast<SCEVCastExpr>(RHS);
648 return operator()(LC->getOperand(), RC->getOperand());
649 }
650
651 llvm_unreachable("Unknown SCEV kind!");
652 return false;
Chris Lattner8d741b82004-06-20 06:23:15 +0000653 }
654 };
655}
656
657/// GroupByComplexity - Given a list of SCEV objects, order them by their
658/// complexity, and group objects of the same complexity together by value.
659/// When this routine is finished, we know that any duplicates in the vector are
660/// consecutive and that complexity is monotonically increasing.
661///
Dan Gohman3f46a3a2010-03-01 17:49:51 +0000662/// Note that we go take special precautions to ensure that we get deterministic
Chris Lattner8d741b82004-06-20 06:23:15 +0000663/// results from this routine. In other words, we don't want the results of
664/// this to depend on where the addresses of various SCEV objects happened to
665/// land in memory.
666///
Dan Gohman0bba49c2009-07-07 17:06:11 +0000667static void GroupByComplexity(SmallVectorImpl<const SCEV *> &Ops,
Dan Gohman72861302009-05-07 14:39:04 +0000668 LoopInfo *LI) {
Chris Lattner8d741b82004-06-20 06:23:15 +0000669 if (Ops.size() < 2) return; // Noop
670 if (Ops.size() == 2) {
671 // This is the common case, which also happens to be trivially simple.
672 // Special case it.
Dan Gohman3bf63762010-06-18 19:54:20 +0000673 if (SCEVComplexityCompare(LI)(Ops[1], Ops[0]))
Chris Lattner8d741b82004-06-20 06:23:15 +0000674 std::swap(Ops[0], Ops[1]);
675 return;
676 }
677
Dan Gohman3bf63762010-06-18 19:54:20 +0000678 // Do the rough sort by complexity.
679 std::stable_sort(Ops.begin(), Ops.end(), SCEVComplexityCompare(LI));
680
681 // Now that we are sorted by complexity, group elements of the same
682 // complexity. Note that this is, at worst, N^2, but the vector is likely to
683 // be extremely short in practice. Note that we take this approach because we
684 // do not want to depend on the addresses of the objects we are grouping.
685 for (unsigned i = 0, e = Ops.size(); i != e-2; ++i) {
686 const SCEV *S = Ops[i];
687 unsigned Complexity = S->getSCEVType();
688
689 // If there are any objects of the same complexity and same value as this
690 // one, group them.
691 for (unsigned j = i+1; j != e && Ops[j]->getSCEVType() == Complexity; ++j) {
692 if (Ops[j] == S) { // Found a duplicate.
693 // Move it to immediately after i'th element.
694 std::swap(Ops[i+1], Ops[j]);
695 ++i; // no need to rescan it.
696 if (i == e-2) return; // Done!
697 }
698 }
699 }
Chris Lattner8d741b82004-06-20 06:23:15 +0000700}
701
Chris Lattner53e677a2004-04-02 20:23:17 +0000702
Chris Lattner53e677a2004-04-02 20:23:17 +0000703
704//===----------------------------------------------------------------------===//
705// Simple SCEV method implementations
706//===----------------------------------------------------------------------===//
707
Eli Friedmanb42a6262008-08-04 23:49:06 +0000708/// BinomialCoefficient - Compute BC(It, K). The result has width W.
Dan Gohman6c0866c2009-05-24 23:45:28 +0000709/// Assume, K > 0.
Dan Gohman0bba49c2009-07-07 17:06:11 +0000710static const SCEV *BinomialCoefficient(const SCEV *It, unsigned K,
Dan Gohmanc2b015e2009-07-21 00:38:55 +0000711 ScalarEvolution &SE,
712 const Type* ResultTy) {
Eli Friedmanb42a6262008-08-04 23:49:06 +0000713 // Handle the simplest case efficiently.
714 if (K == 1)
715 return SE.getTruncateOrZeroExtend(It, ResultTy);
716
Wojciech Matyjewicze3320a12008-02-11 11:03:14 +0000717 // We are using the following formula for BC(It, K):
718 //
719 // BC(It, K) = (It * (It - 1) * ... * (It - K + 1)) / K!
720 //
Eli Friedmanb42a6262008-08-04 23:49:06 +0000721 // Suppose, W is the bitwidth of the return value. We must be prepared for
722 // overflow. Hence, we must assure that the result of our computation is
723 // equal to the accurate one modulo 2^W. Unfortunately, division isn't
724 // safe in modular arithmetic.
Wojciech Matyjewicze3320a12008-02-11 11:03:14 +0000725 //
Eli Friedmanb42a6262008-08-04 23:49:06 +0000726 // However, this code doesn't use exactly that formula; the formula it uses
Dan Gohman64a845e2009-06-24 04:48:43 +0000727 // is something like the following, where T is the number of factors of 2 in
Eli Friedmanb42a6262008-08-04 23:49:06 +0000728 // K! (i.e. trailing zeros in the binary representation of K!), and ^ is
729 // exponentiation:
Wojciech Matyjewicze3320a12008-02-11 11:03:14 +0000730 //
Eli Friedmanb42a6262008-08-04 23:49:06 +0000731 // BC(It, K) = (It * (It - 1) * ... * (It - K + 1)) / 2^T / (K! / 2^T)
Wojciech Matyjewicze3320a12008-02-11 11:03:14 +0000732 //
Eli Friedmanb42a6262008-08-04 23:49:06 +0000733 // This formula is trivially equivalent to the previous formula. However,
734 // this formula can be implemented much more efficiently. The trick is that
735 // K! / 2^T is odd, and exact division by an odd number *is* safe in modular
736 // arithmetic. To do exact division in modular arithmetic, all we have
737 // to do is multiply by the inverse. Therefore, this step can be done at
738 // width W.
Dan Gohman64a845e2009-06-24 04:48:43 +0000739 //
Eli Friedmanb42a6262008-08-04 23:49:06 +0000740 // The next issue is how to safely do the division by 2^T. The way this
741 // is done is by doing the multiplication step at a width of at least W + T
742 // bits. This way, the bottom W+T bits of the product are accurate. Then,
743 // when we perform the division by 2^T (which is equivalent to a right shift
744 // by T), the bottom W bits are accurate. Extra bits are okay; they'll get
745 // truncated out after the division by 2^T.
746 //
747 // In comparison to just directly using the first formula, this technique
748 // is much more efficient; using the first formula requires W * K bits,
749 // but this formula less than W + K bits. Also, the first formula requires
750 // a division step, whereas this formula only requires multiplies and shifts.
751 //
752 // It doesn't matter whether the subtraction step is done in the calculation
753 // width or the input iteration count's width; if the subtraction overflows,
754 // the result must be zero anyway. We prefer here to do it in the width of
755 // the induction variable because it helps a lot for certain cases; CodeGen
756 // isn't smart enough to ignore the overflow, which leads to much less
757 // efficient code if the width of the subtraction is wider than the native
758 // register width.
759 //
760 // (It's possible to not widen at all by pulling out factors of 2 before
761 // the multiplication; for example, K=2 can be calculated as
762 // It/2*(It+(It*INT_MIN/INT_MIN)+-1). However, it requires
763 // extra arithmetic, so it's not an obvious win, and it gets
764 // much more complicated for K > 3.)
Wojciech Matyjewicze3320a12008-02-11 11:03:14 +0000765
Eli Friedmanb42a6262008-08-04 23:49:06 +0000766 // Protection from insane SCEVs; this bound is conservative,
767 // but it probably doesn't matter.
768 if (K > 1000)
Dan Gohmanf4ccfcb2009-04-18 17:58:19 +0000769 return SE.getCouldNotCompute();
Wojciech Matyjewicze3320a12008-02-11 11:03:14 +0000770
Dan Gohmanaf79fb52009-04-21 01:07:12 +0000771 unsigned W = SE.getTypeSizeInBits(ResultTy);
Wojciech Matyjewicze3320a12008-02-11 11:03:14 +0000772
Eli Friedmanb42a6262008-08-04 23:49:06 +0000773 // Calculate K! / 2^T and T; we divide out the factors of two before
774 // multiplying for calculating K! / 2^T to avoid overflow.
775 // Other overflow doesn't matter because we only care about the bottom
776 // W bits of the result.
777 APInt OddFactorial(W, 1);
778 unsigned T = 1;
779 for (unsigned i = 3; i <= K; ++i) {
780 APInt Mult(W, i);
781 unsigned TwoFactors = Mult.countTrailingZeros();
782 T += TwoFactors;
783 Mult = Mult.lshr(TwoFactors);
784 OddFactorial *= Mult;
Chris Lattner53e677a2004-04-02 20:23:17 +0000785 }
Nick Lewycky6f8abf92008-06-13 04:38:55 +0000786
Eli Friedmanb42a6262008-08-04 23:49:06 +0000787 // We need at least W + T bits for the multiplication step
Nick Lewycky237d8732009-01-25 08:16:27 +0000788 unsigned CalculationBits = W + T;
Eli Friedmanb42a6262008-08-04 23:49:06 +0000789
Dan Gohman3f46a3a2010-03-01 17:49:51 +0000790 // Calculate 2^T, at width T+W.
Eli Friedmanb42a6262008-08-04 23:49:06 +0000791 APInt DivFactor = APInt(CalculationBits, 1).shl(T);
792
793 // Calculate the multiplicative inverse of K! / 2^T;
794 // this multiplication factor will perform the exact division by
795 // K! / 2^T.
796 APInt Mod = APInt::getSignedMinValue(W+1);
797 APInt MultiplyFactor = OddFactorial.zext(W+1);
798 MultiplyFactor = MultiplyFactor.multiplicativeInverse(Mod);
799 MultiplyFactor = MultiplyFactor.trunc(W);
800
801 // Calculate the product, at width T+W
Owen Anderson1d0be152009-08-13 21:58:54 +0000802 const IntegerType *CalculationTy = IntegerType::get(SE.getContext(),
803 CalculationBits);
Dan Gohman0bba49c2009-07-07 17:06:11 +0000804 const SCEV *Dividend = SE.getTruncateOrZeroExtend(It, CalculationTy);
Eli Friedmanb42a6262008-08-04 23:49:06 +0000805 for (unsigned i = 1; i != K; ++i) {
Dan Gohmandeff6212010-05-03 22:09:21 +0000806 const SCEV *S = SE.getMinusSCEV(It, SE.getConstant(It->getType(), i));
Eli Friedmanb42a6262008-08-04 23:49:06 +0000807 Dividend = SE.getMulExpr(Dividend,
808 SE.getTruncateOrZeroExtend(S, CalculationTy));
809 }
810
811 // Divide by 2^T
Dan Gohman0bba49c2009-07-07 17:06:11 +0000812 const SCEV *DivResult = SE.getUDivExpr(Dividend, SE.getConstant(DivFactor));
Eli Friedmanb42a6262008-08-04 23:49:06 +0000813
814 // Truncate the result, and divide by K! / 2^T.
815
816 return SE.getMulExpr(SE.getConstant(MultiplyFactor),
817 SE.getTruncateOrZeroExtend(DivResult, ResultTy));
Chris Lattner53e677a2004-04-02 20:23:17 +0000818}
819
Chris Lattner53e677a2004-04-02 20:23:17 +0000820/// evaluateAtIteration - Return the value of this chain of recurrences at
821/// the specified iteration number. We can evaluate this recurrence by
822/// multiplying each element in the chain by the binomial coefficient
823/// corresponding to it. In other words, we can evaluate {A,+,B,+,C,+,D} as:
824///
Wojciech Matyjewicze3320a12008-02-11 11:03:14 +0000825/// A*BC(It, 0) + B*BC(It, 1) + C*BC(It, 2) + D*BC(It, 3)
Chris Lattner53e677a2004-04-02 20:23:17 +0000826///
Wojciech Matyjewicze3320a12008-02-11 11:03:14 +0000827/// where BC(It, k) stands for binomial coefficient.
Chris Lattner53e677a2004-04-02 20:23:17 +0000828///
Dan Gohman0bba49c2009-07-07 17:06:11 +0000829const SCEV *SCEVAddRecExpr::evaluateAtIteration(const SCEV *It,
Dan Gohmanc2b015e2009-07-21 00:38:55 +0000830 ScalarEvolution &SE) const {
Dan Gohman0bba49c2009-07-07 17:06:11 +0000831 const SCEV *Result = getStart();
Chris Lattner53e677a2004-04-02 20:23:17 +0000832 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
Wojciech Matyjewicze3320a12008-02-11 11:03:14 +0000833 // The computation is correct in the face of overflow provided that the
834 // multiplication is performed _after_ the evaluation of the binomial
835 // coefficient.
Dan Gohman0bba49c2009-07-07 17:06:11 +0000836 const SCEV *Coeff = BinomialCoefficient(It, i, SE, getType());
Nick Lewyckycb8f1b52008-10-13 03:58:02 +0000837 if (isa<SCEVCouldNotCompute>(Coeff))
838 return Coeff;
839
840 Result = SE.getAddExpr(Result, SE.getMulExpr(getOperand(i), Coeff));
Chris Lattner53e677a2004-04-02 20:23:17 +0000841 }
842 return Result;
843}
844
Chris Lattner53e677a2004-04-02 20:23:17 +0000845//===----------------------------------------------------------------------===//
846// SCEV Expression folder implementations
847//===----------------------------------------------------------------------===//
848
Dan Gohman0bba49c2009-07-07 17:06:11 +0000849const SCEV *ScalarEvolution::getTruncateExpr(const SCEV *Op,
Dan Gohmanf5074ec2009-07-13 22:05:32 +0000850 const Type *Ty) {
Dan Gohmanaf79fb52009-04-21 01:07:12 +0000851 assert(getTypeSizeInBits(Op->getType()) > getTypeSizeInBits(Ty) &&
Dan Gohmanfb17fd22009-04-21 00:55:22 +0000852 "This is not a truncating conversion!");
Dan Gohman10b94792009-05-01 16:44:18 +0000853 assert(isSCEVable(Ty) &&
854 "This is not a conversion to a SCEVable type!");
855 Ty = getEffectiveSCEVType(Ty);
Dan Gohmanfb17fd22009-04-21 00:55:22 +0000856
Dan Gohmanc050fd92009-07-13 20:50:19 +0000857 FoldingSetNodeID ID;
858 ID.AddInteger(scTruncate);
859 ID.AddPointer(Op);
860 ID.AddPointer(Ty);
861 void *IP = 0;
862 if (const SCEV *S = UniqueSCEVs.FindNodeOrInsertPos(ID, IP)) return S;
863
Dan Gohmanc39f44b2009-06-30 20:13:32 +0000864 // Fold if the operand is constant.
Dan Gohman622ed672009-05-04 22:02:23 +0000865 if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(Op))
Dan Gohmanb8be8b72009-06-24 00:38:39 +0000866 return getConstant(
Dan Gohman1faa8822010-06-24 16:33:38 +0000867 cast<ConstantInt>(ConstantExpr::getTrunc(SC->getValue(),
868 getEffectiveSCEVType(Ty))));
Chris Lattner53e677a2004-04-02 20:23:17 +0000869
Dan Gohman20900ca2009-04-22 16:20:48 +0000870 // trunc(trunc(x)) --> trunc(x)
Dan Gohman622ed672009-05-04 22:02:23 +0000871 if (const SCEVTruncateExpr *ST = dyn_cast<SCEVTruncateExpr>(Op))
Dan Gohman20900ca2009-04-22 16:20:48 +0000872 return getTruncateExpr(ST->getOperand(), Ty);
873
Nick Lewycky5cd28fa2009-04-23 05:15:08 +0000874 // trunc(sext(x)) --> sext(x) if widening or trunc(x) if narrowing
Dan Gohman622ed672009-05-04 22:02:23 +0000875 if (const SCEVSignExtendExpr *SS = dyn_cast<SCEVSignExtendExpr>(Op))
Nick Lewycky5cd28fa2009-04-23 05:15:08 +0000876 return getTruncateOrSignExtend(SS->getOperand(), Ty);
877
878 // trunc(zext(x)) --> zext(x) if widening or trunc(x) if narrowing
Dan Gohman622ed672009-05-04 22:02:23 +0000879 if (const SCEVZeroExtendExpr *SZ = dyn_cast<SCEVZeroExtendExpr>(Op))
Nick Lewycky5cd28fa2009-04-23 05:15:08 +0000880 return getTruncateOrZeroExtend(SZ->getOperand(), Ty);
881
Dan Gohman6864db62009-06-18 16:24:47 +0000882 // If the input value is a chrec scev, truncate the chrec's operands.
Dan Gohman622ed672009-05-04 22:02:23 +0000883 if (const SCEVAddRecExpr *AddRec = dyn_cast<SCEVAddRecExpr>(Op)) {
Dan Gohman0bba49c2009-07-07 17:06:11 +0000884 SmallVector<const SCEV *, 4> Operands;
Chris Lattner53e677a2004-04-02 20:23:17 +0000885 for (unsigned i = 0, e = AddRec->getNumOperands(); i != e; ++i)
Dan Gohman728c7f32009-05-08 21:03:19 +0000886 Operands.push_back(getTruncateExpr(AddRec->getOperand(i), Ty));
887 return getAddRecExpr(Operands, AddRec->getLoop());
Chris Lattner53e677a2004-04-02 20:23:17 +0000888 }
889
Dan Gohmanf53462d2010-07-15 20:02:11 +0000890 // As a special case, fold trunc(undef) to undef. We don't want to
891 // know too much about SCEVUnknowns, but this special case is handy
892 // and harmless.
893 if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(Op))
894 if (isa<UndefValue>(U->getValue()))
895 return getSCEV(UndefValue::get(Ty));
896
Dan Gohman420ab912010-06-25 18:47:08 +0000897 // The cast wasn't folded; create an explicit cast node. We can reuse
898 // the existing insert position since if we get here, we won't have
899 // made any changes which would invalidate it.
Dan Gohman95531882010-03-18 18:49:47 +0000900 SCEV *S = new (SCEVAllocator) SCEVTruncateExpr(ID.Intern(SCEVAllocator),
901 Op, Ty);
Dan Gohman1c343752009-06-27 21:21:31 +0000902 UniqueSCEVs.InsertNode(S, IP);
903 return S;
Chris Lattner53e677a2004-04-02 20:23:17 +0000904}
905
Dan Gohman0bba49c2009-07-07 17:06:11 +0000906const SCEV *ScalarEvolution::getZeroExtendExpr(const SCEV *Op,
Dan Gohmanf5074ec2009-07-13 22:05:32 +0000907 const Type *Ty) {
Dan Gohmanaf79fb52009-04-21 01:07:12 +0000908 assert(getTypeSizeInBits(Op->getType()) < getTypeSizeInBits(Ty) &&
Dan Gohman8170a682009-04-16 19:25:55 +0000909 "This is not an extending conversion!");
Dan Gohman10b94792009-05-01 16:44:18 +0000910 assert(isSCEVable(Ty) &&
911 "This is not a conversion to a SCEVable type!");
912 Ty = getEffectiveSCEVType(Ty);
Dan Gohman8170a682009-04-16 19:25:55 +0000913
Dan Gohmanc39f44b2009-06-30 20:13:32 +0000914 // Fold if the operand is constant.
Dan Gohmaneaf6cf22010-06-24 16:47:03 +0000915 if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(Op))
916 return getConstant(
917 cast<ConstantInt>(ConstantExpr::getZExt(SC->getValue(),
918 getEffectiveSCEVType(Ty))));
Chris Lattner53e677a2004-04-02 20:23:17 +0000919
Dan Gohman20900ca2009-04-22 16:20:48 +0000920 // zext(zext(x)) --> zext(x)
Dan Gohman622ed672009-05-04 22:02:23 +0000921 if (const SCEVZeroExtendExpr *SZ = dyn_cast<SCEVZeroExtendExpr>(Op))
Dan Gohman20900ca2009-04-22 16:20:48 +0000922 return getZeroExtendExpr(SZ->getOperand(), Ty);
923
Dan Gohman69fbc7f2009-07-13 20:55:53 +0000924 // Before doing any expensive analysis, check to see if we've already
925 // computed a SCEV for this Op and Ty.
926 FoldingSetNodeID ID;
927 ID.AddInteger(scZeroExtend);
928 ID.AddPointer(Op);
929 ID.AddPointer(Ty);
930 void *IP = 0;
931 if (const SCEV *S = UniqueSCEVs.FindNodeOrInsertPos(ID, IP)) return S;
932
Dan Gohman01ecca22009-04-27 20:16:15 +0000933 // If the input value is a chrec scev, and we can prove that the value
Chris Lattner53e677a2004-04-02 20:23:17 +0000934 // did not overflow the old, smaller, value, we can zero extend all of the
Dan Gohman01ecca22009-04-27 20:16:15 +0000935 // operands (often constants). This allows analysis of something like
Chris Lattner53e677a2004-04-02 20:23:17 +0000936 // this: for (unsigned char X = 0; X < 100; ++X) { int Y = X; }
Dan Gohman622ed672009-05-04 22:02:23 +0000937 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(Op))
Dan Gohman01ecca22009-04-27 20:16:15 +0000938 if (AR->isAffine()) {
Dan Gohman85b05a22009-07-13 21:35:55 +0000939 const SCEV *Start = AR->getStart();
940 const SCEV *Step = AR->getStepRecurrence(*this);
941 unsigned BitWidth = getTypeSizeInBits(AR->getType());
942 const Loop *L = AR->getLoop();
943
Dan Gohmaneb490a72009-07-25 01:22:26 +0000944 // If we have special knowledge that this addrec won't overflow,
945 // we don't need to do any further analysis.
Dan Gohman5078f842009-08-20 17:11:38 +0000946 if (AR->hasNoUnsignedWrap())
Dan Gohmaneb490a72009-07-25 01:22:26 +0000947 return getAddRecExpr(getZeroExtendExpr(Start, Ty),
948 getZeroExtendExpr(Step, Ty),
949 L);
950
Dan Gohman01ecca22009-04-27 20:16:15 +0000951 // Check whether the backedge-taken count is SCEVCouldNotCompute.
952 // Note that this serves two purposes: It filters out loops that are
953 // simply not analyzable, and it covers the case where this code is
954 // being called from within backedge-taken count analysis, such that
955 // attempting to ask for the backedge-taken count would likely result
956 // in infinite recursion. In the later case, the analysis code will
957 // cope with a conservative value, and it will take care to purge
958 // that value once it has finished.
Dan Gohman85b05a22009-07-13 21:35:55 +0000959 const SCEV *MaxBECount = getMaxBackedgeTakenCount(L);
Dan Gohmana1af7572009-04-30 20:47:05 +0000960 if (!isa<SCEVCouldNotCompute>(MaxBECount)) {
Dan Gohmanf0aa4852009-04-29 01:54:20 +0000961 // Manually compute the final value for AR, checking for
Dan Gohmanac70cea2009-04-29 22:28:28 +0000962 // overflow.
Dan Gohman01ecca22009-04-27 20:16:15 +0000963
964 // Check whether the backedge-taken count can be losslessly casted to
965 // the addrec's type. The count is always unsigned.
Dan Gohman0bba49c2009-07-07 17:06:11 +0000966 const SCEV *CastedMaxBECount =
Dan Gohmana1af7572009-04-30 20:47:05 +0000967 getTruncateOrZeroExtend(MaxBECount, Start->getType());
Dan Gohman0bba49c2009-07-07 17:06:11 +0000968 const SCEV *RecastedMaxBECount =
Dan Gohman5183cae2009-05-18 15:58:39 +0000969 getTruncateOrZeroExtend(CastedMaxBECount, MaxBECount->getType());
970 if (MaxBECount == RecastedMaxBECount) {
Owen Anderson1d0be152009-08-13 21:58:54 +0000971 const Type *WideTy = IntegerType::get(getContext(), BitWidth * 2);
Dan Gohmana1af7572009-04-30 20:47:05 +0000972 // Check whether Start+Step*MaxBECount has no unsigned overflow.
Dan Gohman8f767d92010-02-24 19:31:06 +0000973 const SCEV *ZMul = getMulExpr(CastedMaxBECount, Step);
Dan Gohman0bba49c2009-07-07 17:06:11 +0000974 const SCEV *Add = getAddExpr(Start, ZMul);
975 const SCEV *OperandExtendedAdd =
Dan Gohman5183cae2009-05-18 15:58:39 +0000976 getAddExpr(getZeroExtendExpr(Start, WideTy),
977 getMulExpr(getZeroExtendExpr(CastedMaxBECount, WideTy),
978 getZeroExtendExpr(Step, WideTy)));
979 if (getZeroExtendExpr(Add, WideTy) == OperandExtendedAdd)
Dan Gohmanac70cea2009-04-29 22:28:28 +0000980 // Return the expression with the addrec on the outside.
981 return getAddRecExpr(getZeroExtendExpr(Start, Ty),
982 getZeroExtendExpr(Step, Ty),
Dan Gohman85b05a22009-07-13 21:35:55 +0000983 L);
Dan Gohman01ecca22009-04-27 20:16:15 +0000984
985 // Similar to above, only this time treat the step value as signed.
986 // This covers loops that count down.
Dan Gohman8f767d92010-02-24 19:31:06 +0000987 const SCEV *SMul = getMulExpr(CastedMaxBECount, Step);
Dan Gohmanac70cea2009-04-29 22:28:28 +0000988 Add = getAddExpr(Start, SMul);
Dan Gohman5183cae2009-05-18 15:58:39 +0000989 OperandExtendedAdd =
990 getAddExpr(getZeroExtendExpr(Start, WideTy),
991 getMulExpr(getZeroExtendExpr(CastedMaxBECount, WideTy),
992 getSignExtendExpr(Step, WideTy)));
993 if (getZeroExtendExpr(Add, WideTy) == OperandExtendedAdd)
Dan Gohmanac70cea2009-04-29 22:28:28 +0000994 // Return the expression with the addrec on the outside.
995 return getAddRecExpr(getZeroExtendExpr(Start, Ty),
996 getSignExtendExpr(Step, Ty),
Dan Gohman85b05a22009-07-13 21:35:55 +0000997 L);
998 }
999
1000 // If the backedge is guarded by a comparison with the pre-inc value
1001 // the addrec is safe. Also, if the entry is guarded by a comparison
1002 // with the start value and the backedge is guarded by a comparison
1003 // with the post-inc value, the addrec is safe.
1004 if (isKnownPositive(Step)) {
1005 const SCEV *N = getConstant(APInt::getMinValue(BitWidth) -
1006 getUnsignedRange(Step).getUnsignedMax());
1007 if (isLoopBackedgeGuardedByCond(L, ICmpInst::ICMP_ULT, AR, N) ||
Dan Gohman3948d0b2010-04-11 19:27:13 +00001008 (isLoopEntryGuardedByCond(L, ICmpInst::ICMP_ULT, Start, N) &&
Dan Gohman85b05a22009-07-13 21:35:55 +00001009 isLoopBackedgeGuardedByCond(L, ICmpInst::ICMP_ULT,
1010 AR->getPostIncExpr(*this), N)))
1011 // Return the expression with the addrec on the outside.
1012 return getAddRecExpr(getZeroExtendExpr(Start, Ty),
1013 getZeroExtendExpr(Step, Ty),
1014 L);
1015 } else if (isKnownNegative(Step)) {
1016 const SCEV *N = getConstant(APInt::getMaxValue(BitWidth) -
1017 getSignedRange(Step).getSignedMin());
Dan Gohmanc0ed0092010-05-04 01:11:15 +00001018 if (isLoopBackedgeGuardedByCond(L, ICmpInst::ICMP_UGT, AR, N) ||
1019 (isLoopEntryGuardedByCond(L, ICmpInst::ICMP_UGT, Start, N) &&
Dan Gohman85b05a22009-07-13 21:35:55 +00001020 isLoopBackedgeGuardedByCond(L, ICmpInst::ICMP_UGT,
1021 AR->getPostIncExpr(*this), N)))
1022 // Return the expression with the addrec on the outside.
1023 return getAddRecExpr(getZeroExtendExpr(Start, Ty),
1024 getSignExtendExpr(Step, Ty),
1025 L);
Dan Gohman01ecca22009-04-27 20:16:15 +00001026 }
1027 }
1028 }
Chris Lattner53e677a2004-04-02 20:23:17 +00001029
Dan Gohman69fbc7f2009-07-13 20:55:53 +00001030 // The cast wasn't folded; create an explicit cast node.
1031 // Recompute the insert position, as it may have been invalidated.
Dan Gohman1c343752009-06-27 21:21:31 +00001032 if (const SCEV *S = UniqueSCEVs.FindNodeOrInsertPos(ID, IP)) return S;
Dan Gohman95531882010-03-18 18:49:47 +00001033 SCEV *S = new (SCEVAllocator) SCEVZeroExtendExpr(ID.Intern(SCEVAllocator),
1034 Op, Ty);
Dan Gohman1c343752009-06-27 21:21:31 +00001035 UniqueSCEVs.InsertNode(S, IP);
1036 return S;
Chris Lattner53e677a2004-04-02 20:23:17 +00001037}
1038
Dan Gohman0bba49c2009-07-07 17:06:11 +00001039const SCEV *ScalarEvolution::getSignExtendExpr(const SCEV *Op,
Dan Gohmanf5074ec2009-07-13 22:05:32 +00001040 const Type *Ty) {
Dan Gohmanaf79fb52009-04-21 01:07:12 +00001041 assert(getTypeSizeInBits(Op->getType()) < getTypeSizeInBits(Ty) &&
Dan Gohmanfb17fd22009-04-21 00:55:22 +00001042 "This is not an extending conversion!");
Dan Gohman10b94792009-05-01 16:44:18 +00001043 assert(isSCEVable(Ty) &&
1044 "This is not a conversion to a SCEVable type!");
1045 Ty = getEffectiveSCEVType(Ty);
Dan Gohmanfb17fd22009-04-21 00:55:22 +00001046
Dan Gohmanc39f44b2009-06-30 20:13:32 +00001047 // Fold if the operand is constant.
Dan Gohmaneaf6cf22010-06-24 16:47:03 +00001048 if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(Op))
1049 return getConstant(
1050 cast<ConstantInt>(ConstantExpr::getSExt(SC->getValue(),
1051 getEffectiveSCEVType(Ty))));
Dan Gohmand19534a2007-06-15 14:38:12 +00001052
Dan Gohman20900ca2009-04-22 16:20:48 +00001053 // sext(sext(x)) --> sext(x)
Dan Gohman622ed672009-05-04 22:02:23 +00001054 if (const SCEVSignExtendExpr *SS = dyn_cast<SCEVSignExtendExpr>(Op))
Dan Gohman20900ca2009-04-22 16:20:48 +00001055 return getSignExtendExpr(SS->getOperand(), Ty);
1056
Dan Gohman69fbc7f2009-07-13 20:55:53 +00001057 // Before doing any expensive analysis, check to see if we've already
1058 // computed a SCEV for this Op and Ty.
1059 FoldingSetNodeID ID;
1060 ID.AddInteger(scSignExtend);
1061 ID.AddPointer(Op);
1062 ID.AddPointer(Ty);
1063 void *IP = 0;
1064 if (const SCEV *S = UniqueSCEVs.FindNodeOrInsertPos(ID, IP)) return S;
1065
Dan Gohman01ecca22009-04-27 20:16:15 +00001066 // If the input value is a chrec scev, and we can prove that the value
Dan Gohmand19534a2007-06-15 14:38:12 +00001067 // did not overflow the old, smaller, value, we can sign extend all of the
Dan Gohman01ecca22009-04-27 20:16:15 +00001068 // operands (often constants). This allows analysis of something like
Dan Gohmand19534a2007-06-15 14:38:12 +00001069 // this: for (signed char X = 0; X < 100; ++X) { int Y = X; }
Dan Gohman622ed672009-05-04 22:02:23 +00001070 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(Op))
Dan Gohman01ecca22009-04-27 20:16:15 +00001071 if (AR->isAffine()) {
Dan Gohman85b05a22009-07-13 21:35:55 +00001072 const SCEV *Start = AR->getStart();
1073 const SCEV *Step = AR->getStepRecurrence(*this);
1074 unsigned BitWidth = getTypeSizeInBits(AR->getType());
1075 const Loop *L = AR->getLoop();
1076
Dan Gohmaneb490a72009-07-25 01:22:26 +00001077 // If we have special knowledge that this addrec won't overflow,
1078 // we don't need to do any further analysis.
Dan Gohman5078f842009-08-20 17:11:38 +00001079 if (AR->hasNoSignedWrap())
Dan Gohmaneb490a72009-07-25 01:22:26 +00001080 return getAddRecExpr(getSignExtendExpr(Start, Ty),
1081 getSignExtendExpr(Step, Ty),
1082 L);
1083
Dan Gohman01ecca22009-04-27 20:16:15 +00001084 // Check whether the backedge-taken count is SCEVCouldNotCompute.
1085 // Note that this serves two purposes: It filters out loops that are
1086 // simply not analyzable, and it covers the case where this code is
1087 // being called from within backedge-taken count analysis, such that
1088 // attempting to ask for the backedge-taken count would likely result
1089 // in infinite recursion. In the later case, the analysis code will
1090 // cope with a conservative value, and it will take care to purge
1091 // that value once it has finished.
Dan Gohman85b05a22009-07-13 21:35:55 +00001092 const SCEV *MaxBECount = getMaxBackedgeTakenCount(L);
Dan Gohmana1af7572009-04-30 20:47:05 +00001093 if (!isa<SCEVCouldNotCompute>(MaxBECount)) {
Dan Gohmanf0aa4852009-04-29 01:54:20 +00001094 // Manually compute the final value for AR, checking for
Dan Gohmanac70cea2009-04-29 22:28:28 +00001095 // overflow.
Dan Gohman01ecca22009-04-27 20:16:15 +00001096
1097 // Check whether the backedge-taken count can be losslessly casted to
Dan Gohmanac70cea2009-04-29 22:28:28 +00001098 // the addrec's type. The count is always unsigned.
Dan Gohman0bba49c2009-07-07 17:06:11 +00001099 const SCEV *CastedMaxBECount =
Dan Gohmana1af7572009-04-30 20:47:05 +00001100 getTruncateOrZeroExtend(MaxBECount, Start->getType());
Dan Gohman0bba49c2009-07-07 17:06:11 +00001101 const SCEV *RecastedMaxBECount =
Dan Gohman5183cae2009-05-18 15:58:39 +00001102 getTruncateOrZeroExtend(CastedMaxBECount, MaxBECount->getType());
1103 if (MaxBECount == RecastedMaxBECount) {
Owen Anderson1d0be152009-08-13 21:58:54 +00001104 const Type *WideTy = IntegerType::get(getContext(), BitWidth * 2);
Dan Gohmana1af7572009-04-30 20:47:05 +00001105 // Check whether Start+Step*MaxBECount has no signed overflow.
Dan Gohman8f767d92010-02-24 19:31:06 +00001106 const SCEV *SMul = getMulExpr(CastedMaxBECount, Step);
Dan Gohman0bba49c2009-07-07 17:06:11 +00001107 const SCEV *Add = getAddExpr(Start, SMul);
1108 const SCEV *OperandExtendedAdd =
Dan Gohman5183cae2009-05-18 15:58:39 +00001109 getAddExpr(getSignExtendExpr(Start, WideTy),
1110 getMulExpr(getZeroExtendExpr(CastedMaxBECount, WideTy),
1111 getSignExtendExpr(Step, WideTy)));
1112 if (getSignExtendExpr(Add, WideTy) == OperandExtendedAdd)
Dan Gohmanac70cea2009-04-29 22:28:28 +00001113 // Return the expression with the addrec on the outside.
1114 return getAddRecExpr(getSignExtendExpr(Start, Ty),
1115 getSignExtendExpr(Step, Ty),
Dan Gohman85b05a22009-07-13 21:35:55 +00001116 L);
Dan Gohman850f7912009-07-16 17:34:36 +00001117
1118 // Similar to above, only this time treat the step value as unsigned.
1119 // This covers loops that count up with an unsigned step.
Dan Gohman8f767d92010-02-24 19:31:06 +00001120 const SCEV *UMul = getMulExpr(CastedMaxBECount, Step);
Dan Gohman850f7912009-07-16 17:34:36 +00001121 Add = getAddExpr(Start, UMul);
1122 OperandExtendedAdd =
Dan Gohman19378d62009-07-25 16:03:30 +00001123 getAddExpr(getSignExtendExpr(Start, WideTy),
Dan Gohman850f7912009-07-16 17:34:36 +00001124 getMulExpr(getZeroExtendExpr(CastedMaxBECount, WideTy),
1125 getZeroExtendExpr(Step, WideTy)));
Dan Gohman19378d62009-07-25 16:03:30 +00001126 if (getSignExtendExpr(Add, WideTy) == OperandExtendedAdd)
Dan Gohman850f7912009-07-16 17:34:36 +00001127 // Return the expression with the addrec on the outside.
1128 return getAddRecExpr(getSignExtendExpr(Start, Ty),
1129 getZeroExtendExpr(Step, Ty),
1130 L);
Dan Gohman85b05a22009-07-13 21:35:55 +00001131 }
1132
1133 // If the backedge is guarded by a comparison with the pre-inc value
1134 // the addrec is safe. Also, if the entry is guarded by a comparison
1135 // with the start value and the backedge is guarded by a comparison
1136 // with the post-inc value, the addrec is safe.
1137 if (isKnownPositive(Step)) {
1138 const SCEV *N = getConstant(APInt::getSignedMinValue(BitWidth) -
1139 getSignedRange(Step).getSignedMax());
1140 if (isLoopBackedgeGuardedByCond(L, ICmpInst::ICMP_SLT, AR, N) ||
Dan Gohman3948d0b2010-04-11 19:27:13 +00001141 (isLoopEntryGuardedByCond(L, ICmpInst::ICMP_SLT, Start, N) &&
Dan Gohman85b05a22009-07-13 21:35:55 +00001142 isLoopBackedgeGuardedByCond(L, ICmpInst::ICMP_SLT,
1143 AR->getPostIncExpr(*this), N)))
1144 // Return the expression with the addrec on the outside.
1145 return getAddRecExpr(getSignExtendExpr(Start, Ty),
1146 getSignExtendExpr(Step, Ty),
1147 L);
1148 } else if (isKnownNegative(Step)) {
1149 const SCEV *N = getConstant(APInt::getSignedMaxValue(BitWidth) -
1150 getSignedRange(Step).getSignedMin());
1151 if (isLoopBackedgeGuardedByCond(L, ICmpInst::ICMP_SGT, AR, N) ||
Dan Gohman3948d0b2010-04-11 19:27:13 +00001152 (isLoopEntryGuardedByCond(L, ICmpInst::ICMP_SGT, Start, N) &&
Dan Gohman85b05a22009-07-13 21:35:55 +00001153 isLoopBackedgeGuardedByCond(L, ICmpInst::ICMP_SGT,
1154 AR->getPostIncExpr(*this), N)))
1155 // Return the expression with the addrec on the outside.
1156 return getAddRecExpr(getSignExtendExpr(Start, Ty),
1157 getSignExtendExpr(Step, Ty),
1158 L);
Dan Gohman01ecca22009-04-27 20:16:15 +00001159 }
1160 }
1161 }
Dan Gohmand19534a2007-06-15 14:38:12 +00001162
Dan Gohman69fbc7f2009-07-13 20:55:53 +00001163 // The cast wasn't folded; create an explicit cast node.
1164 // Recompute the insert position, as it may have been invalidated.
Dan Gohman1c343752009-06-27 21:21:31 +00001165 if (const SCEV *S = UniqueSCEVs.FindNodeOrInsertPos(ID, IP)) return S;
Dan Gohman95531882010-03-18 18:49:47 +00001166 SCEV *S = new (SCEVAllocator) SCEVSignExtendExpr(ID.Intern(SCEVAllocator),
1167 Op, Ty);
Dan Gohman1c343752009-06-27 21:21:31 +00001168 UniqueSCEVs.InsertNode(S, IP);
1169 return S;
Dan Gohmand19534a2007-06-15 14:38:12 +00001170}
1171
Dan Gohman2ce84c8d2009-06-13 15:56:47 +00001172/// getAnyExtendExpr - Return a SCEV for the given operand extended with
1173/// unspecified bits out to the given type.
1174///
Dan Gohman0bba49c2009-07-07 17:06:11 +00001175const SCEV *ScalarEvolution::getAnyExtendExpr(const SCEV *Op,
Dan Gohmanc40f17b2009-08-18 16:46:41 +00001176 const Type *Ty) {
Dan Gohman2ce84c8d2009-06-13 15:56:47 +00001177 assert(getTypeSizeInBits(Op->getType()) < getTypeSizeInBits(Ty) &&
1178 "This is not an extending conversion!");
1179 assert(isSCEVable(Ty) &&
1180 "This is not a conversion to a SCEVable type!");
1181 Ty = getEffectiveSCEVType(Ty);
1182
1183 // Sign-extend negative constants.
1184 if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(Op))
1185 if (SC->getValue()->getValue().isNegative())
1186 return getSignExtendExpr(Op, Ty);
1187
1188 // Peel off a truncate cast.
1189 if (const SCEVTruncateExpr *T = dyn_cast<SCEVTruncateExpr>(Op)) {
Dan Gohman0bba49c2009-07-07 17:06:11 +00001190 const SCEV *NewOp = T->getOperand();
Dan Gohman2ce84c8d2009-06-13 15:56:47 +00001191 if (getTypeSizeInBits(NewOp->getType()) < getTypeSizeInBits(Ty))
1192 return getAnyExtendExpr(NewOp, Ty);
1193 return getTruncateOrNoop(NewOp, Ty);
1194 }
1195
1196 // Next try a zext cast. If the cast is folded, use it.
Dan Gohman0bba49c2009-07-07 17:06:11 +00001197 const SCEV *ZExt = getZeroExtendExpr(Op, Ty);
Dan Gohman2ce84c8d2009-06-13 15:56:47 +00001198 if (!isa<SCEVZeroExtendExpr>(ZExt))
1199 return ZExt;
1200
1201 // Next try a sext cast. If the cast is folded, use it.
Dan Gohman0bba49c2009-07-07 17:06:11 +00001202 const SCEV *SExt = getSignExtendExpr(Op, Ty);
Dan Gohman2ce84c8d2009-06-13 15:56:47 +00001203 if (!isa<SCEVSignExtendExpr>(SExt))
1204 return SExt;
1205
Dan Gohmana10756e2010-01-21 02:09:26 +00001206 // Force the cast to be folded into the operands of an addrec.
1207 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(Op)) {
1208 SmallVector<const SCEV *, 4> Ops;
1209 for (SCEVAddRecExpr::op_iterator I = AR->op_begin(), E = AR->op_end();
1210 I != E; ++I)
1211 Ops.push_back(getAnyExtendExpr(*I, Ty));
1212 return getAddRecExpr(Ops, AR->getLoop());
1213 }
1214
Dan Gohmanf53462d2010-07-15 20:02:11 +00001215 // As a special case, fold anyext(undef) to undef. We don't want to
1216 // know too much about SCEVUnknowns, but this special case is handy
1217 // and harmless.
1218 if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(Op))
1219 if (isa<UndefValue>(U->getValue()))
1220 return getSCEV(UndefValue::get(Ty));
1221
Dan Gohman2ce84c8d2009-06-13 15:56:47 +00001222 // If the expression is obviously signed, use the sext cast value.
1223 if (isa<SCEVSMaxExpr>(Op))
1224 return SExt;
1225
1226 // Absent any other information, use the zext cast value.
1227 return ZExt;
1228}
1229
Dan Gohmanbd59d7b2009-06-14 22:58:51 +00001230/// CollectAddOperandsWithScales - Process the given Ops list, which is
1231/// a list of operands to be added under the given scale, update the given
1232/// map. This is a helper function for getAddRecExpr. As an example of
1233/// what it does, given a sequence of operands that would form an add
1234/// expression like this:
1235///
1236/// m + n + 13 + (A * (o + p + (B * q + m + 29))) + r + (-1 * r)
1237///
1238/// where A and B are constants, update the map with these values:
1239///
1240/// (m, 1+A*B), (n, 1), (o, A), (p, A), (q, A*B), (r, 0)
1241///
1242/// and add 13 + A*B*29 to AccumulatedConstant.
1243/// This will allow getAddRecExpr to produce this:
1244///
1245/// 13+A*B*29 + n + (m * (1+A*B)) + ((o + p) * A) + (q * A*B)
1246///
1247/// This form often exposes folding opportunities that are hidden in
1248/// the original operand list.
1249///
1250/// Return true iff it appears that any interesting folding opportunities
1251/// may be exposed. This helps getAddRecExpr short-circuit extra work in
1252/// the common case where no interesting opportunities are present, and
1253/// is also used as a check to avoid infinite recursion.
1254///
1255static bool
Dan Gohman0bba49c2009-07-07 17:06:11 +00001256CollectAddOperandsWithScales(DenseMap<const SCEV *, APInt> &M,
1257 SmallVector<const SCEV *, 8> &NewOps,
Dan Gohmanbd59d7b2009-06-14 22:58:51 +00001258 APInt &AccumulatedConstant,
Dan Gohmanf9e64722010-03-18 01:17:13 +00001259 const SCEV *const *Ops, size_t NumOperands,
Dan Gohmanbd59d7b2009-06-14 22:58:51 +00001260 const APInt &Scale,
1261 ScalarEvolution &SE) {
1262 bool Interesting = false;
1263
Dan Gohmane0f0c7b2010-06-18 19:12:32 +00001264 // Iterate over the add operands. They are sorted, with constants first.
1265 unsigned i = 0;
1266 while (const SCEVConstant *C = dyn_cast<SCEVConstant>(Ops[i])) {
1267 ++i;
1268 // Pull a buried constant out to the outside.
1269 if (Scale != 1 || AccumulatedConstant != 0 || C->getValue()->isZero())
1270 Interesting = true;
1271 AccumulatedConstant += Scale * C->getValue()->getValue();
1272 }
1273
1274 // Next comes everything else. We're especially interested in multiplies
1275 // here, but they're in the middle, so just visit the rest with one loop.
1276 for (; i != NumOperands; ++i) {
Dan Gohmanbd59d7b2009-06-14 22:58:51 +00001277 const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(Ops[i]);
1278 if (Mul && isa<SCEVConstant>(Mul->getOperand(0))) {
1279 APInt NewScale =
1280 Scale * cast<SCEVConstant>(Mul->getOperand(0))->getValue()->getValue();
1281 if (Mul->getNumOperands() == 2 && isa<SCEVAddExpr>(Mul->getOperand(1))) {
1282 // A multiplication of a constant with another add; recurse.
Dan Gohmanf9e64722010-03-18 01:17:13 +00001283 const SCEVAddExpr *Add = cast<SCEVAddExpr>(Mul->getOperand(1));
Dan Gohmanbd59d7b2009-06-14 22:58:51 +00001284 Interesting |=
1285 CollectAddOperandsWithScales(M, NewOps, AccumulatedConstant,
Dan Gohmanf9e64722010-03-18 01:17:13 +00001286 Add->op_begin(), Add->getNumOperands(),
Dan Gohmanbd59d7b2009-06-14 22:58:51 +00001287 NewScale, SE);
1288 } else {
1289 // A multiplication of a constant with some other value. Update
1290 // the map.
Dan Gohman0bba49c2009-07-07 17:06:11 +00001291 SmallVector<const SCEV *, 4> MulOps(Mul->op_begin()+1, Mul->op_end());
1292 const SCEV *Key = SE.getMulExpr(MulOps);
1293 std::pair<DenseMap<const SCEV *, APInt>::iterator, bool> Pair =
Dan Gohman23737e02009-06-29 18:25:52 +00001294 M.insert(std::make_pair(Key, NewScale));
Dan Gohmanbd59d7b2009-06-14 22:58:51 +00001295 if (Pair.second) {
Dan Gohmanbd59d7b2009-06-14 22:58:51 +00001296 NewOps.push_back(Pair.first->first);
1297 } else {
1298 Pair.first->second += NewScale;
1299 // The map already had an entry for this value, which may indicate
1300 // a folding opportunity.
1301 Interesting = true;
1302 }
1303 }
Dan Gohmanbd59d7b2009-06-14 22:58:51 +00001304 } else {
1305 // An ordinary operand. Update the map.
Dan Gohman0bba49c2009-07-07 17:06:11 +00001306 std::pair<DenseMap<const SCEV *, APInt>::iterator, bool> Pair =
Dan Gohman23737e02009-06-29 18:25:52 +00001307 M.insert(std::make_pair(Ops[i], Scale));
Dan Gohmanbd59d7b2009-06-14 22:58:51 +00001308 if (Pair.second) {
Dan Gohmanbd59d7b2009-06-14 22:58:51 +00001309 NewOps.push_back(Pair.first->first);
1310 } else {
1311 Pair.first->second += Scale;
1312 // The map already had an entry for this value, which may indicate
1313 // a folding opportunity.
1314 Interesting = true;
1315 }
1316 }
1317 }
1318
1319 return Interesting;
1320}
1321
1322namespace {
1323 struct APIntCompare {
1324 bool operator()(const APInt &LHS, const APInt &RHS) const {
1325 return LHS.ult(RHS);
1326 }
1327 };
1328}
1329
Dan Gohman6c0866c2009-05-24 23:45:28 +00001330/// getAddExpr - Get a canonical add expression, or something simpler if
1331/// possible.
Dan Gohman3645b012009-10-09 00:10:36 +00001332const SCEV *ScalarEvolution::getAddExpr(SmallVectorImpl<const SCEV *> &Ops,
1333 bool HasNUW, bool HasNSW) {
Chris Lattner53e677a2004-04-02 20:23:17 +00001334 assert(!Ops.empty() && "Cannot get empty add!");
Chris Lattner627018b2004-04-07 16:16:11 +00001335 if (Ops.size() == 1) return Ops[0];
Dan Gohmanf78a9782009-05-18 15:44:58 +00001336#ifndef NDEBUG
Dan Gohmanc72f0c82010-06-18 19:09:27 +00001337 const Type *ETy = getEffectiveSCEVType(Ops[0]->getType());
Dan Gohmanf78a9782009-05-18 15:44:58 +00001338 for (unsigned i = 1, e = Ops.size(); i != e; ++i)
Dan Gohmanc72f0c82010-06-18 19:09:27 +00001339 assert(getEffectiveSCEVType(Ops[i]->getType()) == ETy &&
Dan Gohmanf78a9782009-05-18 15:44:58 +00001340 "SCEVAddExpr operand types don't match!");
1341#endif
Chris Lattner53e677a2004-04-02 20:23:17 +00001342
Dan Gohmana10756e2010-01-21 02:09:26 +00001343 // If HasNSW is true and all the operands are non-negative, infer HasNUW.
1344 if (!HasNUW && HasNSW) {
1345 bool All = true;
Dan Gohman2d16fc52010-08-16 16:27:53 +00001346 for (SmallVectorImpl<const SCEV *>::const_iterator I = Ops.begin(),
1347 E = Ops.end(); I != E; ++I)
1348 if (!isKnownNonNegative(*I)) {
Dan Gohmana10756e2010-01-21 02:09:26 +00001349 All = false;
1350 break;
1351 }
1352 if (All) HasNUW = true;
1353 }
1354
Chris Lattner53e677a2004-04-02 20:23:17 +00001355 // Sort by complexity, this groups all similar expression types together.
Dan Gohman72861302009-05-07 14:39:04 +00001356 GroupByComplexity(Ops, LI);
Chris Lattner53e677a2004-04-02 20:23:17 +00001357
1358 // If there are any constants, fold them together.
1359 unsigned Idx = 0;
Dan Gohman622ed672009-05-04 22:02:23 +00001360 if (const SCEVConstant *LHSC = dyn_cast<SCEVConstant>(Ops[0])) {
Chris Lattner53e677a2004-04-02 20:23:17 +00001361 ++Idx;
Chris Lattner627018b2004-04-07 16:16:11 +00001362 assert(Idx < Ops.size());
Dan Gohman622ed672009-05-04 22:02:23 +00001363 while (const SCEVConstant *RHSC = dyn_cast<SCEVConstant>(Ops[Idx])) {
Chris Lattner53e677a2004-04-02 20:23:17 +00001364 // We found two constants, fold them together!
Dan Gohmana82752c2009-06-14 22:47:23 +00001365 Ops[0] = getConstant(LHSC->getValue()->getValue() +
1366 RHSC->getValue()->getValue());
Dan Gohman7f7c4362009-06-14 22:53:57 +00001367 if (Ops.size() == 2) return Ops[0];
Nick Lewycky3e630762008-02-20 06:48:22 +00001368 Ops.erase(Ops.begin()+1); // Erase the folded element
Nick Lewycky3e630762008-02-20 06:48:22 +00001369 LHSC = cast<SCEVConstant>(Ops[0]);
Chris Lattner53e677a2004-04-02 20:23:17 +00001370 }
1371
1372 // If we are left with a constant zero being added, strip it off.
Dan Gohmanbca091d2010-04-12 23:08:18 +00001373 if (LHSC->getValue()->isZero()) {
Chris Lattner53e677a2004-04-02 20:23:17 +00001374 Ops.erase(Ops.begin());
1375 --Idx;
1376 }
Chris Lattner53e677a2004-04-02 20:23:17 +00001377
Dan Gohmanbca091d2010-04-12 23:08:18 +00001378 if (Ops.size() == 1) return Ops[0];
1379 }
Misha Brukman2b37d7c2005-04-21 21:13:18 +00001380
Chris Lattner53e677a2004-04-02 20:23:17 +00001381 // Okay, check to see if the same value occurs in the operand list twice. If
1382 // so, merge them together into an multiply expression. Since we sorted the
1383 // list, these values are required to be adjacent.
1384 const Type *Ty = Ops[0]->getType();
Dan Gohmandc7692b2010-08-12 14:46:54 +00001385 bool FoundMatch = false;
Chris Lattner53e677a2004-04-02 20:23:17 +00001386 for (unsigned i = 0, e = Ops.size()-1; i != e; ++i)
1387 if (Ops[i] == Ops[i+1]) { // X + Y + Y --> X + Y*2
1388 // Found a match, merge the two values into a multiply, and add any
1389 // remaining values to the result.
Dan Gohmandeff6212010-05-03 22:09:21 +00001390 const SCEV *Two = getConstant(Ty, 2);
Dan Gohman58a85b92010-08-13 20:17:14 +00001391 const SCEV *Mul = getMulExpr(Two, Ops[i]);
Chris Lattner53e677a2004-04-02 20:23:17 +00001392 if (Ops.size() == 2)
1393 return Mul;
Dan Gohmandc7692b2010-08-12 14:46:54 +00001394 Ops[i] = Mul;
1395 Ops.erase(Ops.begin()+i+1);
1396 --i; --e;
1397 FoundMatch = true;
Chris Lattner53e677a2004-04-02 20:23:17 +00001398 }
Dan Gohmandc7692b2010-08-12 14:46:54 +00001399 if (FoundMatch)
1400 return getAddExpr(Ops, HasNUW, HasNSW);
Chris Lattner53e677a2004-04-02 20:23:17 +00001401
Dan Gohman728c7f32009-05-08 21:03:19 +00001402 // Check for truncates. If all the operands are truncated from the same
1403 // type, see if factoring out the truncate would permit the result to be
1404 // folded. eg., trunc(x) + m*trunc(n) --> trunc(x + trunc(m)*n)
1405 // if the contents of the resulting outer trunc fold to something simple.
1406 for (; Idx < Ops.size() && isa<SCEVTruncateExpr>(Ops[Idx]); ++Idx) {
1407 const SCEVTruncateExpr *Trunc = cast<SCEVTruncateExpr>(Ops[Idx]);
1408 const Type *DstType = Trunc->getType();
1409 const Type *SrcType = Trunc->getOperand()->getType();
Dan Gohman0bba49c2009-07-07 17:06:11 +00001410 SmallVector<const SCEV *, 8> LargeOps;
Dan Gohman728c7f32009-05-08 21:03:19 +00001411 bool Ok = true;
1412 // Check all the operands to see if they can be represented in the
1413 // source type of the truncate.
1414 for (unsigned i = 0, e = Ops.size(); i != e; ++i) {
1415 if (const SCEVTruncateExpr *T = dyn_cast<SCEVTruncateExpr>(Ops[i])) {
1416 if (T->getOperand()->getType() != SrcType) {
1417 Ok = false;
1418 break;
1419 }
1420 LargeOps.push_back(T->getOperand());
1421 } else if (const SCEVConstant *C = dyn_cast<SCEVConstant>(Ops[i])) {
Dan Gohmanc6863982010-04-23 01:51:29 +00001422 LargeOps.push_back(getAnyExtendExpr(C, SrcType));
Dan Gohman728c7f32009-05-08 21:03:19 +00001423 } else if (const SCEVMulExpr *M = dyn_cast<SCEVMulExpr>(Ops[i])) {
Dan Gohman0bba49c2009-07-07 17:06:11 +00001424 SmallVector<const SCEV *, 8> LargeMulOps;
Dan Gohman728c7f32009-05-08 21:03:19 +00001425 for (unsigned j = 0, f = M->getNumOperands(); j != f && Ok; ++j) {
1426 if (const SCEVTruncateExpr *T =
1427 dyn_cast<SCEVTruncateExpr>(M->getOperand(j))) {
1428 if (T->getOperand()->getType() != SrcType) {
1429 Ok = false;
1430 break;
1431 }
1432 LargeMulOps.push_back(T->getOperand());
1433 } else if (const SCEVConstant *C =
1434 dyn_cast<SCEVConstant>(M->getOperand(j))) {
Dan Gohmanc6863982010-04-23 01:51:29 +00001435 LargeMulOps.push_back(getAnyExtendExpr(C, SrcType));
Dan Gohman728c7f32009-05-08 21:03:19 +00001436 } else {
1437 Ok = false;
1438 break;
1439 }
1440 }
1441 if (Ok)
1442 LargeOps.push_back(getMulExpr(LargeMulOps));
1443 } else {
1444 Ok = false;
1445 break;
1446 }
1447 }
1448 if (Ok) {
1449 // Evaluate the expression in the larger type.
Dan Gohman3645b012009-10-09 00:10:36 +00001450 const SCEV *Fold = getAddExpr(LargeOps, HasNUW, HasNSW);
Dan Gohman728c7f32009-05-08 21:03:19 +00001451 // If it folds to something simple, use it. Otherwise, don't.
1452 if (isa<SCEVConstant>(Fold) || isa<SCEVUnknown>(Fold))
1453 return getTruncateExpr(Fold, DstType);
1454 }
1455 }
1456
1457 // Skip past any other cast SCEVs.
Dan Gohmanf50cd742007-06-18 19:30:09 +00001458 while (Idx < Ops.size() && Ops[Idx]->getSCEVType() < scAddExpr)
1459 ++Idx;
1460
1461 // If there are add operands they would be next.
Chris Lattner53e677a2004-04-02 20:23:17 +00001462 if (Idx < Ops.size()) {
1463 bool DeletedAdd = false;
Dan Gohman622ed672009-05-04 22:02:23 +00001464 while (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(Ops[Idx])) {
Chris Lattner53e677a2004-04-02 20:23:17 +00001465 // If we have an add, expand the add operands onto the end of the operands
1466 // list.
Chris Lattner53e677a2004-04-02 20:23:17 +00001467 Ops.erase(Ops.begin()+Idx);
Dan Gohman403a8cd2010-06-21 19:47:52 +00001468 Ops.append(Add->op_begin(), Add->op_end());
Chris Lattner53e677a2004-04-02 20:23:17 +00001469 DeletedAdd = true;
1470 }
1471
1472 // If we deleted at least one add, we added operands to the end of the list,
1473 // and they are not necessarily sorted. Recurse to resort and resimplify
Dan Gohman3f46a3a2010-03-01 17:49:51 +00001474 // any operands we just acquired.
Chris Lattner53e677a2004-04-02 20:23:17 +00001475 if (DeletedAdd)
Dan Gohman246b2562007-10-22 18:31:58 +00001476 return getAddExpr(Ops);
Chris Lattner53e677a2004-04-02 20:23:17 +00001477 }
1478
1479 // Skip over the add expression until we get to a multiply.
1480 while (Idx < Ops.size() && Ops[Idx]->getSCEVType() < scMulExpr)
1481 ++Idx;
1482
Dan Gohmanbd59d7b2009-06-14 22:58:51 +00001483 // Check to see if there are any folding opportunities present with
1484 // operands multiplied by constant values.
1485 if (Idx < Ops.size() && isa<SCEVMulExpr>(Ops[Idx])) {
1486 uint64_t BitWidth = getTypeSizeInBits(Ty);
Dan Gohman0bba49c2009-07-07 17:06:11 +00001487 DenseMap<const SCEV *, APInt> M;
1488 SmallVector<const SCEV *, 8> NewOps;
Dan Gohmanbd59d7b2009-06-14 22:58:51 +00001489 APInt AccumulatedConstant(BitWidth, 0);
1490 if (CollectAddOperandsWithScales(M, NewOps, AccumulatedConstant,
Dan Gohmanf9e64722010-03-18 01:17:13 +00001491 Ops.data(), Ops.size(),
1492 APInt(BitWidth, 1), *this)) {
Dan Gohmanbd59d7b2009-06-14 22:58:51 +00001493 // Some interesting folding opportunity is present, so its worthwhile to
1494 // re-generate the operands list. Group the operands by constant scale,
1495 // to avoid multiplying by the same constant scale multiple times.
Dan Gohman0bba49c2009-07-07 17:06:11 +00001496 std::map<APInt, SmallVector<const SCEV *, 4>, APIntCompare> MulOpLists;
Dan Gohman8d9c7a62010-08-16 16:30:01 +00001497 for (SmallVector<const SCEV *, 8>::const_iterator I = NewOps.begin(),
Dan Gohmanbd59d7b2009-06-14 22:58:51 +00001498 E = NewOps.end(); I != E; ++I)
1499 MulOpLists[M.find(*I)->second].push_back(*I);
1500 // Re-generate the operands list.
1501 Ops.clear();
1502 if (AccumulatedConstant != 0)
1503 Ops.push_back(getConstant(AccumulatedConstant));
Dan Gohman64a845e2009-06-24 04:48:43 +00001504 for (std::map<APInt, SmallVector<const SCEV *, 4>, APIntCompare>::iterator
1505 I = MulOpLists.begin(), E = MulOpLists.end(); I != E; ++I)
Dan Gohmanbd59d7b2009-06-14 22:58:51 +00001506 if (I->first != 0)
Dan Gohman64a845e2009-06-24 04:48:43 +00001507 Ops.push_back(getMulExpr(getConstant(I->first),
1508 getAddExpr(I->second)));
Dan Gohmanbd59d7b2009-06-14 22:58:51 +00001509 if (Ops.empty())
Dan Gohmandeff6212010-05-03 22:09:21 +00001510 return getConstant(Ty, 0);
Dan Gohmanbd59d7b2009-06-14 22:58:51 +00001511 if (Ops.size() == 1)
1512 return Ops[0];
1513 return getAddExpr(Ops);
1514 }
1515 }
1516
Chris Lattner53e677a2004-04-02 20:23:17 +00001517 // If we are adding something to a multiply expression, make sure the
1518 // something is not already an operand of the multiply. If so, merge it into
1519 // the multiply.
1520 for (; Idx < Ops.size() && isa<SCEVMulExpr>(Ops[Idx]); ++Idx) {
Dan Gohman35738ac2009-05-04 22:30:44 +00001521 const SCEVMulExpr *Mul = cast<SCEVMulExpr>(Ops[Idx]);
Chris Lattner53e677a2004-04-02 20:23:17 +00001522 for (unsigned MulOp = 0, e = Mul->getNumOperands(); MulOp != e; ++MulOp) {
Dan Gohman35738ac2009-05-04 22:30:44 +00001523 const SCEV *MulOpSCEV = Mul->getOperand(MulOp);
Dan Gohman918e76b2010-08-12 14:52:55 +00001524 if (isa<SCEVConstant>(MulOpSCEV))
1525 continue;
Chris Lattner53e677a2004-04-02 20:23:17 +00001526 for (unsigned AddOp = 0, e = Ops.size(); AddOp != e; ++AddOp)
Dan Gohman918e76b2010-08-12 14:52:55 +00001527 if (MulOpSCEV == Ops[AddOp]) {
Chris Lattner53e677a2004-04-02 20:23:17 +00001528 // Fold W + X + (X * Y * Z) --> W + (X * ((Y*Z)+1))
Dan Gohman0bba49c2009-07-07 17:06:11 +00001529 const SCEV *InnerMul = Mul->getOperand(MulOp == 0);
Chris Lattner53e677a2004-04-02 20:23:17 +00001530 if (Mul->getNumOperands() != 2) {
1531 // If the multiply has more than two operands, we must get the
1532 // Y*Z term.
Dan Gohman0bba49c2009-07-07 17:06:11 +00001533 SmallVector<const SCEV *, 4> MulOps(Mul->op_begin(), Mul->op_end());
Chris Lattner53e677a2004-04-02 20:23:17 +00001534 MulOps.erase(MulOps.begin()+MulOp);
Dan Gohman246b2562007-10-22 18:31:58 +00001535 InnerMul = getMulExpr(MulOps);
Chris Lattner53e677a2004-04-02 20:23:17 +00001536 }
Dan Gohmandeff6212010-05-03 22:09:21 +00001537 const SCEV *One = getConstant(Ty, 1);
Dan Gohman58a85b92010-08-13 20:17:14 +00001538 const SCEV *AddOne = getAddExpr(One, InnerMul);
Dan Gohman918e76b2010-08-12 14:52:55 +00001539 const SCEV *OuterMul = getMulExpr(AddOne, MulOpSCEV);
Chris Lattner53e677a2004-04-02 20:23:17 +00001540 if (Ops.size() == 2) return OuterMul;
1541 if (AddOp < Idx) {
1542 Ops.erase(Ops.begin()+AddOp);
1543 Ops.erase(Ops.begin()+Idx-1);
1544 } else {
1545 Ops.erase(Ops.begin()+Idx);
1546 Ops.erase(Ops.begin()+AddOp-1);
1547 }
1548 Ops.push_back(OuterMul);
Dan Gohman246b2562007-10-22 18:31:58 +00001549 return getAddExpr(Ops);
Chris Lattner53e677a2004-04-02 20:23:17 +00001550 }
Misha Brukman2b37d7c2005-04-21 21:13:18 +00001551
Chris Lattner53e677a2004-04-02 20:23:17 +00001552 // Check this multiply against other multiplies being added together.
Dan Gohman727356f2010-08-12 15:00:23 +00001553 bool AnyFold = false;
Chris Lattner53e677a2004-04-02 20:23:17 +00001554 for (unsigned OtherMulIdx = Idx+1;
1555 OtherMulIdx < Ops.size() && isa<SCEVMulExpr>(Ops[OtherMulIdx]);
1556 ++OtherMulIdx) {
Dan Gohman35738ac2009-05-04 22:30:44 +00001557 const SCEVMulExpr *OtherMul = cast<SCEVMulExpr>(Ops[OtherMulIdx]);
Chris Lattner53e677a2004-04-02 20:23:17 +00001558 // If MulOp occurs in OtherMul, we can fold the two multiplies
1559 // together.
1560 for (unsigned OMulOp = 0, e = OtherMul->getNumOperands();
1561 OMulOp != e; ++OMulOp)
1562 if (OtherMul->getOperand(OMulOp) == MulOpSCEV) {
1563 // Fold X + (A*B*C) + (A*D*E) --> X + (A*(B*C+D*E))
Dan Gohman0bba49c2009-07-07 17:06:11 +00001564 const SCEV *InnerMul1 = Mul->getOperand(MulOp == 0);
Chris Lattner53e677a2004-04-02 20:23:17 +00001565 if (Mul->getNumOperands() != 2) {
Dan Gohman64a845e2009-06-24 04:48:43 +00001566 SmallVector<const SCEV *, 4> MulOps(Mul->op_begin(),
1567 Mul->op_end());
Chris Lattner53e677a2004-04-02 20:23:17 +00001568 MulOps.erase(MulOps.begin()+MulOp);
Dan Gohman246b2562007-10-22 18:31:58 +00001569 InnerMul1 = getMulExpr(MulOps);
Chris Lattner53e677a2004-04-02 20:23:17 +00001570 }
Dan Gohman0bba49c2009-07-07 17:06:11 +00001571 const SCEV *InnerMul2 = OtherMul->getOperand(OMulOp == 0);
Chris Lattner53e677a2004-04-02 20:23:17 +00001572 if (OtherMul->getNumOperands() != 2) {
Dan Gohman64a845e2009-06-24 04:48:43 +00001573 SmallVector<const SCEV *, 4> MulOps(OtherMul->op_begin(),
1574 OtherMul->op_end());
Chris Lattner53e677a2004-04-02 20:23:17 +00001575 MulOps.erase(MulOps.begin()+OMulOp);
Dan Gohman246b2562007-10-22 18:31:58 +00001576 InnerMul2 = getMulExpr(MulOps);
Chris Lattner53e677a2004-04-02 20:23:17 +00001577 }
Dan Gohman0bba49c2009-07-07 17:06:11 +00001578 const SCEV *InnerMulSum = getAddExpr(InnerMul1,InnerMul2);
1579 const SCEV *OuterMul = getMulExpr(MulOpSCEV, InnerMulSum);
Chris Lattner53e677a2004-04-02 20:23:17 +00001580 if (Ops.size() == 2) return OuterMul;
Dan Gohman727356f2010-08-12 15:00:23 +00001581 Ops[Idx] = OuterMul;
1582 Ops.erase(Ops.begin()+OtherMulIdx);
1583 OtherMulIdx = Idx;
1584 AnyFold = true;
Chris Lattner53e677a2004-04-02 20:23:17 +00001585 }
1586 }
Dan Gohman727356f2010-08-12 15:00:23 +00001587 if (AnyFold)
1588 return getAddExpr(Ops);
Chris Lattner53e677a2004-04-02 20:23:17 +00001589 }
1590 }
1591
1592 // If there are any add recurrences in the operands list, see if any other
1593 // added values are loop invariant. If so, we can fold them into the
1594 // recurrence.
1595 while (Idx < Ops.size() && Ops[Idx]->getSCEVType() < scAddRecExpr)
1596 ++Idx;
1597
1598 // Scan over all recurrences, trying to fold loop invariants into them.
1599 for (; Idx < Ops.size() && isa<SCEVAddRecExpr>(Ops[Idx]); ++Idx) {
1600 // Scan all of the other operands to this add and add them to the vector if
1601 // they are loop invariant w.r.t. the recurrence.
Dan Gohman0bba49c2009-07-07 17:06:11 +00001602 SmallVector<const SCEV *, 8> LIOps;
Dan Gohman35738ac2009-05-04 22:30:44 +00001603 const SCEVAddRecExpr *AddRec = cast<SCEVAddRecExpr>(Ops[Idx]);
Dan Gohmanbca091d2010-04-12 23:08:18 +00001604 const Loop *AddRecLoop = AddRec->getLoop();
Chris Lattner53e677a2004-04-02 20:23:17 +00001605 for (unsigned i = 0, e = Ops.size(); i != e; ++i)
Dan Gohmanbca091d2010-04-12 23:08:18 +00001606 if (Ops[i]->isLoopInvariant(AddRecLoop)) {
Chris Lattner53e677a2004-04-02 20:23:17 +00001607 LIOps.push_back(Ops[i]);
1608 Ops.erase(Ops.begin()+i);
1609 --i; --e;
1610 }
1611
1612 // If we found some loop invariants, fold them into the recurrence.
1613 if (!LIOps.empty()) {
Dan Gohman8dae1382008-09-14 17:21:12 +00001614 // NLI + LI + {Start,+,Step} --> NLI + {LI+Start,+,Step}
Chris Lattner53e677a2004-04-02 20:23:17 +00001615 LIOps.push_back(AddRec->getStart());
1616
Dan Gohman0bba49c2009-07-07 17:06:11 +00001617 SmallVector<const SCEV *, 4> AddRecOps(AddRec->op_begin(),
Dan Gohman3a5d4092009-12-18 03:57:04 +00001618 AddRec->op_end());
Dan Gohman246b2562007-10-22 18:31:58 +00001619 AddRecOps[0] = getAddExpr(LIOps);
Chris Lattner53e677a2004-04-02 20:23:17 +00001620
Dan Gohmanb9f96512010-06-30 07:16:37 +00001621 // Build the new addrec. Propagate the NUW and NSW flags if both the
1622 // outer add and the inner addrec are guaranteed to have no overflow.
1623 const SCEV *NewRec = getAddRecExpr(AddRecOps, AddRecLoop,
1624 HasNUW && AddRec->hasNoUnsignedWrap(),
1625 HasNSW && AddRec->hasNoSignedWrap());
Dan Gohman59de33e2009-12-18 18:45:31 +00001626
Chris Lattner53e677a2004-04-02 20:23:17 +00001627 // If all of the other operands were loop invariant, we are done.
1628 if (Ops.size() == 1) return NewRec;
1629
1630 // Otherwise, add the folded AddRec by the non-liv parts.
1631 for (unsigned i = 0;; ++i)
1632 if (Ops[i] == AddRec) {
1633 Ops[i] = NewRec;
1634 break;
1635 }
Dan Gohman246b2562007-10-22 18:31:58 +00001636 return getAddExpr(Ops);
Chris Lattner53e677a2004-04-02 20:23:17 +00001637 }
1638
1639 // Okay, if there weren't any loop invariants to be folded, check to see if
1640 // there are multiple AddRec's with the same loop induction variable being
1641 // added together. If so, we can fold them.
1642 for (unsigned OtherIdx = Idx+1;
1643 OtherIdx < Ops.size() && isa<SCEVAddRecExpr>(Ops[OtherIdx]);++OtherIdx)
1644 if (OtherIdx != Idx) {
Dan Gohman35738ac2009-05-04 22:30:44 +00001645 const SCEVAddRecExpr *OtherAddRec = cast<SCEVAddRecExpr>(Ops[OtherIdx]);
Dan Gohmanbca091d2010-04-12 23:08:18 +00001646 if (AddRecLoop == OtherAddRec->getLoop()) {
Chris Lattner53e677a2004-04-02 20:23:17 +00001647 // Other + {A,+,B} + {C,+,D} --> Other + {A+C,+,B+D}
Dan Gohman64a845e2009-06-24 04:48:43 +00001648 SmallVector<const SCEV *, 4> NewOps(AddRec->op_begin(),
1649 AddRec->op_end());
Chris Lattner53e677a2004-04-02 20:23:17 +00001650 for (unsigned i = 0, e = OtherAddRec->getNumOperands(); i != e; ++i) {
1651 if (i >= NewOps.size()) {
Dan Gohman403a8cd2010-06-21 19:47:52 +00001652 NewOps.append(OtherAddRec->op_begin()+i,
Chris Lattner53e677a2004-04-02 20:23:17 +00001653 OtherAddRec->op_end());
1654 break;
1655 }
Dan Gohman246b2562007-10-22 18:31:58 +00001656 NewOps[i] = getAddExpr(NewOps[i], OtherAddRec->getOperand(i));
Chris Lattner53e677a2004-04-02 20:23:17 +00001657 }
Dan Gohmanbca091d2010-04-12 23:08:18 +00001658 const SCEV *NewAddRec = getAddRecExpr(NewOps, AddRecLoop);
Chris Lattner53e677a2004-04-02 20:23:17 +00001659
1660 if (Ops.size() == 2) return NewAddRec;
1661
1662 Ops.erase(Ops.begin()+Idx);
1663 Ops.erase(Ops.begin()+OtherIdx-1);
1664 Ops.push_back(NewAddRec);
Dan Gohman246b2562007-10-22 18:31:58 +00001665 return getAddExpr(Ops);
Chris Lattner53e677a2004-04-02 20:23:17 +00001666 }
1667 }
1668
1669 // Otherwise couldn't fold anything into this recurrence. Move onto the
1670 // next one.
1671 }
1672
1673 // Okay, it looks like we really DO need an add expr. Check to see if we
1674 // already have one, otherwise create a new one.
Dan Gohman1c343752009-06-27 21:21:31 +00001675 FoldingSetNodeID ID;
1676 ID.AddInteger(scAddExpr);
1677 ID.AddInteger(Ops.size());
1678 for (unsigned i = 0, e = Ops.size(); i != e; ++i)
1679 ID.AddPointer(Ops[i]);
1680 void *IP = 0;
Dan Gohmana10756e2010-01-21 02:09:26 +00001681 SCEVAddExpr *S =
1682 static_cast<SCEVAddExpr *>(UniqueSCEVs.FindNodeOrInsertPos(ID, IP));
1683 if (!S) {
Dan Gohmanf9e64722010-03-18 01:17:13 +00001684 const SCEV **O = SCEVAllocator.Allocate<const SCEV *>(Ops.size());
1685 std::uninitialized_copy(Ops.begin(), Ops.end(), O);
Dan Gohman95531882010-03-18 18:49:47 +00001686 S = new (SCEVAllocator) SCEVAddExpr(ID.Intern(SCEVAllocator),
1687 O, Ops.size());
Dan Gohmana10756e2010-01-21 02:09:26 +00001688 UniqueSCEVs.InsertNode(S, IP);
1689 }
Dan Gohman3645b012009-10-09 00:10:36 +00001690 if (HasNUW) S->setHasNoUnsignedWrap(true);
1691 if (HasNSW) S->setHasNoSignedWrap(true);
Dan Gohman1c343752009-06-27 21:21:31 +00001692 return S;
Chris Lattner53e677a2004-04-02 20:23:17 +00001693}
1694
Dan Gohman6c0866c2009-05-24 23:45:28 +00001695/// getMulExpr - Get a canonical multiply expression, or something simpler if
1696/// possible.
Dan Gohman3645b012009-10-09 00:10:36 +00001697const SCEV *ScalarEvolution::getMulExpr(SmallVectorImpl<const SCEV *> &Ops,
1698 bool HasNUW, bool HasNSW) {
Chris Lattner53e677a2004-04-02 20:23:17 +00001699 assert(!Ops.empty() && "Cannot get empty mul!");
Dan Gohmana10756e2010-01-21 02:09:26 +00001700 if (Ops.size() == 1) return Ops[0];
Dan Gohmanf78a9782009-05-18 15:44:58 +00001701#ifndef NDEBUG
Dan Gohmanc4f77982010-08-16 16:13:54 +00001702 const Type *ETy = getEffectiveSCEVType(Ops[0]->getType());
Dan Gohmanf78a9782009-05-18 15:44:58 +00001703 for (unsigned i = 1, e = Ops.size(); i != e; ++i)
Dan Gohmanc4f77982010-08-16 16:13:54 +00001704 assert(getEffectiveSCEVType(Ops[i]->getType()) == ETy &&
Dan Gohmanf78a9782009-05-18 15:44:58 +00001705 "SCEVMulExpr operand types don't match!");
1706#endif
Chris Lattner53e677a2004-04-02 20:23:17 +00001707
Dan Gohmana10756e2010-01-21 02:09:26 +00001708 // If HasNSW is true and all the operands are non-negative, infer HasNUW.
1709 if (!HasNUW && HasNSW) {
1710 bool All = true;
Dan Gohman2d16fc52010-08-16 16:27:53 +00001711 for (SmallVectorImpl<const SCEV *>::const_iterator I = Ops.begin(),
1712 E = Ops.end(); I != E; ++I)
1713 if (!isKnownNonNegative(*I)) {
Dan Gohmana10756e2010-01-21 02:09:26 +00001714 All = false;
1715 break;
1716 }
1717 if (All) HasNUW = true;
1718 }
1719
Chris Lattner53e677a2004-04-02 20:23:17 +00001720 // Sort by complexity, this groups all similar expression types together.
Dan Gohman72861302009-05-07 14:39:04 +00001721 GroupByComplexity(Ops, LI);
Chris Lattner53e677a2004-04-02 20:23:17 +00001722
1723 // If there are any constants, fold them together.
1724 unsigned Idx = 0;
Dan Gohman622ed672009-05-04 22:02:23 +00001725 if (const SCEVConstant *LHSC = dyn_cast<SCEVConstant>(Ops[0])) {
Chris Lattner53e677a2004-04-02 20:23:17 +00001726
1727 // C1*(C2+V) -> C1*C2 + C1*V
1728 if (Ops.size() == 2)
Dan Gohman622ed672009-05-04 22:02:23 +00001729 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(Ops[1]))
Chris Lattner53e677a2004-04-02 20:23:17 +00001730 if (Add->getNumOperands() == 2 &&
1731 isa<SCEVConstant>(Add->getOperand(0)))
Dan Gohman246b2562007-10-22 18:31:58 +00001732 return getAddExpr(getMulExpr(LHSC, Add->getOperand(0)),
1733 getMulExpr(LHSC, Add->getOperand(1)));
Chris Lattner53e677a2004-04-02 20:23:17 +00001734
Chris Lattner53e677a2004-04-02 20:23:17 +00001735 ++Idx;
Dan Gohman622ed672009-05-04 22:02:23 +00001736 while (const SCEVConstant *RHSC = dyn_cast<SCEVConstant>(Ops[Idx])) {
Chris Lattner53e677a2004-04-02 20:23:17 +00001737 // We found two constants, fold them together!
Owen Andersoneed707b2009-07-24 23:12:02 +00001738 ConstantInt *Fold = ConstantInt::get(getContext(),
1739 LHSC->getValue()->getValue() *
Nick Lewycky3e630762008-02-20 06:48:22 +00001740 RHSC->getValue()->getValue());
1741 Ops[0] = getConstant(Fold);
1742 Ops.erase(Ops.begin()+1); // Erase the folded element
1743 if (Ops.size() == 1) return Ops[0];
1744 LHSC = cast<SCEVConstant>(Ops[0]);
Chris Lattner53e677a2004-04-02 20:23:17 +00001745 }
1746
1747 // If we are left with a constant one being multiplied, strip it off.
1748 if (cast<SCEVConstant>(Ops[0])->getValue()->equalsInt(1)) {
1749 Ops.erase(Ops.begin());
1750 --Idx;
Reid Spencercae57542007-03-02 00:28:52 +00001751 } else if (cast<SCEVConstant>(Ops[0])->getValue()->isZero()) {
Chris Lattner53e677a2004-04-02 20:23:17 +00001752 // If we have a multiply of zero, it will always be zero.
1753 return Ops[0];
Dan Gohmana10756e2010-01-21 02:09:26 +00001754 } else if (Ops[0]->isAllOnesValue()) {
1755 // If we have a mul by -1 of an add, try distributing the -1 among the
1756 // add operands.
1757 if (Ops.size() == 2)
1758 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(Ops[1])) {
1759 SmallVector<const SCEV *, 4> NewOps;
1760 bool AnyFolded = false;
1761 for (SCEVAddRecExpr::op_iterator I = Add->op_begin(), E = Add->op_end();
1762 I != E; ++I) {
1763 const SCEV *Mul = getMulExpr(Ops[0], *I);
1764 if (!isa<SCEVMulExpr>(Mul)) AnyFolded = true;
1765 NewOps.push_back(Mul);
1766 }
1767 if (AnyFolded)
1768 return getAddExpr(NewOps);
1769 }
Chris Lattner53e677a2004-04-02 20:23:17 +00001770 }
Dan Gohman3ab13122010-04-13 16:49:23 +00001771
1772 if (Ops.size() == 1)
1773 return Ops[0];
Chris Lattner53e677a2004-04-02 20:23:17 +00001774 }
1775
1776 // Skip over the add expression until we get to a multiply.
1777 while (Idx < Ops.size() && Ops[Idx]->getSCEVType() < scMulExpr)
1778 ++Idx;
1779
Chris Lattner53e677a2004-04-02 20:23:17 +00001780 // If there are mul operands inline them all into this expression.
1781 if (Idx < Ops.size()) {
1782 bool DeletedMul = false;
Dan Gohman622ed672009-05-04 22:02:23 +00001783 while (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(Ops[Idx])) {
Chris Lattner53e677a2004-04-02 20:23:17 +00001784 // If we have an mul, expand the mul operands onto the end of the operands
1785 // list.
Chris Lattner53e677a2004-04-02 20:23:17 +00001786 Ops.erase(Ops.begin()+Idx);
Dan Gohman403a8cd2010-06-21 19:47:52 +00001787 Ops.append(Mul->op_begin(), Mul->op_end());
Chris Lattner53e677a2004-04-02 20:23:17 +00001788 DeletedMul = true;
1789 }
1790
1791 // If we deleted at least one mul, we added operands to the end of the list,
1792 // and they are not necessarily sorted. Recurse to resort and resimplify
Dan Gohman3f46a3a2010-03-01 17:49:51 +00001793 // any operands we just acquired.
Chris Lattner53e677a2004-04-02 20:23:17 +00001794 if (DeletedMul)
Dan Gohman246b2562007-10-22 18:31:58 +00001795 return getMulExpr(Ops);
Chris Lattner53e677a2004-04-02 20:23:17 +00001796 }
1797
1798 // If there are any add recurrences in the operands list, see if any other
1799 // added values are loop invariant. If so, we can fold them into the
1800 // recurrence.
1801 while (Idx < Ops.size() && Ops[Idx]->getSCEVType() < scAddRecExpr)
1802 ++Idx;
1803
1804 // Scan over all recurrences, trying to fold loop invariants into them.
1805 for (; Idx < Ops.size() && isa<SCEVAddRecExpr>(Ops[Idx]); ++Idx) {
1806 // Scan all of the other operands to this mul and add them to the vector if
1807 // they are loop invariant w.r.t. the recurrence.
Dan Gohman0bba49c2009-07-07 17:06:11 +00001808 SmallVector<const SCEV *, 8> LIOps;
Dan Gohman35738ac2009-05-04 22:30:44 +00001809 const SCEVAddRecExpr *AddRec = cast<SCEVAddRecExpr>(Ops[Idx]);
Chris Lattner53e677a2004-04-02 20:23:17 +00001810 for (unsigned i = 0, e = Ops.size(); i != e; ++i)
1811 if (Ops[i]->isLoopInvariant(AddRec->getLoop())) {
1812 LIOps.push_back(Ops[i]);
1813 Ops.erase(Ops.begin()+i);
1814 --i; --e;
1815 }
1816
1817 // If we found some loop invariants, fold them into the recurrence.
1818 if (!LIOps.empty()) {
Dan Gohman8dae1382008-09-14 17:21:12 +00001819 // NLI * LI * {Start,+,Step} --> NLI * {LI*Start,+,LI*Step}
Dan Gohman0bba49c2009-07-07 17:06:11 +00001820 SmallVector<const SCEV *, 4> NewOps;
Chris Lattner53e677a2004-04-02 20:23:17 +00001821 NewOps.reserve(AddRec->getNumOperands());
Dan Gohman27ed6a42010-06-17 23:34:09 +00001822 const SCEV *Scale = getMulExpr(LIOps);
1823 for (unsigned i = 0, e = AddRec->getNumOperands(); i != e; ++i)
1824 NewOps.push_back(getMulExpr(Scale, AddRec->getOperand(i)));
Chris Lattner53e677a2004-04-02 20:23:17 +00001825
Dan Gohmanb9f96512010-06-30 07:16:37 +00001826 // Build the new addrec. Propagate the NUW and NSW flags if both the
1827 // outer mul and the inner addrec are guaranteed to have no overflow.
Dan Gohmana10756e2010-01-21 02:09:26 +00001828 const SCEV *NewRec = getAddRecExpr(NewOps, AddRec->getLoop(),
1829 HasNUW && AddRec->hasNoUnsignedWrap(),
Dan Gohmanb9f96512010-06-30 07:16:37 +00001830 HasNSW && AddRec->hasNoSignedWrap());
Chris Lattner53e677a2004-04-02 20:23:17 +00001831
1832 // If all of the other operands were loop invariant, we are done.
1833 if (Ops.size() == 1) return NewRec;
1834
1835 // Otherwise, multiply the folded AddRec by the non-liv parts.
1836 for (unsigned i = 0;; ++i)
1837 if (Ops[i] == AddRec) {
1838 Ops[i] = NewRec;
1839 break;
1840 }
Dan Gohman246b2562007-10-22 18:31:58 +00001841 return getMulExpr(Ops);
Chris Lattner53e677a2004-04-02 20:23:17 +00001842 }
1843
1844 // Okay, if there weren't any loop invariants to be folded, check to see if
1845 // there are multiple AddRec's with the same loop induction variable being
1846 // multiplied together. If so, we can fold them.
1847 for (unsigned OtherIdx = Idx+1;
1848 OtherIdx < Ops.size() && isa<SCEVAddRecExpr>(Ops[OtherIdx]);++OtherIdx)
1849 if (OtherIdx != Idx) {
Dan Gohman35738ac2009-05-04 22:30:44 +00001850 const SCEVAddRecExpr *OtherAddRec = cast<SCEVAddRecExpr>(Ops[OtherIdx]);
Chris Lattner53e677a2004-04-02 20:23:17 +00001851 if (AddRec->getLoop() == OtherAddRec->getLoop()) {
1852 // F * G --> {A,+,B} * {C,+,D} --> {A*C,+,F*D + G*B + B*D}
Dan Gohman35738ac2009-05-04 22:30:44 +00001853 const SCEVAddRecExpr *F = AddRec, *G = OtherAddRec;
Dan Gohman0bba49c2009-07-07 17:06:11 +00001854 const SCEV *NewStart = getMulExpr(F->getStart(),
Chris Lattner53e677a2004-04-02 20:23:17 +00001855 G->getStart());
Dan Gohman0bba49c2009-07-07 17:06:11 +00001856 const SCEV *B = F->getStepRecurrence(*this);
1857 const SCEV *D = G->getStepRecurrence(*this);
1858 const SCEV *NewStep = getAddExpr(getMulExpr(F, D),
Dan Gohman246b2562007-10-22 18:31:58 +00001859 getMulExpr(G, B),
1860 getMulExpr(B, D));
Dan Gohman0bba49c2009-07-07 17:06:11 +00001861 const SCEV *NewAddRec = getAddRecExpr(NewStart, NewStep,
Dan Gohman246b2562007-10-22 18:31:58 +00001862 F->getLoop());
Chris Lattner53e677a2004-04-02 20:23:17 +00001863 if (Ops.size() == 2) return NewAddRec;
1864
1865 Ops.erase(Ops.begin()+Idx);
1866 Ops.erase(Ops.begin()+OtherIdx-1);
1867 Ops.push_back(NewAddRec);
Dan Gohman246b2562007-10-22 18:31:58 +00001868 return getMulExpr(Ops);
Chris Lattner53e677a2004-04-02 20:23:17 +00001869 }
1870 }
1871
1872 // Otherwise couldn't fold anything into this recurrence. Move onto the
1873 // next one.
1874 }
1875
1876 // Okay, it looks like we really DO need an mul expr. Check to see if we
1877 // already have one, otherwise create a new one.
Dan Gohman1c343752009-06-27 21:21:31 +00001878 FoldingSetNodeID ID;
1879 ID.AddInteger(scMulExpr);
1880 ID.AddInteger(Ops.size());
1881 for (unsigned i = 0, e = Ops.size(); i != e; ++i)
1882 ID.AddPointer(Ops[i]);
1883 void *IP = 0;
Dan Gohmana10756e2010-01-21 02:09:26 +00001884 SCEVMulExpr *S =
1885 static_cast<SCEVMulExpr *>(UniqueSCEVs.FindNodeOrInsertPos(ID, IP));
1886 if (!S) {
Dan Gohmanf9e64722010-03-18 01:17:13 +00001887 const SCEV **O = SCEVAllocator.Allocate<const SCEV *>(Ops.size());
1888 std::uninitialized_copy(Ops.begin(), Ops.end(), O);
Dan Gohman95531882010-03-18 18:49:47 +00001889 S = new (SCEVAllocator) SCEVMulExpr(ID.Intern(SCEVAllocator),
1890 O, Ops.size());
Dan Gohmana10756e2010-01-21 02:09:26 +00001891 UniqueSCEVs.InsertNode(S, IP);
1892 }
Dan Gohman3645b012009-10-09 00:10:36 +00001893 if (HasNUW) S->setHasNoUnsignedWrap(true);
1894 if (HasNSW) S->setHasNoSignedWrap(true);
Dan Gohman1c343752009-06-27 21:21:31 +00001895 return S;
Chris Lattner53e677a2004-04-02 20:23:17 +00001896}
1897
Andreas Bolka8a11c982009-08-07 22:55:26 +00001898/// getUDivExpr - Get a canonical unsigned division expression, or something
1899/// simpler if possible.
Dan Gohman9311ef62009-06-24 14:49:00 +00001900const SCEV *ScalarEvolution::getUDivExpr(const SCEV *LHS,
1901 const SCEV *RHS) {
Dan Gohmanf78a9782009-05-18 15:44:58 +00001902 assert(getEffectiveSCEVType(LHS->getType()) ==
1903 getEffectiveSCEVType(RHS->getType()) &&
1904 "SCEVUDivExpr operand types don't match!");
1905
Dan Gohman622ed672009-05-04 22:02:23 +00001906 if (const SCEVConstant *RHSC = dyn_cast<SCEVConstant>(RHS)) {
Chris Lattner53e677a2004-04-02 20:23:17 +00001907 if (RHSC->getValue()->equalsInt(1))
Dan Gohman4c0d5d52009-08-20 16:42:55 +00001908 return LHS; // X udiv 1 --> x
Dan Gohmanddb3eaf2010-04-22 01:35:11 +00001909 // If the denominator is zero, the result of the udiv is undefined. Don't
1910 // try to analyze it, because the resolution chosen here may differ from
1911 // the resolution chosen in other parts of the compiler.
1912 if (!RHSC->getValue()->isZero()) {
1913 // Determine if the division can be folded into the operands of
1914 // its operands.
1915 // TODO: Generalize this to non-constants by using known-bits information.
1916 const Type *Ty = LHS->getType();
1917 unsigned LZ = RHSC->getValue()->getValue().countLeadingZeros();
Dan Gohmanddd3a882010-08-04 19:52:50 +00001918 unsigned MaxShiftAmt = getTypeSizeInBits(Ty) - LZ - 1;
Dan Gohmanddb3eaf2010-04-22 01:35:11 +00001919 // For non-power-of-two values, effectively round the value up to the
1920 // nearest power of two.
1921 if (!RHSC->getValue()->getValue().isPowerOf2())
1922 ++MaxShiftAmt;
1923 const IntegerType *ExtTy =
1924 IntegerType::get(getContext(), getTypeSizeInBits(Ty) + MaxShiftAmt);
1925 // {X,+,N}/C --> {X/C,+,N/C} if safe and N/C can be folded.
1926 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(LHS))
1927 if (const SCEVConstant *Step =
1928 dyn_cast<SCEVConstant>(AR->getStepRecurrence(*this)))
1929 if (!Step->getValue()->getValue()
1930 .urem(RHSC->getValue()->getValue()) &&
1931 getZeroExtendExpr(AR, ExtTy) ==
1932 getAddRecExpr(getZeroExtendExpr(AR->getStart(), ExtTy),
1933 getZeroExtendExpr(Step, ExtTy),
1934 AR->getLoop())) {
1935 SmallVector<const SCEV *, 4> Operands;
1936 for (unsigned i = 0, e = AR->getNumOperands(); i != e; ++i)
1937 Operands.push_back(getUDivExpr(AR->getOperand(i), RHS));
1938 return getAddRecExpr(Operands, AR->getLoop());
Dan Gohman185cf032009-05-08 20:18:49 +00001939 }
Dan Gohmanddb3eaf2010-04-22 01:35:11 +00001940 // (A*B)/C --> A*(B/C) if safe and B/C can be folded.
1941 if (const SCEVMulExpr *M = dyn_cast<SCEVMulExpr>(LHS)) {
1942 SmallVector<const SCEV *, 4> Operands;
1943 for (unsigned i = 0, e = M->getNumOperands(); i != e; ++i)
1944 Operands.push_back(getZeroExtendExpr(M->getOperand(i), ExtTy));
1945 if (getZeroExtendExpr(M, ExtTy) == getMulExpr(Operands))
1946 // Find an operand that's safely divisible.
1947 for (unsigned i = 0, e = M->getNumOperands(); i != e; ++i) {
1948 const SCEV *Op = M->getOperand(i);
1949 const SCEV *Div = getUDivExpr(Op, RHSC);
1950 if (!isa<SCEVUDivExpr>(Div) && getMulExpr(Div, RHSC) == Op) {
1951 Operands = SmallVector<const SCEV *, 4>(M->op_begin(),
1952 M->op_end());
1953 Operands[i] = Div;
1954 return getMulExpr(Operands);
1955 }
1956 }
Dan Gohman185cf032009-05-08 20:18:49 +00001957 }
Dan Gohmanddb3eaf2010-04-22 01:35:11 +00001958 // (A+B)/C --> (A/C + B/C) if safe and A/C and B/C can be folded.
1959 if (const SCEVAddRecExpr *A = dyn_cast<SCEVAddRecExpr>(LHS)) {
1960 SmallVector<const SCEV *, 4> Operands;
1961 for (unsigned i = 0, e = A->getNumOperands(); i != e; ++i)
1962 Operands.push_back(getZeroExtendExpr(A->getOperand(i), ExtTy));
1963 if (getZeroExtendExpr(A, ExtTy) == getAddExpr(Operands)) {
1964 Operands.clear();
1965 for (unsigned i = 0, e = A->getNumOperands(); i != e; ++i) {
1966 const SCEV *Op = getUDivExpr(A->getOperand(i), RHS);
1967 if (isa<SCEVUDivExpr>(Op) ||
1968 getMulExpr(Op, RHS) != A->getOperand(i))
1969 break;
1970 Operands.push_back(Op);
1971 }
1972 if (Operands.size() == A->getNumOperands())
1973 return getAddExpr(Operands);
1974 }
1975 }
Dan Gohman185cf032009-05-08 20:18:49 +00001976
Dan Gohmanddb3eaf2010-04-22 01:35:11 +00001977 // Fold if both operands are constant.
1978 if (const SCEVConstant *LHSC = dyn_cast<SCEVConstant>(LHS)) {
1979 Constant *LHSCV = LHSC->getValue();
1980 Constant *RHSCV = RHSC->getValue();
1981 return getConstant(cast<ConstantInt>(ConstantExpr::getUDiv(LHSCV,
1982 RHSCV)));
1983 }
Chris Lattner53e677a2004-04-02 20:23:17 +00001984 }
1985 }
1986
Dan Gohman1c343752009-06-27 21:21:31 +00001987 FoldingSetNodeID ID;
1988 ID.AddInteger(scUDivExpr);
1989 ID.AddPointer(LHS);
1990 ID.AddPointer(RHS);
1991 void *IP = 0;
1992 if (const SCEV *S = UniqueSCEVs.FindNodeOrInsertPos(ID, IP)) return S;
Dan Gohman95531882010-03-18 18:49:47 +00001993 SCEV *S = new (SCEVAllocator) SCEVUDivExpr(ID.Intern(SCEVAllocator),
1994 LHS, RHS);
Dan Gohman1c343752009-06-27 21:21:31 +00001995 UniqueSCEVs.InsertNode(S, IP);
1996 return S;
Chris Lattner53e677a2004-04-02 20:23:17 +00001997}
1998
1999
Dan Gohman6c0866c2009-05-24 23:45:28 +00002000/// getAddRecExpr - Get an add recurrence expression for the specified loop.
2001/// Simplify the expression as much as possible.
Dan Gohman0bba49c2009-07-07 17:06:11 +00002002const SCEV *ScalarEvolution::getAddRecExpr(const SCEV *Start,
Dan Gohman3645b012009-10-09 00:10:36 +00002003 const SCEV *Step, const Loop *L,
2004 bool HasNUW, bool HasNSW) {
Dan Gohman0bba49c2009-07-07 17:06:11 +00002005 SmallVector<const SCEV *, 4> Operands;
Chris Lattner53e677a2004-04-02 20:23:17 +00002006 Operands.push_back(Start);
Dan Gohman622ed672009-05-04 22:02:23 +00002007 if (const SCEVAddRecExpr *StepChrec = dyn_cast<SCEVAddRecExpr>(Step))
Chris Lattner53e677a2004-04-02 20:23:17 +00002008 if (StepChrec->getLoop() == L) {
Dan Gohman403a8cd2010-06-21 19:47:52 +00002009 Operands.append(StepChrec->op_begin(), StepChrec->op_end());
Dan Gohman246b2562007-10-22 18:31:58 +00002010 return getAddRecExpr(Operands, L);
Chris Lattner53e677a2004-04-02 20:23:17 +00002011 }
2012
2013 Operands.push_back(Step);
Dan Gohman3645b012009-10-09 00:10:36 +00002014 return getAddRecExpr(Operands, L, HasNUW, HasNSW);
Chris Lattner53e677a2004-04-02 20:23:17 +00002015}
2016
Dan Gohman6c0866c2009-05-24 23:45:28 +00002017/// getAddRecExpr - Get an add recurrence expression for the specified loop.
2018/// Simplify the expression as much as possible.
Dan Gohman64a845e2009-06-24 04:48:43 +00002019const SCEV *
Dan Gohman0bba49c2009-07-07 17:06:11 +00002020ScalarEvolution::getAddRecExpr(SmallVectorImpl<const SCEV *> &Operands,
Dan Gohman3645b012009-10-09 00:10:36 +00002021 const Loop *L,
2022 bool HasNUW, bool HasNSW) {
Chris Lattner53e677a2004-04-02 20:23:17 +00002023 if (Operands.size() == 1) return Operands[0];
Dan Gohmanf78a9782009-05-18 15:44:58 +00002024#ifndef NDEBUG
Dan Gohmanc4f77982010-08-16 16:13:54 +00002025 const Type *ETy = getEffectiveSCEVType(Operands[0]->getType());
Dan Gohmanf78a9782009-05-18 15:44:58 +00002026 for (unsigned i = 1, e = Operands.size(); i != e; ++i)
Dan Gohmanc4f77982010-08-16 16:13:54 +00002027 assert(getEffectiveSCEVType(Operands[i]->getType()) == ETy &&
Dan Gohmanf78a9782009-05-18 15:44:58 +00002028 "SCEVAddRecExpr operand types don't match!");
2029#endif
Chris Lattner53e677a2004-04-02 20:23:17 +00002030
Dan Gohmancfeb6a42008-06-18 16:23:07 +00002031 if (Operands.back()->isZero()) {
2032 Operands.pop_back();
Dan Gohman3645b012009-10-09 00:10:36 +00002033 return getAddRecExpr(Operands, L, HasNUW, HasNSW); // {X,+,0} --> X
Dan Gohmancfeb6a42008-06-18 16:23:07 +00002034 }
Chris Lattner53e677a2004-04-02 20:23:17 +00002035
Dan Gohmanbc028532010-02-19 18:49:22 +00002036 // It's tempting to want to call getMaxBackedgeTakenCount count here and
2037 // use that information to infer NUW and NSW flags. However, computing a
2038 // BE count requires calling getAddRecExpr, so we may not yet have a
2039 // meaningful BE count at this point (and if we don't, we'd be stuck
2040 // with a SCEVCouldNotCompute as the cached BE count).
2041
Dan Gohmana10756e2010-01-21 02:09:26 +00002042 // If HasNSW is true and all the operands are non-negative, infer HasNUW.
2043 if (!HasNUW && HasNSW) {
2044 bool All = true;
Dan Gohman2d16fc52010-08-16 16:27:53 +00002045 for (SmallVectorImpl<const SCEV *>::const_iterator I = Operands.begin(),
2046 E = Operands.end(); I != E; ++I)
2047 if (!isKnownNonNegative(*I)) {
Dan Gohmana10756e2010-01-21 02:09:26 +00002048 All = false;
2049 break;
2050 }
2051 if (All) HasNUW = true;
2052 }
2053
Dan Gohmand9cc7492008-08-08 18:33:12 +00002054 // Canonicalize nested AddRecs in by nesting them in order of loop depth.
Dan Gohman622ed672009-05-04 22:02:23 +00002055 if (const SCEVAddRecExpr *NestedAR = dyn_cast<SCEVAddRecExpr>(Operands[0])) {
Dan Gohman5d984912009-12-18 01:14:11 +00002056 const Loop *NestedLoop = NestedAR->getLoop();
Dan Gohman9cba9782010-08-13 20:23:25 +00002057 if (L->contains(NestedLoop) ?
Dan Gohmana10756e2010-01-21 02:09:26 +00002058 (L->getLoopDepth() < NestedLoop->getLoopDepth()) :
Dan Gohman9cba9782010-08-13 20:23:25 +00002059 (!NestedLoop->contains(L) &&
Dan Gohmana10756e2010-01-21 02:09:26 +00002060 DT->dominates(L->getHeader(), NestedLoop->getHeader()))) {
Dan Gohman0bba49c2009-07-07 17:06:11 +00002061 SmallVector<const SCEV *, 4> NestedOperands(NestedAR->op_begin(),
Dan Gohman5d984912009-12-18 01:14:11 +00002062 NestedAR->op_end());
Dan Gohmand9cc7492008-08-08 18:33:12 +00002063 Operands[0] = NestedAR->getStart();
Dan Gohman9a80b452009-06-26 22:36:20 +00002064 // AddRecs require their operands be loop-invariant with respect to their
2065 // loops. Don't perform this transformation if it would break this
2066 // requirement.
2067 bool AllInvariant = true;
2068 for (unsigned i = 0, e = Operands.size(); i != e; ++i)
2069 if (!Operands[i]->isLoopInvariant(L)) {
2070 AllInvariant = false;
2071 break;
2072 }
2073 if (AllInvariant) {
2074 NestedOperands[0] = getAddRecExpr(Operands, L);
2075 AllInvariant = true;
2076 for (unsigned i = 0, e = NestedOperands.size(); i != e; ++i)
2077 if (!NestedOperands[i]->isLoopInvariant(NestedLoop)) {
2078 AllInvariant = false;
2079 break;
2080 }
2081 if (AllInvariant)
2082 // Ok, both add recurrences are valid after the transformation.
Dan Gohman3645b012009-10-09 00:10:36 +00002083 return getAddRecExpr(NestedOperands, NestedLoop, HasNUW, HasNSW);
Dan Gohman9a80b452009-06-26 22:36:20 +00002084 }
2085 // Reset Operands to its original state.
2086 Operands[0] = NestedAR;
Dan Gohmand9cc7492008-08-08 18:33:12 +00002087 }
2088 }
2089
Dan Gohman67847532010-01-19 22:27:22 +00002090 // Okay, it looks like we really DO need an addrec expr. Check to see if we
2091 // already have one, otherwise create a new one.
Dan Gohman1c343752009-06-27 21:21:31 +00002092 FoldingSetNodeID ID;
2093 ID.AddInteger(scAddRecExpr);
2094 ID.AddInteger(Operands.size());
2095 for (unsigned i = 0, e = Operands.size(); i != e; ++i)
2096 ID.AddPointer(Operands[i]);
2097 ID.AddPointer(L);
2098 void *IP = 0;
Dan Gohmana10756e2010-01-21 02:09:26 +00002099 SCEVAddRecExpr *S =
2100 static_cast<SCEVAddRecExpr *>(UniqueSCEVs.FindNodeOrInsertPos(ID, IP));
2101 if (!S) {
Dan Gohmanf9e64722010-03-18 01:17:13 +00002102 const SCEV **O = SCEVAllocator.Allocate<const SCEV *>(Operands.size());
2103 std::uninitialized_copy(Operands.begin(), Operands.end(), O);
Dan Gohman95531882010-03-18 18:49:47 +00002104 S = new (SCEVAllocator) SCEVAddRecExpr(ID.Intern(SCEVAllocator),
2105 O, Operands.size(), L);
Dan Gohmana10756e2010-01-21 02:09:26 +00002106 UniqueSCEVs.InsertNode(S, IP);
2107 }
Dan Gohman3645b012009-10-09 00:10:36 +00002108 if (HasNUW) S->setHasNoUnsignedWrap(true);
2109 if (HasNSW) S->setHasNoSignedWrap(true);
Dan Gohman1c343752009-06-27 21:21:31 +00002110 return S;
Chris Lattner53e677a2004-04-02 20:23:17 +00002111}
2112
Dan Gohman9311ef62009-06-24 14:49:00 +00002113const SCEV *ScalarEvolution::getSMaxExpr(const SCEV *LHS,
2114 const SCEV *RHS) {
Dan Gohman0bba49c2009-07-07 17:06:11 +00002115 SmallVector<const SCEV *, 2> Ops;
Nick Lewyckyc54c5612007-11-25 22:41:31 +00002116 Ops.push_back(LHS);
2117 Ops.push_back(RHS);
2118 return getSMaxExpr(Ops);
2119}
2120
Dan Gohman0bba49c2009-07-07 17:06:11 +00002121const SCEV *
2122ScalarEvolution::getSMaxExpr(SmallVectorImpl<const SCEV *> &Ops) {
Nick Lewyckyc54c5612007-11-25 22:41:31 +00002123 assert(!Ops.empty() && "Cannot get empty smax!");
2124 if (Ops.size() == 1) return Ops[0];
Dan Gohmanf78a9782009-05-18 15:44:58 +00002125#ifndef NDEBUG
Dan Gohmanc4f77982010-08-16 16:13:54 +00002126 const Type *ETy = getEffectiveSCEVType(Ops[0]->getType());
Dan Gohmanf78a9782009-05-18 15:44:58 +00002127 for (unsigned i = 1, e = Ops.size(); i != e; ++i)
Dan Gohmanc4f77982010-08-16 16:13:54 +00002128 assert(getEffectiveSCEVType(Ops[i]->getType()) == ETy &&
Dan Gohmanf78a9782009-05-18 15:44:58 +00002129 "SCEVSMaxExpr operand types don't match!");
2130#endif
Nick Lewyckyc54c5612007-11-25 22:41:31 +00002131
2132 // Sort by complexity, this groups all similar expression types together.
Dan Gohman72861302009-05-07 14:39:04 +00002133 GroupByComplexity(Ops, LI);
Nick Lewyckyc54c5612007-11-25 22:41:31 +00002134
2135 // If there are any constants, fold them together.
2136 unsigned Idx = 0;
Dan Gohman622ed672009-05-04 22:02:23 +00002137 if (const SCEVConstant *LHSC = dyn_cast<SCEVConstant>(Ops[0])) {
Nick Lewyckyc54c5612007-11-25 22:41:31 +00002138 ++Idx;
2139 assert(Idx < Ops.size());
Dan Gohman622ed672009-05-04 22:02:23 +00002140 while (const SCEVConstant *RHSC = dyn_cast<SCEVConstant>(Ops[Idx])) {
Nick Lewyckyc54c5612007-11-25 22:41:31 +00002141 // We found two constants, fold them together!
Owen Andersoneed707b2009-07-24 23:12:02 +00002142 ConstantInt *Fold = ConstantInt::get(getContext(),
Nick Lewyckyc54c5612007-11-25 22:41:31 +00002143 APIntOps::smax(LHSC->getValue()->getValue(),
2144 RHSC->getValue()->getValue()));
Nick Lewycky3e630762008-02-20 06:48:22 +00002145 Ops[0] = getConstant(Fold);
2146 Ops.erase(Ops.begin()+1); // Erase the folded element
2147 if (Ops.size() == 1) return Ops[0];
2148 LHSC = cast<SCEVConstant>(Ops[0]);
Nick Lewyckyc54c5612007-11-25 22:41:31 +00002149 }
2150
Dan Gohmane5aceed2009-06-24 14:46:22 +00002151 // If we are left with a constant minimum-int, strip it off.
Nick Lewyckyc54c5612007-11-25 22:41:31 +00002152 if (cast<SCEVConstant>(Ops[0])->getValue()->isMinValue(true)) {
2153 Ops.erase(Ops.begin());
2154 --Idx;
Dan Gohmane5aceed2009-06-24 14:46:22 +00002155 } else if (cast<SCEVConstant>(Ops[0])->getValue()->isMaxValue(true)) {
2156 // If we have an smax with a constant maximum-int, it will always be
2157 // maximum-int.
2158 return Ops[0];
Nick Lewyckyc54c5612007-11-25 22:41:31 +00002159 }
Nick Lewyckyc54c5612007-11-25 22:41:31 +00002160
Dan Gohman3ab13122010-04-13 16:49:23 +00002161 if (Ops.size() == 1) return Ops[0];
2162 }
Nick Lewyckyc54c5612007-11-25 22:41:31 +00002163
2164 // Find the first SMax
2165 while (Idx < Ops.size() && Ops[Idx]->getSCEVType() < scSMaxExpr)
2166 ++Idx;
2167
2168 // Check to see if one of the operands is an SMax. If so, expand its operands
2169 // onto our operand list, and recurse to simplify.
2170 if (Idx < Ops.size()) {
2171 bool DeletedSMax = false;
Dan Gohman622ed672009-05-04 22:02:23 +00002172 while (const SCEVSMaxExpr *SMax = dyn_cast<SCEVSMaxExpr>(Ops[Idx])) {
Nick Lewyckyc54c5612007-11-25 22:41:31 +00002173 Ops.erase(Ops.begin()+Idx);
Dan Gohman403a8cd2010-06-21 19:47:52 +00002174 Ops.append(SMax->op_begin(), SMax->op_end());
Nick Lewyckyc54c5612007-11-25 22:41:31 +00002175 DeletedSMax = true;
2176 }
2177
2178 if (DeletedSMax)
2179 return getSMaxExpr(Ops);
2180 }
2181
2182 // Okay, check to see if the same value occurs in the operand list twice. If
2183 // so, delete one. Since we sorted the list, these values are required to
2184 // be adjacent.
2185 for (unsigned i = 0, e = Ops.size()-1; i != e; ++i)
Dan Gohman28287792010-04-13 16:51:03 +00002186 // X smax Y smax Y --> X smax Y
2187 // X smax Y --> X, if X is always greater than Y
2188 if (Ops[i] == Ops[i+1] ||
2189 isKnownPredicate(ICmpInst::ICMP_SGE, Ops[i], Ops[i+1])) {
2190 Ops.erase(Ops.begin()+i+1, Ops.begin()+i+2);
2191 --i; --e;
2192 } else if (isKnownPredicate(ICmpInst::ICMP_SLE, Ops[i], Ops[i+1])) {
Nick Lewyckyc54c5612007-11-25 22:41:31 +00002193 Ops.erase(Ops.begin()+i, Ops.begin()+i+1);
2194 --i; --e;
2195 }
2196
2197 if (Ops.size() == 1) return Ops[0];
2198
2199 assert(!Ops.empty() && "Reduced smax down to nothing!");
2200
Nick Lewycky3e630762008-02-20 06:48:22 +00002201 // Okay, it looks like we really DO need an smax expr. Check to see if we
Nick Lewyckyc54c5612007-11-25 22:41:31 +00002202 // already have one, otherwise create a new one.
Dan Gohman1c343752009-06-27 21:21:31 +00002203 FoldingSetNodeID ID;
2204 ID.AddInteger(scSMaxExpr);
2205 ID.AddInteger(Ops.size());
2206 for (unsigned i = 0, e = Ops.size(); i != e; ++i)
2207 ID.AddPointer(Ops[i]);
2208 void *IP = 0;
2209 if (const SCEV *S = UniqueSCEVs.FindNodeOrInsertPos(ID, IP)) return S;
Dan Gohmanf9e64722010-03-18 01:17:13 +00002210 const SCEV **O = SCEVAllocator.Allocate<const SCEV *>(Ops.size());
2211 std::uninitialized_copy(Ops.begin(), Ops.end(), O);
Dan Gohman95531882010-03-18 18:49:47 +00002212 SCEV *S = new (SCEVAllocator) SCEVSMaxExpr(ID.Intern(SCEVAllocator),
2213 O, Ops.size());
Dan Gohman1c343752009-06-27 21:21:31 +00002214 UniqueSCEVs.InsertNode(S, IP);
2215 return S;
Nick Lewyckyc54c5612007-11-25 22:41:31 +00002216}
2217
Dan Gohman9311ef62009-06-24 14:49:00 +00002218const SCEV *ScalarEvolution::getUMaxExpr(const SCEV *LHS,
2219 const SCEV *RHS) {
Dan Gohman0bba49c2009-07-07 17:06:11 +00002220 SmallVector<const SCEV *, 2> Ops;
Nick Lewycky3e630762008-02-20 06:48:22 +00002221 Ops.push_back(LHS);
2222 Ops.push_back(RHS);
2223 return getUMaxExpr(Ops);
2224}
2225
Dan Gohman0bba49c2009-07-07 17:06:11 +00002226const SCEV *
2227ScalarEvolution::getUMaxExpr(SmallVectorImpl<const SCEV *> &Ops) {
Nick Lewycky3e630762008-02-20 06:48:22 +00002228 assert(!Ops.empty() && "Cannot get empty umax!");
2229 if (Ops.size() == 1) return Ops[0];
Dan Gohmanf78a9782009-05-18 15:44:58 +00002230#ifndef NDEBUG
Dan Gohmanc4f77982010-08-16 16:13:54 +00002231 const Type *ETy = getEffectiveSCEVType(Ops[0]->getType());
Dan Gohmanf78a9782009-05-18 15:44:58 +00002232 for (unsigned i = 1, e = Ops.size(); i != e; ++i)
Dan Gohmanc4f77982010-08-16 16:13:54 +00002233 assert(getEffectiveSCEVType(Ops[i]->getType()) == ETy &&
Dan Gohmanf78a9782009-05-18 15:44:58 +00002234 "SCEVUMaxExpr operand types don't match!");
2235#endif
Nick Lewycky3e630762008-02-20 06:48:22 +00002236
2237 // Sort by complexity, this groups all similar expression types together.
Dan Gohman72861302009-05-07 14:39:04 +00002238 GroupByComplexity(Ops, LI);
Nick Lewycky3e630762008-02-20 06:48:22 +00002239
2240 // If there are any constants, fold them together.
2241 unsigned Idx = 0;
Dan Gohman622ed672009-05-04 22:02:23 +00002242 if (const SCEVConstant *LHSC = dyn_cast<SCEVConstant>(Ops[0])) {
Nick Lewycky3e630762008-02-20 06:48:22 +00002243 ++Idx;
2244 assert(Idx < Ops.size());
Dan Gohman622ed672009-05-04 22:02:23 +00002245 while (const SCEVConstant *RHSC = dyn_cast<SCEVConstant>(Ops[Idx])) {
Nick Lewycky3e630762008-02-20 06:48:22 +00002246 // We found two constants, fold them together!
Owen Andersoneed707b2009-07-24 23:12:02 +00002247 ConstantInt *Fold = ConstantInt::get(getContext(),
Nick Lewycky3e630762008-02-20 06:48:22 +00002248 APIntOps::umax(LHSC->getValue()->getValue(),
2249 RHSC->getValue()->getValue()));
2250 Ops[0] = getConstant(Fold);
2251 Ops.erase(Ops.begin()+1); // Erase the folded element
2252 if (Ops.size() == 1) return Ops[0];
2253 LHSC = cast<SCEVConstant>(Ops[0]);
2254 }
2255
Dan Gohmane5aceed2009-06-24 14:46:22 +00002256 // If we are left with a constant minimum-int, strip it off.
Nick Lewycky3e630762008-02-20 06:48:22 +00002257 if (cast<SCEVConstant>(Ops[0])->getValue()->isMinValue(false)) {
2258 Ops.erase(Ops.begin());
2259 --Idx;
Dan Gohmane5aceed2009-06-24 14:46:22 +00002260 } else if (cast<SCEVConstant>(Ops[0])->getValue()->isMaxValue(false)) {
2261 // If we have an umax with a constant maximum-int, it will always be
2262 // maximum-int.
2263 return Ops[0];
Nick Lewycky3e630762008-02-20 06:48:22 +00002264 }
Nick Lewycky3e630762008-02-20 06:48:22 +00002265
Dan Gohman3ab13122010-04-13 16:49:23 +00002266 if (Ops.size() == 1) return Ops[0];
2267 }
Nick Lewycky3e630762008-02-20 06:48:22 +00002268
2269 // Find the first UMax
2270 while (Idx < Ops.size() && Ops[Idx]->getSCEVType() < scUMaxExpr)
2271 ++Idx;
2272
2273 // Check to see if one of the operands is a UMax. If so, expand its operands
2274 // onto our operand list, and recurse to simplify.
2275 if (Idx < Ops.size()) {
2276 bool DeletedUMax = false;
Dan Gohman622ed672009-05-04 22:02:23 +00002277 while (const SCEVUMaxExpr *UMax = dyn_cast<SCEVUMaxExpr>(Ops[Idx])) {
Nick Lewycky3e630762008-02-20 06:48:22 +00002278 Ops.erase(Ops.begin()+Idx);
Dan Gohman403a8cd2010-06-21 19:47:52 +00002279 Ops.append(UMax->op_begin(), UMax->op_end());
Nick Lewycky3e630762008-02-20 06:48:22 +00002280 DeletedUMax = true;
2281 }
2282
2283 if (DeletedUMax)
2284 return getUMaxExpr(Ops);
2285 }
2286
2287 // Okay, check to see if the same value occurs in the operand list twice. If
2288 // so, delete one. Since we sorted the list, these values are required to
2289 // be adjacent.
2290 for (unsigned i = 0, e = Ops.size()-1; i != e; ++i)
Dan Gohman28287792010-04-13 16:51:03 +00002291 // X umax Y umax Y --> X umax Y
2292 // X umax Y --> X, if X is always greater than Y
2293 if (Ops[i] == Ops[i+1] ||
2294 isKnownPredicate(ICmpInst::ICMP_UGE, Ops[i], Ops[i+1])) {
2295 Ops.erase(Ops.begin()+i+1, Ops.begin()+i+2);
2296 --i; --e;
2297 } else if (isKnownPredicate(ICmpInst::ICMP_ULE, Ops[i], Ops[i+1])) {
Nick Lewycky3e630762008-02-20 06:48:22 +00002298 Ops.erase(Ops.begin()+i, Ops.begin()+i+1);
2299 --i; --e;
2300 }
2301
2302 if (Ops.size() == 1) return Ops[0];
2303
2304 assert(!Ops.empty() && "Reduced umax down to nothing!");
2305
2306 // Okay, it looks like we really DO need a umax expr. Check to see if we
2307 // already have one, otherwise create a new one.
Dan Gohman1c343752009-06-27 21:21:31 +00002308 FoldingSetNodeID ID;
2309 ID.AddInteger(scUMaxExpr);
2310 ID.AddInteger(Ops.size());
2311 for (unsigned i = 0, e = Ops.size(); i != e; ++i)
2312 ID.AddPointer(Ops[i]);
2313 void *IP = 0;
2314 if (const SCEV *S = UniqueSCEVs.FindNodeOrInsertPos(ID, IP)) return S;
Dan Gohmanf9e64722010-03-18 01:17:13 +00002315 const SCEV **O = SCEVAllocator.Allocate<const SCEV *>(Ops.size());
2316 std::uninitialized_copy(Ops.begin(), Ops.end(), O);
Dan Gohman95531882010-03-18 18:49:47 +00002317 SCEV *S = new (SCEVAllocator) SCEVUMaxExpr(ID.Intern(SCEVAllocator),
2318 O, Ops.size());
Dan Gohman1c343752009-06-27 21:21:31 +00002319 UniqueSCEVs.InsertNode(S, IP);
2320 return S;
Nick Lewycky3e630762008-02-20 06:48:22 +00002321}
2322
Dan Gohman9311ef62009-06-24 14:49:00 +00002323const SCEV *ScalarEvolution::getSMinExpr(const SCEV *LHS,
2324 const SCEV *RHS) {
Dan Gohmanf9a9a992009-06-22 03:18:45 +00002325 // ~smax(~x, ~y) == smin(x, y).
2326 return getNotSCEV(getSMaxExpr(getNotSCEV(LHS), getNotSCEV(RHS)));
2327}
2328
Dan Gohman9311ef62009-06-24 14:49:00 +00002329const SCEV *ScalarEvolution::getUMinExpr(const SCEV *LHS,
2330 const SCEV *RHS) {
Dan Gohmanf9a9a992009-06-22 03:18:45 +00002331 // ~umax(~x, ~y) == umin(x, y)
2332 return getNotSCEV(getUMaxExpr(getNotSCEV(LHS), getNotSCEV(RHS)));
2333}
2334
Dan Gohman4f8eea82010-02-01 18:27:38 +00002335const SCEV *ScalarEvolution::getSizeOfExpr(const Type *AllocTy) {
Dan Gohman6ab10f62010-04-12 23:03:26 +00002336 // If we have TargetData, we can bypass creating a target-independent
2337 // constant expression and then folding it back into a ConstantInt.
2338 // This is just a compile-time optimization.
2339 if (TD)
2340 return getConstant(TD->getIntPtrType(getContext()),
2341 TD->getTypeAllocSize(AllocTy));
2342
Dan Gohman4f8eea82010-02-01 18:27:38 +00002343 Constant *C = ConstantExpr::getSizeOf(AllocTy);
2344 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C))
Dan Gohman70001222010-05-28 16:12:08 +00002345 if (Constant *Folded = ConstantFoldConstantExpression(CE, TD))
2346 C = Folded;
Dan Gohman4f8eea82010-02-01 18:27:38 +00002347 const Type *Ty = getEffectiveSCEVType(PointerType::getUnqual(AllocTy));
2348 return getTruncateOrZeroExtend(getSCEV(C), Ty);
2349}
2350
2351const SCEV *ScalarEvolution::getAlignOfExpr(const Type *AllocTy) {
2352 Constant *C = ConstantExpr::getAlignOf(AllocTy);
2353 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C))
Dan Gohman70001222010-05-28 16:12:08 +00002354 if (Constant *Folded = ConstantFoldConstantExpression(CE, TD))
2355 C = Folded;
Dan Gohman4f8eea82010-02-01 18:27:38 +00002356 const Type *Ty = getEffectiveSCEVType(PointerType::getUnqual(AllocTy));
2357 return getTruncateOrZeroExtend(getSCEV(C), Ty);
2358}
2359
2360const SCEV *ScalarEvolution::getOffsetOfExpr(const StructType *STy,
2361 unsigned FieldNo) {
Dan Gohman6ab10f62010-04-12 23:03:26 +00002362 // If we have TargetData, we can bypass creating a target-independent
2363 // constant expression and then folding it back into a ConstantInt.
2364 // This is just a compile-time optimization.
2365 if (TD)
2366 return getConstant(TD->getIntPtrType(getContext()),
2367 TD->getStructLayout(STy)->getElementOffset(FieldNo));
2368
Dan Gohman0f5efe52010-01-28 02:15:55 +00002369 Constant *C = ConstantExpr::getOffsetOf(STy, FieldNo);
2370 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C))
Dan Gohman70001222010-05-28 16:12:08 +00002371 if (Constant *Folded = ConstantFoldConstantExpression(CE, TD))
2372 C = Folded;
Dan Gohmanc40f17b2009-08-18 16:46:41 +00002373 const Type *Ty = getEffectiveSCEVType(PointerType::getUnqual(STy));
Dan Gohman0f5efe52010-01-28 02:15:55 +00002374 return getTruncateOrZeroExtend(getSCEV(C), Ty);
Dan Gohmanc40f17b2009-08-18 16:46:41 +00002375}
2376
Dan Gohman4f8eea82010-02-01 18:27:38 +00002377const SCEV *ScalarEvolution::getOffsetOfExpr(const Type *CTy,
2378 Constant *FieldNo) {
2379 Constant *C = ConstantExpr::getOffsetOf(CTy, FieldNo);
Dan Gohman0f5efe52010-01-28 02:15:55 +00002380 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C))
Dan Gohman70001222010-05-28 16:12:08 +00002381 if (Constant *Folded = ConstantFoldConstantExpression(CE, TD))
2382 C = Folded;
Dan Gohman4f8eea82010-02-01 18:27:38 +00002383 const Type *Ty = getEffectiveSCEVType(PointerType::getUnqual(CTy));
Dan Gohman0f5efe52010-01-28 02:15:55 +00002384 return getTruncateOrZeroExtend(getSCEV(C), Ty);
Dan Gohmanc40f17b2009-08-18 16:46:41 +00002385}
2386
Dan Gohman0bba49c2009-07-07 17:06:11 +00002387const SCEV *ScalarEvolution::getUnknown(Value *V) {
Dan Gohman6bbcba12009-06-24 00:54:57 +00002388 // Don't attempt to do anything other than create a SCEVUnknown object
2389 // here. createSCEV only calls getUnknown after checking for all other
2390 // interesting possibilities, and any other code that calls getUnknown
2391 // is doing so in order to hide a value from SCEV canonicalization.
2392
Dan Gohman1c343752009-06-27 21:21:31 +00002393 FoldingSetNodeID ID;
2394 ID.AddInteger(scUnknown);
2395 ID.AddPointer(V);
2396 void *IP = 0;
Dan Gohmanab37f502010-08-02 23:49:30 +00002397 if (SCEV *S = UniqueSCEVs.FindNodeOrInsertPos(ID, IP)) {
2398 assert(cast<SCEVUnknown>(S)->getValue() == V &&
2399 "Stale SCEVUnknown in uniquing map!");
2400 return S;
2401 }
2402 SCEV *S = new (SCEVAllocator) SCEVUnknown(ID.Intern(SCEVAllocator), V, this,
2403 FirstUnknown);
2404 FirstUnknown = cast<SCEVUnknown>(S);
Dan Gohman1c343752009-06-27 21:21:31 +00002405 UniqueSCEVs.InsertNode(S, IP);
2406 return S;
Chris Lattner0a7f98c2004-04-15 15:07:24 +00002407}
2408
Chris Lattner53e677a2004-04-02 20:23:17 +00002409//===----------------------------------------------------------------------===//
Chris Lattner53e677a2004-04-02 20:23:17 +00002410// Basic SCEV Analysis and PHI Idiom Recognition Code
2411//
2412
Dan Gohmanaf79fb52009-04-21 01:07:12 +00002413/// isSCEVable - Test if values of the given type are analyzable within
2414/// the SCEV framework. This primarily includes integer types, and it
2415/// can optionally include pointer types if the ScalarEvolution class
2416/// has access to target-specific information.
Dan Gohmanf8a8be82009-04-21 23:15:49 +00002417bool ScalarEvolution::isSCEVable(const Type *Ty) const {
Dan Gohmanc40f17b2009-08-18 16:46:41 +00002418 // Integers and pointers are always SCEVable.
Duncan Sands1df98592010-02-16 11:11:14 +00002419 return Ty->isIntegerTy() || Ty->isPointerTy();
Dan Gohmanaf79fb52009-04-21 01:07:12 +00002420}
2421
2422/// getTypeSizeInBits - Return the size in bits of the specified type,
2423/// for which isSCEVable must return true.
Dan Gohmanf8a8be82009-04-21 23:15:49 +00002424uint64_t ScalarEvolution::getTypeSizeInBits(const Type *Ty) const {
Dan Gohmanaf79fb52009-04-21 01:07:12 +00002425 assert(isSCEVable(Ty) && "Type is not SCEVable!");
2426
2427 // If we have a TargetData, use it!
2428 if (TD)
2429 return TD->getTypeSizeInBits(Ty);
2430
Dan Gohmanc40f17b2009-08-18 16:46:41 +00002431 // Integer types have fixed sizes.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002432 if (Ty->isIntegerTy())
Dan Gohmanc40f17b2009-08-18 16:46:41 +00002433 return Ty->getPrimitiveSizeInBits();
2434
2435 // The only other support type is pointer. Without TargetData, conservatively
2436 // assume pointers are 64-bit.
Duncan Sands1df98592010-02-16 11:11:14 +00002437 assert(Ty->isPointerTy() && "isSCEVable permitted a non-SCEVable type!");
Dan Gohmanc40f17b2009-08-18 16:46:41 +00002438 return 64;
Dan Gohmanaf79fb52009-04-21 01:07:12 +00002439}
2440
2441/// getEffectiveSCEVType - Return a type with the same bitwidth as
2442/// the given type and which represents how SCEV will treat the given
2443/// type, for which isSCEVable must return true. For pointer types,
2444/// this is the pointer-sized integer type.
Dan Gohmanf8a8be82009-04-21 23:15:49 +00002445const Type *ScalarEvolution::getEffectiveSCEVType(const Type *Ty) const {
Dan Gohmanaf79fb52009-04-21 01:07:12 +00002446 assert(isSCEVable(Ty) && "Type is not SCEVable!");
2447
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002448 if (Ty->isIntegerTy())
Dan Gohmanaf79fb52009-04-21 01:07:12 +00002449 return Ty;
2450
Dan Gohmanc40f17b2009-08-18 16:46:41 +00002451 // The only other support type is pointer.
Duncan Sands1df98592010-02-16 11:11:14 +00002452 assert(Ty->isPointerTy() && "Unexpected non-pointer non-integer type!");
Dan Gohmanc40f17b2009-08-18 16:46:41 +00002453 if (TD) return TD->getIntPtrType(getContext());
2454
2455 // Without TargetData, conservatively assume pointers are 64-bit.
2456 return Type::getInt64Ty(getContext());
Dan Gohman2d1be872009-04-16 03:18:22 +00002457}
Chris Lattner53e677a2004-04-02 20:23:17 +00002458
Dan Gohman0bba49c2009-07-07 17:06:11 +00002459const SCEV *ScalarEvolution::getCouldNotCompute() {
Dan Gohman1c343752009-06-27 21:21:31 +00002460 return &CouldNotCompute;
Dan Gohmanf4ccfcb2009-04-18 17:58:19 +00002461}
2462
Chris Lattner53e677a2004-04-02 20:23:17 +00002463/// getSCEV - Return an existing SCEV if it exists, otherwise analyze the
2464/// expression and create a new one.
Dan Gohman0bba49c2009-07-07 17:06:11 +00002465const SCEV *ScalarEvolution::getSCEV(Value *V) {
Dan Gohmanaf79fb52009-04-21 01:07:12 +00002466 assert(isSCEVable(V->getType()) && "Value is not SCEVable!");
Chris Lattner53e677a2004-04-02 20:23:17 +00002467
Dan Gohman8d9c7a62010-08-16 16:30:01 +00002468 std::map<SCEVCallbackVH, const SCEV *>::const_iterator I = Scalars.find(V);
Chris Lattner53e677a2004-04-02 20:23:17 +00002469 if (I != Scalars.end()) return I->second;
Dan Gohman0bba49c2009-07-07 17:06:11 +00002470 const SCEV *S = createSCEV(V);
Dan Gohman619d3322010-08-16 16:31:39 +00002471
2472 // The process of creating a SCEV for V may have caused other SCEVs
2473 // to have been created, so it's necessary to insert the new entry
2474 // from scratch, rather than trying to remember the insert position
2475 // above.
Dan Gohman35738ac2009-05-04 22:30:44 +00002476 Scalars.insert(std::make_pair(SCEVCallbackVH(V, this), S));
Chris Lattner53e677a2004-04-02 20:23:17 +00002477 return S;
2478}
2479
Dan Gohman2d1be872009-04-16 03:18:22 +00002480/// getNegativeSCEV - Return a SCEV corresponding to -V = -1*V
2481///
Dan Gohman0bba49c2009-07-07 17:06:11 +00002482const SCEV *ScalarEvolution::getNegativeSCEV(const SCEV *V) {
Dan Gohman622ed672009-05-04 22:02:23 +00002483 if (const SCEVConstant *VC = dyn_cast<SCEVConstant>(V))
Owen Anderson0a5372e2009-07-13 04:09:18 +00002484 return getConstant(
Owen Andersonbaf3c402009-07-29 18:55:55 +00002485 cast<ConstantInt>(ConstantExpr::getNeg(VC->getValue())));
Dan Gohman2d1be872009-04-16 03:18:22 +00002486
2487 const Type *Ty = V->getType();
Dan Gohmanf8a8be82009-04-21 23:15:49 +00002488 Ty = getEffectiveSCEVType(Ty);
Owen Anderson73c6b712009-07-13 20:58:05 +00002489 return getMulExpr(V,
Owen Andersona7235ea2009-07-31 20:28:14 +00002490 getConstant(cast<ConstantInt>(Constant::getAllOnesValue(Ty))));
Dan Gohman2d1be872009-04-16 03:18:22 +00002491}
2492
2493/// getNotSCEV - Return a SCEV corresponding to ~V = -1-V
Dan Gohman0bba49c2009-07-07 17:06:11 +00002494const SCEV *ScalarEvolution::getNotSCEV(const SCEV *V) {
Dan Gohman622ed672009-05-04 22:02:23 +00002495 if (const SCEVConstant *VC = dyn_cast<SCEVConstant>(V))
Owen Anderson73c6b712009-07-13 20:58:05 +00002496 return getConstant(
Owen Andersonbaf3c402009-07-29 18:55:55 +00002497 cast<ConstantInt>(ConstantExpr::getNot(VC->getValue())));
Dan Gohman2d1be872009-04-16 03:18:22 +00002498
2499 const Type *Ty = V->getType();
Dan Gohmanf8a8be82009-04-21 23:15:49 +00002500 Ty = getEffectiveSCEVType(Ty);
Owen Anderson73c6b712009-07-13 20:58:05 +00002501 const SCEV *AllOnes =
Owen Andersona7235ea2009-07-31 20:28:14 +00002502 getConstant(cast<ConstantInt>(Constant::getAllOnesValue(Ty)));
Dan Gohman2d1be872009-04-16 03:18:22 +00002503 return getMinusSCEV(AllOnes, V);
2504}
2505
2506/// getMinusSCEV - Return a SCEV corresponding to LHS - RHS.
2507///
Dan Gohman9311ef62009-06-24 14:49:00 +00002508const SCEV *ScalarEvolution::getMinusSCEV(const SCEV *LHS,
2509 const SCEV *RHS) {
Dan Gohmaneb4152c2010-07-20 16:53:00 +00002510 // Fast path: X - X --> 0.
2511 if (LHS == RHS)
2512 return getConstant(LHS->getType(), 0);
2513
Dan Gohman2d1be872009-04-16 03:18:22 +00002514 // X - Y --> X + -Y
Dan Gohmanf8a8be82009-04-21 23:15:49 +00002515 return getAddExpr(LHS, getNegativeSCEV(RHS));
Dan Gohman2d1be872009-04-16 03:18:22 +00002516}
2517
2518/// getTruncateOrZeroExtend - Return a SCEV corresponding to a conversion of the
2519/// input value to the specified type. If the type must be extended, it is zero
2520/// extended.
Dan Gohman0bba49c2009-07-07 17:06:11 +00002521const SCEV *
2522ScalarEvolution::getTruncateOrZeroExtend(const SCEV *V,
Nick Lewycky5cd28fa2009-04-23 05:15:08 +00002523 const Type *Ty) {
Dan Gohman2d1be872009-04-16 03:18:22 +00002524 const Type *SrcTy = V->getType();
Duncan Sands1df98592010-02-16 11:11:14 +00002525 assert((SrcTy->isIntegerTy() || SrcTy->isPointerTy()) &&
2526 (Ty->isIntegerTy() || Ty->isPointerTy()) &&
Dan Gohman2d1be872009-04-16 03:18:22 +00002527 "Cannot truncate or zero extend with non-integer arguments!");
Dan Gohmanaf79fb52009-04-21 01:07:12 +00002528 if (getTypeSizeInBits(SrcTy) == getTypeSizeInBits(Ty))
Dan Gohman2d1be872009-04-16 03:18:22 +00002529 return V; // No conversion
Dan Gohmanaf79fb52009-04-21 01:07:12 +00002530 if (getTypeSizeInBits(SrcTy) > getTypeSizeInBits(Ty))
Dan Gohmanf8a8be82009-04-21 23:15:49 +00002531 return getTruncateExpr(V, Ty);
2532 return getZeroExtendExpr(V, Ty);
Dan Gohman2d1be872009-04-16 03:18:22 +00002533}
2534
2535/// getTruncateOrSignExtend - Return a SCEV corresponding to a conversion of the
2536/// input value to the specified type. If the type must be extended, it is sign
2537/// extended.
Dan Gohman0bba49c2009-07-07 17:06:11 +00002538const SCEV *
2539ScalarEvolution::getTruncateOrSignExtend(const SCEV *V,
Nick Lewycky5cd28fa2009-04-23 05:15:08 +00002540 const Type *Ty) {
Dan Gohman2d1be872009-04-16 03:18:22 +00002541 const Type *SrcTy = V->getType();
Duncan Sands1df98592010-02-16 11:11:14 +00002542 assert((SrcTy->isIntegerTy() || SrcTy->isPointerTy()) &&
2543 (Ty->isIntegerTy() || Ty->isPointerTy()) &&
Dan Gohman2d1be872009-04-16 03:18:22 +00002544 "Cannot truncate or zero extend with non-integer arguments!");
Dan Gohmanaf79fb52009-04-21 01:07:12 +00002545 if (getTypeSizeInBits(SrcTy) == getTypeSizeInBits(Ty))
Dan Gohman2d1be872009-04-16 03:18:22 +00002546 return V; // No conversion
Dan Gohmanaf79fb52009-04-21 01:07:12 +00002547 if (getTypeSizeInBits(SrcTy) > getTypeSizeInBits(Ty))
Dan Gohmanf8a8be82009-04-21 23:15:49 +00002548 return getTruncateExpr(V, Ty);
2549 return getSignExtendExpr(V, Ty);
Dan Gohman2d1be872009-04-16 03:18:22 +00002550}
2551
Dan Gohman467c4302009-05-13 03:46:30 +00002552/// getNoopOrZeroExtend - Return a SCEV corresponding to a conversion of the
2553/// input value to the specified type. If the type must be extended, it is zero
2554/// extended. The conversion must not be narrowing.
Dan Gohman0bba49c2009-07-07 17:06:11 +00002555const SCEV *
2556ScalarEvolution::getNoopOrZeroExtend(const SCEV *V, const Type *Ty) {
Dan Gohman467c4302009-05-13 03:46:30 +00002557 const Type *SrcTy = V->getType();
Duncan Sands1df98592010-02-16 11:11:14 +00002558 assert((SrcTy->isIntegerTy() || SrcTy->isPointerTy()) &&
2559 (Ty->isIntegerTy() || Ty->isPointerTy()) &&
Dan Gohman467c4302009-05-13 03:46:30 +00002560 "Cannot noop or zero extend with non-integer arguments!");
2561 assert(getTypeSizeInBits(SrcTy) <= getTypeSizeInBits(Ty) &&
2562 "getNoopOrZeroExtend cannot truncate!");
2563 if (getTypeSizeInBits(SrcTy) == getTypeSizeInBits(Ty))
2564 return V; // No conversion
2565 return getZeroExtendExpr(V, Ty);
2566}
2567
2568/// getNoopOrSignExtend - Return a SCEV corresponding to a conversion of the
2569/// input value to the specified type. If the type must be extended, it is sign
2570/// extended. The conversion must not be narrowing.
Dan Gohman0bba49c2009-07-07 17:06:11 +00002571const SCEV *
2572ScalarEvolution::getNoopOrSignExtend(const SCEV *V, const Type *Ty) {
Dan Gohman467c4302009-05-13 03:46:30 +00002573 const Type *SrcTy = V->getType();
Duncan Sands1df98592010-02-16 11:11:14 +00002574 assert((SrcTy->isIntegerTy() || SrcTy->isPointerTy()) &&
2575 (Ty->isIntegerTy() || Ty->isPointerTy()) &&
Dan Gohman467c4302009-05-13 03:46:30 +00002576 "Cannot noop or sign extend with non-integer arguments!");
2577 assert(getTypeSizeInBits(SrcTy) <= getTypeSizeInBits(Ty) &&
2578 "getNoopOrSignExtend cannot truncate!");
2579 if (getTypeSizeInBits(SrcTy) == getTypeSizeInBits(Ty))
2580 return V; // No conversion
2581 return getSignExtendExpr(V, Ty);
2582}
2583
Dan Gohman2ce84c8d2009-06-13 15:56:47 +00002584/// getNoopOrAnyExtend - Return a SCEV corresponding to a conversion of
2585/// the input value to the specified type. If the type must be extended,
2586/// it is extended with unspecified bits. The conversion must not be
2587/// narrowing.
Dan Gohman0bba49c2009-07-07 17:06:11 +00002588const SCEV *
2589ScalarEvolution::getNoopOrAnyExtend(const SCEV *V, const Type *Ty) {
Dan Gohman2ce84c8d2009-06-13 15:56:47 +00002590 const Type *SrcTy = V->getType();
Duncan Sands1df98592010-02-16 11:11:14 +00002591 assert((SrcTy->isIntegerTy() || SrcTy->isPointerTy()) &&
2592 (Ty->isIntegerTy() || Ty->isPointerTy()) &&
Dan Gohman2ce84c8d2009-06-13 15:56:47 +00002593 "Cannot noop or any extend with non-integer arguments!");
2594 assert(getTypeSizeInBits(SrcTy) <= getTypeSizeInBits(Ty) &&
2595 "getNoopOrAnyExtend cannot truncate!");
2596 if (getTypeSizeInBits(SrcTy) == getTypeSizeInBits(Ty))
2597 return V; // No conversion
2598 return getAnyExtendExpr(V, Ty);
2599}
2600
Dan Gohman467c4302009-05-13 03:46:30 +00002601/// getTruncateOrNoop - Return a SCEV corresponding to a conversion of the
2602/// input value to the specified type. The conversion must not be widening.
Dan Gohman0bba49c2009-07-07 17:06:11 +00002603const SCEV *
2604ScalarEvolution::getTruncateOrNoop(const SCEV *V, const Type *Ty) {
Dan Gohman467c4302009-05-13 03:46:30 +00002605 const Type *SrcTy = V->getType();
Duncan Sands1df98592010-02-16 11:11:14 +00002606 assert((SrcTy->isIntegerTy() || SrcTy->isPointerTy()) &&
2607 (Ty->isIntegerTy() || Ty->isPointerTy()) &&
Dan Gohman467c4302009-05-13 03:46:30 +00002608 "Cannot truncate or noop with non-integer arguments!");
2609 assert(getTypeSizeInBits(SrcTy) >= getTypeSizeInBits(Ty) &&
2610 "getTruncateOrNoop cannot extend!");
2611 if (getTypeSizeInBits(SrcTy) == getTypeSizeInBits(Ty))
2612 return V; // No conversion
2613 return getTruncateExpr(V, Ty);
2614}
2615
Dan Gohmana334aa72009-06-22 00:31:57 +00002616/// getUMaxFromMismatchedTypes - Promote the operands to the wider of
2617/// the types using zero-extension, and then perform a umax operation
2618/// with them.
Dan Gohman9311ef62009-06-24 14:49:00 +00002619const SCEV *ScalarEvolution::getUMaxFromMismatchedTypes(const SCEV *LHS,
2620 const SCEV *RHS) {
Dan Gohman0bba49c2009-07-07 17:06:11 +00002621 const SCEV *PromotedLHS = LHS;
2622 const SCEV *PromotedRHS = RHS;
Dan Gohmana334aa72009-06-22 00:31:57 +00002623
2624 if (getTypeSizeInBits(LHS->getType()) > getTypeSizeInBits(RHS->getType()))
2625 PromotedRHS = getZeroExtendExpr(RHS, LHS->getType());
2626 else
2627 PromotedLHS = getNoopOrZeroExtend(LHS, RHS->getType());
2628
2629 return getUMaxExpr(PromotedLHS, PromotedRHS);
2630}
2631
Dan Gohmanc9759e82009-06-22 15:03:27 +00002632/// getUMinFromMismatchedTypes - Promote the operands to the wider of
2633/// the types using zero-extension, and then perform a umin operation
2634/// with them.
Dan Gohman9311ef62009-06-24 14:49:00 +00002635const SCEV *ScalarEvolution::getUMinFromMismatchedTypes(const SCEV *LHS,
2636 const SCEV *RHS) {
Dan Gohman0bba49c2009-07-07 17:06:11 +00002637 const SCEV *PromotedLHS = LHS;
2638 const SCEV *PromotedRHS = RHS;
Dan Gohmanc9759e82009-06-22 15:03:27 +00002639
2640 if (getTypeSizeInBits(LHS->getType()) > getTypeSizeInBits(RHS->getType()))
2641 PromotedRHS = getZeroExtendExpr(RHS, LHS->getType());
2642 else
2643 PromotedLHS = getNoopOrZeroExtend(LHS, RHS->getType());
2644
2645 return getUMinExpr(PromotedLHS, PromotedRHS);
2646}
2647
Dan Gohmanfef8bb22009-07-25 01:13:03 +00002648/// PushDefUseChildren - Push users of the given Instruction
2649/// onto the given Worklist.
2650static void
2651PushDefUseChildren(Instruction *I,
2652 SmallVectorImpl<Instruction *> &Worklist) {
2653 // Push the def-use children onto the Worklist stack.
2654 for (Value::use_iterator UI = I->use_begin(), UE = I->use_end();
2655 UI != UE; ++UI)
Gabor Greif96f1d8e2010-07-22 13:36:47 +00002656 Worklist.push_back(cast<Instruction>(*UI));
Dan Gohmanfef8bb22009-07-25 01:13:03 +00002657}
2658
2659/// ForgetSymbolicValue - This looks up computed SCEV values for all
2660/// instructions that depend on the given instruction and removes them from
2661/// the Scalars map if they reference SymName. This is used during PHI
2662/// resolution.
Dan Gohman64a845e2009-06-24 04:48:43 +00002663void
Dan Gohman85669632010-02-25 06:57:05 +00002664ScalarEvolution::ForgetSymbolicName(Instruction *PN, const SCEV *SymName) {
Dan Gohmanfef8bb22009-07-25 01:13:03 +00002665 SmallVector<Instruction *, 16> Worklist;
Dan Gohman85669632010-02-25 06:57:05 +00002666 PushDefUseChildren(PN, Worklist);
Chris Lattner53e677a2004-04-02 20:23:17 +00002667
Dan Gohmanfef8bb22009-07-25 01:13:03 +00002668 SmallPtrSet<Instruction *, 8> Visited;
Dan Gohman85669632010-02-25 06:57:05 +00002669 Visited.insert(PN);
Dan Gohmanfef8bb22009-07-25 01:13:03 +00002670 while (!Worklist.empty()) {
Dan Gohman85669632010-02-25 06:57:05 +00002671 Instruction *I = Worklist.pop_back_val();
Dan Gohmanfef8bb22009-07-25 01:13:03 +00002672 if (!Visited.insert(I)) continue;
Chris Lattner4dc534c2005-02-13 04:37:18 +00002673
Dan Gohman5d984912009-12-18 01:14:11 +00002674 std::map<SCEVCallbackVH, const SCEV *>::iterator It =
Dan Gohmanfef8bb22009-07-25 01:13:03 +00002675 Scalars.find(static_cast<Value *>(I));
2676 if (It != Scalars.end()) {
2677 // Short-circuit the def-use traversal if the symbolic name
2678 // ceases to appear in expressions.
Dan Gohman50922bb2010-02-15 10:28:37 +00002679 if (It->second != SymName && !It->second->hasOperand(SymName))
Dan Gohmanfef8bb22009-07-25 01:13:03 +00002680 continue;
Chris Lattner4dc534c2005-02-13 04:37:18 +00002681
Dan Gohmanfef8bb22009-07-25 01:13:03 +00002682 // SCEVUnknown for a PHI either means that it has an unrecognized
Dan Gohman85669632010-02-25 06:57:05 +00002683 // structure, it's a PHI that's in the progress of being computed
2684 // by createNodeForPHI, or it's a single-value PHI. In the first case,
2685 // additional loop trip count information isn't going to change anything.
2686 // In the second case, createNodeForPHI will perform the necessary
2687 // updates on its own when it gets to that point. In the third, we do
2688 // want to forget the SCEVUnknown.
2689 if (!isa<PHINode>(I) ||
2690 !isa<SCEVUnknown>(It->second) ||
2691 (I != PN && It->second == SymName)) {
Dan Gohman42214892009-08-31 21:15:23 +00002692 ValuesAtScopes.erase(It->second);
Dan Gohmanfef8bb22009-07-25 01:13:03 +00002693 Scalars.erase(It);
Dan Gohman42214892009-08-31 21:15:23 +00002694 }
Dan Gohmanfef8bb22009-07-25 01:13:03 +00002695 }
2696
2697 PushDefUseChildren(I, Worklist);
2698 }
Chris Lattner4dc534c2005-02-13 04:37:18 +00002699}
Chris Lattner53e677a2004-04-02 20:23:17 +00002700
2701/// createNodeForPHI - PHI nodes have two cases. Either the PHI node exists in
2702/// a loop header, making it a potential recurrence, or it doesn't.
2703///
Dan Gohman0bba49c2009-07-07 17:06:11 +00002704const SCEV *ScalarEvolution::createNodeForPHI(PHINode *PN) {
Dan Gohman27dead42010-04-12 07:49:36 +00002705 if (const Loop *L = LI->getLoopFor(PN->getParent()))
2706 if (L->getHeader() == PN->getParent()) {
2707 // The loop may have multiple entrances or multiple exits; we can analyze
2708 // this phi as an addrec if it has a unique entry value and a unique
2709 // backedge value.
2710 Value *BEValueV = 0, *StartValueV = 0;
2711 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
2712 Value *V = PN->getIncomingValue(i);
2713 if (L->contains(PN->getIncomingBlock(i))) {
2714 if (!BEValueV) {
2715 BEValueV = V;
2716 } else if (BEValueV != V) {
2717 BEValueV = 0;
2718 break;
2719 }
2720 } else if (!StartValueV) {
2721 StartValueV = V;
2722 } else if (StartValueV != V) {
2723 StartValueV = 0;
2724 break;
2725 }
2726 }
2727 if (BEValueV && StartValueV) {
Chris Lattner53e677a2004-04-02 20:23:17 +00002728 // While we are analyzing this PHI node, handle its value symbolically.
Dan Gohman0bba49c2009-07-07 17:06:11 +00002729 const SCEV *SymbolicName = getUnknown(PN);
Chris Lattner53e677a2004-04-02 20:23:17 +00002730 assert(Scalars.find(PN) == Scalars.end() &&
2731 "PHI node already processed?");
Dan Gohman35738ac2009-05-04 22:30:44 +00002732 Scalars.insert(std::make_pair(SCEVCallbackVH(PN, this), SymbolicName));
Chris Lattner53e677a2004-04-02 20:23:17 +00002733
2734 // Using this symbolic name for the PHI, analyze the value coming around
2735 // the back-edge.
Dan Gohmanfef8bb22009-07-25 01:13:03 +00002736 const SCEV *BEValue = getSCEV(BEValueV);
Chris Lattner53e677a2004-04-02 20:23:17 +00002737
2738 // NOTE: If BEValue is loop invariant, we know that the PHI node just
2739 // has a special value for the first iteration of the loop.
2740
2741 // If the value coming around the backedge is an add with the symbolic
2742 // value we just inserted, then we found a simple induction variable!
Dan Gohman622ed672009-05-04 22:02:23 +00002743 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(BEValue)) {
Chris Lattner53e677a2004-04-02 20:23:17 +00002744 // If there is a single occurrence of the symbolic value, replace it
2745 // with a recurrence.
2746 unsigned FoundIndex = Add->getNumOperands();
2747 for (unsigned i = 0, e = Add->getNumOperands(); i != e; ++i)
2748 if (Add->getOperand(i) == SymbolicName)
2749 if (FoundIndex == e) {
2750 FoundIndex = i;
2751 break;
2752 }
2753
2754 if (FoundIndex != Add->getNumOperands()) {
2755 // Create an add with everything but the specified operand.
Dan Gohman0bba49c2009-07-07 17:06:11 +00002756 SmallVector<const SCEV *, 8> Ops;
Chris Lattner53e677a2004-04-02 20:23:17 +00002757 for (unsigned i = 0, e = Add->getNumOperands(); i != e; ++i)
2758 if (i != FoundIndex)
2759 Ops.push_back(Add->getOperand(i));
Dan Gohman0bba49c2009-07-07 17:06:11 +00002760 const SCEV *Accum = getAddExpr(Ops);
Chris Lattner53e677a2004-04-02 20:23:17 +00002761
2762 // This is not a valid addrec if the step amount is varying each
2763 // loop iteration, but is not itself an addrec in this loop.
2764 if (Accum->isLoopInvariant(L) ||
2765 (isa<SCEVAddRecExpr>(Accum) &&
2766 cast<SCEVAddRecExpr>(Accum)->getLoop() == L)) {
Dan Gohmana10756e2010-01-21 02:09:26 +00002767 bool HasNUW = false;
2768 bool HasNSW = false;
2769
2770 // If the increment doesn't overflow, then neither the addrec nor
2771 // the post-increment will overflow.
2772 if (const AddOperator *OBO = dyn_cast<AddOperator>(BEValueV)) {
2773 if (OBO->hasNoUnsignedWrap())
2774 HasNUW = true;
2775 if (OBO->hasNoSignedWrap())
2776 HasNSW = true;
2777 }
2778
Dan Gohman27dead42010-04-12 07:49:36 +00002779 const SCEV *StartVal = getSCEV(StartValueV);
Dan Gohmana10756e2010-01-21 02:09:26 +00002780 const SCEV *PHISCEV =
2781 getAddRecExpr(StartVal, Accum, L, HasNUW, HasNSW);
Dan Gohmaneb490a72009-07-25 01:22:26 +00002782
Dan Gohmana10756e2010-01-21 02:09:26 +00002783 // Since the no-wrap flags are on the increment, they apply to the
2784 // post-incremented value as well.
2785 if (Accum->isLoopInvariant(L))
2786 (void)getAddRecExpr(getAddExpr(StartVal, Accum),
2787 Accum, L, HasNUW, HasNSW);
Chris Lattner53e677a2004-04-02 20:23:17 +00002788
2789 // Okay, for the entire analysis of this edge we assumed the PHI
Dan Gohmanfef8bb22009-07-25 01:13:03 +00002790 // to be symbolic. We now need to go back and purge all of the
2791 // entries for the scalars that use the symbolic expression.
2792 ForgetSymbolicName(PN, SymbolicName);
2793 Scalars[SCEVCallbackVH(PN, this)] = PHISCEV;
Chris Lattner53e677a2004-04-02 20:23:17 +00002794 return PHISCEV;
2795 }
2796 }
Dan Gohman622ed672009-05-04 22:02:23 +00002797 } else if (const SCEVAddRecExpr *AddRec =
2798 dyn_cast<SCEVAddRecExpr>(BEValue)) {
Chris Lattner97156e72006-04-26 18:34:07 +00002799 // Otherwise, this could be a loop like this:
2800 // i = 0; for (j = 1; ..; ++j) { .... i = j; }
2801 // In this case, j = {1,+,1} and BEValue is j.
2802 // Because the other in-value of i (0) fits the evolution of BEValue
2803 // i really is an addrec evolution.
2804 if (AddRec->getLoop() == L && AddRec->isAffine()) {
Dan Gohman27dead42010-04-12 07:49:36 +00002805 const SCEV *StartVal = getSCEV(StartValueV);
Chris Lattner97156e72006-04-26 18:34:07 +00002806
2807 // If StartVal = j.start - j.stride, we can use StartVal as the
2808 // initial step of the addrec evolution.
Dan Gohmanf8a8be82009-04-21 23:15:49 +00002809 if (StartVal == getMinusSCEV(AddRec->getOperand(0),
Dan Gohman5ee60f72010-04-11 23:44:58 +00002810 AddRec->getOperand(1))) {
Dan Gohman0bba49c2009-07-07 17:06:11 +00002811 const SCEV *PHISCEV =
Dan Gohmanf8a8be82009-04-21 23:15:49 +00002812 getAddRecExpr(StartVal, AddRec->getOperand(1), L);
Chris Lattner97156e72006-04-26 18:34:07 +00002813
2814 // Okay, for the entire analysis of this edge we assumed the PHI
Dan Gohmanfef8bb22009-07-25 01:13:03 +00002815 // to be symbolic. We now need to go back and purge all of the
2816 // entries for the scalars that use the symbolic expression.
2817 ForgetSymbolicName(PN, SymbolicName);
2818 Scalars[SCEVCallbackVH(PN, this)] = PHISCEV;
Chris Lattner97156e72006-04-26 18:34:07 +00002819 return PHISCEV;
2820 }
2821 }
Chris Lattner53e677a2004-04-02 20:23:17 +00002822 }
Chris Lattner53e677a2004-04-02 20:23:17 +00002823 }
Dan Gohman27dead42010-04-12 07:49:36 +00002824 }
Misha Brukman2b37d7c2005-04-21 21:13:18 +00002825
Dan Gohman85669632010-02-25 06:57:05 +00002826 // If the PHI has a single incoming value, follow that value, unless the
2827 // PHI's incoming blocks are in a different loop, in which case doing so
2828 // risks breaking LCSSA form. Instcombine would normally zap these, but
2829 // it doesn't have DominatorTree information, so it may miss cases.
2830 if (Value *V = PN->hasConstantValue(DT)) {
2831 bool AllSameLoop = true;
2832 Loop *PNLoop = LI->getLoopFor(PN->getParent());
2833 for (size_t i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
2834 if (LI->getLoopFor(PN->getIncomingBlock(i)) != PNLoop) {
2835 AllSameLoop = false;
2836 break;
2837 }
2838 if (AllSameLoop)
2839 return getSCEV(V);
2840 }
Dan Gohmana653fc52009-07-14 14:06:25 +00002841
Chris Lattner53e677a2004-04-02 20:23:17 +00002842 // If it's not a loop phi, we can't handle it yet.
Dan Gohmanf8a8be82009-04-21 23:15:49 +00002843 return getUnknown(PN);
Chris Lattner53e677a2004-04-02 20:23:17 +00002844}
2845
Dan Gohman26466c02009-05-08 20:26:55 +00002846/// createNodeForGEP - Expand GEP instructions into add and multiply
2847/// operations. This allows them to be analyzed by regular SCEV code.
2848///
Dan Gohmand281ed22009-12-18 02:09:29 +00002849const SCEV *ScalarEvolution::createNodeForGEP(GEPOperator *GEP) {
Dan Gohman26466c02009-05-08 20:26:55 +00002850
Dan Gohmanb9f96512010-06-30 07:16:37 +00002851 // Don't blindly transfer the inbounds flag from the GEP instruction to the
2852 // Add expression, because the Instruction may be guarded by control flow
2853 // and the no-overflow bits may not be valid for the expression in any
Dan Gohman70eff632010-06-30 17:27:11 +00002854 // context.
Dan Gohman7a642572010-06-29 01:41:41 +00002855
Dan Gohmanc40f17b2009-08-18 16:46:41 +00002856 const Type *IntPtrTy = getEffectiveSCEVType(GEP->getType());
Dan Gohmane810b0d2009-05-08 20:36:47 +00002857 Value *Base = GEP->getOperand(0);
Dan Gohmanc63a6272009-05-09 00:14:52 +00002858 // Don't attempt to analyze GEPs over unsized objects.
2859 if (!cast<PointerType>(Base->getType())->getElementType()->isSized())
2860 return getUnknown(GEP);
Dan Gohmandeff6212010-05-03 22:09:21 +00002861 const SCEV *TotalOffset = getConstant(IntPtrTy, 0);
Dan Gohmane810b0d2009-05-08 20:36:47 +00002862 gep_type_iterator GTI = gep_type_begin(GEP);
Oscar Fuentesee56c422010-08-02 06:00:15 +00002863 for (GetElementPtrInst::op_iterator I = llvm::next(GEP->op_begin()),
Dan Gohmane810b0d2009-05-08 20:36:47 +00002864 E = GEP->op_end();
Dan Gohman26466c02009-05-08 20:26:55 +00002865 I != E; ++I) {
2866 Value *Index = *I;
2867 // Compute the (potentially symbolic) offset in bytes for this index.
2868 if (const StructType *STy = dyn_cast<StructType>(*GTI++)) {
2869 // For a struct, add the member offset.
Dan Gohman26466c02009-05-08 20:26:55 +00002870 unsigned FieldNo = cast<ConstantInt>(Index)->getZExtValue();
Dan Gohmanb9f96512010-06-30 07:16:37 +00002871 const SCEV *FieldOffset = getOffsetOfExpr(STy, FieldNo);
2872
Dan Gohmanb9f96512010-06-30 07:16:37 +00002873 // Add the field offset to the running total offset.
Dan Gohman70eff632010-06-30 17:27:11 +00002874 TotalOffset = getAddExpr(TotalOffset, FieldOffset);
Dan Gohman26466c02009-05-08 20:26:55 +00002875 } else {
2876 // For an array, add the element offset, explicitly scaled.
Dan Gohmanb9f96512010-06-30 07:16:37 +00002877 const SCEV *ElementSize = getSizeOfExpr(*GTI);
2878 const SCEV *IndexS = getSCEV(Index);
Dan Gohman3f46a3a2010-03-01 17:49:51 +00002879 // Getelementptr indices are signed.
Dan Gohmanb9f96512010-06-30 07:16:37 +00002880 IndexS = getTruncateOrSignExtend(IndexS, IntPtrTy);
2881
Dan Gohmanb9f96512010-06-30 07:16:37 +00002882 // Multiply the index by the element size to compute the element offset.
Dan Gohman70eff632010-06-30 17:27:11 +00002883 const SCEV *LocalOffset = getMulExpr(IndexS, ElementSize);
Dan Gohmanb9f96512010-06-30 07:16:37 +00002884
2885 // Add the element offset to the running total offset.
Dan Gohman70eff632010-06-30 17:27:11 +00002886 TotalOffset = getAddExpr(TotalOffset, LocalOffset);
Dan Gohman26466c02009-05-08 20:26:55 +00002887 }
2888 }
Dan Gohmanb9f96512010-06-30 07:16:37 +00002889
2890 // Get the SCEV for the GEP base.
2891 const SCEV *BaseS = getSCEV(Base);
2892
Dan Gohmanb9f96512010-06-30 07:16:37 +00002893 // Add the total offset from all the GEP indices to the base.
Dan Gohman70eff632010-06-30 17:27:11 +00002894 return getAddExpr(BaseS, TotalOffset);
Dan Gohman26466c02009-05-08 20:26:55 +00002895}
2896
Nick Lewycky83bb0052007-11-22 07:59:40 +00002897/// GetMinTrailingZeros - Determine the minimum number of zero bits that S is
2898/// guaranteed to end in (at every loop iteration). It is, at the same time,
2899/// the minimum number of times S is divisible by 2. For example, given {4,+,8}
2900/// it returns 2. If S is guaranteed to be 0, it returns the bitwidth of S.
Dan Gohman2c364ad2009-06-19 23:29:04 +00002901uint32_t
Dan Gohman0bba49c2009-07-07 17:06:11 +00002902ScalarEvolution::GetMinTrailingZeros(const SCEV *S) {
Dan Gohman622ed672009-05-04 22:02:23 +00002903 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(S))
Chris Lattner8314a0c2007-11-23 22:36:49 +00002904 return C->getValue()->getValue().countTrailingZeros();
Chris Lattnera17f0392006-12-12 02:26:09 +00002905
Dan Gohman622ed672009-05-04 22:02:23 +00002906 if (const SCEVTruncateExpr *T = dyn_cast<SCEVTruncateExpr>(S))
Dan Gohman2c364ad2009-06-19 23:29:04 +00002907 return std::min(GetMinTrailingZeros(T->getOperand()),
2908 (uint32_t)getTypeSizeInBits(T->getType()));
Nick Lewycky83bb0052007-11-22 07:59:40 +00002909
Dan Gohman622ed672009-05-04 22:02:23 +00002910 if (const SCEVZeroExtendExpr *E = dyn_cast<SCEVZeroExtendExpr>(S)) {
Dan Gohman2c364ad2009-06-19 23:29:04 +00002911 uint32_t OpRes = GetMinTrailingZeros(E->getOperand());
2912 return OpRes == getTypeSizeInBits(E->getOperand()->getType()) ?
2913 getTypeSizeInBits(E->getType()) : OpRes;
Nick Lewycky83bb0052007-11-22 07:59:40 +00002914 }
2915
Dan Gohman622ed672009-05-04 22:02:23 +00002916 if (const SCEVSignExtendExpr *E = dyn_cast<SCEVSignExtendExpr>(S)) {
Dan Gohman2c364ad2009-06-19 23:29:04 +00002917 uint32_t OpRes = GetMinTrailingZeros(E->getOperand());
2918 return OpRes == getTypeSizeInBits(E->getOperand()->getType()) ?
2919 getTypeSizeInBits(E->getType()) : OpRes;
Nick Lewycky83bb0052007-11-22 07:59:40 +00002920 }
2921
Dan Gohman622ed672009-05-04 22:02:23 +00002922 if (const SCEVAddExpr *A = dyn_cast<SCEVAddExpr>(S)) {
Nick Lewycky83bb0052007-11-22 07:59:40 +00002923 // The result is the min of all operands results.
Dan Gohman2c364ad2009-06-19 23:29:04 +00002924 uint32_t MinOpRes = GetMinTrailingZeros(A->getOperand(0));
Nick Lewycky83bb0052007-11-22 07:59:40 +00002925 for (unsigned i = 1, e = A->getNumOperands(); MinOpRes && i != e; ++i)
Dan Gohman2c364ad2009-06-19 23:29:04 +00002926 MinOpRes = std::min(MinOpRes, GetMinTrailingZeros(A->getOperand(i)));
Nick Lewycky83bb0052007-11-22 07:59:40 +00002927 return MinOpRes;
Chris Lattnera17f0392006-12-12 02:26:09 +00002928 }
2929
Dan Gohman622ed672009-05-04 22:02:23 +00002930 if (const SCEVMulExpr *M = dyn_cast<SCEVMulExpr>(S)) {
Nick Lewycky83bb0052007-11-22 07:59:40 +00002931 // The result is the sum of all operands results.
Dan Gohman2c364ad2009-06-19 23:29:04 +00002932 uint32_t SumOpRes = GetMinTrailingZeros(M->getOperand(0));
2933 uint32_t BitWidth = getTypeSizeInBits(M->getType());
Nick Lewycky83bb0052007-11-22 07:59:40 +00002934 for (unsigned i = 1, e = M->getNumOperands();
2935 SumOpRes != BitWidth && i != e; ++i)
Dan Gohman2c364ad2009-06-19 23:29:04 +00002936 SumOpRes = std::min(SumOpRes + GetMinTrailingZeros(M->getOperand(i)),
Nick Lewycky83bb0052007-11-22 07:59:40 +00002937 BitWidth);
2938 return SumOpRes;
Chris Lattnera17f0392006-12-12 02:26:09 +00002939 }
Nick Lewycky83bb0052007-11-22 07:59:40 +00002940
Dan Gohman622ed672009-05-04 22:02:23 +00002941 if (const SCEVAddRecExpr *A = dyn_cast<SCEVAddRecExpr>(S)) {
Nick Lewycky83bb0052007-11-22 07:59:40 +00002942 // The result is the min of all operands results.
Dan Gohman2c364ad2009-06-19 23:29:04 +00002943 uint32_t MinOpRes = GetMinTrailingZeros(A->getOperand(0));
Nick Lewycky83bb0052007-11-22 07:59:40 +00002944 for (unsigned i = 1, e = A->getNumOperands(); MinOpRes && i != e; ++i)
Dan Gohman2c364ad2009-06-19 23:29:04 +00002945 MinOpRes = std::min(MinOpRes, GetMinTrailingZeros(A->getOperand(i)));
Nick Lewycky83bb0052007-11-22 07:59:40 +00002946 return MinOpRes;
Chris Lattnera17f0392006-12-12 02:26:09 +00002947 }
Nick Lewycky83bb0052007-11-22 07:59:40 +00002948
Dan Gohman622ed672009-05-04 22:02:23 +00002949 if (const SCEVSMaxExpr *M = dyn_cast<SCEVSMaxExpr>(S)) {
Nick Lewyckyc54c5612007-11-25 22:41:31 +00002950 // The result is the min of all operands results.
Dan Gohman2c364ad2009-06-19 23:29:04 +00002951 uint32_t MinOpRes = GetMinTrailingZeros(M->getOperand(0));
Nick Lewyckyc54c5612007-11-25 22:41:31 +00002952 for (unsigned i = 1, e = M->getNumOperands(); MinOpRes && i != e; ++i)
Dan Gohman2c364ad2009-06-19 23:29:04 +00002953 MinOpRes = std::min(MinOpRes, GetMinTrailingZeros(M->getOperand(i)));
Nick Lewyckyc54c5612007-11-25 22:41:31 +00002954 return MinOpRes;
2955 }
2956
Dan Gohman622ed672009-05-04 22:02:23 +00002957 if (const SCEVUMaxExpr *M = dyn_cast<SCEVUMaxExpr>(S)) {
Nick Lewycky3e630762008-02-20 06:48:22 +00002958 // The result is the min of all operands results.
Dan Gohman2c364ad2009-06-19 23:29:04 +00002959 uint32_t MinOpRes = GetMinTrailingZeros(M->getOperand(0));
Nick Lewycky3e630762008-02-20 06:48:22 +00002960 for (unsigned i = 1, e = M->getNumOperands(); MinOpRes && i != e; ++i)
Dan Gohman2c364ad2009-06-19 23:29:04 +00002961 MinOpRes = std::min(MinOpRes, GetMinTrailingZeros(M->getOperand(i)));
Nick Lewycky3e630762008-02-20 06:48:22 +00002962 return MinOpRes;
2963 }
2964
Dan Gohman2c364ad2009-06-19 23:29:04 +00002965 if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(S)) {
2966 // For a SCEVUnknown, ask ValueTracking.
2967 unsigned BitWidth = getTypeSizeInBits(U->getType());
2968 APInt Mask = APInt::getAllOnesValue(BitWidth);
2969 APInt Zeros(BitWidth, 0), Ones(BitWidth, 0);
2970 ComputeMaskedBits(U->getValue(), Mask, Zeros, Ones);
2971 return Zeros.countTrailingOnes();
2972 }
2973
2974 // SCEVUDivExpr
Nick Lewycky83bb0052007-11-22 07:59:40 +00002975 return 0;
Chris Lattnera17f0392006-12-12 02:26:09 +00002976}
Chris Lattner53e677a2004-04-02 20:23:17 +00002977
Dan Gohman85b05a22009-07-13 21:35:55 +00002978/// getUnsignedRange - Determine the unsigned range for a particular SCEV.
2979///
2980ConstantRange
2981ScalarEvolution::getUnsignedRange(const SCEV *S) {
Dan Gohman2c364ad2009-06-19 23:29:04 +00002982
2983 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(S))
Dan Gohman85b05a22009-07-13 21:35:55 +00002984 return ConstantRange(C->getValue()->getValue());
Dan Gohman2c364ad2009-06-19 23:29:04 +00002985
Dan Gohmanc9c36cb2010-01-26 19:19:05 +00002986 unsigned BitWidth = getTypeSizeInBits(S->getType());
2987 ConstantRange ConservativeResult(BitWidth, /*isFullSet=*/true);
2988
2989 // If the value has known zeros, the maximum unsigned value will have those
2990 // known zeros as well.
2991 uint32_t TZ = GetMinTrailingZeros(S);
2992 if (TZ != 0)
2993 ConservativeResult =
2994 ConstantRange(APInt::getMinValue(BitWidth),
2995 APInt::getMaxValue(BitWidth).lshr(TZ).shl(TZ) + 1);
2996
Dan Gohman85b05a22009-07-13 21:35:55 +00002997 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
2998 ConstantRange X = getUnsignedRange(Add->getOperand(0));
2999 for (unsigned i = 1, e = Add->getNumOperands(); i != e; ++i)
3000 X = X.add(getUnsignedRange(Add->getOperand(i)));
Dan Gohmanc9c36cb2010-01-26 19:19:05 +00003001 return ConservativeResult.intersectWith(X);
Dan Gohman85b05a22009-07-13 21:35:55 +00003002 }
3003
3004 if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S)) {
3005 ConstantRange X = getUnsignedRange(Mul->getOperand(0));
3006 for (unsigned i = 1, e = Mul->getNumOperands(); i != e; ++i)
3007 X = X.multiply(getUnsignedRange(Mul->getOperand(i)));
Dan Gohmanc9c36cb2010-01-26 19:19:05 +00003008 return ConservativeResult.intersectWith(X);
Dan Gohman85b05a22009-07-13 21:35:55 +00003009 }
3010
3011 if (const SCEVSMaxExpr *SMax = dyn_cast<SCEVSMaxExpr>(S)) {
3012 ConstantRange X = getUnsignedRange(SMax->getOperand(0));
3013 for (unsigned i = 1, e = SMax->getNumOperands(); i != e; ++i)
3014 X = X.smax(getUnsignedRange(SMax->getOperand(i)));
Dan Gohmanc9c36cb2010-01-26 19:19:05 +00003015 return ConservativeResult.intersectWith(X);
Dan Gohman85b05a22009-07-13 21:35:55 +00003016 }
3017
3018 if (const SCEVUMaxExpr *UMax = dyn_cast<SCEVUMaxExpr>(S)) {
3019 ConstantRange X = getUnsignedRange(UMax->getOperand(0));
3020 for (unsigned i = 1, e = UMax->getNumOperands(); i != e; ++i)
3021 X = X.umax(getUnsignedRange(UMax->getOperand(i)));
Dan Gohmanc9c36cb2010-01-26 19:19:05 +00003022 return ConservativeResult.intersectWith(X);
Dan Gohman85b05a22009-07-13 21:35:55 +00003023 }
3024
3025 if (const SCEVUDivExpr *UDiv = dyn_cast<SCEVUDivExpr>(S)) {
3026 ConstantRange X = getUnsignedRange(UDiv->getLHS());
3027 ConstantRange Y = getUnsignedRange(UDiv->getRHS());
Dan Gohmanc9c36cb2010-01-26 19:19:05 +00003028 return ConservativeResult.intersectWith(X.udiv(Y));
Dan Gohman85b05a22009-07-13 21:35:55 +00003029 }
3030
3031 if (const SCEVZeroExtendExpr *ZExt = dyn_cast<SCEVZeroExtendExpr>(S)) {
3032 ConstantRange X = getUnsignedRange(ZExt->getOperand());
Dan Gohmanc9c36cb2010-01-26 19:19:05 +00003033 return ConservativeResult.intersectWith(X.zeroExtend(BitWidth));
Dan Gohman85b05a22009-07-13 21:35:55 +00003034 }
3035
3036 if (const SCEVSignExtendExpr *SExt = dyn_cast<SCEVSignExtendExpr>(S)) {
3037 ConstantRange X = getUnsignedRange(SExt->getOperand());
Dan Gohmanc9c36cb2010-01-26 19:19:05 +00003038 return ConservativeResult.intersectWith(X.signExtend(BitWidth));
Dan Gohman85b05a22009-07-13 21:35:55 +00003039 }
3040
3041 if (const SCEVTruncateExpr *Trunc = dyn_cast<SCEVTruncateExpr>(S)) {
3042 ConstantRange X = getUnsignedRange(Trunc->getOperand());
Dan Gohmanc9c36cb2010-01-26 19:19:05 +00003043 return ConservativeResult.intersectWith(X.truncate(BitWidth));
Dan Gohman85b05a22009-07-13 21:35:55 +00003044 }
3045
Dan Gohman85b05a22009-07-13 21:35:55 +00003046 if (const SCEVAddRecExpr *AddRec = dyn_cast<SCEVAddRecExpr>(S)) {
Dan Gohmana10756e2010-01-21 02:09:26 +00003047 // If there's no unsigned wrap, the value will never be less than its
3048 // initial value.
3049 if (AddRec->hasNoUnsignedWrap())
3050 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(AddRec->getStart()))
Dan Gohmanbca091d2010-04-12 23:08:18 +00003051 if (!C->getValue()->isZero())
Dan Gohmanbc7129f2010-04-11 22:12:18 +00003052 ConservativeResult =
Dan Gohman8a18d6b2010-06-30 06:58:35 +00003053 ConservativeResult.intersectWith(
3054 ConstantRange(C->getValue()->getValue(), APInt(BitWidth, 0)));
Dan Gohman85b05a22009-07-13 21:35:55 +00003055
3056 // TODO: non-affine addrec
Dan Gohmanc9c36cb2010-01-26 19:19:05 +00003057 if (AddRec->isAffine()) {
Dan Gohman85b05a22009-07-13 21:35:55 +00003058 const Type *Ty = AddRec->getType();
3059 const SCEV *MaxBECount = getMaxBackedgeTakenCount(AddRec->getLoop());
Dan Gohmanc9c36cb2010-01-26 19:19:05 +00003060 if (!isa<SCEVCouldNotCompute>(MaxBECount) &&
3061 getTypeSizeInBits(MaxBECount->getType()) <= BitWidth) {
Dan Gohman85b05a22009-07-13 21:35:55 +00003062 MaxBECount = getNoopOrZeroExtend(MaxBECount, Ty);
3063
3064 const SCEV *Start = AddRec->getStart();
Dan Gohman646e0472010-04-12 07:39:33 +00003065 const SCEV *Step = AddRec->getStepRecurrence(*this);
Dan Gohman85b05a22009-07-13 21:35:55 +00003066
3067 ConstantRange StartRange = getUnsignedRange(Start);
Dan Gohman646e0472010-04-12 07:39:33 +00003068 ConstantRange StepRange = getSignedRange(Step);
3069 ConstantRange MaxBECountRange = getUnsignedRange(MaxBECount);
3070 ConstantRange EndRange =
3071 StartRange.add(MaxBECountRange.multiply(StepRange));
3072
3073 // Check for overflow. This must be done with ConstantRange arithmetic
3074 // because we could be called from within the ScalarEvolution overflow
3075 // checking code.
3076 ConstantRange ExtStartRange = StartRange.zextOrTrunc(BitWidth*2+1);
3077 ConstantRange ExtStepRange = StepRange.sextOrTrunc(BitWidth*2+1);
3078 ConstantRange ExtMaxBECountRange =
3079 MaxBECountRange.zextOrTrunc(BitWidth*2+1);
3080 ConstantRange ExtEndRange = EndRange.zextOrTrunc(BitWidth*2+1);
3081 if (ExtStartRange.add(ExtMaxBECountRange.multiply(ExtStepRange)) !=
3082 ExtEndRange)
3083 return ConservativeResult;
3084
Dan Gohman85b05a22009-07-13 21:35:55 +00003085 APInt Min = APIntOps::umin(StartRange.getUnsignedMin(),
3086 EndRange.getUnsignedMin());
3087 APInt Max = APIntOps::umax(StartRange.getUnsignedMax(),
3088 EndRange.getUnsignedMax());
3089 if (Min.isMinValue() && Max.isMaxValue())
Dan Gohmana10756e2010-01-21 02:09:26 +00003090 return ConservativeResult;
Dan Gohmanc9c36cb2010-01-26 19:19:05 +00003091 return ConservativeResult.intersectWith(ConstantRange(Min, Max+1));
Dan Gohman85b05a22009-07-13 21:35:55 +00003092 }
3093 }
Dan Gohmana10756e2010-01-21 02:09:26 +00003094
3095 return ConservativeResult;
Dan Gohman2c364ad2009-06-19 23:29:04 +00003096 }
3097
3098 if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(S)) {
3099 // For a SCEVUnknown, ask ValueTracking.
Dan Gohman2c364ad2009-06-19 23:29:04 +00003100 APInt Mask = APInt::getAllOnesValue(BitWidth);
3101 APInt Zeros(BitWidth, 0), Ones(BitWidth, 0);
3102 ComputeMaskedBits(U->getValue(), Mask, Zeros, Ones, TD);
Dan Gohman746f3b12009-07-20 22:34:18 +00003103 if (Ones == ~Zeros + 1)
Dan Gohmanc9c36cb2010-01-26 19:19:05 +00003104 return ConservativeResult;
3105 return ConservativeResult.intersectWith(ConstantRange(Ones, ~Zeros + 1));
Dan Gohman2c364ad2009-06-19 23:29:04 +00003106 }
3107
Dan Gohmanc9c36cb2010-01-26 19:19:05 +00003108 return ConservativeResult;
Dan Gohman2c364ad2009-06-19 23:29:04 +00003109}
3110
Dan Gohman85b05a22009-07-13 21:35:55 +00003111/// getSignedRange - Determine the signed range for a particular SCEV.
3112///
3113ConstantRange
3114ScalarEvolution::getSignedRange(const SCEV *S) {
Dan Gohman2c364ad2009-06-19 23:29:04 +00003115
Dan Gohman85b05a22009-07-13 21:35:55 +00003116 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(S))
3117 return ConstantRange(C->getValue()->getValue());
3118
Dan Gohman52fddd32010-01-26 04:40:18 +00003119 unsigned BitWidth = getTypeSizeInBits(S->getType());
3120 ConstantRange ConservativeResult(BitWidth, /*isFullSet=*/true);
3121
3122 // If the value has known zeros, the maximum signed value will have those
3123 // known zeros as well.
3124 uint32_t TZ = GetMinTrailingZeros(S);
3125 if (TZ != 0)
3126 ConservativeResult =
3127 ConstantRange(APInt::getSignedMinValue(BitWidth),
3128 APInt::getSignedMaxValue(BitWidth).ashr(TZ).shl(TZ) + 1);
3129
Dan Gohman85b05a22009-07-13 21:35:55 +00003130 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
3131 ConstantRange X = getSignedRange(Add->getOperand(0));
3132 for (unsigned i = 1, e = Add->getNumOperands(); i != e; ++i)
3133 X = X.add(getSignedRange(Add->getOperand(i)));
Dan Gohman52fddd32010-01-26 04:40:18 +00003134 return ConservativeResult.intersectWith(X);
Dan Gohman2c364ad2009-06-19 23:29:04 +00003135 }
3136
Dan Gohman85b05a22009-07-13 21:35:55 +00003137 if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S)) {
3138 ConstantRange X = getSignedRange(Mul->getOperand(0));
3139 for (unsigned i = 1, e = Mul->getNumOperands(); i != e; ++i)
3140 X = X.multiply(getSignedRange(Mul->getOperand(i)));
Dan Gohman52fddd32010-01-26 04:40:18 +00003141 return ConservativeResult.intersectWith(X);
Dan Gohman2c364ad2009-06-19 23:29:04 +00003142 }
3143
Dan Gohman85b05a22009-07-13 21:35:55 +00003144 if (const SCEVSMaxExpr *SMax = dyn_cast<SCEVSMaxExpr>(S)) {
3145 ConstantRange X = getSignedRange(SMax->getOperand(0));
3146 for (unsigned i = 1, e = SMax->getNumOperands(); i != e; ++i)
3147 X = X.smax(getSignedRange(SMax->getOperand(i)));
Dan Gohman52fddd32010-01-26 04:40:18 +00003148 return ConservativeResult.intersectWith(X);
Dan Gohman85b05a22009-07-13 21:35:55 +00003149 }
Dan Gohman62849c02009-06-24 01:05:09 +00003150
Dan Gohman85b05a22009-07-13 21:35:55 +00003151 if (const SCEVUMaxExpr *UMax = dyn_cast<SCEVUMaxExpr>(S)) {
3152 ConstantRange X = getSignedRange(UMax->getOperand(0));
3153 for (unsigned i = 1, e = UMax->getNumOperands(); i != e; ++i)
3154 X = X.umax(getSignedRange(UMax->getOperand(i)));
Dan Gohman52fddd32010-01-26 04:40:18 +00003155 return ConservativeResult.intersectWith(X);
Dan Gohman85b05a22009-07-13 21:35:55 +00003156 }
Dan Gohman62849c02009-06-24 01:05:09 +00003157
Dan Gohman85b05a22009-07-13 21:35:55 +00003158 if (const SCEVUDivExpr *UDiv = dyn_cast<SCEVUDivExpr>(S)) {
3159 ConstantRange X = getSignedRange(UDiv->getLHS());
3160 ConstantRange Y = getSignedRange(UDiv->getRHS());
Dan Gohman52fddd32010-01-26 04:40:18 +00003161 return ConservativeResult.intersectWith(X.udiv(Y));
Dan Gohman85b05a22009-07-13 21:35:55 +00003162 }
Dan Gohman62849c02009-06-24 01:05:09 +00003163
Dan Gohman85b05a22009-07-13 21:35:55 +00003164 if (const SCEVZeroExtendExpr *ZExt = dyn_cast<SCEVZeroExtendExpr>(S)) {
3165 ConstantRange X = getSignedRange(ZExt->getOperand());
Dan Gohman52fddd32010-01-26 04:40:18 +00003166 return ConservativeResult.intersectWith(X.zeroExtend(BitWidth));
Dan Gohman85b05a22009-07-13 21:35:55 +00003167 }
3168
3169 if (const SCEVSignExtendExpr *SExt = dyn_cast<SCEVSignExtendExpr>(S)) {
3170 ConstantRange X = getSignedRange(SExt->getOperand());
Dan Gohman52fddd32010-01-26 04:40:18 +00003171 return ConservativeResult.intersectWith(X.signExtend(BitWidth));
Dan Gohman85b05a22009-07-13 21:35:55 +00003172 }
3173
3174 if (const SCEVTruncateExpr *Trunc = dyn_cast<SCEVTruncateExpr>(S)) {
3175 ConstantRange X = getSignedRange(Trunc->getOperand());
Dan Gohman52fddd32010-01-26 04:40:18 +00003176 return ConservativeResult.intersectWith(X.truncate(BitWidth));
Dan Gohman85b05a22009-07-13 21:35:55 +00003177 }
3178
Dan Gohman85b05a22009-07-13 21:35:55 +00003179 if (const SCEVAddRecExpr *AddRec = dyn_cast<SCEVAddRecExpr>(S)) {
Dan Gohmana10756e2010-01-21 02:09:26 +00003180 // If there's no signed wrap, and all the operands have the same sign or
3181 // zero, the value won't ever change sign.
3182 if (AddRec->hasNoSignedWrap()) {
3183 bool AllNonNeg = true;
3184 bool AllNonPos = true;
3185 for (unsigned i = 0, e = AddRec->getNumOperands(); i != e; ++i) {
3186 if (!isKnownNonNegative(AddRec->getOperand(i))) AllNonNeg = false;
3187 if (!isKnownNonPositive(AddRec->getOperand(i))) AllNonPos = false;
3188 }
Dan Gohmana10756e2010-01-21 02:09:26 +00003189 if (AllNonNeg)
Dan Gohman52fddd32010-01-26 04:40:18 +00003190 ConservativeResult = ConservativeResult.intersectWith(
3191 ConstantRange(APInt(BitWidth, 0),
3192 APInt::getSignedMinValue(BitWidth)));
Dan Gohmana10756e2010-01-21 02:09:26 +00003193 else if (AllNonPos)
Dan Gohman52fddd32010-01-26 04:40:18 +00003194 ConservativeResult = ConservativeResult.intersectWith(
3195 ConstantRange(APInt::getSignedMinValue(BitWidth),
3196 APInt(BitWidth, 1)));
Dan Gohmana10756e2010-01-21 02:09:26 +00003197 }
Dan Gohman85b05a22009-07-13 21:35:55 +00003198
3199 // TODO: non-affine addrec
Dan Gohmanc9c36cb2010-01-26 19:19:05 +00003200 if (AddRec->isAffine()) {
Dan Gohman85b05a22009-07-13 21:35:55 +00003201 const Type *Ty = AddRec->getType();
3202 const SCEV *MaxBECount = getMaxBackedgeTakenCount(AddRec->getLoop());
Dan Gohmanc9c36cb2010-01-26 19:19:05 +00003203 if (!isa<SCEVCouldNotCompute>(MaxBECount) &&
3204 getTypeSizeInBits(MaxBECount->getType()) <= BitWidth) {
Dan Gohman85b05a22009-07-13 21:35:55 +00003205 MaxBECount = getNoopOrZeroExtend(MaxBECount, Ty);
3206
3207 const SCEV *Start = AddRec->getStart();
Dan Gohman646e0472010-04-12 07:39:33 +00003208 const SCEV *Step = AddRec->getStepRecurrence(*this);
Dan Gohman85b05a22009-07-13 21:35:55 +00003209
3210 ConstantRange StartRange = getSignedRange(Start);
Dan Gohman646e0472010-04-12 07:39:33 +00003211 ConstantRange StepRange = getSignedRange(Step);
3212 ConstantRange MaxBECountRange = getUnsignedRange(MaxBECount);
3213 ConstantRange EndRange =
3214 StartRange.add(MaxBECountRange.multiply(StepRange));
3215
3216 // Check for overflow. This must be done with ConstantRange arithmetic
3217 // because we could be called from within the ScalarEvolution overflow
3218 // checking code.
3219 ConstantRange ExtStartRange = StartRange.sextOrTrunc(BitWidth*2+1);
3220 ConstantRange ExtStepRange = StepRange.sextOrTrunc(BitWidth*2+1);
3221 ConstantRange ExtMaxBECountRange =
3222 MaxBECountRange.zextOrTrunc(BitWidth*2+1);
3223 ConstantRange ExtEndRange = EndRange.sextOrTrunc(BitWidth*2+1);
3224 if (ExtStartRange.add(ExtMaxBECountRange.multiply(ExtStepRange)) !=
3225 ExtEndRange)
3226 return ConservativeResult;
3227
Dan Gohman85b05a22009-07-13 21:35:55 +00003228 APInt Min = APIntOps::smin(StartRange.getSignedMin(),
3229 EndRange.getSignedMin());
3230 APInt Max = APIntOps::smax(StartRange.getSignedMax(),
3231 EndRange.getSignedMax());
3232 if (Min.isMinSignedValue() && Max.isMaxSignedValue())
Dan Gohmana10756e2010-01-21 02:09:26 +00003233 return ConservativeResult;
Dan Gohman52fddd32010-01-26 04:40:18 +00003234 return ConservativeResult.intersectWith(ConstantRange(Min, Max+1));
Dan Gohman62849c02009-06-24 01:05:09 +00003235 }
Dan Gohman62849c02009-06-24 01:05:09 +00003236 }
Dan Gohmana10756e2010-01-21 02:09:26 +00003237
3238 return ConservativeResult;
Dan Gohman62849c02009-06-24 01:05:09 +00003239 }
3240
Dan Gohman2c364ad2009-06-19 23:29:04 +00003241 if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(S)) {
3242 // For a SCEVUnknown, ask ValueTracking.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003243 if (!U->getValue()->getType()->isIntegerTy() && !TD)
Dan Gohman52fddd32010-01-26 04:40:18 +00003244 return ConservativeResult;
Dan Gohman85b05a22009-07-13 21:35:55 +00003245 unsigned NS = ComputeNumSignBits(U->getValue(), TD);
3246 if (NS == 1)
Dan Gohman52fddd32010-01-26 04:40:18 +00003247 return ConservativeResult;
3248 return ConservativeResult.intersectWith(
Dan Gohman85b05a22009-07-13 21:35:55 +00003249 ConstantRange(APInt::getSignedMinValue(BitWidth).ashr(NS - 1),
Dan Gohman52fddd32010-01-26 04:40:18 +00003250 APInt::getSignedMaxValue(BitWidth).ashr(NS - 1)+1));
Dan Gohman2c364ad2009-06-19 23:29:04 +00003251 }
3252
Dan Gohman52fddd32010-01-26 04:40:18 +00003253 return ConservativeResult;
Dan Gohman2c364ad2009-06-19 23:29:04 +00003254}
3255
Chris Lattner53e677a2004-04-02 20:23:17 +00003256/// createSCEV - We know that there is no SCEV for the specified value.
3257/// Analyze the expression.
3258///
Dan Gohman0bba49c2009-07-07 17:06:11 +00003259const SCEV *ScalarEvolution::createSCEV(Value *V) {
Dan Gohmanaf79fb52009-04-21 01:07:12 +00003260 if (!isSCEVable(V->getType()))
Dan Gohmanf8a8be82009-04-21 23:15:49 +00003261 return getUnknown(V);
Dan Gohman2d1be872009-04-16 03:18:22 +00003262
Dan Gohman6c459a22008-06-22 19:56:46 +00003263 unsigned Opcode = Instruction::UserOp1;
Dan Gohman4ecbca52010-03-09 23:46:50 +00003264 if (Instruction *I = dyn_cast<Instruction>(V)) {
Dan Gohman6c459a22008-06-22 19:56:46 +00003265 Opcode = I->getOpcode();
Dan Gohman4ecbca52010-03-09 23:46:50 +00003266
3267 // Don't attempt to analyze instructions in blocks that aren't
3268 // reachable. Such instructions don't matter, and they aren't required
3269 // to obey basic rules for definitions dominating uses which this
3270 // analysis depends on.
3271 if (!DT->isReachableFromEntry(I->getParent()))
3272 return getUnknown(V);
3273 } else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(V))
Dan Gohman6c459a22008-06-22 19:56:46 +00003274 Opcode = CE->getOpcode();
Dan Gohman6bbcba12009-06-24 00:54:57 +00003275 else if (ConstantInt *CI = dyn_cast<ConstantInt>(V))
3276 return getConstant(CI);
3277 else if (isa<ConstantPointerNull>(V))
Dan Gohmandeff6212010-05-03 22:09:21 +00003278 return getConstant(V->getType(), 0);
Dan Gohman26812322009-08-25 17:49:57 +00003279 else if (GlobalAlias *GA = dyn_cast<GlobalAlias>(V))
3280 return GA->mayBeOverridden() ? getUnknown(V) : getSCEV(GA->getAliasee());
Dan Gohman6c459a22008-06-22 19:56:46 +00003281 else
Dan Gohmanf8a8be82009-04-21 23:15:49 +00003282 return getUnknown(V);
Chris Lattner2811f2a2007-04-02 05:41:38 +00003283
Dan Gohmanca178902009-07-17 20:47:02 +00003284 Operator *U = cast<Operator>(V);
Dan Gohman6c459a22008-06-22 19:56:46 +00003285 switch (Opcode) {
Dan Gohmand3f171d2010-08-16 16:03:49 +00003286 case Instruction::Add: {
3287 // The simple thing to do would be to just call getSCEV on both operands
3288 // and call getAddExpr with the result. However if we're looking at a
3289 // bunch of things all added together, this can be quite inefficient,
3290 // because it leads to N-1 getAddExpr calls for N ultimate operands.
3291 // Instead, gather up all the operands and make a single getAddExpr call.
3292 // LLVM IR canonical form means we need only traverse the left operands.
3293 SmallVector<const SCEV *, 4> AddOps;
3294 AddOps.push_back(getSCEV(U->getOperand(1)));
3295 for (Value *Op = U->getOperand(0);
3296 Op->getValueID() == Instruction::Add + Value::InstructionVal;
3297 Op = U->getOperand(0)) {
3298 U = cast<Operator>(Op);
3299 AddOps.push_back(getSCEV(U->getOperand(1)));
3300 }
3301 AddOps.push_back(getSCEV(U->getOperand(0)));
3302 return getAddExpr(AddOps);
3303 }
3304 case Instruction::Mul: {
3305 // See the Add code above.
3306 SmallVector<const SCEV *, 4> MulOps;
3307 MulOps.push_back(getSCEV(U->getOperand(1)));
3308 for (Value *Op = U->getOperand(0);
3309 Op->getValueID() == Instruction::Mul + Value::InstructionVal;
3310 Op = U->getOperand(0)) {
3311 U = cast<Operator>(Op);
3312 MulOps.push_back(getSCEV(U->getOperand(1)));
3313 }
3314 MulOps.push_back(getSCEV(U->getOperand(0)));
3315 return getMulExpr(MulOps);
3316 }
Dan Gohman6c459a22008-06-22 19:56:46 +00003317 case Instruction::UDiv:
Dan Gohmanf8a8be82009-04-21 23:15:49 +00003318 return getUDivExpr(getSCEV(U->getOperand(0)),
3319 getSCEV(U->getOperand(1)));
Dan Gohman6c459a22008-06-22 19:56:46 +00003320 case Instruction::Sub:
Dan Gohmanf8a8be82009-04-21 23:15:49 +00003321 return getMinusSCEV(getSCEV(U->getOperand(0)),
3322 getSCEV(U->getOperand(1)));
Dan Gohman4ee29af2009-04-21 02:26:00 +00003323 case Instruction::And:
3324 // For an expression like x&255 that merely masks off the high bits,
3325 // use zext(trunc(x)) as the SCEV expression.
3326 if (ConstantInt *CI = dyn_cast<ConstantInt>(U->getOperand(1))) {
Dan Gohman2c73d5f2009-04-25 17:05:40 +00003327 if (CI->isNullValue())
3328 return getSCEV(U->getOperand(1));
Dan Gohmand6c32952009-04-27 01:41:10 +00003329 if (CI->isAllOnesValue())
3330 return getSCEV(U->getOperand(0));
Dan Gohman4ee29af2009-04-21 02:26:00 +00003331 const APInt &A = CI->getValue();
Dan Gohman61ffa8e2009-06-16 19:52:01 +00003332
3333 // Instcombine's ShrinkDemandedConstant may strip bits out of
3334 // constants, obscuring what would otherwise be a low-bits mask.
3335 // Use ComputeMaskedBits to compute what ShrinkDemandedConstant
3336 // knew about to reconstruct a low-bits mask value.
3337 unsigned LZ = A.countLeadingZeros();
3338 unsigned BitWidth = A.getBitWidth();
3339 APInt AllOnes = APInt::getAllOnesValue(BitWidth);
3340 APInt KnownZero(BitWidth, 0), KnownOne(BitWidth, 0);
3341 ComputeMaskedBits(U->getOperand(0), AllOnes, KnownZero, KnownOne, TD);
3342
3343 APInt EffectiveMask = APInt::getLowBitsSet(BitWidth, BitWidth - LZ);
3344
Dan Gohmanfc3641b2009-06-17 23:54:37 +00003345 if (LZ != 0 && !((~A & ~KnownZero) & EffectiveMask))
Dan Gohman4ee29af2009-04-21 02:26:00 +00003346 return
Dan Gohmanf8a8be82009-04-21 23:15:49 +00003347 getZeroExtendExpr(getTruncateExpr(getSCEV(U->getOperand(0)),
Owen Anderson1d0be152009-08-13 21:58:54 +00003348 IntegerType::get(getContext(), BitWidth - LZ)),
Dan Gohmanf8a8be82009-04-21 23:15:49 +00003349 U->getType());
Dan Gohman4ee29af2009-04-21 02:26:00 +00003350 }
3351 break;
Dan Gohman61ffa8e2009-06-16 19:52:01 +00003352
Dan Gohman6c459a22008-06-22 19:56:46 +00003353 case Instruction::Or:
3354 // If the RHS of the Or is a constant, we may have something like:
3355 // X*4+1 which got turned into X*4|1. Handle this as an Add so loop
3356 // optimizations will transparently handle this case.
3357 //
3358 // In order for this transformation to be safe, the LHS must be of the
3359 // form X*(2^n) and the Or constant must be less than 2^n.
3360 if (ConstantInt *CI = dyn_cast<ConstantInt>(U->getOperand(1))) {
Dan Gohman0bba49c2009-07-07 17:06:11 +00003361 const SCEV *LHS = getSCEV(U->getOperand(0));
Dan Gohman6c459a22008-06-22 19:56:46 +00003362 const APInt &CIVal = CI->getValue();
Dan Gohman2c364ad2009-06-19 23:29:04 +00003363 if (GetMinTrailingZeros(LHS) >=
Dan Gohman1f96e672009-09-17 18:05:20 +00003364 (CIVal.getBitWidth() - CIVal.countLeadingZeros())) {
3365 // Build a plain add SCEV.
3366 const SCEV *S = getAddExpr(LHS, getSCEV(CI));
3367 // If the LHS of the add was an addrec and it has no-wrap flags,
3368 // transfer the no-wrap flags, since an or won't introduce a wrap.
3369 if (const SCEVAddRecExpr *NewAR = dyn_cast<SCEVAddRecExpr>(S)) {
3370 const SCEVAddRecExpr *OldAR = cast<SCEVAddRecExpr>(LHS);
3371 if (OldAR->hasNoUnsignedWrap())
3372 const_cast<SCEVAddRecExpr *>(NewAR)->setHasNoUnsignedWrap(true);
3373 if (OldAR->hasNoSignedWrap())
3374 const_cast<SCEVAddRecExpr *>(NewAR)->setHasNoSignedWrap(true);
3375 }
3376 return S;
3377 }
Chris Lattner53e677a2004-04-02 20:23:17 +00003378 }
Dan Gohman6c459a22008-06-22 19:56:46 +00003379 break;
3380 case Instruction::Xor:
Dan Gohman6c459a22008-06-22 19:56:46 +00003381 if (ConstantInt *CI = dyn_cast<ConstantInt>(U->getOperand(1))) {
Nick Lewycky01eaf802008-07-07 06:15:49 +00003382 // If the RHS of the xor is a signbit, then this is just an add.
3383 // Instcombine turns add of signbit into xor as a strength reduction step.
Dan Gohman6c459a22008-06-22 19:56:46 +00003384 if (CI->getValue().isSignBit())
Dan Gohmanf8a8be82009-04-21 23:15:49 +00003385 return getAddExpr(getSCEV(U->getOperand(0)),
3386 getSCEV(U->getOperand(1)));
Nick Lewycky01eaf802008-07-07 06:15:49 +00003387
3388 // If the RHS of xor is -1, then this is a not operation.
Dan Gohman0bac95e2009-05-18 16:17:44 +00003389 if (CI->isAllOnesValue())
Dan Gohmanf8a8be82009-04-21 23:15:49 +00003390 return getNotSCEV(getSCEV(U->getOperand(0)));
Dan Gohman10978bd2009-05-18 16:29:04 +00003391
3392 // Model xor(and(x, C), C) as and(~x, C), if C is a low-bits mask.
3393 // This is a variant of the check for xor with -1, and it handles
3394 // the case where instcombine has trimmed non-demanded bits out
3395 // of an xor with -1.
3396 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(U->getOperand(0)))
3397 if (ConstantInt *LCI = dyn_cast<ConstantInt>(BO->getOperand(1)))
3398 if (BO->getOpcode() == Instruction::And &&
3399 LCI->getValue() == CI->getValue())
3400 if (const SCEVZeroExtendExpr *Z =
Dan Gohman3034c102009-06-17 01:22:39 +00003401 dyn_cast<SCEVZeroExtendExpr>(getSCEV(U->getOperand(0)))) {
Dan Gohman82052832009-06-18 00:00:20 +00003402 const Type *UTy = U->getType();
Dan Gohman0bba49c2009-07-07 17:06:11 +00003403 const SCEV *Z0 = Z->getOperand();
Dan Gohman82052832009-06-18 00:00:20 +00003404 const Type *Z0Ty = Z0->getType();
3405 unsigned Z0TySize = getTypeSizeInBits(Z0Ty);
3406
Dan Gohman3f46a3a2010-03-01 17:49:51 +00003407 // If C is a low-bits mask, the zero extend is serving to
Dan Gohman82052832009-06-18 00:00:20 +00003408 // mask off the high bits. Complement the operand and
3409 // re-apply the zext.
3410 if (APIntOps::isMask(Z0TySize, CI->getValue()))
3411 return getZeroExtendExpr(getNotSCEV(Z0), UTy);
3412
3413 // If C is a single bit, it may be in the sign-bit position
3414 // before the zero-extend. In this case, represent the xor
3415 // using an add, which is equivalent, and re-apply the zext.
3416 APInt Trunc = APInt(CI->getValue()).trunc(Z0TySize);
3417 if (APInt(Trunc).zext(getTypeSizeInBits(UTy)) == CI->getValue() &&
3418 Trunc.isSignBit())
3419 return getZeroExtendExpr(getAddExpr(Z0, getConstant(Trunc)),
3420 UTy);
Dan Gohman3034c102009-06-17 01:22:39 +00003421 }
Dan Gohman6c459a22008-06-22 19:56:46 +00003422 }
3423 break;
3424
3425 case Instruction::Shl:
3426 // Turn shift left of a constant amount into a multiply.
3427 if (ConstantInt *SA = dyn_cast<ConstantInt>(U->getOperand(1))) {
Dan Gohman4f8eea82010-02-01 18:27:38 +00003428 uint32_t BitWidth = cast<IntegerType>(U->getType())->getBitWidth();
Dan Gohmanddb3eaf2010-04-22 01:35:11 +00003429
3430 // If the shift count is not less than the bitwidth, the result of
3431 // the shift is undefined. Don't try to analyze it, because the
3432 // resolution chosen here may differ from the resolution chosen in
3433 // other parts of the compiler.
3434 if (SA->getValue().uge(BitWidth))
3435 break;
3436
Owen Andersoneed707b2009-07-24 23:12:02 +00003437 Constant *X = ConstantInt::get(getContext(),
Dan Gohmanddb3eaf2010-04-22 01:35:11 +00003438 APInt(BitWidth, 1).shl(SA->getZExtValue()));
Dan Gohmanf8a8be82009-04-21 23:15:49 +00003439 return getMulExpr(getSCEV(U->getOperand(0)), getSCEV(X));
Dan Gohman6c459a22008-06-22 19:56:46 +00003440 }
3441 break;
3442
Nick Lewycky01eaf802008-07-07 06:15:49 +00003443 case Instruction::LShr:
Nick Lewycky789558d2009-01-13 09:18:58 +00003444 // Turn logical shift right of a constant into a unsigned divide.
Nick Lewycky01eaf802008-07-07 06:15:49 +00003445 if (ConstantInt *SA = dyn_cast<ConstantInt>(U->getOperand(1))) {
Dan Gohman4f8eea82010-02-01 18:27:38 +00003446 uint32_t BitWidth = cast<IntegerType>(U->getType())->getBitWidth();
Dan Gohmanddb3eaf2010-04-22 01:35:11 +00003447
3448 // If the shift count is not less than the bitwidth, the result of
3449 // the shift is undefined. Don't try to analyze it, because the
3450 // resolution chosen here may differ from the resolution chosen in
3451 // other parts of the compiler.
3452 if (SA->getValue().uge(BitWidth))
3453 break;
3454
Owen Andersoneed707b2009-07-24 23:12:02 +00003455 Constant *X = ConstantInt::get(getContext(),
Dan Gohmanddb3eaf2010-04-22 01:35:11 +00003456 APInt(BitWidth, 1).shl(SA->getZExtValue()));
Dan Gohmanf8a8be82009-04-21 23:15:49 +00003457 return getUDivExpr(getSCEV(U->getOperand(0)), getSCEV(X));
Nick Lewycky01eaf802008-07-07 06:15:49 +00003458 }
3459 break;
3460
Dan Gohman4ee29af2009-04-21 02:26:00 +00003461 case Instruction::AShr:
3462 // For a two-shift sext-inreg, use sext(trunc(x)) as the SCEV expression.
3463 if (ConstantInt *CI = dyn_cast<ConstantInt>(U->getOperand(1)))
Dan Gohmanddb3eaf2010-04-22 01:35:11 +00003464 if (Operator *L = dyn_cast<Operator>(U->getOperand(0)))
Dan Gohman4ee29af2009-04-21 02:26:00 +00003465 if (L->getOpcode() == Instruction::Shl &&
3466 L->getOperand(1) == U->getOperand(1)) {
Dan Gohmanddb3eaf2010-04-22 01:35:11 +00003467 uint64_t BitWidth = getTypeSizeInBits(U->getType());
3468
3469 // If the shift count is not less than the bitwidth, the result of
3470 // the shift is undefined. Don't try to analyze it, because the
3471 // resolution chosen here may differ from the resolution chosen in
3472 // other parts of the compiler.
3473 if (CI->getValue().uge(BitWidth))
3474 break;
3475
Dan Gohman2c73d5f2009-04-25 17:05:40 +00003476 uint64_t Amt = BitWidth - CI->getZExtValue();
3477 if (Amt == BitWidth)
3478 return getSCEV(L->getOperand(0)); // shift by zero --> noop
Dan Gohman4ee29af2009-04-21 02:26:00 +00003479 return
Dan Gohmanf8a8be82009-04-21 23:15:49 +00003480 getSignExtendExpr(getTruncateExpr(getSCEV(L->getOperand(0)),
Dan Gohmanddb3eaf2010-04-22 01:35:11 +00003481 IntegerType::get(getContext(),
3482 Amt)),
3483 U->getType());
Dan Gohman4ee29af2009-04-21 02:26:00 +00003484 }
3485 break;
3486
Dan Gohman6c459a22008-06-22 19:56:46 +00003487 case Instruction::Trunc:
Dan Gohmanf8a8be82009-04-21 23:15:49 +00003488 return getTruncateExpr(getSCEV(U->getOperand(0)), U->getType());
Dan Gohman6c459a22008-06-22 19:56:46 +00003489
3490 case Instruction::ZExt:
Dan Gohmanf8a8be82009-04-21 23:15:49 +00003491 return getZeroExtendExpr(getSCEV(U->getOperand(0)), U->getType());
Dan Gohman6c459a22008-06-22 19:56:46 +00003492
3493 case Instruction::SExt:
Dan Gohmanf8a8be82009-04-21 23:15:49 +00003494 return getSignExtendExpr(getSCEV(U->getOperand(0)), U->getType());
Dan Gohman6c459a22008-06-22 19:56:46 +00003495
3496 case Instruction::BitCast:
3497 // BitCasts are no-op casts so we just eliminate the cast.
Dan Gohmanaf79fb52009-04-21 01:07:12 +00003498 if (isSCEVable(U->getType()) && isSCEVable(U->getOperand(0)->getType()))
Dan Gohman6c459a22008-06-22 19:56:46 +00003499 return getSCEV(U->getOperand(0));
3500 break;
3501
Dan Gohman4f8eea82010-02-01 18:27:38 +00003502 // It's tempting to handle inttoptr and ptrtoint as no-ops, however this can
3503 // lead to pointer expressions which cannot safely be expanded to GEPs,
3504 // because ScalarEvolution doesn't respect the GEP aliasing rules when
3505 // simplifying integer expressions.
Dan Gohman2d1be872009-04-16 03:18:22 +00003506
Dan Gohman26466c02009-05-08 20:26:55 +00003507 case Instruction::GetElementPtr:
Dan Gohmand281ed22009-12-18 02:09:29 +00003508 return createNodeForGEP(cast<GEPOperator>(U));
Dan Gohman2d1be872009-04-16 03:18:22 +00003509
Dan Gohman6c459a22008-06-22 19:56:46 +00003510 case Instruction::PHI:
3511 return createNodeForPHI(cast<PHINode>(U));
3512
3513 case Instruction::Select:
3514 // This could be a smax or umax that was lowered earlier.
3515 // Try to recover it.
3516 if (ICmpInst *ICI = dyn_cast<ICmpInst>(U->getOperand(0))) {
3517 Value *LHS = ICI->getOperand(0);
3518 Value *RHS = ICI->getOperand(1);
3519 switch (ICI->getPredicate()) {
3520 case ICmpInst::ICMP_SLT:
3521 case ICmpInst::ICMP_SLE:
3522 std::swap(LHS, RHS);
3523 // fall through
3524 case ICmpInst::ICMP_SGT:
3525 case ICmpInst::ICMP_SGE:
Dan Gohman9f93d302010-04-24 03:09:42 +00003526 // a >s b ? a+x : b+x -> smax(a, b)+x
3527 // a >s b ? b+x : a+x -> smin(a, b)+x
3528 if (LHS->getType() == U->getType()) {
3529 const SCEV *LS = getSCEV(LHS);
3530 const SCEV *RS = getSCEV(RHS);
3531 const SCEV *LA = getSCEV(U->getOperand(1));
3532 const SCEV *RA = getSCEV(U->getOperand(2));
3533 const SCEV *LDiff = getMinusSCEV(LA, LS);
3534 const SCEV *RDiff = getMinusSCEV(RA, RS);
3535 if (LDiff == RDiff)
3536 return getAddExpr(getSMaxExpr(LS, RS), LDiff);
3537 LDiff = getMinusSCEV(LA, RS);
3538 RDiff = getMinusSCEV(RA, LS);
3539 if (LDiff == RDiff)
3540 return getAddExpr(getSMinExpr(LS, RS), LDiff);
3541 }
Dan Gohman6c459a22008-06-22 19:56:46 +00003542 break;
3543 case ICmpInst::ICMP_ULT:
3544 case ICmpInst::ICMP_ULE:
3545 std::swap(LHS, RHS);
3546 // fall through
3547 case ICmpInst::ICMP_UGT:
3548 case ICmpInst::ICMP_UGE:
Dan Gohman9f93d302010-04-24 03:09:42 +00003549 // a >u b ? a+x : b+x -> umax(a, b)+x
3550 // a >u b ? b+x : a+x -> umin(a, b)+x
3551 if (LHS->getType() == U->getType()) {
3552 const SCEV *LS = getSCEV(LHS);
3553 const SCEV *RS = getSCEV(RHS);
3554 const SCEV *LA = getSCEV(U->getOperand(1));
3555 const SCEV *RA = getSCEV(U->getOperand(2));
3556 const SCEV *LDiff = getMinusSCEV(LA, LS);
3557 const SCEV *RDiff = getMinusSCEV(RA, RS);
3558 if (LDiff == RDiff)
3559 return getAddExpr(getUMaxExpr(LS, RS), LDiff);
3560 LDiff = getMinusSCEV(LA, RS);
3561 RDiff = getMinusSCEV(RA, LS);
3562 if (LDiff == RDiff)
3563 return getAddExpr(getUMinExpr(LS, RS), LDiff);
3564 }
Dan Gohman6c459a22008-06-22 19:56:46 +00003565 break;
Dan Gohman30fb5122009-06-18 20:21:07 +00003566 case ICmpInst::ICMP_NE:
Dan Gohman9f93d302010-04-24 03:09:42 +00003567 // n != 0 ? n+x : 1+x -> umax(n, 1)+x
3568 if (LHS->getType() == U->getType() &&
Dan Gohman30fb5122009-06-18 20:21:07 +00003569 isa<ConstantInt>(RHS) &&
Dan Gohman9f93d302010-04-24 03:09:42 +00003570 cast<ConstantInt>(RHS)->isZero()) {
3571 const SCEV *One = getConstant(LHS->getType(), 1);
3572 const SCEV *LS = getSCEV(LHS);
3573 const SCEV *LA = getSCEV(U->getOperand(1));
3574 const SCEV *RA = getSCEV(U->getOperand(2));
3575 const SCEV *LDiff = getMinusSCEV(LA, LS);
3576 const SCEV *RDiff = getMinusSCEV(RA, One);
3577 if (LDiff == RDiff)
Dan Gohman58a85b92010-08-13 20:17:14 +00003578 return getAddExpr(getUMaxExpr(One, LS), LDiff);
Dan Gohman9f93d302010-04-24 03:09:42 +00003579 }
Dan Gohman30fb5122009-06-18 20:21:07 +00003580 break;
3581 case ICmpInst::ICMP_EQ:
Dan Gohman9f93d302010-04-24 03:09:42 +00003582 // n == 0 ? 1+x : n+x -> umax(n, 1)+x
3583 if (LHS->getType() == U->getType() &&
Dan Gohman30fb5122009-06-18 20:21:07 +00003584 isa<ConstantInt>(RHS) &&
Dan Gohman9f93d302010-04-24 03:09:42 +00003585 cast<ConstantInt>(RHS)->isZero()) {
3586 const SCEV *One = getConstant(LHS->getType(), 1);
3587 const SCEV *LS = getSCEV(LHS);
3588 const SCEV *LA = getSCEV(U->getOperand(1));
3589 const SCEV *RA = getSCEV(U->getOperand(2));
3590 const SCEV *LDiff = getMinusSCEV(LA, One);
3591 const SCEV *RDiff = getMinusSCEV(RA, LS);
3592 if (LDiff == RDiff)
Dan Gohman58a85b92010-08-13 20:17:14 +00003593 return getAddExpr(getUMaxExpr(One, LS), LDiff);
Dan Gohman9f93d302010-04-24 03:09:42 +00003594 }
Dan Gohman30fb5122009-06-18 20:21:07 +00003595 break;
Dan Gohman6c459a22008-06-22 19:56:46 +00003596 default:
3597 break;
3598 }
3599 }
3600
3601 default: // We cannot analyze this expression.
3602 break;
Chris Lattner53e677a2004-04-02 20:23:17 +00003603 }
3604
Dan Gohmanf8a8be82009-04-21 23:15:49 +00003605 return getUnknown(V);
Chris Lattner53e677a2004-04-02 20:23:17 +00003606}
3607
3608
3609
3610//===----------------------------------------------------------------------===//
3611// Iteration Count Computation Code
3612//
3613
Dan Gohman46bdfb02009-02-24 18:55:53 +00003614/// getBackedgeTakenCount - If the specified loop has a predictable
3615/// backedge-taken count, return it, otherwise return a SCEVCouldNotCompute
3616/// object. The backedge-taken count is the number of times the loop header
3617/// will be branched to from within the loop. This is one less than the
3618/// trip count of the loop, since it doesn't count the first iteration,
3619/// when the header is branched to from outside the loop.
3620///
3621/// Note that it is not valid to call this method on a loop without a
3622/// loop-invariant backedge-taken count (see
3623/// hasLoopInvariantBackedgeTakenCount).
3624///
Dan Gohman0bba49c2009-07-07 17:06:11 +00003625const SCEV *ScalarEvolution::getBackedgeTakenCount(const Loop *L) {
Dan Gohmana1af7572009-04-30 20:47:05 +00003626 return getBackedgeTakenInfo(L).Exact;
3627}
3628
3629/// getMaxBackedgeTakenCount - Similar to getBackedgeTakenCount, except
3630/// return the least SCEV value that is known never to be less than the
3631/// actual backedge taken count.
Dan Gohman0bba49c2009-07-07 17:06:11 +00003632const SCEV *ScalarEvolution::getMaxBackedgeTakenCount(const Loop *L) {
Dan Gohmana1af7572009-04-30 20:47:05 +00003633 return getBackedgeTakenInfo(L).Max;
3634}
3635
Dan Gohman59ae6b92009-07-08 19:23:34 +00003636/// PushLoopPHIs - Push PHI nodes in the header of the given loop
3637/// onto the given Worklist.
3638static void
3639PushLoopPHIs(const Loop *L, SmallVectorImpl<Instruction *> &Worklist) {
3640 BasicBlock *Header = L->getHeader();
3641
3642 // Push all Loop-header PHIs onto the Worklist stack.
3643 for (BasicBlock::iterator I = Header->begin();
3644 PHINode *PN = dyn_cast<PHINode>(I); ++I)
3645 Worklist.push_back(PN);
3646}
3647
Dan Gohmana1af7572009-04-30 20:47:05 +00003648const ScalarEvolution::BackedgeTakenInfo &
3649ScalarEvolution::getBackedgeTakenInfo(const Loop *L) {
Dan Gohman01ecca22009-04-27 20:16:15 +00003650 // Initially insert a CouldNotCompute for this loop. If the insertion
Dan Gohman3f46a3a2010-03-01 17:49:51 +00003651 // succeeds, proceed to actually compute a backedge-taken count and
Dan Gohman01ecca22009-04-27 20:16:15 +00003652 // update the value. The temporary CouldNotCompute value tells SCEV
3653 // code elsewhere that it shouldn't attempt to request a new
3654 // backedge-taken count, which could result in infinite recursion.
Dan Gohman5d984912009-12-18 01:14:11 +00003655 std::pair<std::map<const Loop *, BackedgeTakenInfo>::iterator, bool> Pair =
Dan Gohman01ecca22009-04-27 20:16:15 +00003656 BackedgeTakenCounts.insert(std::make_pair(L, getCouldNotCompute()));
3657 if (Pair.second) {
Dan Gohman93dacad2010-01-26 16:46:18 +00003658 BackedgeTakenInfo BECount = ComputeBackedgeTakenCount(L);
3659 if (BECount.Exact != getCouldNotCompute()) {
3660 assert(BECount.Exact->isLoopInvariant(L) &&
3661 BECount.Max->isLoopInvariant(L) &&
3662 "Computed backedge-taken count isn't loop invariant for loop!");
Chris Lattner53e677a2004-04-02 20:23:17 +00003663 ++NumTripCountsComputed;
Dan Gohman01ecca22009-04-27 20:16:15 +00003664
Dan Gohman01ecca22009-04-27 20:16:15 +00003665 // Update the value in the map.
Dan Gohman93dacad2010-01-26 16:46:18 +00003666 Pair.first->second = BECount;
Dan Gohmana334aa72009-06-22 00:31:57 +00003667 } else {
Dan Gohman93dacad2010-01-26 16:46:18 +00003668 if (BECount.Max != getCouldNotCompute())
Dan Gohmana334aa72009-06-22 00:31:57 +00003669 // Update the value in the map.
Dan Gohman93dacad2010-01-26 16:46:18 +00003670 Pair.first->second = BECount;
Dan Gohmana334aa72009-06-22 00:31:57 +00003671 if (isa<PHINode>(L->getHeader()->begin()))
3672 // Only count loops that have phi nodes as not being computable.
3673 ++NumTripCountsNotComputed;
Chris Lattner53e677a2004-04-02 20:23:17 +00003674 }
Dan Gohmana1af7572009-04-30 20:47:05 +00003675
3676 // Now that we know more about the trip count for this loop, forget any
3677 // existing SCEV values for PHI nodes in this loop since they are only
Dan Gohman59ae6b92009-07-08 19:23:34 +00003678 // conservative estimates made without the benefit of trip count
Dan Gohman4c7279a2009-10-31 15:04:55 +00003679 // information. This is similar to the code in forgetLoop, except that
3680 // it handles SCEVUnknown PHI nodes specially.
Dan Gohman93dacad2010-01-26 16:46:18 +00003681 if (BECount.hasAnyInfo()) {
Dan Gohman59ae6b92009-07-08 19:23:34 +00003682 SmallVector<Instruction *, 16> Worklist;
3683 PushLoopPHIs(L, Worklist);
3684
3685 SmallPtrSet<Instruction *, 8> Visited;
3686 while (!Worklist.empty()) {
3687 Instruction *I = Worklist.pop_back_val();
3688 if (!Visited.insert(I)) continue;
3689
Dan Gohman5d984912009-12-18 01:14:11 +00003690 std::map<SCEVCallbackVH, const SCEV *>::iterator It =
Dan Gohman59ae6b92009-07-08 19:23:34 +00003691 Scalars.find(static_cast<Value *>(I));
3692 if (It != Scalars.end()) {
3693 // SCEVUnknown for a PHI either means that it has an unrecognized
3694 // structure, or it's a PHI that's in the progress of being computed
Dan Gohmanba701882009-07-13 22:04:06 +00003695 // by createNodeForPHI. In the former case, additional loop trip
3696 // count information isn't going to change anything. In the later
3697 // case, createNodeForPHI will perform the necessary updates on its
3698 // own when it gets to that point.
Dan Gohman42214892009-08-31 21:15:23 +00003699 if (!isa<PHINode>(I) || !isa<SCEVUnknown>(It->second)) {
3700 ValuesAtScopes.erase(It->second);
Dan Gohman59ae6b92009-07-08 19:23:34 +00003701 Scalars.erase(It);
Dan Gohman42214892009-08-31 21:15:23 +00003702 }
Dan Gohman59ae6b92009-07-08 19:23:34 +00003703 if (PHINode *PN = dyn_cast<PHINode>(I))
3704 ConstantEvolutionLoopExitValue.erase(PN);
3705 }
3706
3707 PushDefUseChildren(I, Worklist);
3708 }
3709 }
Chris Lattner53e677a2004-04-02 20:23:17 +00003710 }
Dan Gohman01ecca22009-04-27 20:16:15 +00003711 return Pair.first->second;
Chris Lattner53e677a2004-04-02 20:23:17 +00003712}
3713
Dan Gohman4c7279a2009-10-31 15:04:55 +00003714/// forgetLoop - This method should be called by the client when it has
3715/// changed a loop in a way that may effect ScalarEvolution's ability to
3716/// compute a trip count, or if the loop is deleted.
3717void ScalarEvolution::forgetLoop(const Loop *L) {
3718 // Drop any stored trip count value.
Dan Gohman46bdfb02009-02-24 18:55:53 +00003719 BackedgeTakenCounts.erase(L);
Dan Gohmanfb7d35f2009-05-02 17:43:35 +00003720
Dan Gohman4c7279a2009-10-31 15:04:55 +00003721 // Drop information about expressions based on loop-header PHIs.
Dan Gohman35738ac2009-05-04 22:30:44 +00003722 SmallVector<Instruction *, 16> Worklist;
Dan Gohman59ae6b92009-07-08 19:23:34 +00003723 PushLoopPHIs(L, Worklist);
Dan Gohman35738ac2009-05-04 22:30:44 +00003724
Dan Gohman59ae6b92009-07-08 19:23:34 +00003725 SmallPtrSet<Instruction *, 8> Visited;
Dan Gohman35738ac2009-05-04 22:30:44 +00003726 while (!Worklist.empty()) {
3727 Instruction *I = Worklist.pop_back_val();
Dan Gohman59ae6b92009-07-08 19:23:34 +00003728 if (!Visited.insert(I)) continue;
3729
Dan Gohman5d984912009-12-18 01:14:11 +00003730 std::map<SCEVCallbackVH, const SCEV *>::iterator It =
Dan Gohman59ae6b92009-07-08 19:23:34 +00003731 Scalars.find(static_cast<Value *>(I));
3732 if (It != Scalars.end()) {
Dan Gohman42214892009-08-31 21:15:23 +00003733 ValuesAtScopes.erase(It->second);
Dan Gohman59ae6b92009-07-08 19:23:34 +00003734 Scalars.erase(It);
Dan Gohman59ae6b92009-07-08 19:23:34 +00003735 if (PHINode *PN = dyn_cast<PHINode>(I))
3736 ConstantEvolutionLoopExitValue.erase(PN);
3737 }
3738
3739 PushDefUseChildren(I, Worklist);
Dan Gohman35738ac2009-05-04 22:30:44 +00003740 }
Dan Gohman60f8a632009-02-17 20:49:49 +00003741}
3742
Eric Christophere6cbfa62010-07-29 01:25:38 +00003743/// forgetValue - This method should be called by the client when it has
3744/// changed a value in a way that may effect its value, or which may
3745/// disconnect it from a def-use chain linking it to a loop.
3746void ScalarEvolution::forgetValue(Value *V) {
Dale Johannesen45a2d7d2010-02-19 07:14:22 +00003747 Instruction *I = dyn_cast<Instruction>(V);
3748 if (!I) return;
3749
3750 // Drop information about expressions based on loop-header PHIs.
3751 SmallVector<Instruction *, 16> Worklist;
3752 Worklist.push_back(I);
3753
3754 SmallPtrSet<Instruction *, 8> Visited;
3755 while (!Worklist.empty()) {
3756 I = Worklist.pop_back_val();
3757 if (!Visited.insert(I)) continue;
3758
3759 std::map<SCEVCallbackVH, const SCEV *>::iterator It =
3760 Scalars.find(static_cast<Value *>(I));
3761 if (It != Scalars.end()) {
3762 ValuesAtScopes.erase(It->second);
3763 Scalars.erase(It);
3764 if (PHINode *PN = dyn_cast<PHINode>(I))
3765 ConstantEvolutionLoopExitValue.erase(PN);
3766 }
3767
3768 PushDefUseChildren(I, Worklist);
3769 }
3770}
3771
Dan Gohman46bdfb02009-02-24 18:55:53 +00003772/// ComputeBackedgeTakenCount - Compute the number of times the backedge
3773/// of the specified loop will execute.
Dan Gohmana1af7572009-04-30 20:47:05 +00003774ScalarEvolution::BackedgeTakenInfo
3775ScalarEvolution::ComputeBackedgeTakenCount(const Loop *L) {
Dan Gohman5d984912009-12-18 01:14:11 +00003776 SmallVector<BasicBlock *, 8> ExitingBlocks;
Dan Gohmana334aa72009-06-22 00:31:57 +00003777 L->getExitingBlocks(ExitingBlocks);
Chris Lattner53e677a2004-04-02 20:23:17 +00003778
Dan Gohmana334aa72009-06-22 00:31:57 +00003779 // Examine all exits and pick the most conservative values.
Dan Gohman0bba49c2009-07-07 17:06:11 +00003780 const SCEV *BECount = getCouldNotCompute();
3781 const SCEV *MaxBECount = getCouldNotCompute();
Dan Gohmana334aa72009-06-22 00:31:57 +00003782 bool CouldNotComputeBECount = false;
Dan Gohmana334aa72009-06-22 00:31:57 +00003783 for (unsigned i = 0, e = ExitingBlocks.size(); i != e; ++i) {
3784 BackedgeTakenInfo NewBTI =
3785 ComputeBackedgeTakenCountFromExit(L, ExitingBlocks[i]);
Chris Lattner53e677a2004-04-02 20:23:17 +00003786
Dan Gohman1c343752009-06-27 21:21:31 +00003787 if (NewBTI.Exact == getCouldNotCompute()) {
Dan Gohmana334aa72009-06-22 00:31:57 +00003788 // We couldn't compute an exact value for this exit, so
Dan Gohmand32f5bf2009-06-22 21:10:22 +00003789 // we won't be able to compute an exact value for the loop.
Dan Gohmana334aa72009-06-22 00:31:57 +00003790 CouldNotComputeBECount = true;
Dan Gohman1c343752009-06-27 21:21:31 +00003791 BECount = getCouldNotCompute();
Dan Gohmana334aa72009-06-22 00:31:57 +00003792 } else if (!CouldNotComputeBECount) {
Dan Gohman1c343752009-06-27 21:21:31 +00003793 if (BECount == getCouldNotCompute())
Dan Gohmana334aa72009-06-22 00:31:57 +00003794 BECount = NewBTI.Exact;
Dan Gohmana334aa72009-06-22 00:31:57 +00003795 else
Dan Gohman40a5a1b2009-06-24 01:18:18 +00003796 BECount = getUMinFromMismatchedTypes(BECount, NewBTI.Exact);
Dan Gohmana334aa72009-06-22 00:31:57 +00003797 }
Dan Gohman1c343752009-06-27 21:21:31 +00003798 if (MaxBECount == getCouldNotCompute())
Dan Gohman40a5a1b2009-06-24 01:18:18 +00003799 MaxBECount = NewBTI.Max;
Dan Gohman1c343752009-06-27 21:21:31 +00003800 else if (NewBTI.Max != getCouldNotCompute())
Dan Gohman40a5a1b2009-06-24 01:18:18 +00003801 MaxBECount = getUMinFromMismatchedTypes(MaxBECount, NewBTI.Max);
Dan Gohmana334aa72009-06-22 00:31:57 +00003802 }
3803
3804 return BackedgeTakenInfo(BECount, MaxBECount);
3805}
3806
3807/// ComputeBackedgeTakenCountFromExit - Compute the number of times the backedge
3808/// of the specified loop will execute if it exits via the specified block.
3809ScalarEvolution::BackedgeTakenInfo
3810ScalarEvolution::ComputeBackedgeTakenCountFromExit(const Loop *L,
3811 BasicBlock *ExitingBlock) {
3812
3813 // Okay, we've chosen an exiting block. See what condition causes us to
3814 // exit at this block.
Chris Lattner53e677a2004-04-02 20:23:17 +00003815 //
3816 // FIXME: we should be able to handle switch instructions (with a single exit)
Chris Lattner53e677a2004-04-02 20:23:17 +00003817 BranchInst *ExitBr = dyn_cast<BranchInst>(ExitingBlock->getTerminator());
Dan Gohman1c343752009-06-27 21:21:31 +00003818 if (ExitBr == 0) return getCouldNotCompute();
Chris Lattner53e677a2004-04-02 20:23:17 +00003819 assert(ExitBr->isConditional() && "If unconditional, it can't be in loop!");
Dan Gohman64a845e2009-06-24 04:48:43 +00003820
Chris Lattner8b0e3602007-01-07 02:24:26 +00003821 // At this point, we know we have a conditional branch that determines whether
3822 // the loop is exited. However, we don't know if the branch is executed each
3823 // time through the loop. If not, then the execution count of the branch will
3824 // not be equal to the trip count of the loop.
3825 //
3826 // Currently we check for this by checking to see if the Exit branch goes to
3827 // the loop header. If so, we know it will always execute the same number of
Chris Lattner192e4032007-01-14 01:24:47 +00003828 // times as the loop. We also handle the case where the exit block *is* the
Dan Gohmana334aa72009-06-22 00:31:57 +00003829 // loop header. This is common for un-rotated loops.
3830 //
3831 // If both of those tests fail, walk up the unique predecessor chain to the
3832 // header, stopping if there is an edge that doesn't exit the loop. If the
3833 // header is reached, the execution count of the branch will be equal to the
3834 // trip count of the loop.
3835 //
3836 // More extensive analysis could be done to handle more cases here.
3837 //
Chris Lattner8b0e3602007-01-07 02:24:26 +00003838 if (ExitBr->getSuccessor(0) != L->getHeader() &&
Chris Lattner192e4032007-01-14 01:24:47 +00003839 ExitBr->getSuccessor(1) != L->getHeader() &&
Dan Gohmana334aa72009-06-22 00:31:57 +00003840 ExitBr->getParent() != L->getHeader()) {
3841 // The simple checks failed, try climbing the unique predecessor chain
3842 // up to the header.
3843 bool Ok = false;
3844 for (BasicBlock *BB = ExitBr->getParent(); BB; ) {
3845 BasicBlock *Pred = BB->getUniquePredecessor();
3846 if (!Pred)
Dan Gohman1c343752009-06-27 21:21:31 +00003847 return getCouldNotCompute();
Dan Gohmana334aa72009-06-22 00:31:57 +00003848 TerminatorInst *PredTerm = Pred->getTerminator();
3849 for (unsigned i = 0, e = PredTerm->getNumSuccessors(); i != e; ++i) {
3850 BasicBlock *PredSucc = PredTerm->getSuccessor(i);
3851 if (PredSucc == BB)
3852 continue;
3853 // If the predecessor has a successor that isn't BB and isn't
3854 // outside the loop, assume the worst.
3855 if (L->contains(PredSucc))
Dan Gohman1c343752009-06-27 21:21:31 +00003856 return getCouldNotCompute();
Dan Gohmana334aa72009-06-22 00:31:57 +00003857 }
3858 if (Pred == L->getHeader()) {
3859 Ok = true;
3860 break;
3861 }
3862 BB = Pred;
3863 }
3864 if (!Ok)
Dan Gohman1c343752009-06-27 21:21:31 +00003865 return getCouldNotCompute();
Dan Gohmana334aa72009-06-22 00:31:57 +00003866 }
3867
Dan Gohman3f46a3a2010-03-01 17:49:51 +00003868 // Proceed to the next level to examine the exit condition expression.
Dan Gohmana334aa72009-06-22 00:31:57 +00003869 return ComputeBackedgeTakenCountFromExitCond(L, ExitBr->getCondition(),
3870 ExitBr->getSuccessor(0),
3871 ExitBr->getSuccessor(1));
3872}
3873
3874/// ComputeBackedgeTakenCountFromExitCond - Compute the number of times the
3875/// backedge of the specified loop will execute if its exit condition
3876/// were a conditional branch of ExitCond, TBB, and FBB.
3877ScalarEvolution::BackedgeTakenInfo
3878ScalarEvolution::ComputeBackedgeTakenCountFromExitCond(const Loop *L,
3879 Value *ExitCond,
3880 BasicBlock *TBB,
3881 BasicBlock *FBB) {
Dan Gohman40a5a1b2009-06-24 01:18:18 +00003882 // Check if the controlling expression for this loop is an And or Or.
Dan Gohmana334aa72009-06-22 00:31:57 +00003883 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(ExitCond)) {
3884 if (BO->getOpcode() == Instruction::And) {
3885 // Recurse on the operands of the and.
3886 BackedgeTakenInfo BTI0 =
3887 ComputeBackedgeTakenCountFromExitCond(L, BO->getOperand(0), TBB, FBB);
3888 BackedgeTakenInfo BTI1 =
3889 ComputeBackedgeTakenCountFromExitCond(L, BO->getOperand(1), TBB, FBB);
Dan Gohman0bba49c2009-07-07 17:06:11 +00003890 const SCEV *BECount = getCouldNotCompute();
3891 const SCEV *MaxBECount = getCouldNotCompute();
Dan Gohmana334aa72009-06-22 00:31:57 +00003892 if (L->contains(TBB)) {
3893 // Both conditions must be true for the loop to continue executing.
3894 // Choose the less conservative count.
Dan Gohman1c343752009-06-27 21:21:31 +00003895 if (BTI0.Exact == getCouldNotCompute() ||
3896 BTI1.Exact == getCouldNotCompute())
3897 BECount = getCouldNotCompute();
Dan Gohman60e9b072009-06-22 15:09:28 +00003898 else
3899 BECount = getUMinFromMismatchedTypes(BTI0.Exact, BTI1.Exact);
Dan Gohman1c343752009-06-27 21:21:31 +00003900 if (BTI0.Max == getCouldNotCompute())
Dan Gohmana334aa72009-06-22 00:31:57 +00003901 MaxBECount = BTI1.Max;
Dan Gohman1c343752009-06-27 21:21:31 +00003902 else if (BTI1.Max == getCouldNotCompute())
Dan Gohmana334aa72009-06-22 00:31:57 +00003903 MaxBECount = BTI0.Max;
Dan Gohman60e9b072009-06-22 15:09:28 +00003904 else
3905 MaxBECount = getUMinFromMismatchedTypes(BTI0.Max, BTI1.Max);
Dan Gohmana334aa72009-06-22 00:31:57 +00003906 } else {
Dan Gohman4ee87392010-08-11 00:12:36 +00003907 // Both conditions must be true at the same time for the loop to exit.
3908 // For now, be conservative.
Dan Gohmana334aa72009-06-22 00:31:57 +00003909 assert(L->contains(FBB) && "Loop block has no successor in loop!");
Dan Gohman4ee87392010-08-11 00:12:36 +00003910 if (BTI0.Max == BTI1.Max)
3911 MaxBECount = BTI0.Max;
3912 if (BTI0.Exact == BTI1.Exact)
3913 BECount = BTI0.Exact;
Dan Gohmana334aa72009-06-22 00:31:57 +00003914 }
3915
3916 return BackedgeTakenInfo(BECount, MaxBECount);
3917 }
3918 if (BO->getOpcode() == Instruction::Or) {
3919 // Recurse on the operands of the or.
3920 BackedgeTakenInfo BTI0 =
3921 ComputeBackedgeTakenCountFromExitCond(L, BO->getOperand(0), TBB, FBB);
3922 BackedgeTakenInfo BTI1 =
3923 ComputeBackedgeTakenCountFromExitCond(L, BO->getOperand(1), TBB, FBB);
Dan Gohman0bba49c2009-07-07 17:06:11 +00003924 const SCEV *BECount = getCouldNotCompute();
3925 const SCEV *MaxBECount = getCouldNotCompute();
Dan Gohmana334aa72009-06-22 00:31:57 +00003926 if (L->contains(FBB)) {
3927 // Both conditions must be false for the loop to continue executing.
3928 // Choose the less conservative count.
Dan Gohman1c343752009-06-27 21:21:31 +00003929 if (BTI0.Exact == getCouldNotCompute() ||
3930 BTI1.Exact == getCouldNotCompute())
3931 BECount = getCouldNotCompute();
Dan Gohman60e9b072009-06-22 15:09:28 +00003932 else
3933 BECount = getUMinFromMismatchedTypes(BTI0.Exact, BTI1.Exact);
Dan Gohman1c343752009-06-27 21:21:31 +00003934 if (BTI0.Max == getCouldNotCompute())
Dan Gohmana334aa72009-06-22 00:31:57 +00003935 MaxBECount = BTI1.Max;
Dan Gohman1c343752009-06-27 21:21:31 +00003936 else if (BTI1.Max == getCouldNotCompute())
Dan Gohmana334aa72009-06-22 00:31:57 +00003937 MaxBECount = BTI0.Max;
Dan Gohman60e9b072009-06-22 15:09:28 +00003938 else
3939 MaxBECount = getUMinFromMismatchedTypes(BTI0.Max, BTI1.Max);
Dan Gohmana334aa72009-06-22 00:31:57 +00003940 } else {
Dan Gohman4ee87392010-08-11 00:12:36 +00003941 // Both conditions must be false at the same time for the loop to exit.
3942 // For now, be conservative.
Dan Gohmana334aa72009-06-22 00:31:57 +00003943 assert(L->contains(TBB) && "Loop block has no successor in loop!");
Dan Gohman4ee87392010-08-11 00:12:36 +00003944 if (BTI0.Max == BTI1.Max)
3945 MaxBECount = BTI0.Max;
3946 if (BTI0.Exact == BTI1.Exact)
3947 BECount = BTI0.Exact;
Dan Gohmana334aa72009-06-22 00:31:57 +00003948 }
3949
3950 return BackedgeTakenInfo(BECount, MaxBECount);
3951 }
3952 }
3953
3954 // With an icmp, it may be feasible to compute an exact backedge-taken count.
Dan Gohman3f46a3a2010-03-01 17:49:51 +00003955 // Proceed to the next level to examine the icmp.
Dan Gohmana334aa72009-06-22 00:31:57 +00003956 if (ICmpInst *ExitCondICmp = dyn_cast<ICmpInst>(ExitCond))
3957 return ComputeBackedgeTakenCountFromExitCondICmp(L, ExitCondICmp, TBB, FBB);
Reid Spencere4d87aa2006-12-23 06:05:41 +00003958
Dan Gohman00cb5b72010-02-19 18:12:07 +00003959 // Check for a constant condition. These are normally stripped out by
3960 // SimplifyCFG, but ScalarEvolution may be used by a pass which wishes to
3961 // preserve the CFG and is temporarily leaving constant conditions
3962 // in place.
3963 if (ConstantInt *CI = dyn_cast<ConstantInt>(ExitCond)) {
3964 if (L->contains(FBB) == !CI->getZExtValue())
3965 // The backedge is always taken.
3966 return getCouldNotCompute();
3967 else
3968 // The backedge is never taken.
Dan Gohmandeff6212010-05-03 22:09:21 +00003969 return getConstant(CI->getType(), 0);
Dan Gohman00cb5b72010-02-19 18:12:07 +00003970 }
3971
Eli Friedman361e54d2009-05-09 12:32:42 +00003972 // If it's not an integer or pointer comparison then compute it the hard way.
Dan Gohmana334aa72009-06-22 00:31:57 +00003973 return ComputeBackedgeTakenCountExhaustively(L, ExitCond, !L->contains(TBB));
3974}
3975
3976/// ComputeBackedgeTakenCountFromExitCondICmp - Compute the number of times the
3977/// backedge of the specified loop will execute if its exit condition
3978/// were a conditional branch of the ICmpInst ExitCond, TBB, and FBB.
3979ScalarEvolution::BackedgeTakenInfo
3980ScalarEvolution::ComputeBackedgeTakenCountFromExitCondICmp(const Loop *L,
3981 ICmpInst *ExitCond,
3982 BasicBlock *TBB,
3983 BasicBlock *FBB) {
Chris Lattner53e677a2004-04-02 20:23:17 +00003984
Reid Spencere4d87aa2006-12-23 06:05:41 +00003985 // If the condition was exit on true, convert the condition to exit on false
3986 ICmpInst::Predicate Cond;
Dan Gohmana334aa72009-06-22 00:31:57 +00003987 if (!L->contains(FBB))
Reid Spencere4d87aa2006-12-23 06:05:41 +00003988 Cond = ExitCond->getPredicate();
Chris Lattner673e02b2004-10-12 01:49:27 +00003989 else
Reid Spencere4d87aa2006-12-23 06:05:41 +00003990 Cond = ExitCond->getInversePredicate();
Chris Lattner673e02b2004-10-12 01:49:27 +00003991
3992 // Handle common loops like: for (X = "string"; *X; ++X)
3993 if (LoadInst *LI = dyn_cast<LoadInst>(ExitCond->getOperand(0)))
3994 if (Constant *RHS = dyn_cast<Constant>(ExitCond->getOperand(1))) {
Dan Gohmanf6d009f2010-02-24 17:31:30 +00003995 BackedgeTakenInfo ItCnt =
Dan Gohman46bdfb02009-02-24 18:55:53 +00003996 ComputeLoadConstantCompareBackedgeTakenCount(LI, RHS, L, Cond);
Dan Gohmanf6d009f2010-02-24 17:31:30 +00003997 if (ItCnt.hasAnyInfo())
3998 return ItCnt;
Chris Lattner673e02b2004-10-12 01:49:27 +00003999 }
4000
Dan Gohman0bba49c2009-07-07 17:06:11 +00004001 const SCEV *LHS = getSCEV(ExitCond->getOperand(0));
4002 const SCEV *RHS = getSCEV(ExitCond->getOperand(1));
Chris Lattner53e677a2004-04-02 20:23:17 +00004003
4004 // Try to evaluate any dependencies out of the loop.
Dan Gohmand594e6f2009-05-24 23:25:42 +00004005 LHS = getSCEVAtScope(LHS, L);
4006 RHS = getSCEVAtScope(RHS, L);
Chris Lattner53e677a2004-04-02 20:23:17 +00004007
Dan Gohman64a845e2009-06-24 04:48:43 +00004008 // At this point, we would like to compute how many iterations of the
Reid Spencere4d87aa2006-12-23 06:05:41 +00004009 // loop the predicate will return true for these inputs.
Dan Gohman70ff4cf2008-09-16 18:52:57 +00004010 if (LHS->isLoopInvariant(L) && !RHS->isLoopInvariant(L)) {
4011 // If there is a loop-invariant, force it into the RHS.
Chris Lattner53e677a2004-04-02 20:23:17 +00004012 std::swap(LHS, RHS);
Reid Spencere4d87aa2006-12-23 06:05:41 +00004013 Cond = ICmpInst::getSwappedPredicate(Cond);
Chris Lattner53e677a2004-04-02 20:23:17 +00004014 }
4015
Dan Gohman03557dc2010-05-03 16:35:17 +00004016 // Simplify the operands before analyzing them.
4017 (void)SimplifyICmpOperands(Cond, LHS, RHS);
4018
Chris Lattner53e677a2004-04-02 20:23:17 +00004019 // If we have a comparison of a chrec against a constant, try to use value
4020 // ranges to answer this query.
Dan Gohman622ed672009-05-04 22:02:23 +00004021 if (const SCEVConstant *RHSC = dyn_cast<SCEVConstant>(RHS))
4022 if (const SCEVAddRecExpr *AddRec = dyn_cast<SCEVAddRecExpr>(LHS))
Chris Lattner53e677a2004-04-02 20:23:17 +00004023 if (AddRec->getLoop() == L) {
Eli Friedman361e54d2009-05-09 12:32:42 +00004024 // Form the constant range.
4025 ConstantRange CompRange(
4026 ICmpInst::makeConstantRange(Cond, RHSC->getValue()->getValue()));
Misha Brukman2b37d7c2005-04-21 21:13:18 +00004027
Dan Gohman0bba49c2009-07-07 17:06:11 +00004028 const SCEV *Ret = AddRec->getNumIterationsInRange(CompRange, *this);
Eli Friedman361e54d2009-05-09 12:32:42 +00004029 if (!isa<SCEVCouldNotCompute>(Ret)) return Ret;
Chris Lattner53e677a2004-04-02 20:23:17 +00004030 }
Misha Brukman2b37d7c2005-04-21 21:13:18 +00004031
Chris Lattner53e677a2004-04-02 20:23:17 +00004032 switch (Cond) {
Reid Spencere4d87aa2006-12-23 06:05:41 +00004033 case ICmpInst::ICMP_NE: { // while (X != Y)
Chris Lattner53e677a2004-04-02 20:23:17 +00004034 // Convert to: while (X-Y != 0)
Dan Gohmanf6d009f2010-02-24 17:31:30 +00004035 BackedgeTakenInfo BTI = HowFarToZero(getMinusSCEV(LHS, RHS), L);
4036 if (BTI.hasAnyInfo()) return BTI;
Chris Lattner53e677a2004-04-02 20:23:17 +00004037 break;
Reid Spencere4d87aa2006-12-23 06:05:41 +00004038 }
Dan Gohman4c0d5d52009-08-20 16:42:55 +00004039 case ICmpInst::ICMP_EQ: { // while (X == Y)
4040 // Convert to: while (X-Y == 0)
Dan Gohmanf6d009f2010-02-24 17:31:30 +00004041 BackedgeTakenInfo BTI = HowFarToNonZero(getMinusSCEV(LHS, RHS), L);
4042 if (BTI.hasAnyInfo()) return BTI;
Chris Lattner53e677a2004-04-02 20:23:17 +00004043 break;
Reid Spencere4d87aa2006-12-23 06:05:41 +00004044 }
4045 case ICmpInst::ICMP_SLT: {
Dan Gohmana1af7572009-04-30 20:47:05 +00004046 BackedgeTakenInfo BTI = HowManyLessThans(LHS, RHS, L, true);
4047 if (BTI.hasAnyInfo()) return BTI;
Chris Lattnerdb25de42005-08-15 23:33:51 +00004048 break;
Reid Spencere4d87aa2006-12-23 06:05:41 +00004049 }
4050 case ICmpInst::ICMP_SGT: {
Dan Gohmana1af7572009-04-30 20:47:05 +00004051 BackedgeTakenInfo BTI = HowManyLessThans(getNotSCEV(LHS),
4052 getNotSCEV(RHS), L, true);
4053 if (BTI.hasAnyInfo()) return BTI;
Nick Lewyckyd6dac0e2007-08-06 19:21:00 +00004054 break;
4055 }
4056 case ICmpInst::ICMP_ULT: {
Dan Gohmana1af7572009-04-30 20:47:05 +00004057 BackedgeTakenInfo BTI = HowManyLessThans(LHS, RHS, L, false);
4058 if (BTI.hasAnyInfo()) return BTI;
Nick Lewyckyd6dac0e2007-08-06 19:21:00 +00004059 break;
4060 }
4061 case ICmpInst::ICMP_UGT: {
Dan Gohmana1af7572009-04-30 20:47:05 +00004062 BackedgeTakenInfo BTI = HowManyLessThans(getNotSCEV(LHS),
4063 getNotSCEV(RHS), L, false);
4064 if (BTI.hasAnyInfo()) return BTI;
Chris Lattnerdb25de42005-08-15 23:33:51 +00004065 break;
Reid Spencere4d87aa2006-12-23 06:05:41 +00004066 }
Chris Lattner53e677a2004-04-02 20:23:17 +00004067 default:
Chris Lattnerd18d9dc2004-04-02 20:26:46 +00004068#if 0
David Greene25e0e872009-12-23 22:18:14 +00004069 dbgs() << "ComputeBackedgeTakenCount ";
Chris Lattner53e677a2004-04-02 20:23:17 +00004070 if (ExitCond->getOperand(0)->getType()->isUnsigned())
David Greene25e0e872009-12-23 22:18:14 +00004071 dbgs() << "[unsigned] ";
4072 dbgs() << *LHS << " "
Dan Gohman64a845e2009-06-24 04:48:43 +00004073 << Instruction::getOpcodeName(Instruction::ICmp)
Reid Spencere4d87aa2006-12-23 06:05:41 +00004074 << " " << *RHS << "\n";
Chris Lattnerd18d9dc2004-04-02 20:26:46 +00004075#endif
Chris Lattnere34c0b42004-04-03 00:43:03 +00004076 break;
Chris Lattner53e677a2004-04-02 20:23:17 +00004077 }
Dan Gohman46bdfb02009-02-24 18:55:53 +00004078 return
Dan Gohmana334aa72009-06-22 00:31:57 +00004079 ComputeBackedgeTakenCountExhaustively(L, ExitCond, !L->contains(TBB));
Chris Lattner7980fb92004-04-17 18:36:24 +00004080}
4081
Chris Lattner673e02b2004-10-12 01:49:27 +00004082static ConstantInt *
Dan Gohman246b2562007-10-22 18:31:58 +00004083EvaluateConstantChrecAtConstant(const SCEVAddRecExpr *AddRec, ConstantInt *C,
4084 ScalarEvolution &SE) {
Dan Gohman0bba49c2009-07-07 17:06:11 +00004085 const SCEV *InVal = SE.getConstant(C);
4086 const SCEV *Val = AddRec->evaluateAtIteration(InVal, SE);
Chris Lattner673e02b2004-10-12 01:49:27 +00004087 assert(isa<SCEVConstant>(Val) &&
4088 "Evaluation of SCEV at constant didn't fold correctly?");
4089 return cast<SCEVConstant>(Val)->getValue();
4090}
4091
4092/// GetAddressedElementFromGlobal - Given a global variable with an initializer
4093/// and a GEP expression (missing the pointer index) indexing into it, return
4094/// the addressed element of the initializer or null if the index expression is
4095/// invalid.
4096static Constant *
Nick Lewyckyc6501b12009-11-23 03:26:09 +00004097GetAddressedElementFromGlobal(GlobalVariable *GV,
Chris Lattner673e02b2004-10-12 01:49:27 +00004098 const std::vector<ConstantInt*> &Indices) {
4099 Constant *Init = GV->getInitializer();
4100 for (unsigned i = 0, e = Indices.size(); i != e; ++i) {
Reid Spencerb83eb642006-10-20 07:07:24 +00004101 uint64_t Idx = Indices[i]->getZExtValue();
Chris Lattner673e02b2004-10-12 01:49:27 +00004102 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(Init)) {
4103 assert(Idx < CS->getNumOperands() && "Bad struct index!");
4104 Init = cast<Constant>(CS->getOperand(Idx));
4105 } else if (ConstantArray *CA = dyn_cast<ConstantArray>(Init)) {
4106 if (Idx >= CA->getNumOperands()) return 0; // Bogus program
4107 Init = cast<Constant>(CA->getOperand(Idx));
4108 } else if (isa<ConstantAggregateZero>(Init)) {
4109 if (const StructType *STy = dyn_cast<StructType>(Init->getType())) {
4110 assert(Idx < STy->getNumElements() && "Bad struct index!");
Owen Andersona7235ea2009-07-31 20:28:14 +00004111 Init = Constant::getNullValue(STy->getElementType(Idx));
Chris Lattner673e02b2004-10-12 01:49:27 +00004112 } else if (const ArrayType *ATy = dyn_cast<ArrayType>(Init->getType())) {
4113 if (Idx >= ATy->getNumElements()) return 0; // Bogus program
Owen Andersona7235ea2009-07-31 20:28:14 +00004114 Init = Constant::getNullValue(ATy->getElementType());
Chris Lattner673e02b2004-10-12 01:49:27 +00004115 } else {
Torok Edwinc23197a2009-07-14 16:55:14 +00004116 llvm_unreachable("Unknown constant aggregate type!");
Chris Lattner673e02b2004-10-12 01:49:27 +00004117 }
4118 return 0;
4119 } else {
4120 return 0; // Unknown initializer type
4121 }
4122 }
4123 return Init;
4124}
4125
Dan Gohman46bdfb02009-02-24 18:55:53 +00004126/// ComputeLoadConstantCompareBackedgeTakenCount - Given an exit condition of
4127/// 'icmp op load X, cst', try to see if we can compute the backedge
4128/// execution count.
Dan Gohmanf6d009f2010-02-24 17:31:30 +00004129ScalarEvolution::BackedgeTakenInfo
Dan Gohman64a845e2009-06-24 04:48:43 +00004130ScalarEvolution::ComputeLoadConstantCompareBackedgeTakenCount(
4131 LoadInst *LI,
4132 Constant *RHS,
4133 const Loop *L,
4134 ICmpInst::Predicate predicate) {
Dan Gohman1c343752009-06-27 21:21:31 +00004135 if (LI->isVolatile()) return getCouldNotCompute();
Chris Lattner673e02b2004-10-12 01:49:27 +00004136
4137 // Check to see if the loaded pointer is a getelementptr of a global.
Dan Gohmanf6d009f2010-02-24 17:31:30 +00004138 // TODO: Use SCEV instead of manually grubbing with GEPs.
Chris Lattner673e02b2004-10-12 01:49:27 +00004139 GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(LI->getOperand(0));
Dan Gohman1c343752009-06-27 21:21:31 +00004140 if (!GEP) return getCouldNotCompute();
Chris Lattner673e02b2004-10-12 01:49:27 +00004141
4142 // Make sure that it is really a constant global we are gepping, with an
4143 // initializer, and make sure the first IDX is really 0.
4144 GlobalVariable *GV = dyn_cast<GlobalVariable>(GEP->getOperand(0));
Dan Gohman82555732009-08-19 18:20:44 +00004145 if (!GV || !GV->isConstant() || !GV->hasDefinitiveInitializer() ||
Chris Lattner673e02b2004-10-12 01:49:27 +00004146 GEP->getNumOperands() < 3 || !isa<Constant>(GEP->getOperand(1)) ||
4147 !cast<Constant>(GEP->getOperand(1))->isNullValue())
Dan Gohman1c343752009-06-27 21:21:31 +00004148 return getCouldNotCompute();
Chris Lattner673e02b2004-10-12 01:49:27 +00004149
4150 // Okay, we allow one non-constant index into the GEP instruction.
4151 Value *VarIdx = 0;
4152 std::vector<ConstantInt*> Indexes;
4153 unsigned VarIdxNum = 0;
4154 for (unsigned i = 2, e = GEP->getNumOperands(); i != e; ++i)
4155 if (ConstantInt *CI = dyn_cast<ConstantInt>(GEP->getOperand(i))) {
4156 Indexes.push_back(CI);
4157 } else if (!isa<ConstantInt>(GEP->getOperand(i))) {
Dan Gohman1c343752009-06-27 21:21:31 +00004158 if (VarIdx) return getCouldNotCompute(); // Multiple non-constant idx's.
Chris Lattner673e02b2004-10-12 01:49:27 +00004159 VarIdx = GEP->getOperand(i);
4160 VarIdxNum = i-2;
4161 Indexes.push_back(0);
4162 }
4163
4164 // Okay, we know we have a (load (gep GV, 0, X)) comparison with a constant.
4165 // Check to see if X is a loop variant variable value now.
Dan Gohman0bba49c2009-07-07 17:06:11 +00004166 const SCEV *Idx = getSCEV(VarIdx);
Dan Gohmand594e6f2009-05-24 23:25:42 +00004167 Idx = getSCEVAtScope(Idx, L);
Chris Lattner673e02b2004-10-12 01:49:27 +00004168
4169 // We can only recognize very limited forms of loop index expressions, in
4170 // particular, only affine AddRec's like {C1,+,C2}.
Dan Gohman35738ac2009-05-04 22:30:44 +00004171 const SCEVAddRecExpr *IdxExpr = dyn_cast<SCEVAddRecExpr>(Idx);
Chris Lattner673e02b2004-10-12 01:49:27 +00004172 if (!IdxExpr || !IdxExpr->isAffine() || IdxExpr->isLoopInvariant(L) ||
4173 !isa<SCEVConstant>(IdxExpr->getOperand(0)) ||
4174 !isa<SCEVConstant>(IdxExpr->getOperand(1)))
Dan Gohman1c343752009-06-27 21:21:31 +00004175 return getCouldNotCompute();
Chris Lattner673e02b2004-10-12 01:49:27 +00004176
4177 unsigned MaxSteps = MaxBruteForceIterations;
4178 for (unsigned IterationNum = 0; IterationNum != MaxSteps; ++IterationNum) {
Owen Andersoneed707b2009-07-24 23:12:02 +00004179 ConstantInt *ItCst = ConstantInt::get(
Owen Anderson9adc0ab2009-07-14 23:09:55 +00004180 cast<IntegerType>(IdxExpr->getType()), IterationNum);
Dan Gohmanf8a8be82009-04-21 23:15:49 +00004181 ConstantInt *Val = EvaluateConstantChrecAtConstant(IdxExpr, ItCst, *this);
Chris Lattner673e02b2004-10-12 01:49:27 +00004182
4183 // Form the GEP offset.
4184 Indexes[VarIdxNum] = Val;
4185
Nick Lewyckyc6501b12009-11-23 03:26:09 +00004186 Constant *Result = GetAddressedElementFromGlobal(GV, Indexes);
Chris Lattner673e02b2004-10-12 01:49:27 +00004187 if (Result == 0) break; // Cannot compute!
4188
4189 // Evaluate the condition for this iteration.
Reid Spencere4d87aa2006-12-23 06:05:41 +00004190 Result = ConstantExpr::getICmp(predicate, Result, RHS);
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00004191 if (!isa<ConstantInt>(Result)) break; // Couldn't decide for sure
Reid Spencere8019bb2007-03-01 07:25:48 +00004192 if (cast<ConstantInt>(Result)->getValue().isMinValue()) {
Chris Lattner673e02b2004-10-12 01:49:27 +00004193#if 0
David Greene25e0e872009-12-23 22:18:14 +00004194 dbgs() << "\n***\n*** Computed loop count " << *ItCst
Dan Gohmanb7ef7292009-04-21 00:47:46 +00004195 << "\n*** From global " << *GV << "*** BB: " << *L->getHeader()
4196 << "***\n";
Chris Lattner673e02b2004-10-12 01:49:27 +00004197#endif
4198 ++NumArrayLenItCounts;
Dan Gohmanf8a8be82009-04-21 23:15:49 +00004199 return getConstant(ItCst); // Found terminating iteration!
Chris Lattner673e02b2004-10-12 01:49:27 +00004200 }
4201 }
Dan Gohman1c343752009-06-27 21:21:31 +00004202 return getCouldNotCompute();
Chris Lattner673e02b2004-10-12 01:49:27 +00004203}
4204
4205
Chris Lattner3221ad02004-04-17 22:58:41 +00004206/// CanConstantFold - Return true if we can constant fold an instruction of the
4207/// specified type, assuming that all operands were constants.
4208static bool CanConstantFold(const Instruction *I) {
Reid Spencer832254e2007-02-02 02:16:23 +00004209 if (isa<BinaryOperator>(I) || isa<CmpInst>(I) ||
Chris Lattner3221ad02004-04-17 22:58:41 +00004210 isa<SelectInst>(I) || isa<CastInst>(I) || isa<GetElementPtrInst>(I))
4211 return true;
Misha Brukman2b37d7c2005-04-21 21:13:18 +00004212
Chris Lattner3221ad02004-04-17 22:58:41 +00004213 if (const CallInst *CI = dyn_cast<CallInst>(I))
4214 if (const Function *F = CI->getCalledFunction())
Dan Gohmanfa9b80e2008-01-31 01:05:10 +00004215 return canConstantFoldCallTo(F);
Chris Lattner3221ad02004-04-17 22:58:41 +00004216 return false;
Chris Lattner7980fb92004-04-17 18:36:24 +00004217}
4218
Chris Lattner3221ad02004-04-17 22:58:41 +00004219/// getConstantEvolvingPHI - Given an LLVM value and a loop, return a PHI node
4220/// in the loop that V is derived from. We allow arbitrary operations along the
4221/// way, but the operands of an operation must either be constants or a value
4222/// derived from a constant PHI. If this expression does not fit with these
4223/// constraints, return null.
4224static PHINode *getConstantEvolvingPHI(Value *V, const Loop *L) {
4225 // If this is not an instruction, or if this is an instruction outside of the
4226 // loop, it can't be derived from a loop PHI.
4227 Instruction *I = dyn_cast<Instruction>(V);
Dan Gohman92329c72009-12-18 01:24:09 +00004228 if (I == 0 || !L->contains(I)) return 0;
Chris Lattner3221ad02004-04-17 22:58:41 +00004229
Anton Korobeynikovae9f3a32008-02-20 11:08:44 +00004230 if (PHINode *PN = dyn_cast<PHINode>(I)) {
Chris Lattner3221ad02004-04-17 22:58:41 +00004231 if (L->getHeader() == I->getParent())
4232 return PN;
4233 else
4234 // We don't currently keep track of the control flow needed to evaluate
4235 // PHIs, so we cannot handle PHIs inside of loops.
4236 return 0;
Anton Korobeynikovae9f3a32008-02-20 11:08:44 +00004237 }
Chris Lattner3221ad02004-04-17 22:58:41 +00004238
4239 // If we won't be able to constant fold this expression even if the operands
4240 // are constants, return early.
4241 if (!CanConstantFold(I)) return 0;
Misha Brukman2b37d7c2005-04-21 21:13:18 +00004242
Chris Lattner3221ad02004-04-17 22:58:41 +00004243 // Otherwise, we can evaluate this instruction if all of its operands are
4244 // constant or derived from a PHI node themselves.
4245 PHINode *PHI = 0;
4246 for (unsigned Op = 0, e = I->getNumOperands(); Op != e; ++Op)
Dan Gohman9d4588f2010-06-22 13:15:46 +00004247 if (!isa<Constant>(I->getOperand(Op))) {
Chris Lattner3221ad02004-04-17 22:58:41 +00004248 PHINode *P = getConstantEvolvingPHI(I->getOperand(Op), L);
4249 if (P == 0) return 0; // Not evolving from PHI
4250 if (PHI == 0)
4251 PHI = P;
4252 else if (PHI != P)
4253 return 0; // Evolving from multiple different PHIs.
4254 }
4255
4256 // This is a expression evolving from a constant PHI!
4257 return PHI;
4258}
4259
4260/// EvaluateExpression - Given an expression that passes the
4261/// getConstantEvolvingPHI predicate, evaluate its value assuming the PHI node
4262/// in the loop has the value PHIVal. If we can't fold this expression for some
4263/// reason, return null.
Dan Gohman1ba3b6c2009-11-09 23:34:17 +00004264static Constant *EvaluateExpression(Value *V, Constant *PHIVal,
4265 const TargetData *TD) {
Chris Lattner3221ad02004-04-17 22:58:41 +00004266 if (isa<PHINode>(V)) return PHIVal;
Reid Spencere8404342004-07-18 00:18:30 +00004267 if (Constant *C = dyn_cast<Constant>(V)) return C;
Chris Lattner3221ad02004-04-17 22:58:41 +00004268 Instruction *I = cast<Instruction>(V);
4269
Dan Gohman9d4588f2010-06-22 13:15:46 +00004270 std::vector<Constant*> Operands(I->getNumOperands());
Chris Lattner3221ad02004-04-17 22:58:41 +00004271
4272 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) {
Dan Gohman1ba3b6c2009-11-09 23:34:17 +00004273 Operands[i] = EvaluateExpression(I->getOperand(i), PHIVal, TD);
Chris Lattner3221ad02004-04-17 22:58:41 +00004274 if (Operands[i] == 0) return 0;
4275 }
4276
Chris Lattnerf286f6f2007-12-10 22:53:04 +00004277 if (const CmpInst *CI = dyn_cast<CmpInst>(I))
Chris Lattner8f73dea2009-11-09 23:06:58 +00004278 return ConstantFoldCompareInstOperands(CI->getPredicate(), Operands[0],
Dan Gohman1ba3b6c2009-11-09 23:34:17 +00004279 Operands[1], TD);
Chris Lattner8f73dea2009-11-09 23:06:58 +00004280 return ConstantFoldInstOperands(I->getOpcode(), I->getType(),
Dan Gohman1ba3b6c2009-11-09 23:34:17 +00004281 &Operands[0], Operands.size(), TD);
Chris Lattner3221ad02004-04-17 22:58:41 +00004282}
4283
4284/// getConstantEvolutionLoopExitValue - If we know that the specified Phi is
4285/// in the header of its containing loop, we know the loop executes a
4286/// constant number of times, and the PHI node is just a recurrence
4287/// involving constants, fold it.
Dan Gohman64a845e2009-06-24 04:48:43 +00004288Constant *
4289ScalarEvolution::getConstantEvolutionLoopExitValue(PHINode *PN,
Dan Gohman5d984912009-12-18 01:14:11 +00004290 const APInt &BEs,
Dan Gohman64a845e2009-06-24 04:48:43 +00004291 const Loop *L) {
Dan Gohman8d9c7a62010-08-16 16:30:01 +00004292 std::map<PHINode*, Constant*>::const_iterator I =
Chris Lattner3221ad02004-04-17 22:58:41 +00004293 ConstantEvolutionLoopExitValue.find(PN);
4294 if (I != ConstantEvolutionLoopExitValue.end())
4295 return I->second;
4296
Dan Gohmane0567812010-04-08 23:03:40 +00004297 if (BEs.ugt(MaxBruteForceIterations))
Chris Lattner3221ad02004-04-17 22:58:41 +00004298 return ConstantEvolutionLoopExitValue[PN] = 0; // Not going to evaluate it.
4299
4300 Constant *&RetVal = ConstantEvolutionLoopExitValue[PN];
4301
4302 // Since the loop is canonicalized, the PHI node must have two entries. One
4303 // entry must be a constant (coming in from outside of the loop), and the
4304 // second must be derived from the same PHI.
4305 bool SecondIsBackedge = L->contains(PN->getIncomingBlock(1));
4306 Constant *StartCST =
4307 dyn_cast<Constant>(PN->getIncomingValue(!SecondIsBackedge));
4308 if (StartCST == 0)
4309 return RetVal = 0; // Must be a constant.
4310
4311 Value *BEValue = PN->getIncomingValue(SecondIsBackedge);
Dan Gohman9d4588f2010-06-22 13:15:46 +00004312 if (getConstantEvolvingPHI(BEValue, L) != PN &&
4313 !isa<Constant>(BEValue))
Chris Lattner3221ad02004-04-17 22:58:41 +00004314 return RetVal = 0; // Not derived from same PHI.
4315
4316 // Execute the loop symbolically to determine the exit value.
Dan Gohman46bdfb02009-02-24 18:55:53 +00004317 if (BEs.getActiveBits() >= 32)
Reid Spencere8019bb2007-03-01 07:25:48 +00004318 return RetVal = 0; // More than 2^32-1 iterations?? Not doing it!
Chris Lattner3221ad02004-04-17 22:58:41 +00004319
Dan Gohman46bdfb02009-02-24 18:55:53 +00004320 unsigned NumIterations = BEs.getZExtValue(); // must be in range
Reid Spencere8019bb2007-03-01 07:25:48 +00004321 unsigned IterationNum = 0;
Chris Lattner3221ad02004-04-17 22:58:41 +00004322 for (Constant *PHIVal = StartCST; ; ++IterationNum) {
4323 if (IterationNum == NumIterations)
4324 return RetVal = PHIVal; // Got exit value!
4325
4326 // Compute the value of the PHI node for the next iteration.
Dan Gohman1ba3b6c2009-11-09 23:34:17 +00004327 Constant *NextPHI = EvaluateExpression(BEValue, PHIVal, TD);
Chris Lattner3221ad02004-04-17 22:58:41 +00004328 if (NextPHI == PHIVal)
4329 return RetVal = NextPHI; // Stopped evolving!
4330 if (NextPHI == 0)
4331 return 0; // Couldn't evaluate!
4332 PHIVal = NextPHI;
4333 }
4334}
4335
Dan Gohman07ad19b2009-07-27 16:09:48 +00004336/// ComputeBackedgeTakenCountExhaustively - If the loop is known to execute a
Chris Lattner7980fb92004-04-17 18:36:24 +00004337/// constant number of times (the condition evolves only from constants),
4338/// try to evaluate a few iterations of the loop until we get the exit
4339/// condition gets a value of ExitWhen (true or false). If we cannot
Dan Gohman1c343752009-06-27 21:21:31 +00004340/// evaluate the trip count of the loop, return getCouldNotCompute().
Dan Gohman64a845e2009-06-24 04:48:43 +00004341const SCEV *
4342ScalarEvolution::ComputeBackedgeTakenCountExhaustively(const Loop *L,
4343 Value *Cond,
4344 bool ExitWhen) {
Chris Lattner7980fb92004-04-17 18:36:24 +00004345 PHINode *PN = getConstantEvolvingPHI(Cond, L);
Dan Gohman1c343752009-06-27 21:21:31 +00004346 if (PN == 0) return getCouldNotCompute();
Chris Lattner7980fb92004-04-17 18:36:24 +00004347
Dan Gohmanb92654d2010-06-19 14:17:24 +00004348 // If the loop is canonicalized, the PHI will have exactly two entries.
4349 // That's the only form we support here.
4350 if (PN->getNumIncomingValues() != 2) return getCouldNotCompute();
4351
4352 // One entry must be a constant (coming in from outside of the loop), and the
Chris Lattner7980fb92004-04-17 18:36:24 +00004353 // second must be derived from the same PHI.
4354 bool SecondIsBackedge = L->contains(PN->getIncomingBlock(1));
4355 Constant *StartCST =
4356 dyn_cast<Constant>(PN->getIncomingValue(!SecondIsBackedge));
Dan Gohman1c343752009-06-27 21:21:31 +00004357 if (StartCST == 0) return getCouldNotCompute(); // Must be a constant.
Chris Lattner7980fb92004-04-17 18:36:24 +00004358
4359 Value *BEValue = PN->getIncomingValue(SecondIsBackedge);
Dan Gohman9d4588f2010-06-22 13:15:46 +00004360 if (getConstantEvolvingPHI(BEValue, L) != PN &&
4361 !isa<Constant>(BEValue))
4362 return getCouldNotCompute(); // Not derived from same PHI.
Chris Lattner7980fb92004-04-17 18:36:24 +00004363
4364 // Okay, we find a PHI node that defines the trip count of this loop. Execute
4365 // the loop symbolically to determine when the condition gets a value of
4366 // "ExitWhen".
4367 unsigned IterationNum = 0;
4368 unsigned MaxIterations = MaxBruteForceIterations; // Limit analysis.
4369 for (Constant *PHIVal = StartCST;
4370 IterationNum != MaxIterations; ++IterationNum) {
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00004371 ConstantInt *CondVal =
Dan Gohman1ba3b6c2009-11-09 23:34:17 +00004372 dyn_cast_or_null<ConstantInt>(EvaluateExpression(Cond, PHIVal, TD));
Chris Lattner3221ad02004-04-17 22:58:41 +00004373
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00004374 // Couldn't symbolically evaluate.
Dan Gohman1c343752009-06-27 21:21:31 +00004375 if (!CondVal) return getCouldNotCompute();
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00004376
Reid Spencere8019bb2007-03-01 07:25:48 +00004377 if (CondVal->getValue() == uint64_t(ExitWhen)) {
Chris Lattner7980fb92004-04-17 18:36:24 +00004378 ++NumBruteForceTripCountsComputed;
Owen Anderson1d0be152009-08-13 21:58:54 +00004379 return getConstant(Type::getInt32Ty(getContext()), IterationNum);
Chris Lattner7980fb92004-04-17 18:36:24 +00004380 }
Misha Brukman2b37d7c2005-04-21 21:13:18 +00004381
Chris Lattner3221ad02004-04-17 22:58:41 +00004382 // Compute the value of the PHI node for the next iteration.
Dan Gohman1ba3b6c2009-11-09 23:34:17 +00004383 Constant *NextPHI = EvaluateExpression(BEValue, PHIVal, TD);
Chris Lattner3221ad02004-04-17 22:58:41 +00004384 if (NextPHI == 0 || NextPHI == PHIVal)
Dan Gohman1c343752009-06-27 21:21:31 +00004385 return getCouldNotCompute();// Couldn't evaluate or not making progress...
Chris Lattner3221ad02004-04-17 22:58:41 +00004386 PHIVal = NextPHI;
Chris Lattner7980fb92004-04-17 18:36:24 +00004387 }
4388
4389 // Too many iterations were needed to evaluate.
Dan Gohman1c343752009-06-27 21:21:31 +00004390 return getCouldNotCompute();
Chris Lattner53e677a2004-04-02 20:23:17 +00004391}
4392
Dan Gohmane7125f42009-09-03 15:00:26 +00004393/// getSCEVAtScope - Return a SCEV expression for the specified value
Dan Gohman66a7e852009-05-08 20:38:54 +00004394/// at the specified scope in the program. The L value specifies a loop
4395/// nest to evaluate the expression at, where null is the top-level or a
4396/// specified loop is immediately inside of the loop.
4397///
4398/// This method can be used to compute the exit value for a variable defined
4399/// in a loop by querying what the value will hold in the parent loop.
4400///
Dan Gohmand594e6f2009-05-24 23:25:42 +00004401/// In the case that a relevant loop exit value cannot be computed, the
4402/// original value V is returned.
Dan Gohman0bba49c2009-07-07 17:06:11 +00004403const SCEV *ScalarEvolution::getSCEVAtScope(const SCEV *V, const Loop *L) {
Dan Gohman42214892009-08-31 21:15:23 +00004404 // Check to see if we've folded this expression at this loop before.
4405 std::map<const Loop *, const SCEV *> &Values = ValuesAtScopes[V];
4406 std::pair<std::map<const Loop *, const SCEV *>::iterator, bool> Pair =
4407 Values.insert(std::make_pair(L, static_cast<const SCEV *>(0)));
4408 if (!Pair.second)
4409 return Pair.first->second ? Pair.first->second : V;
Chris Lattner53e677a2004-04-02 20:23:17 +00004410
Dan Gohman42214892009-08-31 21:15:23 +00004411 // Otherwise compute it.
4412 const SCEV *C = computeSCEVAtScope(V, L);
Dan Gohmana5505cb2009-08-31 21:58:28 +00004413 ValuesAtScopes[V][L] = C;
Dan Gohman42214892009-08-31 21:15:23 +00004414 return C;
4415}
4416
4417const SCEV *ScalarEvolution::computeSCEVAtScope(const SCEV *V, const Loop *L) {
Chris Lattner3221ad02004-04-17 22:58:41 +00004418 if (isa<SCEVConstant>(V)) return V;
Misha Brukman2b37d7c2005-04-21 21:13:18 +00004419
Nick Lewycky3e630762008-02-20 06:48:22 +00004420 // If this instruction is evolved from a constant-evolving PHI, compute the
Chris Lattner3221ad02004-04-17 22:58:41 +00004421 // exit value from the loop without using SCEVs.
Dan Gohman622ed672009-05-04 22:02:23 +00004422 if (const SCEVUnknown *SU = dyn_cast<SCEVUnknown>(V)) {
Chris Lattner3221ad02004-04-17 22:58:41 +00004423 if (Instruction *I = dyn_cast<Instruction>(SU->getValue())) {
Dan Gohmanf8a8be82009-04-21 23:15:49 +00004424 const Loop *LI = (*this->LI)[I->getParent()];
Chris Lattner3221ad02004-04-17 22:58:41 +00004425 if (LI && LI->getParentLoop() == L) // Looking for loop exit value.
4426 if (PHINode *PN = dyn_cast<PHINode>(I))
4427 if (PN->getParent() == LI->getHeader()) {
4428 // Okay, there is no closed form solution for the PHI node. Check
Dan Gohman46bdfb02009-02-24 18:55:53 +00004429 // to see if the loop that contains it has a known backedge-taken
4430 // count. If so, we may be able to force computation of the exit
4431 // value.
Dan Gohman0bba49c2009-07-07 17:06:11 +00004432 const SCEV *BackedgeTakenCount = getBackedgeTakenCount(LI);
Dan Gohman622ed672009-05-04 22:02:23 +00004433 if (const SCEVConstant *BTCC =
Dan Gohman46bdfb02009-02-24 18:55:53 +00004434 dyn_cast<SCEVConstant>(BackedgeTakenCount)) {
Chris Lattner3221ad02004-04-17 22:58:41 +00004435 // Okay, we know how many times the containing loop executes. If
4436 // this is a constant evolving PHI node, get the final value at
4437 // the specified iteration number.
4438 Constant *RV = getConstantEvolutionLoopExitValue(PN,
Dan Gohman46bdfb02009-02-24 18:55:53 +00004439 BTCC->getValue()->getValue(),
Chris Lattner3221ad02004-04-17 22:58:41 +00004440 LI);
Dan Gohman09987962009-06-29 21:31:18 +00004441 if (RV) return getSCEV(RV);
Chris Lattner3221ad02004-04-17 22:58:41 +00004442 }
4443 }
4444
Reid Spencer09906f32006-12-04 21:33:23 +00004445 // Okay, this is an expression that we cannot symbolically evaluate
Chris Lattner3221ad02004-04-17 22:58:41 +00004446 // into a SCEV. Check to see if it's possible to symbolically evaluate
Reid Spencer09906f32006-12-04 21:33:23 +00004447 // the arguments into constants, and if so, try to constant propagate the
Chris Lattner3221ad02004-04-17 22:58:41 +00004448 // result. This is particularly useful for computing loop exit values.
4449 if (CanConstantFold(I)) {
Dan Gohman11046452010-06-29 23:43:06 +00004450 SmallVector<Constant *, 4> Operands;
4451 bool MadeImprovement = false;
Chris Lattner3221ad02004-04-17 22:58:41 +00004452 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) {
4453 Value *Op = I->getOperand(i);
4454 if (Constant *C = dyn_cast<Constant>(Op)) {
4455 Operands.push_back(C);
Dan Gohman11046452010-06-29 23:43:06 +00004456 continue;
Chris Lattner3221ad02004-04-17 22:58:41 +00004457 }
Dan Gohman11046452010-06-29 23:43:06 +00004458
4459 // If any of the operands is non-constant and if they are
4460 // non-integer and non-pointer, don't even try to analyze them
4461 // with scev techniques.
4462 if (!isSCEVable(Op->getType()))
4463 return V;
4464
4465 const SCEV *OrigV = getSCEV(Op);
4466 const SCEV *OpV = getSCEVAtScope(OrigV, L);
4467 MadeImprovement |= OrigV != OpV;
4468
4469 Constant *C = 0;
4470 if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(OpV))
4471 C = SC->getValue();
4472 if (const SCEVUnknown *SU = dyn_cast<SCEVUnknown>(OpV))
4473 C = dyn_cast<Constant>(SU->getValue());
4474 if (!C) return V;
4475 if (C->getType() != Op->getType())
4476 C = ConstantExpr::getCast(CastInst::getCastOpcode(C, false,
4477 Op->getType(),
4478 false),
4479 C, Op->getType());
4480 Operands.push_back(C);
Chris Lattner3221ad02004-04-17 22:58:41 +00004481 }
Dan Gohman64a845e2009-06-24 04:48:43 +00004482
Dan Gohman11046452010-06-29 23:43:06 +00004483 // Check to see if getSCEVAtScope actually made an improvement.
4484 if (MadeImprovement) {
4485 Constant *C = 0;
4486 if (const CmpInst *CI = dyn_cast<CmpInst>(I))
4487 C = ConstantFoldCompareInstOperands(CI->getPredicate(),
4488 Operands[0], Operands[1], TD);
4489 else
4490 C = ConstantFoldInstOperands(I->getOpcode(), I->getType(),
4491 &Operands[0], Operands.size(), TD);
4492 if (!C) return V;
Dan Gohmane177c9a2010-02-24 19:31:47 +00004493 return getSCEV(C);
Dan Gohman11046452010-06-29 23:43:06 +00004494 }
Chris Lattner3221ad02004-04-17 22:58:41 +00004495 }
4496 }
4497
4498 // This is some other type of SCEVUnknown, just return it.
4499 return V;
4500 }
4501
Dan Gohman622ed672009-05-04 22:02:23 +00004502 if (const SCEVCommutativeExpr *Comm = dyn_cast<SCEVCommutativeExpr>(V)) {
Chris Lattner53e677a2004-04-02 20:23:17 +00004503 // Avoid performing the look-up in the common case where the specified
4504 // expression has no loop-variant portions.
4505 for (unsigned i = 0, e = Comm->getNumOperands(); i != e; ++i) {
Dan Gohman0bba49c2009-07-07 17:06:11 +00004506 const SCEV *OpAtScope = getSCEVAtScope(Comm->getOperand(i), L);
Chris Lattner53e677a2004-04-02 20:23:17 +00004507 if (OpAtScope != Comm->getOperand(i)) {
Chris Lattner53e677a2004-04-02 20:23:17 +00004508 // Okay, at least one of these operands is loop variant but might be
4509 // foldable. Build a new instance of the folded commutative expression.
Dan Gohman64a845e2009-06-24 04:48:43 +00004510 SmallVector<const SCEV *, 8> NewOps(Comm->op_begin(),
4511 Comm->op_begin()+i);
Chris Lattner53e677a2004-04-02 20:23:17 +00004512 NewOps.push_back(OpAtScope);
4513
4514 for (++i; i != e; ++i) {
4515 OpAtScope = getSCEVAtScope(Comm->getOperand(i), L);
Chris Lattner53e677a2004-04-02 20:23:17 +00004516 NewOps.push_back(OpAtScope);
4517 }
4518 if (isa<SCEVAddExpr>(Comm))
Dan Gohmanf8a8be82009-04-21 23:15:49 +00004519 return getAddExpr(NewOps);
Nick Lewyckyc54c5612007-11-25 22:41:31 +00004520 if (isa<SCEVMulExpr>(Comm))
Dan Gohmanf8a8be82009-04-21 23:15:49 +00004521 return getMulExpr(NewOps);
Nick Lewyckyc54c5612007-11-25 22:41:31 +00004522 if (isa<SCEVSMaxExpr>(Comm))
Dan Gohmanf8a8be82009-04-21 23:15:49 +00004523 return getSMaxExpr(NewOps);
Nick Lewycky3e630762008-02-20 06:48:22 +00004524 if (isa<SCEVUMaxExpr>(Comm))
Dan Gohmanf8a8be82009-04-21 23:15:49 +00004525 return getUMaxExpr(NewOps);
Torok Edwinc23197a2009-07-14 16:55:14 +00004526 llvm_unreachable("Unknown commutative SCEV type!");
Chris Lattner53e677a2004-04-02 20:23:17 +00004527 }
4528 }
4529 // If we got here, all operands are loop invariant.
4530 return Comm;
4531 }
4532
Dan Gohman622ed672009-05-04 22:02:23 +00004533 if (const SCEVUDivExpr *Div = dyn_cast<SCEVUDivExpr>(V)) {
Dan Gohman0bba49c2009-07-07 17:06:11 +00004534 const SCEV *LHS = getSCEVAtScope(Div->getLHS(), L);
4535 const SCEV *RHS = getSCEVAtScope(Div->getRHS(), L);
Nick Lewycky789558d2009-01-13 09:18:58 +00004536 if (LHS == Div->getLHS() && RHS == Div->getRHS())
4537 return Div; // must be loop invariant
Dan Gohmanf8a8be82009-04-21 23:15:49 +00004538 return getUDivExpr(LHS, RHS);
Chris Lattner53e677a2004-04-02 20:23:17 +00004539 }
4540
4541 // If this is a loop recurrence for a loop that does not contain L, then we
4542 // are dealing with the final value computed by the loop.
Dan Gohman622ed672009-05-04 22:02:23 +00004543 if (const SCEVAddRecExpr *AddRec = dyn_cast<SCEVAddRecExpr>(V)) {
Dan Gohman11046452010-06-29 23:43:06 +00004544 // First, attempt to evaluate each operand.
4545 // Avoid performing the look-up in the common case where the specified
4546 // expression has no loop-variant portions.
4547 for (unsigned i = 0, e = AddRec->getNumOperands(); i != e; ++i) {
4548 const SCEV *OpAtScope = getSCEVAtScope(AddRec->getOperand(i), L);
4549 if (OpAtScope == AddRec->getOperand(i))
4550 continue;
4551
4552 // Okay, at least one of these operands is loop variant but might be
4553 // foldable. Build a new instance of the folded commutative expression.
4554 SmallVector<const SCEV *, 8> NewOps(AddRec->op_begin(),
4555 AddRec->op_begin()+i);
4556 NewOps.push_back(OpAtScope);
4557 for (++i; i != e; ++i)
4558 NewOps.push_back(getSCEVAtScope(AddRec->getOperand(i), L));
4559
4560 AddRec = cast<SCEVAddRecExpr>(getAddRecExpr(NewOps, AddRec->getLoop()));
4561 break;
4562 }
4563
4564 // If the scope is outside the addrec's loop, evaluate it by using the
4565 // loop exit value of the addrec.
4566 if (!AddRec->getLoop()->contains(L)) {
Chris Lattner53e677a2004-04-02 20:23:17 +00004567 // To evaluate this recurrence, we need to know how many times the AddRec
4568 // loop iterates. Compute this now.
Dan Gohman0bba49c2009-07-07 17:06:11 +00004569 const SCEV *BackedgeTakenCount = getBackedgeTakenCount(AddRec->getLoop());
Dan Gohman1c343752009-06-27 21:21:31 +00004570 if (BackedgeTakenCount == getCouldNotCompute()) return AddRec;
Misha Brukman2b37d7c2005-04-21 21:13:18 +00004571
Eli Friedmanb42a6262008-08-04 23:49:06 +00004572 // Then, evaluate the AddRec.
Dan Gohmanf8a8be82009-04-21 23:15:49 +00004573 return AddRec->evaluateAtIteration(BackedgeTakenCount, *this);
Chris Lattner53e677a2004-04-02 20:23:17 +00004574 }
Dan Gohman11046452010-06-29 23:43:06 +00004575
Dan Gohmand594e6f2009-05-24 23:25:42 +00004576 return AddRec;
Chris Lattner53e677a2004-04-02 20:23:17 +00004577 }
4578
Dan Gohman622ed672009-05-04 22:02:23 +00004579 if (const SCEVZeroExtendExpr *Cast = dyn_cast<SCEVZeroExtendExpr>(V)) {
Dan Gohman0bba49c2009-07-07 17:06:11 +00004580 const SCEV *Op = getSCEVAtScope(Cast->getOperand(), L);
Dan Gohmaneb3948b2009-04-29 22:29:01 +00004581 if (Op == Cast->getOperand())
4582 return Cast; // must be loop invariant
4583 return getZeroExtendExpr(Op, Cast->getType());
4584 }
4585
Dan Gohman622ed672009-05-04 22:02:23 +00004586 if (const SCEVSignExtendExpr *Cast = dyn_cast<SCEVSignExtendExpr>(V)) {
Dan Gohman0bba49c2009-07-07 17:06:11 +00004587 const SCEV *Op = getSCEVAtScope(Cast->getOperand(), L);
Dan Gohmaneb3948b2009-04-29 22:29:01 +00004588 if (Op == Cast->getOperand())
4589 return Cast; // must be loop invariant
4590 return getSignExtendExpr(Op, Cast->getType());
4591 }
4592
Dan Gohman622ed672009-05-04 22:02:23 +00004593 if (const SCEVTruncateExpr *Cast = dyn_cast<SCEVTruncateExpr>(V)) {
Dan Gohman0bba49c2009-07-07 17:06:11 +00004594 const SCEV *Op = getSCEVAtScope(Cast->getOperand(), L);
Dan Gohmaneb3948b2009-04-29 22:29:01 +00004595 if (Op == Cast->getOperand())
4596 return Cast; // must be loop invariant
4597 return getTruncateExpr(Op, Cast->getType());
4598 }
4599
Torok Edwinc23197a2009-07-14 16:55:14 +00004600 llvm_unreachable("Unknown SCEV type!");
Daniel Dunbar8c562e22009-05-18 16:43:04 +00004601 return 0;
Chris Lattner53e677a2004-04-02 20:23:17 +00004602}
4603
Dan Gohman66a7e852009-05-08 20:38:54 +00004604/// getSCEVAtScope - This is a convenience function which does
4605/// getSCEVAtScope(getSCEV(V), L).
Dan Gohman0bba49c2009-07-07 17:06:11 +00004606const SCEV *ScalarEvolution::getSCEVAtScope(Value *V, const Loop *L) {
Dan Gohmanf8a8be82009-04-21 23:15:49 +00004607 return getSCEVAtScope(getSCEV(V), L);
4608}
4609
Wojciech Matyjewiczde0f2382008-07-20 15:55:14 +00004610/// SolveLinEquationWithOverflow - Finds the minimum unsigned root of the
4611/// following equation:
4612///
4613/// A * X = B (mod N)
4614///
4615/// where N = 2^BW and BW is the common bit width of A and B. The signedness of
4616/// A and B isn't important.
4617///
4618/// If the equation does not have a solution, SCEVCouldNotCompute is returned.
Dan Gohman0bba49c2009-07-07 17:06:11 +00004619static const SCEV *SolveLinEquationWithOverflow(const APInt &A, const APInt &B,
Wojciech Matyjewiczde0f2382008-07-20 15:55:14 +00004620 ScalarEvolution &SE) {
4621 uint32_t BW = A.getBitWidth();
4622 assert(BW == B.getBitWidth() && "Bit widths must be the same.");
4623 assert(A != 0 && "A must be non-zero.");
4624
4625 // 1. D = gcd(A, N)
4626 //
4627 // The gcd of A and N may have only one prime factor: 2. The number of
4628 // trailing zeros in A is its multiplicity
4629 uint32_t Mult2 = A.countTrailingZeros();
4630 // D = 2^Mult2
4631
4632 // 2. Check if B is divisible by D.
4633 //
4634 // B is divisible by D if and only if the multiplicity of prime factor 2 for B
4635 // is not less than multiplicity of this prime factor for D.
4636 if (B.countTrailingZeros() < Mult2)
Dan Gohmanf4ccfcb2009-04-18 17:58:19 +00004637 return SE.getCouldNotCompute();
Wojciech Matyjewiczde0f2382008-07-20 15:55:14 +00004638
4639 // 3. Compute I: the multiplicative inverse of (A / D) in arithmetic
4640 // modulo (N / D).
4641 //
4642 // (N / D) may need BW+1 bits in its representation. Hence, we'll use this
4643 // bit width during computations.
4644 APInt AD = A.lshr(Mult2).zext(BW + 1); // AD = A / D
4645 APInt Mod(BW + 1, 0);
4646 Mod.set(BW - Mult2); // Mod = N / D
4647 APInt I = AD.multiplicativeInverse(Mod);
4648
4649 // 4. Compute the minimum unsigned root of the equation:
4650 // I * (B / D) mod (N / D)
4651 APInt Result = (I * B.lshr(Mult2).zext(BW + 1)).urem(Mod);
4652
4653 // The result is guaranteed to be less than 2^BW so we may truncate it to BW
4654 // bits.
4655 return SE.getConstant(Result.trunc(BW));
4656}
Chris Lattner53e677a2004-04-02 20:23:17 +00004657
4658/// SolveQuadraticEquation - Find the roots of the quadratic equation for the
4659/// given quadratic chrec {L,+,M,+,N}. This returns either the two roots (which
4660/// might be the same) or two SCEVCouldNotCompute objects.
4661///
Dan Gohman0bba49c2009-07-07 17:06:11 +00004662static std::pair<const SCEV *,const SCEV *>
Dan Gohman246b2562007-10-22 18:31:58 +00004663SolveQuadraticEquation(const SCEVAddRecExpr *AddRec, ScalarEvolution &SE) {
Chris Lattner53e677a2004-04-02 20:23:17 +00004664 assert(AddRec->getNumOperands() == 3 && "This is not a quadratic chrec!");
Dan Gohman35738ac2009-05-04 22:30:44 +00004665 const SCEVConstant *LC = dyn_cast<SCEVConstant>(AddRec->getOperand(0));
4666 const SCEVConstant *MC = dyn_cast<SCEVConstant>(AddRec->getOperand(1));
4667 const SCEVConstant *NC = dyn_cast<SCEVConstant>(AddRec->getOperand(2));
Misha Brukman2b37d7c2005-04-21 21:13:18 +00004668
Chris Lattner53e677a2004-04-02 20:23:17 +00004669 // We currently can only solve this if the coefficients are constants.
Reid Spencere8019bb2007-03-01 07:25:48 +00004670 if (!LC || !MC || !NC) {
Dan Gohman35738ac2009-05-04 22:30:44 +00004671 const SCEV *CNC = SE.getCouldNotCompute();
Chris Lattner53e677a2004-04-02 20:23:17 +00004672 return std::make_pair(CNC, CNC);
4673 }
4674
Reid Spencere8019bb2007-03-01 07:25:48 +00004675 uint32_t BitWidth = LC->getValue()->getValue().getBitWidth();
Chris Lattnerfe560b82007-04-15 19:52:49 +00004676 const APInt &L = LC->getValue()->getValue();
4677 const APInt &M = MC->getValue()->getValue();
4678 const APInt &N = NC->getValue()->getValue();
Reid Spencere8019bb2007-03-01 07:25:48 +00004679 APInt Two(BitWidth, 2);
4680 APInt Four(BitWidth, 4);
Misha Brukman2b37d7c2005-04-21 21:13:18 +00004681
Dan Gohman64a845e2009-06-24 04:48:43 +00004682 {
Reid Spencere8019bb2007-03-01 07:25:48 +00004683 using namespace APIntOps;
Zhou Sheng414de4d2007-04-07 17:48:27 +00004684 const APInt& C = L;
Reid Spencere8019bb2007-03-01 07:25:48 +00004685 // Convert from chrec coefficients to polynomial coefficients AX^2+BX+C
4686 // The B coefficient is M-N/2
4687 APInt B(M);
4688 B -= sdiv(N,Two);
Misha Brukman2b37d7c2005-04-21 21:13:18 +00004689
Reid Spencere8019bb2007-03-01 07:25:48 +00004690 // The A coefficient is N/2
Zhou Sheng414de4d2007-04-07 17:48:27 +00004691 APInt A(N.sdiv(Two));
Chris Lattner53e677a2004-04-02 20:23:17 +00004692
Reid Spencere8019bb2007-03-01 07:25:48 +00004693 // Compute the B^2-4ac term.
4694 APInt SqrtTerm(B);
4695 SqrtTerm *= B;
4696 SqrtTerm -= Four * (A * C);
Chris Lattner53e677a2004-04-02 20:23:17 +00004697
Reid Spencere8019bb2007-03-01 07:25:48 +00004698 // Compute sqrt(B^2-4ac). This is guaranteed to be the nearest
4699 // integer value or else APInt::sqrt() will assert.
4700 APInt SqrtVal(SqrtTerm.sqrt());
Misha Brukman2b37d7c2005-04-21 21:13:18 +00004701
Dan Gohman64a845e2009-06-24 04:48:43 +00004702 // Compute the two solutions for the quadratic formula.
Reid Spencere8019bb2007-03-01 07:25:48 +00004703 // The divisions must be performed as signed divisions.
4704 APInt NegB(-B);
Reid Spencer3e35c8d2007-04-16 02:24:41 +00004705 APInt TwoA( A << 1 );
Nick Lewycky8f4d5eb2008-11-03 02:43:49 +00004706 if (TwoA.isMinValue()) {
Dan Gohman35738ac2009-05-04 22:30:44 +00004707 const SCEV *CNC = SE.getCouldNotCompute();
Nick Lewycky8f4d5eb2008-11-03 02:43:49 +00004708 return std::make_pair(CNC, CNC);
4709 }
4710
Owen Andersone922c022009-07-22 00:24:57 +00004711 LLVMContext &Context = SE.getContext();
Owen Anderson76f600b2009-07-06 22:37:39 +00004712
4713 ConstantInt *Solution1 =
Owen Andersoneed707b2009-07-24 23:12:02 +00004714 ConstantInt::get(Context, (NegB + SqrtVal).sdiv(TwoA));
Owen Anderson76f600b2009-07-06 22:37:39 +00004715 ConstantInt *Solution2 =
Owen Andersoneed707b2009-07-24 23:12:02 +00004716 ConstantInt::get(Context, (NegB - SqrtVal).sdiv(TwoA));
Misha Brukman2b37d7c2005-04-21 21:13:18 +00004717
Dan Gohman64a845e2009-06-24 04:48:43 +00004718 return std::make_pair(SE.getConstant(Solution1),
Dan Gohman246b2562007-10-22 18:31:58 +00004719 SE.getConstant(Solution2));
Reid Spencere8019bb2007-03-01 07:25:48 +00004720 } // end APIntOps namespace
Chris Lattner53e677a2004-04-02 20:23:17 +00004721}
4722
4723/// HowFarToZero - Return the number of times a backedge comparing the specified
Dan Gohman86fbf2f2009-06-06 14:37:11 +00004724/// value to zero will execute. If not computable, return CouldNotCompute.
Dan Gohmanf6d009f2010-02-24 17:31:30 +00004725ScalarEvolution::BackedgeTakenInfo
4726ScalarEvolution::HowFarToZero(const SCEV *V, const Loop *L) {
Chris Lattner53e677a2004-04-02 20:23:17 +00004727 // If the value is a constant
Dan Gohman622ed672009-05-04 22:02:23 +00004728 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(V)) {
Chris Lattner53e677a2004-04-02 20:23:17 +00004729 // If the value is already zero, the branch will execute zero times.
Reid Spencercae57542007-03-02 00:28:52 +00004730 if (C->getValue()->isZero()) return C;
Dan Gohman1c343752009-06-27 21:21:31 +00004731 return getCouldNotCompute(); // Otherwise it will loop infinitely.
Chris Lattner53e677a2004-04-02 20:23:17 +00004732 }
4733
Dan Gohman35738ac2009-05-04 22:30:44 +00004734 const SCEVAddRecExpr *AddRec = dyn_cast<SCEVAddRecExpr>(V);
Chris Lattner53e677a2004-04-02 20:23:17 +00004735 if (!AddRec || AddRec->getLoop() != L)
Dan Gohman1c343752009-06-27 21:21:31 +00004736 return getCouldNotCompute();
Chris Lattner53e677a2004-04-02 20:23:17 +00004737
4738 if (AddRec->isAffine()) {
Wojciech Matyjewiczde0f2382008-07-20 15:55:14 +00004739 // If this is an affine expression, the execution count of this branch is
4740 // the minimum unsigned root of the following equation:
Chris Lattner53e677a2004-04-02 20:23:17 +00004741 //
Wojciech Matyjewiczde0f2382008-07-20 15:55:14 +00004742 // Start + Step*N = 0 (mod 2^BW)
Chris Lattner53e677a2004-04-02 20:23:17 +00004743 //
Wojciech Matyjewiczde0f2382008-07-20 15:55:14 +00004744 // equivalent to:
4745 //
4746 // Step*N = -Start (mod 2^BW)
4747 //
4748 // where BW is the common bit width of Start and Step.
4749
Chris Lattner53e677a2004-04-02 20:23:17 +00004750 // Get the initial value for the loop.
Dan Gohman64a845e2009-06-24 04:48:43 +00004751 const SCEV *Start = getSCEVAtScope(AddRec->getStart(),
4752 L->getParentLoop());
4753 const SCEV *Step = getSCEVAtScope(AddRec->getOperand(1),
4754 L->getParentLoop());
Chris Lattner53e677a2004-04-02 20:23:17 +00004755
Dan Gohman622ed672009-05-04 22:02:23 +00004756 if (const SCEVConstant *StepC = dyn_cast<SCEVConstant>(Step)) {
Wojciech Matyjewiczde0f2382008-07-20 15:55:14 +00004757 // For now we handle only constant steps.
Chris Lattner53e677a2004-04-02 20:23:17 +00004758
Wojciech Matyjewiczde0f2382008-07-20 15:55:14 +00004759 // First, handle unitary steps.
4760 if (StepC->getValue()->equalsInt(1)) // 1*N = -Start (mod 2^BW), so:
Dan Gohman4c0d5d52009-08-20 16:42:55 +00004761 return getNegativeSCEV(Start); // N = -Start (as unsigned)
Wojciech Matyjewiczde0f2382008-07-20 15:55:14 +00004762 if (StepC->getValue()->isAllOnesValue()) // -1*N = -Start (mod 2^BW), so:
4763 return Start; // N = Start (as unsigned)
4764
4765 // Then, try to solve the above equation provided that Start is constant.
Dan Gohman622ed672009-05-04 22:02:23 +00004766 if (const SCEVConstant *StartC = dyn_cast<SCEVConstant>(Start))
Wojciech Matyjewiczde0f2382008-07-20 15:55:14 +00004767 return SolveLinEquationWithOverflow(StepC->getValue()->getValue(),
Dan Gohmanf8a8be82009-04-21 23:15:49 +00004768 -StartC->getValue()->getValue(),
4769 *this);
Chris Lattner53e677a2004-04-02 20:23:17 +00004770 }
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00004771 } else if (AddRec->isQuadratic() && AddRec->getType()->isIntegerTy()) {
Chris Lattner53e677a2004-04-02 20:23:17 +00004772 // If this is a quadratic (3-term) AddRec {L,+,M,+,N}, find the roots of
4773 // the quadratic equation to solve it.
Dan Gohman0bba49c2009-07-07 17:06:11 +00004774 std::pair<const SCEV *,const SCEV *> Roots = SolveQuadraticEquation(AddRec,
Dan Gohmanf8a8be82009-04-21 23:15:49 +00004775 *this);
Dan Gohman35738ac2009-05-04 22:30:44 +00004776 const SCEVConstant *R1 = dyn_cast<SCEVConstant>(Roots.first);
4777 const SCEVConstant *R2 = dyn_cast<SCEVConstant>(Roots.second);
Chris Lattner53e677a2004-04-02 20:23:17 +00004778 if (R1) {
Chris Lattnerd18d9dc2004-04-02 20:26:46 +00004779#if 0
David Greene25e0e872009-12-23 22:18:14 +00004780 dbgs() << "HFTZ: " << *V << " - sol#1: " << *R1
Dan Gohmanb7ef7292009-04-21 00:47:46 +00004781 << " sol#2: " << *R2 << "\n";
Chris Lattnerd18d9dc2004-04-02 20:26:46 +00004782#endif
Chris Lattner53e677a2004-04-02 20:23:17 +00004783 // Pick the smallest positive root value.
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00004784 if (ConstantInt *CB =
Owen Andersonbaf3c402009-07-29 18:55:55 +00004785 dyn_cast<ConstantInt>(ConstantExpr::getICmp(ICmpInst::ICMP_ULT,
Reid Spencere4d87aa2006-12-23 06:05:41 +00004786 R1->getValue(), R2->getValue()))) {
Reid Spencer579dca12007-01-12 04:24:46 +00004787 if (CB->getZExtValue() == false)
Chris Lattner53e677a2004-04-02 20:23:17 +00004788 std::swap(R1, R2); // R1 is the minimum root now.
Misha Brukman2b37d7c2005-04-21 21:13:18 +00004789
Chris Lattner53e677a2004-04-02 20:23:17 +00004790 // We can only use this value if the chrec ends up with an exact zero
4791 // value at this index. When solving for "X*X != 5", for example, we
4792 // should not accept a root of 2.
Dan Gohman0bba49c2009-07-07 17:06:11 +00004793 const SCEV *Val = AddRec->evaluateAtIteration(R1, *this);
Dan Gohmancfeb6a42008-06-18 16:23:07 +00004794 if (Val->isZero())
4795 return R1; // We found a quadratic root!
Chris Lattner53e677a2004-04-02 20:23:17 +00004796 }
4797 }
4798 }
Misha Brukman2b37d7c2005-04-21 21:13:18 +00004799
Dan Gohman1c343752009-06-27 21:21:31 +00004800 return getCouldNotCompute();
Chris Lattner53e677a2004-04-02 20:23:17 +00004801}
4802
4803/// HowFarToNonZero - Return the number of times a backedge checking the
4804/// specified value for nonzero will execute. If not computable, return
Dan Gohman86fbf2f2009-06-06 14:37:11 +00004805/// CouldNotCompute
Dan Gohmanf6d009f2010-02-24 17:31:30 +00004806ScalarEvolution::BackedgeTakenInfo
4807ScalarEvolution::HowFarToNonZero(const SCEV *V, const Loop *L) {
Chris Lattner53e677a2004-04-02 20:23:17 +00004808 // Loops that look like: while (X == 0) are very strange indeed. We don't
4809 // handle them yet except for the trivial case. This could be expanded in the
4810 // future as needed.
Misha Brukman2b37d7c2005-04-21 21:13:18 +00004811
Chris Lattner53e677a2004-04-02 20:23:17 +00004812 // If the value is a constant, check to see if it is known to be non-zero
4813 // already. If so, the backedge will execute zero times.
Dan Gohman622ed672009-05-04 22:02:23 +00004814 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(V)) {
Nick Lewycky39442af2008-02-21 09:14:53 +00004815 if (!C->getValue()->isNullValue())
Dan Gohmandeff6212010-05-03 22:09:21 +00004816 return getConstant(C->getType(), 0);
Dan Gohman1c343752009-06-27 21:21:31 +00004817 return getCouldNotCompute(); // Otherwise it will loop infinitely.
Chris Lattner53e677a2004-04-02 20:23:17 +00004818 }
Misha Brukman2b37d7c2005-04-21 21:13:18 +00004819
Chris Lattner53e677a2004-04-02 20:23:17 +00004820 // We could implement others, but I really doubt anyone writes loops like
4821 // this, and if they did, they would already be constant folded.
Dan Gohman1c343752009-06-27 21:21:31 +00004822 return getCouldNotCompute();
Chris Lattner53e677a2004-04-02 20:23:17 +00004823}
4824
Dan Gohmanfd6edef2008-09-15 22:18:04 +00004825/// getPredecessorWithUniqueSuccessorForBB - Return a predecessor of BB
4826/// (which may not be an immediate predecessor) which has exactly one
4827/// successor from which BB is reachable, or null if no such block is
4828/// found.
4829///
Dan Gohman005752b2010-04-15 16:19:08 +00004830std::pair<BasicBlock *, BasicBlock *>
Dan Gohmanf8a8be82009-04-21 23:15:49 +00004831ScalarEvolution::getPredecessorWithUniqueSuccessorForBB(BasicBlock *BB) {
Dan Gohman3d739fe2009-04-30 20:48:53 +00004832 // If the block has a unique predecessor, then there is no path from the
4833 // predecessor to the block that does not go through the direct edge
4834 // from the predecessor to the block.
Dan Gohmanfd6edef2008-09-15 22:18:04 +00004835 if (BasicBlock *Pred = BB->getSinglePredecessor())
Dan Gohman005752b2010-04-15 16:19:08 +00004836 return std::make_pair(Pred, BB);
Dan Gohmanfd6edef2008-09-15 22:18:04 +00004837
4838 // A loop's header is defined to be a block that dominates the loop.
Dan Gohman859b4822009-05-18 15:36:09 +00004839 // If the header has a unique predecessor outside the loop, it must be
4840 // a block that has exactly one successor that can reach the loop.
Dan Gohmanf8a8be82009-04-21 23:15:49 +00004841 if (Loop *L = LI->getLoopFor(BB))
Dan Gohman605c14f2010-06-22 23:43:28 +00004842 return std::make_pair(L->getLoopPredecessor(), L->getHeader());
Dan Gohmanfd6edef2008-09-15 22:18:04 +00004843
Dan Gohman005752b2010-04-15 16:19:08 +00004844 return std::pair<BasicBlock *, BasicBlock *>();
Dan Gohmanfd6edef2008-09-15 22:18:04 +00004845}
4846
Dan Gohman763bad12009-06-20 00:35:32 +00004847/// HasSameValue - SCEV structural equivalence is usually sufficient for
4848/// testing whether two expressions are equal, however for the purposes of
4849/// looking for a condition guarding a loop, it can be useful to be a little
4850/// more general, since a front-end may have replicated the controlling
4851/// expression.
4852///
Dan Gohman0bba49c2009-07-07 17:06:11 +00004853static bool HasSameValue(const SCEV *A, const SCEV *B) {
Dan Gohman763bad12009-06-20 00:35:32 +00004854 // Quick check to see if they are the same SCEV.
4855 if (A == B) return true;
4856
4857 // Otherwise, if they're both SCEVUnknown, it's possible that they hold
4858 // two different instructions with the same value. Check for this case.
4859 if (const SCEVUnknown *AU = dyn_cast<SCEVUnknown>(A))
4860 if (const SCEVUnknown *BU = dyn_cast<SCEVUnknown>(B))
4861 if (const Instruction *AI = dyn_cast<Instruction>(AU->getValue()))
4862 if (const Instruction *BI = dyn_cast<Instruction>(BU->getValue()))
Dan Gohman041de422009-08-25 17:56:57 +00004863 if (AI->isIdenticalTo(BI) && !AI->mayReadFromMemory())
Dan Gohman763bad12009-06-20 00:35:32 +00004864 return true;
4865
4866 // Otherwise assume they may have a different value.
4867 return false;
4868}
4869
Dan Gohmane9796502010-04-24 01:28:42 +00004870/// SimplifyICmpOperands - Simplify LHS and RHS in a comparison with
4871/// predicate Pred. Return true iff any changes were made.
4872///
4873bool ScalarEvolution::SimplifyICmpOperands(ICmpInst::Predicate &Pred,
4874 const SCEV *&LHS, const SCEV *&RHS) {
4875 bool Changed = false;
4876
4877 // Canonicalize a constant to the right side.
4878 if (const SCEVConstant *LHSC = dyn_cast<SCEVConstant>(LHS)) {
4879 // Check for both operands constant.
4880 if (const SCEVConstant *RHSC = dyn_cast<SCEVConstant>(RHS)) {
4881 if (ConstantExpr::getICmp(Pred,
4882 LHSC->getValue(),
4883 RHSC->getValue())->isNullValue())
4884 goto trivially_false;
4885 else
4886 goto trivially_true;
4887 }
4888 // Otherwise swap the operands to put the constant on the right.
4889 std::swap(LHS, RHS);
4890 Pred = ICmpInst::getSwappedPredicate(Pred);
4891 Changed = true;
4892 }
4893
4894 // If we're comparing an addrec with a value which is loop-invariant in the
Dan Gohman3abb69c2010-05-03 17:00:11 +00004895 // addrec's loop, put the addrec on the left. Also make a dominance check,
4896 // as both operands could be addrecs loop-invariant in each other's loop.
4897 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(RHS)) {
4898 const Loop *L = AR->getLoop();
4899 if (LHS->isLoopInvariant(L) && LHS->properlyDominates(L->getHeader(), DT)) {
Dan Gohmane9796502010-04-24 01:28:42 +00004900 std::swap(LHS, RHS);
4901 Pred = ICmpInst::getSwappedPredicate(Pred);
4902 Changed = true;
4903 }
Dan Gohman3abb69c2010-05-03 17:00:11 +00004904 }
Dan Gohmane9796502010-04-24 01:28:42 +00004905
4906 // If there's a constant operand, canonicalize comparisons with boundary
4907 // cases, and canonicalize *-or-equal comparisons to regular comparisons.
4908 if (const SCEVConstant *RC = dyn_cast<SCEVConstant>(RHS)) {
4909 const APInt &RA = RC->getValue()->getValue();
4910 switch (Pred) {
4911 default: llvm_unreachable("Unexpected ICmpInst::Predicate value!");
4912 case ICmpInst::ICMP_EQ:
4913 case ICmpInst::ICMP_NE:
4914 break;
4915 case ICmpInst::ICMP_UGE:
4916 if ((RA - 1).isMinValue()) {
4917 Pred = ICmpInst::ICMP_NE;
4918 RHS = getConstant(RA - 1);
4919 Changed = true;
4920 break;
4921 }
4922 if (RA.isMaxValue()) {
4923 Pred = ICmpInst::ICMP_EQ;
4924 Changed = true;
4925 break;
4926 }
4927 if (RA.isMinValue()) goto trivially_true;
4928
4929 Pred = ICmpInst::ICMP_UGT;
4930 RHS = getConstant(RA - 1);
4931 Changed = true;
4932 break;
4933 case ICmpInst::ICMP_ULE:
4934 if ((RA + 1).isMaxValue()) {
4935 Pred = ICmpInst::ICMP_NE;
4936 RHS = getConstant(RA + 1);
4937 Changed = true;
4938 break;
4939 }
4940 if (RA.isMinValue()) {
4941 Pred = ICmpInst::ICMP_EQ;
4942 Changed = true;
4943 break;
4944 }
4945 if (RA.isMaxValue()) goto trivially_true;
4946
4947 Pred = ICmpInst::ICMP_ULT;
4948 RHS = getConstant(RA + 1);
4949 Changed = true;
4950 break;
4951 case ICmpInst::ICMP_SGE:
4952 if ((RA - 1).isMinSignedValue()) {
4953 Pred = ICmpInst::ICMP_NE;
4954 RHS = getConstant(RA - 1);
4955 Changed = true;
4956 break;
4957 }
4958 if (RA.isMaxSignedValue()) {
4959 Pred = ICmpInst::ICMP_EQ;
4960 Changed = true;
4961 break;
4962 }
4963 if (RA.isMinSignedValue()) goto trivially_true;
4964
4965 Pred = ICmpInst::ICMP_SGT;
4966 RHS = getConstant(RA - 1);
4967 Changed = true;
4968 break;
4969 case ICmpInst::ICMP_SLE:
4970 if ((RA + 1).isMaxSignedValue()) {
4971 Pred = ICmpInst::ICMP_NE;
4972 RHS = getConstant(RA + 1);
4973 Changed = true;
4974 break;
4975 }
4976 if (RA.isMinSignedValue()) {
4977 Pred = ICmpInst::ICMP_EQ;
4978 Changed = true;
4979 break;
4980 }
4981 if (RA.isMaxSignedValue()) goto trivially_true;
4982
4983 Pred = ICmpInst::ICMP_SLT;
4984 RHS = getConstant(RA + 1);
4985 Changed = true;
4986 break;
4987 case ICmpInst::ICMP_UGT:
4988 if (RA.isMinValue()) {
4989 Pred = ICmpInst::ICMP_NE;
4990 Changed = true;
4991 break;
4992 }
4993 if ((RA + 1).isMaxValue()) {
4994 Pred = ICmpInst::ICMP_EQ;
4995 RHS = getConstant(RA + 1);
4996 Changed = true;
4997 break;
4998 }
4999 if (RA.isMaxValue()) goto trivially_false;
5000 break;
5001 case ICmpInst::ICMP_ULT:
5002 if (RA.isMaxValue()) {
5003 Pred = ICmpInst::ICMP_NE;
5004 Changed = true;
5005 break;
5006 }
5007 if ((RA - 1).isMinValue()) {
5008 Pred = ICmpInst::ICMP_EQ;
5009 RHS = getConstant(RA - 1);
5010 Changed = true;
5011 break;
5012 }
5013 if (RA.isMinValue()) goto trivially_false;
5014 break;
5015 case ICmpInst::ICMP_SGT:
5016 if (RA.isMinSignedValue()) {
5017 Pred = ICmpInst::ICMP_NE;
5018 Changed = true;
5019 break;
5020 }
5021 if ((RA + 1).isMaxSignedValue()) {
5022 Pred = ICmpInst::ICMP_EQ;
5023 RHS = getConstant(RA + 1);
5024 Changed = true;
5025 break;
5026 }
5027 if (RA.isMaxSignedValue()) goto trivially_false;
5028 break;
5029 case ICmpInst::ICMP_SLT:
5030 if (RA.isMaxSignedValue()) {
5031 Pred = ICmpInst::ICMP_NE;
5032 Changed = true;
5033 break;
5034 }
5035 if ((RA - 1).isMinSignedValue()) {
5036 Pred = ICmpInst::ICMP_EQ;
5037 RHS = getConstant(RA - 1);
5038 Changed = true;
5039 break;
5040 }
5041 if (RA.isMinSignedValue()) goto trivially_false;
5042 break;
5043 }
5044 }
5045
5046 // Check for obvious equality.
5047 if (HasSameValue(LHS, RHS)) {
5048 if (ICmpInst::isTrueWhenEqual(Pred))
5049 goto trivially_true;
5050 if (ICmpInst::isFalseWhenEqual(Pred))
5051 goto trivially_false;
5052 }
5053
Dan Gohman03557dc2010-05-03 16:35:17 +00005054 // If possible, canonicalize GE/LE comparisons to GT/LT comparisons, by
5055 // adding or subtracting 1 from one of the operands.
5056 switch (Pred) {
5057 case ICmpInst::ICMP_SLE:
5058 if (!getSignedRange(RHS).getSignedMax().isMaxSignedValue()) {
5059 RHS = getAddExpr(getConstant(RHS->getType(), 1, true), RHS,
5060 /*HasNUW=*/false, /*HasNSW=*/true);
5061 Pred = ICmpInst::ICMP_SLT;
5062 Changed = true;
5063 } else if (!getSignedRange(LHS).getSignedMin().isMinSignedValue()) {
Dan Gohmanf16c6802010-05-03 20:23:47 +00005064 LHS = getAddExpr(getConstant(RHS->getType(), (uint64_t)-1, true), LHS,
Dan Gohman03557dc2010-05-03 16:35:17 +00005065 /*HasNUW=*/false, /*HasNSW=*/true);
5066 Pred = ICmpInst::ICMP_SLT;
5067 Changed = true;
5068 }
5069 break;
5070 case ICmpInst::ICMP_SGE:
5071 if (!getSignedRange(RHS).getSignedMin().isMinSignedValue()) {
Dan Gohmanf16c6802010-05-03 20:23:47 +00005072 RHS = getAddExpr(getConstant(RHS->getType(), (uint64_t)-1, true), RHS,
Dan Gohman03557dc2010-05-03 16:35:17 +00005073 /*HasNUW=*/false, /*HasNSW=*/true);
5074 Pred = ICmpInst::ICMP_SGT;
5075 Changed = true;
5076 } else if (!getSignedRange(LHS).getSignedMax().isMaxSignedValue()) {
5077 LHS = getAddExpr(getConstant(RHS->getType(), 1, true), LHS,
5078 /*HasNUW=*/false, /*HasNSW=*/true);
5079 Pred = ICmpInst::ICMP_SGT;
5080 Changed = true;
5081 }
5082 break;
5083 case ICmpInst::ICMP_ULE:
5084 if (!getUnsignedRange(RHS).getUnsignedMax().isMaxValue()) {
Dan Gohmanf16c6802010-05-03 20:23:47 +00005085 RHS = getAddExpr(getConstant(RHS->getType(), 1, true), RHS,
Dan Gohman03557dc2010-05-03 16:35:17 +00005086 /*HasNUW=*/true, /*HasNSW=*/false);
5087 Pred = ICmpInst::ICMP_ULT;
5088 Changed = true;
5089 } else if (!getUnsignedRange(LHS).getUnsignedMin().isMinValue()) {
Dan Gohmanf16c6802010-05-03 20:23:47 +00005090 LHS = getAddExpr(getConstant(RHS->getType(), (uint64_t)-1, true), LHS,
Dan Gohman03557dc2010-05-03 16:35:17 +00005091 /*HasNUW=*/true, /*HasNSW=*/false);
5092 Pred = ICmpInst::ICMP_ULT;
5093 Changed = true;
5094 }
5095 break;
5096 case ICmpInst::ICMP_UGE:
5097 if (!getUnsignedRange(RHS).getUnsignedMin().isMinValue()) {
Dan Gohmanf16c6802010-05-03 20:23:47 +00005098 RHS = getAddExpr(getConstant(RHS->getType(), (uint64_t)-1, true), RHS,
Dan Gohman03557dc2010-05-03 16:35:17 +00005099 /*HasNUW=*/true, /*HasNSW=*/false);
5100 Pred = ICmpInst::ICMP_UGT;
5101 Changed = true;
5102 } else if (!getUnsignedRange(LHS).getUnsignedMax().isMaxValue()) {
Dan Gohmanf16c6802010-05-03 20:23:47 +00005103 LHS = getAddExpr(getConstant(RHS->getType(), 1, true), LHS,
Dan Gohman03557dc2010-05-03 16:35:17 +00005104 /*HasNUW=*/true, /*HasNSW=*/false);
5105 Pred = ICmpInst::ICMP_UGT;
5106 Changed = true;
5107 }
5108 break;
5109 default:
5110 break;
5111 }
5112
Dan Gohmane9796502010-04-24 01:28:42 +00005113 // TODO: More simplifications are possible here.
5114
5115 return Changed;
5116
5117trivially_true:
5118 // Return 0 == 0.
5119 LHS = RHS = getConstant(Type::getInt1Ty(getContext()), 0);
5120 Pred = ICmpInst::ICMP_EQ;
5121 return true;
5122
5123trivially_false:
5124 // Return 0 != 0.
5125 LHS = RHS = getConstant(Type::getInt1Ty(getContext()), 0);
5126 Pred = ICmpInst::ICMP_NE;
5127 return true;
5128}
5129
Dan Gohman85b05a22009-07-13 21:35:55 +00005130bool ScalarEvolution::isKnownNegative(const SCEV *S) {
5131 return getSignedRange(S).getSignedMax().isNegative();
5132}
5133
5134bool ScalarEvolution::isKnownPositive(const SCEV *S) {
5135 return getSignedRange(S).getSignedMin().isStrictlyPositive();
5136}
5137
5138bool ScalarEvolution::isKnownNonNegative(const SCEV *S) {
5139 return !getSignedRange(S).getSignedMin().isNegative();
5140}
5141
5142bool ScalarEvolution::isKnownNonPositive(const SCEV *S) {
5143 return !getSignedRange(S).getSignedMax().isStrictlyPositive();
5144}
5145
5146bool ScalarEvolution::isKnownNonZero(const SCEV *S) {
5147 return isKnownNegative(S) || isKnownPositive(S);
5148}
5149
5150bool ScalarEvolution::isKnownPredicate(ICmpInst::Predicate Pred,
5151 const SCEV *LHS, const SCEV *RHS) {
Dan Gohmand19bba62010-04-24 01:38:36 +00005152 // Canonicalize the inputs first.
5153 (void)SimplifyICmpOperands(Pred, LHS, RHS);
5154
Dan Gohman53c66ea2010-04-11 22:16:48 +00005155 // If LHS or RHS is an addrec, check to see if the condition is true in
5156 // every iteration of the loop.
5157 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(LHS))
5158 if (isLoopEntryGuardedByCond(
5159 AR->getLoop(), Pred, AR->getStart(), RHS) &&
5160 isLoopBackedgeGuardedByCond(
Dan Gohmanacd8cab2010-05-04 01:12:27 +00005161 AR->getLoop(), Pred, AR->getPostIncExpr(*this), RHS))
Dan Gohman53c66ea2010-04-11 22:16:48 +00005162 return true;
5163 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(RHS))
5164 if (isLoopEntryGuardedByCond(
5165 AR->getLoop(), Pred, LHS, AR->getStart()) &&
5166 isLoopBackedgeGuardedByCond(
Dan Gohmanacd8cab2010-05-04 01:12:27 +00005167 AR->getLoop(), Pred, LHS, AR->getPostIncExpr(*this)))
Dan Gohman53c66ea2010-04-11 22:16:48 +00005168 return true;
Dan Gohman85b05a22009-07-13 21:35:55 +00005169
Dan Gohman53c66ea2010-04-11 22:16:48 +00005170 // Otherwise see what can be done with known constant ranges.
5171 return isKnownPredicateWithRanges(Pred, LHS, RHS);
5172}
5173
5174bool
5175ScalarEvolution::isKnownPredicateWithRanges(ICmpInst::Predicate Pred,
5176 const SCEV *LHS, const SCEV *RHS) {
Dan Gohman85b05a22009-07-13 21:35:55 +00005177 if (HasSameValue(LHS, RHS))
5178 return ICmpInst::isTrueWhenEqual(Pred);
5179
Dan Gohman53c66ea2010-04-11 22:16:48 +00005180 // This code is split out from isKnownPredicate because it is called from
5181 // within isLoopEntryGuardedByCond.
Dan Gohman85b05a22009-07-13 21:35:55 +00005182 switch (Pred) {
5183 default:
Dan Gohman850f7912009-07-16 17:34:36 +00005184 llvm_unreachable("Unexpected ICmpInst::Predicate value!");
Dan Gohman85b05a22009-07-13 21:35:55 +00005185 break;
5186 case ICmpInst::ICMP_SGT:
5187 Pred = ICmpInst::ICMP_SLT;
5188 std::swap(LHS, RHS);
5189 case ICmpInst::ICMP_SLT: {
5190 ConstantRange LHSRange = getSignedRange(LHS);
5191 ConstantRange RHSRange = getSignedRange(RHS);
5192 if (LHSRange.getSignedMax().slt(RHSRange.getSignedMin()))
5193 return true;
5194 if (LHSRange.getSignedMin().sge(RHSRange.getSignedMax()))
5195 return false;
Dan Gohman85b05a22009-07-13 21:35:55 +00005196 break;
5197 }
5198 case ICmpInst::ICMP_SGE:
5199 Pred = ICmpInst::ICMP_SLE;
5200 std::swap(LHS, RHS);
5201 case ICmpInst::ICMP_SLE: {
5202 ConstantRange LHSRange = getSignedRange(LHS);
5203 ConstantRange RHSRange = getSignedRange(RHS);
5204 if (LHSRange.getSignedMax().sle(RHSRange.getSignedMin()))
5205 return true;
5206 if (LHSRange.getSignedMin().sgt(RHSRange.getSignedMax()))
5207 return false;
Dan Gohman85b05a22009-07-13 21:35:55 +00005208 break;
5209 }
5210 case ICmpInst::ICMP_UGT:
5211 Pred = ICmpInst::ICMP_ULT;
5212 std::swap(LHS, RHS);
5213 case ICmpInst::ICMP_ULT: {
5214 ConstantRange LHSRange = getUnsignedRange(LHS);
5215 ConstantRange RHSRange = getUnsignedRange(RHS);
5216 if (LHSRange.getUnsignedMax().ult(RHSRange.getUnsignedMin()))
5217 return true;
5218 if (LHSRange.getUnsignedMin().uge(RHSRange.getUnsignedMax()))
5219 return false;
Dan Gohman85b05a22009-07-13 21:35:55 +00005220 break;
5221 }
5222 case ICmpInst::ICMP_UGE:
5223 Pred = ICmpInst::ICMP_ULE;
5224 std::swap(LHS, RHS);
5225 case ICmpInst::ICMP_ULE: {
5226 ConstantRange LHSRange = getUnsignedRange(LHS);
5227 ConstantRange RHSRange = getUnsignedRange(RHS);
5228 if (LHSRange.getUnsignedMax().ule(RHSRange.getUnsignedMin()))
5229 return true;
5230 if (LHSRange.getUnsignedMin().ugt(RHSRange.getUnsignedMax()))
5231 return false;
Dan Gohman85b05a22009-07-13 21:35:55 +00005232 break;
5233 }
5234 case ICmpInst::ICMP_NE: {
5235 if (getUnsignedRange(LHS).intersectWith(getUnsignedRange(RHS)).isEmptySet())
5236 return true;
5237 if (getSignedRange(LHS).intersectWith(getSignedRange(RHS)).isEmptySet())
5238 return true;
5239
5240 const SCEV *Diff = getMinusSCEV(LHS, RHS);
5241 if (isKnownNonZero(Diff))
5242 return true;
5243 break;
5244 }
5245 case ICmpInst::ICMP_EQ:
Dan Gohmanf117ed42009-07-20 23:54:43 +00005246 // The check at the top of the function catches the case where
5247 // the values are known to be equal.
Dan Gohman85b05a22009-07-13 21:35:55 +00005248 break;
5249 }
5250 return false;
5251}
5252
5253/// isLoopBackedgeGuardedByCond - Test whether the backedge of the loop is
5254/// protected by a conditional between LHS and RHS. This is used to
5255/// to eliminate casts.
5256bool
5257ScalarEvolution::isLoopBackedgeGuardedByCond(const Loop *L,
5258 ICmpInst::Predicate Pred,
5259 const SCEV *LHS, const SCEV *RHS) {
5260 // Interpret a null as meaning no loop, where there is obviously no guard
5261 // (interprocedural conditions notwithstanding).
5262 if (!L) return true;
5263
5264 BasicBlock *Latch = L->getLoopLatch();
5265 if (!Latch)
5266 return false;
5267
5268 BranchInst *LoopContinuePredicate =
5269 dyn_cast<BranchInst>(Latch->getTerminator());
5270 if (!LoopContinuePredicate ||
5271 LoopContinuePredicate->isUnconditional())
5272 return false;
5273
Dan Gohmanaf08a362010-08-10 23:46:30 +00005274 return isImpliedCond(Pred, LHS, RHS,
5275 LoopContinuePredicate->getCondition(),
Dan Gohman0f4b2852009-07-21 23:03:19 +00005276 LoopContinuePredicate->getSuccessor(0) != L->getHeader());
Dan Gohman85b05a22009-07-13 21:35:55 +00005277}
5278
Dan Gohman3948d0b2010-04-11 19:27:13 +00005279/// isLoopEntryGuardedByCond - Test whether entry to the loop is protected
Dan Gohman85b05a22009-07-13 21:35:55 +00005280/// by a conditional between LHS and RHS. This is used to help avoid max
5281/// expressions in loop trip counts, and to eliminate casts.
5282bool
Dan Gohman3948d0b2010-04-11 19:27:13 +00005283ScalarEvolution::isLoopEntryGuardedByCond(const Loop *L,
5284 ICmpInst::Predicate Pred,
5285 const SCEV *LHS, const SCEV *RHS) {
Dan Gohman8ea94522009-05-18 16:03:58 +00005286 // Interpret a null as meaning no loop, where there is obviously no guard
5287 // (interprocedural conditions notwithstanding).
5288 if (!L) return false;
5289
Dan Gohman859b4822009-05-18 15:36:09 +00005290 // Starting at the loop predecessor, climb up the predecessor chain, as long
5291 // as there are predecessors that can be found that have unique successors
Dan Gohmanfd6edef2008-09-15 22:18:04 +00005292 // leading to the original header.
Dan Gohman005752b2010-04-15 16:19:08 +00005293 for (std::pair<BasicBlock *, BasicBlock *>
Dan Gohman605c14f2010-06-22 23:43:28 +00005294 Pair(L->getLoopPredecessor(), L->getHeader());
Dan Gohman005752b2010-04-15 16:19:08 +00005295 Pair.first;
5296 Pair = getPredecessorWithUniqueSuccessorForBB(Pair.first)) {
Dan Gohman38372182008-08-12 20:17:31 +00005297
5298 BranchInst *LoopEntryPredicate =
Dan Gohman005752b2010-04-15 16:19:08 +00005299 dyn_cast<BranchInst>(Pair.first->getTerminator());
Dan Gohman38372182008-08-12 20:17:31 +00005300 if (!LoopEntryPredicate ||
5301 LoopEntryPredicate->isUnconditional())
5302 continue;
5303
Dan Gohmanaf08a362010-08-10 23:46:30 +00005304 if (isImpliedCond(Pred, LHS, RHS,
5305 LoopEntryPredicate->getCondition(),
Dan Gohman005752b2010-04-15 16:19:08 +00005306 LoopEntryPredicate->getSuccessor(0) != Pair.second))
Dan Gohman38372182008-08-12 20:17:31 +00005307 return true;
Nick Lewycky59cff122008-07-12 07:41:32 +00005308 }
5309
Dan Gohman38372182008-08-12 20:17:31 +00005310 return false;
Nick Lewycky59cff122008-07-12 07:41:32 +00005311}
5312
Dan Gohman0f4b2852009-07-21 23:03:19 +00005313/// isImpliedCond - Test whether the condition described by Pred, LHS,
5314/// and RHS is true whenever the given Cond value evaluates to true.
Dan Gohmanaf08a362010-08-10 23:46:30 +00005315bool ScalarEvolution::isImpliedCond(ICmpInst::Predicate Pred,
Dan Gohman0f4b2852009-07-21 23:03:19 +00005316 const SCEV *LHS, const SCEV *RHS,
Dan Gohmanaf08a362010-08-10 23:46:30 +00005317 Value *FoundCondValue,
Dan Gohman0f4b2852009-07-21 23:03:19 +00005318 bool Inverse) {
Dan Gohman3f46a3a2010-03-01 17:49:51 +00005319 // Recursively handle And and Or conditions.
Dan Gohmanaf08a362010-08-10 23:46:30 +00005320 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(FoundCondValue)) {
Dan Gohman40a5a1b2009-06-24 01:18:18 +00005321 if (BO->getOpcode() == Instruction::And) {
5322 if (!Inverse)
Dan Gohmanaf08a362010-08-10 23:46:30 +00005323 return isImpliedCond(Pred, LHS, RHS, BO->getOperand(0), Inverse) ||
5324 isImpliedCond(Pred, LHS, RHS, BO->getOperand(1), Inverse);
Dan Gohman40a5a1b2009-06-24 01:18:18 +00005325 } else if (BO->getOpcode() == Instruction::Or) {
5326 if (Inverse)
Dan Gohmanaf08a362010-08-10 23:46:30 +00005327 return isImpliedCond(Pred, LHS, RHS, BO->getOperand(0), Inverse) ||
5328 isImpliedCond(Pred, LHS, RHS, BO->getOperand(1), Inverse);
Dan Gohman40a5a1b2009-06-24 01:18:18 +00005329 }
5330 }
5331
Dan Gohmanaf08a362010-08-10 23:46:30 +00005332 ICmpInst *ICI = dyn_cast<ICmpInst>(FoundCondValue);
Dan Gohman40a5a1b2009-06-24 01:18:18 +00005333 if (!ICI) return false;
5334
Dan Gohman85b05a22009-07-13 21:35:55 +00005335 // Bail if the ICmp's operands' types are wider than the needed type
5336 // before attempting to call getSCEV on them. This avoids infinite
5337 // recursion, since the analysis of widening casts can require loop
5338 // exit condition information for overflow checking, which would
5339 // lead back here.
5340 if (getTypeSizeInBits(LHS->getType()) <
Dan Gohman0f4b2852009-07-21 23:03:19 +00005341 getTypeSizeInBits(ICI->getOperand(0)->getType()))
Dan Gohman85b05a22009-07-13 21:35:55 +00005342 return false;
5343
Dan Gohman0f4b2852009-07-21 23:03:19 +00005344 // Now that we found a conditional branch that dominates the loop, check to
5345 // see if it is the comparison we are looking for.
5346 ICmpInst::Predicate FoundPred;
5347 if (Inverse)
5348 FoundPred = ICI->getInversePredicate();
5349 else
5350 FoundPred = ICI->getPredicate();
5351
5352 const SCEV *FoundLHS = getSCEV(ICI->getOperand(0));
5353 const SCEV *FoundRHS = getSCEV(ICI->getOperand(1));
Dan Gohman85b05a22009-07-13 21:35:55 +00005354
5355 // Balance the types. The case where FoundLHS' type is wider than
5356 // LHS' type is checked for above.
5357 if (getTypeSizeInBits(LHS->getType()) >
5358 getTypeSizeInBits(FoundLHS->getType())) {
5359 if (CmpInst::isSigned(Pred)) {
5360 FoundLHS = getSignExtendExpr(FoundLHS, LHS->getType());
5361 FoundRHS = getSignExtendExpr(FoundRHS, LHS->getType());
5362 } else {
5363 FoundLHS = getZeroExtendExpr(FoundLHS, LHS->getType());
5364 FoundRHS = getZeroExtendExpr(FoundRHS, LHS->getType());
5365 }
5366 }
5367
Dan Gohman0f4b2852009-07-21 23:03:19 +00005368 // Canonicalize the query to match the way instcombine will have
5369 // canonicalized the comparison.
Dan Gohmand4da5af2010-04-24 01:34:53 +00005370 if (SimplifyICmpOperands(Pred, LHS, RHS))
5371 if (LHS == RHS)
Dan Gohman34c3e362010-05-03 18:00:24 +00005372 return CmpInst::isTrueWhenEqual(Pred);
Dan Gohmand4da5af2010-04-24 01:34:53 +00005373 if (SimplifyICmpOperands(FoundPred, FoundLHS, FoundRHS))
5374 if (FoundLHS == FoundRHS)
Dan Gohman34c3e362010-05-03 18:00:24 +00005375 return CmpInst::isFalseWhenEqual(Pred);
Dan Gohman0f4b2852009-07-21 23:03:19 +00005376
5377 // Check to see if we can make the LHS or RHS match.
5378 if (LHS == FoundRHS || RHS == FoundLHS) {
5379 if (isa<SCEVConstant>(RHS)) {
5380 std::swap(FoundLHS, FoundRHS);
5381 FoundPred = ICmpInst::getSwappedPredicate(FoundPred);
5382 } else {
5383 std::swap(LHS, RHS);
5384 Pred = ICmpInst::getSwappedPredicate(Pred);
5385 }
5386 }
5387
5388 // Check whether the found predicate is the same as the desired predicate.
5389 if (FoundPred == Pred)
5390 return isImpliedCondOperands(Pred, LHS, RHS, FoundLHS, FoundRHS);
5391
5392 // Check whether swapping the found predicate makes it the same as the
5393 // desired predicate.
5394 if (ICmpInst::getSwappedPredicate(FoundPred) == Pred) {
5395 if (isa<SCEVConstant>(RHS))
5396 return isImpliedCondOperands(Pred, LHS, RHS, FoundRHS, FoundLHS);
5397 else
5398 return isImpliedCondOperands(ICmpInst::getSwappedPredicate(Pred),
5399 RHS, LHS, FoundLHS, FoundRHS);
5400 }
5401
5402 // Check whether the actual condition is beyond sufficient.
5403 if (FoundPred == ICmpInst::ICMP_EQ)
5404 if (ICmpInst::isTrueWhenEqual(Pred))
5405 if (isImpliedCondOperands(Pred, LHS, RHS, FoundLHS, FoundRHS))
5406 return true;
5407 if (Pred == ICmpInst::ICMP_NE)
5408 if (!ICmpInst::isTrueWhenEqual(FoundPred))
5409 if (isImpliedCondOperands(FoundPred, LHS, RHS, FoundLHS, FoundRHS))
5410 return true;
5411
5412 // Otherwise assume the worst.
5413 return false;
Dan Gohman85b05a22009-07-13 21:35:55 +00005414}
5415
Dan Gohman0f4b2852009-07-21 23:03:19 +00005416/// isImpliedCondOperands - Test whether the condition described by Pred,
Dan Gohman3f46a3a2010-03-01 17:49:51 +00005417/// LHS, and RHS is true whenever the condition described by Pred, FoundLHS,
Dan Gohman0f4b2852009-07-21 23:03:19 +00005418/// and FoundRHS is true.
5419bool ScalarEvolution::isImpliedCondOperands(ICmpInst::Predicate Pred,
5420 const SCEV *LHS, const SCEV *RHS,
5421 const SCEV *FoundLHS,
5422 const SCEV *FoundRHS) {
5423 return isImpliedCondOperandsHelper(Pred, LHS, RHS,
5424 FoundLHS, FoundRHS) ||
5425 // ~x < ~y --> x > y
5426 isImpliedCondOperandsHelper(Pred, LHS, RHS,
5427 getNotSCEV(FoundRHS),
5428 getNotSCEV(FoundLHS));
5429}
5430
5431/// isImpliedCondOperandsHelper - Test whether the condition described by
Dan Gohman3f46a3a2010-03-01 17:49:51 +00005432/// Pred, LHS, and RHS is true whenever the condition described by Pred,
Dan Gohman0f4b2852009-07-21 23:03:19 +00005433/// FoundLHS, and FoundRHS is true.
Dan Gohman85b05a22009-07-13 21:35:55 +00005434bool
Dan Gohman0f4b2852009-07-21 23:03:19 +00005435ScalarEvolution::isImpliedCondOperandsHelper(ICmpInst::Predicate Pred,
5436 const SCEV *LHS, const SCEV *RHS,
5437 const SCEV *FoundLHS,
5438 const SCEV *FoundRHS) {
Dan Gohman85b05a22009-07-13 21:35:55 +00005439 switch (Pred) {
Dan Gohman850f7912009-07-16 17:34:36 +00005440 default: llvm_unreachable("Unexpected ICmpInst::Predicate value!");
5441 case ICmpInst::ICMP_EQ:
5442 case ICmpInst::ICMP_NE:
5443 if (HasSameValue(LHS, FoundLHS) && HasSameValue(RHS, FoundRHS))
5444 return true;
5445 break;
Dan Gohman85b05a22009-07-13 21:35:55 +00005446 case ICmpInst::ICMP_SLT:
Dan Gohman850f7912009-07-16 17:34:36 +00005447 case ICmpInst::ICMP_SLE:
Dan Gohman53c66ea2010-04-11 22:16:48 +00005448 if (isKnownPredicateWithRanges(ICmpInst::ICMP_SLE, LHS, FoundLHS) &&
5449 isKnownPredicateWithRanges(ICmpInst::ICMP_SGE, RHS, FoundRHS))
Dan Gohman85b05a22009-07-13 21:35:55 +00005450 return true;
5451 break;
5452 case ICmpInst::ICMP_SGT:
Dan Gohman850f7912009-07-16 17:34:36 +00005453 case ICmpInst::ICMP_SGE:
Dan Gohman53c66ea2010-04-11 22:16:48 +00005454 if (isKnownPredicateWithRanges(ICmpInst::ICMP_SGE, LHS, FoundLHS) &&
5455 isKnownPredicateWithRanges(ICmpInst::ICMP_SLE, RHS, FoundRHS))
Dan Gohman85b05a22009-07-13 21:35:55 +00005456 return true;
5457 break;
5458 case ICmpInst::ICMP_ULT:
Dan Gohman850f7912009-07-16 17:34:36 +00005459 case ICmpInst::ICMP_ULE:
Dan Gohman53c66ea2010-04-11 22:16:48 +00005460 if (isKnownPredicateWithRanges(ICmpInst::ICMP_ULE, LHS, FoundLHS) &&
5461 isKnownPredicateWithRanges(ICmpInst::ICMP_UGE, RHS, FoundRHS))
Dan Gohman85b05a22009-07-13 21:35:55 +00005462 return true;
5463 break;
5464 case ICmpInst::ICMP_UGT:
Dan Gohman850f7912009-07-16 17:34:36 +00005465 case ICmpInst::ICMP_UGE:
Dan Gohman53c66ea2010-04-11 22:16:48 +00005466 if (isKnownPredicateWithRanges(ICmpInst::ICMP_UGE, LHS, FoundLHS) &&
5467 isKnownPredicateWithRanges(ICmpInst::ICMP_ULE, RHS, FoundRHS))
Dan Gohman85b05a22009-07-13 21:35:55 +00005468 return true;
5469 break;
5470 }
5471
5472 return false;
Dan Gohman40a5a1b2009-06-24 01:18:18 +00005473}
5474
Dan Gohman51f53b72009-06-21 23:46:38 +00005475/// getBECount - Subtract the end and start values and divide by the step,
5476/// rounding up, to get the number of times the backedge is executed. Return
5477/// CouldNotCompute if an intermediate computation overflows.
Dan Gohman0bba49c2009-07-07 17:06:11 +00005478const SCEV *ScalarEvolution::getBECount(const SCEV *Start,
Dan Gohmanf5074ec2009-07-13 22:05:32 +00005479 const SCEV *End,
Dan Gohman1f96e672009-09-17 18:05:20 +00005480 const SCEV *Step,
5481 bool NoWrap) {
Dan Gohman52fddd32010-01-26 04:40:18 +00005482 assert(!isKnownNegative(Step) &&
5483 "This code doesn't handle negative strides yet!");
5484
Dan Gohman51f53b72009-06-21 23:46:38 +00005485 const Type *Ty = Start->getType();
Dan Gohmandeff6212010-05-03 22:09:21 +00005486 const SCEV *NegOne = getConstant(Ty, (uint64_t)-1);
Dan Gohman0bba49c2009-07-07 17:06:11 +00005487 const SCEV *Diff = getMinusSCEV(End, Start);
5488 const SCEV *RoundUp = getAddExpr(Step, NegOne);
Dan Gohman51f53b72009-06-21 23:46:38 +00005489
5490 // Add an adjustment to the difference between End and Start so that
5491 // the division will effectively round up.
Dan Gohman0bba49c2009-07-07 17:06:11 +00005492 const SCEV *Add = getAddExpr(Diff, RoundUp);
Dan Gohman51f53b72009-06-21 23:46:38 +00005493
Dan Gohman1f96e672009-09-17 18:05:20 +00005494 if (!NoWrap) {
5495 // Check Add for unsigned overflow.
5496 // TODO: More sophisticated things could be done here.
5497 const Type *WideTy = IntegerType::get(getContext(),
5498 getTypeSizeInBits(Ty) + 1);
5499 const SCEV *EDiff = getZeroExtendExpr(Diff, WideTy);
5500 const SCEV *ERoundUp = getZeroExtendExpr(RoundUp, WideTy);
5501 const SCEV *OperandExtendedAdd = getAddExpr(EDiff, ERoundUp);
5502 if (getZeroExtendExpr(Add, WideTy) != OperandExtendedAdd)
5503 return getCouldNotCompute();
5504 }
Dan Gohman51f53b72009-06-21 23:46:38 +00005505
5506 return getUDivExpr(Add, Step);
5507}
5508
Chris Lattnerdb25de42005-08-15 23:33:51 +00005509/// HowManyLessThans - Return the number of times a backedge containing the
5510/// specified less-than comparison will execute. If not computable, return
Dan Gohman86fbf2f2009-06-06 14:37:11 +00005511/// CouldNotCompute.
Dan Gohman64a845e2009-06-24 04:48:43 +00005512ScalarEvolution::BackedgeTakenInfo
5513ScalarEvolution::HowManyLessThans(const SCEV *LHS, const SCEV *RHS,
5514 const Loop *L, bool isSigned) {
Chris Lattnerdb25de42005-08-15 23:33:51 +00005515 // Only handle: "ADDREC < LoopInvariant".
Dan Gohman1c343752009-06-27 21:21:31 +00005516 if (!RHS->isLoopInvariant(L)) return getCouldNotCompute();
Chris Lattnerdb25de42005-08-15 23:33:51 +00005517
Dan Gohman35738ac2009-05-04 22:30:44 +00005518 const SCEVAddRecExpr *AddRec = dyn_cast<SCEVAddRecExpr>(LHS);
Chris Lattnerdb25de42005-08-15 23:33:51 +00005519 if (!AddRec || AddRec->getLoop() != L)
Dan Gohman1c343752009-06-27 21:21:31 +00005520 return getCouldNotCompute();
Chris Lattnerdb25de42005-08-15 23:33:51 +00005521
Dan Gohman1f96e672009-09-17 18:05:20 +00005522 // Check to see if we have a flag which makes analysis easy.
5523 bool NoWrap = isSigned ? AddRec->hasNoSignedWrap() :
5524 AddRec->hasNoUnsignedWrap();
5525
Chris Lattnerdb25de42005-08-15 23:33:51 +00005526 if (AddRec->isAffine()) {
Dan Gohmana1af7572009-04-30 20:47:05 +00005527 unsigned BitWidth = getTypeSizeInBits(AddRec->getType());
Dan Gohman0bba49c2009-07-07 17:06:11 +00005528 const SCEV *Step = AddRec->getStepRecurrence(*this);
Dan Gohmana1af7572009-04-30 20:47:05 +00005529
Dan Gohman52fddd32010-01-26 04:40:18 +00005530 if (Step->isZero())
Dan Gohman1c343752009-06-27 21:21:31 +00005531 return getCouldNotCompute();
Dan Gohman52fddd32010-01-26 04:40:18 +00005532 if (Step->isOne()) {
Dan Gohmana1af7572009-04-30 20:47:05 +00005533 // With unit stride, the iteration never steps past the limit value.
Dan Gohman52fddd32010-01-26 04:40:18 +00005534 } else if (isKnownPositive(Step)) {
Dan Gohmanf451cb82010-02-10 16:03:48 +00005535 // Test whether a positive iteration can step past the limit
Dan Gohman52fddd32010-01-26 04:40:18 +00005536 // value and past the maximum value for its type in a single step.
5537 // Note that it's not sufficient to check NoWrap here, because even
5538 // though the value after a wrap is undefined, it's not undefined
5539 // behavior, so if wrap does occur, the loop could either terminate or
Dan Gohman155eec72010-01-26 18:32:54 +00005540 // loop infinitely, but in either case, the loop is guaranteed to
Dan Gohman52fddd32010-01-26 04:40:18 +00005541 // iterate at least until the iteration where the wrapping occurs.
Dan Gohmandeff6212010-05-03 22:09:21 +00005542 const SCEV *One = getConstant(Step->getType(), 1);
Dan Gohman52fddd32010-01-26 04:40:18 +00005543 if (isSigned) {
5544 APInt Max = APInt::getSignedMaxValue(BitWidth);
5545 if ((Max - getSignedRange(getMinusSCEV(Step, One)).getSignedMax())
5546 .slt(getSignedRange(RHS).getSignedMax()))
5547 return getCouldNotCompute();
5548 } else {
5549 APInt Max = APInt::getMaxValue(BitWidth);
5550 if ((Max - getUnsignedRange(getMinusSCEV(Step, One)).getUnsignedMax())
5551 .ult(getUnsignedRange(RHS).getUnsignedMax()))
5552 return getCouldNotCompute();
5553 }
Dan Gohmana1af7572009-04-30 20:47:05 +00005554 } else
Dan Gohman52fddd32010-01-26 04:40:18 +00005555 // TODO: Handle negative strides here and below.
Dan Gohman1c343752009-06-27 21:21:31 +00005556 return getCouldNotCompute();
Chris Lattnerdb25de42005-08-15 23:33:51 +00005557
Dan Gohmana1af7572009-04-30 20:47:05 +00005558 // We know the LHS is of the form {n,+,s} and the RHS is some loop-invariant
5559 // m. So, we count the number of iterations in which {n,+,s} < m is true.
5560 // Note that we cannot simply return max(m-n,0)/s because it's not safe to
Wojciech Matyjewicza65ee032008-02-13 12:21:32 +00005561 // treat m-n as signed nor unsigned due to overflow possibility.
Chris Lattnerdb25de42005-08-15 23:33:51 +00005562
Wojciech Matyjewicz3a4cbe22008-02-13 11:51:34 +00005563 // First, we get the value of the LHS in the first iteration: n
Dan Gohman0bba49c2009-07-07 17:06:11 +00005564 const SCEV *Start = AddRec->getOperand(0);
Wojciech Matyjewicz3a4cbe22008-02-13 11:51:34 +00005565
Dan Gohmana1af7572009-04-30 20:47:05 +00005566 // Determine the minimum constant start value.
Dan Gohman85b05a22009-07-13 21:35:55 +00005567 const SCEV *MinStart = getConstant(isSigned ?
5568 getSignedRange(Start).getSignedMin() :
5569 getUnsignedRange(Start).getUnsignedMin());
Wojciech Matyjewicz3a4cbe22008-02-13 11:51:34 +00005570
Dan Gohmana1af7572009-04-30 20:47:05 +00005571 // If we know that the condition is true in order to enter the loop,
5572 // then we know that it will run exactly (m-n)/s times. Otherwise, we
Dan Gohman6c0866c2009-05-24 23:45:28 +00005573 // only know that it will execute (max(m,n)-n)/s times. In both cases,
5574 // the division must round up.
Dan Gohman0bba49c2009-07-07 17:06:11 +00005575 const SCEV *End = RHS;
Dan Gohman3948d0b2010-04-11 19:27:13 +00005576 if (!isLoopEntryGuardedByCond(L,
5577 isSigned ? ICmpInst::ICMP_SLT :
5578 ICmpInst::ICMP_ULT,
5579 getMinusSCEV(Start, Step), RHS))
Dan Gohmana1af7572009-04-30 20:47:05 +00005580 End = isSigned ? getSMaxExpr(RHS, Start)
5581 : getUMaxExpr(RHS, Start);
5582
5583 // Determine the maximum constant end value.
Dan Gohman85b05a22009-07-13 21:35:55 +00005584 const SCEV *MaxEnd = getConstant(isSigned ?
5585 getSignedRange(End).getSignedMax() :
5586 getUnsignedRange(End).getUnsignedMax());
Dan Gohmana1af7572009-04-30 20:47:05 +00005587
Dan Gohman52fddd32010-01-26 04:40:18 +00005588 // If MaxEnd is within a step of the maximum integer value in its type,
5589 // adjust it down to the minimum value which would produce the same effect.
Dan Gohman3f46a3a2010-03-01 17:49:51 +00005590 // This allows the subsequent ceiling division of (N+(step-1))/step to
Dan Gohman52fddd32010-01-26 04:40:18 +00005591 // compute the correct value.
5592 const SCEV *StepMinusOne = getMinusSCEV(Step,
Dan Gohmandeff6212010-05-03 22:09:21 +00005593 getConstant(Step->getType(), 1));
Dan Gohman52fddd32010-01-26 04:40:18 +00005594 MaxEnd = isSigned ?
5595 getSMinExpr(MaxEnd,
5596 getMinusSCEV(getConstant(APInt::getSignedMaxValue(BitWidth)),
5597 StepMinusOne)) :
5598 getUMinExpr(MaxEnd,
5599 getMinusSCEV(getConstant(APInt::getMaxValue(BitWidth)),
5600 StepMinusOne));
5601
Dan Gohmana1af7572009-04-30 20:47:05 +00005602 // Finally, we subtract these two values and divide, rounding up, to get
5603 // the number of times the backedge is executed.
Dan Gohman1f96e672009-09-17 18:05:20 +00005604 const SCEV *BECount = getBECount(Start, End, Step, NoWrap);
Dan Gohmana1af7572009-04-30 20:47:05 +00005605
5606 // The maximum backedge count is similar, except using the minimum start
5607 // value and the maximum end value.
Dan Gohman1f96e672009-09-17 18:05:20 +00005608 const SCEV *MaxBECount = getBECount(MinStart, MaxEnd, Step, NoWrap);
Dan Gohmana1af7572009-04-30 20:47:05 +00005609
5610 return BackedgeTakenInfo(BECount, MaxBECount);
Chris Lattnerdb25de42005-08-15 23:33:51 +00005611 }
5612
Dan Gohman1c343752009-06-27 21:21:31 +00005613 return getCouldNotCompute();
Chris Lattnerdb25de42005-08-15 23:33:51 +00005614}
5615
Chris Lattner53e677a2004-04-02 20:23:17 +00005616/// getNumIterationsInRange - Return the number of iterations of this loop that
5617/// produce values in the specified constant range. Another way of looking at
5618/// this is that it returns the first iteration number where the value is not in
5619/// the condition, thus computing the exit count. If the iteration count can't
5620/// be computed, an instance of SCEVCouldNotCompute is returned.
Dan Gohman0bba49c2009-07-07 17:06:11 +00005621const SCEV *SCEVAddRecExpr::getNumIterationsInRange(ConstantRange Range,
Dan Gohman64a845e2009-06-24 04:48:43 +00005622 ScalarEvolution &SE) const {
Chris Lattner53e677a2004-04-02 20:23:17 +00005623 if (Range.isFullSet()) // Infinite loop.
Dan Gohmanf4ccfcb2009-04-18 17:58:19 +00005624 return SE.getCouldNotCompute();
Chris Lattner53e677a2004-04-02 20:23:17 +00005625
5626 // If the start is a non-zero constant, shift the range to simplify things.
Dan Gohman622ed672009-05-04 22:02:23 +00005627 if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(getStart()))
Reid Spencercae57542007-03-02 00:28:52 +00005628 if (!SC->getValue()->isZero()) {
Dan Gohman0bba49c2009-07-07 17:06:11 +00005629 SmallVector<const SCEV *, 4> Operands(op_begin(), op_end());
Dan Gohmandeff6212010-05-03 22:09:21 +00005630 Operands[0] = SE.getConstant(SC->getType(), 0);
Dan Gohman0bba49c2009-07-07 17:06:11 +00005631 const SCEV *Shifted = SE.getAddRecExpr(Operands, getLoop());
Dan Gohman622ed672009-05-04 22:02:23 +00005632 if (const SCEVAddRecExpr *ShiftedAddRec =
5633 dyn_cast<SCEVAddRecExpr>(Shifted))
Chris Lattner53e677a2004-04-02 20:23:17 +00005634 return ShiftedAddRec->getNumIterationsInRange(
Dan Gohman246b2562007-10-22 18:31:58 +00005635 Range.subtract(SC->getValue()->getValue()), SE);
Chris Lattner53e677a2004-04-02 20:23:17 +00005636 // This is strange and shouldn't happen.
Dan Gohmanf4ccfcb2009-04-18 17:58:19 +00005637 return SE.getCouldNotCompute();
Chris Lattner53e677a2004-04-02 20:23:17 +00005638 }
5639
5640 // The only time we can solve this is when we have all constant indices.
5641 // Otherwise, we cannot determine the overflow conditions.
5642 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
5643 if (!isa<SCEVConstant>(getOperand(i)))
Dan Gohmanf4ccfcb2009-04-18 17:58:19 +00005644 return SE.getCouldNotCompute();
Chris Lattner53e677a2004-04-02 20:23:17 +00005645
5646
5647 // Okay at this point we know that all elements of the chrec are constants and
5648 // that the start element is zero.
5649
5650 // First check to see if the range contains zero. If not, the first
5651 // iteration exits.
Dan Gohmanaf79fb52009-04-21 01:07:12 +00005652 unsigned BitWidth = SE.getTypeSizeInBits(getType());
Dan Gohman2d1be872009-04-16 03:18:22 +00005653 if (!Range.contains(APInt(BitWidth, 0)))
Dan Gohmandeff6212010-05-03 22:09:21 +00005654 return SE.getConstant(getType(), 0);
Misha Brukman2b37d7c2005-04-21 21:13:18 +00005655
Chris Lattner53e677a2004-04-02 20:23:17 +00005656 if (isAffine()) {
5657 // If this is an affine expression then we have this situation:
5658 // Solve {0,+,A} in Range === Ax in Range
5659
Nick Lewyckyeefdebe2007-07-16 02:08:00 +00005660 // We know that zero is in the range. If A is positive then we know that
5661 // the upper value of the range must be the first possible exit value.
5662 // If A is negative then the lower of the range is the last possible loop
5663 // value. Also note that we already checked for a full range.
Dan Gohman2d1be872009-04-16 03:18:22 +00005664 APInt One(BitWidth,1);
Nick Lewyckyeefdebe2007-07-16 02:08:00 +00005665 APInt A = cast<SCEVConstant>(getOperand(1))->getValue()->getValue();
5666 APInt End = A.sge(One) ? (Range.getUpper() - One) : Range.getLower();
Chris Lattner53e677a2004-04-02 20:23:17 +00005667
Nick Lewyckyeefdebe2007-07-16 02:08:00 +00005668 // The exit value should be (End+A)/A.
Nick Lewycky9a2f9312007-09-27 14:12:54 +00005669 APInt ExitVal = (End + A).udiv(A);
Owen Andersoneed707b2009-07-24 23:12:02 +00005670 ConstantInt *ExitValue = ConstantInt::get(SE.getContext(), ExitVal);
Chris Lattner53e677a2004-04-02 20:23:17 +00005671
5672 // Evaluate at the exit value. If we really did fall out of the valid
5673 // range, then we computed our trip count, otherwise wrap around or other
5674 // things must have happened.
Dan Gohman246b2562007-10-22 18:31:58 +00005675 ConstantInt *Val = EvaluateConstantChrecAtConstant(this, ExitValue, SE);
Reid Spencera6e8a952007-03-01 07:54:15 +00005676 if (Range.contains(Val->getValue()))
Dan Gohmanf4ccfcb2009-04-18 17:58:19 +00005677 return SE.getCouldNotCompute(); // Something strange happened
Chris Lattner53e677a2004-04-02 20:23:17 +00005678
5679 // Ensure that the previous value is in the range. This is a sanity check.
Reid Spencer581b0d42007-02-28 19:57:34 +00005680 assert(Range.contains(
Dan Gohman64a845e2009-06-24 04:48:43 +00005681 EvaluateConstantChrecAtConstant(this,
Owen Andersoneed707b2009-07-24 23:12:02 +00005682 ConstantInt::get(SE.getContext(), ExitVal - One), SE)->getValue()) &&
Chris Lattner53e677a2004-04-02 20:23:17 +00005683 "Linear scev computation is off in a bad way!");
Dan Gohman246b2562007-10-22 18:31:58 +00005684 return SE.getConstant(ExitValue);
Chris Lattner53e677a2004-04-02 20:23:17 +00005685 } else if (isQuadratic()) {
5686 // If this is a quadratic (3-term) AddRec {L,+,M,+,N}, find the roots of the
5687 // quadratic equation to solve it. To do this, we must frame our problem in
5688 // terms of figuring out when zero is crossed, instead of when
5689 // Range.getUpper() is crossed.
Dan Gohman0bba49c2009-07-07 17:06:11 +00005690 SmallVector<const SCEV *, 4> NewOps(op_begin(), op_end());
Dan Gohman246b2562007-10-22 18:31:58 +00005691 NewOps[0] = SE.getNegativeSCEV(SE.getConstant(Range.getUpper()));
Dan Gohman0bba49c2009-07-07 17:06:11 +00005692 const SCEV *NewAddRec = SE.getAddRecExpr(NewOps, getLoop());
Chris Lattner53e677a2004-04-02 20:23:17 +00005693
5694 // Next, solve the constructed addrec
Dan Gohman0bba49c2009-07-07 17:06:11 +00005695 std::pair<const SCEV *,const SCEV *> Roots =
Dan Gohman246b2562007-10-22 18:31:58 +00005696 SolveQuadraticEquation(cast<SCEVAddRecExpr>(NewAddRec), SE);
Dan Gohman35738ac2009-05-04 22:30:44 +00005697 const SCEVConstant *R1 = dyn_cast<SCEVConstant>(Roots.first);
5698 const SCEVConstant *R2 = dyn_cast<SCEVConstant>(Roots.second);
Chris Lattner53e677a2004-04-02 20:23:17 +00005699 if (R1) {
5700 // Pick the smallest positive root value.
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00005701 if (ConstantInt *CB =
Owen Andersonbaf3c402009-07-29 18:55:55 +00005702 dyn_cast<ConstantInt>(ConstantExpr::getICmp(ICmpInst::ICMP_ULT,
Owen Anderson76f600b2009-07-06 22:37:39 +00005703 R1->getValue(), R2->getValue()))) {
Reid Spencer579dca12007-01-12 04:24:46 +00005704 if (CB->getZExtValue() == false)
Chris Lattner53e677a2004-04-02 20:23:17 +00005705 std::swap(R1, R2); // R1 is the minimum root now.
Misha Brukman2b37d7c2005-04-21 21:13:18 +00005706
Chris Lattner53e677a2004-04-02 20:23:17 +00005707 // Make sure the root is not off by one. The returned iteration should
5708 // not be in the range, but the previous one should be. When solving
5709 // for "X*X < 5", for example, we should not return a root of 2.
5710 ConstantInt *R1Val = EvaluateConstantChrecAtConstant(this,
Dan Gohman246b2562007-10-22 18:31:58 +00005711 R1->getValue(),
5712 SE);
Reid Spencera6e8a952007-03-01 07:54:15 +00005713 if (Range.contains(R1Val->getValue())) {
Chris Lattner53e677a2004-04-02 20:23:17 +00005714 // The next iteration must be out of the range...
Owen Anderson76f600b2009-07-06 22:37:39 +00005715 ConstantInt *NextVal =
Owen Andersoneed707b2009-07-24 23:12:02 +00005716 ConstantInt::get(SE.getContext(), R1->getValue()->getValue()+1);
Misha Brukman2b37d7c2005-04-21 21:13:18 +00005717
Dan Gohman246b2562007-10-22 18:31:58 +00005718 R1Val = EvaluateConstantChrecAtConstant(this, NextVal, SE);
Reid Spencera6e8a952007-03-01 07:54:15 +00005719 if (!Range.contains(R1Val->getValue()))
Dan Gohman246b2562007-10-22 18:31:58 +00005720 return SE.getConstant(NextVal);
Dan Gohmanf4ccfcb2009-04-18 17:58:19 +00005721 return SE.getCouldNotCompute(); // Something strange happened
Chris Lattner53e677a2004-04-02 20:23:17 +00005722 }
Misha Brukman2b37d7c2005-04-21 21:13:18 +00005723
Chris Lattner53e677a2004-04-02 20:23:17 +00005724 // If R1 was not in the range, then it is a good return value. Make
5725 // sure that R1-1 WAS in the range though, just in case.
Owen Anderson76f600b2009-07-06 22:37:39 +00005726 ConstantInt *NextVal =
Owen Andersoneed707b2009-07-24 23:12:02 +00005727 ConstantInt::get(SE.getContext(), R1->getValue()->getValue()-1);
Dan Gohman246b2562007-10-22 18:31:58 +00005728 R1Val = EvaluateConstantChrecAtConstant(this, NextVal, SE);
Reid Spencera6e8a952007-03-01 07:54:15 +00005729 if (Range.contains(R1Val->getValue()))
Chris Lattner53e677a2004-04-02 20:23:17 +00005730 return R1;
Dan Gohmanf4ccfcb2009-04-18 17:58:19 +00005731 return SE.getCouldNotCompute(); // Something strange happened
Chris Lattner53e677a2004-04-02 20:23:17 +00005732 }
5733 }
5734 }
5735
Dan Gohmanf4ccfcb2009-04-18 17:58:19 +00005736 return SE.getCouldNotCompute();
Chris Lattner53e677a2004-04-02 20:23:17 +00005737}
5738
5739
5740
5741//===----------------------------------------------------------------------===//
Dan Gohman35738ac2009-05-04 22:30:44 +00005742// SCEVCallbackVH Class Implementation
5743//===----------------------------------------------------------------------===//
5744
Dan Gohman1959b752009-05-19 19:22:47 +00005745void ScalarEvolution::SCEVCallbackVH::deleted() {
Dan Gohmanddf9f992009-07-13 22:20:53 +00005746 assert(SE && "SCEVCallbackVH called with a null ScalarEvolution!");
Dan Gohman35738ac2009-05-04 22:30:44 +00005747 if (PHINode *PN = dyn_cast<PHINode>(getValPtr()))
5748 SE->ConstantEvolutionLoopExitValue.erase(PN);
5749 SE->Scalars.erase(getValPtr());
5750 // this now dangles!
5751}
5752
Dan Gohman81f91212010-07-28 01:09:07 +00005753void ScalarEvolution::SCEVCallbackVH::allUsesReplacedWith(Value *V) {
Dan Gohmanddf9f992009-07-13 22:20:53 +00005754 assert(SE && "SCEVCallbackVH called with a null ScalarEvolution!");
Eric Christophere6cbfa62010-07-29 01:25:38 +00005755
Dan Gohman35738ac2009-05-04 22:30:44 +00005756 // Forget all the expressions associated with users of the old value,
5757 // so that future queries will recompute the expressions using the new
5758 // value.
Dan Gohmanab37f502010-08-02 23:49:30 +00005759 Value *Old = getValPtr();
Dan Gohman35738ac2009-05-04 22:30:44 +00005760 SmallVector<User *, 16> Worklist;
Dan Gohman69fcae92009-07-14 14:34:04 +00005761 SmallPtrSet<User *, 8> Visited;
Dan Gohman35738ac2009-05-04 22:30:44 +00005762 for (Value::use_iterator UI = Old->use_begin(), UE = Old->use_end();
5763 UI != UE; ++UI)
5764 Worklist.push_back(*UI);
5765 while (!Worklist.empty()) {
5766 User *U = Worklist.pop_back_val();
5767 // Deleting the Old value will cause this to dangle. Postpone
5768 // that until everything else is done.
Dan Gohman59846ac2010-07-28 00:28:25 +00005769 if (U == Old)
Dan Gohman35738ac2009-05-04 22:30:44 +00005770 continue;
Dan Gohman69fcae92009-07-14 14:34:04 +00005771 if (!Visited.insert(U))
5772 continue;
Dan Gohman35738ac2009-05-04 22:30:44 +00005773 if (PHINode *PN = dyn_cast<PHINode>(U))
5774 SE->ConstantEvolutionLoopExitValue.erase(PN);
Dan Gohman69fcae92009-07-14 14:34:04 +00005775 SE->Scalars.erase(U);
5776 for (Value::use_iterator UI = U->use_begin(), UE = U->use_end();
5777 UI != UE; ++UI)
5778 Worklist.push_back(*UI);
Dan Gohman35738ac2009-05-04 22:30:44 +00005779 }
Dan Gohman59846ac2010-07-28 00:28:25 +00005780 // Delete the Old value.
5781 if (PHINode *PN = dyn_cast<PHINode>(Old))
5782 SE->ConstantEvolutionLoopExitValue.erase(PN);
5783 SE->Scalars.erase(Old);
5784 // this now dangles!
Dan Gohman35738ac2009-05-04 22:30:44 +00005785}
5786
Dan Gohman1959b752009-05-19 19:22:47 +00005787ScalarEvolution::SCEVCallbackVH::SCEVCallbackVH(Value *V, ScalarEvolution *se)
Dan Gohman35738ac2009-05-04 22:30:44 +00005788 : CallbackVH(V), SE(se) {}
5789
5790//===----------------------------------------------------------------------===//
Chris Lattner53e677a2004-04-02 20:23:17 +00005791// ScalarEvolution Class Implementation
5792//===----------------------------------------------------------------------===//
5793
Dan Gohmanf8a8be82009-04-21 23:15:49 +00005794ScalarEvolution::ScalarEvolution()
Owen Anderson90c579d2010-08-06 18:33:48 +00005795 : FunctionPass(ID), FirstUnknown(0) {
Dan Gohmanf8a8be82009-04-21 23:15:49 +00005796}
5797
Chris Lattner53e677a2004-04-02 20:23:17 +00005798bool ScalarEvolution::runOnFunction(Function &F) {
Dan Gohmanf8a8be82009-04-21 23:15:49 +00005799 this->F = &F;
5800 LI = &getAnalysis<LoopInfo>();
5801 TD = getAnalysisIfAvailable<TargetData>();
Dan Gohman454d26d2010-02-22 04:11:59 +00005802 DT = &getAnalysis<DominatorTree>();
Chris Lattner53e677a2004-04-02 20:23:17 +00005803 return false;
5804}
5805
5806void ScalarEvolution::releaseMemory() {
Dan Gohmanab37f502010-08-02 23:49:30 +00005807 // Iterate through all the SCEVUnknown instances and call their
5808 // destructors, so that they release their references to their values.
5809 for (SCEVUnknown *U = FirstUnknown; U; U = U->Next)
5810 U->~SCEVUnknown();
5811 FirstUnknown = 0;
5812
Dan Gohmanf8a8be82009-04-21 23:15:49 +00005813 Scalars.clear();
5814 BackedgeTakenCounts.clear();
5815 ConstantEvolutionLoopExitValue.clear();
Dan Gohman6bce6432009-05-08 20:47:27 +00005816 ValuesAtScopes.clear();
Dan Gohman1c343752009-06-27 21:21:31 +00005817 UniqueSCEVs.clear();
5818 SCEVAllocator.Reset();
Chris Lattner53e677a2004-04-02 20:23:17 +00005819}
5820
5821void ScalarEvolution::getAnalysisUsage(AnalysisUsage &AU) const {
5822 AU.setPreservesAll();
Chris Lattner53e677a2004-04-02 20:23:17 +00005823 AU.addRequiredTransitive<LoopInfo>();
Dan Gohman1cd92752010-01-19 22:21:27 +00005824 AU.addRequiredTransitive<DominatorTree>();
Dan Gohman2d1be872009-04-16 03:18:22 +00005825}
5826
Dan Gohmanf8a8be82009-04-21 23:15:49 +00005827bool ScalarEvolution::hasLoopInvariantBackedgeTakenCount(const Loop *L) {
Dan Gohman46bdfb02009-02-24 18:55:53 +00005828 return !isa<SCEVCouldNotCompute>(getBackedgeTakenCount(L));
Chris Lattner53e677a2004-04-02 20:23:17 +00005829}
5830
Dan Gohmanf8a8be82009-04-21 23:15:49 +00005831static void PrintLoopInfo(raw_ostream &OS, ScalarEvolution *SE,
Chris Lattner53e677a2004-04-02 20:23:17 +00005832 const Loop *L) {
5833 // Print all inner loops first
5834 for (Loop::iterator I = L->begin(), E = L->end(); I != E; ++I)
5835 PrintLoopInfo(OS, SE, *I);
Misha Brukman2b37d7c2005-04-21 21:13:18 +00005836
Dan Gohman30733292010-01-09 18:17:45 +00005837 OS << "Loop ";
5838 WriteAsOperand(OS, L->getHeader(), /*PrintType=*/false);
5839 OS << ": ";
Chris Lattnerf1ab4b42004-04-18 22:14:10 +00005840
Dan Gohman5d984912009-12-18 01:14:11 +00005841 SmallVector<BasicBlock *, 8> ExitBlocks;
Chris Lattnerf1ab4b42004-04-18 22:14:10 +00005842 L->getExitBlocks(ExitBlocks);
5843 if (ExitBlocks.size() != 1)
Nick Lewyckyaeb5e5c2008-01-02 02:49:20 +00005844 OS << "<multiple exits> ";
Chris Lattner53e677a2004-04-02 20:23:17 +00005845
Dan Gohman46bdfb02009-02-24 18:55:53 +00005846 if (SE->hasLoopInvariantBackedgeTakenCount(L)) {
5847 OS << "backedge-taken count is " << *SE->getBackedgeTakenCount(L);
Chris Lattner53e677a2004-04-02 20:23:17 +00005848 } else {
Dan Gohman46bdfb02009-02-24 18:55:53 +00005849 OS << "Unpredictable backedge-taken count. ";
Chris Lattner53e677a2004-04-02 20:23:17 +00005850 }
5851
Dan Gohman30733292010-01-09 18:17:45 +00005852 OS << "\n"
5853 "Loop ";
5854 WriteAsOperand(OS, L->getHeader(), /*PrintType=*/false);
5855 OS << ": ";
Dan Gohmanaa551ae2009-06-24 00:33:16 +00005856
5857 if (!isa<SCEVCouldNotCompute>(SE->getMaxBackedgeTakenCount(L))) {
5858 OS << "max backedge-taken count is " << *SE->getMaxBackedgeTakenCount(L);
5859 } else {
5860 OS << "Unpredictable max backedge-taken count. ";
5861 }
5862
5863 OS << "\n";
Chris Lattner53e677a2004-04-02 20:23:17 +00005864}
5865
Dan Gohman5d984912009-12-18 01:14:11 +00005866void ScalarEvolution::print(raw_ostream &OS, const Module *) const {
Dan Gohman3f46a3a2010-03-01 17:49:51 +00005867 // ScalarEvolution's implementation of the print method is to print
Dan Gohmanf8a8be82009-04-21 23:15:49 +00005868 // out SCEV values of all instructions that are interesting. Doing
5869 // this potentially causes it to create new SCEV objects though,
5870 // which technically conflicts with the const qualifier. This isn't
Dan Gohman1afdc5f2009-07-10 20:25:29 +00005871 // observable from outside the class though, so casting away the
5872 // const isn't dangerous.
Dan Gohman5d984912009-12-18 01:14:11 +00005873 ScalarEvolution &SE = *const_cast<ScalarEvolution *>(this);
Chris Lattner53e677a2004-04-02 20:23:17 +00005874
Dan Gohman30733292010-01-09 18:17:45 +00005875 OS << "Classifying expressions for: ";
5876 WriteAsOperand(OS, F, /*PrintType=*/false);
5877 OS << "\n";
Chris Lattner53e677a2004-04-02 20:23:17 +00005878 for (inst_iterator I = inst_begin(F), E = inst_end(F); I != E; ++I)
Dan Gohmana189bae2010-05-03 17:03:23 +00005879 if (isSCEVable(I->getType()) && !isa<CmpInst>(*I)) {
Dan Gohmanc902e132009-07-13 23:03:05 +00005880 OS << *I << '\n';
Dan Gohman8dae1382008-09-14 17:21:12 +00005881 OS << " --> ";
Dan Gohman0bba49c2009-07-07 17:06:11 +00005882 const SCEV *SV = SE.getSCEV(&*I);
Chris Lattner53e677a2004-04-02 20:23:17 +00005883 SV->print(OS);
Misha Brukman2b37d7c2005-04-21 21:13:18 +00005884
Dan Gohman0c689c52009-06-19 17:49:54 +00005885 const Loop *L = LI->getLoopFor((*I).getParent());
5886
Dan Gohman0bba49c2009-07-07 17:06:11 +00005887 const SCEV *AtUse = SE.getSCEVAtScope(SV, L);
Dan Gohman0c689c52009-06-19 17:49:54 +00005888 if (AtUse != SV) {
5889 OS << " --> ";
5890 AtUse->print(OS);
5891 }
5892
5893 if (L) {
Dan Gohman9e7d9882009-06-18 00:37:45 +00005894 OS << "\t\t" "Exits: ";
Dan Gohman0bba49c2009-07-07 17:06:11 +00005895 const SCEV *ExitValue = SE.getSCEVAtScope(SV, L->getParentLoop());
Dan Gohmand594e6f2009-05-24 23:25:42 +00005896 if (!ExitValue->isLoopInvariant(L)) {
Chris Lattner53e677a2004-04-02 20:23:17 +00005897 OS << "<<Unknown>>";
5898 } else {
5899 OS << *ExitValue;
5900 }
5901 }
5902
Chris Lattner53e677a2004-04-02 20:23:17 +00005903 OS << "\n";
5904 }
5905
Dan Gohman30733292010-01-09 18:17:45 +00005906 OS << "Determining loop execution counts for: ";
5907 WriteAsOperand(OS, F, /*PrintType=*/false);
5908 OS << "\n";
Dan Gohmanf8a8be82009-04-21 23:15:49 +00005909 for (LoopInfo::iterator I = LI->begin(), E = LI->end(); I != E; ++I)
5910 PrintLoopInfo(OS, &SE, *I);
Chris Lattner53e677a2004-04-02 20:23:17 +00005911}
Dan Gohmanb7ef7292009-04-21 00:47:46 +00005912