blob: 89d14ca40a966f9f0b9ae6eeab4b5ec106d17cd0 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===- ScalarEvolution.cpp - Scalar Evolution Analysis ----------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
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
17// can handle. These classes are reference counted, managed by the SCEVHandle
18// class. We only create one SCEV of a particular shape, so pointer-comparisons
19// for equality are legal.
20//
21// One important aspect of the SCEV objects is that they are never cyclic, even
22// if there is a cycle in the dataflow for an expression (ie, a PHI node). If
23// the PHI node is one of the idioms that we can represent (e.g., a polynomial
24// recurrence) then we represent it directly as a recurrence node, otherwise we
25// represent it as a SCEVUnknown node.
26//
27// In addition to being able to represent expressions of various types, we also
28// have folders that are used to build the *canonical* representation for a
29// particular expression. These folders are capable of using a variety of
30// rewrite rules to simplify the expressions.
31//
32// Once the folders are defined, we can implement the more interesting
33// higher-level code, such as the code that recognizes PHI nodes of various
34// types, computes the execution count of a loop, etc.
35//
36// TODO: We should use these routines and value representations to implement
37// dependence analysis!
38//
39//===----------------------------------------------------------------------===//
40//
41// There are several good references for the techniques used in this analysis.
42//
43// Chains of recurrences -- a method to expedite the evaluation
44// of closed-form functions
45// Olaf Bachmann, Paul S. Wang, Eugene V. Zima
46//
47// On computational properties of chains of recurrences
48// Eugene V. Zima
49//
50// Symbolic Evaluation of Chains of Recurrences for Loop Optimization
51// Robert A. van Engelen
52//
53// Efficient Symbolic Analysis for Optimizing Compilers
54// Robert A. van Engelen
55//
56// Using the chains of recurrences algebra for data dependence testing and
57// induction variable substitution
58// MS Thesis, Johnie Birch
59//
60//===----------------------------------------------------------------------===//
61
62#define DEBUG_TYPE "scalar-evolution"
63#include "llvm/Analysis/ScalarEvolutionExpressions.h"
64#include "llvm/Constants.h"
65#include "llvm/DerivedTypes.h"
66#include "llvm/GlobalVariable.h"
67#include "llvm/Instructions.h"
68#include "llvm/Analysis/ConstantFolding.h"
Evan Cheng98c073b2009-02-17 00:13:06 +000069#include "llvm/Analysis/Dominators.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000070#include "llvm/Analysis/LoopInfo.h"
71#include "llvm/Assembly/Writer.h"
Dan Gohman01c2ee72009-04-16 03:18:22 +000072#include "llvm/Target/TargetData.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000073#include "llvm/Support/CommandLine.h"
74#include "llvm/Support/Compiler.h"
75#include "llvm/Support/ConstantRange.h"
Dan Gohman01c2ee72009-04-16 03:18:22 +000076#include "llvm/Support/GetElementPtrTypeIterator.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000077#include "llvm/Support/InstIterator.h"
78#include "llvm/Support/ManagedStatic.h"
79#include "llvm/Support/MathExtras.h"
Dan Gohman13058cc2009-04-21 00:47:46 +000080#include "llvm/Support/raw_ostream.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000081#include "llvm/ADT/Statistic.h"
Dan Gohman01c2ee72009-04-16 03:18:22 +000082#include "llvm/ADT/STLExtras.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000083#include <ostream>
84#include <algorithm>
Dan Gohmanf17a25c2007-07-18 16:29:46 +000085using namespace llvm;
86
Dan Gohmanf17a25c2007-07-18 16:29:46 +000087STATISTIC(NumArrayLenItCounts,
88 "Number of trip counts computed with array length");
89STATISTIC(NumTripCountsComputed,
90 "Number of loops with predictable loop counts");
91STATISTIC(NumTripCountsNotComputed,
92 "Number of loops without predictable loop counts");
93STATISTIC(NumBruteForceTripCountsComputed,
94 "Number of loops with trip counts computed by force");
95
Dan Gohman089efff2008-05-13 00:00:25 +000096static cl::opt<unsigned>
Dan Gohmanf17a25c2007-07-18 16:29:46 +000097MaxBruteForceIterations("scalar-evolution-max-iterations", cl::ReallyHidden,
98 cl::desc("Maximum number of iterations SCEV will "
99 "symbolically execute a constant derived loop"),
100 cl::init(100));
101
Dan Gohman089efff2008-05-13 00:00:25 +0000102static RegisterPass<ScalarEvolution>
103R("scalar-evolution", "Scalar Evolution Analysis", false, true);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000104char ScalarEvolution::ID = 0;
105
106//===----------------------------------------------------------------------===//
107// SCEV class definitions
108//===----------------------------------------------------------------------===//
109
110//===----------------------------------------------------------------------===//
111// Implementation of the SCEV class.
112//
113SCEV::~SCEV() {}
114void SCEV::dump() const {
Dan Gohman13058cc2009-04-21 00:47:46 +0000115 print(errs());
116 errs() << '\n';
117}
118
119void SCEV::print(std::ostream &o) const {
120 raw_os_ostream OS(o);
121 print(OS);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000122}
123
Dan Gohman7b560c42008-06-18 16:23:07 +0000124bool SCEV::isZero() const {
125 if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(this))
126 return SC->getValue()->isZero();
127 return false;
128}
129
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000130
131SCEVCouldNotCompute::SCEVCouldNotCompute() : SCEV(scCouldNotCompute) {}
Dan Gohmanffd36ba2009-04-21 23:15:49 +0000132SCEVCouldNotCompute::~SCEVCouldNotCompute() {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000133
134bool SCEVCouldNotCompute::isLoopInvariant(const Loop *L) const {
135 assert(0 && "Attempt to use a SCEVCouldNotCompute object!");
136 return false;
137}
138
139const Type *SCEVCouldNotCompute::getType() const {
140 assert(0 && "Attempt to use a SCEVCouldNotCompute object!");
141 return 0;
142}
143
144bool SCEVCouldNotCompute::hasComputableLoopEvolution(const Loop *L) const {
145 assert(0 && "Attempt to use a SCEVCouldNotCompute object!");
146 return false;
147}
148
149SCEVHandle SCEVCouldNotCompute::
150replaceSymbolicValuesWithConcrete(const SCEVHandle &Sym,
Dan Gohman89f85052007-10-22 18:31:58 +0000151 const SCEVHandle &Conc,
152 ScalarEvolution &SE) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000153 return this;
154}
155
Dan Gohman13058cc2009-04-21 00:47:46 +0000156void SCEVCouldNotCompute::print(raw_ostream &OS) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000157 OS << "***COULDNOTCOMPUTE***";
158}
159
160bool SCEVCouldNotCompute::classof(const SCEV *S) {
161 return S->getSCEVType() == scCouldNotCompute;
162}
163
164
165// SCEVConstants - Only allow the creation of one SCEVConstant for any
166// particular value. Don't use a SCEVHandle here, or else the object will
167// never be deleted!
168static ManagedStatic<std::map<ConstantInt*, SCEVConstant*> > SCEVConstants;
169
170
171SCEVConstant::~SCEVConstant() {
172 SCEVConstants->erase(V);
173}
174
Dan Gohman89f85052007-10-22 18:31:58 +0000175SCEVHandle ScalarEvolution::getConstant(ConstantInt *V) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000176 SCEVConstant *&R = (*SCEVConstants)[V];
177 if (R == 0) R = new SCEVConstant(V);
178 return R;
179}
180
Dan Gohman89f85052007-10-22 18:31:58 +0000181SCEVHandle ScalarEvolution::getConstant(const APInt& Val) {
182 return getConstant(ConstantInt::get(Val));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000183}
184
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000185const Type *SCEVConstant::getType() const { return V->getType(); }
186
Dan Gohman13058cc2009-04-21 00:47:46 +0000187void SCEVConstant::print(raw_ostream &OS) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000188 WriteAsOperand(OS, V, false);
189}
190
Dan Gohman2a381532009-04-21 01:25:57 +0000191SCEVCastExpr::SCEVCastExpr(unsigned SCEVTy,
192 const SCEVHandle &op, const Type *ty)
193 : SCEV(SCEVTy), Op(op), Ty(ty) {}
194
195SCEVCastExpr::~SCEVCastExpr() {}
196
197bool SCEVCastExpr::dominates(BasicBlock *BB, DominatorTree *DT) const {
198 return Op->dominates(BB, DT);
199}
200
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000201// SCEVTruncates - Only allow the creation of one SCEVTruncateExpr for any
202// particular input. Don't use a SCEVHandle here, or else the object will
203// never be deleted!
Dan Gohmanbff6b582009-05-04 22:30:44 +0000204static ManagedStatic<std::map<std::pair<const SCEV*, const Type*>,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000205 SCEVTruncateExpr*> > SCEVTruncates;
206
207SCEVTruncateExpr::SCEVTruncateExpr(const SCEVHandle &op, const Type *ty)
Dan Gohman2a381532009-04-21 01:25:57 +0000208 : SCEVCastExpr(scTruncate, op, ty) {
Dan Gohman01c2ee72009-04-16 03:18:22 +0000209 assert((Op->getType()->isInteger() || isa<PointerType>(Op->getType())) &&
210 (Ty->isInteger() || isa<PointerType>(Ty)) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000211 "Cannot truncate non-integer value!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000212}
213
214SCEVTruncateExpr::~SCEVTruncateExpr() {
215 SCEVTruncates->erase(std::make_pair(Op, Ty));
216}
217
Dan Gohman13058cc2009-04-21 00:47:46 +0000218void SCEVTruncateExpr::print(raw_ostream &OS) const {
Dan Gohmanc9119222009-04-29 20:27:52 +0000219 OS << "(trunc " << *Op->getType() << " " << *Op << " to " << *Ty << ")";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000220}
221
222// SCEVZeroExtends - Only allow the creation of one SCEVZeroExtendExpr for any
223// particular input. Don't use a SCEVHandle here, or else the object will never
224// be deleted!
Dan Gohmanbff6b582009-05-04 22:30:44 +0000225static ManagedStatic<std::map<std::pair<const SCEV*, const Type*>,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000226 SCEVZeroExtendExpr*> > SCEVZeroExtends;
227
228SCEVZeroExtendExpr::SCEVZeroExtendExpr(const SCEVHandle &op, const Type *ty)
Dan Gohman2a381532009-04-21 01:25:57 +0000229 : SCEVCastExpr(scZeroExtend, op, ty) {
Dan Gohman01c2ee72009-04-16 03:18:22 +0000230 assert((Op->getType()->isInteger() || isa<PointerType>(Op->getType())) &&
231 (Ty->isInteger() || isa<PointerType>(Ty)) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000232 "Cannot zero extend non-integer value!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000233}
234
235SCEVZeroExtendExpr::~SCEVZeroExtendExpr() {
236 SCEVZeroExtends->erase(std::make_pair(Op, Ty));
237}
238
Dan Gohman13058cc2009-04-21 00:47:46 +0000239void SCEVZeroExtendExpr::print(raw_ostream &OS) const {
Dan Gohmanc9119222009-04-29 20:27:52 +0000240 OS << "(zext " << *Op->getType() << " " << *Op << " to " << *Ty << ")";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000241}
242
243// SCEVSignExtends - Only allow the creation of one SCEVSignExtendExpr for any
244// particular input. Don't use a SCEVHandle here, or else the object will never
245// be deleted!
Dan Gohmanbff6b582009-05-04 22:30:44 +0000246static ManagedStatic<std::map<std::pair<const SCEV*, const Type*>,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000247 SCEVSignExtendExpr*> > SCEVSignExtends;
248
249SCEVSignExtendExpr::SCEVSignExtendExpr(const SCEVHandle &op, const Type *ty)
Dan Gohman2a381532009-04-21 01:25:57 +0000250 : SCEVCastExpr(scSignExtend, op, ty) {
Dan Gohman01c2ee72009-04-16 03:18:22 +0000251 assert((Op->getType()->isInteger() || isa<PointerType>(Op->getType())) &&
252 (Ty->isInteger() || isa<PointerType>(Ty)) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000253 "Cannot sign extend non-integer value!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000254}
255
256SCEVSignExtendExpr::~SCEVSignExtendExpr() {
257 SCEVSignExtends->erase(std::make_pair(Op, Ty));
258}
259
Dan Gohman13058cc2009-04-21 00:47:46 +0000260void SCEVSignExtendExpr::print(raw_ostream &OS) const {
Dan Gohmanc9119222009-04-29 20:27:52 +0000261 OS << "(sext " << *Op->getType() << " " << *Op << " to " << *Ty << ")";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000262}
263
264// SCEVCommExprs - Only allow the creation of one SCEVCommutativeExpr for any
265// particular input. Don't use a SCEVHandle here, or else the object will never
266// be deleted!
Dan Gohmanbff6b582009-05-04 22:30:44 +0000267static ManagedStatic<std::map<std::pair<unsigned, std::vector<const SCEV*> >,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000268 SCEVCommutativeExpr*> > SCEVCommExprs;
269
270SCEVCommutativeExpr::~SCEVCommutativeExpr() {
Dan Gohmanbff6b582009-05-04 22:30:44 +0000271 std::vector<const SCEV*> SCEVOps(Operands.begin(), Operands.end());
272 SCEVCommExprs->erase(std::make_pair(getSCEVType(), SCEVOps));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000273}
274
Dan Gohman13058cc2009-04-21 00:47:46 +0000275void SCEVCommutativeExpr::print(raw_ostream &OS) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000276 assert(Operands.size() > 1 && "This plus expr shouldn't exist!");
277 const char *OpStr = getOperationStr();
278 OS << "(" << *Operands[0];
279 for (unsigned i = 1, e = Operands.size(); i != e; ++i)
280 OS << OpStr << *Operands[i];
281 OS << ")";
282}
283
284SCEVHandle SCEVCommutativeExpr::
285replaceSymbolicValuesWithConcrete(const SCEVHandle &Sym,
Dan Gohman89f85052007-10-22 18:31:58 +0000286 const SCEVHandle &Conc,
287 ScalarEvolution &SE) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000288 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
Dan Gohman89f85052007-10-22 18:31:58 +0000289 SCEVHandle H =
290 getOperand(i)->replaceSymbolicValuesWithConcrete(Sym, Conc, SE);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000291 if (H != getOperand(i)) {
292 std::vector<SCEVHandle> NewOps;
293 NewOps.reserve(getNumOperands());
294 for (unsigned j = 0; j != i; ++j)
295 NewOps.push_back(getOperand(j));
296 NewOps.push_back(H);
297 for (++i; i != e; ++i)
298 NewOps.push_back(getOperand(i)->
Dan Gohman89f85052007-10-22 18:31:58 +0000299 replaceSymbolicValuesWithConcrete(Sym, Conc, SE));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000300
301 if (isa<SCEVAddExpr>(this))
Dan Gohman89f85052007-10-22 18:31:58 +0000302 return SE.getAddExpr(NewOps);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000303 else if (isa<SCEVMulExpr>(this))
Dan Gohman89f85052007-10-22 18:31:58 +0000304 return SE.getMulExpr(NewOps);
Nick Lewycky711640a2007-11-25 22:41:31 +0000305 else if (isa<SCEVSMaxExpr>(this))
306 return SE.getSMaxExpr(NewOps);
Nick Lewyckye7a24ff2008-02-20 06:48:22 +0000307 else if (isa<SCEVUMaxExpr>(this))
308 return SE.getUMaxExpr(NewOps);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000309 else
310 assert(0 && "Unknown commutative expr!");
311 }
312 }
313 return this;
314}
315
Dan Gohman72a8a022009-05-07 14:00:19 +0000316bool SCEVNAryExpr::dominates(BasicBlock *BB, DominatorTree *DT) const {
Evan Cheng98c073b2009-02-17 00:13:06 +0000317 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
318 if (!getOperand(i)->dominates(BB, DT))
319 return false;
320 }
321 return true;
322}
323
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000324
Wojciech Matyjewicz2211fec2008-02-11 11:03:14 +0000325// SCEVUDivs - Only allow the creation of one SCEVUDivExpr for any particular
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000326// input. Don't use a SCEVHandle here, or else the object will never be
327// deleted!
Dan Gohmanbff6b582009-05-04 22:30:44 +0000328static ManagedStatic<std::map<std::pair<const SCEV*, const SCEV*>,
Wojciech Matyjewicz2211fec2008-02-11 11:03:14 +0000329 SCEVUDivExpr*> > SCEVUDivs;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000330
Wojciech Matyjewicz2211fec2008-02-11 11:03:14 +0000331SCEVUDivExpr::~SCEVUDivExpr() {
332 SCEVUDivs->erase(std::make_pair(LHS, RHS));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000333}
334
Evan Cheng98c073b2009-02-17 00:13:06 +0000335bool SCEVUDivExpr::dominates(BasicBlock *BB, DominatorTree *DT) const {
336 return LHS->dominates(BB, DT) && RHS->dominates(BB, DT);
337}
338
Dan Gohman13058cc2009-04-21 00:47:46 +0000339void SCEVUDivExpr::print(raw_ostream &OS) const {
Wojciech Matyjewicz2211fec2008-02-11 11:03:14 +0000340 OS << "(" << *LHS << " /u " << *RHS << ")";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000341}
342
Wojciech Matyjewicz2211fec2008-02-11 11:03:14 +0000343const Type *SCEVUDivExpr::getType() const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000344 return LHS->getType();
345}
346
347// SCEVAddRecExprs - Only allow the creation of one SCEVAddRecExpr for any
348// particular input. Don't use a SCEVHandle here, or else the object will never
349// be deleted!
Dan Gohmanbff6b582009-05-04 22:30:44 +0000350static ManagedStatic<std::map<std::pair<const Loop *,
351 std::vector<const SCEV*> >,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000352 SCEVAddRecExpr*> > SCEVAddRecExprs;
353
354SCEVAddRecExpr::~SCEVAddRecExpr() {
Dan Gohmanbff6b582009-05-04 22:30:44 +0000355 std::vector<const SCEV*> SCEVOps(Operands.begin(), Operands.end());
356 SCEVAddRecExprs->erase(std::make_pair(L, SCEVOps));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000357}
358
359SCEVHandle SCEVAddRecExpr::
360replaceSymbolicValuesWithConcrete(const SCEVHandle &Sym,
Dan Gohman89f85052007-10-22 18:31:58 +0000361 const SCEVHandle &Conc,
362 ScalarEvolution &SE) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000363 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
Dan Gohman89f85052007-10-22 18:31:58 +0000364 SCEVHandle H =
365 getOperand(i)->replaceSymbolicValuesWithConcrete(Sym, Conc, SE);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000366 if (H != getOperand(i)) {
367 std::vector<SCEVHandle> NewOps;
368 NewOps.reserve(getNumOperands());
369 for (unsigned j = 0; j != i; ++j)
370 NewOps.push_back(getOperand(j));
371 NewOps.push_back(H);
372 for (++i; i != e; ++i)
373 NewOps.push_back(getOperand(i)->
Dan Gohman89f85052007-10-22 18:31:58 +0000374 replaceSymbolicValuesWithConcrete(Sym, Conc, SE));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000375
Dan Gohman89f85052007-10-22 18:31:58 +0000376 return SE.getAddRecExpr(NewOps, L);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000377 }
378 }
379 return this;
380}
381
382
383bool SCEVAddRecExpr::isLoopInvariant(const Loop *QueryLoop) const {
384 // This recurrence is invariant w.r.t to QueryLoop iff QueryLoop doesn't
385 // contain L and if the start is invariant.
386 return !QueryLoop->contains(L->getHeader()) &&
387 getOperand(0)->isLoopInvariant(QueryLoop);
388}
389
390
Dan Gohman13058cc2009-04-21 00:47:46 +0000391void SCEVAddRecExpr::print(raw_ostream &OS) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000392 OS << "{" << *Operands[0];
393 for (unsigned i = 1, e = Operands.size(); i != e; ++i)
394 OS << ",+," << *Operands[i];
395 OS << "}<" << L->getHeader()->getName() + ">";
396}
397
398// SCEVUnknowns - Only allow the creation of one SCEVUnknown for any particular
399// value. Don't use a SCEVHandle here, or else the object will never be
400// deleted!
401static ManagedStatic<std::map<Value*, SCEVUnknown*> > SCEVUnknowns;
402
403SCEVUnknown::~SCEVUnknown() { SCEVUnknowns->erase(V); }
404
405bool SCEVUnknown::isLoopInvariant(const Loop *L) const {
406 // All non-instruction values are loop invariant. All instructions are loop
407 // invariant if they are not contained in the specified loop.
408 if (Instruction *I = dyn_cast<Instruction>(V))
409 return !L->contains(I->getParent());
410 return true;
411}
412
Evan Cheng98c073b2009-02-17 00:13:06 +0000413bool SCEVUnknown::dominates(BasicBlock *BB, DominatorTree *DT) const {
414 if (Instruction *I = dyn_cast<Instruction>(getValue()))
415 return DT->dominates(I->getParent(), BB);
416 return true;
417}
418
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000419const Type *SCEVUnknown::getType() const {
420 return V->getType();
421}
422
Dan Gohman13058cc2009-04-21 00:47:46 +0000423void SCEVUnknown::print(raw_ostream &OS) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000424 WriteAsOperand(OS, V, false);
425}
426
427//===----------------------------------------------------------------------===//
428// SCEV Utilities
429//===----------------------------------------------------------------------===//
430
431namespace {
432 /// SCEVComplexityCompare - Return true if the complexity of the LHS is less
433 /// than the complexity of the RHS. This comparator is used to canonicalize
434 /// expressions.
Dan Gohman5d486452009-05-07 14:39:04 +0000435 class VISIBILITY_HIDDEN SCEVComplexityCompare {
436 LoopInfo *LI;
437 public:
438 explicit SCEVComplexityCompare(LoopInfo *li) : LI(li) {}
439
Dan Gohmanc0c69cf2008-04-14 18:23:56 +0000440 bool operator()(const SCEV *LHS, const SCEV *RHS) const {
Dan Gohman5d486452009-05-07 14:39:04 +0000441 // Primarily, sort the SCEVs by their getSCEVType().
442 if (LHS->getSCEVType() != RHS->getSCEVType())
443 return LHS->getSCEVType() < RHS->getSCEVType();
444
445 // Aside from the getSCEVType() ordering, the particular ordering
446 // isn't very important except that it's beneficial to be consistent,
447 // so that (a + b) and (b + a) don't end up as different expressions.
448
449 // Sort SCEVUnknown values with some loose heuristics. TODO: This is
450 // not as complete as it could be.
451 if (const SCEVUnknown *LU = dyn_cast<SCEVUnknown>(LHS)) {
452 const SCEVUnknown *RU = cast<SCEVUnknown>(RHS);
453
454 // Compare getValueID values.
455 if (LU->getValue()->getValueID() != RU->getValue()->getValueID())
456 return LU->getValue()->getValueID() < RU->getValue()->getValueID();
457
458 // Sort arguments by their position.
459 if (const Argument *LA = dyn_cast<Argument>(LU->getValue())) {
460 const Argument *RA = cast<Argument>(RU->getValue());
461 return LA->getArgNo() < RA->getArgNo();
462 }
463
464 // For instructions, compare their loop depth, and their opcode.
465 // This is pretty loose.
466 if (Instruction *LV = dyn_cast<Instruction>(LU->getValue())) {
467 Instruction *RV = cast<Instruction>(RU->getValue());
468
469 // Compare loop depths.
470 if (LI->getLoopDepth(LV->getParent()) !=
471 LI->getLoopDepth(RV->getParent()))
472 return LI->getLoopDepth(LV->getParent()) <
473 LI->getLoopDepth(RV->getParent());
474
475 // Compare opcodes.
476 if (LV->getOpcode() != RV->getOpcode())
477 return LV->getOpcode() < RV->getOpcode();
478
479 // Compare the number of operands.
480 if (LV->getNumOperands() != RV->getNumOperands())
481 return LV->getNumOperands() < RV->getNumOperands();
482 }
483
484 return false;
485 }
486
487 // Constant sorting doesn't matter since they'll be folded.
488 if (isa<SCEVConstant>(LHS))
489 return false;
490
491 // Lexicographically compare n-ary expressions.
492 if (const SCEVNAryExpr *LC = dyn_cast<SCEVNAryExpr>(LHS)) {
493 const SCEVNAryExpr *RC = cast<SCEVNAryExpr>(RHS);
494 for (unsigned i = 0, e = LC->getNumOperands(); i != e; ++i) {
495 if (i >= RC->getNumOperands())
496 return false;
497 if (operator()(LC->getOperand(i), RC->getOperand(i)))
498 return true;
499 if (operator()(RC->getOperand(i), LC->getOperand(i)))
500 return false;
501 }
502 return LC->getNumOperands() < RC->getNumOperands();
503 }
504
Dan Gohman6e10db12009-05-07 19:23:21 +0000505 // Lexicographically compare udiv expressions.
506 if (const SCEVUDivExpr *LC = dyn_cast<SCEVUDivExpr>(LHS)) {
507 const SCEVUDivExpr *RC = cast<SCEVUDivExpr>(RHS);
508 if (operator()(LC->getLHS(), RC->getLHS()))
509 return true;
510 if (operator()(RC->getLHS(), LC->getLHS()))
511 return false;
512 if (operator()(LC->getRHS(), RC->getRHS()))
513 return true;
514 if (operator()(RC->getRHS(), LC->getRHS()))
515 return false;
516 return false;
517 }
518
Dan Gohman5d486452009-05-07 14:39:04 +0000519 // Compare cast expressions by operand.
520 if (const SCEVCastExpr *LC = dyn_cast<SCEVCastExpr>(LHS)) {
521 const SCEVCastExpr *RC = cast<SCEVCastExpr>(RHS);
522 return operator()(LC->getOperand(), RC->getOperand());
523 }
524
525 assert(0 && "Unknown SCEV kind!");
526 return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000527 }
528 };
529}
530
531/// GroupByComplexity - Given a list of SCEV objects, order them by their
532/// complexity, and group objects of the same complexity together by value.
533/// When this routine is finished, we know that any duplicates in the vector are
534/// consecutive and that complexity is monotonically increasing.
535///
536/// Note that we go take special precautions to ensure that we get determinstic
537/// results from this routine. In other words, we don't want the results of
538/// this to depend on where the addresses of various SCEV objects happened to
539/// land in memory.
540///
Dan Gohman5d486452009-05-07 14:39:04 +0000541static void GroupByComplexity(std::vector<SCEVHandle> &Ops,
542 LoopInfo *LI) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000543 if (Ops.size() < 2) return; // Noop
544 if (Ops.size() == 2) {
545 // This is the common case, which also happens to be trivially simple.
546 // Special case it.
Dan Gohman5d486452009-05-07 14:39:04 +0000547 if (SCEVComplexityCompare(LI)(Ops[1], Ops[0]))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000548 std::swap(Ops[0], Ops[1]);
549 return;
550 }
551
552 // Do the rough sort by complexity.
Dan Gohman5d486452009-05-07 14:39:04 +0000553 std::stable_sort(Ops.begin(), Ops.end(), SCEVComplexityCompare(LI));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000554
555 // Now that we are sorted by complexity, group elements of the same
556 // complexity. Note that this is, at worst, N^2, but the vector is likely to
557 // be extremely short in practice. Note that we take this approach because we
558 // do not want to depend on the addresses of the objects we are grouping.
559 for (unsigned i = 0, e = Ops.size(); i != e-2; ++i) {
Dan Gohmanbff6b582009-05-04 22:30:44 +0000560 const SCEV *S = Ops[i];
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000561 unsigned Complexity = S->getSCEVType();
562
563 // If there are any objects of the same complexity and same value as this
564 // one, group them.
565 for (unsigned j = i+1; j != e && Ops[j]->getSCEVType() == Complexity; ++j) {
566 if (Ops[j] == S) { // Found a duplicate.
567 // Move it to immediately after i'th element.
568 std::swap(Ops[i+1], Ops[j]);
569 ++i; // no need to rescan it.
570 if (i == e-2) return; // Done!
571 }
572 }
573 }
574}
575
576
577
578//===----------------------------------------------------------------------===//
579// Simple SCEV method implementations
580//===----------------------------------------------------------------------===//
581
Eli Friedman7489ec92008-08-04 23:49:06 +0000582/// BinomialCoefficient - Compute BC(It, K). The result has width W.
583// Assume, K > 0.
Wojciech Matyjewicz2211fec2008-02-11 11:03:14 +0000584static SCEVHandle BinomialCoefficient(SCEVHandle It, unsigned K,
Eli Friedman7489ec92008-08-04 23:49:06 +0000585 ScalarEvolution &SE,
Dan Gohman01c2ee72009-04-16 03:18:22 +0000586 const Type* ResultTy) {
Eli Friedman7489ec92008-08-04 23:49:06 +0000587 // Handle the simplest case efficiently.
588 if (K == 1)
589 return SE.getTruncateOrZeroExtend(It, ResultTy);
590
Wojciech Matyjewicz2211fec2008-02-11 11:03:14 +0000591 // We are using the following formula for BC(It, K):
592 //
593 // BC(It, K) = (It * (It - 1) * ... * (It - K + 1)) / K!
594 //
Eli Friedman7489ec92008-08-04 23:49:06 +0000595 // Suppose, W is the bitwidth of the return value. We must be prepared for
596 // overflow. Hence, we must assure that the result of our computation is
597 // equal to the accurate one modulo 2^W. Unfortunately, division isn't
598 // safe in modular arithmetic.
Wojciech Matyjewicz2211fec2008-02-11 11:03:14 +0000599 //
Eli Friedman7489ec92008-08-04 23:49:06 +0000600 // However, this code doesn't use exactly that formula; the formula it uses
601 // is something like the following, where T is the number of factors of 2 in
602 // K! (i.e. trailing zeros in the binary representation of K!), and ^ is
603 // exponentiation:
Wojciech Matyjewicz2211fec2008-02-11 11:03:14 +0000604 //
Eli Friedman7489ec92008-08-04 23:49:06 +0000605 // BC(It, K) = (It * (It - 1) * ... * (It - K + 1)) / 2^T / (K! / 2^T)
Wojciech Matyjewicz2211fec2008-02-11 11:03:14 +0000606 //
Eli Friedman7489ec92008-08-04 23:49:06 +0000607 // This formula is trivially equivalent to the previous formula. However,
608 // this formula can be implemented much more efficiently. The trick is that
609 // K! / 2^T is odd, and exact division by an odd number *is* safe in modular
610 // arithmetic. To do exact division in modular arithmetic, all we have
611 // to do is multiply by the inverse. Therefore, this step can be done at
612 // width W.
613 //
614 // The next issue is how to safely do the division by 2^T. The way this
615 // is done is by doing the multiplication step at a width of at least W + T
616 // bits. This way, the bottom W+T bits of the product are accurate. Then,
617 // when we perform the division by 2^T (which is equivalent to a right shift
618 // by T), the bottom W bits are accurate. Extra bits are okay; they'll get
619 // truncated out after the division by 2^T.
620 //
621 // In comparison to just directly using the first formula, this technique
622 // is much more efficient; using the first formula requires W * K bits,
623 // but this formula less than W + K bits. Also, the first formula requires
624 // a division step, whereas this formula only requires multiplies and shifts.
625 //
626 // It doesn't matter whether the subtraction step is done in the calculation
627 // width or the input iteration count's width; if the subtraction overflows,
628 // the result must be zero anyway. We prefer here to do it in the width of
629 // the induction variable because it helps a lot for certain cases; CodeGen
630 // isn't smart enough to ignore the overflow, which leads to much less
631 // efficient code if the width of the subtraction is wider than the native
632 // register width.
633 //
634 // (It's possible to not widen at all by pulling out factors of 2 before
635 // the multiplication; for example, K=2 can be calculated as
636 // It/2*(It+(It*INT_MIN/INT_MIN)+-1). However, it requires
637 // extra arithmetic, so it's not an obvious win, and it gets
638 // much more complicated for K > 3.)
Wojciech Matyjewicz2211fec2008-02-11 11:03:14 +0000639
Eli Friedman7489ec92008-08-04 23:49:06 +0000640 // Protection from insane SCEVs; this bound is conservative,
641 // but it probably doesn't matter.
642 if (K > 1000)
Dan Gohman0ad08b02009-04-18 17:58:19 +0000643 return SE.getCouldNotCompute();
Wojciech Matyjewicz2211fec2008-02-11 11:03:14 +0000644
Dan Gohmanb98c1a32009-04-21 01:07:12 +0000645 unsigned W = SE.getTypeSizeInBits(ResultTy);
Wojciech Matyjewicz2211fec2008-02-11 11:03:14 +0000646
Eli Friedman7489ec92008-08-04 23:49:06 +0000647 // Calculate K! / 2^T and T; we divide out the factors of two before
648 // multiplying for calculating K! / 2^T to avoid overflow.
649 // Other overflow doesn't matter because we only care about the bottom
650 // W bits of the result.
651 APInt OddFactorial(W, 1);
652 unsigned T = 1;
653 for (unsigned i = 3; i <= K; ++i) {
654 APInt Mult(W, i);
655 unsigned TwoFactors = Mult.countTrailingZeros();
656 T += TwoFactors;
657 Mult = Mult.lshr(TwoFactors);
658 OddFactorial *= Mult;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000659 }
Nick Lewyckydbaa60a2008-06-13 04:38:55 +0000660
Eli Friedman7489ec92008-08-04 23:49:06 +0000661 // We need at least W + T bits for the multiplication step
nicholas9e3e5fd2009-01-25 08:16:27 +0000662 unsigned CalculationBits = W + T;
Eli Friedman7489ec92008-08-04 23:49:06 +0000663
664 // Calcuate 2^T, at width T+W.
665 APInt DivFactor = APInt(CalculationBits, 1).shl(T);
666
667 // Calculate the multiplicative inverse of K! / 2^T;
668 // this multiplication factor will perform the exact division by
669 // K! / 2^T.
670 APInt Mod = APInt::getSignedMinValue(W+1);
671 APInt MultiplyFactor = OddFactorial.zext(W+1);
672 MultiplyFactor = MultiplyFactor.multiplicativeInverse(Mod);
673 MultiplyFactor = MultiplyFactor.trunc(W);
674
675 // Calculate the product, at width T+W
676 const IntegerType *CalculationTy = IntegerType::get(CalculationBits);
677 SCEVHandle Dividend = SE.getTruncateOrZeroExtend(It, CalculationTy);
678 for (unsigned i = 1; i != K; ++i) {
679 SCEVHandle S = SE.getMinusSCEV(It, SE.getIntegerSCEV(i, It->getType()));
680 Dividend = SE.getMulExpr(Dividend,
681 SE.getTruncateOrZeroExtend(S, CalculationTy));
682 }
683
684 // Divide by 2^T
685 SCEVHandle DivResult = SE.getUDivExpr(Dividend, SE.getConstant(DivFactor));
686
687 // Truncate the result, and divide by K! / 2^T.
688
689 return SE.getMulExpr(SE.getConstant(MultiplyFactor),
690 SE.getTruncateOrZeroExtend(DivResult, ResultTy));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000691}
692
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000693/// evaluateAtIteration - Return the value of this chain of recurrences at
694/// the specified iteration number. We can evaluate this recurrence by
695/// multiplying each element in the chain by the binomial coefficient
696/// corresponding to it. In other words, we can evaluate {A,+,B,+,C,+,D} as:
697///
Wojciech Matyjewicz2211fec2008-02-11 11:03:14 +0000698/// A*BC(It, 0) + B*BC(It, 1) + C*BC(It, 2) + D*BC(It, 3)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000699///
Wojciech Matyjewicz2211fec2008-02-11 11:03:14 +0000700/// where BC(It, k) stands for binomial coefficient.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000701///
Dan Gohman89f85052007-10-22 18:31:58 +0000702SCEVHandle SCEVAddRecExpr::evaluateAtIteration(SCEVHandle It,
703 ScalarEvolution &SE) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000704 SCEVHandle Result = getStart();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000705 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
Wojciech Matyjewicz2211fec2008-02-11 11:03:14 +0000706 // The computation is correct in the face of overflow provided that the
707 // multiplication is performed _after_ the evaluation of the binomial
708 // coefficient.
Dan Gohman01c2ee72009-04-16 03:18:22 +0000709 SCEVHandle Coeff = BinomialCoefficient(It, i, SE, getType());
Nick Lewyckyb6218e02008-10-13 03:58:02 +0000710 if (isa<SCEVCouldNotCompute>(Coeff))
711 return Coeff;
712
713 Result = SE.getAddExpr(Result, SE.getMulExpr(getOperand(i), Coeff));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000714 }
715 return Result;
716}
717
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000718//===----------------------------------------------------------------------===//
719// SCEV Expression folder implementations
720//===----------------------------------------------------------------------===//
721
Dan Gohman9c8abcc2009-05-01 16:44:56 +0000722SCEVHandle ScalarEvolution::getTruncateExpr(const SCEVHandle &Op,
723 const Type *Ty) {
Dan Gohmanb98c1a32009-04-21 01:07:12 +0000724 assert(getTypeSizeInBits(Op->getType()) > getTypeSizeInBits(Ty) &&
Dan Gohmanf62cfe52009-04-21 00:55:22 +0000725 "This is not a truncating conversion!");
Dan Gohman13a51e22009-05-01 16:44:18 +0000726 assert(isSCEVable(Ty) &&
727 "This is not a conversion to a SCEVable type!");
728 Ty = getEffectiveSCEVType(Ty);
Dan Gohmanf62cfe52009-04-21 00:55:22 +0000729
Dan Gohmanc76b5452009-05-04 22:02:23 +0000730 if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(Op))
Dan Gohman89f85052007-10-22 18:31:58 +0000731 return getUnknown(
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000732 ConstantExpr::getTrunc(SC->getValue(), Ty));
733
Dan Gohman1a5c4992009-04-22 16:20:48 +0000734 // trunc(trunc(x)) --> trunc(x)
Dan Gohmanc76b5452009-05-04 22:02:23 +0000735 if (const SCEVTruncateExpr *ST = dyn_cast<SCEVTruncateExpr>(Op))
Dan Gohman1a5c4992009-04-22 16:20:48 +0000736 return getTruncateExpr(ST->getOperand(), Ty);
737
Nick Lewycky37d04642009-04-23 05:15:08 +0000738 // trunc(sext(x)) --> sext(x) if widening or trunc(x) if narrowing
Dan Gohmanc76b5452009-05-04 22:02:23 +0000739 if (const SCEVSignExtendExpr *SS = dyn_cast<SCEVSignExtendExpr>(Op))
Nick Lewycky37d04642009-04-23 05:15:08 +0000740 return getTruncateOrSignExtend(SS->getOperand(), Ty);
741
742 // trunc(zext(x)) --> zext(x) if widening or trunc(x) if narrowing
Dan Gohmanc76b5452009-05-04 22:02:23 +0000743 if (const SCEVZeroExtendExpr *SZ = dyn_cast<SCEVZeroExtendExpr>(Op))
Nick Lewycky37d04642009-04-23 05:15:08 +0000744 return getTruncateOrZeroExtend(SZ->getOperand(), Ty);
745
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000746 // If the input value is a chrec scev made out of constants, truncate
747 // all of the constants.
Dan Gohmanc76b5452009-05-04 22:02:23 +0000748 if (const SCEVAddRecExpr *AddRec = dyn_cast<SCEVAddRecExpr>(Op)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000749 std::vector<SCEVHandle> Operands;
750 for (unsigned i = 0, e = AddRec->getNumOperands(); i != e; ++i)
751 // FIXME: This should allow truncation of other expression types!
752 if (isa<SCEVConstant>(AddRec->getOperand(i)))
Dan Gohman89f85052007-10-22 18:31:58 +0000753 Operands.push_back(getTruncateExpr(AddRec->getOperand(i), Ty));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000754 else
755 break;
756 if (Operands.size() == AddRec->getNumOperands())
Dan Gohman89f85052007-10-22 18:31:58 +0000757 return getAddRecExpr(Operands, AddRec->getLoop());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000758 }
759
760 SCEVTruncateExpr *&Result = (*SCEVTruncates)[std::make_pair(Op, Ty)];
761 if (Result == 0) Result = new SCEVTruncateExpr(Op, Ty);
762 return Result;
763}
764
Dan Gohman36d40922009-04-16 19:25:55 +0000765SCEVHandle ScalarEvolution::getZeroExtendExpr(const SCEVHandle &Op,
766 const Type *Ty) {
Dan Gohmanb98c1a32009-04-21 01:07:12 +0000767 assert(getTypeSizeInBits(Op->getType()) < getTypeSizeInBits(Ty) &&
Dan Gohman36d40922009-04-16 19:25:55 +0000768 "This is not an extending conversion!");
Dan Gohman13a51e22009-05-01 16:44:18 +0000769 assert(isSCEVable(Ty) &&
770 "This is not a conversion to a SCEVable type!");
771 Ty = getEffectiveSCEVType(Ty);
Dan Gohman36d40922009-04-16 19:25:55 +0000772
Dan Gohmanc76b5452009-05-04 22:02:23 +0000773 if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(Op)) {
Dan Gohmanb98c1a32009-04-21 01:07:12 +0000774 const Type *IntTy = getEffectiveSCEVType(Ty);
Dan Gohman01c2ee72009-04-16 03:18:22 +0000775 Constant *C = ConstantExpr::getZExt(SC->getValue(), IntTy);
776 if (IntTy != Ty) C = ConstantExpr::getIntToPtr(C, Ty);
777 return getUnknown(C);
778 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000779
Dan Gohman1a5c4992009-04-22 16:20:48 +0000780 // zext(zext(x)) --> zext(x)
Dan Gohmanc76b5452009-05-04 22:02:23 +0000781 if (const SCEVZeroExtendExpr *SZ = dyn_cast<SCEVZeroExtendExpr>(Op))
Dan Gohman1a5c4992009-04-22 16:20:48 +0000782 return getZeroExtendExpr(SZ->getOperand(), Ty);
783
Dan Gohmana9dba962009-04-27 20:16:15 +0000784 // If the input value is a chrec scev, and we can prove that the value
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000785 // did not overflow the old, smaller, value, we can zero extend all of the
Dan Gohmana9dba962009-04-27 20:16:15 +0000786 // operands (often constants). This allows analysis of something like
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000787 // this: for (unsigned char X = 0; X < 100; ++X) { int Y = X; }
Dan Gohmanc76b5452009-05-04 22:02:23 +0000788 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(Op))
Dan Gohmana9dba962009-04-27 20:16:15 +0000789 if (AR->isAffine()) {
790 // Check whether the backedge-taken count is SCEVCouldNotCompute.
791 // Note that this serves two purposes: It filters out loops that are
792 // simply not analyzable, and it covers the case where this code is
793 // being called from within backedge-taken count analysis, such that
794 // attempting to ask for the backedge-taken count would likely result
795 // in infinite recursion. In the later case, the analysis code will
796 // cope with a conservative value, and it will take care to purge
797 // that value once it has finished.
Dan Gohmanf7d3d25542009-04-30 20:47:05 +0000798 SCEVHandle MaxBECount = getMaxBackedgeTakenCount(AR->getLoop());
799 if (!isa<SCEVCouldNotCompute>(MaxBECount)) {
Dan Gohman4ada77f2009-04-29 01:54:20 +0000800 // Manually compute the final value for AR, checking for
Dan Gohman3ded5b22009-04-29 22:28:28 +0000801 // overflow.
Dan Gohmana9dba962009-04-27 20:16:15 +0000802 SCEVHandle Start = AR->getStart();
803 SCEVHandle Step = AR->getStepRecurrence(*this);
804
805 // Check whether the backedge-taken count can be losslessly casted to
806 // the addrec's type. The count is always unsigned.
Dan Gohmanf7d3d25542009-04-30 20:47:05 +0000807 SCEVHandle CastedMaxBECount =
808 getTruncateOrZeroExtend(MaxBECount, Start->getType());
809 if (MaxBECount ==
810 getTruncateOrZeroExtend(CastedMaxBECount, MaxBECount->getType())) {
Dan Gohmana9dba962009-04-27 20:16:15 +0000811 const Type *WideTy =
812 IntegerType::get(getTypeSizeInBits(Start->getType()) * 2);
Dan Gohmanf7d3d25542009-04-30 20:47:05 +0000813 // Check whether Start+Step*MaxBECount has no unsigned overflow.
Dan Gohmana9dba962009-04-27 20:16:15 +0000814 SCEVHandle ZMul =
Dan Gohmanf7d3d25542009-04-30 20:47:05 +0000815 getMulExpr(CastedMaxBECount,
Dan Gohmana9dba962009-04-27 20:16:15 +0000816 getTruncateOrZeroExtend(Step, Start->getType()));
Dan Gohman3ded5b22009-04-29 22:28:28 +0000817 SCEVHandle Add = getAddExpr(Start, ZMul);
818 if (getZeroExtendExpr(Add, WideTy) ==
819 getAddExpr(getZeroExtendExpr(Start, WideTy),
Dan Gohmanf7d3d25542009-04-30 20:47:05 +0000820 getMulExpr(getZeroExtendExpr(CastedMaxBECount, WideTy),
Dan Gohman3ded5b22009-04-29 22:28:28 +0000821 getZeroExtendExpr(Step, WideTy))))
822 // Return the expression with the addrec on the outside.
823 return getAddRecExpr(getZeroExtendExpr(Start, Ty),
824 getZeroExtendExpr(Step, Ty),
825 AR->getLoop());
Dan Gohmana9dba962009-04-27 20:16:15 +0000826
827 // Similar to above, only this time treat the step value as signed.
828 // This covers loops that count down.
829 SCEVHandle SMul =
Dan Gohmanf7d3d25542009-04-30 20:47:05 +0000830 getMulExpr(CastedMaxBECount,
Dan Gohmana9dba962009-04-27 20:16:15 +0000831 getTruncateOrSignExtend(Step, Start->getType()));
Dan Gohman3ded5b22009-04-29 22:28:28 +0000832 Add = getAddExpr(Start, SMul);
833 if (getZeroExtendExpr(Add, WideTy) ==
834 getAddExpr(getZeroExtendExpr(Start, WideTy),
Dan Gohmanf7d3d25542009-04-30 20:47:05 +0000835 getMulExpr(getZeroExtendExpr(CastedMaxBECount, WideTy),
Dan Gohman3ded5b22009-04-29 22:28:28 +0000836 getSignExtendExpr(Step, WideTy))))
837 // Return the expression with the addrec on the outside.
838 return getAddRecExpr(getZeroExtendExpr(Start, Ty),
839 getSignExtendExpr(Step, Ty),
840 AR->getLoop());
Dan Gohmana9dba962009-04-27 20:16:15 +0000841 }
842 }
843 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000844
845 SCEVZeroExtendExpr *&Result = (*SCEVZeroExtends)[std::make_pair(Op, Ty)];
846 if (Result == 0) Result = new SCEVZeroExtendExpr(Op, Ty);
847 return Result;
848}
849
Dan Gohmana9dba962009-04-27 20:16:15 +0000850SCEVHandle ScalarEvolution::getSignExtendExpr(const SCEVHandle &Op,
851 const Type *Ty) {
Dan Gohmanb98c1a32009-04-21 01:07:12 +0000852 assert(getTypeSizeInBits(Op->getType()) < getTypeSizeInBits(Ty) &&
Dan Gohmanf62cfe52009-04-21 00:55:22 +0000853 "This is not an extending conversion!");
Dan Gohman13a51e22009-05-01 16:44:18 +0000854 assert(isSCEVable(Ty) &&
855 "This is not a conversion to a SCEVable type!");
856 Ty = getEffectiveSCEVType(Ty);
Dan Gohmanf62cfe52009-04-21 00:55:22 +0000857
Dan Gohmanc76b5452009-05-04 22:02:23 +0000858 if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(Op)) {
Dan Gohmanb98c1a32009-04-21 01:07:12 +0000859 const Type *IntTy = getEffectiveSCEVType(Ty);
Dan Gohman01c2ee72009-04-16 03:18:22 +0000860 Constant *C = ConstantExpr::getSExt(SC->getValue(), IntTy);
861 if (IntTy != Ty) C = ConstantExpr::getIntToPtr(C, Ty);
862 return getUnknown(C);
863 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000864
Dan Gohman1a5c4992009-04-22 16:20:48 +0000865 // sext(sext(x)) --> sext(x)
Dan Gohmanc76b5452009-05-04 22:02:23 +0000866 if (const SCEVSignExtendExpr *SS = dyn_cast<SCEVSignExtendExpr>(Op))
Dan Gohman1a5c4992009-04-22 16:20:48 +0000867 return getSignExtendExpr(SS->getOperand(), Ty);
868
Dan Gohmana9dba962009-04-27 20:16:15 +0000869 // If the input value is a chrec scev, and we can prove that the value
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000870 // did not overflow the old, smaller, value, we can sign extend all of the
Dan Gohmana9dba962009-04-27 20:16:15 +0000871 // operands (often constants). This allows analysis of something like
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000872 // this: for (signed char X = 0; X < 100; ++X) { int Y = X; }
Dan Gohmanc76b5452009-05-04 22:02:23 +0000873 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(Op))
Dan Gohmana9dba962009-04-27 20:16:15 +0000874 if (AR->isAffine()) {
875 // Check whether the backedge-taken count is SCEVCouldNotCompute.
876 // Note that this serves two purposes: It filters out loops that are
877 // simply not analyzable, and it covers the case where this code is
878 // being called from within backedge-taken count analysis, such that
879 // attempting to ask for the backedge-taken count would likely result
880 // in infinite recursion. In the later case, the analysis code will
881 // cope with a conservative value, and it will take care to purge
882 // that value once it has finished.
Dan Gohmanf7d3d25542009-04-30 20:47:05 +0000883 SCEVHandle MaxBECount = getMaxBackedgeTakenCount(AR->getLoop());
884 if (!isa<SCEVCouldNotCompute>(MaxBECount)) {
Dan Gohman4ada77f2009-04-29 01:54:20 +0000885 // Manually compute the final value for AR, checking for
Dan Gohman3ded5b22009-04-29 22:28:28 +0000886 // overflow.
Dan Gohmana9dba962009-04-27 20:16:15 +0000887 SCEVHandle Start = AR->getStart();
888 SCEVHandle Step = AR->getStepRecurrence(*this);
889
890 // Check whether the backedge-taken count can be losslessly casted to
Dan Gohman3ded5b22009-04-29 22:28:28 +0000891 // the addrec's type. The count is always unsigned.
Dan Gohmanf7d3d25542009-04-30 20:47:05 +0000892 SCEVHandle CastedMaxBECount =
893 getTruncateOrZeroExtend(MaxBECount, Start->getType());
894 if (MaxBECount ==
895 getTruncateOrZeroExtend(CastedMaxBECount, MaxBECount->getType())) {
Dan Gohmana9dba962009-04-27 20:16:15 +0000896 const Type *WideTy =
897 IntegerType::get(getTypeSizeInBits(Start->getType()) * 2);
Dan Gohmanf7d3d25542009-04-30 20:47:05 +0000898 // Check whether Start+Step*MaxBECount has no signed overflow.
Dan Gohmana9dba962009-04-27 20:16:15 +0000899 SCEVHandle SMul =
Dan Gohmanf7d3d25542009-04-30 20:47:05 +0000900 getMulExpr(CastedMaxBECount,
Dan Gohmana9dba962009-04-27 20:16:15 +0000901 getTruncateOrSignExtend(Step, Start->getType()));
Dan Gohman3ded5b22009-04-29 22:28:28 +0000902 SCEVHandle Add = getAddExpr(Start, SMul);
903 if (getSignExtendExpr(Add, WideTy) ==
904 getAddExpr(getSignExtendExpr(Start, WideTy),
Dan Gohmanf7d3d25542009-04-30 20:47:05 +0000905 getMulExpr(getZeroExtendExpr(CastedMaxBECount, WideTy),
Dan Gohman3ded5b22009-04-29 22:28:28 +0000906 getSignExtendExpr(Step, WideTy))))
907 // Return the expression with the addrec on the outside.
908 return getAddRecExpr(getSignExtendExpr(Start, Ty),
909 getSignExtendExpr(Step, Ty),
910 AR->getLoop());
Dan Gohmana9dba962009-04-27 20:16:15 +0000911 }
912 }
913 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000914
915 SCEVSignExtendExpr *&Result = (*SCEVSignExtends)[std::make_pair(Op, Ty)];
916 if (Result == 0) Result = new SCEVSignExtendExpr(Op, Ty);
917 return Result;
918}
919
920// get - Get a canonical add expression, or something simpler if possible.
Dan Gohman89f85052007-10-22 18:31:58 +0000921SCEVHandle ScalarEvolution::getAddExpr(std::vector<SCEVHandle> &Ops) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000922 assert(!Ops.empty() && "Cannot get empty add!");
923 if (Ops.size() == 1) return Ops[0];
924
925 // Sort by complexity, this groups all similar expression types together.
Dan Gohman5d486452009-05-07 14:39:04 +0000926 GroupByComplexity(Ops, LI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000927
928 // If there are any constants, fold them together.
929 unsigned Idx = 0;
Dan Gohmanc76b5452009-05-04 22:02:23 +0000930 if (const SCEVConstant *LHSC = dyn_cast<SCEVConstant>(Ops[0])) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000931 ++Idx;
932 assert(Idx < Ops.size());
Dan Gohmanc76b5452009-05-04 22:02:23 +0000933 while (const SCEVConstant *RHSC = dyn_cast<SCEVConstant>(Ops[Idx])) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000934 // We found two constants, fold them together!
Nick Lewyckye7a24ff2008-02-20 06:48:22 +0000935 ConstantInt *Fold = ConstantInt::get(LHSC->getValue()->getValue() +
936 RHSC->getValue()->getValue());
937 Ops[0] = getConstant(Fold);
938 Ops.erase(Ops.begin()+1); // Erase the folded element
939 if (Ops.size() == 1) return Ops[0];
940 LHSC = cast<SCEVConstant>(Ops[0]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000941 }
942
943 // If we are left with a constant zero being added, strip it off.
944 if (cast<SCEVConstant>(Ops[0])->getValue()->isZero()) {
945 Ops.erase(Ops.begin());
946 --Idx;
947 }
948 }
949
950 if (Ops.size() == 1) return Ops[0];
951
952 // Okay, check to see if the same value occurs in the operand list twice. If
953 // so, merge them together into an multiply expression. Since we sorted the
954 // list, these values are required to be adjacent.
955 const Type *Ty = Ops[0]->getType();
956 for (unsigned i = 0, e = Ops.size()-1; i != e; ++i)
957 if (Ops[i] == Ops[i+1]) { // X + Y + Y --> X + Y*2
958 // Found a match, merge the two values into a multiply, and add any
959 // remaining values to the result.
Dan Gohman89f85052007-10-22 18:31:58 +0000960 SCEVHandle Two = getIntegerSCEV(2, Ty);
961 SCEVHandle Mul = getMulExpr(Ops[i], Two);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000962 if (Ops.size() == 2)
963 return Mul;
964 Ops.erase(Ops.begin()+i, Ops.begin()+i+2);
965 Ops.push_back(Mul);
Dan Gohman89f85052007-10-22 18:31:58 +0000966 return getAddExpr(Ops);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000967 }
968
969 // Now we know the first non-constant operand. Skip past any cast SCEVs.
970 while (Idx < Ops.size() && Ops[Idx]->getSCEVType() < scAddExpr)
971 ++Idx;
972
973 // If there are add operands they would be next.
974 if (Idx < Ops.size()) {
975 bool DeletedAdd = false;
Dan Gohmanc76b5452009-05-04 22:02:23 +0000976 while (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(Ops[Idx])) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000977 // If we have an add, expand the add operands onto the end of the operands
978 // list.
979 Ops.insert(Ops.end(), Add->op_begin(), Add->op_end());
980 Ops.erase(Ops.begin()+Idx);
981 DeletedAdd = true;
982 }
983
984 // If we deleted at least one add, we added operands to the end of the list,
985 // and they are not necessarily sorted. Recurse to resort and resimplify
986 // any operands we just aquired.
987 if (DeletedAdd)
Dan Gohman89f85052007-10-22 18:31:58 +0000988 return getAddExpr(Ops);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000989 }
990
991 // Skip over the add expression until we get to a multiply.
992 while (Idx < Ops.size() && Ops[Idx]->getSCEVType() < scMulExpr)
993 ++Idx;
994
995 // If we are adding something to a multiply expression, make sure the
996 // something is not already an operand of the multiply. If so, merge it into
997 // the multiply.
998 for (; Idx < Ops.size() && isa<SCEVMulExpr>(Ops[Idx]); ++Idx) {
Dan Gohmanbff6b582009-05-04 22:30:44 +0000999 const SCEVMulExpr *Mul = cast<SCEVMulExpr>(Ops[Idx]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001000 for (unsigned MulOp = 0, e = Mul->getNumOperands(); MulOp != e; ++MulOp) {
Dan Gohmanbff6b582009-05-04 22:30:44 +00001001 const SCEV *MulOpSCEV = Mul->getOperand(MulOp);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001002 for (unsigned AddOp = 0, e = Ops.size(); AddOp != e; ++AddOp)
1003 if (MulOpSCEV == Ops[AddOp] && !isa<SCEVConstant>(MulOpSCEV)) {
1004 // Fold W + X + (X * Y * Z) --> W + (X * ((Y*Z)+1))
1005 SCEVHandle InnerMul = Mul->getOperand(MulOp == 0);
1006 if (Mul->getNumOperands() != 2) {
1007 // If the multiply has more than two operands, we must get the
1008 // Y*Z term.
1009 std::vector<SCEVHandle> MulOps(Mul->op_begin(), Mul->op_end());
1010 MulOps.erase(MulOps.begin()+MulOp);
Dan Gohman89f85052007-10-22 18:31:58 +00001011 InnerMul = getMulExpr(MulOps);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001012 }
Dan Gohman89f85052007-10-22 18:31:58 +00001013 SCEVHandle One = getIntegerSCEV(1, Ty);
1014 SCEVHandle AddOne = getAddExpr(InnerMul, One);
1015 SCEVHandle OuterMul = getMulExpr(AddOne, Ops[AddOp]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001016 if (Ops.size() == 2) return OuterMul;
1017 if (AddOp < Idx) {
1018 Ops.erase(Ops.begin()+AddOp);
1019 Ops.erase(Ops.begin()+Idx-1);
1020 } else {
1021 Ops.erase(Ops.begin()+Idx);
1022 Ops.erase(Ops.begin()+AddOp-1);
1023 }
1024 Ops.push_back(OuterMul);
Dan Gohman89f85052007-10-22 18:31:58 +00001025 return getAddExpr(Ops);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001026 }
1027
1028 // Check this multiply against other multiplies being added together.
1029 for (unsigned OtherMulIdx = Idx+1;
1030 OtherMulIdx < Ops.size() && isa<SCEVMulExpr>(Ops[OtherMulIdx]);
1031 ++OtherMulIdx) {
Dan Gohmanbff6b582009-05-04 22:30:44 +00001032 const SCEVMulExpr *OtherMul = cast<SCEVMulExpr>(Ops[OtherMulIdx]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001033 // If MulOp occurs in OtherMul, we can fold the two multiplies
1034 // together.
1035 for (unsigned OMulOp = 0, e = OtherMul->getNumOperands();
1036 OMulOp != e; ++OMulOp)
1037 if (OtherMul->getOperand(OMulOp) == MulOpSCEV) {
1038 // Fold X + (A*B*C) + (A*D*E) --> X + (A*(B*C+D*E))
1039 SCEVHandle InnerMul1 = Mul->getOperand(MulOp == 0);
1040 if (Mul->getNumOperands() != 2) {
1041 std::vector<SCEVHandle> MulOps(Mul->op_begin(), Mul->op_end());
1042 MulOps.erase(MulOps.begin()+MulOp);
Dan Gohman89f85052007-10-22 18:31:58 +00001043 InnerMul1 = getMulExpr(MulOps);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001044 }
1045 SCEVHandle InnerMul2 = OtherMul->getOperand(OMulOp == 0);
1046 if (OtherMul->getNumOperands() != 2) {
1047 std::vector<SCEVHandle> MulOps(OtherMul->op_begin(),
1048 OtherMul->op_end());
1049 MulOps.erase(MulOps.begin()+OMulOp);
Dan Gohman89f85052007-10-22 18:31:58 +00001050 InnerMul2 = getMulExpr(MulOps);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001051 }
Dan Gohman89f85052007-10-22 18:31:58 +00001052 SCEVHandle InnerMulSum = getAddExpr(InnerMul1,InnerMul2);
1053 SCEVHandle OuterMul = getMulExpr(MulOpSCEV, InnerMulSum);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001054 if (Ops.size() == 2) return OuterMul;
1055 Ops.erase(Ops.begin()+Idx);
1056 Ops.erase(Ops.begin()+OtherMulIdx-1);
1057 Ops.push_back(OuterMul);
Dan Gohman89f85052007-10-22 18:31:58 +00001058 return getAddExpr(Ops);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001059 }
1060 }
1061 }
1062 }
1063
1064 // If there are any add recurrences in the operands list, see if any other
1065 // added values are loop invariant. If so, we can fold them into the
1066 // recurrence.
1067 while (Idx < Ops.size() && Ops[Idx]->getSCEVType() < scAddRecExpr)
1068 ++Idx;
1069
1070 // Scan over all recurrences, trying to fold loop invariants into them.
1071 for (; Idx < Ops.size() && isa<SCEVAddRecExpr>(Ops[Idx]); ++Idx) {
1072 // Scan all of the other operands to this add and add them to the vector if
1073 // they are loop invariant w.r.t. the recurrence.
1074 std::vector<SCEVHandle> LIOps;
Dan Gohmanbff6b582009-05-04 22:30:44 +00001075 const SCEVAddRecExpr *AddRec = cast<SCEVAddRecExpr>(Ops[Idx]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001076 for (unsigned i = 0, e = Ops.size(); i != e; ++i)
1077 if (Ops[i]->isLoopInvariant(AddRec->getLoop())) {
1078 LIOps.push_back(Ops[i]);
1079 Ops.erase(Ops.begin()+i);
1080 --i; --e;
1081 }
1082
1083 // If we found some loop invariants, fold them into the recurrence.
1084 if (!LIOps.empty()) {
Dan Gohmanabe991f2008-09-14 17:21:12 +00001085 // NLI + LI + {Start,+,Step} --> NLI + {LI+Start,+,Step}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001086 LIOps.push_back(AddRec->getStart());
1087
1088 std::vector<SCEVHandle> AddRecOps(AddRec->op_begin(), AddRec->op_end());
Dan Gohman89f85052007-10-22 18:31:58 +00001089 AddRecOps[0] = getAddExpr(LIOps);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001090
Dan Gohman89f85052007-10-22 18:31:58 +00001091 SCEVHandle NewRec = getAddRecExpr(AddRecOps, AddRec->getLoop());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001092 // If all of the other operands were loop invariant, we are done.
1093 if (Ops.size() == 1) return NewRec;
1094
1095 // Otherwise, add the folded AddRec by the non-liv parts.
1096 for (unsigned i = 0;; ++i)
1097 if (Ops[i] == AddRec) {
1098 Ops[i] = NewRec;
1099 break;
1100 }
Dan Gohman89f85052007-10-22 18:31:58 +00001101 return getAddExpr(Ops);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001102 }
1103
1104 // Okay, if there weren't any loop invariants to be folded, check to see if
1105 // there are multiple AddRec's with the same loop induction variable being
1106 // added together. If so, we can fold them.
1107 for (unsigned OtherIdx = Idx+1;
1108 OtherIdx < Ops.size() && isa<SCEVAddRecExpr>(Ops[OtherIdx]);++OtherIdx)
1109 if (OtherIdx != Idx) {
Dan Gohmanbff6b582009-05-04 22:30:44 +00001110 const SCEVAddRecExpr *OtherAddRec = cast<SCEVAddRecExpr>(Ops[OtherIdx]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001111 if (AddRec->getLoop() == OtherAddRec->getLoop()) {
1112 // Other + {A,+,B} + {C,+,D} --> Other + {A+C,+,B+D}
1113 std::vector<SCEVHandle> NewOps(AddRec->op_begin(), AddRec->op_end());
1114 for (unsigned i = 0, e = OtherAddRec->getNumOperands(); i != e; ++i) {
1115 if (i >= NewOps.size()) {
1116 NewOps.insert(NewOps.end(), OtherAddRec->op_begin()+i,
1117 OtherAddRec->op_end());
1118 break;
1119 }
Dan Gohman89f85052007-10-22 18:31:58 +00001120 NewOps[i] = getAddExpr(NewOps[i], OtherAddRec->getOperand(i));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001121 }
Dan Gohman89f85052007-10-22 18:31:58 +00001122 SCEVHandle NewAddRec = getAddRecExpr(NewOps, AddRec->getLoop());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001123
1124 if (Ops.size() == 2) return NewAddRec;
1125
1126 Ops.erase(Ops.begin()+Idx);
1127 Ops.erase(Ops.begin()+OtherIdx-1);
1128 Ops.push_back(NewAddRec);
Dan Gohman89f85052007-10-22 18:31:58 +00001129 return getAddExpr(Ops);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001130 }
1131 }
1132
1133 // Otherwise couldn't fold anything into this recurrence. Move onto the
1134 // next one.
1135 }
1136
1137 // Okay, it looks like we really DO need an add expr. Check to see if we
1138 // already have one, otherwise create a new one.
Dan Gohmanbff6b582009-05-04 22:30:44 +00001139 std::vector<const SCEV*> SCEVOps(Ops.begin(), Ops.end());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001140 SCEVCommutativeExpr *&Result = (*SCEVCommExprs)[std::make_pair(scAddExpr,
1141 SCEVOps)];
1142 if (Result == 0) Result = new SCEVAddExpr(Ops);
1143 return Result;
1144}
1145
1146
Dan Gohman89f85052007-10-22 18:31:58 +00001147SCEVHandle ScalarEvolution::getMulExpr(std::vector<SCEVHandle> &Ops) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001148 assert(!Ops.empty() && "Cannot get empty mul!");
1149
1150 // Sort by complexity, this groups all similar expression types together.
Dan Gohman5d486452009-05-07 14:39:04 +00001151 GroupByComplexity(Ops, LI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001152
1153 // If there are any constants, fold them together.
1154 unsigned Idx = 0;
Dan Gohmanc76b5452009-05-04 22:02:23 +00001155 if (const SCEVConstant *LHSC = dyn_cast<SCEVConstant>(Ops[0])) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001156
1157 // C1*(C2+V) -> C1*C2 + C1*V
1158 if (Ops.size() == 2)
Dan Gohmanc76b5452009-05-04 22:02:23 +00001159 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(Ops[1]))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001160 if (Add->getNumOperands() == 2 &&
1161 isa<SCEVConstant>(Add->getOperand(0)))
Dan Gohman89f85052007-10-22 18:31:58 +00001162 return getAddExpr(getMulExpr(LHSC, Add->getOperand(0)),
1163 getMulExpr(LHSC, Add->getOperand(1)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001164
1165
1166 ++Idx;
Dan Gohmanc76b5452009-05-04 22:02:23 +00001167 while (const SCEVConstant *RHSC = dyn_cast<SCEVConstant>(Ops[Idx])) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001168 // We found two constants, fold them together!
Nick Lewyckye7a24ff2008-02-20 06:48:22 +00001169 ConstantInt *Fold = ConstantInt::get(LHSC->getValue()->getValue() *
1170 RHSC->getValue()->getValue());
1171 Ops[0] = getConstant(Fold);
1172 Ops.erase(Ops.begin()+1); // Erase the folded element
1173 if (Ops.size() == 1) return Ops[0];
1174 LHSC = cast<SCEVConstant>(Ops[0]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001175 }
1176
1177 // If we are left with a constant one being multiplied, strip it off.
1178 if (cast<SCEVConstant>(Ops[0])->getValue()->equalsInt(1)) {
1179 Ops.erase(Ops.begin());
1180 --Idx;
1181 } else if (cast<SCEVConstant>(Ops[0])->getValue()->isZero()) {
1182 // If we have a multiply of zero, it will always be zero.
1183 return Ops[0];
1184 }
1185 }
1186
1187 // Skip over the add expression until we get to a multiply.
1188 while (Idx < Ops.size() && Ops[Idx]->getSCEVType() < scMulExpr)
1189 ++Idx;
1190
1191 if (Ops.size() == 1)
1192 return Ops[0];
1193
1194 // If there are mul operands inline them all into this expression.
1195 if (Idx < Ops.size()) {
1196 bool DeletedMul = false;
Dan Gohmanc76b5452009-05-04 22:02:23 +00001197 while (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(Ops[Idx])) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001198 // If we have an mul, expand the mul operands onto the end of the operands
1199 // list.
1200 Ops.insert(Ops.end(), Mul->op_begin(), Mul->op_end());
1201 Ops.erase(Ops.begin()+Idx);
1202 DeletedMul = true;
1203 }
1204
1205 // If we deleted at least one mul, we added operands to the end of the list,
1206 // and they are not necessarily sorted. Recurse to resort and resimplify
1207 // any operands we just aquired.
1208 if (DeletedMul)
Dan Gohman89f85052007-10-22 18:31:58 +00001209 return getMulExpr(Ops);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001210 }
1211
1212 // If there are any add recurrences in the operands list, see if any other
1213 // added values are loop invariant. If so, we can fold them into the
1214 // recurrence.
1215 while (Idx < Ops.size() && Ops[Idx]->getSCEVType() < scAddRecExpr)
1216 ++Idx;
1217
1218 // Scan over all recurrences, trying to fold loop invariants into them.
1219 for (; Idx < Ops.size() && isa<SCEVAddRecExpr>(Ops[Idx]); ++Idx) {
1220 // Scan all of the other operands to this mul and add them to the vector if
1221 // they are loop invariant w.r.t. the recurrence.
1222 std::vector<SCEVHandle> LIOps;
Dan Gohmanbff6b582009-05-04 22:30:44 +00001223 const SCEVAddRecExpr *AddRec = cast<SCEVAddRecExpr>(Ops[Idx]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001224 for (unsigned i = 0, e = Ops.size(); i != e; ++i)
1225 if (Ops[i]->isLoopInvariant(AddRec->getLoop())) {
1226 LIOps.push_back(Ops[i]);
1227 Ops.erase(Ops.begin()+i);
1228 --i; --e;
1229 }
1230
1231 // If we found some loop invariants, fold them into the recurrence.
1232 if (!LIOps.empty()) {
Dan Gohmanabe991f2008-09-14 17:21:12 +00001233 // NLI * LI * {Start,+,Step} --> NLI * {LI*Start,+,LI*Step}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001234 std::vector<SCEVHandle> NewOps;
1235 NewOps.reserve(AddRec->getNumOperands());
1236 if (LIOps.size() == 1) {
Dan Gohmanbff6b582009-05-04 22:30:44 +00001237 const SCEV *Scale = LIOps[0];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001238 for (unsigned i = 0, e = AddRec->getNumOperands(); i != e; ++i)
Dan Gohman89f85052007-10-22 18:31:58 +00001239 NewOps.push_back(getMulExpr(Scale, AddRec->getOperand(i)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001240 } else {
1241 for (unsigned i = 0, e = AddRec->getNumOperands(); i != e; ++i) {
1242 std::vector<SCEVHandle> MulOps(LIOps);
1243 MulOps.push_back(AddRec->getOperand(i));
Dan Gohman89f85052007-10-22 18:31:58 +00001244 NewOps.push_back(getMulExpr(MulOps));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001245 }
1246 }
1247
Dan Gohman89f85052007-10-22 18:31:58 +00001248 SCEVHandle NewRec = getAddRecExpr(NewOps, AddRec->getLoop());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001249
1250 // If all of the other operands were loop invariant, we are done.
1251 if (Ops.size() == 1) return NewRec;
1252
1253 // Otherwise, multiply the folded AddRec by the non-liv parts.
1254 for (unsigned i = 0;; ++i)
1255 if (Ops[i] == AddRec) {
1256 Ops[i] = NewRec;
1257 break;
1258 }
Dan Gohman89f85052007-10-22 18:31:58 +00001259 return getMulExpr(Ops);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001260 }
1261
1262 // Okay, if there weren't any loop invariants to be folded, check to see if
1263 // there are multiple AddRec's with the same loop induction variable being
1264 // multiplied together. If so, we can fold them.
1265 for (unsigned OtherIdx = Idx+1;
1266 OtherIdx < Ops.size() && isa<SCEVAddRecExpr>(Ops[OtherIdx]);++OtherIdx)
1267 if (OtherIdx != Idx) {
Dan Gohmanbff6b582009-05-04 22:30:44 +00001268 const SCEVAddRecExpr *OtherAddRec = cast<SCEVAddRecExpr>(Ops[OtherIdx]);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001269 if (AddRec->getLoop() == OtherAddRec->getLoop()) {
1270 // F * G --> {A,+,B} * {C,+,D} --> {A*C,+,F*D + G*B + B*D}
Dan Gohmanbff6b582009-05-04 22:30:44 +00001271 const SCEVAddRecExpr *F = AddRec, *G = OtherAddRec;
Dan Gohman89f85052007-10-22 18:31:58 +00001272 SCEVHandle NewStart = getMulExpr(F->getStart(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001273 G->getStart());
Dan Gohman89f85052007-10-22 18:31:58 +00001274 SCEVHandle B = F->getStepRecurrence(*this);
1275 SCEVHandle D = G->getStepRecurrence(*this);
1276 SCEVHandle NewStep = getAddExpr(getMulExpr(F, D),
1277 getMulExpr(G, B),
1278 getMulExpr(B, D));
1279 SCEVHandle NewAddRec = getAddRecExpr(NewStart, NewStep,
1280 F->getLoop());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001281 if (Ops.size() == 2) return NewAddRec;
1282
1283 Ops.erase(Ops.begin()+Idx);
1284 Ops.erase(Ops.begin()+OtherIdx-1);
1285 Ops.push_back(NewAddRec);
Dan Gohman89f85052007-10-22 18:31:58 +00001286 return getMulExpr(Ops);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001287 }
1288 }
1289
1290 // Otherwise couldn't fold anything into this recurrence. Move onto the
1291 // next one.
1292 }
1293
1294 // Okay, it looks like we really DO need an mul expr. Check to see if we
1295 // already have one, otherwise create a new one.
Dan Gohmanbff6b582009-05-04 22:30:44 +00001296 std::vector<const SCEV*> SCEVOps(Ops.begin(), Ops.end());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001297 SCEVCommutativeExpr *&Result = (*SCEVCommExprs)[std::make_pair(scMulExpr,
1298 SCEVOps)];
1299 if (Result == 0)
1300 Result = new SCEVMulExpr(Ops);
1301 return Result;
1302}
1303
Dan Gohman77841cd2009-05-04 22:23:18 +00001304SCEVHandle ScalarEvolution::getUDivExpr(const SCEVHandle &LHS,
1305 const SCEVHandle &RHS) {
Dan Gohmanc76b5452009-05-04 22:02:23 +00001306 if (const SCEVConstant *RHSC = dyn_cast<SCEVConstant>(RHS)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001307 if (RHSC->getValue()->equalsInt(1))
Nick Lewycky35b56022009-01-13 09:18:58 +00001308 return LHS; // X udiv 1 --> x
Dan Gohmanaf0a1512009-05-08 20:18:49 +00001309 if (RHSC->isZero())
1310 return getIntegerSCEV(0, LHS->getType()); // value is undefined
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001311
Dan Gohmanaf0a1512009-05-08 20:18:49 +00001312 // Determine if the division can be folded into the operands of
1313 // its operands.
1314 // TODO: Generalize this to non-constants by using known-bits information.
1315 const Type *Ty = LHS->getType();
1316 unsigned LZ = RHSC->getValue()->getValue().countLeadingZeros();
1317 unsigned MaxShiftAmt = getTypeSizeInBits(Ty) - LZ;
1318 // For non-power-of-two values, effectively round the value up to the
1319 // nearest power of two.
1320 if (!RHSC->getValue()->getValue().isPowerOf2())
1321 ++MaxShiftAmt;
1322 const IntegerType *ExtTy =
1323 IntegerType::get(getTypeSizeInBits(Ty) + MaxShiftAmt);
1324 // {X,+,N}/C --> {X/C,+,N/C} if safe and N/C can be folded.
1325 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(LHS))
1326 if (const SCEVConstant *Step =
1327 dyn_cast<SCEVConstant>(AR->getStepRecurrence(*this)))
1328 if (!Step->getValue()->getValue()
1329 .urem(RHSC->getValue()->getValue()) &&
1330 getTruncateExpr(getZeroExtendExpr(AR, ExtTy), Ty) == AR) {
1331 std::vector<SCEVHandle> Operands;
1332 for (unsigned i = 0, e = AR->getNumOperands(); i != e; ++i)
1333 Operands.push_back(getUDivExpr(AR->getOperand(i), RHS));
1334 return getAddRecExpr(Operands, AR->getLoop());
1335 }
1336 // (A*B)/C --> A*(B/C) if safe and B/C can be folded.
1337 if (const SCEVMulExpr *M = dyn_cast<SCEVMulExpr>(LHS))
1338 if (getTruncateExpr(getZeroExtendExpr(M, ExtTy), Ty) == M)
1339 // Find an operand that's safely divisible.
1340 for (unsigned i = 0, e = M->getNumOperands(); i != e; ++i) {
1341 SCEVHandle Op = M->getOperand(i);
1342 SCEVHandle Div = getUDivExpr(Op, RHSC);
1343 if (!isa<SCEVUDivExpr>(Div) && getMulExpr(Div, RHSC) == Op) {
1344 std::vector<SCEVHandle> Operands = M->getOperands();
1345 Operands[i] = Div;
1346 return getMulExpr(Operands);
1347 }
1348 }
1349 // (A+B)/C --> (A/C + B/C) if safe and A/C and B/C can be folded.
1350 if (const SCEVAddRecExpr *A = dyn_cast<SCEVAddRecExpr>(LHS))
1351 if (getTruncateExpr(getZeroExtendExpr(A, ExtTy), Ty) == A) {
1352 std::vector<SCEVHandle> Operands;
1353 for (unsigned i = 0, e = A->getNumOperands(); i != e; ++i) {
1354 SCEVHandle Op = getUDivExpr(A->getOperand(i), RHS);
1355 if (isa<SCEVUDivExpr>(Op) || getMulExpr(Op, RHS) != A->getOperand(i))
1356 break;
1357 Operands.push_back(Op);
1358 }
1359 if (Operands.size() == A->getNumOperands())
1360 return getAddExpr(Operands);
1361 }
1362
1363 // Fold if both operands are constant.
Dan Gohmanc76b5452009-05-04 22:02:23 +00001364 if (const SCEVConstant *LHSC = dyn_cast<SCEVConstant>(LHS)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001365 Constant *LHSCV = LHSC->getValue();
1366 Constant *RHSCV = RHSC->getValue();
Wojciech Matyjewicz2211fec2008-02-11 11:03:14 +00001367 return getUnknown(ConstantExpr::getUDiv(LHSCV, RHSCV));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001368 }
1369 }
1370
Wojciech Matyjewicz2211fec2008-02-11 11:03:14 +00001371 SCEVUDivExpr *&Result = (*SCEVUDivs)[std::make_pair(LHS, RHS)];
1372 if (Result == 0) Result = new SCEVUDivExpr(LHS, RHS);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001373 return Result;
1374}
1375
1376
1377/// SCEVAddRecExpr::get - Get a add recurrence expression for the
1378/// specified loop. Simplify the expression as much as possible.
Dan Gohman89f85052007-10-22 18:31:58 +00001379SCEVHandle ScalarEvolution::getAddRecExpr(const SCEVHandle &Start,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001380 const SCEVHandle &Step, const Loop *L) {
1381 std::vector<SCEVHandle> Operands;
1382 Operands.push_back(Start);
Dan Gohmanc76b5452009-05-04 22:02:23 +00001383 if (const SCEVAddRecExpr *StepChrec = dyn_cast<SCEVAddRecExpr>(Step))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001384 if (StepChrec->getLoop() == L) {
1385 Operands.insert(Operands.end(), StepChrec->op_begin(),
1386 StepChrec->op_end());
Dan Gohman89f85052007-10-22 18:31:58 +00001387 return getAddRecExpr(Operands, L);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001388 }
1389
1390 Operands.push_back(Step);
Dan Gohman89f85052007-10-22 18:31:58 +00001391 return getAddRecExpr(Operands, L);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001392}
1393
1394/// SCEVAddRecExpr::get - Get a add recurrence expression for the
1395/// specified loop. Simplify the expression as much as possible.
Dan Gohman89f85052007-10-22 18:31:58 +00001396SCEVHandle ScalarEvolution::getAddRecExpr(std::vector<SCEVHandle> &Operands,
Nick Lewycky37d04642009-04-23 05:15:08 +00001397 const Loop *L) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001398 if (Operands.size() == 1) return Operands[0];
1399
Dan Gohman7b560c42008-06-18 16:23:07 +00001400 if (Operands.back()->isZero()) {
1401 Operands.pop_back();
Dan Gohmanabe991f2008-09-14 17:21:12 +00001402 return getAddRecExpr(Operands, L); // {X,+,0} --> X
Dan Gohman7b560c42008-06-18 16:23:07 +00001403 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001404
Dan Gohman42936882008-08-08 18:33:12 +00001405 // Canonicalize nested AddRecs in by nesting them in order of loop depth.
Dan Gohmanc76b5452009-05-04 22:02:23 +00001406 if (const SCEVAddRecExpr *NestedAR = dyn_cast<SCEVAddRecExpr>(Operands[0])) {
Dan Gohman42936882008-08-08 18:33:12 +00001407 const Loop* NestedLoop = NestedAR->getLoop();
1408 if (L->getLoopDepth() < NestedLoop->getLoopDepth()) {
1409 std::vector<SCEVHandle> NestedOperands(NestedAR->op_begin(),
1410 NestedAR->op_end());
1411 SCEVHandle NestedARHandle(NestedAR);
1412 Operands[0] = NestedAR->getStart();
1413 NestedOperands[0] = getAddRecExpr(Operands, L);
1414 return getAddRecExpr(NestedOperands, NestedLoop);
1415 }
1416 }
1417
Dan Gohmanbff6b582009-05-04 22:30:44 +00001418 std::vector<const SCEV*> SCEVOps(Operands.begin(), Operands.end());
1419 SCEVAddRecExpr *&Result = (*SCEVAddRecExprs)[std::make_pair(L, SCEVOps)];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001420 if (Result == 0) Result = new SCEVAddRecExpr(Operands, L);
1421 return Result;
1422}
1423
Nick Lewycky711640a2007-11-25 22:41:31 +00001424SCEVHandle ScalarEvolution::getSMaxExpr(const SCEVHandle &LHS,
1425 const SCEVHandle &RHS) {
1426 std::vector<SCEVHandle> Ops;
1427 Ops.push_back(LHS);
1428 Ops.push_back(RHS);
1429 return getSMaxExpr(Ops);
1430}
1431
1432SCEVHandle ScalarEvolution::getSMaxExpr(std::vector<SCEVHandle> Ops) {
1433 assert(!Ops.empty() && "Cannot get empty smax!");
1434 if (Ops.size() == 1) return Ops[0];
1435
1436 // Sort by complexity, this groups all similar expression types together.
Dan Gohman5d486452009-05-07 14:39:04 +00001437 GroupByComplexity(Ops, LI);
Nick Lewycky711640a2007-11-25 22:41:31 +00001438
1439 // If there are any constants, fold them together.
1440 unsigned Idx = 0;
Dan Gohmanc76b5452009-05-04 22:02:23 +00001441 if (const SCEVConstant *LHSC = dyn_cast<SCEVConstant>(Ops[0])) {
Nick Lewycky711640a2007-11-25 22:41:31 +00001442 ++Idx;
1443 assert(Idx < Ops.size());
Dan Gohmanc76b5452009-05-04 22:02:23 +00001444 while (const SCEVConstant *RHSC = dyn_cast<SCEVConstant>(Ops[Idx])) {
Nick Lewycky711640a2007-11-25 22:41:31 +00001445 // We found two constants, fold them together!
Nick Lewyckye7a24ff2008-02-20 06:48:22 +00001446 ConstantInt *Fold = ConstantInt::get(
Nick Lewycky711640a2007-11-25 22:41:31 +00001447 APIntOps::smax(LHSC->getValue()->getValue(),
1448 RHSC->getValue()->getValue()));
Nick Lewyckye7a24ff2008-02-20 06:48:22 +00001449 Ops[0] = getConstant(Fold);
1450 Ops.erase(Ops.begin()+1); // Erase the folded element
1451 if (Ops.size() == 1) return Ops[0];
1452 LHSC = cast<SCEVConstant>(Ops[0]);
Nick Lewycky711640a2007-11-25 22:41:31 +00001453 }
1454
1455 // If we are left with a constant -inf, strip it off.
1456 if (cast<SCEVConstant>(Ops[0])->getValue()->isMinValue(true)) {
1457 Ops.erase(Ops.begin());
1458 --Idx;
1459 }
1460 }
1461
1462 if (Ops.size() == 1) return Ops[0];
1463
1464 // Find the first SMax
1465 while (Idx < Ops.size() && Ops[Idx]->getSCEVType() < scSMaxExpr)
1466 ++Idx;
1467
1468 // Check to see if one of the operands is an SMax. If so, expand its operands
1469 // onto our operand list, and recurse to simplify.
1470 if (Idx < Ops.size()) {
1471 bool DeletedSMax = false;
Dan Gohmanc76b5452009-05-04 22:02:23 +00001472 while (const SCEVSMaxExpr *SMax = dyn_cast<SCEVSMaxExpr>(Ops[Idx])) {
Nick Lewycky711640a2007-11-25 22:41:31 +00001473 Ops.insert(Ops.end(), SMax->op_begin(), SMax->op_end());
1474 Ops.erase(Ops.begin()+Idx);
1475 DeletedSMax = true;
1476 }
1477
1478 if (DeletedSMax)
1479 return getSMaxExpr(Ops);
1480 }
1481
1482 // Okay, check to see if the same value occurs in the operand list twice. If
1483 // so, delete one. Since we sorted the list, these values are required to
1484 // be adjacent.
1485 for (unsigned i = 0, e = Ops.size()-1; i != e; ++i)
1486 if (Ops[i] == Ops[i+1]) { // X smax Y smax Y --> X smax Y
1487 Ops.erase(Ops.begin()+i, Ops.begin()+i+1);
1488 --i; --e;
1489 }
1490
1491 if (Ops.size() == 1) return Ops[0];
1492
1493 assert(!Ops.empty() && "Reduced smax down to nothing!");
1494
Nick Lewyckye7a24ff2008-02-20 06:48:22 +00001495 // Okay, it looks like we really DO need an smax expr. Check to see if we
Nick Lewycky711640a2007-11-25 22:41:31 +00001496 // already have one, otherwise create a new one.
Dan Gohmanbff6b582009-05-04 22:30:44 +00001497 std::vector<const SCEV*> SCEVOps(Ops.begin(), Ops.end());
Nick Lewycky711640a2007-11-25 22:41:31 +00001498 SCEVCommutativeExpr *&Result = (*SCEVCommExprs)[std::make_pair(scSMaxExpr,
1499 SCEVOps)];
1500 if (Result == 0) Result = new SCEVSMaxExpr(Ops);
1501 return Result;
1502}
1503
Nick Lewyckye7a24ff2008-02-20 06:48:22 +00001504SCEVHandle ScalarEvolution::getUMaxExpr(const SCEVHandle &LHS,
1505 const SCEVHandle &RHS) {
1506 std::vector<SCEVHandle> Ops;
1507 Ops.push_back(LHS);
1508 Ops.push_back(RHS);
1509 return getUMaxExpr(Ops);
1510}
1511
1512SCEVHandle ScalarEvolution::getUMaxExpr(std::vector<SCEVHandle> Ops) {
1513 assert(!Ops.empty() && "Cannot get empty umax!");
1514 if (Ops.size() == 1) return Ops[0];
1515
1516 // Sort by complexity, this groups all similar expression types together.
Dan Gohman5d486452009-05-07 14:39:04 +00001517 GroupByComplexity(Ops, LI);
Nick Lewyckye7a24ff2008-02-20 06:48:22 +00001518
1519 // If there are any constants, fold them together.
1520 unsigned Idx = 0;
Dan Gohmanc76b5452009-05-04 22:02:23 +00001521 if (const SCEVConstant *LHSC = dyn_cast<SCEVConstant>(Ops[0])) {
Nick Lewyckye7a24ff2008-02-20 06:48:22 +00001522 ++Idx;
1523 assert(Idx < Ops.size());
Dan Gohmanc76b5452009-05-04 22:02:23 +00001524 while (const SCEVConstant *RHSC = dyn_cast<SCEVConstant>(Ops[Idx])) {
Nick Lewyckye7a24ff2008-02-20 06:48:22 +00001525 // We found two constants, fold them together!
1526 ConstantInt *Fold = ConstantInt::get(
1527 APIntOps::umax(LHSC->getValue()->getValue(),
1528 RHSC->getValue()->getValue()));
1529 Ops[0] = getConstant(Fold);
1530 Ops.erase(Ops.begin()+1); // Erase the folded element
1531 if (Ops.size() == 1) return Ops[0];
1532 LHSC = cast<SCEVConstant>(Ops[0]);
1533 }
1534
1535 // If we are left with a constant zero, strip it off.
1536 if (cast<SCEVConstant>(Ops[0])->getValue()->isMinValue(false)) {
1537 Ops.erase(Ops.begin());
1538 --Idx;
1539 }
1540 }
1541
1542 if (Ops.size() == 1) return Ops[0];
1543
1544 // Find the first UMax
1545 while (Idx < Ops.size() && Ops[Idx]->getSCEVType() < scUMaxExpr)
1546 ++Idx;
1547
1548 // Check to see if one of the operands is a UMax. If so, expand its operands
1549 // onto our operand list, and recurse to simplify.
1550 if (Idx < Ops.size()) {
1551 bool DeletedUMax = false;
Dan Gohmanc76b5452009-05-04 22:02:23 +00001552 while (const SCEVUMaxExpr *UMax = dyn_cast<SCEVUMaxExpr>(Ops[Idx])) {
Nick Lewyckye7a24ff2008-02-20 06:48:22 +00001553 Ops.insert(Ops.end(), UMax->op_begin(), UMax->op_end());
1554 Ops.erase(Ops.begin()+Idx);
1555 DeletedUMax = true;
1556 }
1557
1558 if (DeletedUMax)
1559 return getUMaxExpr(Ops);
1560 }
1561
1562 // Okay, check to see if the same value occurs in the operand list twice. If
1563 // so, delete one. Since we sorted the list, these values are required to
1564 // be adjacent.
1565 for (unsigned i = 0, e = Ops.size()-1; i != e; ++i)
1566 if (Ops[i] == Ops[i+1]) { // X umax Y umax Y --> X umax Y
1567 Ops.erase(Ops.begin()+i, Ops.begin()+i+1);
1568 --i; --e;
1569 }
1570
1571 if (Ops.size() == 1) return Ops[0];
1572
1573 assert(!Ops.empty() && "Reduced umax down to nothing!");
1574
1575 // Okay, it looks like we really DO need a umax expr. Check to see if we
1576 // already have one, otherwise create a new one.
Dan Gohmanbff6b582009-05-04 22:30:44 +00001577 std::vector<const SCEV*> SCEVOps(Ops.begin(), Ops.end());
Nick Lewyckye7a24ff2008-02-20 06:48:22 +00001578 SCEVCommutativeExpr *&Result = (*SCEVCommExprs)[std::make_pair(scUMaxExpr,
1579 SCEVOps)];
1580 if (Result == 0) Result = new SCEVUMaxExpr(Ops);
1581 return Result;
1582}
1583
Dan Gohman89f85052007-10-22 18:31:58 +00001584SCEVHandle ScalarEvolution::getUnknown(Value *V) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001585 if (ConstantInt *CI = dyn_cast<ConstantInt>(V))
Dan Gohman89f85052007-10-22 18:31:58 +00001586 return getConstant(CI);
Dan Gohman01c2ee72009-04-16 03:18:22 +00001587 if (isa<ConstantPointerNull>(V))
1588 return getIntegerSCEV(0, V->getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001589 SCEVUnknown *&Result = (*SCEVUnknowns)[V];
1590 if (Result == 0) Result = new SCEVUnknown(V);
1591 return Result;
1592}
1593
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001594//===----------------------------------------------------------------------===//
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001595// Basic SCEV Analysis and PHI Idiom Recognition Code
1596//
1597
Dan Gohmanb98c1a32009-04-21 01:07:12 +00001598/// isSCEVable - Test if values of the given type are analyzable within
1599/// the SCEV framework. This primarily includes integer types, and it
1600/// can optionally include pointer types if the ScalarEvolution class
1601/// has access to target-specific information.
Dan Gohmanffd36ba2009-04-21 23:15:49 +00001602bool ScalarEvolution::isSCEVable(const Type *Ty) const {
Dan Gohmanb98c1a32009-04-21 01:07:12 +00001603 // Integers are always SCEVable.
1604 if (Ty->isInteger())
1605 return true;
1606
1607 // Pointers are SCEVable if TargetData information is available
1608 // to provide pointer size information.
1609 if (isa<PointerType>(Ty))
1610 return TD != NULL;
1611
1612 // Otherwise it's not SCEVable.
1613 return false;
1614}
1615
1616/// getTypeSizeInBits - Return the size in bits of the specified type,
1617/// for which isSCEVable must return true.
Dan Gohmanffd36ba2009-04-21 23:15:49 +00001618uint64_t ScalarEvolution::getTypeSizeInBits(const Type *Ty) const {
Dan Gohmanb98c1a32009-04-21 01:07:12 +00001619 assert(isSCEVable(Ty) && "Type is not SCEVable!");
1620
1621 // If we have a TargetData, use it!
1622 if (TD)
1623 return TD->getTypeSizeInBits(Ty);
1624
1625 // Otherwise, we support only integer types.
1626 assert(Ty->isInteger() && "isSCEVable permitted a non-SCEVable type!");
1627 return Ty->getPrimitiveSizeInBits();
1628}
1629
1630/// getEffectiveSCEVType - Return a type with the same bitwidth as
1631/// the given type and which represents how SCEV will treat the given
1632/// type, for which isSCEVable must return true. For pointer types,
1633/// this is the pointer-sized integer type.
Dan Gohmanffd36ba2009-04-21 23:15:49 +00001634const Type *ScalarEvolution::getEffectiveSCEVType(const Type *Ty) const {
Dan Gohmanb98c1a32009-04-21 01:07:12 +00001635 assert(isSCEVable(Ty) && "Type is not SCEVable!");
1636
1637 if (Ty->isInteger())
1638 return Ty;
1639
1640 assert(isa<PointerType>(Ty) && "Unexpected non-pointer non-integer type!");
1641 return TD->getIntPtrType();
Dan Gohman01c2ee72009-04-16 03:18:22 +00001642}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001643
Dan Gohmanffd36ba2009-04-21 23:15:49 +00001644SCEVHandle ScalarEvolution::getCouldNotCompute() {
Dan Gohman0ad08b02009-04-18 17:58:19 +00001645 return UnknownValue;
1646}
1647
Dan Gohmand83d4af2009-05-04 22:20:30 +00001648/// hasSCEV - Return true if the SCEV for this value has already been
Edwin Török0e828d62009-05-01 08:33:47 +00001649/// computed.
1650bool ScalarEvolution::hasSCEV(Value *V) const {
1651 return Scalars.count(V);
1652}
1653
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001654/// getSCEV - Return an existing SCEV if it exists, otherwise analyze the
1655/// expression and create a new one.
Dan Gohmanffd36ba2009-04-21 23:15:49 +00001656SCEVHandle ScalarEvolution::getSCEV(Value *V) {
Dan Gohmanb98c1a32009-04-21 01:07:12 +00001657 assert(isSCEVable(V->getType()) && "Value is not SCEVable!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001658
Dan Gohmanbff6b582009-05-04 22:30:44 +00001659 std::map<SCEVCallbackVH, SCEVHandle>::iterator I = Scalars.find(V);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001660 if (I != Scalars.end()) return I->second;
1661 SCEVHandle S = createSCEV(V);
Dan Gohmanbff6b582009-05-04 22:30:44 +00001662 Scalars.insert(std::make_pair(SCEVCallbackVH(V, this), S));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001663 return S;
1664}
1665
Dan Gohman01c2ee72009-04-16 03:18:22 +00001666/// getIntegerSCEV - Given an integer or FP type, create a constant for the
1667/// specified signed integer value and return a SCEV for the constant.
Dan Gohmanffd36ba2009-04-21 23:15:49 +00001668SCEVHandle ScalarEvolution::getIntegerSCEV(int Val, const Type *Ty) {
1669 Ty = getEffectiveSCEVType(Ty);
Dan Gohman01c2ee72009-04-16 03:18:22 +00001670 Constant *C;
1671 if (Val == 0)
1672 C = Constant::getNullValue(Ty);
1673 else if (Ty->isFloatingPoint())
1674 C = ConstantFP::get(APFloat(Ty==Type::FloatTy ? APFloat::IEEEsingle :
1675 APFloat::IEEEdouble, Val));
1676 else
1677 C = ConstantInt::get(Ty, Val);
Dan Gohmanffd36ba2009-04-21 23:15:49 +00001678 return getUnknown(C);
Dan Gohman01c2ee72009-04-16 03:18:22 +00001679}
1680
1681/// getNegativeSCEV - Return a SCEV corresponding to -V = -1*V
1682///
Dan Gohmanffd36ba2009-04-21 23:15:49 +00001683SCEVHandle ScalarEvolution::getNegativeSCEV(const SCEVHandle &V) {
Dan Gohmanc76b5452009-05-04 22:02:23 +00001684 if (const SCEVConstant *VC = dyn_cast<SCEVConstant>(V))
Dan Gohmanffd36ba2009-04-21 23:15:49 +00001685 return getUnknown(ConstantExpr::getNeg(VC->getValue()));
Dan Gohman01c2ee72009-04-16 03:18:22 +00001686
1687 const Type *Ty = V->getType();
Dan Gohmanffd36ba2009-04-21 23:15:49 +00001688 Ty = getEffectiveSCEVType(Ty);
1689 return getMulExpr(V, getConstant(ConstantInt::getAllOnesValue(Ty)));
Dan Gohman01c2ee72009-04-16 03:18:22 +00001690}
1691
1692/// getNotSCEV - Return a SCEV corresponding to ~V = -1-V
Dan Gohmanffd36ba2009-04-21 23:15:49 +00001693SCEVHandle ScalarEvolution::getNotSCEV(const SCEVHandle &V) {
Dan Gohmanc76b5452009-05-04 22:02:23 +00001694 if (const SCEVConstant *VC = dyn_cast<SCEVConstant>(V))
Dan Gohmanffd36ba2009-04-21 23:15:49 +00001695 return getUnknown(ConstantExpr::getNot(VC->getValue()));
Dan Gohman01c2ee72009-04-16 03:18:22 +00001696
1697 const Type *Ty = V->getType();
Dan Gohmanffd36ba2009-04-21 23:15:49 +00001698 Ty = getEffectiveSCEVType(Ty);
1699 SCEVHandle AllOnes = getConstant(ConstantInt::getAllOnesValue(Ty));
Dan Gohman01c2ee72009-04-16 03:18:22 +00001700 return getMinusSCEV(AllOnes, V);
1701}
1702
1703/// getMinusSCEV - Return a SCEV corresponding to LHS - RHS.
1704///
Dan Gohmanffd36ba2009-04-21 23:15:49 +00001705SCEVHandle ScalarEvolution::getMinusSCEV(const SCEVHandle &LHS,
Nick Lewycky37d04642009-04-23 05:15:08 +00001706 const SCEVHandle &RHS) {
Dan Gohman01c2ee72009-04-16 03:18:22 +00001707 // X - Y --> X + -Y
Dan Gohmanffd36ba2009-04-21 23:15:49 +00001708 return getAddExpr(LHS, getNegativeSCEV(RHS));
Dan Gohman01c2ee72009-04-16 03:18:22 +00001709}
1710
1711/// getTruncateOrZeroExtend - Return a SCEV corresponding to a conversion of the
1712/// input value to the specified type. If the type must be extended, it is zero
1713/// extended.
1714SCEVHandle
Dan Gohmanffd36ba2009-04-21 23:15:49 +00001715ScalarEvolution::getTruncateOrZeroExtend(const SCEVHandle &V,
Nick Lewycky37d04642009-04-23 05:15:08 +00001716 const Type *Ty) {
Dan Gohman01c2ee72009-04-16 03:18:22 +00001717 const Type *SrcTy = V->getType();
Dan Gohmanb98c1a32009-04-21 01:07:12 +00001718 assert((SrcTy->isInteger() || (TD && isa<PointerType>(SrcTy))) &&
1719 (Ty->isInteger() || (TD && isa<PointerType>(Ty))) &&
Dan Gohman01c2ee72009-04-16 03:18:22 +00001720 "Cannot truncate or zero extend with non-integer arguments!");
Dan Gohmanb98c1a32009-04-21 01:07:12 +00001721 if (getTypeSizeInBits(SrcTy) == getTypeSizeInBits(Ty))
Dan Gohman01c2ee72009-04-16 03:18:22 +00001722 return V; // No conversion
Dan Gohmanb98c1a32009-04-21 01:07:12 +00001723 if (getTypeSizeInBits(SrcTy) > getTypeSizeInBits(Ty))
Dan Gohmanffd36ba2009-04-21 23:15:49 +00001724 return getTruncateExpr(V, Ty);
1725 return getZeroExtendExpr(V, Ty);
Dan Gohman01c2ee72009-04-16 03:18:22 +00001726}
1727
1728/// getTruncateOrSignExtend - Return a SCEV corresponding to a conversion of the
1729/// input value to the specified type. If the type must be extended, it is sign
1730/// extended.
1731SCEVHandle
Dan Gohmanffd36ba2009-04-21 23:15:49 +00001732ScalarEvolution::getTruncateOrSignExtend(const SCEVHandle &V,
Nick Lewycky37d04642009-04-23 05:15:08 +00001733 const Type *Ty) {
Dan Gohman01c2ee72009-04-16 03:18:22 +00001734 const Type *SrcTy = V->getType();
Dan Gohmanb98c1a32009-04-21 01:07:12 +00001735 assert((SrcTy->isInteger() || (TD && isa<PointerType>(SrcTy))) &&
1736 (Ty->isInteger() || (TD && isa<PointerType>(Ty))) &&
Dan Gohman01c2ee72009-04-16 03:18:22 +00001737 "Cannot truncate or zero extend with non-integer arguments!");
Dan Gohmanb98c1a32009-04-21 01:07:12 +00001738 if (getTypeSizeInBits(SrcTy) == getTypeSizeInBits(Ty))
Dan Gohman01c2ee72009-04-16 03:18:22 +00001739 return V; // No conversion
Dan Gohmanb98c1a32009-04-21 01:07:12 +00001740 if (getTypeSizeInBits(SrcTy) > getTypeSizeInBits(Ty))
Dan Gohmanffd36ba2009-04-21 23:15:49 +00001741 return getTruncateExpr(V, Ty);
1742 return getSignExtendExpr(V, Ty);
Dan Gohman01c2ee72009-04-16 03:18:22 +00001743}
1744
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001745/// ReplaceSymbolicValueWithConcrete - This looks up the computed SCEV value for
1746/// the specified instruction and replaces any references to the symbolic value
1747/// SymName with the specified value. This is used during PHI resolution.
Dan Gohmanffd36ba2009-04-21 23:15:49 +00001748void ScalarEvolution::
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001749ReplaceSymbolicValueWithConcrete(Instruction *I, const SCEVHandle &SymName,
1750 const SCEVHandle &NewVal) {
Dan Gohmanbff6b582009-05-04 22:30:44 +00001751 std::map<SCEVCallbackVH, SCEVHandle>::iterator SI =
1752 Scalars.find(SCEVCallbackVH(I, this));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001753 if (SI == Scalars.end()) return;
1754
1755 SCEVHandle NV =
Dan Gohmanffd36ba2009-04-21 23:15:49 +00001756 SI->second->replaceSymbolicValuesWithConcrete(SymName, NewVal, *this);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001757 if (NV == SI->second) return; // No change.
1758
1759 SI->second = NV; // Update the scalars map!
1760
1761 // Any instruction values that use this instruction might also need to be
1762 // updated!
1763 for (Value::use_iterator UI = I->use_begin(), E = I->use_end();
1764 UI != E; ++UI)
1765 ReplaceSymbolicValueWithConcrete(cast<Instruction>(*UI), SymName, NewVal);
1766}
1767
1768/// createNodeForPHI - PHI nodes have two cases. Either the PHI node exists in
1769/// a loop header, making it a potential recurrence, or it doesn't.
1770///
Dan Gohmanffd36ba2009-04-21 23:15:49 +00001771SCEVHandle ScalarEvolution::createNodeForPHI(PHINode *PN) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001772 if (PN->getNumIncomingValues() == 2) // The loops have been canonicalized.
Dan Gohmanffd36ba2009-04-21 23:15:49 +00001773 if (const Loop *L = LI->getLoopFor(PN->getParent()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001774 if (L->getHeader() == PN->getParent()) {
1775 // If it lives in the loop header, it has two incoming values, one
1776 // from outside the loop, and one from inside.
1777 unsigned IncomingEdge = L->contains(PN->getIncomingBlock(0));
1778 unsigned BackEdge = IncomingEdge^1;
1779
1780 // While we are analyzing this PHI node, handle its value symbolically.
Dan Gohmanffd36ba2009-04-21 23:15:49 +00001781 SCEVHandle SymbolicName = getUnknown(PN);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001782 assert(Scalars.find(PN) == Scalars.end() &&
1783 "PHI node already processed?");
Dan Gohmanbff6b582009-05-04 22:30:44 +00001784 Scalars.insert(std::make_pair(SCEVCallbackVH(PN, this), SymbolicName));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001785
1786 // Using this symbolic name for the PHI, analyze the value coming around
1787 // the back-edge.
1788 SCEVHandle BEValue = getSCEV(PN->getIncomingValue(BackEdge));
1789
1790 // NOTE: If BEValue is loop invariant, we know that the PHI node just
1791 // has a special value for the first iteration of the loop.
1792
1793 // If the value coming around the backedge is an add with the symbolic
1794 // value we just inserted, then we found a simple induction variable!
Dan Gohmanc76b5452009-05-04 22:02:23 +00001795 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(BEValue)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001796 // If there is a single occurrence of the symbolic value, replace it
1797 // with a recurrence.
1798 unsigned FoundIndex = Add->getNumOperands();
1799 for (unsigned i = 0, e = Add->getNumOperands(); i != e; ++i)
1800 if (Add->getOperand(i) == SymbolicName)
1801 if (FoundIndex == e) {
1802 FoundIndex = i;
1803 break;
1804 }
1805
1806 if (FoundIndex != Add->getNumOperands()) {
1807 // Create an add with everything but the specified operand.
1808 std::vector<SCEVHandle> Ops;
1809 for (unsigned i = 0, e = Add->getNumOperands(); i != e; ++i)
1810 if (i != FoundIndex)
1811 Ops.push_back(Add->getOperand(i));
Dan Gohmanffd36ba2009-04-21 23:15:49 +00001812 SCEVHandle Accum = getAddExpr(Ops);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001813
1814 // This is not a valid addrec if the step amount is varying each
1815 // loop iteration, but is not itself an addrec in this loop.
1816 if (Accum->isLoopInvariant(L) ||
1817 (isa<SCEVAddRecExpr>(Accum) &&
1818 cast<SCEVAddRecExpr>(Accum)->getLoop() == L)) {
1819 SCEVHandle StartVal = getSCEV(PN->getIncomingValue(IncomingEdge));
Dan Gohmanffd36ba2009-04-21 23:15:49 +00001820 SCEVHandle PHISCEV = getAddRecExpr(StartVal, Accum, L);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001821
1822 // Okay, for the entire analysis of this edge we assumed the PHI
1823 // to be symbolic. We now need to go back and update all of the
1824 // entries for the scalars that use the PHI (except for the PHI
1825 // itself) to use the new analyzed value instead of the "symbolic"
1826 // value.
1827 ReplaceSymbolicValueWithConcrete(PN, SymbolicName, PHISCEV);
1828 return PHISCEV;
1829 }
1830 }
Dan Gohmanc76b5452009-05-04 22:02:23 +00001831 } else if (const SCEVAddRecExpr *AddRec =
1832 dyn_cast<SCEVAddRecExpr>(BEValue)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001833 // Otherwise, this could be a loop like this:
1834 // i = 0; for (j = 1; ..; ++j) { .... i = j; }
1835 // In this case, j = {1,+,1} and BEValue is j.
1836 // Because the other in-value of i (0) fits the evolution of BEValue
1837 // i really is an addrec evolution.
1838 if (AddRec->getLoop() == L && AddRec->isAffine()) {
1839 SCEVHandle StartVal = getSCEV(PN->getIncomingValue(IncomingEdge));
1840
1841 // If StartVal = j.start - j.stride, we can use StartVal as the
1842 // initial step of the addrec evolution.
Dan Gohmanffd36ba2009-04-21 23:15:49 +00001843 if (StartVal == getMinusSCEV(AddRec->getOperand(0),
Dan Gohman89f85052007-10-22 18:31:58 +00001844 AddRec->getOperand(1))) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001845 SCEVHandle PHISCEV =
Dan Gohmanffd36ba2009-04-21 23:15:49 +00001846 getAddRecExpr(StartVal, AddRec->getOperand(1), L);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001847
1848 // Okay, for the entire analysis of this edge we assumed the PHI
1849 // to be symbolic. We now need to go back and update all of the
1850 // entries for the scalars that use the PHI (except for the PHI
1851 // itself) to use the new analyzed value instead of the "symbolic"
1852 // value.
1853 ReplaceSymbolicValueWithConcrete(PN, SymbolicName, PHISCEV);
1854 return PHISCEV;
1855 }
1856 }
1857 }
1858
1859 return SymbolicName;
1860 }
1861
1862 // If it's not a loop phi, we can't handle it yet.
Dan Gohmanffd36ba2009-04-21 23:15:49 +00001863 return getUnknown(PN);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001864}
1865
Nick Lewycky4cb604b2007-11-22 07:59:40 +00001866/// GetMinTrailingZeros - Determine the minimum number of zero bits that S is
1867/// guaranteed to end in (at every loop iteration). It is, at the same time,
1868/// the minimum number of times S is divisible by 2. For example, given {4,+,8}
1869/// it returns 2. If S is guaranteed to be 0, it returns the bitwidth of S.
Dan Gohmanb98c1a32009-04-21 01:07:12 +00001870static uint32_t GetMinTrailingZeros(SCEVHandle S, const ScalarEvolution &SE) {
Dan Gohmanc76b5452009-05-04 22:02:23 +00001871 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(S))
Chris Lattner6ecce2a2007-11-23 22:36:49 +00001872 return C->getValue()->getValue().countTrailingZeros();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001873
Dan Gohmanc76b5452009-05-04 22:02:23 +00001874 if (const SCEVTruncateExpr *T = dyn_cast<SCEVTruncateExpr>(S))
Dan Gohmanb98c1a32009-04-21 01:07:12 +00001875 return std::min(GetMinTrailingZeros(T->getOperand(), SE),
1876 (uint32_t)SE.getTypeSizeInBits(T->getType()));
Nick Lewycky4cb604b2007-11-22 07:59:40 +00001877
Dan Gohmanc76b5452009-05-04 22:02:23 +00001878 if (const SCEVZeroExtendExpr *E = dyn_cast<SCEVZeroExtendExpr>(S)) {
Dan Gohmanb98c1a32009-04-21 01:07:12 +00001879 uint32_t OpRes = GetMinTrailingZeros(E->getOperand(), SE);
1880 return OpRes == SE.getTypeSizeInBits(E->getOperand()->getType()) ?
1881 SE.getTypeSizeInBits(E->getOperand()->getType()) : OpRes;
Nick Lewycky4cb604b2007-11-22 07:59:40 +00001882 }
1883
Dan Gohmanc76b5452009-05-04 22:02:23 +00001884 if (const SCEVSignExtendExpr *E = dyn_cast<SCEVSignExtendExpr>(S)) {
Dan Gohmanb98c1a32009-04-21 01:07:12 +00001885 uint32_t OpRes = GetMinTrailingZeros(E->getOperand(), SE);
1886 return OpRes == SE.getTypeSizeInBits(E->getOperand()->getType()) ?
1887 SE.getTypeSizeInBits(E->getOperand()->getType()) : OpRes;
Nick Lewycky4cb604b2007-11-22 07:59:40 +00001888 }
1889
Dan Gohmanc76b5452009-05-04 22:02:23 +00001890 if (const SCEVAddExpr *A = dyn_cast<SCEVAddExpr>(S)) {
Nick Lewycky4cb604b2007-11-22 07:59:40 +00001891 // The result is the min of all operands results.
Dan Gohmanb98c1a32009-04-21 01:07:12 +00001892 uint32_t MinOpRes = GetMinTrailingZeros(A->getOperand(0), SE);
Nick Lewycky4cb604b2007-11-22 07:59:40 +00001893 for (unsigned i = 1, e = A->getNumOperands(); MinOpRes && i != e; ++i)
Dan Gohmanb98c1a32009-04-21 01:07:12 +00001894 MinOpRes = std::min(MinOpRes, GetMinTrailingZeros(A->getOperand(i), SE));
Nick Lewycky4cb604b2007-11-22 07:59:40 +00001895 return MinOpRes;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001896 }
1897
Dan Gohmanc76b5452009-05-04 22:02:23 +00001898 if (const SCEVMulExpr *M = dyn_cast<SCEVMulExpr>(S)) {
Nick Lewycky4cb604b2007-11-22 07:59:40 +00001899 // The result is the sum of all operands results.
Dan Gohmanb98c1a32009-04-21 01:07:12 +00001900 uint32_t SumOpRes = GetMinTrailingZeros(M->getOperand(0), SE);
1901 uint32_t BitWidth = SE.getTypeSizeInBits(M->getType());
Nick Lewycky4cb604b2007-11-22 07:59:40 +00001902 for (unsigned i = 1, e = M->getNumOperands();
1903 SumOpRes != BitWidth && i != e; ++i)
Dan Gohmanb98c1a32009-04-21 01:07:12 +00001904 SumOpRes = std::min(SumOpRes + GetMinTrailingZeros(M->getOperand(i), SE),
Nick Lewycky4cb604b2007-11-22 07:59:40 +00001905 BitWidth);
1906 return SumOpRes;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001907 }
Nick Lewycky4cb604b2007-11-22 07:59:40 +00001908
Dan Gohmanc76b5452009-05-04 22:02:23 +00001909 if (const SCEVAddRecExpr *A = dyn_cast<SCEVAddRecExpr>(S)) {
Nick Lewycky4cb604b2007-11-22 07:59:40 +00001910 // The result is the min of all operands results.
Dan Gohmanb98c1a32009-04-21 01:07:12 +00001911 uint32_t MinOpRes = GetMinTrailingZeros(A->getOperand(0), SE);
Nick Lewycky4cb604b2007-11-22 07:59:40 +00001912 for (unsigned i = 1, e = A->getNumOperands(); MinOpRes && i != e; ++i)
Dan Gohmanb98c1a32009-04-21 01:07:12 +00001913 MinOpRes = std::min(MinOpRes, GetMinTrailingZeros(A->getOperand(i), SE));
Nick Lewycky4cb604b2007-11-22 07:59:40 +00001914 return MinOpRes;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001915 }
Nick Lewycky4cb604b2007-11-22 07:59:40 +00001916
Dan Gohmanc76b5452009-05-04 22:02:23 +00001917 if (const SCEVSMaxExpr *M = dyn_cast<SCEVSMaxExpr>(S)) {
Nick Lewycky711640a2007-11-25 22:41:31 +00001918 // The result is the min of all operands results.
Dan Gohmanb98c1a32009-04-21 01:07:12 +00001919 uint32_t MinOpRes = GetMinTrailingZeros(M->getOperand(0), SE);
Nick Lewycky711640a2007-11-25 22:41:31 +00001920 for (unsigned i = 1, e = M->getNumOperands(); MinOpRes && i != e; ++i)
Dan Gohmanb98c1a32009-04-21 01:07:12 +00001921 MinOpRes = std::min(MinOpRes, GetMinTrailingZeros(M->getOperand(i), SE));
Nick Lewycky711640a2007-11-25 22:41:31 +00001922 return MinOpRes;
1923 }
1924
Dan Gohmanc76b5452009-05-04 22:02:23 +00001925 if (const SCEVUMaxExpr *M = dyn_cast<SCEVUMaxExpr>(S)) {
Nick Lewyckye7a24ff2008-02-20 06:48:22 +00001926 // The result is the min of all operands results.
Dan Gohmanb98c1a32009-04-21 01:07:12 +00001927 uint32_t MinOpRes = GetMinTrailingZeros(M->getOperand(0), SE);
Nick Lewyckye7a24ff2008-02-20 06:48:22 +00001928 for (unsigned i = 1, e = M->getNumOperands(); MinOpRes && i != e; ++i)
Dan Gohmanb98c1a32009-04-21 01:07:12 +00001929 MinOpRes = std::min(MinOpRes, GetMinTrailingZeros(M->getOperand(i), SE));
Nick Lewyckye7a24ff2008-02-20 06:48:22 +00001930 return MinOpRes;
1931 }
1932
Nick Lewycky35b56022009-01-13 09:18:58 +00001933 // SCEVUDivExpr, SCEVUnknown
Nick Lewycky4cb604b2007-11-22 07:59:40 +00001934 return 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001935}
1936
1937/// createSCEV - We know that there is no SCEV for the specified value.
1938/// Analyze the expression.
1939///
Dan Gohmanffd36ba2009-04-21 23:15:49 +00001940SCEVHandle ScalarEvolution::createSCEV(Value *V) {
Dan Gohmanb98c1a32009-04-21 01:07:12 +00001941 if (!isSCEVable(V->getType()))
Dan Gohmanffd36ba2009-04-21 23:15:49 +00001942 return getUnknown(V);
Dan Gohman01c2ee72009-04-16 03:18:22 +00001943
Dan Gohman3996f472008-06-22 19:56:46 +00001944 unsigned Opcode = Instruction::UserOp1;
1945 if (Instruction *I = dyn_cast<Instruction>(V))
1946 Opcode = I->getOpcode();
1947 else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(V))
1948 Opcode = CE->getOpcode();
1949 else
Dan Gohmanffd36ba2009-04-21 23:15:49 +00001950 return getUnknown(V);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001951
Dan Gohman3996f472008-06-22 19:56:46 +00001952 User *U = cast<User>(V);
1953 switch (Opcode) {
1954 case Instruction::Add:
Dan Gohmanffd36ba2009-04-21 23:15:49 +00001955 return getAddExpr(getSCEV(U->getOperand(0)),
1956 getSCEV(U->getOperand(1)));
Dan Gohman3996f472008-06-22 19:56:46 +00001957 case Instruction::Mul:
Dan Gohmanffd36ba2009-04-21 23:15:49 +00001958 return getMulExpr(getSCEV(U->getOperand(0)),
1959 getSCEV(U->getOperand(1)));
Dan Gohman3996f472008-06-22 19:56:46 +00001960 case Instruction::UDiv:
Dan Gohmanffd36ba2009-04-21 23:15:49 +00001961 return getUDivExpr(getSCEV(U->getOperand(0)),
1962 getSCEV(U->getOperand(1)));
Dan Gohman3996f472008-06-22 19:56:46 +00001963 case Instruction::Sub:
Dan Gohmanffd36ba2009-04-21 23:15:49 +00001964 return getMinusSCEV(getSCEV(U->getOperand(0)),
1965 getSCEV(U->getOperand(1)));
Dan Gohman53bf64a2009-04-21 02:26:00 +00001966 case Instruction::And:
1967 // For an expression like x&255 that merely masks off the high bits,
1968 // use zext(trunc(x)) as the SCEV expression.
1969 if (ConstantInt *CI = dyn_cast<ConstantInt>(U->getOperand(1))) {
Dan Gohman91ae1e72009-04-25 17:05:40 +00001970 if (CI->isNullValue())
1971 return getSCEV(U->getOperand(1));
Dan Gohmanc7ebba12009-04-27 01:41:10 +00001972 if (CI->isAllOnesValue())
1973 return getSCEV(U->getOperand(0));
Dan Gohman53bf64a2009-04-21 02:26:00 +00001974 const APInt &A = CI->getValue();
1975 unsigned Ones = A.countTrailingOnes();
1976 if (APIntOps::isMask(Ones, A))
1977 return
Dan Gohmanffd36ba2009-04-21 23:15:49 +00001978 getZeroExtendExpr(getTruncateExpr(getSCEV(U->getOperand(0)),
1979 IntegerType::get(Ones)),
1980 U->getType());
Dan Gohman53bf64a2009-04-21 02:26:00 +00001981 }
1982 break;
Dan Gohman3996f472008-06-22 19:56:46 +00001983 case Instruction::Or:
1984 // If the RHS of the Or is a constant, we may have something like:
1985 // X*4+1 which got turned into X*4|1. Handle this as an Add so loop
1986 // optimizations will transparently handle this case.
1987 //
1988 // In order for this transformation to be safe, the LHS must be of the
1989 // form X*(2^n) and the Or constant must be less than 2^n.
1990 if (ConstantInt *CI = dyn_cast<ConstantInt>(U->getOperand(1))) {
1991 SCEVHandle LHS = getSCEV(U->getOperand(0));
1992 const APInt &CIVal = CI->getValue();
Dan Gohmanffd36ba2009-04-21 23:15:49 +00001993 if (GetMinTrailingZeros(LHS, *this) >=
Dan Gohman3996f472008-06-22 19:56:46 +00001994 (CIVal.getBitWidth() - CIVal.countLeadingZeros()))
Dan Gohmanffd36ba2009-04-21 23:15:49 +00001995 return getAddExpr(LHS, getSCEV(U->getOperand(1)));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001996 }
Dan Gohman3996f472008-06-22 19:56:46 +00001997 break;
1998 case Instruction::Xor:
Dan Gohman3996f472008-06-22 19:56:46 +00001999 if (ConstantInt *CI = dyn_cast<ConstantInt>(U->getOperand(1))) {
Nick Lewycky7fd27892008-07-07 06:15:49 +00002000 // If the RHS of the xor is a signbit, then this is just an add.
2001 // Instcombine turns add of signbit into xor as a strength reduction step.
Dan Gohman3996f472008-06-22 19:56:46 +00002002 if (CI->getValue().isSignBit())
Dan Gohmanffd36ba2009-04-21 23:15:49 +00002003 return getAddExpr(getSCEV(U->getOperand(0)),
2004 getSCEV(U->getOperand(1)));
Nick Lewycky7fd27892008-07-07 06:15:49 +00002005
2006 // If the RHS of xor is -1, then this is a not operation.
Dan Gohman3996f472008-06-22 19:56:46 +00002007 else if (CI->isAllOnesValue())
Dan Gohmanffd36ba2009-04-21 23:15:49 +00002008 return getNotSCEV(getSCEV(U->getOperand(0)));
Dan Gohman3996f472008-06-22 19:56:46 +00002009 }
2010 break;
2011
2012 case Instruction::Shl:
2013 // Turn shift left of a constant amount into a multiply.
2014 if (ConstantInt *SA = dyn_cast<ConstantInt>(U->getOperand(1))) {
2015 uint32_t BitWidth = cast<IntegerType>(V->getType())->getBitWidth();
2016 Constant *X = ConstantInt::get(
2017 APInt(BitWidth, 1).shl(SA->getLimitedValue(BitWidth)));
Dan Gohmanffd36ba2009-04-21 23:15:49 +00002018 return getMulExpr(getSCEV(U->getOperand(0)), getSCEV(X));
Dan Gohman3996f472008-06-22 19:56:46 +00002019 }
2020 break;
2021
Nick Lewycky7fd27892008-07-07 06:15:49 +00002022 case Instruction::LShr:
Nick Lewycky35b56022009-01-13 09:18:58 +00002023 // Turn logical shift right of a constant into a unsigned divide.
Nick Lewycky7fd27892008-07-07 06:15:49 +00002024 if (ConstantInt *SA = dyn_cast<ConstantInt>(U->getOperand(1))) {
2025 uint32_t BitWidth = cast<IntegerType>(V->getType())->getBitWidth();
2026 Constant *X = ConstantInt::get(
2027 APInt(BitWidth, 1).shl(SA->getLimitedValue(BitWidth)));
Dan Gohmanffd36ba2009-04-21 23:15:49 +00002028 return getUDivExpr(getSCEV(U->getOperand(0)), getSCEV(X));
Nick Lewycky7fd27892008-07-07 06:15:49 +00002029 }
2030 break;
2031
Dan Gohman53bf64a2009-04-21 02:26:00 +00002032 case Instruction::AShr:
2033 // For a two-shift sext-inreg, use sext(trunc(x)) as the SCEV expression.
2034 if (ConstantInt *CI = dyn_cast<ConstantInt>(U->getOperand(1)))
2035 if (Instruction *L = dyn_cast<Instruction>(U->getOperand(0)))
2036 if (L->getOpcode() == Instruction::Shl &&
2037 L->getOperand(1) == U->getOperand(1)) {
Dan Gohman91ae1e72009-04-25 17:05:40 +00002038 unsigned BitWidth = getTypeSizeInBits(U->getType());
2039 uint64_t Amt = BitWidth - CI->getZExtValue();
2040 if (Amt == BitWidth)
2041 return getSCEV(L->getOperand(0)); // shift by zero --> noop
2042 if (Amt > BitWidth)
2043 return getIntegerSCEV(0, U->getType()); // value is undefined
Dan Gohman53bf64a2009-04-21 02:26:00 +00002044 return
Dan Gohmanffd36ba2009-04-21 23:15:49 +00002045 getSignExtendExpr(getTruncateExpr(getSCEV(L->getOperand(0)),
Dan Gohman91ae1e72009-04-25 17:05:40 +00002046 IntegerType::get(Amt)),
Dan Gohman53bf64a2009-04-21 02:26:00 +00002047 U->getType());
2048 }
2049 break;
2050
Dan Gohman3996f472008-06-22 19:56:46 +00002051 case Instruction::Trunc:
Dan Gohmanffd36ba2009-04-21 23:15:49 +00002052 return getTruncateExpr(getSCEV(U->getOperand(0)), U->getType());
Dan Gohman3996f472008-06-22 19:56:46 +00002053
2054 case Instruction::ZExt:
Dan Gohmanffd36ba2009-04-21 23:15:49 +00002055 return getZeroExtendExpr(getSCEV(U->getOperand(0)), U->getType());
Dan Gohman3996f472008-06-22 19:56:46 +00002056
2057 case Instruction::SExt:
Dan Gohmanffd36ba2009-04-21 23:15:49 +00002058 return getSignExtendExpr(getSCEV(U->getOperand(0)), U->getType());
Dan Gohman3996f472008-06-22 19:56:46 +00002059
2060 case Instruction::BitCast:
2061 // BitCasts are no-op casts so we just eliminate the cast.
Dan Gohmanb98c1a32009-04-21 01:07:12 +00002062 if (isSCEVable(U->getType()) && isSCEVable(U->getOperand(0)->getType()))
Dan Gohman3996f472008-06-22 19:56:46 +00002063 return getSCEV(U->getOperand(0));
2064 break;
2065
Dan Gohman01c2ee72009-04-16 03:18:22 +00002066 case Instruction::IntToPtr:
Dan Gohmanb98c1a32009-04-21 01:07:12 +00002067 if (!TD) break; // Without TD we can't analyze pointers.
Dan Gohman01c2ee72009-04-16 03:18:22 +00002068 return getTruncateOrZeroExtend(getSCEV(U->getOperand(0)),
Dan Gohmanb98c1a32009-04-21 01:07:12 +00002069 TD->getIntPtrType());
Dan Gohman01c2ee72009-04-16 03:18:22 +00002070
2071 case Instruction::PtrToInt:
Dan Gohmanb98c1a32009-04-21 01:07:12 +00002072 if (!TD) break; // Without TD we can't analyze pointers.
Dan Gohman01c2ee72009-04-16 03:18:22 +00002073 return getTruncateOrZeroExtend(getSCEV(U->getOperand(0)),
2074 U->getType());
2075
2076 case Instruction::GetElementPtr: {
Dan Gohmanb98c1a32009-04-21 01:07:12 +00002077 if (!TD) break; // Without TD we can't analyze pointers.
2078 const Type *IntPtrTy = TD->getIntPtrType();
Dan Gohman01c2ee72009-04-16 03:18:22 +00002079 Value *Base = U->getOperand(0);
Dan Gohmanffd36ba2009-04-21 23:15:49 +00002080 SCEVHandle TotalOffset = getIntegerSCEV(0, IntPtrTy);
Dan Gohman01c2ee72009-04-16 03:18:22 +00002081 gep_type_iterator GTI = gep_type_begin(U);
2082 for (GetElementPtrInst::op_iterator I = next(U->op_begin()),
2083 E = U->op_end();
2084 I != E; ++I) {
2085 Value *Index = *I;
2086 // Compute the (potentially symbolic) offset in bytes for this index.
2087 if (const StructType *STy = dyn_cast<StructType>(*GTI++)) {
2088 // For a struct, add the member offset.
Dan Gohmanb98c1a32009-04-21 01:07:12 +00002089 const StructLayout &SL = *TD->getStructLayout(STy);
Dan Gohman01c2ee72009-04-16 03:18:22 +00002090 unsigned FieldNo = cast<ConstantInt>(Index)->getZExtValue();
2091 uint64_t Offset = SL.getElementOffset(FieldNo);
Dan Gohmanffd36ba2009-04-21 23:15:49 +00002092 TotalOffset = getAddExpr(TotalOffset,
2093 getIntegerSCEV(Offset, IntPtrTy));
Dan Gohman01c2ee72009-04-16 03:18:22 +00002094 } else {
2095 // For an array, add the element offset, explicitly scaled.
2096 SCEVHandle LocalOffset = getSCEV(Index);
2097 if (!isa<PointerType>(LocalOffset->getType()))
2098 // Getelementptr indicies are signed.
2099 LocalOffset = getTruncateOrSignExtend(LocalOffset,
2100 IntPtrTy);
2101 LocalOffset =
Dan Gohmanffd36ba2009-04-21 23:15:49 +00002102 getMulExpr(LocalOffset,
2103 getIntegerSCEV(TD->getTypePaddedSize(*GTI),
2104 IntPtrTy));
2105 TotalOffset = getAddExpr(TotalOffset, LocalOffset);
Dan Gohman01c2ee72009-04-16 03:18:22 +00002106 }
2107 }
Dan Gohmanffd36ba2009-04-21 23:15:49 +00002108 return getAddExpr(getSCEV(Base), TotalOffset);
Dan Gohman01c2ee72009-04-16 03:18:22 +00002109 }
2110
Dan Gohman3996f472008-06-22 19:56:46 +00002111 case Instruction::PHI:
2112 return createNodeForPHI(cast<PHINode>(U));
2113
2114 case Instruction::Select:
2115 // This could be a smax or umax that was lowered earlier.
2116 // Try to recover it.
2117 if (ICmpInst *ICI = dyn_cast<ICmpInst>(U->getOperand(0))) {
2118 Value *LHS = ICI->getOperand(0);
2119 Value *RHS = ICI->getOperand(1);
2120 switch (ICI->getPredicate()) {
2121 case ICmpInst::ICMP_SLT:
2122 case ICmpInst::ICMP_SLE:
2123 std::swap(LHS, RHS);
2124 // fall through
2125 case ICmpInst::ICMP_SGT:
2126 case ICmpInst::ICMP_SGE:
2127 if (LHS == U->getOperand(1) && RHS == U->getOperand(2))
Dan Gohmanffd36ba2009-04-21 23:15:49 +00002128 return getSMaxExpr(getSCEV(LHS), getSCEV(RHS));
Dan Gohman3996f472008-06-22 19:56:46 +00002129 else if (LHS == U->getOperand(2) && RHS == U->getOperand(1))
Eli Friedman8e2fd032008-07-30 04:36:32 +00002130 // ~smax(~x, ~y) == smin(x, y).
Dan Gohmanffd36ba2009-04-21 23:15:49 +00002131 return getNotSCEV(getSMaxExpr(
2132 getNotSCEV(getSCEV(LHS)),
2133 getNotSCEV(getSCEV(RHS))));
Dan Gohman3996f472008-06-22 19:56:46 +00002134 break;
2135 case ICmpInst::ICMP_ULT:
2136 case ICmpInst::ICMP_ULE:
2137 std::swap(LHS, RHS);
2138 // fall through
2139 case ICmpInst::ICMP_UGT:
2140 case ICmpInst::ICMP_UGE:
2141 if (LHS == U->getOperand(1) && RHS == U->getOperand(2))
Dan Gohmanffd36ba2009-04-21 23:15:49 +00002142 return getUMaxExpr(getSCEV(LHS), getSCEV(RHS));
Dan Gohman3996f472008-06-22 19:56:46 +00002143 else if (LHS == U->getOperand(2) && RHS == U->getOperand(1))
2144 // ~umax(~x, ~y) == umin(x, y)
Dan Gohmanffd36ba2009-04-21 23:15:49 +00002145 return getNotSCEV(getUMaxExpr(getNotSCEV(getSCEV(LHS)),
2146 getNotSCEV(getSCEV(RHS))));
Dan Gohman3996f472008-06-22 19:56:46 +00002147 break;
2148 default:
2149 break;
2150 }
2151 }
2152
2153 default: // We cannot analyze this expression.
2154 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002155 }
2156
Dan Gohmanffd36ba2009-04-21 23:15:49 +00002157 return getUnknown(V);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002158}
2159
2160
2161
2162//===----------------------------------------------------------------------===//
2163// Iteration Count Computation Code
2164//
2165
Dan Gohman76d5a0d2009-02-24 18:55:53 +00002166/// getBackedgeTakenCount - If the specified loop has a predictable
2167/// backedge-taken count, return it, otherwise return a SCEVCouldNotCompute
2168/// object. The backedge-taken count is the number of times the loop header
2169/// will be branched to from within the loop. This is one less than the
2170/// trip count of the loop, since it doesn't count the first iteration,
2171/// when the header is branched to from outside the loop.
2172///
2173/// Note that it is not valid to call this method on a loop without a
2174/// loop-invariant backedge-taken count (see
2175/// hasLoopInvariantBackedgeTakenCount).
2176///
Dan Gohmanffd36ba2009-04-21 23:15:49 +00002177SCEVHandle ScalarEvolution::getBackedgeTakenCount(const Loop *L) {
Dan Gohmanf7d3d25542009-04-30 20:47:05 +00002178 return getBackedgeTakenInfo(L).Exact;
2179}
2180
2181/// getMaxBackedgeTakenCount - Similar to getBackedgeTakenCount, except
2182/// return the least SCEV value that is known never to be less than the
2183/// actual backedge taken count.
2184SCEVHandle ScalarEvolution::getMaxBackedgeTakenCount(const Loop *L) {
2185 return getBackedgeTakenInfo(L).Max;
2186}
2187
2188const ScalarEvolution::BackedgeTakenInfo &
2189ScalarEvolution::getBackedgeTakenInfo(const Loop *L) {
Dan Gohmana9dba962009-04-27 20:16:15 +00002190 // Initially insert a CouldNotCompute for this loop. If the insertion
2191 // succeeds, procede to actually compute a backedge-taken count and
2192 // update the value. The temporary CouldNotCompute value tells SCEV
2193 // code elsewhere that it shouldn't attempt to request a new
2194 // backedge-taken count, which could result in infinite recursion.
Dan Gohmanf7d3d25542009-04-30 20:47:05 +00002195 std::pair<std::map<const Loop*, BackedgeTakenInfo>::iterator, bool> Pair =
Dan Gohmana9dba962009-04-27 20:16:15 +00002196 BackedgeTakenCounts.insert(std::make_pair(L, getCouldNotCompute()));
2197 if (Pair.second) {
Dan Gohmanf7d3d25542009-04-30 20:47:05 +00002198 BackedgeTakenInfo ItCount = ComputeBackedgeTakenCount(L);
2199 if (ItCount.Exact != UnknownValue) {
2200 assert(ItCount.Exact->isLoopInvariant(L) &&
2201 ItCount.Max->isLoopInvariant(L) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002202 "Computed trip count isn't loop invariant for loop!");
2203 ++NumTripCountsComputed;
Dan Gohmana9dba962009-04-27 20:16:15 +00002204
Dan Gohmana9dba962009-04-27 20:16:15 +00002205 // Update the value in the map.
2206 Pair.first->second = ItCount;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002207 } else if (isa<PHINode>(L->getHeader()->begin())) {
2208 // Only count loops that have phi nodes as not being computable.
2209 ++NumTripCountsNotComputed;
2210 }
Dan Gohmanf7d3d25542009-04-30 20:47:05 +00002211
2212 // Now that we know more about the trip count for this loop, forget any
2213 // existing SCEV values for PHI nodes in this loop since they are only
2214 // conservative estimates made without the benefit
2215 // of trip count information.
2216 if (ItCount.hasAnyInfo())
Dan Gohman94623022009-05-02 17:43:35 +00002217 forgetLoopPHIs(L);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002218 }
Dan Gohmana9dba962009-04-27 20:16:15 +00002219 return Pair.first->second;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002220}
2221
Dan Gohman76d5a0d2009-02-24 18:55:53 +00002222/// forgetLoopBackedgeTakenCount - This method should be called by the
Dan Gohmanf3a060a2009-02-17 20:49:49 +00002223/// client when it has changed a loop in a way that may effect
Dan Gohman76d5a0d2009-02-24 18:55:53 +00002224/// ScalarEvolution's ability to compute a trip count, or if the loop
2225/// is deleted.
Dan Gohmanffd36ba2009-04-21 23:15:49 +00002226void ScalarEvolution::forgetLoopBackedgeTakenCount(const Loop *L) {
Dan Gohman76d5a0d2009-02-24 18:55:53 +00002227 BackedgeTakenCounts.erase(L);
Dan Gohman94623022009-05-02 17:43:35 +00002228 forgetLoopPHIs(L);
2229}
2230
2231/// forgetLoopPHIs - Delete the memoized SCEVs associated with the
2232/// PHI nodes in the given loop. This is used when the trip count of
2233/// the loop may have changed.
2234void ScalarEvolution::forgetLoopPHIs(const Loop *L) {
Dan Gohmanbff6b582009-05-04 22:30:44 +00002235 BasicBlock *Header = L->getHeader();
2236
2237 SmallVector<Instruction *, 16> Worklist;
2238 for (BasicBlock::iterator I = Header->begin();
Dan Gohman94623022009-05-02 17:43:35 +00002239 PHINode *PN = dyn_cast<PHINode>(I); ++I)
Dan Gohmanbff6b582009-05-04 22:30:44 +00002240 Worklist.push_back(PN);
2241
2242 while (!Worklist.empty()) {
2243 Instruction *I = Worklist.pop_back_val();
2244 if (Scalars.erase(I))
2245 for (Value::use_iterator UI = I->use_begin(), UE = I->use_end();
2246 UI != UE; ++UI)
2247 Worklist.push_back(cast<Instruction>(UI));
2248 }
Dan Gohmanf3a060a2009-02-17 20:49:49 +00002249}
2250
Dan Gohman76d5a0d2009-02-24 18:55:53 +00002251/// ComputeBackedgeTakenCount - Compute the number of times the backedge
2252/// of the specified loop will execute.
Dan Gohmanf7d3d25542009-04-30 20:47:05 +00002253ScalarEvolution::BackedgeTakenInfo
2254ScalarEvolution::ComputeBackedgeTakenCount(const Loop *L) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002255 // If the loop has a non-one exit block count, we can't analyze it.
Devang Patel02451fa2007-08-21 00:31:24 +00002256 SmallVector<BasicBlock*, 8> ExitBlocks;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002257 L->getExitBlocks(ExitBlocks);
2258 if (ExitBlocks.size() != 1) return UnknownValue;
2259
2260 // Okay, there is one exit block. Try to find the condition that causes the
2261 // loop to be exited.
2262 BasicBlock *ExitBlock = ExitBlocks[0];
2263
2264 BasicBlock *ExitingBlock = 0;
2265 for (pred_iterator PI = pred_begin(ExitBlock), E = pred_end(ExitBlock);
2266 PI != E; ++PI)
2267 if (L->contains(*PI)) {
2268 if (ExitingBlock == 0)
2269 ExitingBlock = *PI;
2270 else
2271 return UnknownValue; // More than one block exiting!
2272 }
2273 assert(ExitingBlock && "No exits from loop, something is broken!");
2274
2275 // Okay, we've computed the exiting block. See what condition causes us to
2276 // exit.
2277 //
2278 // FIXME: we should be able to handle switch instructions (with a single exit)
2279 BranchInst *ExitBr = dyn_cast<BranchInst>(ExitingBlock->getTerminator());
2280 if (ExitBr == 0) return UnknownValue;
2281 assert(ExitBr->isConditional() && "If unconditional, it can't be in loop!");
2282
2283 // At this point, we know we have a conditional branch that determines whether
2284 // the loop is exited. However, we don't know if the branch is executed each
2285 // time through the loop. If not, then the execution count of the branch will
2286 // not be equal to the trip count of the loop.
2287 //
2288 // Currently we check for this by checking to see if the Exit branch goes to
2289 // the loop header. If so, we know it will always execute the same number of
2290 // times as the loop. We also handle the case where the exit block *is* the
2291 // loop header. This is common for un-rotated loops. More extensive analysis
2292 // could be done to handle more cases here.
2293 if (ExitBr->getSuccessor(0) != L->getHeader() &&
2294 ExitBr->getSuccessor(1) != L->getHeader() &&
2295 ExitBr->getParent() != L->getHeader())
2296 return UnknownValue;
2297
2298 ICmpInst *ExitCond = dyn_cast<ICmpInst>(ExitBr->getCondition());
2299
Nick Lewyckyb3d24332008-02-21 08:34:02 +00002300 // If it's not an integer comparison then compute it the hard way.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002301 // Note that ICmpInst deals with pointer comparisons too so we must check
2302 // the type of the operand.
2303 if (ExitCond == 0 || isa<PointerType>(ExitCond->getOperand(0)->getType()))
Dan Gohman76d5a0d2009-02-24 18:55:53 +00002304 return ComputeBackedgeTakenCountExhaustively(L, ExitBr->getCondition(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002305 ExitBr->getSuccessor(0) == ExitBlock);
2306
2307 // If the condition was exit on true, convert the condition to exit on false
2308 ICmpInst::Predicate Cond;
2309 if (ExitBr->getSuccessor(1) == ExitBlock)
2310 Cond = ExitCond->getPredicate();
2311 else
2312 Cond = ExitCond->getInversePredicate();
2313
2314 // Handle common loops like: for (X = "string"; *X; ++X)
2315 if (LoadInst *LI = dyn_cast<LoadInst>(ExitCond->getOperand(0)))
2316 if (Constant *RHS = dyn_cast<Constant>(ExitCond->getOperand(1))) {
2317 SCEVHandle ItCnt =
Dan Gohman76d5a0d2009-02-24 18:55:53 +00002318 ComputeLoadConstantCompareBackedgeTakenCount(LI, RHS, L, Cond);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002319 if (!isa<SCEVCouldNotCompute>(ItCnt)) return ItCnt;
2320 }
2321
2322 SCEVHandle LHS = getSCEV(ExitCond->getOperand(0));
2323 SCEVHandle RHS = getSCEV(ExitCond->getOperand(1));
2324
2325 // Try to evaluate any dependencies out of the loop.
2326 SCEVHandle Tmp = getSCEVAtScope(LHS, L);
2327 if (!isa<SCEVCouldNotCompute>(Tmp)) LHS = Tmp;
2328 Tmp = getSCEVAtScope(RHS, L);
2329 if (!isa<SCEVCouldNotCompute>(Tmp)) RHS = Tmp;
2330
2331 // At this point, we would like to compute how many iterations of the
2332 // loop the predicate will return true for these inputs.
Dan Gohman2d96e352008-09-16 18:52:57 +00002333 if (LHS->isLoopInvariant(L) && !RHS->isLoopInvariant(L)) {
2334 // If there is a loop-invariant, force it into the RHS.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002335 std::swap(LHS, RHS);
2336 Cond = ICmpInst::getSwappedPredicate(Cond);
2337 }
2338
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002339 // If we have a comparison of a chrec against a constant, try to use value
2340 // ranges to answer this query.
Dan Gohmanc76b5452009-05-04 22:02:23 +00002341 if (const SCEVConstant *RHSC = dyn_cast<SCEVConstant>(RHS))
2342 if (const SCEVAddRecExpr *AddRec = dyn_cast<SCEVAddRecExpr>(LHS))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002343 if (AddRec->getLoop() == L) {
2344 // Form the comparison range using the constant of the correct type so
2345 // that the ConstantRange class knows to do a signed or unsigned
2346 // comparison.
2347 ConstantInt *CompVal = RHSC->getValue();
2348 const Type *RealTy = ExitCond->getOperand(0)->getType();
2349 CompVal = dyn_cast<ConstantInt>(
2350 ConstantExpr::getBitCast(CompVal, RealTy));
2351 if (CompVal) {
2352 // Form the constant range.
2353 ConstantRange CompRange(
2354 ICmpInst::makeConstantRange(Cond, CompVal->getValue()));
2355
Dan Gohmanffd36ba2009-04-21 23:15:49 +00002356 SCEVHandle Ret = AddRec->getNumIterationsInRange(CompRange, *this);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002357 if (!isa<SCEVCouldNotCompute>(Ret)) return Ret;
2358 }
2359 }
2360
2361 switch (Cond) {
2362 case ICmpInst::ICMP_NE: { // while (X != Y)
2363 // Convert to: while (X-Y != 0)
Dan Gohmanffd36ba2009-04-21 23:15:49 +00002364 SCEVHandle TC = HowFarToZero(getMinusSCEV(LHS, RHS), L);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002365 if (!isa<SCEVCouldNotCompute>(TC)) return TC;
2366 break;
2367 }
2368 case ICmpInst::ICMP_EQ: {
2369 // Convert to: while (X-Y == 0) // while (X == Y)
Dan Gohmanffd36ba2009-04-21 23:15:49 +00002370 SCEVHandle TC = HowFarToNonZero(getMinusSCEV(LHS, RHS), L);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002371 if (!isa<SCEVCouldNotCompute>(TC)) return TC;
2372 break;
2373 }
2374 case ICmpInst::ICMP_SLT: {
Dan Gohmanf7d3d25542009-04-30 20:47:05 +00002375 BackedgeTakenInfo BTI = HowManyLessThans(LHS, RHS, L, true);
2376 if (BTI.hasAnyInfo()) return BTI;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002377 break;
2378 }
2379 case ICmpInst::ICMP_SGT: {
Dan Gohmanf7d3d25542009-04-30 20:47:05 +00002380 BackedgeTakenInfo BTI = HowManyLessThans(getNotSCEV(LHS),
2381 getNotSCEV(RHS), L, true);
2382 if (BTI.hasAnyInfo()) return BTI;
Nick Lewyckyb7c28942007-08-06 19:21:00 +00002383 break;
2384 }
2385 case ICmpInst::ICMP_ULT: {
Dan Gohmanf7d3d25542009-04-30 20:47:05 +00002386 BackedgeTakenInfo BTI = HowManyLessThans(LHS, RHS, L, false);
2387 if (BTI.hasAnyInfo()) return BTI;
Nick Lewyckyb7c28942007-08-06 19:21:00 +00002388 break;
2389 }
2390 case ICmpInst::ICMP_UGT: {
Dan Gohmanf7d3d25542009-04-30 20:47:05 +00002391 BackedgeTakenInfo BTI = HowManyLessThans(getNotSCEV(LHS),
2392 getNotSCEV(RHS), L, false);
2393 if (BTI.hasAnyInfo()) return BTI;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002394 break;
2395 }
2396 default:
2397#if 0
Dan Gohman13058cc2009-04-21 00:47:46 +00002398 errs() << "ComputeBackedgeTakenCount ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002399 if (ExitCond->getOperand(0)->getType()->isUnsigned())
Dan Gohman13058cc2009-04-21 00:47:46 +00002400 errs() << "[unsigned] ";
2401 errs() << *LHS << " "
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002402 << Instruction::getOpcodeName(Instruction::ICmp)
2403 << " " << *RHS << "\n";
2404#endif
2405 break;
2406 }
Dan Gohman76d5a0d2009-02-24 18:55:53 +00002407 return
2408 ComputeBackedgeTakenCountExhaustively(L, ExitCond,
2409 ExitBr->getSuccessor(0) == ExitBlock);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002410}
2411
2412static ConstantInt *
Dan Gohman89f85052007-10-22 18:31:58 +00002413EvaluateConstantChrecAtConstant(const SCEVAddRecExpr *AddRec, ConstantInt *C,
2414 ScalarEvolution &SE) {
2415 SCEVHandle InVal = SE.getConstant(C);
2416 SCEVHandle Val = AddRec->evaluateAtIteration(InVal, SE);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002417 assert(isa<SCEVConstant>(Val) &&
2418 "Evaluation of SCEV at constant didn't fold correctly?");
2419 return cast<SCEVConstant>(Val)->getValue();
2420}
2421
2422/// GetAddressedElementFromGlobal - Given a global variable with an initializer
2423/// and a GEP expression (missing the pointer index) indexing into it, return
2424/// the addressed element of the initializer or null if the index expression is
2425/// invalid.
2426static Constant *
2427GetAddressedElementFromGlobal(GlobalVariable *GV,
2428 const std::vector<ConstantInt*> &Indices) {
2429 Constant *Init = GV->getInitializer();
2430 for (unsigned i = 0, e = Indices.size(); i != e; ++i) {
2431 uint64_t Idx = Indices[i]->getZExtValue();
2432 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(Init)) {
2433 assert(Idx < CS->getNumOperands() && "Bad struct index!");
2434 Init = cast<Constant>(CS->getOperand(Idx));
2435 } else if (ConstantArray *CA = dyn_cast<ConstantArray>(Init)) {
2436 if (Idx >= CA->getNumOperands()) return 0; // Bogus program
2437 Init = cast<Constant>(CA->getOperand(Idx));
2438 } else if (isa<ConstantAggregateZero>(Init)) {
2439 if (const StructType *STy = dyn_cast<StructType>(Init->getType())) {
2440 assert(Idx < STy->getNumElements() && "Bad struct index!");
2441 Init = Constant::getNullValue(STy->getElementType(Idx));
2442 } else if (const ArrayType *ATy = dyn_cast<ArrayType>(Init->getType())) {
2443 if (Idx >= ATy->getNumElements()) return 0; // Bogus program
2444 Init = Constant::getNullValue(ATy->getElementType());
2445 } else {
2446 assert(0 && "Unknown constant aggregate type!");
2447 }
2448 return 0;
2449 } else {
2450 return 0; // Unknown initializer type
2451 }
2452 }
2453 return Init;
2454}
2455
Dan Gohman76d5a0d2009-02-24 18:55:53 +00002456/// ComputeLoadConstantCompareBackedgeTakenCount - Given an exit condition of
2457/// 'icmp op load X, cst', try to see if we can compute the backedge
2458/// execution count.
Dan Gohmanffd36ba2009-04-21 23:15:49 +00002459SCEVHandle ScalarEvolution::
Dan Gohman76d5a0d2009-02-24 18:55:53 +00002460ComputeLoadConstantCompareBackedgeTakenCount(LoadInst *LI, Constant *RHS,
2461 const Loop *L,
2462 ICmpInst::Predicate predicate) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002463 if (LI->isVolatile()) return UnknownValue;
2464
2465 // Check to see if the loaded pointer is a getelementptr of a global.
2466 GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(LI->getOperand(0));
2467 if (!GEP) return UnknownValue;
2468
2469 // Make sure that it is really a constant global we are gepping, with an
2470 // initializer, and make sure the first IDX is really 0.
2471 GlobalVariable *GV = dyn_cast<GlobalVariable>(GEP->getOperand(0));
2472 if (!GV || !GV->isConstant() || !GV->hasInitializer() ||
2473 GEP->getNumOperands() < 3 || !isa<Constant>(GEP->getOperand(1)) ||
2474 !cast<Constant>(GEP->getOperand(1))->isNullValue())
2475 return UnknownValue;
2476
2477 // Okay, we allow one non-constant index into the GEP instruction.
2478 Value *VarIdx = 0;
2479 std::vector<ConstantInt*> Indexes;
2480 unsigned VarIdxNum = 0;
2481 for (unsigned i = 2, e = GEP->getNumOperands(); i != e; ++i)
2482 if (ConstantInt *CI = dyn_cast<ConstantInt>(GEP->getOperand(i))) {
2483 Indexes.push_back(CI);
2484 } else if (!isa<ConstantInt>(GEP->getOperand(i))) {
2485 if (VarIdx) return UnknownValue; // Multiple non-constant idx's.
2486 VarIdx = GEP->getOperand(i);
2487 VarIdxNum = i-2;
2488 Indexes.push_back(0);
2489 }
2490
2491 // Okay, we know we have a (load (gep GV, 0, X)) comparison with a constant.
2492 // Check to see if X is a loop variant variable value now.
2493 SCEVHandle Idx = getSCEV(VarIdx);
2494 SCEVHandle Tmp = getSCEVAtScope(Idx, L);
2495 if (!isa<SCEVCouldNotCompute>(Tmp)) Idx = Tmp;
2496
2497 // We can only recognize very limited forms of loop index expressions, in
2498 // particular, only affine AddRec's like {C1,+,C2}.
Dan Gohmanbff6b582009-05-04 22:30:44 +00002499 const SCEVAddRecExpr *IdxExpr = dyn_cast<SCEVAddRecExpr>(Idx);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002500 if (!IdxExpr || !IdxExpr->isAffine() || IdxExpr->isLoopInvariant(L) ||
2501 !isa<SCEVConstant>(IdxExpr->getOperand(0)) ||
2502 !isa<SCEVConstant>(IdxExpr->getOperand(1)))
2503 return UnknownValue;
2504
2505 unsigned MaxSteps = MaxBruteForceIterations;
2506 for (unsigned IterationNum = 0; IterationNum != MaxSteps; ++IterationNum) {
2507 ConstantInt *ItCst =
2508 ConstantInt::get(IdxExpr->getType(), IterationNum);
Dan Gohmanffd36ba2009-04-21 23:15:49 +00002509 ConstantInt *Val = EvaluateConstantChrecAtConstant(IdxExpr, ItCst, *this);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002510
2511 // Form the GEP offset.
2512 Indexes[VarIdxNum] = Val;
2513
2514 Constant *Result = GetAddressedElementFromGlobal(GV, Indexes);
2515 if (Result == 0) break; // Cannot compute!
2516
2517 // Evaluate the condition for this iteration.
2518 Result = ConstantExpr::getICmp(predicate, Result, RHS);
2519 if (!isa<ConstantInt>(Result)) break; // Couldn't decide for sure
2520 if (cast<ConstantInt>(Result)->getValue().isMinValue()) {
2521#if 0
Dan Gohman13058cc2009-04-21 00:47:46 +00002522 errs() << "\n***\n*** Computed loop count " << *ItCst
2523 << "\n*** From global " << *GV << "*** BB: " << *L->getHeader()
2524 << "***\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002525#endif
2526 ++NumArrayLenItCounts;
Dan Gohmanffd36ba2009-04-21 23:15:49 +00002527 return getConstant(ItCst); // Found terminating iteration!
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002528 }
2529 }
2530 return UnknownValue;
2531}
2532
2533
2534/// CanConstantFold - Return true if we can constant fold an instruction of the
2535/// specified type, assuming that all operands were constants.
2536static bool CanConstantFold(const Instruction *I) {
2537 if (isa<BinaryOperator>(I) || isa<CmpInst>(I) ||
2538 isa<SelectInst>(I) || isa<CastInst>(I) || isa<GetElementPtrInst>(I))
2539 return true;
2540
2541 if (const CallInst *CI = dyn_cast<CallInst>(I))
2542 if (const Function *F = CI->getCalledFunction())
Dan Gohmane6e001f2008-01-31 01:05:10 +00002543 return canConstantFoldCallTo(F);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002544 return false;
2545}
2546
2547/// getConstantEvolvingPHI - Given an LLVM value and a loop, return a PHI node
2548/// in the loop that V is derived from. We allow arbitrary operations along the
2549/// way, but the operands of an operation must either be constants or a value
2550/// derived from a constant PHI. If this expression does not fit with these
2551/// constraints, return null.
2552static PHINode *getConstantEvolvingPHI(Value *V, const Loop *L) {
2553 // If this is not an instruction, or if this is an instruction outside of the
2554 // loop, it can't be derived from a loop PHI.
2555 Instruction *I = dyn_cast<Instruction>(V);
2556 if (I == 0 || !L->contains(I->getParent())) return 0;
2557
Anton Korobeynikov357a27d2008-02-20 11:08:44 +00002558 if (PHINode *PN = dyn_cast<PHINode>(I)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002559 if (L->getHeader() == I->getParent())
2560 return PN;
2561 else
2562 // We don't currently keep track of the control flow needed to evaluate
2563 // PHIs, so we cannot handle PHIs inside of loops.
2564 return 0;
Anton Korobeynikov357a27d2008-02-20 11:08:44 +00002565 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002566
2567 // If we won't be able to constant fold this expression even if the operands
2568 // are constants, return early.
2569 if (!CanConstantFold(I)) return 0;
2570
2571 // Otherwise, we can evaluate this instruction if all of its operands are
2572 // constant or derived from a PHI node themselves.
2573 PHINode *PHI = 0;
2574 for (unsigned Op = 0, e = I->getNumOperands(); Op != e; ++Op)
2575 if (!(isa<Constant>(I->getOperand(Op)) ||
2576 isa<GlobalValue>(I->getOperand(Op)))) {
2577 PHINode *P = getConstantEvolvingPHI(I->getOperand(Op), L);
2578 if (P == 0) return 0; // Not evolving from PHI
2579 if (PHI == 0)
2580 PHI = P;
2581 else if (PHI != P)
2582 return 0; // Evolving from multiple different PHIs.
2583 }
2584
2585 // This is a expression evolving from a constant PHI!
2586 return PHI;
2587}
2588
2589/// EvaluateExpression - Given an expression that passes the
2590/// getConstantEvolvingPHI predicate, evaluate its value assuming the PHI node
2591/// in the loop has the value PHIVal. If we can't fold this expression for some
2592/// reason, return null.
2593static Constant *EvaluateExpression(Value *V, Constant *PHIVal) {
2594 if (isa<PHINode>(V)) return PHIVal;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002595 if (Constant *C = dyn_cast<Constant>(V)) return C;
Dan Gohman01c2ee72009-04-16 03:18:22 +00002596 if (GlobalValue *GV = dyn_cast<GlobalValue>(V)) return GV;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002597 Instruction *I = cast<Instruction>(V);
2598
2599 std::vector<Constant*> Operands;
2600 Operands.resize(I->getNumOperands());
2601
2602 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) {
2603 Operands[i] = EvaluateExpression(I->getOperand(i), PHIVal);
2604 if (Operands[i] == 0) return 0;
2605 }
2606
Chris Lattnerd6e56912007-12-10 22:53:04 +00002607 if (const CmpInst *CI = dyn_cast<CmpInst>(I))
2608 return ConstantFoldCompareInstOperands(CI->getPredicate(),
2609 &Operands[0], Operands.size());
2610 else
2611 return ConstantFoldInstOperands(I->getOpcode(), I->getType(),
2612 &Operands[0], Operands.size());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002613}
2614
2615/// getConstantEvolutionLoopExitValue - If we know that the specified Phi is
2616/// in the header of its containing loop, we know the loop executes a
2617/// constant number of times, and the PHI node is just a recurrence
2618/// involving constants, fold it.
Dan Gohmanffd36ba2009-04-21 23:15:49 +00002619Constant *ScalarEvolution::
Dan Gohman76d5a0d2009-02-24 18:55:53 +00002620getConstantEvolutionLoopExitValue(PHINode *PN, const APInt& BEs, const Loop *L){
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002621 std::map<PHINode*, Constant*>::iterator I =
2622 ConstantEvolutionLoopExitValue.find(PN);
2623 if (I != ConstantEvolutionLoopExitValue.end())
2624 return I->second;
2625
Dan Gohman76d5a0d2009-02-24 18:55:53 +00002626 if (BEs.ugt(APInt(BEs.getBitWidth(),MaxBruteForceIterations)))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002627 return ConstantEvolutionLoopExitValue[PN] = 0; // Not going to evaluate it.
2628
2629 Constant *&RetVal = ConstantEvolutionLoopExitValue[PN];
2630
2631 // Since the loop is canonicalized, the PHI node must have two entries. One
2632 // entry must be a constant (coming in from outside of the loop), and the
2633 // second must be derived from the same PHI.
2634 bool SecondIsBackedge = L->contains(PN->getIncomingBlock(1));
2635 Constant *StartCST =
2636 dyn_cast<Constant>(PN->getIncomingValue(!SecondIsBackedge));
2637 if (StartCST == 0)
2638 return RetVal = 0; // Must be a constant.
2639
2640 Value *BEValue = PN->getIncomingValue(SecondIsBackedge);
2641 PHINode *PN2 = getConstantEvolvingPHI(BEValue, L);
2642 if (PN2 != PN)
2643 return RetVal = 0; // Not derived from same PHI.
2644
2645 // Execute the loop symbolically to determine the exit value.
Dan Gohman76d5a0d2009-02-24 18:55:53 +00002646 if (BEs.getActiveBits() >= 32)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002647 return RetVal = 0; // More than 2^32-1 iterations?? Not doing it!
2648
Dan Gohman76d5a0d2009-02-24 18:55:53 +00002649 unsigned NumIterations = BEs.getZExtValue(); // must be in range
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002650 unsigned IterationNum = 0;
2651 for (Constant *PHIVal = StartCST; ; ++IterationNum) {
2652 if (IterationNum == NumIterations)
2653 return RetVal = PHIVal; // Got exit value!
2654
2655 // Compute the value of the PHI node for the next iteration.
2656 Constant *NextPHI = EvaluateExpression(BEValue, PHIVal);
2657 if (NextPHI == PHIVal)
2658 return RetVal = NextPHI; // Stopped evolving!
2659 if (NextPHI == 0)
2660 return 0; // Couldn't evaluate!
2661 PHIVal = NextPHI;
2662 }
2663}
2664
Dan Gohman76d5a0d2009-02-24 18:55:53 +00002665/// ComputeBackedgeTakenCountExhaustively - If the trip is known to execute a
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002666/// constant number of times (the condition evolves only from constants),
2667/// try to evaluate a few iterations of the loop until we get the exit
2668/// condition gets a value of ExitWhen (true or false). If we cannot
2669/// evaluate the trip count of the loop, return UnknownValue.
Dan Gohmanffd36ba2009-04-21 23:15:49 +00002670SCEVHandle ScalarEvolution::
Dan Gohman76d5a0d2009-02-24 18:55:53 +00002671ComputeBackedgeTakenCountExhaustively(const Loop *L, Value *Cond, bool ExitWhen) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002672 PHINode *PN = getConstantEvolvingPHI(Cond, L);
2673 if (PN == 0) return UnknownValue;
2674
2675 // Since the loop is canonicalized, the PHI node must have two entries. One
2676 // entry must be a constant (coming in from outside of the loop), and the
2677 // second must be derived from the same PHI.
2678 bool SecondIsBackedge = L->contains(PN->getIncomingBlock(1));
2679 Constant *StartCST =
2680 dyn_cast<Constant>(PN->getIncomingValue(!SecondIsBackedge));
2681 if (StartCST == 0) return UnknownValue; // Must be a constant.
2682
2683 Value *BEValue = PN->getIncomingValue(SecondIsBackedge);
2684 PHINode *PN2 = getConstantEvolvingPHI(BEValue, L);
2685 if (PN2 != PN) return UnknownValue; // Not derived from same PHI.
2686
2687 // Okay, we find a PHI node that defines the trip count of this loop. Execute
2688 // the loop symbolically to determine when the condition gets a value of
2689 // "ExitWhen".
2690 unsigned IterationNum = 0;
2691 unsigned MaxIterations = MaxBruteForceIterations; // Limit analysis.
2692 for (Constant *PHIVal = StartCST;
2693 IterationNum != MaxIterations; ++IterationNum) {
2694 ConstantInt *CondVal =
2695 dyn_cast_or_null<ConstantInt>(EvaluateExpression(Cond, PHIVal));
2696
2697 // Couldn't symbolically evaluate.
2698 if (!CondVal) return UnknownValue;
2699
2700 if (CondVal->getValue() == uint64_t(ExitWhen)) {
2701 ConstantEvolutionLoopExitValue[PN] = PHIVal;
2702 ++NumBruteForceTripCountsComputed;
Dan Gohmanffd36ba2009-04-21 23:15:49 +00002703 return getConstant(ConstantInt::get(Type::Int32Ty, IterationNum));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002704 }
2705
2706 // Compute the value of the PHI node for the next iteration.
2707 Constant *NextPHI = EvaluateExpression(BEValue, PHIVal);
2708 if (NextPHI == 0 || NextPHI == PHIVal)
2709 return UnknownValue; // Couldn't evaluate or not making progress...
2710 PHIVal = NextPHI;
2711 }
2712
2713 // Too many iterations were needed to evaluate.
2714 return UnknownValue;
2715}
2716
2717/// getSCEVAtScope - Compute the value of the specified expression within the
2718/// indicated loop (which may be null to indicate in no loop). If the
2719/// expression cannot be evaluated, return UnknownValue.
Dan Gohmanbff6b582009-05-04 22:30:44 +00002720SCEVHandle ScalarEvolution::getSCEVAtScope(const SCEV *V, const Loop *L) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002721 // FIXME: this should be turned into a virtual method on SCEV!
2722
2723 if (isa<SCEVConstant>(V)) return V;
2724
Nick Lewyckye7a24ff2008-02-20 06:48:22 +00002725 // If this instruction is evolved from a constant-evolving PHI, compute the
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002726 // exit value from the loop without using SCEVs.
Dan Gohmanc76b5452009-05-04 22:02:23 +00002727 if (const SCEVUnknown *SU = dyn_cast<SCEVUnknown>(V)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002728 if (Instruction *I = dyn_cast<Instruction>(SU->getValue())) {
Dan Gohmanffd36ba2009-04-21 23:15:49 +00002729 const Loop *LI = (*this->LI)[I->getParent()];
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002730 if (LI && LI->getParentLoop() == L) // Looking for loop exit value.
2731 if (PHINode *PN = dyn_cast<PHINode>(I))
2732 if (PN->getParent() == LI->getHeader()) {
2733 // Okay, there is no closed form solution for the PHI node. Check
Dan Gohman76d5a0d2009-02-24 18:55:53 +00002734 // to see if the loop that contains it has a known backedge-taken
2735 // count. If so, we may be able to force computation of the exit
2736 // value.
2737 SCEVHandle BackedgeTakenCount = getBackedgeTakenCount(LI);
Dan Gohmanc76b5452009-05-04 22:02:23 +00002738 if (const SCEVConstant *BTCC =
Dan Gohman76d5a0d2009-02-24 18:55:53 +00002739 dyn_cast<SCEVConstant>(BackedgeTakenCount)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002740 // Okay, we know how many times the containing loop executes. If
2741 // this is a constant evolving PHI node, get the final value at
2742 // the specified iteration number.
2743 Constant *RV = getConstantEvolutionLoopExitValue(PN,
Dan Gohman76d5a0d2009-02-24 18:55:53 +00002744 BTCC->getValue()->getValue(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002745 LI);
Dan Gohmanffd36ba2009-04-21 23:15:49 +00002746 if (RV) return getUnknown(RV);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002747 }
2748 }
2749
2750 // Okay, this is an expression that we cannot symbolically evaluate
2751 // into a SCEV. Check to see if it's possible to symbolically evaluate
2752 // the arguments into constants, and if so, try to constant propagate the
2753 // result. This is particularly useful for computing loop exit values.
2754 if (CanConstantFold(I)) {
2755 std::vector<Constant*> Operands;
2756 Operands.reserve(I->getNumOperands());
2757 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) {
2758 Value *Op = I->getOperand(i);
2759 if (Constant *C = dyn_cast<Constant>(Op)) {
2760 Operands.push_back(C);
2761 } else {
Chris Lattner3fff4642007-11-23 08:46:22 +00002762 // If any of the operands is non-constant and if they are
Dan Gohman01c2ee72009-04-16 03:18:22 +00002763 // non-integer and non-pointer, don't even try to analyze them
2764 // with scev techniques.
Dan Gohman5e4eb762009-04-30 16:40:30 +00002765 if (!isSCEVable(Op->getType()))
Chris Lattner3fff4642007-11-23 08:46:22 +00002766 return V;
Dan Gohman01c2ee72009-04-16 03:18:22 +00002767
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002768 SCEVHandle OpV = getSCEVAtScope(getSCEV(Op), L);
Dan Gohmanc76b5452009-05-04 22:02:23 +00002769 if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(OpV)) {
Dan Gohman5e4eb762009-04-30 16:40:30 +00002770 Constant *C = SC->getValue();
2771 if (C->getType() != Op->getType())
2772 C = ConstantExpr::getCast(CastInst::getCastOpcode(C, false,
2773 Op->getType(),
2774 false),
2775 C, Op->getType());
2776 Operands.push_back(C);
Dan Gohmanc76b5452009-05-04 22:02:23 +00002777 } else if (const SCEVUnknown *SU = dyn_cast<SCEVUnknown>(OpV)) {
Dan Gohman5e4eb762009-04-30 16:40:30 +00002778 if (Constant *C = dyn_cast<Constant>(SU->getValue())) {
2779 if (C->getType() != Op->getType())
2780 C =
2781 ConstantExpr::getCast(CastInst::getCastOpcode(C, false,
2782 Op->getType(),
2783 false),
2784 C, Op->getType());
2785 Operands.push_back(C);
2786 } else
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002787 return V;
2788 } else {
2789 return V;
2790 }
2791 }
2792 }
Chris Lattnerd6e56912007-12-10 22:53:04 +00002793
2794 Constant *C;
2795 if (const CmpInst *CI = dyn_cast<CmpInst>(I))
2796 C = ConstantFoldCompareInstOperands(CI->getPredicate(),
2797 &Operands[0], Operands.size());
2798 else
2799 C = ConstantFoldInstOperands(I->getOpcode(), I->getType(),
2800 &Operands[0], Operands.size());
Dan Gohmanffd36ba2009-04-21 23:15:49 +00002801 return getUnknown(C);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002802 }
2803 }
2804
2805 // This is some other type of SCEVUnknown, just return it.
2806 return V;
2807 }
2808
Dan Gohmanc76b5452009-05-04 22:02:23 +00002809 if (const SCEVCommutativeExpr *Comm = dyn_cast<SCEVCommutativeExpr>(V)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002810 // Avoid performing the look-up in the common case where the specified
2811 // expression has no loop-variant portions.
2812 for (unsigned i = 0, e = Comm->getNumOperands(); i != e; ++i) {
2813 SCEVHandle OpAtScope = getSCEVAtScope(Comm->getOperand(i), L);
2814 if (OpAtScope != Comm->getOperand(i)) {
2815 if (OpAtScope == UnknownValue) return UnknownValue;
2816 // Okay, at least one of these operands is loop variant but might be
2817 // foldable. Build a new instance of the folded commutative expression.
2818 std::vector<SCEVHandle> NewOps(Comm->op_begin(), Comm->op_begin()+i);
2819 NewOps.push_back(OpAtScope);
2820
2821 for (++i; i != e; ++i) {
2822 OpAtScope = getSCEVAtScope(Comm->getOperand(i), L);
2823 if (OpAtScope == UnknownValue) return UnknownValue;
2824 NewOps.push_back(OpAtScope);
2825 }
2826 if (isa<SCEVAddExpr>(Comm))
Dan Gohmanffd36ba2009-04-21 23:15:49 +00002827 return getAddExpr(NewOps);
Nick Lewycky711640a2007-11-25 22:41:31 +00002828 if (isa<SCEVMulExpr>(Comm))
Dan Gohmanffd36ba2009-04-21 23:15:49 +00002829 return getMulExpr(NewOps);
Nick Lewycky711640a2007-11-25 22:41:31 +00002830 if (isa<SCEVSMaxExpr>(Comm))
Dan Gohmanffd36ba2009-04-21 23:15:49 +00002831 return getSMaxExpr(NewOps);
Nick Lewyckye7a24ff2008-02-20 06:48:22 +00002832 if (isa<SCEVUMaxExpr>(Comm))
Dan Gohmanffd36ba2009-04-21 23:15:49 +00002833 return getUMaxExpr(NewOps);
Nick Lewycky711640a2007-11-25 22:41:31 +00002834 assert(0 && "Unknown commutative SCEV type!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002835 }
2836 }
2837 // If we got here, all operands are loop invariant.
2838 return Comm;
2839 }
2840
Dan Gohmanc76b5452009-05-04 22:02:23 +00002841 if (const SCEVUDivExpr *Div = dyn_cast<SCEVUDivExpr>(V)) {
Nick Lewycky35b56022009-01-13 09:18:58 +00002842 SCEVHandle LHS = getSCEVAtScope(Div->getLHS(), L);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002843 if (LHS == UnknownValue) return LHS;
Nick Lewycky35b56022009-01-13 09:18:58 +00002844 SCEVHandle RHS = getSCEVAtScope(Div->getRHS(), L);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002845 if (RHS == UnknownValue) return RHS;
Nick Lewycky35b56022009-01-13 09:18:58 +00002846 if (LHS == Div->getLHS() && RHS == Div->getRHS())
2847 return Div; // must be loop invariant
Dan Gohmanffd36ba2009-04-21 23:15:49 +00002848 return getUDivExpr(LHS, RHS);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002849 }
2850
2851 // If this is a loop recurrence for a loop that does not contain L, then we
2852 // are dealing with the final value computed by the loop.
Dan Gohmanc76b5452009-05-04 22:02:23 +00002853 if (const SCEVAddRecExpr *AddRec = dyn_cast<SCEVAddRecExpr>(V)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002854 if (!L || !AddRec->getLoop()->contains(L->getHeader())) {
2855 // To evaluate this recurrence, we need to know how many times the AddRec
2856 // loop iterates. Compute this now.
Dan Gohman76d5a0d2009-02-24 18:55:53 +00002857 SCEVHandle BackedgeTakenCount = getBackedgeTakenCount(AddRec->getLoop());
2858 if (BackedgeTakenCount == UnknownValue) return UnknownValue;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002859
Eli Friedman7489ec92008-08-04 23:49:06 +00002860 // Then, evaluate the AddRec.
Dan Gohmanffd36ba2009-04-21 23:15:49 +00002861 return AddRec->evaluateAtIteration(BackedgeTakenCount, *this);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002862 }
2863 return UnknownValue;
2864 }
2865
Dan Gohmanc76b5452009-05-04 22:02:23 +00002866 if (const SCEVZeroExtendExpr *Cast = dyn_cast<SCEVZeroExtendExpr>(V)) {
Dan Gohman78d63c82009-04-29 22:29:01 +00002867 SCEVHandle Op = getSCEVAtScope(Cast->getOperand(), L);
2868 if (Op == UnknownValue) return Op;
2869 if (Op == Cast->getOperand())
2870 return Cast; // must be loop invariant
2871 return getZeroExtendExpr(Op, Cast->getType());
2872 }
2873
Dan Gohmanc76b5452009-05-04 22:02:23 +00002874 if (const SCEVSignExtendExpr *Cast = dyn_cast<SCEVSignExtendExpr>(V)) {
Dan Gohman78d63c82009-04-29 22:29:01 +00002875 SCEVHandle Op = getSCEVAtScope(Cast->getOperand(), L);
2876 if (Op == UnknownValue) return Op;
2877 if (Op == Cast->getOperand())
2878 return Cast; // must be loop invariant
2879 return getSignExtendExpr(Op, Cast->getType());
2880 }
2881
Dan Gohmanc76b5452009-05-04 22:02:23 +00002882 if (const SCEVTruncateExpr *Cast = dyn_cast<SCEVTruncateExpr>(V)) {
Dan Gohman78d63c82009-04-29 22:29:01 +00002883 SCEVHandle Op = getSCEVAtScope(Cast->getOperand(), L);
2884 if (Op == UnknownValue) return Op;
2885 if (Op == Cast->getOperand())
2886 return Cast; // must be loop invariant
2887 return getTruncateExpr(Op, Cast->getType());
2888 }
2889
2890 assert(0 && "Unknown SCEV type!");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002891}
2892
Dan Gohmanffd36ba2009-04-21 23:15:49 +00002893/// getSCEVAtScope - Return a SCEV expression handle for the specified value
2894/// at the specified scope in the program. The L value specifies a loop
2895/// nest to evaluate the expression at, where null is the top-level or a
2896/// specified loop is immediately inside of the loop.
2897///
2898/// This method can be used to compute the exit value for a variable defined
2899/// in a loop by querying what the value will hold in the parent loop.
2900///
2901/// If this value is not computable at this scope, a SCEVCouldNotCompute
2902/// object is returned.
2903SCEVHandle ScalarEvolution::getSCEVAtScope(Value *V, const Loop *L) {
2904 return getSCEVAtScope(getSCEV(V), L);
2905}
2906
Wojciech Matyjewicz961b34c2008-07-20 15:55:14 +00002907/// SolveLinEquationWithOverflow - Finds the minimum unsigned root of the
2908/// following equation:
2909///
2910/// A * X = B (mod N)
2911///
2912/// where N = 2^BW and BW is the common bit width of A and B. The signedness of
2913/// A and B isn't important.
2914///
2915/// If the equation does not have a solution, SCEVCouldNotCompute is returned.
2916static SCEVHandle SolveLinEquationWithOverflow(const APInt &A, const APInt &B,
2917 ScalarEvolution &SE) {
2918 uint32_t BW = A.getBitWidth();
2919 assert(BW == B.getBitWidth() && "Bit widths must be the same.");
2920 assert(A != 0 && "A must be non-zero.");
2921
2922 // 1. D = gcd(A, N)
2923 //
2924 // The gcd of A and N may have only one prime factor: 2. The number of
2925 // trailing zeros in A is its multiplicity
2926 uint32_t Mult2 = A.countTrailingZeros();
2927 // D = 2^Mult2
2928
2929 // 2. Check if B is divisible by D.
2930 //
2931 // B is divisible by D if and only if the multiplicity of prime factor 2 for B
2932 // is not less than multiplicity of this prime factor for D.
2933 if (B.countTrailingZeros() < Mult2)
Dan Gohman0ad08b02009-04-18 17:58:19 +00002934 return SE.getCouldNotCompute();
Wojciech Matyjewicz961b34c2008-07-20 15:55:14 +00002935
2936 // 3. Compute I: the multiplicative inverse of (A / D) in arithmetic
2937 // modulo (N / D).
2938 //
2939 // (N / D) may need BW+1 bits in its representation. Hence, we'll use this
2940 // bit width during computations.
2941 APInt AD = A.lshr(Mult2).zext(BW + 1); // AD = A / D
2942 APInt Mod(BW + 1, 0);
2943 Mod.set(BW - Mult2); // Mod = N / D
2944 APInt I = AD.multiplicativeInverse(Mod);
2945
2946 // 4. Compute the minimum unsigned root of the equation:
2947 // I * (B / D) mod (N / D)
2948 APInt Result = (I * B.lshr(Mult2).zext(BW + 1)).urem(Mod);
2949
2950 // The result is guaranteed to be less than 2^BW so we may truncate it to BW
2951 // bits.
2952 return SE.getConstant(Result.trunc(BW));
2953}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002954
2955/// SolveQuadraticEquation - Find the roots of the quadratic equation for the
2956/// given quadratic chrec {L,+,M,+,N}. This returns either the two roots (which
2957/// might be the same) or two SCEVCouldNotCompute objects.
2958///
2959static std::pair<SCEVHandle,SCEVHandle>
Dan Gohman89f85052007-10-22 18:31:58 +00002960SolveQuadraticEquation(const SCEVAddRecExpr *AddRec, ScalarEvolution &SE) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002961 assert(AddRec->getNumOperands() == 3 && "This is not a quadratic chrec!");
Dan Gohmanbff6b582009-05-04 22:30:44 +00002962 const SCEVConstant *LC = dyn_cast<SCEVConstant>(AddRec->getOperand(0));
2963 const SCEVConstant *MC = dyn_cast<SCEVConstant>(AddRec->getOperand(1));
2964 const SCEVConstant *NC = dyn_cast<SCEVConstant>(AddRec->getOperand(2));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002965
2966 // We currently can only solve this if the coefficients are constants.
2967 if (!LC || !MC || !NC) {
Dan Gohmanbff6b582009-05-04 22:30:44 +00002968 const SCEV *CNC = SE.getCouldNotCompute();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002969 return std::make_pair(CNC, CNC);
2970 }
2971
2972 uint32_t BitWidth = LC->getValue()->getValue().getBitWidth();
2973 const APInt &L = LC->getValue()->getValue();
2974 const APInt &M = MC->getValue()->getValue();
2975 const APInt &N = NC->getValue()->getValue();
2976 APInt Two(BitWidth, 2);
2977 APInt Four(BitWidth, 4);
2978
2979 {
2980 using namespace APIntOps;
2981 const APInt& C = L;
2982 // Convert from chrec coefficients to polynomial coefficients AX^2+BX+C
2983 // The B coefficient is M-N/2
2984 APInt B(M);
2985 B -= sdiv(N,Two);
2986
2987 // The A coefficient is N/2
2988 APInt A(N.sdiv(Two));
2989
2990 // Compute the B^2-4ac term.
2991 APInt SqrtTerm(B);
2992 SqrtTerm *= B;
2993 SqrtTerm -= Four * (A * C);
2994
2995 // Compute sqrt(B^2-4ac). This is guaranteed to be the nearest
2996 // integer value or else APInt::sqrt() will assert.
2997 APInt SqrtVal(SqrtTerm.sqrt());
2998
2999 // Compute the two solutions for the quadratic formula.
3000 // The divisions must be performed as signed divisions.
3001 APInt NegB(-B);
3002 APInt TwoA( A << 1 );
Nick Lewycky35776692008-11-03 02:43:49 +00003003 if (TwoA.isMinValue()) {
Dan Gohmanbff6b582009-05-04 22:30:44 +00003004 const SCEV *CNC = SE.getCouldNotCompute();
Nick Lewycky35776692008-11-03 02:43:49 +00003005 return std::make_pair(CNC, CNC);
3006 }
3007
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003008 ConstantInt *Solution1 = ConstantInt::get((NegB + SqrtVal).sdiv(TwoA));
3009 ConstantInt *Solution2 = ConstantInt::get((NegB - SqrtVal).sdiv(TwoA));
3010
Dan Gohman89f85052007-10-22 18:31:58 +00003011 return std::make_pair(SE.getConstant(Solution1),
3012 SE.getConstant(Solution2));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003013 } // end APIntOps namespace
3014}
3015
3016/// HowFarToZero - Return the number of times a backedge comparing the specified
3017/// value to zero will execute. If not computable, return UnknownValue
Dan Gohmanbff6b582009-05-04 22:30:44 +00003018SCEVHandle ScalarEvolution::HowFarToZero(const SCEV *V, const Loop *L) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003019 // If the value is a constant
Dan Gohmanc76b5452009-05-04 22:02:23 +00003020 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(V)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003021 // If the value is already zero, the branch will execute zero times.
3022 if (C->getValue()->isZero()) return C;
3023 return UnknownValue; // Otherwise it will loop infinitely.
3024 }
3025
Dan Gohmanbff6b582009-05-04 22:30:44 +00003026 const SCEVAddRecExpr *AddRec = dyn_cast<SCEVAddRecExpr>(V);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003027 if (!AddRec || AddRec->getLoop() != L)
3028 return UnknownValue;
3029
3030 if (AddRec->isAffine()) {
Wojciech Matyjewicz961b34c2008-07-20 15:55:14 +00003031 // If this is an affine expression, the execution count of this branch is
3032 // the minimum unsigned root of the following equation:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003033 //
Wojciech Matyjewicz961b34c2008-07-20 15:55:14 +00003034 // Start + Step*N = 0 (mod 2^BW)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003035 //
Wojciech Matyjewicz961b34c2008-07-20 15:55:14 +00003036 // equivalent to:
3037 //
3038 // Step*N = -Start (mod 2^BW)
3039 //
3040 // where BW is the common bit width of Start and Step.
3041
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003042 // Get the initial value for the loop.
3043 SCEVHandle Start = getSCEVAtScope(AddRec->getStart(), L->getParentLoop());
3044 if (isa<SCEVCouldNotCompute>(Start)) return UnknownValue;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003045
Wojciech Matyjewicz961b34c2008-07-20 15:55:14 +00003046 SCEVHandle Step = getSCEVAtScope(AddRec->getOperand(1), L->getParentLoop());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003047
Dan Gohmanc76b5452009-05-04 22:02:23 +00003048 if (const SCEVConstant *StepC = dyn_cast<SCEVConstant>(Step)) {
Wojciech Matyjewicz961b34c2008-07-20 15:55:14 +00003049 // For now we handle only constant steps.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003050
Wojciech Matyjewicz961b34c2008-07-20 15:55:14 +00003051 // First, handle unitary steps.
3052 if (StepC->getValue()->equalsInt(1)) // 1*N = -Start (mod 2^BW), so:
Dan Gohmanffd36ba2009-04-21 23:15:49 +00003053 return getNegativeSCEV(Start); // N = -Start (as unsigned)
Wojciech Matyjewicz961b34c2008-07-20 15:55:14 +00003054 if (StepC->getValue()->isAllOnesValue()) // -1*N = -Start (mod 2^BW), so:
3055 return Start; // N = Start (as unsigned)
3056
3057 // Then, try to solve the above equation provided that Start is constant.
Dan Gohmanc76b5452009-05-04 22:02:23 +00003058 if (const SCEVConstant *StartC = dyn_cast<SCEVConstant>(Start))
Wojciech Matyjewicz961b34c2008-07-20 15:55:14 +00003059 return SolveLinEquationWithOverflow(StepC->getValue()->getValue(),
Dan Gohmanffd36ba2009-04-21 23:15:49 +00003060 -StartC->getValue()->getValue(),
3061 *this);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003062 }
3063 } else if (AddRec->isQuadratic() && AddRec->getType()->isInteger()) {
3064 // If this is a quadratic (3-term) AddRec {L,+,M,+,N}, find the roots of
3065 // the quadratic equation to solve it.
Dan Gohmanffd36ba2009-04-21 23:15:49 +00003066 std::pair<SCEVHandle,SCEVHandle> Roots = SolveQuadraticEquation(AddRec,
3067 *this);
Dan Gohmanbff6b582009-05-04 22:30:44 +00003068 const SCEVConstant *R1 = dyn_cast<SCEVConstant>(Roots.first);
3069 const SCEVConstant *R2 = dyn_cast<SCEVConstant>(Roots.second);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003070 if (R1) {
3071#if 0
Dan Gohman13058cc2009-04-21 00:47:46 +00003072 errs() << "HFTZ: " << *V << " - sol#1: " << *R1
3073 << " sol#2: " << *R2 << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003074#endif
3075 // Pick the smallest positive root value.
3076 if (ConstantInt *CB =
3077 dyn_cast<ConstantInt>(ConstantExpr::getICmp(ICmpInst::ICMP_ULT,
3078 R1->getValue(), R2->getValue()))) {
3079 if (CB->getZExtValue() == false)
3080 std::swap(R1, R2); // R1 is the minimum root now.
3081
3082 // We can only use this value if the chrec ends up with an exact zero
3083 // value at this index. When solving for "X*X != 5", for example, we
3084 // should not accept a root of 2.
Dan Gohmanffd36ba2009-04-21 23:15:49 +00003085 SCEVHandle Val = AddRec->evaluateAtIteration(R1, *this);
Dan Gohman7b560c42008-06-18 16:23:07 +00003086 if (Val->isZero())
3087 return R1; // We found a quadratic root!
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003088 }
3089 }
3090 }
3091
3092 return UnknownValue;
3093}
3094
3095/// HowFarToNonZero - Return the number of times a backedge checking the
3096/// specified value for nonzero will execute. If not computable, return
3097/// UnknownValue
Dan Gohmanbff6b582009-05-04 22:30:44 +00003098SCEVHandle ScalarEvolution::HowFarToNonZero(const SCEV *V, const Loop *L) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003099 // Loops that look like: while (X == 0) are very strange indeed. We don't
3100 // handle them yet except for the trivial case. This could be expanded in the
3101 // future as needed.
3102
3103 // If the value is a constant, check to see if it is known to be non-zero
3104 // already. If so, the backedge will execute zero times.
Dan Gohmanc76b5452009-05-04 22:02:23 +00003105 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(V)) {
Nick Lewyckyf6805182008-02-21 09:14:53 +00003106 if (!C->getValue()->isNullValue())
Dan Gohmanffd36ba2009-04-21 23:15:49 +00003107 return getIntegerSCEV(0, C->getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003108 return UnknownValue; // Otherwise it will loop infinitely.
3109 }
3110
3111 // We could implement others, but I really doubt anyone writes loops like
3112 // this, and if they did, they would already be constant folded.
3113 return UnknownValue;
3114}
3115
Dan Gohman1cddf972008-09-15 22:18:04 +00003116/// getPredecessorWithUniqueSuccessorForBB - Return a predecessor of BB
3117/// (which may not be an immediate predecessor) which has exactly one
3118/// successor from which BB is reachable, or null if no such block is
3119/// found.
3120///
3121BasicBlock *
Dan Gohmanffd36ba2009-04-21 23:15:49 +00003122ScalarEvolution::getPredecessorWithUniqueSuccessorForBB(BasicBlock *BB) {
Dan Gohman1116ea72009-04-30 20:48:53 +00003123 // If the block has a unique predecessor, then there is no path from the
3124 // predecessor to the block that does not go through the direct edge
3125 // from the predecessor to the block.
Dan Gohman1cddf972008-09-15 22:18:04 +00003126 if (BasicBlock *Pred = BB->getSinglePredecessor())
3127 return Pred;
3128
3129 // A loop's header is defined to be a block that dominates the loop.
3130 // If the loop has a preheader, it must be a block that has exactly
3131 // one successor that can reach BB. This is slightly more strict
3132 // than necessary, but works if critical edges are split.
Dan Gohmanffd36ba2009-04-21 23:15:49 +00003133 if (Loop *L = LI->getLoopFor(BB))
Dan Gohman1cddf972008-09-15 22:18:04 +00003134 return L->getLoopPreheader();
3135
3136 return 0;
3137}
3138
Dan Gohmancacd2012009-02-12 22:19:27 +00003139/// isLoopGuardedByCond - Test whether entry to the loop is protected by
Dan Gohman1116ea72009-04-30 20:48:53 +00003140/// a conditional between LHS and RHS. This is used to help avoid max
3141/// expressions in loop trip counts.
Dan Gohmanffd36ba2009-04-21 23:15:49 +00003142bool ScalarEvolution::isLoopGuardedByCond(const Loop *L,
Dan Gohman1116ea72009-04-30 20:48:53 +00003143 ICmpInst::Predicate Pred,
Dan Gohmanbff6b582009-05-04 22:30:44 +00003144 const SCEV *LHS, const SCEV *RHS) {
Nick Lewycky1b020bf2008-07-12 07:41:32 +00003145 BasicBlock *Preheader = L->getLoopPreheader();
3146 BasicBlock *PreheaderDest = L->getHeader();
Nick Lewycky1b020bf2008-07-12 07:41:32 +00003147
Dan Gohmanab678fb2008-08-12 20:17:31 +00003148 // Starting at the preheader, climb up the predecessor chain, as long as
Dan Gohman1cddf972008-09-15 22:18:04 +00003149 // there are predecessors that can be found that have unique successors
3150 // leading to the original header.
3151 for (; Preheader;
3152 PreheaderDest = Preheader,
3153 Preheader = getPredecessorWithUniqueSuccessorForBB(Preheader)) {
Dan Gohmanab678fb2008-08-12 20:17:31 +00003154
3155 BranchInst *LoopEntryPredicate =
Nick Lewycky1b020bf2008-07-12 07:41:32 +00003156 dyn_cast<BranchInst>(Preheader->getTerminator());
Dan Gohmanab678fb2008-08-12 20:17:31 +00003157 if (!LoopEntryPredicate ||
3158 LoopEntryPredicate->isUnconditional())
3159 continue;
3160
3161 ICmpInst *ICI = dyn_cast<ICmpInst>(LoopEntryPredicate->getCondition());
3162 if (!ICI) continue;
3163
3164 // Now that we found a conditional branch that dominates the loop, check to
3165 // see if it is the comparison we are looking for.
3166 Value *PreCondLHS = ICI->getOperand(0);
3167 Value *PreCondRHS = ICI->getOperand(1);
3168 ICmpInst::Predicate Cond;
3169 if (LoopEntryPredicate->getSuccessor(0) == PreheaderDest)
3170 Cond = ICI->getPredicate();
3171 else
3172 Cond = ICI->getInversePredicate();
3173
Dan Gohmancacd2012009-02-12 22:19:27 +00003174 if (Cond == Pred)
3175 ; // An exact match.
3176 else if (!ICmpInst::isTrueWhenEqual(Cond) && Pred == ICmpInst::ICMP_NE)
3177 ; // The actual condition is beyond sufficient.
3178 else
3179 // Check a few special cases.
3180 switch (Cond) {
3181 case ICmpInst::ICMP_UGT:
3182 if (Pred == ICmpInst::ICMP_ULT) {
3183 std::swap(PreCondLHS, PreCondRHS);
3184 Cond = ICmpInst::ICMP_ULT;
3185 break;
3186 }
3187 continue;
3188 case ICmpInst::ICMP_SGT:
3189 if (Pred == ICmpInst::ICMP_SLT) {
3190 std::swap(PreCondLHS, PreCondRHS);
3191 Cond = ICmpInst::ICMP_SLT;
3192 break;
3193 }
3194 continue;
3195 case ICmpInst::ICMP_NE:
3196 // Expressions like (x >u 0) are often canonicalized to (x != 0),
3197 // so check for this case by checking if the NE is comparing against
3198 // a minimum or maximum constant.
3199 if (!ICmpInst::isTrueWhenEqual(Pred))
3200 if (ConstantInt *CI = dyn_cast<ConstantInt>(PreCondRHS)) {
3201 const APInt &A = CI->getValue();
3202 switch (Pred) {
3203 case ICmpInst::ICMP_SLT:
3204 if (A.isMaxSignedValue()) break;
3205 continue;
3206 case ICmpInst::ICMP_SGT:
3207 if (A.isMinSignedValue()) break;
3208 continue;
3209 case ICmpInst::ICMP_ULT:
3210 if (A.isMaxValue()) break;
3211 continue;
3212 case ICmpInst::ICMP_UGT:
3213 if (A.isMinValue()) break;
3214 continue;
3215 default:
3216 continue;
3217 }
3218 Cond = ICmpInst::ICMP_NE;
3219 // NE is symmetric but the original comparison may not be. Swap
3220 // the operands if necessary so that they match below.
3221 if (isa<SCEVConstant>(LHS))
3222 std::swap(PreCondLHS, PreCondRHS);
3223 break;
3224 }
3225 continue;
3226 default:
3227 // We weren't able to reconcile the condition.
3228 continue;
3229 }
Dan Gohmanab678fb2008-08-12 20:17:31 +00003230
3231 if (!PreCondLHS->getType()->isInteger()) continue;
3232
3233 SCEVHandle PreCondLHSSCEV = getSCEV(PreCondLHS);
3234 SCEVHandle PreCondRHSSCEV = getSCEV(PreCondRHS);
3235 if ((LHS == PreCondLHSSCEV && RHS == PreCondRHSSCEV) ||
Dan Gohmanffd36ba2009-04-21 23:15:49 +00003236 (LHS == getNotSCEV(PreCondRHSSCEV) &&
3237 RHS == getNotSCEV(PreCondLHSSCEV)))
Dan Gohmanab678fb2008-08-12 20:17:31 +00003238 return true;
Nick Lewycky1b020bf2008-07-12 07:41:32 +00003239 }
3240
Dan Gohmanab678fb2008-08-12 20:17:31 +00003241 return false;
Nick Lewycky1b020bf2008-07-12 07:41:32 +00003242}
3243
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003244/// HowManyLessThans - Return the number of times a backedge containing the
3245/// specified less-than comparison will execute. If not computable, return
3246/// UnknownValue.
Dan Gohmanf7d3d25542009-04-30 20:47:05 +00003247ScalarEvolution::BackedgeTakenInfo ScalarEvolution::
Dan Gohmanbff6b582009-05-04 22:30:44 +00003248HowManyLessThans(const SCEV *LHS, const SCEV *RHS,
3249 const Loop *L, bool isSigned) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003250 // Only handle: "ADDREC < LoopInvariant".
3251 if (!RHS->isLoopInvariant(L)) return UnknownValue;
3252
Dan Gohmanbff6b582009-05-04 22:30:44 +00003253 const SCEVAddRecExpr *AddRec = dyn_cast<SCEVAddRecExpr>(LHS);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003254 if (!AddRec || AddRec->getLoop() != L)
3255 return UnknownValue;
3256
3257 if (AddRec->isAffine()) {
Nick Lewycky35b56022009-01-13 09:18:58 +00003258 // FORNOW: We only support unit strides.
Dan Gohmanf7d3d25542009-04-30 20:47:05 +00003259 unsigned BitWidth = getTypeSizeInBits(AddRec->getType());
3260 SCEVHandle Step = AddRec->getStepRecurrence(*this);
3261 SCEVHandle NegOne = getIntegerSCEV(-1, AddRec->getType());
3262
3263 // TODO: handle non-constant strides.
3264 const SCEVConstant *CStep = dyn_cast<SCEVConstant>(Step);
3265 if (!CStep || CStep->isZero())
3266 return UnknownValue;
3267 if (CStep->getValue()->getValue() == 1) {
3268 // With unit stride, the iteration never steps past the limit value.
3269 } else if (CStep->getValue()->getValue().isStrictlyPositive()) {
3270 if (const SCEVConstant *CLimit = dyn_cast<SCEVConstant>(RHS)) {
3271 // Test whether a positive iteration iteration can step past the limit
3272 // value and past the maximum value for its type in a single step.
3273 if (isSigned) {
3274 APInt Max = APInt::getSignedMaxValue(BitWidth);
3275 if ((Max - CStep->getValue()->getValue())
3276 .slt(CLimit->getValue()->getValue()))
3277 return UnknownValue;
3278 } else {
3279 APInt Max = APInt::getMaxValue(BitWidth);
3280 if ((Max - CStep->getValue()->getValue())
3281 .ult(CLimit->getValue()->getValue()))
3282 return UnknownValue;
3283 }
3284 } else
3285 // TODO: handle non-constant limit values below.
3286 return UnknownValue;
3287 } else
3288 // TODO: handle negative strides below.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003289 return UnknownValue;
3290
Dan Gohmanf7d3d25542009-04-30 20:47:05 +00003291 // We know the LHS is of the form {n,+,s} and the RHS is some loop-invariant
3292 // m. So, we count the number of iterations in which {n,+,s} < m is true.
3293 // Note that we cannot simply return max(m-n,0)/s because it's not safe to
Wojciech Matyjewicz1377a542008-02-13 12:21:32 +00003294 // treat m-n as signed nor unsigned due to overflow possibility.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003295
Wojciech Matyjewiczebc77b12008-02-13 11:51:34 +00003296 // First, we get the value of the LHS in the first iteration: n
3297 SCEVHandle Start = AddRec->getOperand(0);
3298
Dan Gohmanf7d3d25542009-04-30 20:47:05 +00003299 // Determine the minimum constant start value.
3300 SCEVHandle MinStart = isa<SCEVConstant>(Start) ? Start :
3301 getConstant(isSigned ? APInt::getSignedMinValue(BitWidth) :
3302 APInt::getMinValue(BitWidth));
Wojciech Matyjewiczebc77b12008-02-13 11:51:34 +00003303
Dan Gohmanf7d3d25542009-04-30 20:47:05 +00003304 // If we know that the condition is true in order to enter the loop,
3305 // then we know that it will run exactly (m-n)/s times. Otherwise, we
3306 // only know if will execute (max(m,n)-n)/s times. In both cases, the
3307 // division must round up.
3308 SCEVHandle End = RHS;
3309 if (!isLoopGuardedByCond(L,
3310 isSigned ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT,
3311 getMinusSCEV(Start, Step), RHS))
3312 End = isSigned ? getSMaxExpr(RHS, Start)
3313 : getUMaxExpr(RHS, Start);
3314
3315 // Determine the maximum constant end value.
3316 SCEVHandle MaxEnd = isa<SCEVConstant>(End) ? End :
3317 getConstant(isSigned ? APInt::getSignedMaxValue(BitWidth) :
3318 APInt::getMaxValue(BitWidth));
3319
3320 // Finally, we subtract these two values and divide, rounding up, to get
3321 // the number of times the backedge is executed.
3322 SCEVHandle BECount = getUDivExpr(getAddExpr(getMinusSCEV(End, Start),
3323 getAddExpr(Step, NegOne)),
3324 Step);
3325
3326 // The maximum backedge count is similar, except using the minimum start
3327 // value and the maximum end value.
3328 SCEVHandle MaxBECount = getUDivExpr(getAddExpr(getMinusSCEV(MaxEnd,
3329 MinStart),
3330 getAddExpr(Step, NegOne)),
3331 Step);
3332
3333 return BackedgeTakenInfo(BECount, MaxBECount);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003334 }
3335
3336 return UnknownValue;
3337}
3338
3339/// getNumIterationsInRange - Return the number of iterations of this loop that
3340/// produce values in the specified constant range. Another way of looking at
3341/// this is that it returns the first iteration number where the value is not in
3342/// the condition, thus computing the exit count. If the iteration count can't
3343/// be computed, an instance of SCEVCouldNotCompute is returned.
Dan Gohman89f85052007-10-22 18:31:58 +00003344SCEVHandle SCEVAddRecExpr::getNumIterationsInRange(ConstantRange Range,
3345 ScalarEvolution &SE) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003346 if (Range.isFullSet()) // Infinite loop.
Dan Gohman0ad08b02009-04-18 17:58:19 +00003347 return SE.getCouldNotCompute();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003348
3349 // If the start is a non-zero constant, shift the range to simplify things.
Dan Gohmanc76b5452009-05-04 22:02:23 +00003350 if (const SCEVConstant *SC = dyn_cast<SCEVConstant>(getStart()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003351 if (!SC->getValue()->isZero()) {
3352 std::vector<SCEVHandle> Operands(op_begin(), op_end());
Dan Gohman89f85052007-10-22 18:31:58 +00003353 Operands[0] = SE.getIntegerSCEV(0, SC->getType());
3354 SCEVHandle Shifted = SE.getAddRecExpr(Operands, getLoop());
Dan Gohmanc76b5452009-05-04 22:02:23 +00003355 if (const SCEVAddRecExpr *ShiftedAddRec =
3356 dyn_cast<SCEVAddRecExpr>(Shifted))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003357 return ShiftedAddRec->getNumIterationsInRange(
Dan Gohman89f85052007-10-22 18:31:58 +00003358 Range.subtract(SC->getValue()->getValue()), SE);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003359 // This is strange and shouldn't happen.
Dan Gohman0ad08b02009-04-18 17:58:19 +00003360 return SE.getCouldNotCompute();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003361 }
3362
3363 // The only time we can solve this is when we have all constant indices.
3364 // Otherwise, we cannot determine the overflow conditions.
3365 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
3366 if (!isa<SCEVConstant>(getOperand(i)))
Dan Gohman0ad08b02009-04-18 17:58:19 +00003367 return SE.getCouldNotCompute();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003368
3369
3370 // Okay at this point we know that all elements of the chrec are constants and
3371 // that the start element is zero.
3372
3373 // First check to see if the range contains zero. If not, the first
3374 // iteration exits.
Dan Gohmanb98c1a32009-04-21 01:07:12 +00003375 unsigned BitWidth = SE.getTypeSizeInBits(getType());
Dan Gohman01c2ee72009-04-16 03:18:22 +00003376 if (!Range.contains(APInt(BitWidth, 0)))
Dan Gohman89f85052007-10-22 18:31:58 +00003377 return SE.getConstant(ConstantInt::get(getType(),0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003378
3379 if (isAffine()) {
3380 // If this is an affine expression then we have this situation:
3381 // Solve {0,+,A} in Range === Ax in Range
3382
3383 // We know that zero is in the range. If A is positive then we know that
3384 // the upper value of the range must be the first possible exit value.
3385 // If A is negative then the lower of the range is the last possible loop
3386 // value. Also note that we already checked for a full range.
Dan Gohman01c2ee72009-04-16 03:18:22 +00003387 APInt One(BitWidth,1);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003388 APInt A = cast<SCEVConstant>(getOperand(1))->getValue()->getValue();
3389 APInt End = A.sge(One) ? (Range.getUpper() - One) : Range.getLower();
3390
3391 // The exit value should be (End+A)/A.
Nick Lewyckya0facae2007-09-27 14:12:54 +00003392 APInt ExitVal = (End + A).udiv(A);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003393 ConstantInt *ExitValue = ConstantInt::get(ExitVal);
3394
3395 // Evaluate at the exit value. If we really did fall out of the valid
3396 // range, then we computed our trip count, otherwise wrap around or other
3397 // things must have happened.
Dan Gohman89f85052007-10-22 18:31:58 +00003398 ConstantInt *Val = EvaluateConstantChrecAtConstant(this, ExitValue, SE);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003399 if (Range.contains(Val->getValue()))
Dan Gohman0ad08b02009-04-18 17:58:19 +00003400 return SE.getCouldNotCompute(); // Something strange happened
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003401
3402 // Ensure that the previous value is in the range. This is a sanity check.
3403 assert(Range.contains(
3404 EvaluateConstantChrecAtConstant(this,
Dan Gohman89f85052007-10-22 18:31:58 +00003405 ConstantInt::get(ExitVal - One), SE)->getValue()) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003406 "Linear scev computation is off in a bad way!");
Dan Gohman89f85052007-10-22 18:31:58 +00003407 return SE.getConstant(ExitValue);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003408 } else if (isQuadratic()) {
3409 // If this is a quadratic (3-term) AddRec {L,+,M,+,N}, find the roots of the
3410 // quadratic equation to solve it. To do this, we must frame our problem in
3411 // terms of figuring out when zero is crossed, instead of when
3412 // Range.getUpper() is crossed.
3413 std::vector<SCEVHandle> NewOps(op_begin(), op_end());
Dan Gohman89f85052007-10-22 18:31:58 +00003414 NewOps[0] = SE.getNegativeSCEV(SE.getConstant(Range.getUpper()));
3415 SCEVHandle NewAddRec = SE.getAddRecExpr(NewOps, getLoop());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003416
3417 // Next, solve the constructed addrec
3418 std::pair<SCEVHandle,SCEVHandle> Roots =
Dan Gohman89f85052007-10-22 18:31:58 +00003419 SolveQuadraticEquation(cast<SCEVAddRecExpr>(NewAddRec), SE);
Dan Gohmanbff6b582009-05-04 22:30:44 +00003420 const SCEVConstant *R1 = dyn_cast<SCEVConstant>(Roots.first);
3421 const SCEVConstant *R2 = dyn_cast<SCEVConstant>(Roots.second);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003422 if (R1) {
3423 // Pick the smallest positive root value.
3424 if (ConstantInt *CB =
3425 dyn_cast<ConstantInt>(ConstantExpr::getICmp(ICmpInst::ICMP_ULT,
3426 R1->getValue(), R2->getValue()))) {
3427 if (CB->getZExtValue() == false)
3428 std::swap(R1, R2); // R1 is the minimum root now.
3429
3430 // Make sure the root is not off by one. The returned iteration should
3431 // not be in the range, but the previous one should be. When solving
3432 // for "X*X < 5", for example, we should not return a root of 2.
3433 ConstantInt *R1Val = EvaluateConstantChrecAtConstant(this,
Dan Gohman89f85052007-10-22 18:31:58 +00003434 R1->getValue(),
3435 SE);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003436 if (Range.contains(R1Val->getValue())) {
3437 // The next iteration must be out of the range...
3438 ConstantInt *NextVal = ConstantInt::get(R1->getValue()->getValue()+1);
3439
Dan Gohman89f85052007-10-22 18:31:58 +00003440 R1Val = EvaluateConstantChrecAtConstant(this, NextVal, SE);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003441 if (!Range.contains(R1Val->getValue()))
Dan Gohman89f85052007-10-22 18:31:58 +00003442 return SE.getConstant(NextVal);
Dan Gohman0ad08b02009-04-18 17:58:19 +00003443 return SE.getCouldNotCompute(); // Something strange happened
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003444 }
3445
3446 // If R1 was not in the range, then it is a good return value. Make
3447 // sure that R1-1 WAS in the range though, just in case.
3448 ConstantInt *NextVal = ConstantInt::get(R1->getValue()->getValue()-1);
Dan Gohman89f85052007-10-22 18:31:58 +00003449 R1Val = EvaluateConstantChrecAtConstant(this, NextVal, SE);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003450 if (Range.contains(R1Val->getValue()))
3451 return R1;
Dan Gohman0ad08b02009-04-18 17:58:19 +00003452 return SE.getCouldNotCompute(); // Something strange happened
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003453 }
3454 }
3455 }
3456
Dan Gohman0ad08b02009-04-18 17:58:19 +00003457 return SE.getCouldNotCompute();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003458}
3459
3460
3461
3462//===----------------------------------------------------------------------===//
Dan Gohmanbff6b582009-05-04 22:30:44 +00003463// SCEVCallbackVH Class Implementation
3464//===----------------------------------------------------------------------===//
3465
3466void SCEVCallbackVH::deleted() {
3467 assert(SE && "SCEVCallbackVH called with a non-null ScalarEvolution!");
3468 if (PHINode *PN = dyn_cast<PHINode>(getValPtr()))
3469 SE->ConstantEvolutionLoopExitValue.erase(PN);
3470 SE->Scalars.erase(getValPtr());
3471 // this now dangles!
3472}
3473
3474void SCEVCallbackVH::allUsesReplacedWith(Value *) {
3475 assert(SE && "SCEVCallbackVH called with a non-null ScalarEvolution!");
3476
3477 // Forget all the expressions associated with users of the old value,
3478 // so that future queries will recompute the expressions using the new
3479 // value.
3480 SmallVector<User *, 16> Worklist;
3481 Value *Old = getValPtr();
3482 bool DeleteOld = false;
3483 for (Value::use_iterator UI = Old->use_begin(), UE = Old->use_end();
3484 UI != UE; ++UI)
3485 Worklist.push_back(*UI);
3486 while (!Worklist.empty()) {
3487 User *U = Worklist.pop_back_val();
3488 // Deleting the Old value will cause this to dangle. Postpone
3489 // that until everything else is done.
3490 if (U == Old) {
3491 DeleteOld = true;
3492 continue;
3493 }
3494 if (PHINode *PN = dyn_cast<PHINode>(U))
3495 SE->ConstantEvolutionLoopExitValue.erase(PN);
3496 if (SE->Scalars.erase(U))
3497 for (Value::use_iterator UI = U->use_begin(), UE = U->use_end();
3498 UI != UE; ++UI)
3499 Worklist.push_back(*UI);
3500 }
3501 if (DeleteOld) {
3502 if (PHINode *PN = dyn_cast<PHINode>(Old))
3503 SE->ConstantEvolutionLoopExitValue.erase(PN);
3504 SE->Scalars.erase(Old);
3505 // this now dangles!
3506 }
3507 // this may dangle!
3508}
3509
3510SCEVCallbackVH::SCEVCallbackVH(Value *V, ScalarEvolution *se)
3511 : CallbackVH(V), SE(se) {}
3512
3513//===----------------------------------------------------------------------===//
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003514// ScalarEvolution Class Implementation
3515//===----------------------------------------------------------------------===//
3516
Dan Gohmanffd36ba2009-04-21 23:15:49 +00003517ScalarEvolution::ScalarEvolution()
3518 : FunctionPass(&ID), UnknownValue(new SCEVCouldNotCompute()) {
3519}
3520
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003521bool ScalarEvolution::runOnFunction(Function &F) {
Dan Gohmanffd36ba2009-04-21 23:15:49 +00003522 this->F = &F;
3523 LI = &getAnalysis<LoopInfo>();
3524 TD = getAnalysisIfAvailable<TargetData>();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003525 return false;
3526}
3527
3528void ScalarEvolution::releaseMemory() {
Dan Gohmanffd36ba2009-04-21 23:15:49 +00003529 Scalars.clear();
3530 BackedgeTakenCounts.clear();
3531 ConstantEvolutionLoopExitValue.clear();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003532}
3533
3534void ScalarEvolution::getAnalysisUsage(AnalysisUsage &AU) const {
3535 AU.setPreservesAll();
3536 AU.addRequiredTransitive<LoopInfo>();
Dan Gohman01c2ee72009-04-16 03:18:22 +00003537}
3538
Dan Gohmanffd36ba2009-04-21 23:15:49 +00003539bool ScalarEvolution::hasLoopInvariantBackedgeTakenCount(const Loop *L) {
Dan Gohman76d5a0d2009-02-24 18:55:53 +00003540 return !isa<SCEVCouldNotCompute>(getBackedgeTakenCount(L));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003541}
3542
Dan Gohmanffd36ba2009-04-21 23:15:49 +00003543static void PrintLoopInfo(raw_ostream &OS, ScalarEvolution *SE,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003544 const Loop *L) {
3545 // Print all inner loops first
3546 for (Loop::iterator I = L->begin(), E = L->end(); I != E; ++I)
3547 PrintLoopInfo(OS, SE, *I);
3548
Nick Lewyckye5da1912008-01-02 02:49:20 +00003549 OS << "Loop " << L->getHeader()->getName() << ": ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003550
Devang Patel02451fa2007-08-21 00:31:24 +00003551 SmallVector<BasicBlock*, 8> ExitBlocks;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003552 L->getExitBlocks(ExitBlocks);
3553 if (ExitBlocks.size() != 1)
Nick Lewyckye5da1912008-01-02 02:49:20 +00003554 OS << "<multiple exits> ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003555
Dan Gohman76d5a0d2009-02-24 18:55:53 +00003556 if (SE->hasLoopInvariantBackedgeTakenCount(L)) {
3557 OS << "backedge-taken count is " << *SE->getBackedgeTakenCount(L);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003558 } else {
Dan Gohman76d5a0d2009-02-24 18:55:53 +00003559 OS << "Unpredictable backedge-taken count. ";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003560 }
3561
Nick Lewyckye5da1912008-01-02 02:49:20 +00003562 OS << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003563}
3564
Dan Gohman13058cc2009-04-21 00:47:46 +00003565void ScalarEvolution::print(raw_ostream &OS, const Module* ) const {
Dan Gohmanffd36ba2009-04-21 23:15:49 +00003566 // ScalarEvolution's implementaiton of the print method is to print
3567 // out SCEV values of all instructions that are interesting. Doing
3568 // this potentially causes it to create new SCEV objects though,
3569 // which technically conflicts with the const qualifier. This isn't
3570 // observable from outside the class though (the hasSCEV function
3571 // notwithstanding), so casting away the const isn't dangerous.
3572 ScalarEvolution &SE = *const_cast<ScalarEvolution*>(this);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003573
Dan Gohmanffd36ba2009-04-21 23:15:49 +00003574 OS << "Classifying expressions for: " << F->getName() << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003575 for (inst_iterator I = inst_begin(F), E = inst_end(F); I != E; ++I)
Dan Gohman43d37e92009-04-30 01:30:18 +00003576 if (isSCEVable(I->getType())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003577 OS << *I;
Dan Gohmanabe991f2008-09-14 17:21:12 +00003578 OS << " --> ";
Dan Gohmanffd36ba2009-04-21 23:15:49 +00003579 SCEVHandle SV = SE.getSCEV(&*I);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003580 SV->print(OS);
3581 OS << "\t\t";
3582
Dan Gohmanffd36ba2009-04-21 23:15:49 +00003583 if (const Loop *L = LI->getLoopFor((*I).getParent())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003584 OS << "Exits: ";
Dan Gohmanffd36ba2009-04-21 23:15:49 +00003585 SCEVHandle ExitValue = SE.getSCEVAtScope(&*I, L->getParentLoop());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003586 if (isa<SCEVCouldNotCompute>(ExitValue)) {
3587 OS << "<<Unknown>>";
3588 } else {
3589 OS << *ExitValue;
3590 }
3591 }
3592
3593
3594 OS << "\n";
3595 }
3596
Dan Gohmanffd36ba2009-04-21 23:15:49 +00003597 OS << "Determining loop execution counts for: " << F->getName() << "\n";
3598 for (LoopInfo::iterator I = LI->begin(), E = LI->end(); I != E; ++I)
3599 PrintLoopInfo(OS, &SE, *I);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003600}
Dan Gohman13058cc2009-04-21 00:47:46 +00003601
3602void ScalarEvolution::print(std::ostream &o, const Module *M) const {
3603 raw_os_ostream OS(o);
3604 print(OS, M);
3605}