blob: 56a7ecc32c75a189fb5bec43b2399de2304e5f48 [file] [log] [blame]
Dan Gohman2d1be872009-04-16 03:18:22 +00001//===- LoopStrengthReduce.cpp - Strength Reduce IVs in Loops --------------===//
Misha Brukmanfd939082005-04-21 23:48:37 +00002//
Nate Begemaneaa13852004-10-18 21:08:22 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanfd939082005-04-21 23:48:37 +00007//
Nate Begemaneaa13852004-10-18 21:08:22 +00008//===----------------------------------------------------------------------===//
9//
Dan Gohmancec8f9d2009-05-19 20:37:36 +000010// This transformation analyzes and transforms the induction variables (and
11// computations derived from them) into forms suitable for efficient execution
12// on the target.
13//
Nate Begemaneaa13852004-10-18 21:08:22 +000014// This pass performs a strength reduction on array references inside loops that
Dan Gohmancec8f9d2009-05-19 20:37:36 +000015// have as one or more of their components the loop induction variable, it
16// rewrites expressions to take advantage of scaled-index addressing modes
17// available on the target, and it performs a variety of other optimizations
18// related to loop induction variables.
Nate Begemaneaa13852004-10-18 21:08:22 +000019//
Dan Gohman572645c2010-02-12 10:34:29 +000020// Terminology note: this code has a lot of handling for "post-increment" or
21// "post-inc" users. This is not talking about post-increment addressing modes;
22// it is instead talking about code like this:
23//
24// %i = phi [ 0, %entry ], [ %i.next, %latch ]
25// ...
26// %i.next = add %i, 1
27// %c = icmp eq %i.next, %n
28//
29// The SCEV for %i is {0,+,1}<%L>. The SCEV for %i.next is {1,+,1}<%L>, however
30// it's useful to think about these as the same register, with some uses using
31// the value of the register before the add and some using // it after. In this
32// example, the icmp is a post-increment user, since it uses %i.next, which is
33// the value of the induction variable after the increment. The other common
34// case of post-increment users is users outside the loop.
35//
36// TODO: More sophistication in the way Formulae are generated and filtered.
37//
38// TODO: Handle multiple loops at a time.
39//
40// TODO: Should TargetLowering::AddrMode::BaseGV be changed to a ConstantExpr
41// instead of a GlobalValue?
42//
43// TODO: When truncation is free, truncate ICmp users' operands to make it a
44// smaller encoding (on x86 at least).
45//
46// TODO: When a negated register is used by an add (such as in a list of
47// multiple base registers, or as the increment expression in an addrec),
48// we may not actually need both reg and (-1 * reg) in registers; the
49// negation can be implemented by using a sub instead of an add. The
50// lack of support for taking this into consideration when making
51// register pressure decisions is partly worked around by the "Special"
52// use kind.
53//
Nate Begemaneaa13852004-10-18 21:08:22 +000054//===----------------------------------------------------------------------===//
55
Chris Lattnerbe3e5212005-08-03 23:30:08 +000056#define DEBUG_TYPE "loop-reduce"
Nate Begemaneaa13852004-10-18 21:08:22 +000057#include "llvm/Transforms/Scalar.h"
58#include "llvm/Constants.h"
59#include "llvm/Instructions.h"
Dan Gohmane5b01be2007-05-04 14:59:09 +000060#include "llvm/IntrinsicInst.h"
Jeff Cohen2f3c9b72005-03-04 04:04:26 +000061#include "llvm/DerivedTypes.h"
Dan Gohman81db61a2009-05-12 02:17:14 +000062#include "llvm/Analysis/IVUsers.h"
Dan Gohman572645c2010-02-12 10:34:29 +000063#include "llvm/Analysis/Dominators.h"
Devang Patel0f54dcb2007-03-06 21:14:09 +000064#include "llvm/Analysis/LoopPass.h"
Nate Begeman16997482005-07-30 00:15:07 +000065#include "llvm/Analysis/ScalarEvolutionExpander.h"
Chris Lattnere0391be2005-08-12 22:06:11 +000066#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Nate Begemaneaa13852004-10-18 21:08:22 +000067#include "llvm/Transforms/Utils/Local.h"
Dan Gohman572645c2010-02-12 10:34:29 +000068#include "llvm/ADT/SmallBitVector.h"
69#include "llvm/ADT/SetVector.h"
70#include "llvm/ADT/DenseSet.h"
Nate Begeman16997482005-07-30 00:15:07 +000071#include "llvm/Support/Debug.h"
Dan Gohmanafc36a92009-05-02 18:29:22 +000072#include "llvm/Support/ValueHandle.h"
Daniel Dunbar460f6562009-07-26 09:48:23 +000073#include "llvm/Support/raw_ostream.h"
Evan Chengd277f2c2006-03-13 23:14:23 +000074#include "llvm/Target/TargetLowering.h"
Jeff Cohencfb1d422005-07-30 18:22:27 +000075#include <algorithm>
Nate Begemaneaa13852004-10-18 21:08:22 +000076using namespace llvm;
77
Dan Gohman572645c2010-02-12 10:34:29 +000078namespace {
Nate Begemaneaa13852004-10-18 21:08:22 +000079
Dan Gohman572645c2010-02-12 10:34:29 +000080/// RegSortData - This class holds data which is used to order reuse candidates.
81class RegSortData {
82public:
83 /// UsedByIndices - This represents the set of LSRUse indices which reference
84 /// a particular register.
85 SmallBitVector UsedByIndices;
86
87 RegSortData() {}
88
89 void print(raw_ostream &OS) const;
90 void dump() const;
91};
92
93}
94
95void RegSortData::print(raw_ostream &OS) const {
96 OS << "[NumUses=" << UsedByIndices.count() << ']';
97}
98
99void RegSortData::dump() const {
100 print(errs()); errs() << '\n';
101}
Dan Gohmanc17e0cf2009-02-20 04:17:46 +0000102
Chris Lattner0e5f4992006-12-19 21:40:18 +0000103namespace {
Dale Johannesendc42f482007-03-20 00:47:50 +0000104
Dan Gohman572645c2010-02-12 10:34:29 +0000105/// RegUseTracker - Map register candidates to information about how they are
106/// used.
107class RegUseTracker {
108 typedef DenseMap<const SCEV *, RegSortData> RegUsesTy;
Dale Johannesendc42f482007-03-20 00:47:50 +0000109
Dan Gohman90bb3552010-05-18 22:33:00 +0000110 RegUsesTy RegUsesMap;
Dan Gohman572645c2010-02-12 10:34:29 +0000111 SmallVector<const SCEV *, 16> RegSequence;
Evan Chengd1d6b5c2006-03-16 21:53:05 +0000112
Dan Gohman572645c2010-02-12 10:34:29 +0000113public:
114 void CountRegister(const SCEV *Reg, size_t LUIdx);
Dan Gohmanb2df4332010-05-18 23:42:37 +0000115 void DropRegister(const SCEV *Reg, size_t LUIdx);
Dan Gohmana2086b32010-05-19 23:43:12 +0000116 void DropUse(size_t LUIdx);
Dan Gohmana10756e2010-01-21 02:09:26 +0000117
Dan Gohman572645c2010-02-12 10:34:29 +0000118 bool isRegUsedByUsesOtherThan(const SCEV *Reg, size_t LUIdx) const;
Dan Gohmana10756e2010-01-21 02:09:26 +0000119
Dan Gohman572645c2010-02-12 10:34:29 +0000120 const SmallBitVector &getUsedByIndices(const SCEV *Reg) const;
Dan Gohmana10756e2010-01-21 02:09:26 +0000121
Dan Gohman572645c2010-02-12 10:34:29 +0000122 void clear();
Dan Gohmana10756e2010-01-21 02:09:26 +0000123
Dan Gohman572645c2010-02-12 10:34:29 +0000124 typedef SmallVectorImpl<const SCEV *>::iterator iterator;
125 typedef SmallVectorImpl<const SCEV *>::const_iterator const_iterator;
126 iterator begin() { return RegSequence.begin(); }
127 iterator end() { return RegSequence.end(); }
128 const_iterator begin() const { return RegSequence.begin(); }
129 const_iterator end() const { return RegSequence.end(); }
130};
Dan Gohmana10756e2010-01-21 02:09:26 +0000131
Dan Gohmana10756e2010-01-21 02:09:26 +0000132}
133
Dan Gohman572645c2010-02-12 10:34:29 +0000134void
135RegUseTracker::CountRegister(const SCEV *Reg, size_t LUIdx) {
136 std::pair<RegUsesTy::iterator, bool> Pair =
Dan Gohman90bb3552010-05-18 22:33:00 +0000137 RegUsesMap.insert(std::make_pair(Reg, RegSortData()));
Dan Gohman572645c2010-02-12 10:34:29 +0000138 RegSortData &RSD = Pair.first->second;
139 if (Pair.second)
140 RegSequence.push_back(Reg);
141 RSD.UsedByIndices.resize(std::max(RSD.UsedByIndices.size(), LUIdx + 1));
142 RSD.UsedByIndices.set(LUIdx);
Dan Gohmana10756e2010-01-21 02:09:26 +0000143}
144
Dan Gohmanb2df4332010-05-18 23:42:37 +0000145void
146RegUseTracker::DropRegister(const SCEV *Reg, size_t LUIdx) {
147 RegUsesTy::iterator It = RegUsesMap.find(Reg);
148 assert(It != RegUsesMap.end());
149 RegSortData &RSD = It->second;
150 assert(RSD.UsedByIndices.size() > LUIdx);
151 RSD.UsedByIndices.reset(LUIdx);
152}
153
Dan Gohmana2086b32010-05-19 23:43:12 +0000154void
155RegUseTracker::DropUse(size_t LUIdx) {
156 // Remove the use index from every register's use list.
157 for (RegUsesTy::iterator I = RegUsesMap.begin(), E = RegUsesMap.end();
158 I != E; ++I)
159 I->second.UsedByIndices.reset(LUIdx);
160}
161
Dan Gohman572645c2010-02-12 10:34:29 +0000162bool
163RegUseTracker::isRegUsedByUsesOtherThan(const SCEV *Reg, size_t LUIdx) const {
Dan Gohman46fd7a62010-08-29 15:18:49 +0000164 RegUsesTy::const_iterator I = RegUsesMap.find(Reg);
165 if (I == RegUsesMap.end())
166 return false;
167 const SmallBitVector &UsedByIndices = I->second.UsedByIndices;
Dan Gohman572645c2010-02-12 10:34:29 +0000168 int i = UsedByIndices.find_first();
169 if (i == -1) return false;
170 if ((size_t)i != LUIdx) return true;
171 return UsedByIndices.find_next(i) != -1;
172}
Dan Gohmana10756e2010-01-21 02:09:26 +0000173
Dan Gohman572645c2010-02-12 10:34:29 +0000174const SmallBitVector &RegUseTracker::getUsedByIndices(const SCEV *Reg) const {
Dan Gohman90bb3552010-05-18 22:33:00 +0000175 RegUsesTy::const_iterator I = RegUsesMap.find(Reg);
176 assert(I != RegUsesMap.end() && "Unknown register!");
Dan Gohman572645c2010-02-12 10:34:29 +0000177 return I->second.UsedByIndices;
178}
Dan Gohmana10756e2010-01-21 02:09:26 +0000179
Dan Gohman572645c2010-02-12 10:34:29 +0000180void RegUseTracker::clear() {
Dan Gohman90bb3552010-05-18 22:33:00 +0000181 RegUsesMap.clear();
Dan Gohman572645c2010-02-12 10:34:29 +0000182 RegSequence.clear();
183}
Dan Gohmana10756e2010-01-21 02:09:26 +0000184
Dan Gohman572645c2010-02-12 10:34:29 +0000185namespace {
186
187/// Formula - This class holds information that describes a formula for
188/// computing satisfying a use. It may include broken-out immediates and scaled
189/// registers.
190struct Formula {
191 /// AM - This is used to represent complex addressing, as well as other kinds
192 /// of interesting uses.
193 TargetLowering::AddrMode AM;
194
195 /// BaseRegs - The list of "base" registers for this use. When this is
196 /// non-empty, AM.HasBaseReg should be set to true.
197 SmallVector<const SCEV *, 2> BaseRegs;
198
199 /// ScaledReg - The 'scaled' register for this use. This should be non-null
200 /// when AM.Scale is not zero.
201 const SCEV *ScaledReg;
202
203 Formula() : ScaledReg(0) {}
204
205 void InitialMatch(const SCEV *S, Loop *L,
206 ScalarEvolution &SE, DominatorTree &DT);
207
208 unsigned getNumRegs() const;
209 const Type *getType() const;
210
Dan Gohman5ce6d052010-05-20 15:17:54 +0000211 void DeleteBaseReg(const SCEV *&S);
212
Dan Gohman572645c2010-02-12 10:34:29 +0000213 bool referencesReg(const SCEV *S) const;
214 bool hasRegsUsedByUsesOtherThan(size_t LUIdx,
215 const RegUseTracker &RegUses) const;
216
217 void print(raw_ostream &OS) const;
218 void dump() const;
219};
220
221}
222
Dan Gohman3f46a3a2010-03-01 17:49:51 +0000223/// DoInitialMatch - Recursion helper for InitialMatch.
Dan Gohman572645c2010-02-12 10:34:29 +0000224static void DoInitialMatch(const SCEV *S, Loop *L,
225 SmallVectorImpl<const SCEV *> &Good,
226 SmallVectorImpl<const SCEV *> &Bad,
227 ScalarEvolution &SE, DominatorTree &DT) {
228 // Collect expressions which properly dominate the loop header.
229 if (S->properlyDominates(L->getHeader(), &DT)) {
230 Good.push_back(S);
231 return;
Dan Gohmana10756e2010-01-21 02:09:26 +0000232 }
Dan Gohman572645c2010-02-12 10:34:29 +0000233
234 // Look at add operands.
235 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
236 for (SCEVAddExpr::op_iterator I = Add->op_begin(), E = Add->op_end();
237 I != E; ++I)
238 DoInitialMatch(*I, L, Good, Bad, SE, DT);
239 return;
240 }
241
242 // Look at addrec operands.
243 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S))
244 if (!AR->getStart()->isZero()) {
245 DoInitialMatch(AR->getStart(), L, Good, Bad, SE, DT);
Dan Gohmandeff6212010-05-03 22:09:21 +0000246 DoInitialMatch(SE.getAddRecExpr(SE.getConstant(AR->getType(), 0),
Dan Gohman572645c2010-02-12 10:34:29 +0000247 AR->getStepRecurrence(SE),
248 AR->getLoop()),
249 L, Good, Bad, SE, DT);
250 return;
251 }
252
253 // Handle a multiplication by -1 (negation) if it didn't fold.
254 if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S))
255 if (Mul->getOperand(0)->isAllOnesValue()) {
256 SmallVector<const SCEV *, 4> Ops(Mul->op_begin()+1, Mul->op_end());
257 const SCEV *NewMul = SE.getMulExpr(Ops);
258
259 SmallVector<const SCEV *, 4> MyGood;
260 SmallVector<const SCEV *, 4> MyBad;
261 DoInitialMatch(NewMul, L, MyGood, MyBad, SE, DT);
262 const SCEV *NegOne = SE.getSCEV(ConstantInt::getAllOnesValue(
263 SE.getEffectiveSCEVType(NewMul->getType())));
264 for (SmallVectorImpl<const SCEV *>::const_iterator I = MyGood.begin(),
265 E = MyGood.end(); I != E; ++I)
266 Good.push_back(SE.getMulExpr(NegOne, *I));
267 for (SmallVectorImpl<const SCEV *>::const_iterator I = MyBad.begin(),
268 E = MyBad.end(); I != E; ++I)
269 Bad.push_back(SE.getMulExpr(NegOne, *I));
270 return;
271 }
272
273 // Ok, we can't do anything interesting. Just stuff the whole thing into a
274 // register and hope for the best.
275 Bad.push_back(S);
276}
277
278/// InitialMatch - Incorporate loop-variant parts of S into this Formula,
279/// attempting to keep all loop-invariant and loop-computable values in a
280/// single base register.
281void Formula::InitialMatch(const SCEV *S, Loop *L,
282 ScalarEvolution &SE, DominatorTree &DT) {
283 SmallVector<const SCEV *, 4> Good;
284 SmallVector<const SCEV *, 4> Bad;
285 DoInitialMatch(S, L, Good, Bad, SE, DT);
286 if (!Good.empty()) {
Dan Gohmane60bb152010-04-08 23:36:27 +0000287 const SCEV *Sum = SE.getAddExpr(Good);
288 if (!Sum->isZero())
289 BaseRegs.push_back(Sum);
Dan Gohman572645c2010-02-12 10:34:29 +0000290 AM.HasBaseReg = true;
291 }
292 if (!Bad.empty()) {
Dan Gohmane60bb152010-04-08 23:36:27 +0000293 const SCEV *Sum = SE.getAddExpr(Bad);
294 if (!Sum->isZero())
295 BaseRegs.push_back(Sum);
Dan Gohman572645c2010-02-12 10:34:29 +0000296 AM.HasBaseReg = true;
297 }
298}
299
300/// getNumRegs - Return the total number of register operands used by this
301/// formula. This does not include register uses implied by non-constant
302/// addrec strides.
303unsigned Formula::getNumRegs() const {
304 return !!ScaledReg + BaseRegs.size();
305}
306
307/// getType - Return the type of this formula, if it has one, or null
308/// otherwise. This type is meaningless except for the bit size.
309const Type *Formula::getType() const {
310 return !BaseRegs.empty() ? BaseRegs.front()->getType() :
311 ScaledReg ? ScaledReg->getType() :
312 AM.BaseGV ? AM.BaseGV->getType() :
313 0;
314}
315
Dan Gohman5ce6d052010-05-20 15:17:54 +0000316/// DeleteBaseReg - Delete the given base reg from the BaseRegs list.
317void Formula::DeleteBaseReg(const SCEV *&S) {
318 if (&S != &BaseRegs.back())
319 std::swap(S, BaseRegs.back());
320 BaseRegs.pop_back();
321}
322
Dan Gohman572645c2010-02-12 10:34:29 +0000323/// referencesReg - Test if this formula references the given register.
324bool Formula::referencesReg(const SCEV *S) const {
325 return S == ScaledReg ||
326 std::find(BaseRegs.begin(), BaseRegs.end(), S) != BaseRegs.end();
327}
328
329/// hasRegsUsedByUsesOtherThan - Test whether this formula uses registers
330/// which are used by uses other than the use with the given index.
331bool Formula::hasRegsUsedByUsesOtherThan(size_t LUIdx,
332 const RegUseTracker &RegUses) const {
333 if (ScaledReg)
334 if (RegUses.isRegUsedByUsesOtherThan(ScaledReg, LUIdx))
335 return true;
336 for (SmallVectorImpl<const SCEV *>::const_iterator I = BaseRegs.begin(),
337 E = BaseRegs.end(); I != E; ++I)
338 if (RegUses.isRegUsedByUsesOtherThan(*I, LUIdx))
339 return true;
340 return false;
341}
342
343void Formula::print(raw_ostream &OS) const {
344 bool First = true;
345 if (AM.BaseGV) {
346 if (!First) OS << " + "; else First = false;
347 WriteAsOperand(OS, AM.BaseGV, /*PrintType=*/false);
348 }
349 if (AM.BaseOffs != 0) {
350 if (!First) OS << " + "; else First = false;
351 OS << AM.BaseOffs;
352 }
353 for (SmallVectorImpl<const SCEV *>::const_iterator I = BaseRegs.begin(),
354 E = BaseRegs.end(); I != E; ++I) {
355 if (!First) OS << " + "; else First = false;
356 OS << "reg(" << **I << ')';
357 }
Dan Gohmanc4cfbaf2010-05-18 22:35:55 +0000358 if (AM.HasBaseReg && BaseRegs.empty()) {
359 if (!First) OS << " + "; else First = false;
360 OS << "**error: HasBaseReg**";
361 } else if (!AM.HasBaseReg && !BaseRegs.empty()) {
362 if (!First) OS << " + "; else First = false;
363 OS << "**error: !HasBaseReg**";
364 }
Dan Gohman572645c2010-02-12 10:34:29 +0000365 if (AM.Scale != 0) {
366 if (!First) OS << " + "; else First = false;
367 OS << AM.Scale << "*reg(";
368 if (ScaledReg)
369 OS << *ScaledReg;
370 else
371 OS << "<unknown>";
372 OS << ')';
373 }
374}
375
376void Formula::dump() const {
377 print(errs()); errs() << '\n';
378}
379
Dan Gohmanaae01f12010-02-19 19:32:49 +0000380/// isAddRecSExtable - Return true if the given addrec can be sign-extended
381/// without changing its value.
382static bool isAddRecSExtable(const SCEVAddRecExpr *AR, ScalarEvolution &SE) {
383 const Type *WideTy =
Dan Gohmanea507f52010-05-20 19:44:23 +0000384 IntegerType::get(SE.getContext(), SE.getTypeSizeInBits(AR->getType()) + 1);
Dan Gohmanaae01f12010-02-19 19:32:49 +0000385 return isa<SCEVAddRecExpr>(SE.getSignExtendExpr(AR, WideTy));
386}
387
388/// isAddSExtable - Return true if the given add can be sign-extended
389/// without changing its value.
390static bool isAddSExtable(const SCEVAddExpr *A, ScalarEvolution &SE) {
391 const Type *WideTy =
Dan Gohmanea507f52010-05-20 19:44:23 +0000392 IntegerType::get(SE.getContext(), SE.getTypeSizeInBits(A->getType()) + 1);
Dan Gohmanaae01f12010-02-19 19:32:49 +0000393 return isa<SCEVAddExpr>(SE.getSignExtendExpr(A, WideTy));
394}
395
Dan Gohman473e6352010-06-24 16:45:11 +0000396/// isMulSExtable - Return true if the given mul can be sign-extended
Dan Gohmanaae01f12010-02-19 19:32:49 +0000397/// without changing its value.
Dan Gohman473e6352010-06-24 16:45:11 +0000398static bool isMulSExtable(const SCEVMulExpr *M, ScalarEvolution &SE) {
Dan Gohmanaae01f12010-02-19 19:32:49 +0000399 const Type *WideTy =
Dan Gohman473e6352010-06-24 16:45:11 +0000400 IntegerType::get(SE.getContext(),
401 SE.getTypeSizeInBits(M->getType()) * M->getNumOperands());
402 return isa<SCEVMulExpr>(SE.getSignExtendExpr(M, WideTy));
Dan Gohmanaae01f12010-02-19 19:32:49 +0000403}
404
Dan Gohmanf09b7122010-02-19 19:35:48 +0000405/// getExactSDiv - Return an expression for LHS /s RHS, if it can be determined
406/// and if the remainder is known to be zero, or null otherwise. If
407/// IgnoreSignificantBits is true, expressions like (X * Y) /s Y are simplified
408/// to Y, ignoring that the multiplication may overflow, which is useful when
409/// the result will be used in a context where the most significant bits are
410/// ignored.
411static const SCEV *getExactSDiv(const SCEV *LHS, const SCEV *RHS,
412 ScalarEvolution &SE,
413 bool IgnoreSignificantBits = false) {
Dan Gohman572645c2010-02-12 10:34:29 +0000414 // Handle the trivial case, which works for any SCEV type.
415 if (LHS == RHS)
Dan Gohmandeff6212010-05-03 22:09:21 +0000416 return SE.getConstant(LHS->getType(), 1);
Dan Gohman572645c2010-02-12 10:34:29 +0000417
Dan Gohmand42819a2010-06-24 16:51:25 +0000418 // Handle a few RHS special cases.
419 const SCEVConstant *RC = dyn_cast<SCEVConstant>(RHS);
420 if (RC) {
421 const APInt &RA = RC->getValue()->getValue();
422 // Handle x /s -1 as x * -1, to give ScalarEvolution a chance to do
423 // some folding.
424 if (RA.isAllOnesValue())
425 return SE.getMulExpr(LHS, RC);
426 // Handle x /s 1 as x.
427 if (RA == 1)
428 return LHS;
429 }
Dan Gohman572645c2010-02-12 10:34:29 +0000430
431 // Check for a division of a constant by a constant.
432 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(LHS)) {
Dan Gohman572645c2010-02-12 10:34:29 +0000433 if (!RC)
434 return 0;
Dan Gohmand42819a2010-06-24 16:51:25 +0000435 const APInt &LA = C->getValue()->getValue();
436 const APInt &RA = RC->getValue()->getValue();
437 if (LA.srem(RA) != 0)
Dan Gohman572645c2010-02-12 10:34:29 +0000438 return 0;
Dan Gohmand42819a2010-06-24 16:51:25 +0000439 return SE.getConstant(LA.sdiv(RA));
Dan Gohman572645c2010-02-12 10:34:29 +0000440 }
441
Dan Gohmanaae01f12010-02-19 19:32:49 +0000442 // Distribute the sdiv over addrec operands, if the addrec doesn't overflow.
Dan Gohman572645c2010-02-12 10:34:29 +0000443 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(LHS)) {
Dan Gohmanaae01f12010-02-19 19:32:49 +0000444 if (IgnoreSignificantBits || isAddRecSExtable(AR, SE)) {
Dan Gohmanf09b7122010-02-19 19:35:48 +0000445 const SCEV *Step = getExactSDiv(AR->getStepRecurrence(SE), RHS, SE,
446 IgnoreSignificantBits);
Dan Gohmanaae01f12010-02-19 19:32:49 +0000447 if (!Step) return 0;
Dan Gohman694a15e2010-08-19 01:02:31 +0000448 const SCEV *Start = getExactSDiv(AR->getStart(), RHS, SE,
449 IgnoreSignificantBits);
450 if (!Start) return 0;
Dan Gohmanaae01f12010-02-19 19:32:49 +0000451 return SE.getAddRecExpr(Start, Step, AR->getLoop());
452 }
Dan Gohman2ea09e02010-06-24 16:57:52 +0000453 return 0;
Dan Gohman572645c2010-02-12 10:34:29 +0000454 }
455
Dan Gohmanaae01f12010-02-19 19:32:49 +0000456 // Distribute the sdiv over add operands, if the add doesn't overflow.
Dan Gohman572645c2010-02-12 10:34:29 +0000457 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(LHS)) {
Dan Gohmanaae01f12010-02-19 19:32:49 +0000458 if (IgnoreSignificantBits || isAddSExtable(Add, SE)) {
459 SmallVector<const SCEV *, 8> Ops;
460 for (SCEVAddExpr::op_iterator I = Add->op_begin(), E = Add->op_end();
461 I != E; ++I) {
Dan Gohmanf09b7122010-02-19 19:35:48 +0000462 const SCEV *Op = getExactSDiv(*I, RHS, SE,
463 IgnoreSignificantBits);
Dan Gohmanaae01f12010-02-19 19:32:49 +0000464 if (!Op) return 0;
465 Ops.push_back(Op);
466 }
467 return SE.getAddExpr(Ops);
Dan Gohman572645c2010-02-12 10:34:29 +0000468 }
Dan Gohman2ea09e02010-06-24 16:57:52 +0000469 return 0;
Dan Gohman572645c2010-02-12 10:34:29 +0000470 }
471
472 // Check for a multiply operand that we can pull RHS out of.
Dan Gohman2ea09e02010-06-24 16:57:52 +0000473 if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(LHS)) {
Dan Gohmanaae01f12010-02-19 19:32:49 +0000474 if (IgnoreSignificantBits || isMulSExtable(Mul, SE)) {
Dan Gohman572645c2010-02-12 10:34:29 +0000475 SmallVector<const SCEV *, 4> Ops;
476 bool Found = false;
477 for (SCEVMulExpr::op_iterator I = Mul->op_begin(), E = Mul->op_end();
478 I != E; ++I) {
Dan Gohman47667442010-05-20 16:23:28 +0000479 const SCEV *S = *I;
Dan Gohman572645c2010-02-12 10:34:29 +0000480 if (!Found)
Dan Gohman47667442010-05-20 16:23:28 +0000481 if (const SCEV *Q = getExactSDiv(S, RHS, SE,
Dan Gohmanf09b7122010-02-19 19:35:48 +0000482 IgnoreSignificantBits)) {
Dan Gohman47667442010-05-20 16:23:28 +0000483 S = Q;
Dan Gohman572645c2010-02-12 10:34:29 +0000484 Found = true;
Dan Gohman572645c2010-02-12 10:34:29 +0000485 }
Dan Gohman47667442010-05-20 16:23:28 +0000486 Ops.push_back(S);
Dan Gohman572645c2010-02-12 10:34:29 +0000487 }
488 return Found ? SE.getMulExpr(Ops) : 0;
489 }
Dan Gohman2ea09e02010-06-24 16:57:52 +0000490 return 0;
491 }
Dan Gohman572645c2010-02-12 10:34:29 +0000492
493 // Otherwise we don't know.
494 return 0;
495}
496
497/// ExtractImmediate - If S involves the addition of a constant integer value,
498/// return that integer value, and mutate S to point to a new SCEV with that
499/// value excluded.
500static int64_t ExtractImmediate(const SCEV *&S, ScalarEvolution &SE) {
501 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(S)) {
502 if (C->getValue()->getValue().getMinSignedBits() <= 64) {
Dan Gohmandeff6212010-05-03 22:09:21 +0000503 S = SE.getConstant(C->getType(), 0);
Dan Gohman572645c2010-02-12 10:34:29 +0000504 return C->getValue()->getSExtValue();
505 }
506 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
507 SmallVector<const SCEV *, 8> NewOps(Add->op_begin(), Add->op_end());
508 int64_t Result = ExtractImmediate(NewOps.front(), SE);
Dan Gohmane62d5882010-08-13 21:17:19 +0000509 if (Result != 0)
510 S = SE.getAddExpr(NewOps);
Dan Gohman572645c2010-02-12 10:34:29 +0000511 return Result;
512 } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
513 SmallVector<const SCEV *, 8> NewOps(AR->op_begin(), AR->op_end());
514 int64_t Result = ExtractImmediate(NewOps.front(), SE);
Dan Gohmane62d5882010-08-13 21:17:19 +0000515 if (Result != 0)
516 S = SE.getAddRecExpr(NewOps, AR->getLoop());
Dan Gohman572645c2010-02-12 10:34:29 +0000517 return Result;
518 }
519 return 0;
520}
521
522/// ExtractSymbol - If S involves the addition of a GlobalValue address,
523/// return that symbol, and mutate S to point to a new SCEV with that
524/// value excluded.
525static GlobalValue *ExtractSymbol(const SCEV *&S, ScalarEvolution &SE) {
526 if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(S)) {
527 if (GlobalValue *GV = dyn_cast<GlobalValue>(U->getValue())) {
Dan Gohmandeff6212010-05-03 22:09:21 +0000528 S = SE.getConstant(GV->getType(), 0);
Dan Gohman572645c2010-02-12 10:34:29 +0000529 return GV;
530 }
531 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
532 SmallVector<const SCEV *, 8> NewOps(Add->op_begin(), Add->op_end());
533 GlobalValue *Result = ExtractSymbol(NewOps.back(), SE);
Dan Gohmane62d5882010-08-13 21:17:19 +0000534 if (Result)
535 S = SE.getAddExpr(NewOps);
Dan Gohman572645c2010-02-12 10:34:29 +0000536 return Result;
537 } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
538 SmallVector<const SCEV *, 8> NewOps(AR->op_begin(), AR->op_end());
539 GlobalValue *Result = ExtractSymbol(NewOps.front(), SE);
Dan Gohmane62d5882010-08-13 21:17:19 +0000540 if (Result)
541 S = SE.getAddRecExpr(NewOps, AR->getLoop());
Dan Gohman572645c2010-02-12 10:34:29 +0000542 return Result;
543 }
544 return 0;
Nate Begemaneaa13852004-10-18 21:08:22 +0000545}
546
Dan Gohmanf284ce22009-02-18 00:08:39 +0000547/// isAddressUse - Returns true if the specified instruction is using the
Dale Johannesen203af582008-12-05 21:47:27 +0000548/// specified value as an address.
549static bool isAddressUse(Instruction *Inst, Value *OperandVal) {
550 bool isAddress = isa<LoadInst>(Inst);
551 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
552 if (SI->getOperand(1) == OperandVal)
553 isAddress = true;
554 } else if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst)) {
555 // Addressing modes can also be folded into prefetches and a variety
556 // of intrinsics.
557 switch (II->getIntrinsicID()) {
558 default: break;
559 case Intrinsic::prefetch:
560 case Intrinsic::x86_sse2_loadu_dq:
561 case Intrinsic::x86_sse2_loadu_pd:
562 case Intrinsic::x86_sse_loadu_ps:
563 case Intrinsic::x86_sse_storeu_ps:
564 case Intrinsic::x86_sse2_storeu_pd:
565 case Intrinsic::x86_sse2_storeu_dq:
566 case Intrinsic::x86_sse2_storel_dq:
Gabor Greifad72e732010-06-30 09:15:28 +0000567 if (II->getArgOperand(0) == OperandVal)
Dale Johannesen203af582008-12-05 21:47:27 +0000568 isAddress = true;
569 break;
570 }
571 }
572 return isAddress;
573}
Chris Lattner0ae33eb2005-10-03 01:04:44 +0000574
Dan Gohman21e77222009-03-09 21:01:17 +0000575/// getAccessType - Return the type of the memory being accessed.
576static const Type *getAccessType(const Instruction *Inst) {
Dan Gohmana537bf82009-05-18 16:45:28 +0000577 const Type *AccessTy = Inst->getType();
Dan Gohman21e77222009-03-09 21:01:17 +0000578 if (const StoreInst *SI = dyn_cast<StoreInst>(Inst))
Dan Gohmana537bf82009-05-18 16:45:28 +0000579 AccessTy = SI->getOperand(0)->getType();
Dan Gohman21e77222009-03-09 21:01:17 +0000580 else if (const IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst)) {
581 // Addressing modes can also be folded into prefetches and a variety
582 // of intrinsics.
583 switch (II->getIntrinsicID()) {
584 default: break;
585 case Intrinsic::x86_sse_storeu_ps:
586 case Intrinsic::x86_sse2_storeu_pd:
587 case Intrinsic::x86_sse2_storeu_dq:
588 case Intrinsic::x86_sse2_storel_dq:
Gabor Greifad72e732010-06-30 09:15:28 +0000589 AccessTy = II->getArgOperand(0)->getType();
Dan Gohman21e77222009-03-09 21:01:17 +0000590 break;
591 }
592 }
Dan Gohman572645c2010-02-12 10:34:29 +0000593
594 // All pointers have the same requirements, so canonicalize them to an
595 // arbitrary pointer type to minimize variation.
596 if (const PointerType *PTy = dyn_cast<PointerType>(AccessTy))
597 AccessTy = PointerType::get(IntegerType::get(PTy->getContext(), 1),
598 PTy->getAddressSpace());
599
Dan Gohmana537bf82009-05-18 16:45:28 +0000600 return AccessTy;
Dan Gohman21e77222009-03-09 21:01:17 +0000601}
602
Dan Gohman572645c2010-02-12 10:34:29 +0000603/// DeleteTriviallyDeadInstructions - If any of the instructions is the
604/// specified set are trivially dead, delete them and see if this makes any of
605/// their operands subsequently dead.
606static bool
607DeleteTriviallyDeadInstructions(SmallVectorImpl<WeakVH> &DeadInsts) {
608 bool Changed = false;
609
610 while (!DeadInsts.empty()) {
611 Instruction *I = dyn_cast_or_null<Instruction>(DeadInsts.pop_back_val());
612
613 if (I == 0 || !isInstructionTriviallyDead(I))
614 continue;
615
616 for (User::op_iterator OI = I->op_begin(), E = I->op_end(); OI != E; ++OI)
617 if (Instruction *U = dyn_cast<Instruction>(*OI)) {
618 *OI = 0;
619 if (U->use_empty())
620 DeadInsts.push_back(U);
621 }
622
623 I->eraseFromParent();
624 Changed = true;
625 }
626
627 return Changed;
628}
629
Dan Gohman7979b722010-01-22 00:46:49 +0000630namespace {
Jim Grosbach56a1f802009-11-17 17:53:56 +0000631
Dan Gohman572645c2010-02-12 10:34:29 +0000632/// Cost - This class is used to measure and compare candidate formulae.
633class Cost {
634 /// TODO: Some of these could be merged. Also, a lexical ordering
635 /// isn't always optimal.
636 unsigned NumRegs;
637 unsigned AddRecCost;
638 unsigned NumIVMuls;
639 unsigned NumBaseAdds;
640 unsigned ImmCost;
641 unsigned SetupCost;
Nate Begeman16997482005-07-30 00:15:07 +0000642
Dan Gohman572645c2010-02-12 10:34:29 +0000643public:
644 Cost()
645 : NumRegs(0), AddRecCost(0), NumIVMuls(0), NumBaseAdds(0), ImmCost(0),
646 SetupCost(0) {}
Jim Grosbach56a1f802009-11-17 17:53:56 +0000647
Dan Gohman572645c2010-02-12 10:34:29 +0000648 unsigned getNumRegs() const { return NumRegs; }
Dan Gohman7979b722010-01-22 00:46:49 +0000649
Dan Gohman572645c2010-02-12 10:34:29 +0000650 bool operator<(const Cost &Other) const;
Dan Gohman7979b722010-01-22 00:46:49 +0000651
Dan Gohman572645c2010-02-12 10:34:29 +0000652 void Loose();
Dan Gohman7979b722010-01-22 00:46:49 +0000653
Dan Gohman572645c2010-02-12 10:34:29 +0000654 void RateFormula(const Formula &F,
655 SmallPtrSet<const SCEV *, 16> &Regs,
656 const DenseSet<const SCEV *> &VisitedRegs,
657 const Loop *L,
658 const SmallVectorImpl<int64_t> &Offsets,
659 ScalarEvolution &SE, DominatorTree &DT);
Dan Gohman7979b722010-01-22 00:46:49 +0000660
Dan Gohman572645c2010-02-12 10:34:29 +0000661 void print(raw_ostream &OS) const;
662 void dump() const;
Dan Gohman7979b722010-01-22 00:46:49 +0000663
Dan Gohman572645c2010-02-12 10:34:29 +0000664private:
665 void RateRegister(const SCEV *Reg,
666 SmallPtrSet<const SCEV *, 16> &Regs,
667 const Loop *L,
668 ScalarEvolution &SE, DominatorTree &DT);
Dan Gohman9214b822010-02-13 02:06:02 +0000669 void RatePrimaryRegister(const SCEV *Reg,
670 SmallPtrSet<const SCEV *, 16> &Regs,
671 const Loop *L,
672 ScalarEvolution &SE, DominatorTree &DT);
Dan Gohman572645c2010-02-12 10:34:29 +0000673};
674
675}
676
677/// RateRegister - Tally up interesting quantities from the given register.
678void Cost::RateRegister(const SCEV *Reg,
679 SmallPtrSet<const SCEV *, 16> &Regs,
680 const Loop *L,
681 ScalarEvolution &SE, DominatorTree &DT) {
Dan Gohman9214b822010-02-13 02:06:02 +0000682 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(Reg)) {
683 if (AR->getLoop() == L)
684 AddRecCost += 1; /// TODO: This should be a function of the stride.
Dan Gohman572645c2010-02-12 10:34:29 +0000685
Dan Gohman9214b822010-02-13 02:06:02 +0000686 // If this is an addrec for a loop that's already been visited by LSR,
687 // don't second-guess its addrec phi nodes. LSR isn't currently smart
688 // enough to reason about more than one loop at a time. Consider these
689 // registers free and leave them alone.
690 else if (L->contains(AR->getLoop()) ||
691 (!AR->getLoop()->contains(L) &&
692 DT.dominates(L->getHeader(), AR->getLoop()->getHeader()))) {
693 for (BasicBlock::iterator I = AR->getLoop()->getHeader()->begin();
694 PHINode *PN = dyn_cast<PHINode>(I); ++I)
695 if (SE.isSCEVable(PN->getType()) &&
696 (SE.getEffectiveSCEVType(PN->getType()) ==
697 SE.getEffectiveSCEVType(AR->getType())) &&
698 SE.getSCEV(PN) == AR)
699 return;
Dan Gohman572645c2010-02-12 10:34:29 +0000700
Dan Gohman9214b822010-02-13 02:06:02 +0000701 // If this isn't one of the addrecs that the loop already has, it
702 // would require a costly new phi and add. TODO: This isn't
703 // precisely modeled right now.
704 ++NumBaseAdds;
705 if (!Regs.count(AR->getStart()))
Dan Gohman572645c2010-02-12 10:34:29 +0000706 RateRegister(AR->getStart(), Regs, L, SE, DT);
Dan Gohman572645c2010-02-12 10:34:29 +0000707 }
Dan Gohman572645c2010-02-12 10:34:29 +0000708
Dan Gohman9214b822010-02-13 02:06:02 +0000709 // Add the step value register, if it needs one.
710 // TODO: The non-affine case isn't precisely modeled here.
711 if (!AR->isAffine() || !isa<SCEVConstant>(AR->getOperand(1)))
712 if (!Regs.count(AR->getStart()))
713 RateRegister(AR->getOperand(1), Regs, L, SE, DT);
Dan Gohman572645c2010-02-12 10:34:29 +0000714 }
Dan Gohman9214b822010-02-13 02:06:02 +0000715 ++NumRegs;
716
717 // Rough heuristic; favor registers which don't require extra setup
718 // instructions in the preheader.
719 if (!isa<SCEVUnknown>(Reg) &&
720 !isa<SCEVConstant>(Reg) &&
721 !(isa<SCEVAddRecExpr>(Reg) &&
722 (isa<SCEVUnknown>(cast<SCEVAddRecExpr>(Reg)->getStart()) ||
723 isa<SCEVConstant>(cast<SCEVAddRecExpr>(Reg)->getStart()))))
724 ++SetupCost;
725}
726
727/// RatePrimaryRegister - Record this register in the set. If we haven't seen it
728/// before, rate it.
729void Cost::RatePrimaryRegister(const SCEV *Reg,
Dan Gohman7fca2292010-02-16 19:42:34 +0000730 SmallPtrSet<const SCEV *, 16> &Regs,
731 const Loop *L,
732 ScalarEvolution &SE, DominatorTree &DT) {
Dan Gohman9214b822010-02-13 02:06:02 +0000733 if (Regs.insert(Reg))
734 RateRegister(Reg, Regs, L, SE, DT);
Dan Gohman572645c2010-02-12 10:34:29 +0000735}
736
737void Cost::RateFormula(const Formula &F,
738 SmallPtrSet<const SCEV *, 16> &Regs,
739 const DenseSet<const SCEV *> &VisitedRegs,
740 const Loop *L,
741 const SmallVectorImpl<int64_t> &Offsets,
742 ScalarEvolution &SE, DominatorTree &DT) {
743 // Tally up the registers.
744 if (const SCEV *ScaledReg = F.ScaledReg) {
745 if (VisitedRegs.count(ScaledReg)) {
746 Loose();
747 return;
748 }
Dan Gohman9214b822010-02-13 02:06:02 +0000749 RatePrimaryRegister(ScaledReg, Regs, L, SE, DT);
Dan Gohman572645c2010-02-12 10:34:29 +0000750 }
751 for (SmallVectorImpl<const SCEV *>::const_iterator I = F.BaseRegs.begin(),
752 E = F.BaseRegs.end(); I != E; ++I) {
753 const SCEV *BaseReg = *I;
754 if (VisitedRegs.count(BaseReg)) {
755 Loose();
756 return;
757 }
Dan Gohman9214b822010-02-13 02:06:02 +0000758 RatePrimaryRegister(BaseReg, Regs, L, SE, DT);
Dan Gohman572645c2010-02-12 10:34:29 +0000759
760 NumIVMuls += isa<SCEVMulExpr>(BaseReg) &&
761 BaseReg->hasComputableLoopEvolution(L);
762 }
763
764 if (F.BaseRegs.size() > 1)
765 NumBaseAdds += F.BaseRegs.size() - 1;
766
767 // Tally up the non-zero immediates.
768 for (SmallVectorImpl<int64_t>::const_iterator I = Offsets.begin(),
769 E = Offsets.end(); I != E; ++I) {
770 int64_t Offset = (uint64_t)*I + F.AM.BaseOffs;
771 if (F.AM.BaseGV)
772 ImmCost += 64; // Handle symbolic values conservatively.
773 // TODO: This should probably be the pointer size.
774 else if (Offset != 0)
775 ImmCost += APInt(64, Offset, true).getMinSignedBits();
776 }
777}
778
779/// Loose - Set this cost to a loosing value.
780void Cost::Loose() {
781 NumRegs = ~0u;
782 AddRecCost = ~0u;
783 NumIVMuls = ~0u;
784 NumBaseAdds = ~0u;
785 ImmCost = ~0u;
786 SetupCost = ~0u;
787}
788
789/// operator< - Choose the lower cost.
790bool Cost::operator<(const Cost &Other) const {
791 if (NumRegs != Other.NumRegs)
792 return NumRegs < Other.NumRegs;
793 if (AddRecCost != Other.AddRecCost)
794 return AddRecCost < Other.AddRecCost;
795 if (NumIVMuls != Other.NumIVMuls)
796 return NumIVMuls < Other.NumIVMuls;
797 if (NumBaseAdds != Other.NumBaseAdds)
798 return NumBaseAdds < Other.NumBaseAdds;
799 if (ImmCost != Other.ImmCost)
800 return ImmCost < Other.ImmCost;
801 if (SetupCost != Other.SetupCost)
802 return SetupCost < Other.SetupCost;
803 return false;
804}
805
806void Cost::print(raw_ostream &OS) const {
807 OS << NumRegs << " reg" << (NumRegs == 1 ? "" : "s");
808 if (AddRecCost != 0)
809 OS << ", with addrec cost " << AddRecCost;
810 if (NumIVMuls != 0)
811 OS << ", plus " << NumIVMuls << " IV mul" << (NumIVMuls == 1 ? "" : "s");
812 if (NumBaseAdds != 0)
813 OS << ", plus " << NumBaseAdds << " base add"
814 << (NumBaseAdds == 1 ? "" : "s");
815 if (ImmCost != 0)
816 OS << ", plus " << ImmCost << " imm cost";
817 if (SetupCost != 0)
818 OS << ", plus " << SetupCost << " setup cost";
819}
820
821void Cost::dump() const {
822 print(errs()); errs() << '\n';
823}
824
825namespace {
826
827/// LSRFixup - An operand value in an instruction which is to be replaced
828/// with some equivalent, possibly strength-reduced, replacement.
829struct LSRFixup {
830 /// UserInst - The instruction which will be updated.
831 Instruction *UserInst;
832
833 /// OperandValToReplace - The operand of the instruction which will
834 /// be replaced. The operand may be used more than once; every instance
835 /// will be replaced.
836 Value *OperandValToReplace;
837
Dan Gohman448db1c2010-04-07 22:27:08 +0000838 /// PostIncLoops - If this user is to use the post-incremented value of an
Dan Gohman572645c2010-02-12 10:34:29 +0000839 /// induction variable, this variable is non-null and holds the loop
840 /// associated with the induction variable.
Dan Gohman448db1c2010-04-07 22:27:08 +0000841 PostIncLoopSet PostIncLoops;
Dan Gohman572645c2010-02-12 10:34:29 +0000842
843 /// LUIdx - The index of the LSRUse describing the expression which
844 /// this fixup needs, minus an offset (below).
845 size_t LUIdx;
846
847 /// Offset - A constant offset to be added to the LSRUse expression.
848 /// This allows multiple fixups to share the same LSRUse with different
849 /// offsets, for example in an unrolled loop.
850 int64_t Offset;
851
Dan Gohman448db1c2010-04-07 22:27:08 +0000852 bool isUseFullyOutsideLoop(const Loop *L) const;
853
Dan Gohman572645c2010-02-12 10:34:29 +0000854 LSRFixup();
855
856 void print(raw_ostream &OS) const;
857 void dump() const;
858};
859
860}
861
862LSRFixup::LSRFixup()
Dan Gohmanea507f52010-05-20 19:44:23 +0000863 : UserInst(0), OperandValToReplace(0), LUIdx(~size_t(0)), Offset(0) {}
Dan Gohman572645c2010-02-12 10:34:29 +0000864
Dan Gohman448db1c2010-04-07 22:27:08 +0000865/// isUseFullyOutsideLoop - Test whether this fixup always uses its
866/// value outside of the given loop.
867bool LSRFixup::isUseFullyOutsideLoop(const Loop *L) const {
868 // PHI nodes use their value in their incoming blocks.
869 if (const PHINode *PN = dyn_cast<PHINode>(UserInst)) {
870 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
871 if (PN->getIncomingValue(i) == OperandValToReplace &&
872 L->contains(PN->getIncomingBlock(i)))
873 return false;
874 return true;
875 }
876
877 return !L->contains(UserInst);
878}
879
Dan Gohman572645c2010-02-12 10:34:29 +0000880void LSRFixup::print(raw_ostream &OS) const {
881 OS << "UserInst=";
882 // Store is common and interesting enough to be worth special-casing.
883 if (StoreInst *Store = dyn_cast<StoreInst>(UserInst)) {
884 OS << "store ";
885 WriteAsOperand(OS, Store->getOperand(0), /*PrintType=*/false);
886 } else if (UserInst->getType()->isVoidTy())
887 OS << UserInst->getOpcodeName();
888 else
889 WriteAsOperand(OS, UserInst, /*PrintType=*/false);
890
891 OS << ", OperandValToReplace=";
892 WriteAsOperand(OS, OperandValToReplace, /*PrintType=*/false);
893
Dan Gohman448db1c2010-04-07 22:27:08 +0000894 for (PostIncLoopSet::const_iterator I = PostIncLoops.begin(),
895 E = PostIncLoops.end(); I != E; ++I) {
Dan Gohman572645c2010-02-12 10:34:29 +0000896 OS << ", PostIncLoop=";
Dan Gohman448db1c2010-04-07 22:27:08 +0000897 WriteAsOperand(OS, (*I)->getHeader(), /*PrintType=*/false);
Dan Gohman572645c2010-02-12 10:34:29 +0000898 }
899
900 if (LUIdx != ~size_t(0))
901 OS << ", LUIdx=" << LUIdx;
902
903 if (Offset != 0)
904 OS << ", Offset=" << Offset;
905}
906
907void LSRFixup::dump() const {
908 print(errs()); errs() << '\n';
909}
910
911namespace {
912
913/// UniquifierDenseMapInfo - A DenseMapInfo implementation for holding
914/// DenseMaps and DenseSets of sorted SmallVectors of const SCEV*.
915struct UniquifierDenseMapInfo {
916 static SmallVector<const SCEV *, 2> getEmptyKey() {
917 SmallVector<const SCEV *, 2> V;
918 V.push_back(reinterpret_cast<const SCEV *>(-1));
919 return V;
920 }
921
922 static SmallVector<const SCEV *, 2> getTombstoneKey() {
923 SmallVector<const SCEV *, 2> V;
924 V.push_back(reinterpret_cast<const SCEV *>(-2));
925 return V;
926 }
927
928 static unsigned getHashValue(const SmallVector<const SCEV *, 2> &V) {
929 unsigned Result = 0;
930 for (SmallVectorImpl<const SCEV *>::const_iterator I = V.begin(),
931 E = V.end(); I != E; ++I)
932 Result ^= DenseMapInfo<const SCEV *>::getHashValue(*I);
933 return Result;
934 }
935
936 static bool isEqual(const SmallVector<const SCEV *, 2> &LHS,
937 const SmallVector<const SCEV *, 2> &RHS) {
938 return LHS == RHS;
939 }
940};
941
942/// LSRUse - This class holds the state that LSR keeps for each use in
943/// IVUsers, as well as uses invented by LSR itself. It includes information
944/// about what kinds of things can be folded into the user, information about
945/// the user itself, and information about how the use may be satisfied.
946/// TODO: Represent multiple users of the same expression in common?
947class LSRUse {
948 DenseSet<SmallVector<const SCEV *, 2>, UniquifierDenseMapInfo> Uniquifier;
949
950public:
951 /// KindType - An enum for a kind of use, indicating what types of
952 /// scaled and immediate operands it might support.
953 enum KindType {
954 Basic, ///< A normal use, with no folding.
955 Special, ///< A special case of basic, allowing -1 scales.
956 Address, ///< An address use; folding according to TargetLowering
957 ICmpZero ///< An equality icmp with both operands folded into one.
958 // TODO: Add a generic icmp too?
Dan Gohman7979b722010-01-22 00:46:49 +0000959 };
Dan Gohman572645c2010-02-12 10:34:29 +0000960
961 KindType Kind;
962 const Type *AccessTy;
963
964 SmallVector<int64_t, 8> Offsets;
965 int64_t MinOffset;
966 int64_t MaxOffset;
967
968 /// AllFixupsOutsideLoop - This records whether all of the fixups using this
969 /// LSRUse are outside of the loop, in which case some special-case heuristics
970 /// may be used.
971 bool AllFixupsOutsideLoop;
972
Dan Gohmana9db1292010-07-15 20:24:58 +0000973 /// WidestFixupType - This records the widest use type for any fixup using
974 /// this LSRUse. FindUseWithSimilarFormula can't consider uses with different
975 /// max fixup widths to be equivalent, because the narrower one may be relying
976 /// on the implicit truncation to truncate away bogus bits.
977 const Type *WidestFixupType;
978
Dan Gohman572645c2010-02-12 10:34:29 +0000979 /// Formulae - A list of ways to build a value that can satisfy this user.
980 /// After the list is populated, one of these is selected heuristically and
981 /// used to formulate a replacement for OperandValToReplace in UserInst.
982 SmallVector<Formula, 12> Formulae;
983
984 /// Regs - The set of register candidates used by all formulae in this LSRUse.
985 SmallPtrSet<const SCEV *, 4> Regs;
986
987 LSRUse(KindType K, const Type *T) : Kind(K), AccessTy(T),
988 MinOffset(INT64_MAX),
989 MaxOffset(INT64_MIN),
Dan Gohmana9db1292010-07-15 20:24:58 +0000990 AllFixupsOutsideLoop(true),
991 WidestFixupType(0) {}
Dan Gohman572645c2010-02-12 10:34:29 +0000992
Dan Gohmana2086b32010-05-19 23:43:12 +0000993 bool HasFormulaWithSameRegs(const Formula &F) const;
Dan Gohman454d26d2010-02-22 04:11:59 +0000994 bool InsertFormula(const Formula &F);
Dan Gohmand69d6282010-05-18 22:39:15 +0000995 void DeleteFormula(Formula &F);
Dan Gohmanb2df4332010-05-18 23:42:37 +0000996 void RecomputeRegs(size_t LUIdx, RegUseTracker &Reguses);
Dan Gohman572645c2010-02-12 10:34:29 +0000997
Dan Gohman572645c2010-02-12 10:34:29 +0000998 void print(raw_ostream &OS) const;
999 void dump() const;
1000};
1001
Dan Gohmanb6211712010-06-19 21:21:39 +00001002}
1003
Dan Gohmana2086b32010-05-19 23:43:12 +00001004/// HasFormula - Test whether this use as a formula which has the same
1005/// registers as the given formula.
1006bool LSRUse::HasFormulaWithSameRegs(const Formula &F) const {
1007 SmallVector<const SCEV *, 2> Key = F.BaseRegs;
1008 if (F.ScaledReg) Key.push_back(F.ScaledReg);
1009 // Unstable sort by host order ok, because this is only used for uniquifying.
1010 std::sort(Key.begin(), Key.end());
1011 return Uniquifier.count(Key);
1012}
1013
Dan Gohman572645c2010-02-12 10:34:29 +00001014/// InsertFormula - If the given formula has not yet been inserted, add it to
1015/// the list, and return true. Return false otherwise.
Dan Gohman454d26d2010-02-22 04:11:59 +00001016bool LSRUse::InsertFormula(const Formula &F) {
Dan Gohman572645c2010-02-12 10:34:29 +00001017 SmallVector<const SCEV *, 2> Key = F.BaseRegs;
1018 if (F.ScaledReg) Key.push_back(F.ScaledReg);
1019 // Unstable sort by host order ok, because this is only used for uniquifying.
1020 std::sort(Key.begin(), Key.end());
1021
1022 if (!Uniquifier.insert(Key).second)
1023 return false;
1024
1025 // Using a register to hold the value of 0 is not profitable.
1026 assert((!F.ScaledReg || !F.ScaledReg->isZero()) &&
1027 "Zero allocated in a scaled register!");
1028#ifndef NDEBUG
1029 for (SmallVectorImpl<const SCEV *>::const_iterator I =
1030 F.BaseRegs.begin(), E = F.BaseRegs.end(); I != E; ++I)
1031 assert(!(*I)->isZero() && "Zero allocated in a base register!");
1032#endif
1033
1034 // Add the formula to the list.
1035 Formulae.push_back(F);
1036
1037 // Record registers now being used by this use.
1038 if (F.ScaledReg) Regs.insert(F.ScaledReg);
1039 Regs.insert(F.BaseRegs.begin(), F.BaseRegs.end());
1040
1041 return true;
Dan Gohman7979b722010-01-22 00:46:49 +00001042}
1043
Dan Gohmand69d6282010-05-18 22:39:15 +00001044/// DeleteFormula - Remove the given formula from this use's list.
1045void LSRUse::DeleteFormula(Formula &F) {
Dan Gohman5ce6d052010-05-20 15:17:54 +00001046 if (&F != &Formulae.back())
1047 std::swap(F, Formulae.back());
Dan Gohmand69d6282010-05-18 22:39:15 +00001048 Formulae.pop_back();
Dan Gohmana2086b32010-05-19 23:43:12 +00001049 assert(!Formulae.empty() && "LSRUse has no formulae left!");
Dan Gohmand69d6282010-05-18 22:39:15 +00001050}
1051
Dan Gohmanb2df4332010-05-18 23:42:37 +00001052/// RecomputeRegs - Recompute the Regs field, and update RegUses.
1053void LSRUse::RecomputeRegs(size_t LUIdx, RegUseTracker &RegUses) {
1054 // Now that we've filtered out some formulae, recompute the Regs set.
1055 SmallPtrSet<const SCEV *, 4> OldRegs = Regs;
1056 Regs.clear();
Dan Gohman402d4352010-05-20 20:33:18 +00001057 for (SmallVectorImpl<Formula>::const_iterator I = Formulae.begin(),
1058 E = Formulae.end(); I != E; ++I) {
1059 const Formula &F = *I;
Dan Gohmanb2df4332010-05-18 23:42:37 +00001060 if (F.ScaledReg) Regs.insert(F.ScaledReg);
1061 Regs.insert(F.BaseRegs.begin(), F.BaseRegs.end());
1062 }
1063
1064 // Update the RegTracker.
1065 for (SmallPtrSet<const SCEV *, 4>::iterator I = OldRegs.begin(),
1066 E = OldRegs.end(); I != E; ++I)
1067 if (!Regs.count(*I))
1068 RegUses.DropRegister(*I, LUIdx);
1069}
1070
Dan Gohman572645c2010-02-12 10:34:29 +00001071void LSRUse::print(raw_ostream &OS) const {
1072 OS << "LSR Use: Kind=";
1073 switch (Kind) {
1074 case Basic: OS << "Basic"; break;
1075 case Special: OS << "Special"; break;
1076 case ICmpZero: OS << "ICmpZero"; break;
1077 case Address:
1078 OS << "Address of ";
Duncan Sands1df98592010-02-16 11:11:14 +00001079 if (AccessTy->isPointerTy())
Dan Gohman572645c2010-02-12 10:34:29 +00001080 OS << "pointer"; // the full pointer type could be really verbose
1081 else
1082 OS << *AccessTy;
Evan Chengcdf43b12007-10-25 09:11:16 +00001083 }
1084
Dan Gohman572645c2010-02-12 10:34:29 +00001085 OS << ", Offsets={";
1086 for (SmallVectorImpl<int64_t>::const_iterator I = Offsets.begin(),
1087 E = Offsets.end(); I != E; ++I) {
1088 OS << *I;
Oscar Fuentesee56c422010-08-02 06:00:15 +00001089 if (llvm::next(I) != E)
Dan Gohman572645c2010-02-12 10:34:29 +00001090 OS << ',';
Dan Gohman7979b722010-01-22 00:46:49 +00001091 }
Dan Gohman572645c2010-02-12 10:34:29 +00001092 OS << '}';
Dan Gohman7979b722010-01-22 00:46:49 +00001093
Dan Gohman572645c2010-02-12 10:34:29 +00001094 if (AllFixupsOutsideLoop)
1095 OS << ", all-fixups-outside-loop";
Dan Gohmana9db1292010-07-15 20:24:58 +00001096
1097 if (WidestFixupType)
1098 OS << ", widest fixup type: " << *WidestFixupType;
Dan Gohman7979b722010-01-22 00:46:49 +00001099}
1100
Dan Gohman572645c2010-02-12 10:34:29 +00001101void LSRUse::dump() const {
1102 print(errs()); errs() << '\n';
1103}
Dan Gohman7979b722010-01-22 00:46:49 +00001104
Dan Gohman572645c2010-02-12 10:34:29 +00001105/// isLegalUse - Test whether the use described by AM is "legal", meaning it can
1106/// be completely folded into the user instruction at isel time. This includes
1107/// address-mode folding and special icmp tricks.
1108static bool isLegalUse(const TargetLowering::AddrMode &AM,
1109 LSRUse::KindType Kind, const Type *AccessTy,
1110 const TargetLowering *TLI) {
1111 switch (Kind) {
1112 case LSRUse::Address:
1113 // If we have low-level target information, ask the target if it can
1114 // completely fold this address.
1115 if (TLI) return TLI->isLegalAddressingMode(AM, AccessTy);
1116
1117 // Otherwise, just guess that reg+reg addressing is legal.
1118 return !AM.BaseGV && AM.BaseOffs == 0 && AM.Scale <= 1;
1119
1120 case LSRUse::ICmpZero:
1121 // There's not even a target hook for querying whether it would be legal to
1122 // fold a GV into an ICmp.
1123 if (AM.BaseGV)
1124 return false;
1125
1126 // ICmp only has two operands; don't allow more than two non-trivial parts.
1127 if (AM.Scale != 0 && AM.HasBaseReg && AM.BaseOffs != 0)
1128 return false;
1129
1130 // ICmp only supports no scale or a -1 scale, as we can "fold" a -1 scale by
1131 // putting the scaled register in the other operand of the icmp.
1132 if (AM.Scale != 0 && AM.Scale != -1)
1133 return false;
1134
1135 // If we have low-level target information, ask the target if it can fold an
1136 // integer immediate on an icmp.
1137 if (AM.BaseOffs != 0) {
1138 if (TLI) return TLI->isLegalICmpImmediate(-AM.BaseOffs);
1139 return false;
Dan Gohman7979b722010-01-22 00:46:49 +00001140 }
Dan Gohman572645c2010-02-12 10:34:29 +00001141
1142 return true;
1143
1144 case LSRUse::Basic:
1145 // Only handle single-register values.
1146 return !AM.BaseGV && AM.Scale == 0 && AM.BaseOffs == 0;
1147
1148 case LSRUse::Special:
1149 // Only handle -1 scales, or no scale.
1150 return AM.Scale == 0 || AM.Scale == -1;
Dan Gohman7979b722010-01-22 00:46:49 +00001151 }
1152
Dan Gohman7979b722010-01-22 00:46:49 +00001153 return false;
1154}
1155
Dan Gohman572645c2010-02-12 10:34:29 +00001156static bool isLegalUse(TargetLowering::AddrMode AM,
1157 int64_t MinOffset, int64_t MaxOffset,
1158 LSRUse::KindType Kind, const Type *AccessTy,
1159 const TargetLowering *TLI) {
1160 // Check for overflow.
1161 if (((int64_t)((uint64_t)AM.BaseOffs + MinOffset) > AM.BaseOffs) !=
1162 (MinOffset > 0))
1163 return false;
1164 AM.BaseOffs = (uint64_t)AM.BaseOffs + MinOffset;
1165 if (isLegalUse(AM, Kind, AccessTy, TLI)) {
1166 AM.BaseOffs = (uint64_t)AM.BaseOffs - MinOffset;
1167 // Check for overflow.
1168 if (((int64_t)((uint64_t)AM.BaseOffs + MaxOffset) > AM.BaseOffs) !=
1169 (MaxOffset > 0))
1170 return false;
1171 AM.BaseOffs = (uint64_t)AM.BaseOffs + MaxOffset;
1172 return isLegalUse(AM, Kind, AccessTy, TLI);
Dan Gohman7979b722010-01-22 00:46:49 +00001173 }
Dan Gohman572645c2010-02-12 10:34:29 +00001174 return false;
Dan Gohman7979b722010-01-22 00:46:49 +00001175}
1176
Dan Gohman572645c2010-02-12 10:34:29 +00001177static bool isAlwaysFoldable(int64_t BaseOffs,
1178 GlobalValue *BaseGV,
1179 bool HasBaseReg,
1180 LSRUse::KindType Kind, const Type *AccessTy,
Dan Gohman454d26d2010-02-22 04:11:59 +00001181 const TargetLowering *TLI) {
Dan Gohman572645c2010-02-12 10:34:29 +00001182 // Fast-path: zero is always foldable.
1183 if (BaseOffs == 0 && !BaseGV) return true;
Dan Gohman7979b722010-01-22 00:46:49 +00001184
Dan Gohman572645c2010-02-12 10:34:29 +00001185 // Conservatively, create an address with an immediate and a
1186 // base and a scale.
1187 TargetLowering::AddrMode AM;
1188 AM.BaseOffs = BaseOffs;
1189 AM.BaseGV = BaseGV;
1190 AM.HasBaseReg = HasBaseReg;
1191 AM.Scale = Kind == LSRUse::ICmpZero ? -1 : 1;
Dan Gohman7979b722010-01-22 00:46:49 +00001192
Dan Gohmana2086b32010-05-19 23:43:12 +00001193 // Canonicalize a scale of 1 to a base register if the formula doesn't
1194 // already have a base register.
1195 if (!AM.HasBaseReg && AM.Scale == 1) {
1196 AM.Scale = 0;
1197 AM.HasBaseReg = true;
1198 }
1199
Dan Gohman572645c2010-02-12 10:34:29 +00001200 return isLegalUse(AM, Kind, AccessTy, TLI);
Dan Gohman7979b722010-01-22 00:46:49 +00001201}
1202
Dan Gohman572645c2010-02-12 10:34:29 +00001203static bool isAlwaysFoldable(const SCEV *S,
1204 int64_t MinOffset, int64_t MaxOffset,
1205 bool HasBaseReg,
1206 LSRUse::KindType Kind, const Type *AccessTy,
1207 const TargetLowering *TLI,
1208 ScalarEvolution &SE) {
1209 // Fast-path: zero is always foldable.
1210 if (S->isZero()) return true;
1211
1212 // Conservatively, create an address with an immediate and a
1213 // base and a scale.
1214 int64_t BaseOffs = ExtractImmediate(S, SE);
1215 GlobalValue *BaseGV = ExtractSymbol(S, SE);
1216
1217 // If there's anything else involved, it's not foldable.
1218 if (!S->isZero()) return false;
1219
1220 // Fast-path: zero is always foldable.
1221 if (BaseOffs == 0 && !BaseGV) return true;
1222
1223 // Conservatively, create an address with an immediate and a
1224 // base and a scale.
1225 TargetLowering::AddrMode AM;
1226 AM.BaseOffs = BaseOffs;
1227 AM.BaseGV = BaseGV;
1228 AM.HasBaseReg = HasBaseReg;
1229 AM.Scale = Kind == LSRUse::ICmpZero ? -1 : 1;
1230
1231 return isLegalUse(AM, MinOffset, MaxOffset, Kind, AccessTy, TLI);
Dan Gohman7979b722010-01-22 00:46:49 +00001232}
1233
Dan Gohmanb6211712010-06-19 21:21:39 +00001234namespace {
1235
Dan Gohman1e3121c2010-06-19 21:29:59 +00001236/// UseMapDenseMapInfo - A DenseMapInfo implementation for holding
1237/// DenseMaps and DenseSets of pairs of const SCEV* and LSRUse::Kind.
1238struct UseMapDenseMapInfo {
1239 static std::pair<const SCEV *, LSRUse::KindType> getEmptyKey() {
1240 return std::make_pair(reinterpret_cast<const SCEV *>(-1), LSRUse::Basic);
1241 }
1242
1243 static std::pair<const SCEV *, LSRUse::KindType> getTombstoneKey() {
1244 return std::make_pair(reinterpret_cast<const SCEV *>(-2), LSRUse::Basic);
1245 }
1246
1247 static unsigned
1248 getHashValue(const std::pair<const SCEV *, LSRUse::KindType> &V) {
1249 unsigned Result = DenseMapInfo<const SCEV *>::getHashValue(V.first);
1250 Result ^= DenseMapInfo<unsigned>::getHashValue(unsigned(V.second));
1251 return Result;
1252 }
1253
1254 static bool isEqual(const std::pair<const SCEV *, LSRUse::KindType> &LHS,
1255 const std::pair<const SCEV *, LSRUse::KindType> &RHS) {
1256 return LHS == RHS;
1257 }
1258};
1259
Dan Gohman572645c2010-02-12 10:34:29 +00001260/// FormulaSorter - This class implements an ordering for formulae which sorts
1261/// the by their standalone cost.
1262class FormulaSorter {
1263 /// These two sets are kept empty, so that we compute standalone costs.
1264 DenseSet<const SCEV *> VisitedRegs;
1265 SmallPtrSet<const SCEV *, 16> Regs;
1266 Loop *L;
1267 LSRUse *LU;
1268 ScalarEvolution &SE;
1269 DominatorTree &DT;
1270
1271public:
1272 FormulaSorter(Loop *l, LSRUse &lu, ScalarEvolution &se, DominatorTree &dt)
1273 : L(l), LU(&lu), SE(se), DT(dt) {}
1274
1275 bool operator()(const Formula &A, const Formula &B) {
1276 Cost CostA;
1277 CostA.RateFormula(A, Regs, VisitedRegs, L, LU->Offsets, SE, DT);
1278 Regs.clear();
1279 Cost CostB;
1280 CostB.RateFormula(B, Regs, VisitedRegs, L, LU->Offsets, SE, DT);
1281 Regs.clear();
1282 return CostA < CostB;
1283 }
1284};
1285
1286/// LSRInstance - This class holds state for the main loop strength reduction
1287/// logic.
1288class LSRInstance {
1289 IVUsers &IU;
1290 ScalarEvolution &SE;
1291 DominatorTree &DT;
Dan Gohmane5f76872010-04-09 22:07:05 +00001292 LoopInfo &LI;
Dan Gohman572645c2010-02-12 10:34:29 +00001293 const TargetLowering *const TLI;
1294 Loop *const L;
1295 bool Changed;
1296
1297 /// IVIncInsertPos - This is the insert position that the current loop's
1298 /// induction variable increment should be placed. In simple loops, this is
1299 /// the latch block's terminator. But in more complicated cases, this is a
1300 /// position which will dominate all the in-loop post-increment users.
1301 Instruction *IVIncInsertPos;
1302
1303 /// Factors - Interesting factors between use strides.
1304 SmallSetVector<int64_t, 8> Factors;
1305
1306 /// Types - Interesting use types, to facilitate truncation reuse.
1307 SmallSetVector<const Type *, 4> Types;
1308
1309 /// Fixups - The list of operands which are to be replaced.
1310 SmallVector<LSRFixup, 16> Fixups;
1311
1312 /// Uses - The list of interesting uses.
1313 SmallVector<LSRUse, 16> Uses;
1314
1315 /// RegUses - Track which uses use which register candidates.
1316 RegUseTracker RegUses;
1317
1318 void OptimizeShadowIV();
1319 bool FindIVUserForCond(ICmpInst *Cond, IVStrideUse *&CondUse);
1320 ICmpInst *OptimizeMax(ICmpInst *Cond, IVStrideUse* &CondUse);
Dan Gohmanc6519f92010-05-20 20:05:31 +00001321 void OptimizeLoopTermCond();
Dan Gohman572645c2010-02-12 10:34:29 +00001322
1323 void CollectInterestingTypesAndFactors();
1324 void CollectFixupsAndInitialFormulae();
1325
1326 LSRFixup &getNewFixup() {
1327 Fixups.push_back(LSRFixup());
1328 return Fixups.back();
1329 }
1330
1331 // Support for sharing of LSRUses between LSRFixups.
Dan Gohman1e3121c2010-06-19 21:29:59 +00001332 typedef DenseMap<std::pair<const SCEV *, LSRUse::KindType>,
1333 size_t,
1334 UseMapDenseMapInfo> UseMapTy;
Dan Gohman572645c2010-02-12 10:34:29 +00001335 UseMapTy UseMap;
1336
Dan Gohmanea507f52010-05-20 19:44:23 +00001337 bool reconcileNewOffset(LSRUse &LU, int64_t NewOffset, bool HasBaseReg,
Dan Gohman572645c2010-02-12 10:34:29 +00001338 LSRUse::KindType Kind, const Type *AccessTy);
1339
1340 std::pair<size_t, int64_t> getUse(const SCEV *&Expr,
1341 LSRUse::KindType Kind,
1342 const Type *AccessTy);
1343
Dan Gohman5ce6d052010-05-20 15:17:54 +00001344 void DeleteUse(LSRUse &LU);
1345
Dan Gohmana2086b32010-05-19 23:43:12 +00001346 LSRUse *FindUseWithSimilarFormula(const Formula &F, const LSRUse &OrigLU);
1347
Dan Gohman572645c2010-02-12 10:34:29 +00001348public:
Dan Gohman454d26d2010-02-22 04:11:59 +00001349 void InsertInitialFormula(const SCEV *S, LSRUse &LU, size_t LUIdx);
Dan Gohman572645c2010-02-12 10:34:29 +00001350 void InsertSupplementalFormula(const SCEV *S, LSRUse &LU, size_t LUIdx);
1351 void CountRegisters(const Formula &F, size_t LUIdx);
1352 bool InsertFormula(LSRUse &LU, unsigned LUIdx, const Formula &F);
1353
1354 void CollectLoopInvariantFixupsAndFormulae();
1355
1356 void GenerateReassociations(LSRUse &LU, unsigned LUIdx, Formula Base,
1357 unsigned Depth = 0);
1358 void GenerateCombinations(LSRUse &LU, unsigned LUIdx, Formula Base);
1359 void GenerateSymbolicOffsets(LSRUse &LU, unsigned LUIdx, Formula Base);
1360 void GenerateConstantOffsets(LSRUse &LU, unsigned LUIdx, Formula Base);
1361 void GenerateICmpZeroScales(LSRUse &LU, unsigned LUIdx, Formula Base);
1362 void GenerateScales(LSRUse &LU, unsigned LUIdx, Formula Base);
1363 void GenerateTruncates(LSRUse &LU, unsigned LUIdx, Formula Base);
1364 void GenerateCrossUseConstantOffsets();
1365 void GenerateAllReuseFormulae();
1366
1367 void FilterOutUndesirableDedicatedRegisters();
Dan Gohmand079c302010-05-18 22:51:59 +00001368
1369 size_t EstimateSearchSpaceComplexity() const;
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00001370 void NarrowSearchSpaceByDetectingSupersets();
1371 void NarrowSearchSpaceByCollapsingUnrolledCode();
1372 void NarrowSearchSpaceByPickingWinnerRegs();
Dan Gohman572645c2010-02-12 10:34:29 +00001373 void NarrowSearchSpaceUsingHeuristics();
1374
1375 void SolveRecurse(SmallVectorImpl<const Formula *> &Solution,
1376 Cost &SolutionCost,
1377 SmallVectorImpl<const Formula *> &Workspace,
1378 const Cost &CurCost,
1379 const SmallPtrSet<const SCEV *, 16> &CurRegs,
1380 DenseSet<const SCEV *> &VisitedRegs) const;
1381 void Solve(SmallVectorImpl<const Formula *> &Solution) const;
1382
Dan Gohmane5f76872010-04-09 22:07:05 +00001383 BasicBlock::iterator
1384 HoistInsertPosition(BasicBlock::iterator IP,
1385 const SmallVectorImpl<Instruction *> &Inputs) const;
1386 BasicBlock::iterator AdjustInsertPositionForExpand(BasicBlock::iterator IP,
1387 const LSRFixup &LF,
1388 const LSRUse &LU) const;
Dan Gohmand96eae82010-04-09 02:00:38 +00001389
Dan Gohman572645c2010-02-12 10:34:29 +00001390 Value *Expand(const LSRFixup &LF,
1391 const Formula &F,
Dan Gohman454d26d2010-02-22 04:11:59 +00001392 BasicBlock::iterator IP,
Dan Gohman572645c2010-02-12 10:34:29 +00001393 SCEVExpander &Rewriter,
Dan Gohman454d26d2010-02-22 04:11:59 +00001394 SmallVectorImpl<WeakVH> &DeadInsts) const;
Dan Gohman3a02cbc2010-02-16 20:25:07 +00001395 void RewriteForPHI(PHINode *PN, const LSRFixup &LF,
1396 const Formula &F,
Dan Gohman3a02cbc2010-02-16 20:25:07 +00001397 SCEVExpander &Rewriter,
1398 SmallVectorImpl<WeakVH> &DeadInsts,
Dan Gohman3a02cbc2010-02-16 20:25:07 +00001399 Pass *P) const;
Dan Gohman572645c2010-02-12 10:34:29 +00001400 void Rewrite(const LSRFixup &LF,
1401 const Formula &F,
Dan Gohman572645c2010-02-12 10:34:29 +00001402 SCEVExpander &Rewriter,
1403 SmallVectorImpl<WeakVH> &DeadInsts,
Dan Gohman572645c2010-02-12 10:34:29 +00001404 Pass *P) const;
1405 void ImplementSolution(const SmallVectorImpl<const Formula *> &Solution,
1406 Pass *P);
1407
1408 LSRInstance(const TargetLowering *tli, Loop *l, Pass *P);
1409
1410 bool getChanged() const { return Changed; }
1411
1412 void print_factors_and_types(raw_ostream &OS) const;
1413 void print_fixups(raw_ostream &OS) const;
1414 void print_uses(raw_ostream &OS) const;
1415 void print(raw_ostream &OS) const;
1416 void dump() const;
1417};
1418
1419}
1420
1421/// OptimizeShadowIV - If IV is used in a int-to-float cast
Dan Gohman3f46a3a2010-03-01 17:49:51 +00001422/// inside the loop then try to eliminate the cast operation.
Dan Gohman572645c2010-02-12 10:34:29 +00001423void LSRInstance::OptimizeShadowIV() {
1424 const SCEV *BackedgeTakenCount = SE.getBackedgeTakenCount(L);
1425 if (isa<SCEVCouldNotCompute>(BackedgeTakenCount))
1426 return;
1427
1428 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end();
1429 UI != E; /* empty */) {
1430 IVUsers::const_iterator CandidateUI = UI;
1431 ++UI;
1432 Instruction *ShadowUse = CandidateUI->getUser();
1433 const Type *DestTy = NULL;
1434
1435 /* If shadow use is a int->float cast then insert a second IV
1436 to eliminate this cast.
1437
1438 for (unsigned i = 0; i < n; ++i)
1439 foo((double)i);
1440
1441 is transformed into
1442
1443 double d = 0.0;
1444 for (unsigned i = 0; i < n; ++i, ++d)
1445 foo(d);
1446 */
1447 if (UIToFPInst *UCast = dyn_cast<UIToFPInst>(CandidateUI->getUser()))
1448 DestTy = UCast->getDestTy();
1449 else if (SIToFPInst *SCast = dyn_cast<SIToFPInst>(CandidateUI->getUser()))
1450 DestTy = SCast->getDestTy();
1451 if (!DestTy) continue;
1452
1453 if (TLI) {
1454 // If target does not support DestTy natively then do not apply
1455 // this transformation.
1456 EVT DVT = TLI->getValueType(DestTy);
1457 if (!TLI->isTypeLegal(DVT)) continue;
1458 }
1459
1460 PHINode *PH = dyn_cast<PHINode>(ShadowUse->getOperand(0));
1461 if (!PH) continue;
1462 if (PH->getNumIncomingValues() != 2) continue;
1463
1464 const Type *SrcTy = PH->getType();
1465 int Mantissa = DestTy->getFPMantissaWidth();
1466 if (Mantissa == -1) continue;
1467 if ((int)SE.getTypeSizeInBits(SrcTy) > Mantissa)
1468 continue;
1469
1470 unsigned Entry, Latch;
1471 if (PH->getIncomingBlock(0) == L->getLoopPreheader()) {
1472 Entry = 0;
1473 Latch = 1;
Dan Gohman7979b722010-01-22 00:46:49 +00001474 } else {
Dan Gohman572645c2010-02-12 10:34:29 +00001475 Entry = 1;
1476 Latch = 0;
Dan Gohman7979b722010-01-22 00:46:49 +00001477 }
Dan Gohman7979b722010-01-22 00:46:49 +00001478
Dan Gohman572645c2010-02-12 10:34:29 +00001479 ConstantInt *Init = dyn_cast<ConstantInt>(PH->getIncomingValue(Entry));
1480 if (!Init) continue;
1481 Constant *NewInit = ConstantFP::get(DestTy, Init->getZExtValue());
Dan Gohman7979b722010-01-22 00:46:49 +00001482
Dan Gohman572645c2010-02-12 10:34:29 +00001483 BinaryOperator *Incr =
1484 dyn_cast<BinaryOperator>(PH->getIncomingValue(Latch));
1485 if (!Incr) continue;
1486 if (Incr->getOpcode() != Instruction::Add
1487 && Incr->getOpcode() != Instruction::Sub)
Dan Gohman7979b722010-01-22 00:46:49 +00001488 continue;
Dan Gohman7979b722010-01-22 00:46:49 +00001489
Dan Gohman572645c2010-02-12 10:34:29 +00001490 /* Initialize new IV, double d = 0.0 in above example. */
1491 ConstantInt *C = NULL;
1492 if (Incr->getOperand(0) == PH)
1493 C = dyn_cast<ConstantInt>(Incr->getOperand(1));
1494 else if (Incr->getOperand(1) == PH)
1495 C = dyn_cast<ConstantInt>(Incr->getOperand(0));
Dan Gohman7979b722010-01-22 00:46:49 +00001496 else
Dan Gohman7979b722010-01-22 00:46:49 +00001497 continue;
1498
Dan Gohman572645c2010-02-12 10:34:29 +00001499 if (!C) continue;
Dan Gohman7979b722010-01-22 00:46:49 +00001500
Dan Gohman572645c2010-02-12 10:34:29 +00001501 // Ignore negative constants, as the code below doesn't handle them
1502 // correctly. TODO: Remove this restriction.
1503 if (!C->getValue().isStrictlyPositive()) continue;
Dan Gohman7979b722010-01-22 00:46:49 +00001504
Dan Gohman572645c2010-02-12 10:34:29 +00001505 /* Add new PHINode. */
1506 PHINode *NewPH = PHINode::Create(DestTy, "IV.S.", PH);
Dan Gohman7979b722010-01-22 00:46:49 +00001507
Dan Gohman572645c2010-02-12 10:34:29 +00001508 /* create new increment. '++d' in above example. */
1509 Constant *CFP = ConstantFP::get(DestTy, C->getZExtValue());
1510 BinaryOperator *NewIncr =
1511 BinaryOperator::Create(Incr->getOpcode() == Instruction::Add ?
1512 Instruction::FAdd : Instruction::FSub,
1513 NewPH, CFP, "IV.S.next.", Incr);
Dan Gohman7979b722010-01-22 00:46:49 +00001514
Dan Gohman572645c2010-02-12 10:34:29 +00001515 NewPH->addIncoming(NewInit, PH->getIncomingBlock(Entry));
1516 NewPH->addIncoming(NewIncr, PH->getIncomingBlock(Latch));
Dan Gohman7979b722010-01-22 00:46:49 +00001517
Dan Gohman572645c2010-02-12 10:34:29 +00001518 /* Remove cast operation */
1519 ShadowUse->replaceAllUsesWith(NewPH);
1520 ShadowUse->eraseFromParent();
Dan Gohmanc6519f92010-05-20 20:05:31 +00001521 Changed = true;
Dan Gohman572645c2010-02-12 10:34:29 +00001522 break;
Dan Gohman7979b722010-01-22 00:46:49 +00001523 }
1524}
1525
1526/// FindIVUserForCond - If Cond has an operand that is an expression of an IV,
1527/// set the IV user and stride information and return true, otherwise return
1528/// false.
Dan Gohmanea507f52010-05-20 19:44:23 +00001529bool LSRInstance::FindIVUserForCond(ICmpInst *Cond, IVStrideUse *&CondUse) {
Dan Gohman572645c2010-02-12 10:34:29 +00001530 for (IVUsers::iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI)
1531 if (UI->getUser() == Cond) {
1532 // NOTE: we could handle setcc instructions with multiple uses here, but
1533 // InstCombine does it as well for simple uses, it's not clear that it
1534 // occurs enough in real life to handle.
1535 CondUse = UI;
1536 return true;
1537 }
Dan Gohman7979b722010-01-22 00:46:49 +00001538 return false;
Evan Chengcdf43b12007-10-25 09:11:16 +00001539}
1540
Dan Gohman7979b722010-01-22 00:46:49 +00001541/// OptimizeMax - Rewrite the loop's terminating condition if it uses
1542/// a max computation.
1543///
1544/// This is a narrow solution to a specific, but acute, problem. For loops
1545/// like this:
1546///
1547/// i = 0;
1548/// do {
1549/// p[i] = 0.0;
1550/// } while (++i < n);
1551///
1552/// the trip count isn't just 'n', because 'n' might not be positive. And
1553/// unfortunately this can come up even for loops where the user didn't use
1554/// a C do-while loop. For example, seemingly well-behaved top-test loops
1555/// will commonly be lowered like this:
1556//
1557/// if (n > 0) {
1558/// i = 0;
1559/// do {
1560/// p[i] = 0.0;
1561/// } while (++i < n);
1562/// }
1563///
1564/// and then it's possible for subsequent optimization to obscure the if
1565/// test in such a way that indvars can't find it.
1566///
1567/// When indvars can't find the if test in loops like this, it creates a
1568/// max expression, which allows it to give the loop a canonical
1569/// induction variable:
1570///
1571/// i = 0;
1572/// max = n < 1 ? 1 : n;
1573/// do {
1574/// p[i] = 0.0;
1575/// } while (++i != max);
1576///
1577/// Canonical induction variables are necessary because the loop passes
1578/// are designed around them. The most obvious example of this is the
1579/// LoopInfo analysis, which doesn't remember trip count values. It
1580/// expects to be able to rediscover the trip count each time it is
Dan Gohman572645c2010-02-12 10:34:29 +00001581/// needed, and it does this using a simple analysis that only succeeds if
Dan Gohman7979b722010-01-22 00:46:49 +00001582/// the loop has a canonical induction variable.
1583///
1584/// However, when it comes time to generate code, the maximum operation
1585/// can be quite costly, especially if it's inside of an outer loop.
1586///
1587/// This function solves this problem by detecting this type of loop and
1588/// rewriting their conditions from ICMP_NE back to ICMP_SLT, and deleting
1589/// the instructions for the maximum computation.
1590///
Dan Gohman572645c2010-02-12 10:34:29 +00001591ICmpInst *LSRInstance::OptimizeMax(ICmpInst *Cond, IVStrideUse* &CondUse) {
Dan Gohman7979b722010-01-22 00:46:49 +00001592 // Check that the loop matches the pattern we're looking for.
1593 if (Cond->getPredicate() != CmpInst::ICMP_EQ &&
1594 Cond->getPredicate() != CmpInst::ICMP_NE)
1595 return Cond;
Dan Gohmana10756e2010-01-21 02:09:26 +00001596
Dan Gohman7979b722010-01-22 00:46:49 +00001597 SelectInst *Sel = dyn_cast<SelectInst>(Cond->getOperand(1));
1598 if (!Sel || !Sel->hasOneUse()) return Cond;
Dan Gohmana10756e2010-01-21 02:09:26 +00001599
Dan Gohman572645c2010-02-12 10:34:29 +00001600 const SCEV *BackedgeTakenCount = SE.getBackedgeTakenCount(L);
Dan Gohman7979b722010-01-22 00:46:49 +00001601 if (isa<SCEVCouldNotCompute>(BackedgeTakenCount))
1602 return Cond;
Dan Gohmandeff6212010-05-03 22:09:21 +00001603 const SCEV *One = SE.getConstant(BackedgeTakenCount->getType(), 1);
Dan Gohmana10756e2010-01-21 02:09:26 +00001604
Dan Gohman7979b722010-01-22 00:46:49 +00001605 // Add one to the backedge-taken count to get the trip count.
Dan Gohman4065f602010-08-16 15:39:27 +00001606 const SCEV *IterationCount = SE.getAddExpr(One, BackedgeTakenCount);
Dan Gohman1d367982010-04-24 03:13:44 +00001607 if (IterationCount != SE.getSCEV(Sel)) return Cond;
Dan Gohman7979b722010-01-22 00:46:49 +00001608
Dan Gohman1d367982010-04-24 03:13:44 +00001609 // Check for a max calculation that matches the pattern. There's no check
1610 // for ICMP_ULE here because the comparison would be with zero, which
1611 // isn't interesting.
1612 CmpInst::Predicate Pred = ICmpInst::BAD_ICMP_PREDICATE;
1613 const SCEVNAryExpr *Max = 0;
1614 if (const SCEVSMaxExpr *S = dyn_cast<SCEVSMaxExpr>(BackedgeTakenCount)) {
1615 Pred = ICmpInst::ICMP_SLE;
1616 Max = S;
1617 } else if (const SCEVSMaxExpr *S = dyn_cast<SCEVSMaxExpr>(IterationCount)) {
1618 Pred = ICmpInst::ICMP_SLT;
1619 Max = S;
1620 } else if (const SCEVUMaxExpr *U = dyn_cast<SCEVUMaxExpr>(IterationCount)) {
1621 Pred = ICmpInst::ICMP_ULT;
1622 Max = U;
1623 } else {
1624 // No match; bail.
Dan Gohman7979b722010-01-22 00:46:49 +00001625 return Cond;
Dan Gohman1d367982010-04-24 03:13:44 +00001626 }
Dan Gohman7979b722010-01-22 00:46:49 +00001627
1628 // To handle a max with more than two operands, this optimization would
1629 // require additional checking and setup.
1630 if (Max->getNumOperands() != 2)
1631 return Cond;
1632
1633 const SCEV *MaxLHS = Max->getOperand(0);
1634 const SCEV *MaxRHS = Max->getOperand(1);
Dan Gohman1d367982010-04-24 03:13:44 +00001635
1636 // ScalarEvolution canonicalizes constants to the left. For < and >, look
1637 // for a comparison with 1. For <= and >=, a comparison with zero.
1638 if (!MaxLHS ||
1639 (ICmpInst::isTrueWhenEqual(Pred) ? !MaxLHS->isZero() : (MaxLHS != One)))
1640 return Cond;
1641
Dan Gohman7979b722010-01-22 00:46:49 +00001642 // Check the relevant induction variable for conformance to
1643 // the pattern.
Dan Gohman572645c2010-02-12 10:34:29 +00001644 const SCEV *IV = SE.getSCEV(Cond->getOperand(0));
Dan Gohman7979b722010-01-22 00:46:49 +00001645 const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(IV);
1646 if (!AR || !AR->isAffine() ||
1647 AR->getStart() != One ||
Dan Gohman572645c2010-02-12 10:34:29 +00001648 AR->getStepRecurrence(SE) != One)
Dan Gohman7979b722010-01-22 00:46:49 +00001649 return Cond;
1650
1651 assert(AR->getLoop() == L &&
1652 "Loop condition operand is an addrec in a different loop!");
1653
1654 // Check the right operand of the select, and remember it, as it will
1655 // be used in the new comparison instruction.
1656 Value *NewRHS = 0;
Dan Gohman1d367982010-04-24 03:13:44 +00001657 if (ICmpInst::isTrueWhenEqual(Pred)) {
1658 // Look for n+1, and grab n.
1659 if (AddOperator *BO = dyn_cast<AddOperator>(Sel->getOperand(1)))
1660 if (isa<ConstantInt>(BO->getOperand(1)) &&
1661 cast<ConstantInt>(BO->getOperand(1))->isOne() &&
1662 SE.getSCEV(BO->getOperand(0)) == MaxRHS)
1663 NewRHS = BO->getOperand(0);
1664 if (AddOperator *BO = dyn_cast<AddOperator>(Sel->getOperand(2)))
1665 if (isa<ConstantInt>(BO->getOperand(1)) &&
1666 cast<ConstantInt>(BO->getOperand(1))->isOne() &&
1667 SE.getSCEV(BO->getOperand(0)) == MaxRHS)
1668 NewRHS = BO->getOperand(0);
1669 if (!NewRHS)
1670 return Cond;
1671 } else if (SE.getSCEV(Sel->getOperand(1)) == MaxRHS)
Dan Gohman7979b722010-01-22 00:46:49 +00001672 NewRHS = Sel->getOperand(1);
Dan Gohman572645c2010-02-12 10:34:29 +00001673 else if (SE.getSCEV(Sel->getOperand(2)) == MaxRHS)
Dan Gohman7979b722010-01-22 00:46:49 +00001674 NewRHS = Sel->getOperand(2);
Dan Gohmancaf71ab2010-06-22 23:07:13 +00001675 else if (const SCEVUnknown *SU = dyn_cast<SCEVUnknown>(MaxRHS))
1676 NewRHS = SU->getValue();
Dan Gohman1d367982010-04-24 03:13:44 +00001677 else
Dan Gohmancaf71ab2010-06-22 23:07:13 +00001678 // Max doesn't match expected pattern.
1679 return Cond;
Dan Gohman7979b722010-01-22 00:46:49 +00001680
1681 // Determine the new comparison opcode. It may be signed or unsigned,
1682 // and the original comparison may be either equality or inequality.
Dan Gohman7979b722010-01-22 00:46:49 +00001683 if (Cond->getPredicate() == CmpInst::ICMP_EQ)
1684 Pred = CmpInst::getInversePredicate(Pred);
1685
1686 // Ok, everything looks ok to change the condition into an SLT or SGE and
1687 // delete the max calculation.
1688 ICmpInst *NewCond =
1689 new ICmpInst(Cond, Pred, Cond->getOperand(0), NewRHS, "scmp");
1690
1691 // Delete the max calculation instructions.
1692 Cond->replaceAllUsesWith(NewCond);
1693 CondUse->setUser(NewCond);
1694 Instruction *Cmp = cast<Instruction>(Sel->getOperand(0));
1695 Cond->eraseFromParent();
1696 Sel->eraseFromParent();
1697 if (Cmp->use_empty())
1698 Cmp->eraseFromParent();
1699 return NewCond;
Dan Gohmanad7321f2008-09-15 21:22:06 +00001700}
1701
Jim Grosbach56a1f802009-11-17 17:53:56 +00001702/// OptimizeLoopTermCond - Change loop terminating condition to use the
Evan Cheng586f69a2009-11-12 07:35:05 +00001703/// postinc iv when possible.
Dan Gohmanc6519f92010-05-20 20:05:31 +00001704void
Dan Gohman572645c2010-02-12 10:34:29 +00001705LSRInstance::OptimizeLoopTermCond() {
1706 SmallPtrSet<Instruction *, 4> PostIncs;
1707
Evan Cheng586f69a2009-11-12 07:35:05 +00001708 BasicBlock *LatchBlock = L->getLoopLatch();
Evan Cheng076e0852009-11-17 18:10:11 +00001709 SmallVector<BasicBlock*, 8> ExitingBlocks;
1710 L->getExitingBlocks(ExitingBlocks);
Jim Grosbach56a1f802009-11-17 17:53:56 +00001711
Evan Cheng076e0852009-11-17 18:10:11 +00001712 for (unsigned i = 0, e = ExitingBlocks.size(); i != e; ++i) {
1713 BasicBlock *ExitingBlock = ExitingBlocks[i];
Evan Cheng586f69a2009-11-12 07:35:05 +00001714
Dan Gohman572645c2010-02-12 10:34:29 +00001715 // Get the terminating condition for the loop if possible. If we
Evan Cheng076e0852009-11-17 18:10:11 +00001716 // can, we want to change it to use a post-incremented version of its
1717 // induction variable, to allow coalescing the live ranges for the IV into
1718 // one register value.
Evan Cheng586f69a2009-11-12 07:35:05 +00001719
Evan Cheng076e0852009-11-17 18:10:11 +00001720 BranchInst *TermBr = dyn_cast<BranchInst>(ExitingBlock->getTerminator());
1721 if (!TermBr)
1722 continue;
1723 // FIXME: Overly conservative, termination condition could be an 'or' etc..
1724 if (TermBr->isUnconditional() || !isa<ICmpInst>(TermBr->getCondition()))
1725 continue;
Evan Cheng586f69a2009-11-12 07:35:05 +00001726
Evan Cheng076e0852009-11-17 18:10:11 +00001727 // Search IVUsesByStride to find Cond's IVUse if there is one.
1728 IVStrideUse *CondUse = 0;
Evan Cheng076e0852009-11-17 18:10:11 +00001729 ICmpInst *Cond = cast<ICmpInst>(TermBr->getCondition());
Dan Gohman572645c2010-02-12 10:34:29 +00001730 if (!FindIVUserForCond(Cond, CondUse))
Evan Cheng076e0852009-11-17 18:10:11 +00001731 continue;
1732
Evan Cheng076e0852009-11-17 18:10:11 +00001733 // If the trip count is computed in terms of a max (due to ScalarEvolution
1734 // being unable to find a sufficient guard, for example), change the loop
1735 // comparison to use SLT or ULT instead of NE.
Dan Gohman572645c2010-02-12 10:34:29 +00001736 // One consequence of doing this now is that it disrupts the count-down
1737 // optimization. That's not always a bad thing though, because in such
1738 // cases it may still be worthwhile to avoid a max.
1739 Cond = OptimizeMax(Cond, CondUse);
Evan Cheng076e0852009-11-17 18:10:11 +00001740
Dan Gohman572645c2010-02-12 10:34:29 +00001741 // If this exiting block dominates the latch block, it may also use
1742 // the post-inc value if it won't be shared with other uses.
1743 // Check for dominance.
1744 if (!DT.dominates(ExitingBlock, LatchBlock))
Dan Gohman7979b722010-01-22 00:46:49 +00001745 continue;
Evan Cheng076e0852009-11-17 18:10:11 +00001746
Dan Gohman572645c2010-02-12 10:34:29 +00001747 // Conservatively avoid trying to use the post-inc value in non-latch
1748 // exits if there may be pre-inc users in intervening blocks.
Dan Gohman590bfe82010-02-14 03:21:49 +00001749 if (LatchBlock != ExitingBlock)
Dan Gohman572645c2010-02-12 10:34:29 +00001750 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI)
1751 // Test if the use is reachable from the exiting block. This dominator
1752 // query is a conservative approximation of reachability.
1753 if (&*UI != CondUse &&
1754 !DT.properlyDominates(UI->getUser()->getParent(), ExitingBlock)) {
1755 // Conservatively assume there may be reuse if the quotient of their
1756 // strides could be a legal scale.
Dan Gohmanc0564542010-04-19 21:48:58 +00001757 const SCEV *A = IU.getStride(*CondUse, L);
1758 const SCEV *B = IU.getStride(*UI, L);
Dan Gohman448db1c2010-04-07 22:27:08 +00001759 if (!A || !B) continue;
Dan Gohman572645c2010-02-12 10:34:29 +00001760 if (SE.getTypeSizeInBits(A->getType()) !=
1761 SE.getTypeSizeInBits(B->getType())) {
1762 if (SE.getTypeSizeInBits(A->getType()) >
1763 SE.getTypeSizeInBits(B->getType()))
1764 B = SE.getSignExtendExpr(B, A->getType());
1765 else
1766 A = SE.getSignExtendExpr(A, B->getType());
1767 }
1768 if (const SCEVConstant *D =
Dan Gohmanf09b7122010-02-19 19:35:48 +00001769 dyn_cast_or_null<SCEVConstant>(getExactSDiv(B, A, SE))) {
Dan Gohman9f383eb2010-05-20 22:25:20 +00001770 const ConstantInt *C = D->getValue();
Dan Gohman572645c2010-02-12 10:34:29 +00001771 // Stride of one or negative one can have reuse with non-addresses.
Dan Gohman9f383eb2010-05-20 22:25:20 +00001772 if (C->isOne() || C->isAllOnesValue())
Dan Gohman572645c2010-02-12 10:34:29 +00001773 goto decline_post_inc;
1774 // Avoid weird situations.
Dan Gohman9f383eb2010-05-20 22:25:20 +00001775 if (C->getValue().getMinSignedBits() >= 64 ||
1776 C->getValue().isMinSignedValue())
Dan Gohman572645c2010-02-12 10:34:29 +00001777 goto decline_post_inc;
Dan Gohman590bfe82010-02-14 03:21:49 +00001778 // Without TLI, assume that any stride might be valid, and so any
1779 // use might be shared.
1780 if (!TLI)
1781 goto decline_post_inc;
Dan Gohman572645c2010-02-12 10:34:29 +00001782 // Check for possible scaled-address reuse.
1783 const Type *AccessTy = getAccessType(UI->getUser());
1784 TargetLowering::AddrMode AM;
Dan Gohman9f383eb2010-05-20 22:25:20 +00001785 AM.Scale = C->getSExtValue();
Dan Gohman2763dfd2010-02-14 02:45:21 +00001786 if (TLI->isLegalAddressingMode(AM, AccessTy))
Dan Gohman572645c2010-02-12 10:34:29 +00001787 goto decline_post_inc;
1788 AM.Scale = -AM.Scale;
Dan Gohman2763dfd2010-02-14 02:45:21 +00001789 if (TLI->isLegalAddressingMode(AM, AccessTy))
Dan Gohman572645c2010-02-12 10:34:29 +00001790 goto decline_post_inc;
1791 }
1792 }
1793
David Greene63c94632009-12-23 22:58:38 +00001794 DEBUG(dbgs() << " Change loop exiting icmp to use postinc iv: "
Dan Gohman572645c2010-02-12 10:34:29 +00001795 << *Cond << '\n');
Evan Cheng076e0852009-11-17 18:10:11 +00001796
1797 // It's possible for the setcc instruction to be anywhere in the loop, and
1798 // possible for it to have multiple users. If it is not immediately before
1799 // the exiting block branch, move it.
Dan Gohman572645c2010-02-12 10:34:29 +00001800 if (&*++BasicBlock::iterator(Cond) != TermBr) {
1801 if (Cond->hasOneUse()) {
Evan Cheng076e0852009-11-17 18:10:11 +00001802 Cond->moveBefore(TermBr);
1803 } else {
Dan Gohman572645c2010-02-12 10:34:29 +00001804 // Clone the terminating condition and insert into the loopend.
1805 ICmpInst *OldCond = Cond;
Evan Cheng076e0852009-11-17 18:10:11 +00001806 Cond = cast<ICmpInst>(Cond->clone());
1807 Cond->setName(L->getHeader()->getName() + ".termcond");
1808 ExitingBlock->getInstList().insert(TermBr, Cond);
1809
1810 // Clone the IVUse, as the old use still exists!
Dan Gohmanc0564542010-04-19 21:48:58 +00001811 CondUse = &IU.AddUser(Cond, CondUse->getOperandValToReplace());
Dan Gohman572645c2010-02-12 10:34:29 +00001812 TermBr->replaceUsesOfWith(OldCond, Cond);
Evan Cheng076e0852009-11-17 18:10:11 +00001813 }
Evan Cheng586f69a2009-11-12 07:35:05 +00001814 }
1815
Evan Cheng076e0852009-11-17 18:10:11 +00001816 // If we get to here, we know that we can transform the setcc instruction to
1817 // use the post-incremented version of the IV, allowing us to coalesce the
1818 // live ranges for the IV correctly.
Dan Gohman448db1c2010-04-07 22:27:08 +00001819 CondUse->transformToPostInc(L);
Evan Cheng076e0852009-11-17 18:10:11 +00001820 Changed = true;
1821
Dan Gohman572645c2010-02-12 10:34:29 +00001822 PostIncs.insert(Cond);
1823 decline_post_inc:;
Dan Gohmana10756e2010-01-21 02:09:26 +00001824 }
Dan Gohman572645c2010-02-12 10:34:29 +00001825
1826 // Determine an insertion point for the loop induction variable increment. It
1827 // must dominate all the post-inc comparisons we just set up, and it must
1828 // dominate the loop latch edge.
1829 IVIncInsertPos = L->getLoopLatch()->getTerminator();
1830 for (SmallPtrSet<Instruction *, 4>::const_iterator I = PostIncs.begin(),
1831 E = PostIncs.end(); I != E; ++I) {
1832 BasicBlock *BB =
1833 DT.findNearestCommonDominator(IVIncInsertPos->getParent(),
1834 (*I)->getParent());
1835 if (BB == (*I)->getParent())
1836 IVIncInsertPos = *I;
1837 else if (BB != IVIncInsertPos->getParent())
1838 IVIncInsertPos = BB->getTerminator();
1839 }
Dan Gohmana10756e2010-01-21 02:09:26 +00001840}
1841
Dan Gohman76c315a2010-05-20 20:52:00 +00001842/// reconcileNewOffset - Determine if the given use can accomodate a fixup
1843/// at the given offset and other details. If so, update the use and
1844/// return true.
Dan Gohman572645c2010-02-12 10:34:29 +00001845bool
Dan Gohmanea507f52010-05-20 19:44:23 +00001846LSRInstance::reconcileNewOffset(LSRUse &LU, int64_t NewOffset, bool HasBaseReg,
Dan Gohman572645c2010-02-12 10:34:29 +00001847 LSRUse::KindType Kind, const Type *AccessTy) {
1848 int64_t NewMinOffset = LU.MinOffset;
1849 int64_t NewMaxOffset = LU.MaxOffset;
1850 const Type *NewAccessTy = AccessTy;
Dan Gohman7979b722010-01-22 00:46:49 +00001851
Dan Gohman572645c2010-02-12 10:34:29 +00001852 // Check for a mismatched kind. It's tempting to collapse mismatched kinds to
1853 // something conservative, however this can pessimize in the case that one of
1854 // the uses will have all its uses outside the loop, for example.
1855 if (LU.Kind != Kind)
Dan Gohman7979b722010-01-22 00:46:49 +00001856 return false;
Dan Gohman572645c2010-02-12 10:34:29 +00001857 // Conservatively assume HasBaseReg is true for now.
1858 if (NewOffset < LU.MinOffset) {
Dan Gohmana2086b32010-05-19 23:43:12 +00001859 if (!isAlwaysFoldable(LU.MaxOffset - NewOffset, 0, HasBaseReg,
Dan Gohman454d26d2010-02-22 04:11:59 +00001860 Kind, AccessTy, TLI))
Dan Gohman7979b722010-01-22 00:46:49 +00001861 return false;
Dan Gohman572645c2010-02-12 10:34:29 +00001862 NewMinOffset = NewOffset;
1863 } else if (NewOffset > LU.MaxOffset) {
Dan Gohmana2086b32010-05-19 23:43:12 +00001864 if (!isAlwaysFoldable(NewOffset - LU.MinOffset, 0, HasBaseReg,
Dan Gohman454d26d2010-02-22 04:11:59 +00001865 Kind, AccessTy, TLI))
Dan Gohman7979b722010-01-22 00:46:49 +00001866 return false;
Dan Gohman572645c2010-02-12 10:34:29 +00001867 NewMaxOffset = NewOffset;
Dan Gohmana10756e2010-01-21 02:09:26 +00001868 }
Dan Gohman572645c2010-02-12 10:34:29 +00001869 // Check for a mismatched access type, and fall back conservatively as needed.
Dan Gohman74e5ef02010-06-19 21:30:18 +00001870 // TODO: Be less conservative when the type is similar and can use the same
1871 // addressing modes.
Dan Gohman572645c2010-02-12 10:34:29 +00001872 if (Kind == LSRUse::Address && AccessTy != LU.AccessTy)
1873 NewAccessTy = Type::getVoidTy(AccessTy->getContext());
Dan Gohmana10756e2010-01-21 02:09:26 +00001874
Dan Gohman572645c2010-02-12 10:34:29 +00001875 // Update the use.
1876 LU.MinOffset = NewMinOffset;
1877 LU.MaxOffset = NewMaxOffset;
1878 LU.AccessTy = NewAccessTy;
1879 if (NewOffset != LU.Offsets.back())
1880 LU.Offsets.push_back(NewOffset);
Dan Gohman8b0ade32010-01-21 22:42:49 +00001881 return true;
1882}
1883
Dan Gohman572645c2010-02-12 10:34:29 +00001884/// getUse - Return an LSRUse index and an offset value for a fixup which
1885/// needs the given expression, with the given kind and optional access type.
Dan Gohman3f46a3a2010-03-01 17:49:51 +00001886/// Either reuse an existing use or create a new one, as needed.
Dan Gohman572645c2010-02-12 10:34:29 +00001887std::pair<size_t, int64_t>
1888LSRInstance::getUse(const SCEV *&Expr,
1889 LSRUse::KindType Kind, const Type *AccessTy) {
1890 const SCEV *Copy = Expr;
1891 int64_t Offset = ExtractImmediate(Expr, SE);
Evan Cheng586f69a2009-11-12 07:35:05 +00001892
Dan Gohman572645c2010-02-12 10:34:29 +00001893 // Basic uses can't accept any offset, for example.
Dan Gohman454d26d2010-02-22 04:11:59 +00001894 if (!isAlwaysFoldable(Offset, 0, /*HasBaseReg=*/true, Kind, AccessTy, TLI)) {
Dan Gohman572645c2010-02-12 10:34:29 +00001895 Expr = Copy;
1896 Offset = 0;
1897 }
1898
1899 std::pair<UseMapTy::iterator, bool> P =
Dan Gohman1e3121c2010-06-19 21:29:59 +00001900 UseMap.insert(std::make_pair(std::make_pair(Expr, Kind), 0));
Dan Gohman572645c2010-02-12 10:34:29 +00001901 if (!P.second) {
1902 // A use already existed with this base.
1903 size_t LUIdx = P.first->second;
1904 LSRUse &LU = Uses[LUIdx];
Dan Gohmana2086b32010-05-19 23:43:12 +00001905 if (reconcileNewOffset(LU, Offset, /*HasBaseReg=*/true, Kind, AccessTy))
Dan Gohman572645c2010-02-12 10:34:29 +00001906 // Reuse this use.
1907 return std::make_pair(LUIdx, Offset);
1908 }
1909
1910 // Create a new use.
1911 size_t LUIdx = Uses.size();
1912 P.first->second = LUIdx;
1913 Uses.push_back(LSRUse(Kind, AccessTy));
1914 LSRUse &LU = Uses[LUIdx];
1915
1916 // We don't need to track redundant offsets, but we don't need to go out
1917 // of our way here to avoid them.
1918 if (LU.Offsets.empty() || Offset != LU.Offsets.back())
1919 LU.Offsets.push_back(Offset);
1920
1921 LU.MinOffset = Offset;
1922 LU.MaxOffset = Offset;
1923 return std::make_pair(LUIdx, Offset);
1924}
1925
Dan Gohman5ce6d052010-05-20 15:17:54 +00001926/// DeleteUse - Delete the given use from the Uses list.
1927void LSRInstance::DeleteUse(LSRUse &LU) {
1928 if (&LU != &Uses.back())
1929 std::swap(LU, Uses.back());
1930 Uses.pop_back();
1931}
1932
Dan Gohmana2086b32010-05-19 23:43:12 +00001933/// FindUseWithFormula - Look for a use distinct from OrigLU which is has
1934/// a formula that has the same registers as the given formula.
1935LSRUse *
1936LSRInstance::FindUseWithSimilarFormula(const Formula &OrigF,
1937 const LSRUse &OrigLU) {
Dan Gohman6a832712010-08-29 15:27:08 +00001938 // Search all uses for the formula. This could be more clever.
Dan Gohmana2086b32010-05-19 23:43:12 +00001939 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
1940 LSRUse &LU = Uses[LUIdx];
Dan Gohman6a832712010-08-29 15:27:08 +00001941 // Check whether this use is close enough to OrigLU, to see whether it's
1942 // worthwhile looking through its formulae.
1943 // Ignore ICmpZero uses because they may contain formulae generated by
1944 // GenerateICmpZeroScales, in which case adding fixup offsets may
1945 // be invalid.
Dan Gohmana2086b32010-05-19 23:43:12 +00001946 if (&LU != &OrigLU &&
1947 LU.Kind != LSRUse::ICmpZero &&
1948 LU.Kind == OrigLU.Kind && OrigLU.AccessTy == LU.AccessTy &&
Dan Gohmana9db1292010-07-15 20:24:58 +00001949 LU.WidestFixupType == OrigLU.WidestFixupType &&
Dan Gohmana2086b32010-05-19 23:43:12 +00001950 LU.HasFormulaWithSameRegs(OrigF)) {
Dan Gohman6a832712010-08-29 15:27:08 +00001951 // Scan through this use's formulae.
Dan Gohman402d4352010-05-20 20:33:18 +00001952 for (SmallVectorImpl<Formula>::const_iterator I = LU.Formulae.begin(),
1953 E = LU.Formulae.end(); I != E; ++I) {
1954 const Formula &F = *I;
Dan Gohman6a832712010-08-29 15:27:08 +00001955 // Check to see if this formula has the same registers and symbols
1956 // as OrigF.
Dan Gohmana2086b32010-05-19 23:43:12 +00001957 if (F.BaseRegs == OrigF.BaseRegs &&
1958 F.ScaledReg == OrigF.ScaledReg &&
1959 F.AM.BaseGV == OrigF.AM.BaseGV &&
Dan Gohmane39a47c2010-08-29 15:30:29 +00001960 F.AM.Scale == OrigF.AM.Scale) {
Dan Gohmana2086b32010-05-19 23:43:12 +00001961 if (F.AM.BaseOffs == 0)
1962 return &LU;
Dan Gohman6a832712010-08-29 15:27:08 +00001963 // This is the formula where all the registers and symbols matched;
1964 // there aren't going to be any others. Since we declined it, we
1965 // can skip the rest of the formulae and procede to the next LSRUse.
Dan Gohmana2086b32010-05-19 23:43:12 +00001966 break;
1967 }
1968 }
1969 }
1970 }
1971
Dan Gohman6a832712010-08-29 15:27:08 +00001972 // Nothing looked good.
Dan Gohmana2086b32010-05-19 23:43:12 +00001973 return 0;
1974}
1975
Dan Gohman572645c2010-02-12 10:34:29 +00001976void LSRInstance::CollectInterestingTypesAndFactors() {
1977 SmallSetVector<const SCEV *, 4> Strides;
1978
Dan Gohman1b7bf182010-02-19 00:05:23 +00001979 // Collect interesting types and strides.
Dan Gohman448db1c2010-04-07 22:27:08 +00001980 SmallVector<const SCEV *, 4> Worklist;
Dan Gohman572645c2010-02-12 10:34:29 +00001981 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI) {
Dan Gohmanc0564542010-04-19 21:48:58 +00001982 const SCEV *Expr = IU.getExpr(*UI);
Dan Gohman572645c2010-02-12 10:34:29 +00001983
1984 // Collect interesting types.
Dan Gohman448db1c2010-04-07 22:27:08 +00001985 Types.insert(SE.getEffectiveSCEVType(Expr->getType()));
Dan Gohman572645c2010-02-12 10:34:29 +00001986
Dan Gohman448db1c2010-04-07 22:27:08 +00001987 // Add strides for mentioned loops.
1988 Worklist.push_back(Expr);
1989 do {
1990 const SCEV *S = Worklist.pop_back_val();
1991 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
1992 Strides.insert(AR->getStepRecurrence(SE));
1993 Worklist.push_back(AR->getStart());
1994 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
Dan Gohman403a8cd2010-06-21 19:47:52 +00001995 Worklist.append(Add->op_begin(), Add->op_end());
Dan Gohman448db1c2010-04-07 22:27:08 +00001996 }
1997 } while (!Worklist.empty());
Dan Gohman1b7bf182010-02-19 00:05:23 +00001998 }
1999
2000 // Compute interesting factors from the set of interesting strides.
2001 for (SmallSetVector<const SCEV *, 4>::const_iterator
2002 I = Strides.begin(), E = Strides.end(); I != E; ++I)
Dan Gohman572645c2010-02-12 10:34:29 +00002003 for (SmallSetVector<const SCEV *, 4>::const_iterator NewStrideIter =
Oscar Fuentesee56c422010-08-02 06:00:15 +00002004 llvm::next(I); NewStrideIter != E; ++NewStrideIter) {
Dan Gohman1b7bf182010-02-19 00:05:23 +00002005 const SCEV *OldStride = *I;
Dan Gohman572645c2010-02-12 10:34:29 +00002006 const SCEV *NewStride = *NewStrideIter;
Dan Gohman572645c2010-02-12 10:34:29 +00002007
2008 if (SE.getTypeSizeInBits(OldStride->getType()) !=
2009 SE.getTypeSizeInBits(NewStride->getType())) {
2010 if (SE.getTypeSizeInBits(OldStride->getType()) >
2011 SE.getTypeSizeInBits(NewStride->getType()))
2012 NewStride = SE.getSignExtendExpr(NewStride, OldStride->getType());
2013 else
2014 OldStride = SE.getSignExtendExpr(OldStride, NewStride->getType());
2015 }
2016 if (const SCEVConstant *Factor =
Dan Gohmanf09b7122010-02-19 19:35:48 +00002017 dyn_cast_or_null<SCEVConstant>(getExactSDiv(NewStride, OldStride,
2018 SE, true))) {
Dan Gohman572645c2010-02-12 10:34:29 +00002019 if (Factor->getValue()->getValue().getMinSignedBits() <= 64)
2020 Factors.insert(Factor->getValue()->getValue().getSExtValue());
2021 } else if (const SCEVConstant *Factor =
Dan Gohman454d26d2010-02-22 04:11:59 +00002022 dyn_cast_or_null<SCEVConstant>(getExactSDiv(OldStride,
2023 NewStride,
Dan Gohmanf09b7122010-02-19 19:35:48 +00002024 SE, true))) {
Dan Gohman572645c2010-02-12 10:34:29 +00002025 if (Factor->getValue()->getValue().getMinSignedBits() <= 64)
2026 Factors.insert(Factor->getValue()->getValue().getSExtValue());
2027 }
2028 }
Dan Gohman572645c2010-02-12 10:34:29 +00002029
2030 // If all uses use the same type, don't bother looking for truncation-based
2031 // reuse.
2032 if (Types.size() == 1)
2033 Types.clear();
2034
2035 DEBUG(print_factors_and_types(dbgs()));
2036}
2037
2038void LSRInstance::CollectFixupsAndInitialFormulae() {
2039 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI) {
2040 // Record the uses.
2041 LSRFixup &LF = getNewFixup();
2042 LF.UserInst = UI->getUser();
2043 LF.OperandValToReplace = UI->getOperandValToReplace();
Dan Gohman448db1c2010-04-07 22:27:08 +00002044 LF.PostIncLoops = UI->getPostIncLoops();
Dan Gohman572645c2010-02-12 10:34:29 +00002045
2046 LSRUse::KindType Kind = LSRUse::Basic;
2047 const Type *AccessTy = 0;
2048 if (isAddressUse(LF.UserInst, LF.OperandValToReplace)) {
2049 Kind = LSRUse::Address;
2050 AccessTy = getAccessType(LF.UserInst);
2051 }
2052
Dan Gohmanc0564542010-04-19 21:48:58 +00002053 const SCEV *S = IU.getExpr(*UI);
Dan Gohman572645c2010-02-12 10:34:29 +00002054
2055 // Equality (== and !=) ICmps are special. We can rewrite (i == N) as
2056 // (N - i == 0), and this allows (N - i) to be the expression that we work
2057 // with rather than just N or i, so we can consider the register
2058 // requirements for both N and i at the same time. Limiting this code to
2059 // equality icmps is not a problem because all interesting loops use
2060 // equality icmps, thanks to IndVarSimplify.
2061 if (ICmpInst *CI = dyn_cast<ICmpInst>(LF.UserInst))
2062 if (CI->isEquality()) {
2063 // Swap the operands if needed to put the OperandValToReplace on the
2064 // left, for consistency.
2065 Value *NV = CI->getOperand(1);
2066 if (NV == LF.OperandValToReplace) {
2067 CI->setOperand(1, CI->getOperand(0));
2068 CI->setOperand(0, NV);
Dan Gohmanf182b232010-05-20 19:26:52 +00002069 NV = CI->getOperand(1);
Dan Gohman9da1bf42010-05-20 19:16:03 +00002070 Changed = true;
Dan Gohman572645c2010-02-12 10:34:29 +00002071 }
2072
2073 // x == y --> x - y == 0
2074 const SCEV *N = SE.getSCEV(NV);
2075 if (N->isLoopInvariant(L)) {
2076 Kind = LSRUse::ICmpZero;
2077 S = SE.getMinusSCEV(N, S);
2078 }
2079
2080 // -1 and the negations of all interesting strides (except the negation
2081 // of -1) are now also interesting.
2082 for (size_t i = 0, e = Factors.size(); i != e; ++i)
2083 if (Factors[i] != -1)
2084 Factors.insert(-(uint64_t)Factors[i]);
2085 Factors.insert(-1);
2086 }
2087
2088 // Set up the initial formula for this use.
2089 std::pair<size_t, int64_t> P = getUse(S, Kind, AccessTy);
2090 LF.LUIdx = P.first;
2091 LF.Offset = P.second;
2092 LSRUse &LU = Uses[LF.LUIdx];
Dan Gohman448db1c2010-04-07 22:27:08 +00002093 LU.AllFixupsOutsideLoop &= LF.isUseFullyOutsideLoop(L);
Dan Gohmana9db1292010-07-15 20:24:58 +00002094 if (!LU.WidestFixupType ||
2095 SE.getTypeSizeInBits(LU.WidestFixupType) <
2096 SE.getTypeSizeInBits(LF.OperandValToReplace->getType()))
2097 LU.WidestFixupType = LF.OperandValToReplace->getType();
Dan Gohman572645c2010-02-12 10:34:29 +00002098
2099 // If this is the first use of this LSRUse, give it a formula.
2100 if (LU.Formulae.empty()) {
Dan Gohman454d26d2010-02-22 04:11:59 +00002101 InsertInitialFormula(S, LU, LF.LUIdx);
Dan Gohman572645c2010-02-12 10:34:29 +00002102 CountRegisters(LU.Formulae.back(), LF.LUIdx);
2103 }
2104 }
2105
2106 DEBUG(print_fixups(dbgs()));
2107}
2108
Dan Gohman76c315a2010-05-20 20:52:00 +00002109/// InsertInitialFormula - Insert a formula for the given expression into
2110/// the given use, separating out loop-variant portions from loop-invariant
2111/// and loop-computable portions.
Dan Gohman572645c2010-02-12 10:34:29 +00002112void
Dan Gohman454d26d2010-02-22 04:11:59 +00002113LSRInstance::InsertInitialFormula(const SCEV *S, LSRUse &LU, size_t LUIdx) {
Dan Gohman572645c2010-02-12 10:34:29 +00002114 Formula F;
2115 F.InitialMatch(S, L, SE, DT);
2116 bool Inserted = InsertFormula(LU, LUIdx, F);
2117 assert(Inserted && "Initial formula already exists!"); (void)Inserted;
2118}
2119
Dan Gohman76c315a2010-05-20 20:52:00 +00002120/// InsertSupplementalFormula - Insert a simple single-register formula for
2121/// the given expression into the given use.
Dan Gohman572645c2010-02-12 10:34:29 +00002122void
2123LSRInstance::InsertSupplementalFormula(const SCEV *S,
2124 LSRUse &LU, size_t LUIdx) {
2125 Formula F;
2126 F.BaseRegs.push_back(S);
2127 F.AM.HasBaseReg = true;
2128 bool Inserted = InsertFormula(LU, LUIdx, F);
2129 assert(Inserted && "Supplemental formula already exists!"); (void)Inserted;
2130}
2131
2132/// CountRegisters - Note which registers are used by the given formula,
2133/// updating RegUses.
2134void LSRInstance::CountRegisters(const Formula &F, size_t LUIdx) {
2135 if (F.ScaledReg)
2136 RegUses.CountRegister(F.ScaledReg, LUIdx);
2137 for (SmallVectorImpl<const SCEV *>::const_iterator I = F.BaseRegs.begin(),
2138 E = F.BaseRegs.end(); I != E; ++I)
2139 RegUses.CountRegister(*I, LUIdx);
2140}
2141
2142/// InsertFormula - If the given formula has not yet been inserted, add it to
2143/// the list, and return true. Return false otherwise.
2144bool LSRInstance::InsertFormula(LSRUse &LU, unsigned LUIdx, const Formula &F) {
Dan Gohman454d26d2010-02-22 04:11:59 +00002145 if (!LU.InsertFormula(F))
Dan Gohman572645c2010-02-12 10:34:29 +00002146 return false;
2147
2148 CountRegisters(F, LUIdx);
2149 return true;
2150}
2151
2152/// CollectLoopInvariantFixupsAndFormulae - Check for other uses of
2153/// loop-invariant values which we're tracking. These other uses will pin these
2154/// values in registers, making them less profitable for elimination.
2155/// TODO: This currently misses non-constant addrec step registers.
2156/// TODO: Should this give more weight to users inside the loop?
2157void
2158LSRInstance::CollectLoopInvariantFixupsAndFormulae() {
2159 SmallVector<const SCEV *, 8> Worklist(RegUses.begin(), RegUses.end());
2160 SmallPtrSet<const SCEV *, 8> Inserted;
2161
2162 while (!Worklist.empty()) {
2163 const SCEV *S = Worklist.pop_back_val();
2164
2165 if (const SCEVNAryExpr *N = dyn_cast<SCEVNAryExpr>(S))
Dan Gohman403a8cd2010-06-21 19:47:52 +00002166 Worklist.append(N->op_begin(), N->op_end());
Dan Gohman572645c2010-02-12 10:34:29 +00002167 else if (const SCEVCastExpr *C = dyn_cast<SCEVCastExpr>(S))
2168 Worklist.push_back(C->getOperand());
2169 else if (const SCEVUDivExpr *D = dyn_cast<SCEVUDivExpr>(S)) {
2170 Worklist.push_back(D->getLHS());
2171 Worklist.push_back(D->getRHS());
2172 } else if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(S)) {
2173 if (!Inserted.insert(U)) continue;
2174 const Value *V = U->getValue();
Dan Gohmana15ec5d2010-06-04 23:16:05 +00002175 if (const Instruction *Inst = dyn_cast<Instruction>(V)) {
2176 // Look for instructions defined outside the loop.
Dan Gohman572645c2010-02-12 10:34:29 +00002177 if (L->contains(Inst)) continue;
Dan Gohmana15ec5d2010-06-04 23:16:05 +00002178 } else if (isa<UndefValue>(V))
2179 // Undef doesn't have a live range, so it doesn't matter.
2180 continue;
Gabor Greif60ad7812010-03-25 23:06:16 +00002181 for (Value::const_use_iterator UI = V->use_begin(), UE = V->use_end();
Dan Gohman572645c2010-02-12 10:34:29 +00002182 UI != UE; ++UI) {
2183 const Instruction *UserInst = dyn_cast<Instruction>(*UI);
2184 // Ignore non-instructions.
2185 if (!UserInst)
Dan Gohman7979b722010-01-22 00:46:49 +00002186 continue;
Dan Gohman572645c2010-02-12 10:34:29 +00002187 // Ignore instructions in other functions (as can happen with
2188 // Constants).
2189 if (UserInst->getParent()->getParent() != L->getHeader()->getParent())
Dan Gohman7979b722010-01-22 00:46:49 +00002190 continue;
Dan Gohman572645c2010-02-12 10:34:29 +00002191 // Ignore instructions not dominated by the loop.
2192 const BasicBlock *UseBB = !isa<PHINode>(UserInst) ?
2193 UserInst->getParent() :
2194 cast<PHINode>(UserInst)->getIncomingBlock(
2195 PHINode::getIncomingValueNumForOperand(UI.getOperandNo()));
2196 if (!DT.dominates(L->getHeader(), UseBB))
2197 continue;
2198 // Ignore uses which are part of other SCEV expressions, to avoid
2199 // analyzing them multiple times.
Dan Gohman4a2a6832010-04-09 19:12:34 +00002200 if (SE.isSCEVable(UserInst->getType())) {
2201 const SCEV *UserS = SE.getSCEV(const_cast<Instruction *>(UserInst));
2202 // If the user is a no-op, look through to its uses.
2203 if (!isa<SCEVUnknown>(UserS))
2204 continue;
2205 if (UserS == U) {
2206 Worklist.push_back(
2207 SE.getUnknown(const_cast<Instruction *>(UserInst)));
2208 continue;
2209 }
2210 }
Dan Gohman572645c2010-02-12 10:34:29 +00002211 // Ignore icmp instructions which are already being analyzed.
2212 if (const ICmpInst *ICI = dyn_cast<ICmpInst>(UserInst)) {
2213 unsigned OtherIdx = !UI.getOperandNo();
2214 Value *OtherOp = const_cast<Value *>(ICI->getOperand(OtherIdx));
2215 if (SE.getSCEV(OtherOp)->hasComputableLoopEvolution(L))
2216 continue;
2217 }
2218
2219 LSRFixup &LF = getNewFixup();
2220 LF.UserInst = const_cast<Instruction *>(UserInst);
2221 LF.OperandValToReplace = UI.getUse();
2222 std::pair<size_t, int64_t> P = getUse(S, LSRUse::Basic, 0);
2223 LF.LUIdx = P.first;
2224 LF.Offset = P.second;
2225 LSRUse &LU = Uses[LF.LUIdx];
Dan Gohman448db1c2010-04-07 22:27:08 +00002226 LU.AllFixupsOutsideLoop &= LF.isUseFullyOutsideLoop(L);
Dan Gohmana9db1292010-07-15 20:24:58 +00002227 if (!LU.WidestFixupType ||
2228 SE.getTypeSizeInBits(LU.WidestFixupType) <
2229 SE.getTypeSizeInBits(LF.OperandValToReplace->getType()))
2230 LU.WidestFixupType = LF.OperandValToReplace->getType();
Dan Gohman572645c2010-02-12 10:34:29 +00002231 InsertSupplementalFormula(U, LU, LF.LUIdx);
2232 CountRegisters(LU.Formulae.back(), Uses.size() - 1);
2233 break;
2234 }
2235 }
2236 }
2237}
2238
2239/// CollectSubexprs - Split S into subexpressions which can be pulled out into
2240/// separate registers. If C is non-null, multiply each subexpression by C.
2241static void CollectSubexprs(const SCEV *S, const SCEVConstant *C,
2242 SmallVectorImpl<const SCEV *> &Ops,
Dan Gohman3e3f15b2010-06-25 22:32:18 +00002243 const Loop *L,
Dan Gohman572645c2010-02-12 10:34:29 +00002244 ScalarEvolution &SE) {
2245 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
2246 // Break out add operands.
2247 for (SCEVAddExpr::op_iterator I = Add->op_begin(), E = Add->op_end();
2248 I != E; ++I)
Dan Gohman3e22b7c2010-08-16 15:50:00 +00002249 CollectSubexprs(*I, C, Ops, L, SE);
Dan Gohman572645c2010-02-12 10:34:29 +00002250 return;
2251 } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
2252 // Split a non-zero base out of an addrec.
2253 if (!AR->getStart()->isZero()) {
Dan Gohmandeff6212010-05-03 22:09:21 +00002254 CollectSubexprs(SE.getAddRecExpr(SE.getConstant(AR->getType(), 0),
Dan Gohman572645c2010-02-12 10:34:29 +00002255 AR->getStepRecurrence(SE),
Dan Gohman3e3f15b2010-06-25 22:32:18 +00002256 AR->getLoop()),
Dan Gohman3e22b7c2010-08-16 15:50:00 +00002257 C, Ops, L, SE);
2258 CollectSubexprs(AR->getStart(), C, Ops, L, SE);
Dan Gohman572645c2010-02-12 10:34:29 +00002259 return;
2260 }
2261 } else if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S)) {
2262 // Break (C * (a + b + c)) into C*a + C*b + C*c.
2263 if (Mul->getNumOperands() == 2)
2264 if (const SCEVConstant *Op0 =
2265 dyn_cast<SCEVConstant>(Mul->getOperand(0))) {
2266 CollectSubexprs(Mul->getOperand(1),
2267 C ? cast<SCEVConstant>(SE.getMulExpr(C, Op0)) : Op0,
Dan Gohman3e22b7c2010-08-16 15:50:00 +00002268 Ops, L, SE);
Dan Gohman572645c2010-02-12 10:34:29 +00002269 return;
2270 }
2271 }
2272
Dan Gohman3e22b7c2010-08-16 15:50:00 +00002273 // Otherwise use the value itself, optionally with a scale applied.
2274 Ops.push_back(C ? SE.getMulExpr(C, S) : S);
Dan Gohman572645c2010-02-12 10:34:29 +00002275}
2276
2277/// GenerateReassociations - Split out subexpressions from adds and the bases of
2278/// addrecs.
2279void LSRInstance::GenerateReassociations(LSRUse &LU, unsigned LUIdx,
2280 Formula Base,
2281 unsigned Depth) {
2282 // Arbitrarily cap recursion to protect compile time.
2283 if (Depth >= 3) return;
2284
2285 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i) {
2286 const SCEV *BaseReg = Base.BaseRegs[i];
2287
Dan Gohman3e22b7c2010-08-16 15:50:00 +00002288 SmallVector<const SCEV *, 8> AddOps;
2289 CollectSubexprs(BaseReg, 0, AddOps, L, SE);
Dan Gohman3e3f15b2010-06-25 22:32:18 +00002290
Dan Gohman572645c2010-02-12 10:34:29 +00002291 if (AddOps.size() == 1) continue;
2292
2293 for (SmallVectorImpl<const SCEV *>::const_iterator J = AddOps.begin(),
2294 JE = AddOps.end(); J != JE; ++J) {
Dan Gohman3e22b7c2010-08-16 15:50:00 +00002295
2296 // Loop-variant "unknown" values are uninteresting; we won't be able to
2297 // do anything meaningful with them.
2298 if (isa<SCEVUnknown>(*J) && !(*J)->isLoopInvariant(L))
2299 continue;
2300
Dan Gohman572645c2010-02-12 10:34:29 +00002301 // Don't pull a constant into a register if the constant could be folded
2302 // into an immediate field.
2303 if (isAlwaysFoldable(*J, LU.MinOffset, LU.MaxOffset,
2304 Base.getNumRegs() > 1,
2305 LU.Kind, LU.AccessTy, TLI, SE))
2306 continue;
2307
2308 // Collect all operands except *J.
Dan Gohman403a8cd2010-06-21 19:47:52 +00002309 SmallVector<const SCEV *, 8> InnerAddOps
Dan Gohman4eaee282010-08-04 17:43:57 +00002310 (((const SmallVector<const SCEV *, 8> &)AddOps).begin(), J);
Dan Gohman403a8cd2010-06-21 19:47:52 +00002311 InnerAddOps.append
Oscar Fuentesee56c422010-08-02 06:00:15 +00002312 (llvm::next(J), ((const SmallVector<const SCEV *, 8> &)AddOps).end());
Dan Gohman572645c2010-02-12 10:34:29 +00002313
2314 // Don't leave just a constant behind in a register if the constant could
2315 // be folded into an immediate field.
2316 if (InnerAddOps.size() == 1 &&
2317 isAlwaysFoldable(InnerAddOps[0], LU.MinOffset, LU.MaxOffset,
2318 Base.getNumRegs() > 1,
2319 LU.Kind, LU.AccessTy, TLI, SE))
2320 continue;
2321
Dan Gohmanfafb8902010-04-23 01:55:05 +00002322 const SCEV *InnerSum = SE.getAddExpr(InnerAddOps);
2323 if (InnerSum->isZero())
2324 continue;
Dan Gohman572645c2010-02-12 10:34:29 +00002325 Formula F = Base;
Dan Gohmanfafb8902010-04-23 01:55:05 +00002326 F.BaseRegs[i] = InnerSum;
Dan Gohman572645c2010-02-12 10:34:29 +00002327 F.BaseRegs.push_back(*J);
2328 if (InsertFormula(LU, LUIdx, F))
2329 // If that formula hadn't been seen before, recurse to find more like
2330 // it.
2331 GenerateReassociations(LU, LUIdx, LU.Formulae.back(), Depth+1);
2332 }
2333 }
2334}
2335
2336/// GenerateCombinations - Generate a formula consisting of all of the
2337/// loop-dominating registers added into a single register.
2338void LSRInstance::GenerateCombinations(LSRUse &LU, unsigned LUIdx,
Dan Gohman441a3892010-02-14 18:51:39 +00002339 Formula Base) {
Dan Gohman3f46a3a2010-03-01 17:49:51 +00002340 // This method is only interesting on a plurality of registers.
Dan Gohman572645c2010-02-12 10:34:29 +00002341 if (Base.BaseRegs.size() <= 1) return;
2342
2343 Formula F = Base;
2344 F.BaseRegs.clear();
2345 SmallVector<const SCEV *, 4> Ops;
2346 for (SmallVectorImpl<const SCEV *>::const_iterator
2347 I = Base.BaseRegs.begin(), E = Base.BaseRegs.end(); I != E; ++I) {
2348 const SCEV *BaseReg = *I;
2349 if (BaseReg->properlyDominates(L->getHeader(), &DT) &&
2350 !BaseReg->hasComputableLoopEvolution(L))
2351 Ops.push_back(BaseReg);
2352 else
2353 F.BaseRegs.push_back(BaseReg);
2354 }
2355 if (Ops.size() > 1) {
Dan Gohmance947362010-02-14 18:50:49 +00002356 const SCEV *Sum = SE.getAddExpr(Ops);
2357 // TODO: If Sum is zero, it probably means ScalarEvolution missed an
2358 // opportunity to fold something. For now, just ignore such cases
Dan Gohman3f46a3a2010-03-01 17:49:51 +00002359 // rather than proceed with zero in a register.
Dan Gohmance947362010-02-14 18:50:49 +00002360 if (!Sum->isZero()) {
2361 F.BaseRegs.push_back(Sum);
2362 (void)InsertFormula(LU, LUIdx, F);
2363 }
Dan Gohman572645c2010-02-12 10:34:29 +00002364 }
2365}
2366
2367/// GenerateSymbolicOffsets - Generate reuse formulae using symbolic offsets.
2368void LSRInstance::GenerateSymbolicOffsets(LSRUse &LU, unsigned LUIdx,
2369 Formula Base) {
2370 // We can't add a symbolic offset if the address already contains one.
2371 if (Base.AM.BaseGV) return;
2372
2373 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i) {
2374 const SCEV *G = Base.BaseRegs[i];
2375 GlobalValue *GV = ExtractSymbol(G, SE);
2376 if (G->isZero() || !GV)
2377 continue;
2378 Formula F = Base;
2379 F.AM.BaseGV = GV;
2380 if (!isLegalUse(F.AM, LU.MinOffset, LU.MaxOffset,
2381 LU.Kind, LU.AccessTy, TLI))
2382 continue;
2383 F.BaseRegs[i] = G;
2384 (void)InsertFormula(LU, LUIdx, F);
2385 }
2386}
2387
2388/// GenerateConstantOffsets - Generate reuse formulae using symbolic offsets.
2389void LSRInstance::GenerateConstantOffsets(LSRUse &LU, unsigned LUIdx,
2390 Formula Base) {
2391 // TODO: For now, just add the min and max offset, because it usually isn't
2392 // worthwhile looking at everything inbetween.
Dan Gohmanc88c1a42010-07-15 15:14:45 +00002393 SmallVector<int64_t, 2> Worklist;
Dan Gohman572645c2010-02-12 10:34:29 +00002394 Worklist.push_back(LU.MinOffset);
2395 if (LU.MaxOffset != LU.MinOffset)
2396 Worklist.push_back(LU.MaxOffset);
2397
2398 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i) {
2399 const SCEV *G = Base.BaseRegs[i];
2400
2401 for (SmallVectorImpl<int64_t>::const_iterator I = Worklist.begin(),
2402 E = Worklist.end(); I != E; ++I) {
2403 Formula F = Base;
2404 F.AM.BaseOffs = (uint64_t)Base.AM.BaseOffs - *I;
2405 if (isLegalUse(F.AM, LU.MinOffset - *I, LU.MaxOffset - *I,
2406 LU.Kind, LU.AccessTy, TLI)) {
Dan Gohmanc88c1a42010-07-15 15:14:45 +00002407 // Add the offset to the base register.
Dan Gohman4065f602010-08-16 15:39:27 +00002408 const SCEV *NewG = SE.getAddExpr(SE.getConstant(G->getType(), *I), G);
Dan Gohmanc88c1a42010-07-15 15:14:45 +00002409 // If it cancelled out, drop the base register, otherwise update it.
2410 if (NewG->isZero()) {
2411 std::swap(F.BaseRegs[i], F.BaseRegs.back());
2412 F.BaseRegs.pop_back();
2413 } else
2414 F.BaseRegs[i] = NewG;
Dan Gohman572645c2010-02-12 10:34:29 +00002415
2416 (void)InsertFormula(LU, LUIdx, F);
2417 }
2418 }
2419
2420 int64_t Imm = ExtractImmediate(G, SE);
2421 if (G->isZero() || Imm == 0)
2422 continue;
2423 Formula F = Base;
2424 F.AM.BaseOffs = (uint64_t)F.AM.BaseOffs + Imm;
2425 if (!isLegalUse(F.AM, LU.MinOffset, LU.MaxOffset,
2426 LU.Kind, LU.AccessTy, TLI))
2427 continue;
2428 F.BaseRegs[i] = G;
2429 (void)InsertFormula(LU, LUIdx, F);
2430 }
2431}
2432
2433/// GenerateICmpZeroScales - For ICmpZero, check to see if we can scale up
2434/// the comparison. For example, x == y -> x*c == y*c.
2435void LSRInstance::GenerateICmpZeroScales(LSRUse &LU, unsigned LUIdx,
2436 Formula Base) {
2437 if (LU.Kind != LSRUse::ICmpZero) return;
2438
2439 // Determine the integer type for the base formula.
2440 const Type *IntTy = Base.getType();
2441 if (!IntTy) return;
2442 if (SE.getTypeSizeInBits(IntTy) > 64) return;
2443
2444 // Don't do this if there is more than one offset.
2445 if (LU.MinOffset != LU.MaxOffset) return;
2446
2447 assert(!Base.AM.BaseGV && "ICmpZero use is not legal!");
2448
2449 // Check each interesting stride.
2450 for (SmallSetVector<int64_t, 8>::const_iterator
2451 I = Factors.begin(), E = Factors.end(); I != E; ++I) {
2452 int64_t Factor = *I;
Dan Gohman572645c2010-02-12 10:34:29 +00002453
2454 // Check that the multiplication doesn't overflow.
Dan Gohman2ea09e02010-06-24 16:57:52 +00002455 if (Base.AM.BaseOffs == INT64_MIN && Factor == -1)
Dan Gohman968cb932010-02-17 00:41:53 +00002456 continue;
Dan Gohman2ea09e02010-06-24 16:57:52 +00002457 int64_t NewBaseOffs = (uint64_t)Base.AM.BaseOffs * Factor;
2458 if (NewBaseOffs / Factor != Base.AM.BaseOffs)
Dan Gohman572645c2010-02-12 10:34:29 +00002459 continue;
2460
2461 // Check that multiplying with the use offset doesn't overflow.
2462 int64_t Offset = LU.MinOffset;
Dan Gohman968cb932010-02-17 00:41:53 +00002463 if (Offset == INT64_MIN && Factor == -1)
2464 continue;
Dan Gohman572645c2010-02-12 10:34:29 +00002465 Offset = (uint64_t)Offset * Factor;
Dan Gohman378c0b32010-02-17 00:42:19 +00002466 if (Offset / Factor != LU.MinOffset)
Dan Gohman572645c2010-02-12 10:34:29 +00002467 continue;
2468
Dan Gohman2ea09e02010-06-24 16:57:52 +00002469 Formula F = Base;
2470 F.AM.BaseOffs = NewBaseOffs;
2471
Dan Gohman572645c2010-02-12 10:34:29 +00002472 // Check that this scale is legal.
2473 if (!isLegalUse(F.AM, Offset, Offset, LU.Kind, LU.AccessTy, TLI))
2474 continue;
2475
2476 // Compensate for the use having MinOffset built into it.
2477 F.AM.BaseOffs = (uint64_t)F.AM.BaseOffs + Offset - LU.MinOffset;
2478
Dan Gohmandeff6212010-05-03 22:09:21 +00002479 const SCEV *FactorS = SE.getConstant(IntTy, Factor);
Dan Gohman572645c2010-02-12 10:34:29 +00002480
2481 // Check that multiplying with each base register doesn't overflow.
2482 for (size_t i = 0, e = F.BaseRegs.size(); i != e; ++i) {
2483 F.BaseRegs[i] = SE.getMulExpr(F.BaseRegs[i], FactorS);
Dan Gohmanf09b7122010-02-19 19:35:48 +00002484 if (getExactSDiv(F.BaseRegs[i], FactorS, SE) != Base.BaseRegs[i])
Dan Gohman572645c2010-02-12 10:34:29 +00002485 goto next;
2486 }
2487
2488 // Check that multiplying with the scaled register doesn't overflow.
2489 if (F.ScaledReg) {
2490 F.ScaledReg = SE.getMulExpr(F.ScaledReg, FactorS);
Dan Gohmanf09b7122010-02-19 19:35:48 +00002491 if (getExactSDiv(F.ScaledReg, FactorS, SE) != Base.ScaledReg)
Dan Gohman572645c2010-02-12 10:34:29 +00002492 continue;
2493 }
2494
2495 // If we make it here and it's legal, add it.
2496 (void)InsertFormula(LU, LUIdx, F);
2497 next:;
2498 }
2499}
2500
2501/// GenerateScales - Generate stride factor reuse formulae by making use of
2502/// scaled-offset address modes, for example.
Dan Gohmanea507f52010-05-20 19:44:23 +00002503void LSRInstance::GenerateScales(LSRUse &LU, unsigned LUIdx, Formula Base) {
Dan Gohman572645c2010-02-12 10:34:29 +00002504 // Determine the integer type for the base formula.
2505 const Type *IntTy = Base.getType();
2506 if (!IntTy) return;
2507
2508 // If this Formula already has a scaled register, we can't add another one.
2509 if (Base.AM.Scale != 0) return;
2510
2511 // Check each interesting stride.
2512 for (SmallSetVector<int64_t, 8>::const_iterator
2513 I = Factors.begin(), E = Factors.end(); I != E; ++I) {
2514 int64_t Factor = *I;
2515
2516 Base.AM.Scale = Factor;
2517 Base.AM.HasBaseReg = Base.BaseRegs.size() > 1;
2518 // Check whether this scale is going to be legal.
2519 if (!isLegalUse(Base.AM, LU.MinOffset, LU.MaxOffset,
2520 LU.Kind, LU.AccessTy, TLI)) {
2521 // As a special-case, handle special out-of-loop Basic users specially.
2522 // TODO: Reconsider this special case.
2523 if (LU.Kind == LSRUse::Basic &&
2524 isLegalUse(Base.AM, LU.MinOffset, LU.MaxOffset,
2525 LSRUse::Special, LU.AccessTy, TLI) &&
2526 LU.AllFixupsOutsideLoop)
2527 LU.Kind = LSRUse::Special;
2528 else
2529 continue;
2530 }
2531 // For an ICmpZero, negating a solitary base register won't lead to
2532 // new solutions.
2533 if (LU.Kind == LSRUse::ICmpZero &&
2534 !Base.AM.HasBaseReg && Base.AM.BaseOffs == 0 && !Base.AM.BaseGV)
2535 continue;
2536 // For each addrec base reg, apply the scale, if possible.
2537 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i)
2538 if (const SCEVAddRecExpr *AR =
2539 dyn_cast<SCEVAddRecExpr>(Base.BaseRegs[i])) {
Dan Gohmandeff6212010-05-03 22:09:21 +00002540 const SCEV *FactorS = SE.getConstant(IntTy, Factor);
Dan Gohman572645c2010-02-12 10:34:29 +00002541 if (FactorS->isZero())
2542 continue;
2543 // Divide out the factor, ignoring high bits, since we'll be
2544 // scaling the value back up in the end.
Dan Gohmanf09b7122010-02-19 19:35:48 +00002545 if (const SCEV *Quotient = getExactSDiv(AR, FactorS, SE, true)) {
Dan Gohman572645c2010-02-12 10:34:29 +00002546 // TODO: This could be optimized to avoid all the copying.
2547 Formula F = Base;
2548 F.ScaledReg = Quotient;
Dan Gohman5ce6d052010-05-20 15:17:54 +00002549 F.DeleteBaseReg(F.BaseRegs[i]);
Dan Gohman572645c2010-02-12 10:34:29 +00002550 (void)InsertFormula(LU, LUIdx, F);
2551 }
2552 }
2553 }
2554}
2555
2556/// GenerateTruncates - Generate reuse formulae from different IV types.
Dan Gohmanea507f52010-05-20 19:44:23 +00002557void LSRInstance::GenerateTruncates(LSRUse &LU, unsigned LUIdx, Formula Base) {
Dan Gohman572645c2010-02-12 10:34:29 +00002558 // This requires TargetLowering to tell us which truncates are free.
2559 if (!TLI) return;
2560
2561 // Don't bother truncating symbolic values.
2562 if (Base.AM.BaseGV) return;
2563
2564 // Determine the integer type for the base formula.
2565 const Type *DstTy = Base.getType();
2566 if (!DstTy) return;
2567 DstTy = SE.getEffectiveSCEVType(DstTy);
2568
2569 for (SmallSetVector<const Type *, 4>::const_iterator
2570 I = Types.begin(), E = Types.end(); I != E; ++I) {
2571 const Type *SrcTy = *I;
2572 if (SrcTy != DstTy && TLI->isTruncateFree(SrcTy, DstTy)) {
2573 Formula F = Base;
2574
2575 if (F.ScaledReg) F.ScaledReg = SE.getAnyExtendExpr(F.ScaledReg, *I);
2576 for (SmallVectorImpl<const SCEV *>::iterator J = F.BaseRegs.begin(),
2577 JE = F.BaseRegs.end(); J != JE; ++J)
2578 *J = SE.getAnyExtendExpr(*J, SrcTy);
2579
2580 // TODO: This assumes we've done basic processing on all uses and
2581 // have an idea what the register usage is.
2582 if (!F.hasRegsUsedByUsesOtherThan(LUIdx, RegUses))
2583 continue;
2584
2585 (void)InsertFormula(LU, LUIdx, F);
2586 }
2587 }
2588}
2589
2590namespace {
2591
Dan Gohman6020d852010-02-14 18:51:20 +00002592/// WorkItem - Helper class for GenerateCrossUseConstantOffsets. It's used to
Dan Gohman572645c2010-02-12 10:34:29 +00002593/// defer modifications so that the search phase doesn't have to worry about
2594/// the data structures moving underneath it.
2595struct WorkItem {
2596 size_t LUIdx;
2597 int64_t Imm;
2598 const SCEV *OrigReg;
2599
2600 WorkItem(size_t LI, int64_t I, const SCEV *R)
2601 : LUIdx(LI), Imm(I), OrigReg(R) {}
2602
2603 void print(raw_ostream &OS) const;
2604 void dump() const;
2605};
2606
2607}
2608
2609void WorkItem::print(raw_ostream &OS) const {
2610 OS << "in formulae referencing " << *OrigReg << " in use " << LUIdx
2611 << " , add offset " << Imm;
2612}
2613
2614void WorkItem::dump() const {
2615 print(errs()); errs() << '\n';
2616}
2617
2618/// GenerateCrossUseConstantOffsets - Look for registers which are a constant
2619/// distance apart and try to form reuse opportunities between them.
2620void LSRInstance::GenerateCrossUseConstantOffsets() {
2621 // Group the registers by their value without any added constant offset.
2622 typedef std::map<int64_t, const SCEV *> ImmMapTy;
2623 typedef DenseMap<const SCEV *, ImmMapTy> RegMapTy;
2624 RegMapTy Map;
2625 DenseMap<const SCEV *, SmallBitVector> UsedByIndicesMap;
2626 SmallVector<const SCEV *, 8> Sequence;
2627 for (RegUseTracker::const_iterator I = RegUses.begin(), E = RegUses.end();
2628 I != E; ++I) {
2629 const SCEV *Reg = *I;
2630 int64_t Imm = ExtractImmediate(Reg, SE);
2631 std::pair<RegMapTy::iterator, bool> Pair =
2632 Map.insert(std::make_pair(Reg, ImmMapTy()));
2633 if (Pair.second)
2634 Sequence.push_back(Reg);
2635 Pair.first->second.insert(std::make_pair(Imm, *I));
2636 UsedByIndicesMap[Reg] |= RegUses.getUsedByIndices(*I);
2637 }
2638
2639 // Now examine each set of registers with the same base value. Build up
2640 // a list of work to do and do the work in a separate step so that we're
2641 // not adding formulae and register counts while we're searching.
2642 SmallVector<WorkItem, 32> WorkItems;
2643 SmallSet<std::pair<size_t, int64_t>, 32> UniqueItems;
2644 for (SmallVectorImpl<const SCEV *>::const_iterator I = Sequence.begin(),
2645 E = Sequence.end(); I != E; ++I) {
2646 const SCEV *Reg = *I;
2647 const ImmMapTy &Imms = Map.find(Reg)->second;
2648
Dan Gohmancd045c02010-02-12 19:20:37 +00002649 // It's not worthwhile looking for reuse if there's only one offset.
2650 if (Imms.size() == 1)
2651 continue;
2652
Dan Gohman572645c2010-02-12 10:34:29 +00002653 DEBUG(dbgs() << "Generating cross-use offsets for " << *Reg << ':';
2654 for (ImmMapTy::const_iterator J = Imms.begin(), JE = Imms.end();
2655 J != JE; ++J)
2656 dbgs() << ' ' << J->first;
2657 dbgs() << '\n');
2658
2659 // Examine each offset.
2660 for (ImmMapTy::const_iterator J = Imms.begin(), JE = Imms.end();
2661 J != JE; ++J) {
2662 const SCEV *OrigReg = J->second;
2663
2664 int64_t JImm = J->first;
2665 const SmallBitVector &UsedByIndices = RegUses.getUsedByIndices(OrigReg);
2666
2667 if (!isa<SCEVConstant>(OrigReg) &&
2668 UsedByIndicesMap[Reg].count() == 1) {
2669 DEBUG(dbgs() << "Skipping cross-use reuse for " << *OrigReg << '\n');
2670 continue;
2671 }
2672
2673 // Conservatively examine offsets between this orig reg a few selected
2674 // other orig regs.
2675 ImmMapTy::const_iterator OtherImms[] = {
2676 Imms.begin(), prior(Imms.end()),
2677 Imms.upper_bound((Imms.begin()->first + prior(Imms.end())->first) / 2)
2678 };
2679 for (size_t i = 0, e = array_lengthof(OtherImms); i != e; ++i) {
2680 ImmMapTy::const_iterator M = OtherImms[i];
Dan Gohmancd045c02010-02-12 19:20:37 +00002681 if (M == J || M == JE) continue;
Dan Gohman572645c2010-02-12 10:34:29 +00002682
2683 // Compute the difference between the two.
2684 int64_t Imm = (uint64_t)JImm - M->first;
2685 for (int LUIdx = UsedByIndices.find_first(); LUIdx != -1;
2686 LUIdx = UsedByIndices.find_next(LUIdx))
2687 // Make a memo of this use, offset, and register tuple.
2688 if (UniqueItems.insert(std::make_pair(LUIdx, Imm)))
2689 WorkItems.push_back(WorkItem(LUIdx, Imm, OrigReg));
Evan Cheng586f69a2009-11-12 07:35:05 +00002690 }
2691 }
2692 }
2693
Dan Gohman572645c2010-02-12 10:34:29 +00002694 Map.clear();
2695 Sequence.clear();
2696 UsedByIndicesMap.clear();
2697 UniqueItems.clear();
2698
2699 // Now iterate through the worklist and add new formulae.
2700 for (SmallVectorImpl<WorkItem>::const_iterator I = WorkItems.begin(),
2701 E = WorkItems.end(); I != E; ++I) {
2702 const WorkItem &WI = *I;
2703 size_t LUIdx = WI.LUIdx;
2704 LSRUse &LU = Uses[LUIdx];
2705 int64_t Imm = WI.Imm;
2706 const SCEV *OrigReg = WI.OrigReg;
2707
2708 const Type *IntTy = SE.getEffectiveSCEVType(OrigReg->getType());
2709 const SCEV *NegImmS = SE.getSCEV(ConstantInt::get(IntTy, -(uint64_t)Imm));
2710 unsigned BitWidth = SE.getTypeSizeInBits(IntTy);
2711
Dan Gohman3f46a3a2010-03-01 17:49:51 +00002712 // TODO: Use a more targeted data structure.
Dan Gohman572645c2010-02-12 10:34:29 +00002713 for (size_t L = 0, LE = LU.Formulae.size(); L != LE; ++L) {
Dan Gohman9f383eb2010-05-20 22:25:20 +00002714 const Formula &F = LU.Formulae[L];
Dan Gohman572645c2010-02-12 10:34:29 +00002715 // Use the immediate in the scaled register.
2716 if (F.ScaledReg == OrigReg) {
2717 int64_t Offs = (uint64_t)F.AM.BaseOffs +
2718 Imm * (uint64_t)F.AM.Scale;
2719 // Don't create 50 + reg(-50).
2720 if (F.referencesReg(SE.getSCEV(
2721 ConstantInt::get(IntTy, -(uint64_t)Offs))))
2722 continue;
2723 Formula NewF = F;
2724 NewF.AM.BaseOffs = Offs;
2725 if (!isLegalUse(NewF.AM, LU.MinOffset, LU.MaxOffset,
2726 LU.Kind, LU.AccessTy, TLI))
2727 continue;
2728 NewF.ScaledReg = SE.getAddExpr(NegImmS, NewF.ScaledReg);
2729
2730 // If the new scale is a constant in a register, and adding the constant
2731 // value to the immediate would produce a value closer to zero than the
2732 // immediate itself, then the formula isn't worthwhile.
2733 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(NewF.ScaledReg))
2734 if (C->getValue()->getValue().isNegative() !=
2735 (NewF.AM.BaseOffs < 0) &&
2736 (C->getValue()->getValue().abs() * APInt(BitWidth, F.AM.Scale))
Dan Gohmane0567812010-04-08 23:03:40 +00002737 .ule(abs64(NewF.AM.BaseOffs)))
Dan Gohman572645c2010-02-12 10:34:29 +00002738 continue;
2739
2740 // OK, looks good.
2741 (void)InsertFormula(LU, LUIdx, NewF);
2742 } else {
2743 // Use the immediate in a base register.
2744 for (size_t N = 0, NE = F.BaseRegs.size(); N != NE; ++N) {
2745 const SCEV *BaseReg = F.BaseRegs[N];
2746 if (BaseReg != OrigReg)
2747 continue;
2748 Formula NewF = F;
2749 NewF.AM.BaseOffs = (uint64_t)NewF.AM.BaseOffs + Imm;
2750 if (!isLegalUse(NewF.AM, LU.MinOffset, LU.MaxOffset,
2751 LU.Kind, LU.AccessTy, TLI))
2752 continue;
2753 NewF.BaseRegs[N] = SE.getAddExpr(NegImmS, BaseReg);
2754
2755 // If the new formula has a constant in a register, and adding the
2756 // constant value to the immediate would produce a value closer to
2757 // zero than the immediate itself, then the formula isn't worthwhile.
2758 for (SmallVectorImpl<const SCEV *>::const_iterator
2759 J = NewF.BaseRegs.begin(), JE = NewF.BaseRegs.end();
2760 J != JE; ++J)
2761 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(*J))
Dan Gohman360026f2010-05-18 23:48:08 +00002762 if ((C->getValue()->getValue() + NewF.AM.BaseOffs).abs().slt(
2763 abs64(NewF.AM.BaseOffs)) &&
2764 (C->getValue()->getValue() +
2765 NewF.AM.BaseOffs).countTrailingZeros() >=
2766 CountTrailingZeros_64(NewF.AM.BaseOffs))
Dan Gohman572645c2010-02-12 10:34:29 +00002767 goto skip_formula;
2768
2769 // Ok, looks good.
2770 (void)InsertFormula(LU, LUIdx, NewF);
2771 break;
2772 skip_formula:;
2773 }
2774 }
2775 }
2776 }
Dale Johannesenc1acc3f2009-05-11 17:15:42 +00002777}
2778
Dan Gohman572645c2010-02-12 10:34:29 +00002779/// GenerateAllReuseFormulae - Generate formulae for each use.
2780void
2781LSRInstance::GenerateAllReuseFormulae() {
Dan Gohmanc2385a02010-02-16 01:42:53 +00002782 // This is split into multiple loops so that hasRegsUsedByUsesOtherThan
Dan Gohman572645c2010-02-12 10:34:29 +00002783 // queries are more precise.
2784 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
2785 LSRUse &LU = Uses[LUIdx];
2786 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2787 GenerateReassociations(LU, LUIdx, LU.Formulae[i]);
2788 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2789 GenerateCombinations(LU, LUIdx, LU.Formulae[i]);
2790 }
2791 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
2792 LSRUse &LU = Uses[LUIdx];
2793 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2794 GenerateSymbolicOffsets(LU, LUIdx, LU.Formulae[i]);
2795 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2796 GenerateConstantOffsets(LU, LUIdx, LU.Formulae[i]);
2797 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2798 GenerateICmpZeroScales(LU, LUIdx, LU.Formulae[i]);
2799 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2800 GenerateScales(LU, LUIdx, LU.Formulae[i]);
Dan Gohmanc2385a02010-02-16 01:42:53 +00002801 }
2802 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
2803 LSRUse &LU = Uses[LUIdx];
Dan Gohman572645c2010-02-12 10:34:29 +00002804 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2805 GenerateTruncates(LU, LUIdx, LU.Formulae[i]);
2806 }
2807
2808 GenerateCrossUseConstantOffsets();
Dan Gohman3902f9f2010-08-29 15:21:38 +00002809
2810 DEBUG(dbgs() << "\n"
2811 "After generating reuse formulae:\n";
2812 print_uses(dbgs()));
Dan Gohman572645c2010-02-12 10:34:29 +00002813}
2814
2815/// If their are multiple formulae with the same set of registers used
2816/// by other uses, pick the best one and delete the others.
2817void LSRInstance::FilterOutUndesirableDedicatedRegisters() {
2818#ifndef NDEBUG
Dan Gohmanc6519f92010-05-20 20:05:31 +00002819 bool ChangedFormulae = false;
Dan Gohman572645c2010-02-12 10:34:29 +00002820#endif
2821
2822 // Collect the best formula for each unique set of shared registers. This
2823 // is reset for each use.
2824 typedef DenseMap<SmallVector<const SCEV *, 2>, size_t, UniquifierDenseMapInfo>
2825 BestFormulaeTy;
2826 BestFormulaeTy BestFormulae;
2827
2828 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
2829 LSRUse &LU = Uses[LUIdx];
2830 FormulaSorter Sorter(L, LU, SE, DT);
Dan Gohmanea507f52010-05-20 19:44:23 +00002831 DEBUG(dbgs() << "Filtering for use "; LU.print(dbgs()); dbgs() << '\n');
Dan Gohman572645c2010-02-12 10:34:29 +00002832
Dan Gohmanb2df4332010-05-18 23:42:37 +00002833 bool Any = false;
Dan Gohman572645c2010-02-12 10:34:29 +00002834 for (size_t FIdx = 0, NumForms = LU.Formulae.size();
2835 FIdx != NumForms; ++FIdx) {
2836 Formula &F = LU.Formulae[FIdx];
2837
2838 SmallVector<const SCEV *, 2> Key;
2839 for (SmallVectorImpl<const SCEV *>::const_iterator J = F.BaseRegs.begin(),
2840 JE = F.BaseRegs.end(); J != JE; ++J) {
2841 const SCEV *Reg = *J;
2842 if (RegUses.isRegUsedByUsesOtherThan(Reg, LUIdx))
2843 Key.push_back(Reg);
2844 }
2845 if (F.ScaledReg &&
2846 RegUses.isRegUsedByUsesOtherThan(F.ScaledReg, LUIdx))
2847 Key.push_back(F.ScaledReg);
2848 // Unstable sort by host order ok, because this is only used for
2849 // uniquifying.
2850 std::sort(Key.begin(), Key.end());
2851
2852 std::pair<BestFormulaeTy::const_iterator, bool> P =
2853 BestFormulae.insert(std::make_pair(Key, FIdx));
2854 if (!P.second) {
2855 Formula &Best = LU.Formulae[P.first->second];
2856 if (Sorter.operator()(F, Best))
2857 std::swap(F, Best);
Dan Gohman6458ff92010-05-18 22:37:37 +00002858 DEBUG(dbgs() << " Filtering out formula "; F.print(dbgs());
Dan Gohman572645c2010-02-12 10:34:29 +00002859 dbgs() << "\n"
Dan Gohman6458ff92010-05-18 22:37:37 +00002860 " in favor of formula "; Best.print(dbgs());
Dan Gohman572645c2010-02-12 10:34:29 +00002861 dbgs() << '\n');
2862#ifndef NDEBUG
Dan Gohmanc6519f92010-05-20 20:05:31 +00002863 ChangedFormulae = true;
Dan Gohman572645c2010-02-12 10:34:29 +00002864#endif
Dan Gohmand69d6282010-05-18 22:39:15 +00002865 LU.DeleteFormula(F);
Dan Gohman572645c2010-02-12 10:34:29 +00002866 --FIdx;
2867 --NumForms;
Dan Gohmanb2df4332010-05-18 23:42:37 +00002868 Any = true;
Dan Gohman572645c2010-02-12 10:34:29 +00002869 continue;
2870 }
Dan Gohman59dc6032010-05-07 23:36:59 +00002871 }
2872
Dan Gohman57aaa0b2010-05-18 23:55:57 +00002873 // Now that we've filtered out some formulae, recompute the Regs set.
Dan Gohmanb2df4332010-05-18 23:42:37 +00002874 if (Any)
2875 LU.RecomputeRegs(LUIdx, RegUses);
Dan Gohman59dc6032010-05-07 23:36:59 +00002876
2877 // Reset this to prepare for the next use.
Dan Gohman572645c2010-02-12 10:34:29 +00002878 BestFormulae.clear();
2879 }
2880
Dan Gohmanc6519f92010-05-20 20:05:31 +00002881 DEBUG(if (ChangedFormulae) {
Dan Gohman9214b822010-02-13 02:06:02 +00002882 dbgs() << "\n"
2883 "After filtering out undesirable candidates:\n";
Dan Gohman572645c2010-02-12 10:34:29 +00002884 print_uses(dbgs());
2885 });
2886}
2887
Dan Gohmand079c302010-05-18 22:51:59 +00002888// This is a rough guess that seems to work fairly well.
2889static const size_t ComplexityLimit = UINT16_MAX;
2890
2891/// EstimateSearchSpaceComplexity - Estimate the worst-case number of
2892/// solutions the solver might have to consider. It almost never considers
2893/// this many solutions because it prune the search space, but the pruning
2894/// isn't always sufficient.
2895size_t LSRInstance::EstimateSearchSpaceComplexity() const {
2896 uint32_t Power = 1;
2897 for (SmallVectorImpl<LSRUse>::const_iterator I = Uses.begin(),
2898 E = Uses.end(); I != E; ++I) {
2899 size_t FSize = I->Formulae.size();
2900 if (FSize >= ComplexityLimit) {
2901 Power = ComplexityLimit;
2902 break;
2903 }
2904 Power *= FSize;
2905 if (Power >= ComplexityLimit)
2906 break;
2907 }
2908 return Power;
2909}
2910
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00002911/// NarrowSearchSpaceByDetectingSupersets - When one formula uses a superset
2912/// of the registers of another formula, it won't help reduce register
2913/// pressure (though it may not necessarily hurt register pressure); remove
2914/// it to simplify the system.
2915void LSRInstance::NarrowSearchSpaceByDetectingSupersets() {
Dan Gohmana2086b32010-05-19 23:43:12 +00002916 if (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
2917 DEBUG(dbgs() << "The search space is too complex.\n");
2918
2919 DEBUG(dbgs() << "Narrowing the search space by eliminating formulae "
2920 "which use a superset of registers used by other "
2921 "formulae.\n");
2922
2923 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
2924 LSRUse &LU = Uses[LUIdx];
2925 bool Any = false;
2926 for (size_t i = 0, e = LU.Formulae.size(); i != e; ++i) {
2927 Formula &F = LU.Formulae[i];
Dan Gohmanf7ff37d2010-05-20 20:00:41 +00002928 // Look for a formula with a constant or GV in a register. If the use
2929 // also has a formula with that same value in an immediate field,
2930 // delete the one that uses a register.
Dan Gohmana2086b32010-05-19 23:43:12 +00002931 for (SmallVectorImpl<const SCEV *>::const_iterator
2932 I = F.BaseRegs.begin(), E = F.BaseRegs.end(); I != E; ++I) {
2933 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(*I)) {
2934 Formula NewF = F;
2935 NewF.AM.BaseOffs += C->getValue()->getSExtValue();
2936 NewF.BaseRegs.erase(NewF.BaseRegs.begin() +
2937 (I - F.BaseRegs.begin()));
2938 if (LU.HasFormulaWithSameRegs(NewF)) {
2939 DEBUG(dbgs() << " Deleting "; F.print(dbgs()); dbgs() << '\n');
2940 LU.DeleteFormula(F);
2941 --i;
2942 --e;
2943 Any = true;
2944 break;
2945 }
2946 } else if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(*I)) {
2947 if (GlobalValue *GV = dyn_cast<GlobalValue>(U->getValue()))
2948 if (!F.AM.BaseGV) {
2949 Formula NewF = F;
2950 NewF.AM.BaseGV = GV;
2951 NewF.BaseRegs.erase(NewF.BaseRegs.begin() +
2952 (I - F.BaseRegs.begin()));
2953 if (LU.HasFormulaWithSameRegs(NewF)) {
2954 DEBUG(dbgs() << " Deleting "; F.print(dbgs());
2955 dbgs() << '\n');
2956 LU.DeleteFormula(F);
2957 --i;
2958 --e;
2959 Any = true;
2960 break;
2961 }
2962 }
2963 }
2964 }
2965 }
2966 if (Any)
2967 LU.RecomputeRegs(LUIdx, RegUses);
2968 }
2969
2970 DEBUG(dbgs() << "After pre-selection:\n";
2971 print_uses(dbgs()));
2972 }
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00002973}
Dan Gohmana2086b32010-05-19 23:43:12 +00002974
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00002975/// NarrowSearchSpaceByCollapsingUnrolledCode - When there are many registers
2976/// for expressions like A, A+1, A+2, etc., allocate a single register for
2977/// them.
2978void LSRInstance::NarrowSearchSpaceByCollapsingUnrolledCode() {
Dan Gohmana2086b32010-05-19 23:43:12 +00002979 if (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
2980 DEBUG(dbgs() << "The search space is too complex.\n");
2981
2982 DEBUG(dbgs() << "Narrowing the search space by assuming that uses "
2983 "separated by a constant offset will use the same "
2984 "registers.\n");
2985
Dan Gohmanf7ff37d2010-05-20 20:00:41 +00002986 // This is especially useful for unrolled loops.
2987
Dan Gohmana2086b32010-05-19 23:43:12 +00002988 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
2989 LSRUse &LU = Uses[LUIdx];
Dan Gohman402d4352010-05-20 20:33:18 +00002990 for (SmallVectorImpl<Formula>::const_iterator I = LU.Formulae.begin(),
2991 E = LU.Formulae.end(); I != E; ++I) {
2992 const Formula &F = *I;
Dan Gohmana2086b32010-05-19 23:43:12 +00002993 if (F.AM.BaseOffs != 0 && F.AM.Scale == 0) {
2994 if (LSRUse *LUThatHas = FindUseWithSimilarFormula(F, LU)) {
2995 if (reconcileNewOffset(*LUThatHas, F.AM.BaseOffs,
2996 /*HasBaseReg=*/false,
2997 LU.Kind, LU.AccessTy)) {
2998 DEBUG(dbgs() << " Deleting use "; LU.print(dbgs());
2999 dbgs() << '\n');
3000
3001 LUThatHas->AllFixupsOutsideLoop &= LU.AllFixupsOutsideLoop;
3002
3003 // Delete formulae from the new use which are no longer legal.
3004 bool Any = false;
3005 for (size_t i = 0, e = LUThatHas->Formulae.size(); i != e; ++i) {
3006 Formula &F = LUThatHas->Formulae[i];
3007 if (!isLegalUse(F.AM,
3008 LUThatHas->MinOffset, LUThatHas->MaxOffset,
3009 LUThatHas->Kind, LUThatHas->AccessTy, TLI)) {
3010 DEBUG(dbgs() << " Deleting "; F.print(dbgs());
3011 dbgs() << '\n');
3012 LUThatHas->DeleteFormula(F);
3013 --i;
3014 --e;
3015 Any = true;
3016 }
3017 }
3018 if (Any)
3019 LUThatHas->RecomputeRegs(LUThatHas - &Uses.front(), RegUses);
3020
3021 // Update the relocs to reference the new use.
Dan Gohman402d4352010-05-20 20:33:18 +00003022 for (SmallVectorImpl<LSRFixup>::iterator I = Fixups.begin(),
3023 E = Fixups.end(); I != E; ++I) {
3024 LSRFixup &Fixup = *I;
3025 if (Fixup.LUIdx == LUIdx) {
3026 Fixup.LUIdx = LUThatHas - &Uses.front();
3027 Fixup.Offset += F.AM.BaseOffs;
Dan Gohmanef4308d2010-07-15 20:12:42 +00003028 DEBUG(dbgs() << "New fixup has offset "
Dan Gohman402d4352010-05-20 20:33:18 +00003029 << Fixup.Offset << '\n');
Dan Gohmana2086b32010-05-19 23:43:12 +00003030 }
Dan Gohman402d4352010-05-20 20:33:18 +00003031 if (Fixup.LUIdx == NumUses-1)
3032 Fixup.LUIdx = LUIdx;
Dan Gohmana2086b32010-05-19 23:43:12 +00003033 }
3034
3035 // Delete the old use.
Dan Gohman5ce6d052010-05-20 15:17:54 +00003036 DeleteUse(LU);
Dan Gohmana2086b32010-05-19 23:43:12 +00003037 --LUIdx;
3038 --NumUses;
3039 break;
3040 }
3041 }
3042 }
3043 }
3044 }
3045
3046 DEBUG(dbgs() << "After pre-selection:\n";
3047 print_uses(dbgs()));
3048 }
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00003049}
Dan Gohmana2086b32010-05-19 23:43:12 +00003050
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00003051/// NarrowSearchSpaceByPickingWinnerRegs - Pick a register which seems likely
3052/// to be profitable, and then in any use which has any reference to that
3053/// register, delete all formulae which do not reference that register.
3054void LSRInstance::NarrowSearchSpaceByPickingWinnerRegs() {
Dan Gohman76c315a2010-05-20 20:52:00 +00003055 // With all other options exhausted, loop until the system is simple
3056 // enough to handle.
Dan Gohman572645c2010-02-12 10:34:29 +00003057 SmallPtrSet<const SCEV *, 4> Taken;
Dan Gohmand079c302010-05-18 22:51:59 +00003058 while (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
Dan Gohman572645c2010-02-12 10:34:29 +00003059 // Ok, we have too many of formulae on our hands to conveniently handle.
3060 // Use a rough heuristic to thin out the list.
Dan Gohman0da751b2010-05-18 22:41:32 +00003061 DEBUG(dbgs() << "The search space is too complex.\n");
Dan Gohman572645c2010-02-12 10:34:29 +00003062
3063 // Pick the register which is used by the most LSRUses, which is likely
3064 // to be a good reuse register candidate.
3065 const SCEV *Best = 0;
3066 unsigned BestNum = 0;
3067 for (RegUseTracker::const_iterator I = RegUses.begin(), E = RegUses.end();
3068 I != E; ++I) {
3069 const SCEV *Reg = *I;
3070 if (Taken.count(Reg))
3071 continue;
3072 if (!Best)
3073 Best = Reg;
3074 else {
3075 unsigned Count = RegUses.getUsedByIndices(Reg).count();
3076 if (Count > BestNum) {
3077 Best = Reg;
3078 BestNum = Count;
3079 }
3080 }
3081 }
3082
3083 DEBUG(dbgs() << "Narrowing the search space by assuming " << *Best
Dan Gohman3f46a3a2010-03-01 17:49:51 +00003084 << " will yield profitable reuse.\n");
Dan Gohman572645c2010-02-12 10:34:29 +00003085 Taken.insert(Best);
3086
3087 // In any use with formulae which references this register, delete formulae
3088 // which don't reference it.
Dan Gohmanb2df4332010-05-18 23:42:37 +00003089 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
3090 LSRUse &LU = Uses[LUIdx];
Dan Gohman572645c2010-02-12 10:34:29 +00003091 if (!LU.Regs.count(Best)) continue;
3092
Dan Gohmanb2df4332010-05-18 23:42:37 +00003093 bool Any = false;
Dan Gohman572645c2010-02-12 10:34:29 +00003094 for (size_t i = 0, e = LU.Formulae.size(); i != e; ++i) {
3095 Formula &F = LU.Formulae[i];
3096 if (!F.referencesReg(Best)) {
3097 DEBUG(dbgs() << " Deleting "; F.print(dbgs()); dbgs() << '\n');
Dan Gohmand69d6282010-05-18 22:39:15 +00003098 LU.DeleteFormula(F);
Dan Gohman572645c2010-02-12 10:34:29 +00003099 --e;
3100 --i;
Dan Gohmanb2df4332010-05-18 23:42:37 +00003101 Any = true;
Dan Gohman59dc6032010-05-07 23:36:59 +00003102 assert(e != 0 && "Use has no formulae left! Is Regs inconsistent?");
Dan Gohman572645c2010-02-12 10:34:29 +00003103 continue;
3104 }
Dan Gohman572645c2010-02-12 10:34:29 +00003105 }
Dan Gohmanb2df4332010-05-18 23:42:37 +00003106
3107 if (Any)
3108 LU.RecomputeRegs(LUIdx, RegUses);
Dan Gohman572645c2010-02-12 10:34:29 +00003109 }
3110
3111 DEBUG(dbgs() << "After pre-selection:\n";
3112 print_uses(dbgs()));
3113 }
3114}
3115
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00003116/// NarrowSearchSpaceUsingHeuristics - If there are an extraordinary number of
3117/// formulae to choose from, use some rough heuristics to prune down the number
3118/// of formulae. This keeps the main solver from taking an extraordinary amount
3119/// of time in some worst-case scenarios.
3120void LSRInstance::NarrowSearchSpaceUsingHeuristics() {
3121 NarrowSearchSpaceByDetectingSupersets();
3122 NarrowSearchSpaceByCollapsingUnrolledCode();
3123 NarrowSearchSpaceByPickingWinnerRegs();
3124}
3125
Dan Gohman572645c2010-02-12 10:34:29 +00003126/// SolveRecurse - This is the recursive solver.
3127void LSRInstance::SolveRecurse(SmallVectorImpl<const Formula *> &Solution,
3128 Cost &SolutionCost,
3129 SmallVectorImpl<const Formula *> &Workspace,
3130 const Cost &CurCost,
3131 const SmallPtrSet<const SCEV *, 16> &CurRegs,
3132 DenseSet<const SCEV *> &VisitedRegs) const {
3133 // Some ideas:
3134 // - prune more:
3135 // - use more aggressive filtering
3136 // - sort the formula so that the most profitable solutions are found first
3137 // - sort the uses too
3138 // - search faster:
Dan Gohman3f46a3a2010-03-01 17:49:51 +00003139 // - don't compute a cost, and then compare. compare while computing a cost
Dan Gohman572645c2010-02-12 10:34:29 +00003140 // and bail early.
3141 // - track register sets with SmallBitVector
3142
3143 const LSRUse &LU = Uses[Workspace.size()];
3144
3145 // If this use references any register that's already a part of the
3146 // in-progress solution, consider it a requirement that a formula must
3147 // reference that register in order to be considered. This prunes out
3148 // unprofitable searching.
3149 SmallSetVector<const SCEV *, 4> ReqRegs;
3150 for (SmallPtrSet<const SCEV *, 16>::const_iterator I = CurRegs.begin(),
3151 E = CurRegs.end(); I != E; ++I)
Dan Gohman9214b822010-02-13 02:06:02 +00003152 if (LU.Regs.count(*I))
Dan Gohman572645c2010-02-12 10:34:29 +00003153 ReqRegs.insert(*I);
Dan Gohman572645c2010-02-12 10:34:29 +00003154
Dan Gohman9214b822010-02-13 02:06:02 +00003155 bool AnySatisfiedReqRegs = false;
Dan Gohman572645c2010-02-12 10:34:29 +00003156 SmallPtrSet<const SCEV *, 16> NewRegs;
3157 Cost NewCost;
Dan Gohman9214b822010-02-13 02:06:02 +00003158retry:
Dan Gohman572645c2010-02-12 10:34:29 +00003159 for (SmallVectorImpl<Formula>::const_iterator I = LU.Formulae.begin(),
3160 E = LU.Formulae.end(); I != E; ++I) {
3161 const Formula &F = *I;
3162
3163 // Ignore formulae which do not use any of the required registers.
3164 for (SmallSetVector<const SCEV *, 4>::const_iterator J = ReqRegs.begin(),
3165 JE = ReqRegs.end(); J != JE; ++J) {
3166 const SCEV *Reg = *J;
3167 if ((!F.ScaledReg || F.ScaledReg != Reg) &&
3168 std::find(F.BaseRegs.begin(), F.BaseRegs.end(), Reg) ==
3169 F.BaseRegs.end())
3170 goto skip;
3171 }
Dan Gohman9214b822010-02-13 02:06:02 +00003172 AnySatisfiedReqRegs = true;
Dan Gohman572645c2010-02-12 10:34:29 +00003173
3174 // Evaluate the cost of the current formula. If it's already worse than
3175 // the current best, prune the search at that point.
3176 NewCost = CurCost;
3177 NewRegs = CurRegs;
3178 NewCost.RateFormula(F, NewRegs, VisitedRegs, L, LU.Offsets, SE, DT);
3179 if (NewCost < SolutionCost) {
3180 Workspace.push_back(&F);
3181 if (Workspace.size() != Uses.size()) {
3182 SolveRecurse(Solution, SolutionCost, Workspace, NewCost,
3183 NewRegs, VisitedRegs);
3184 if (F.getNumRegs() == 1 && Workspace.size() == 1)
3185 VisitedRegs.insert(F.ScaledReg ? F.ScaledReg : F.BaseRegs[0]);
3186 } else {
3187 DEBUG(dbgs() << "New best at "; NewCost.print(dbgs());
3188 dbgs() << ". Regs:";
3189 for (SmallPtrSet<const SCEV *, 16>::const_iterator
3190 I = NewRegs.begin(), E = NewRegs.end(); I != E; ++I)
3191 dbgs() << ' ' << **I;
3192 dbgs() << '\n');
3193
3194 SolutionCost = NewCost;
3195 Solution = Workspace;
3196 }
3197 Workspace.pop_back();
3198 }
3199 skip:;
3200 }
Dan Gohman9214b822010-02-13 02:06:02 +00003201
3202 // If none of the formulae had all of the required registers, relax the
3203 // constraint so that we don't exclude all formulae.
3204 if (!AnySatisfiedReqRegs) {
Dan Gohman59dc6032010-05-07 23:36:59 +00003205 assert(!ReqRegs.empty() && "Solver failed even without required registers");
Dan Gohman9214b822010-02-13 02:06:02 +00003206 ReqRegs.clear();
3207 goto retry;
3208 }
Dan Gohman572645c2010-02-12 10:34:29 +00003209}
3210
Dan Gohman76c315a2010-05-20 20:52:00 +00003211/// Solve - Choose one formula from each use. Return the results in the given
3212/// Solution vector.
Dan Gohman572645c2010-02-12 10:34:29 +00003213void LSRInstance::Solve(SmallVectorImpl<const Formula *> &Solution) const {
3214 SmallVector<const Formula *, 8> Workspace;
3215 Cost SolutionCost;
3216 SolutionCost.Loose();
3217 Cost CurCost;
3218 SmallPtrSet<const SCEV *, 16> CurRegs;
3219 DenseSet<const SCEV *> VisitedRegs;
3220 Workspace.reserve(Uses.size());
3221
Dan Gohmanf7ff37d2010-05-20 20:00:41 +00003222 // SolveRecurse does all the work.
Dan Gohman572645c2010-02-12 10:34:29 +00003223 SolveRecurse(Solution, SolutionCost, Workspace, CurCost,
3224 CurRegs, VisitedRegs);
3225
3226 // Ok, we've now made all our decisions.
3227 DEBUG(dbgs() << "\n"
3228 "The chosen solution requires "; SolutionCost.print(dbgs());
3229 dbgs() << ":\n";
3230 for (size_t i = 0, e = Uses.size(); i != e; ++i) {
3231 dbgs() << " ";
3232 Uses[i].print(dbgs());
3233 dbgs() << "\n"
3234 " ";
3235 Solution[i]->print(dbgs());
3236 dbgs() << '\n';
3237 });
Dan Gohmana5528782010-05-20 20:59:23 +00003238
3239 assert(Solution.size() == Uses.size() && "Malformed solution!");
Dan Gohman572645c2010-02-12 10:34:29 +00003240}
3241
Dan Gohmane5f76872010-04-09 22:07:05 +00003242/// HoistInsertPosition - Helper for AdjustInsertPositionForExpand. Climb up
3243/// the dominator tree far as we can go while still being dominated by the
3244/// input positions. This helps canonicalize the insert position, which
3245/// encourages sharing.
3246BasicBlock::iterator
3247LSRInstance::HoistInsertPosition(BasicBlock::iterator IP,
3248 const SmallVectorImpl<Instruction *> &Inputs)
3249 const {
3250 for (;;) {
3251 const Loop *IPLoop = LI.getLoopFor(IP->getParent());
3252 unsigned IPLoopDepth = IPLoop ? IPLoop->getLoopDepth() : 0;
3253
3254 BasicBlock *IDom;
Dan Gohmand974a0e2010-05-20 20:00:25 +00003255 for (DomTreeNode *Rung = DT.getNode(IP->getParent()); ; ) {
Dan Gohman0fe46d92010-05-20 22:46:54 +00003256 if (!Rung) return IP;
Dan Gohmand974a0e2010-05-20 20:00:25 +00003257 Rung = Rung->getIDom();
3258 if (!Rung) return IP;
3259 IDom = Rung->getBlock();
Dan Gohmane5f76872010-04-09 22:07:05 +00003260
3261 // Don't climb into a loop though.
3262 const Loop *IDomLoop = LI.getLoopFor(IDom);
3263 unsigned IDomDepth = IDomLoop ? IDomLoop->getLoopDepth() : 0;
3264 if (IDomDepth <= IPLoopDepth &&
3265 (IDomDepth != IPLoopDepth || IDomLoop == IPLoop))
3266 break;
3267 }
3268
3269 bool AllDominate = true;
3270 Instruction *BetterPos = 0;
3271 Instruction *Tentative = IDom->getTerminator();
3272 for (SmallVectorImpl<Instruction *>::const_iterator I = Inputs.begin(),
3273 E = Inputs.end(); I != E; ++I) {
3274 Instruction *Inst = *I;
3275 if (Inst == Tentative || !DT.dominates(Inst, Tentative)) {
3276 AllDominate = false;
3277 break;
3278 }
3279 // Attempt to find an insert position in the middle of the block,
3280 // instead of at the end, so that it can be used for other expansions.
3281 if (IDom == Inst->getParent() &&
3282 (!BetterPos || DT.dominates(BetterPos, Inst)))
Douglas Gregor7d9663c2010-05-11 06:17:44 +00003283 BetterPos = llvm::next(BasicBlock::iterator(Inst));
Dan Gohmane5f76872010-04-09 22:07:05 +00003284 }
3285 if (!AllDominate)
3286 break;
3287 if (BetterPos)
3288 IP = BetterPos;
3289 else
3290 IP = Tentative;
3291 }
3292
3293 return IP;
3294}
3295
3296/// AdjustInsertPositionForExpand - Determine an input position which will be
Dan Gohmand96eae82010-04-09 02:00:38 +00003297/// dominated by the operands and which will dominate the result.
3298BasicBlock::iterator
Dan Gohmane5f76872010-04-09 22:07:05 +00003299LSRInstance::AdjustInsertPositionForExpand(BasicBlock::iterator IP,
3300 const LSRFixup &LF,
3301 const LSRUse &LU) const {
Dan Gohmand96eae82010-04-09 02:00:38 +00003302 // Collect some instructions which must be dominated by the
Dan Gohman448db1c2010-04-07 22:27:08 +00003303 // expanding replacement. These must be dominated by any operands that
Dan Gohman572645c2010-02-12 10:34:29 +00003304 // will be required in the expansion.
3305 SmallVector<Instruction *, 4> Inputs;
3306 if (Instruction *I = dyn_cast<Instruction>(LF.OperandValToReplace))
3307 Inputs.push_back(I);
3308 if (LU.Kind == LSRUse::ICmpZero)
3309 if (Instruction *I =
3310 dyn_cast<Instruction>(cast<ICmpInst>(LF.UserInst)->getOperand(1)))
3311 Inputs.push_back(I);
Dan Gohman448db1c2010-04-07 22:27:08 +00003312 if (LF.PostIncLoops.count(L)) {
3313 if (LF.isUseFullyOutsideLoop(L))
Dan Gohman069d6f32010-03-02 01:59:21 +00003314 Inputs.push_back(L->getLoopLatch()->getTerminator());
3315 else
3316 Inputs.push_back(IVIncInsertPos);
3317 }
Dan Gohman701a4ae2010-04-08 05:57:57 +00003318 // The expansion must also be dominated by the increment positions of any
3319 // loops it for which it is using post-inc mode.
3320 for (PostIncLoopSet::const_iterator I = LF.PostIncLoops.begin(),
3321 E = LF.PostIncLoops.end(); I != E; ++I) {
3322 const Loop *PIL = *I;
3323 if (PIL == L) continue;
3324
Dan Gohmane5f76872010-04-09 22:07:05 +00003325 // Be dominated by the loop exit.
Dan Gohman701a4ae2010-04-08 05:57:57 +00003326 SmallVector<BasicBlock *, 4> ExitingBlocks;
3327 PIL->getExitingBlocks(ExitingBlocks);
3328 if (!ExitingBlocks.empty()) {
3329 BasicBlock *BB = ExitingBlocks[0];
3330 for (unsigned i = 1, e = ExitingBlocks.size(); i != e; ++i)
3331 BB = DT.findNearestCommonDominator(BB, ExitingBlocks[i]);
3332 Inputs.push_back(BB->getTerminator());
3333 }
3334 }
Dan Gohman572645c2010-02-12 10:34:29 +00003335
3336 // Then, climb up the immediate dominator tree as far as we can go while
3337 // still being dominated by the input positions.
Dan Gohmane5f76872010-04-09 22:07:05 +00003338 IP = HoistInsertPosition(IP, Inputs);
Dan Gohmand96eae82010-04-09 02:00:38 +00003339
3340 // Don't insert instructions before PHI nodes.
Dan Gohman572645c2010-02-12 10:34:29 +00003341 while (isa<PHINode>(IP)) ++IP;
Dan Gohmand96eae82010-04-09 02:00:38 +00003342
3343 // Ignore debug intrinsics.
Dan Gohman449f31c2010-03-26 00:33:27 +00003344 while (isa<DbgInfoIntrinsic>(IP)) ++IP;
Dan Gohman572645c2010-02-12 10:34:29 +00003345
Dan Gohmand96eae82010-04-09 02:00:38 +00003346 return IP;
3347}
3348
Dan Gohman76c315a2010-05-20 20:52:00 +00003349/// Expand - Emit instructions for the leading candidate expression for this
3350/// LSRUse (this is called "expanding").
Dan Gohmand96eae82010-04-09 02:00:38 +00003351Value *LSRInstance::Expand(const LSRFixup &LF,
3352 const Formula &F,
3353 BasicBlock::iterator IP,
3354 SCEVExpander &Rewriter,
3355 SmallVectorImpl<WeakVH> &DeadInsts) const {
3356 const LSRUse &LU = Uses[LF.LUIdx];
3357
3358 // Determine an input position which will be dominated by the operands and
3359 // which will dominate the result.
Dan Gohmane5f76872010-04-09 22:07:05 +00003360 IP = AdjustInsertPositionForExpand(IP, LF, LU);
Dan Gohmand96eae82010-04-09 02:00:38 +00003361
Dan Gohman572645c2010-02-12 10:34:29 +00003362 // Inform the Rewriter if we have a post-increment use, so that it can
3363 // perform an advantageous expansion.
Dan Gohman448db1c2010-04-07 22:27:08 +00003364 Rewriter.setPostInc(LF.PostIncLoops);
Dan Gohman572645c2010-02-12 10:34:29 +00003365
3366 // This is the type that the user actually needs.
3367 const Type *OpTy = LF.OperandValToReplace->getType();
3368 // This will be the type that we'll initially expand to.
3369 const Type *Ty = F.getType();
3370 if (!Ty)
3371 // No type known; just expand directly to the ultimate type.
3372 Ty = OpTy;
3373 else if (SE.getEffectiveSCEVType(Ty) == SE.getEffectiveSCEVType(OpTy))
3374 // Expand directly to the ultimate type if it's the right size.
3375 Ty = OpTy;
3376 // This is the type to do integer arithmetic in.
3377 const Type *IntTy = SE.getEffectiveSCEVType(Ty);
3378
3379 // Build up a list of operands to add together to form the full base.
3380 SmallVector<const SCEV *, 8> Ops;
3381
3382 // Expand the BaseRegs portion.
3383 for (SmallVectorImpl<const SCEV *>::const_iterator I = F.BaseRegs.begin(),
3384 E = F.BaseRegs.end(); I != E; ++I) {
3385 const SCEV *Reg = *I;
3386 assert(!Reg->isZero() && "Zero allocated in a base register!");
3387
Dan Gohman448db1c2010-04-07 22:27:08 +00003388 // If we're expanding for a post-inc user, make the post-inc adjustment.
3389 PostIncLoopSet &Loops = const_cast<PostIncLoopSet &>(LF.PostIncLoops);
3390 Reg = TransformForPostIncUse(Denormalize, Reg,
3391 LF.UserInst, LF.OperandValToReplace,
3392 Loops, SE, DT);
Dan Gohman572645c2010-02-12 10:34:29 +00003393
3394 Ops.push_back(SE.getUnknown(Rewriter.expandCodeFor(Reg, 0, IP)));
3395 }
3396
Dan Gohman087bd1e2010-03-03 05:29:13 +00003397 // Flush the operand list to suppress SCEVExpander hoisting.
3398 if (!Ops.empty()) {
3399 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty, IP);
3400 Ops.clear();
3401 Ops.push_back(SE.getUnknown(FullV));
3402 }
3403
Dan Gohman572645c2010-02-12 10:34:29 +00003404 // Expand the ScaledReg portion.
3405 Value *ICmpScaledV = 0;
3406 if (F.AM.Scale != 0) {
3407 const SCEV *ScaledS = F.ScaledReg;
3408
Dan Gohman448db1c2010-04-07 22:27:08 +00003409 // If we're expanding for a post-inc user, make the post-inc adjustment.
3410 PostIncLoopSet &Loops = const_cast<PostIncLoopSet &>(LF.PostIncLoops);
3411 ScaledS = TransformForPostIncUse(Denormalize, ScaledS,
3412 LF.UserInst, LF.OperandValToReplace,
3413 Loops, SE, DT);
Dan Gohman572645c2010-02-12 10:34:29 +00003414
3415 if (LU.Kind == LSRUse::ICmpZero) {
3416 // An interesting way of "folding" with an icmp is to use a negated
3417 // scale, which we'll implement by inserting it into the other operand
3418 // of the icmp.
3419 assert(F.AM.Scale == -1 &&
3420 "The only scale supported by ICmpZero uses is -1!");
3421 ICmpScaledV = Rewriter.expandCodeFor(ScaledS, 0, IP);
3422 } else {
3423 // Otherwise just expand the scaled register and an explicit scale,
3424 // which is expected to be matched as part of the address.
3425 ScaledS = SE.getUnknown(Rewriter.expandCodeFor(ScaledS, 0, IP));
3426 ScaledS = SE.getMulExpr(ScaledS,
Dan Gohmandeff6212010-05-03 22:09:21 +00003427 SE.getConstant(ScaledS->getType(), F.AM.Scale));
Dan Gohman572645c2010-02-12 10:34:29 +00003428 Ops.push_back(ScaledS);
Dan Gohman087bd1e2010-03-03 05:29:13 +00003429
3430 // Flush the operand list to suppress SCEVExpander hoisting.
3431 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty, IP);
3432 Ops.clear();
3433 Ops.push_back(SE.getUnknown(FullV));
Dan Gohman572645c2010-02-12 10:34:29 +00003434 }
3435 }
3436
Dan Gohman087bd1e2010-03-03 05:29:13 +00003437 // Expand the GV portion.
3438 if (F.AM.BaseGV) {
3439 Ops.push_back(SE.getUnknown(F.AM.BaseGV));
3440
3441 // Flush the operand list to suppress SCEVExpander hoisting.
3442 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty, IP);
3443 Ops.clear();
3444 Ops.push_back(SE.getUnknown(FullV));
3445 }
3446
3447 // Expand the immediate portion.
Dan Gohman572645c2010-02-12 10:34:29 +00003448 int64_t Offset = (uint64_t)F.AM.BaseOffs + LF.Offset;
3449 if (Offset != 0) {
3450 if (LU.Kind == LSRUse::ICmpZero) {
3451 // The other interesting way of "folding" with an ICmpZero is to use a
3452 // negated immediate.
3453 if (!ICmpScaledV)
3454 ICmpScaledV = ConstantInt::get(IntTy, -Offset);
3455 else {
3456 Ops.push_back(SE.getUnknown(ICmpScaledV));
3457 ICmpScaledV = ConstantInt::get(IntTy, Offset);
3458 }
3459 } else {
3460 // Just add the immediate values. These again are expected to be matched
3461 // as part of the address.
Dan Gohman087bd1e2010-03-03 05:29:13 +00003462 Ops.push_back(SE.getUnknown(ConstantInt::getSigned(IntTy, Offset)));
Dan Gohman572645c2010-02-12 10:34:29 +00003463 }
3464 }
3465
3466 // Emit instructions summing all the operands.
3467 const SCEV *FullS = Ops.empty() ?
Dan Gohmandeff6212010-05-03 22:09:21 +00003468 SE.getConstant(IntTy, 0) :
Dan Gohman572645c2010-02-12 10:34:29 +00003469 SE.getAddExpr(Ops);
3470 Value *FullV = Rewriter.expandCodeFor(FullS, Ty, IP);
3471
3472 // We're done expanding now, so reset the rewriter.
Dan Gohman448db1c2010-04-07 22:27:08 +00003473 Rewriter.clearPostInc();
Dan Gohman572645c2010-02-12 10:34:29 +00003474
3475 // An ICmpZero Formula represents an ICmp which we're handling as a
3476 // comparison against zero. Now that we've expanded an expression for that
3477 // form, update the ICmp's other operand.
3478 if (LU.Kind == LSRUse::ICmpZero) {
3479 ICmpInst *CI = cast<ICmpInst>(LF.UserInst);
3480 DeadInsts.push_back(CI->getOperand(1));
3481 assert(!F.AM.BaseGV && "ICmp does not support folding a global value and "
3482 "a scale at the same time!");
3483 if (F.AM.Scale == -1) {
3484 if (ICmpScaledV->getType() != OpTy) {
3485 Instruction *Cast =
3486 CastInst::Create(CastInst::getCastOpcode(ICmpScaledV, false,
3487 OpTy, false),
3488 ICmpScaledV, OpTy, "tmp", CI);
3489 ICmpScaledV = Cast;
3490 }
3491 CI->setOperand(1, ICmpScaledV);
3492 } else {
3493 assert(F.AM.Scale == 0 &&
3494 "ICmp does not support folding a global value and "
3495 "a scale at the same time!");
3496 Constant *C = ConstantInt::getSigned(SE.getEffectiveSCEVType(OpTy),
3497 -(uint64_t)Offset);
3498 if (C->getType() != OpTy)
3499 C = ConstantExpr::getCast(CastInst::getCastOpcode(C, false,
3500 OpTy, false),
3501 C, OpTy);
3502
3503 CI->setOperand(1, C);
3504 }
3505 }
3506
3507 return FullV;
3508}
3509
Dan Gohman3a02cbc2010-02-16 20:25:07 +00003510/// RewriteForPHI - Helper for Rewrite. PHI nodes are special because the use
3511/// of their operands effectively happens in their predecessor blocks, so the
3512/// expression may need to be expanded in multiple places.
3513void LSRInstance::RewriteForPHI(PHINode *PN,
3514 const LSRFixup &LF,
3515 const Formula &F,
Dan Gohman3a02cbc2010-02-16 20:25:07 +00003516 SCEVExpander &Rewriter,
3517 SmallVectorImpl<WeakVH> &DeadInsts,
Dan Gohman3a02cbc2010-02-16 20:25:07 +00003518 Pass *P) const {
3519 DenseMap<BasicBlock *, Value *> Inserted;
3520 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
3521 if (PN->getIncomingValue(i) == LF.OperandValToReplace) {
3522 BasicBlock *BB = PN->getIncomingBlock(i);
3523
3524 // If this is a critical edge, split the edge so that we do not insert
3525 // the code on all predecessor/successor paths. We do this unless this
3526 // is the canonical backedge for this loop, which complicates post-inc
3527 // users.
3528 if (e != 1 && BB->getTerminator()->getNumSuccessors() > 1 &&
3529 !isa<IndirectBrInst>(BB->getTerminator()) &&
3530 (PN->getParent() != L->getHeader() || !L->contains(BB))) {
3531 // Split the critical edge.
3532 BasicBlock *NewBB = SplitCriticalEdge(BB, PN->getParent(), P);
3533
3534 // If PN is outside of the loop and BB is in the loop, we want to
3535 // move the block to be immediately before the PHI block, not
3536 // immediately after BB.
3537 if (L->contains(BB) && !L->contains(PN))
3538 NewBB->moveBefore(PN->getParent());
3539
3540 // Splitting the edge can reduce the number of PHI entries we have.
3541 e = PN->getNumIncomingValues();
3542 BB = NewBB;
3543 i = PN->getBasicBlockIndex(BB);
3544 }
3545
3546 std::pair<DenseMap<BasicBlock *, Value *>::iterator, bool> Pair =
3547 Inserted.insert(std::make_pair(BB, static_cast<Value *>(0)));
3548 if (!Pair.second)
3549 PN->setIncomingValue(i, Pair.first->second);
3550 else {
Dan Gohman454d26d2010-02-22 04:11:59 +00003551 Value *FullV = Expand(LF, F, BB->getTerminator(), Rewriter, DeadInsts);
Dan Gohman3a02cbc2010-02-16 20:25:07 +00003552
3553 // If this is reuse-by-noop-cast, insert the noop cast.
3554 const Type *OpTy = LF.OperandValToReplace->getType();
3555 if (FullV->getType() != OpTy)
3556 FullV =
3557 CastInst::Create(CastInst::getCastOpcode(FullV, false,
3558 OpTy, false),
3559 FullV, LF.OperandValToReplace->getType(),
3560 "tmp", BB->getTerminator());
3561
3562 PN->setIncomingValue(i, FullV);
3563 Pair.first->second = FullV;
3564 }
3565 }
3566}
3567
Dan Gohman572645c2010-02-12 10:34:29 +00003568/// Rewrite - Emit instructions for the leading candidate expression for this
3569/// LSRUse (this is called "expanding"), and update the UserInst to reference
3570/// the newly expanded value.
3571void LSRInstance::Rewrite(const LSRFixup &LF,
3572 const Formula &F,
Dan Gohman572645c2010-02-12 10:34:29 +00003573 SCEVExpander &Rewriter,
3574 SmallVectorImpl<WeakVH> &DeadInsts,
Dan Gohman572645c2010-02-12 10:34:29 +00003575 Pass *P) const {
Dan Gohman572645c2010-02-12 10:34:29 +00003576 // First, find an insertion point that dominates UserInst. For PHI nodes,
3577 // find the nearest block which dominates all the relevant uses.
3578 if (PHINode *PN = dyn_cast<PHINode>(LF.UserInst)) {
Dan Gohman454d26d2010-02-22 04:11:59 +00003579 RewriteForPHI(PN, LF, F, Rewriter, DeadInsts, P);
Dan Gohman572645c2010-02-12 10:34:29 +00003580 } else {
Dan Gohman454d26d2010-02-22 04:11:59 +00003581 Value *FullV = Expand(LF, F, LF.UserInst, Rewriter, DeadInsts);
Dan Gohman572645c2010-02-12 10:34:29 +00003582
3583 // If this is reuse-by-noop-cast, insert the noop cast.
Dan Gohman3a02cbc2010-02-16 20:25:07 +00003584 const Type *OpTy = LF.OperandValToReplace->getType();
Dan Gohman572645c2010-02-12 10:34:29 +00003585 if (FullV->getType() != OpTy) {
3586 Instruction *Cast =
3587 CastInst::Create(CastInst::getCastOpcode(FullV, false, OpTy, false),
3588 FullV, OpTy, "tmp", LF.UserInst);
3589 FullV = Cast;
3590 }
3591
3592 // Update the user. ICmpZero is handled specially here (for now) because
3593 // Expand may have updated one of the operands of the icmp already, and
3594 // its new value may happen to be equal to LF.OperandValToReplace, in
3595 // which case doing replaceUsesOfWith leads to replacing both operands
3596 // with the same value. TODO: Reorganize this.
3597 if (Uses[LF.LUIdx].Kind == LSRUse::ICmpZero)
3598 LF.UserInst->setOperand(0, FullV);
3599 else
3600 LF.UserInst->replaceUsesOfWith(LF.OperandValToReplace, FullV);
3601 }
3602
3603 DeadInsts.push_back(LF.OperandValToReplace);
3604}
3605
Dan Gohman76c315a2010-05-20 20:52:00 +00003606/// ImplementSolution - Rewrite all the fixup locations with new values,
3607/// following the chosen solution.
Dan Gohman572645c2010-02-12 10:34:29 +00003608void
3609LSRInstance::ImplementSolution(const SmallVectorImpl<const Formula *> &Solution,
3610 Pass *P) {
3611 // Keep track of instructions we may have made dead, so that
3612 // we can remove them after we are done working.
3613 SmallVector<WeakVH, 16> DeadInsts;
3614
3615 SCEVExpander Rewriter(SE);
3616 Rewriter.disableCanonicalMode();
3617 Rewriter.setIVIncInsertPos(L, IVIncInsertPos);
3618
3619 // Expand the new value definitions and update the users.
Dan Gohman402d4352010-05-20 20:33:18 +00003620 for (SmallVectorImpl<LSRFixup>::const_iterator I = Fixups.begin(),
3621 E = Fixups.end(); I != E; ++I) {
3622 const LSRFixup &Fixup = *I;
Dan Gohman572645c2010-02-12 10:34:29 +00003623
Dan Gohman402d4352010-05-20 20:33:18 +00003624 Rewrite(Fixup, *Solution[Fixup.LUIdx], Rewriter, DeadInsts, P);
Dan Gohman572645c2010-02-12 10:34:29 +00003625
3626 Changed = true;
3627 }
3628
3629 // Clean up after ourselves. This must be done before deleting any
3630 // instructions.
3631 Rewriter.clear();
3632
3633 Changed |= DeleteTriviallyDeadInstructions(DeadInsts);
3634}
3635
3636LSRInstance::LSRInstance(const TargetLowering *tli, Loop *l, Pass *P)
3637 : IU(P->getAnalysis<IVUsers>()),
3638 SE(P->getAnalysis<ScalarEvolution>()),
3639 DT(P->getAnalysis<DominatorTree>()),
Dan Gohmane5f76872010-04-09 22:07:05 +00003640 LI(P->getAnalysis<LoopInfo>()),
Dan Gohman572645c2010-02-12 10:34:29 +00003641 TLI(tli), L(l), Changed(false), IVIncInsertPos(0) {
Devang Patel0f54dcb2007-03-06 21:14:09 +00003642
Dan Gohman03e896b2009-11-05 21:11:53 +00003643 // If LoopSimplify form is not available, stay out of trouble.
Dan Gohman572645c2010-02-12 10:34:29 +00003644 if (!L->isLoopSimplifyForm()) return;
Dan Gohman03e896b2009-11-05 21:11:53 +00003645
Dan Gohman572645c2010-02-12 10:34:29 +00003646 // If there's no interesting work to be done, bail early.
3647 if (IU.empty()) return;
Dan Gohman80b0f8c2009-03-09 20:34:59 +00003648
Dan Gohman572645c2010-02-12 10:34:29 +00003649 DEBUG(dbgs() << "\nLSR on loop ";
3650 WriteAsOperand(dbgs(), L->getHeader(), /*PrintType=*/false);
3651 dbgs() << ":\n");
Dan Gohmanf7912df2009-03-09 20:46:50 +00003652
Dan Gohman402d4352010-05-20 20:33:18 +00003653 // First, perform some low-level loop optimizations.
Dan Gohman572645c2010-02-12 10:34:29 +00003654 OptimizeShadowIV();
Dan Gohmanc6519f92010-05-20 20:05:31 +00003655 OptimizeLoopTermCond();
Evan Cheng5792f512009-05-11 22:33:01 +00003656
Dan Gohman402d4352010-05-20 20:33:18 +00003657 // Start collecting data and preparing for the solver.
Dan Gohman572645c2010-02-12 10:34:29 +00003658 CollectInterestingTypesAndFactors();
3659 CollectFixupsAndInitialFormulae();
3660 CollectLoopInvariantFixupsAndFormulae();
Chris Lattner010de252005-08-08 05:28:22 +00003661
Dan Gohman572645c2010-02-12 10:34:29 +00003662 DEBUG(dbgs() << "LSR found " << Uses.size() << " uses:\n";
3663 print_uses(dbgs()));
Misha Brukmanfd939082005-04-21 23:48:37 +00003664
Dan Gohman572645c2010-02-12 10:34:29 +00003665 // Now use the reuse data to generate a bunch of interesting ways
3666 // to formulate the values needed for the uses.
3667 GenerateAllReuseFormulae();
Evan Chengd1d6b5c2006-03-16 21:53:05 +00003668
Dan Gohman572645c2010-02-12 10:34:29 +00003669 FilterOutUndesirableDedicatedRegisters();
3670 NarrowSearchSpaceUsingHeuristics();
Dan Gohman6bec5bb2009-12-18 00:06:20 +00003671
Dan Gohman572645c2010-02-12 10:34:29 +00003672 SmallVector<const Formula *, 8> Solution;
3673 Solve(Solution);
Dan Gohman6bec5bb2009-12-18 00:06:20 +00003674
Dan Gohman572645c2010-02-12 10:34:29 +00003675 // Release memory that is no longer needed.
3676 Factors.clear();
3677 Types.clear();
3678 RegUses.clear();
3679
3680#ifndef NDEBUG
3681 // Formulae should be legal.
3682 for (SmallVectorImpl<LSRUse>::const_iterator I = Uses.begin(),
3683 E = Uses.end(); I != E; ++I) {
3684 const LSRUse &LU = *I;
3685 for (SmallVectorImpl<Formula>::const_iterator J = LU.Formulae.begin(),
3686 JE = LU.Formulae.end(); J != JE; ++J)
3687 assert(isLegalUse(J->AM, LU.MinOffset, LU.MaxOffset,
3688 LU.Kind, LU.AccessTy, TLI) &&
3689 "Illegal formula generated!");
3690 };
3691#endif
3692
3693 // Now that we've decided what we want, make it so.
3694 ImplementSolution(Solution, P);
3695}
3696
3697void LSRInstance::print_factors_and_types(raw_ostream &OS) const {
3698 if (Factors.empty() && Types.empty()) return;
3699
3700 OS << "LSR has identified the following interesting factors and types: ";
3701 bool First = true;
3702
3703 for (SmallSetVector<int64_t, 8>::const_iterator
3704 I = Factors.begin(), E = Factors.end(); I != E; ++I) {
3705 if (!First) OS << ", ";
3706 First = false;
3707 OS << '*' << *I;
Evan Cheng81ebdcf2009-11-10 21:14:05 +00003708 }
Dale Johannesenc1acc3f2009-05-11 17:15:42 +00003709
Dan Gohman572645c2010-02-12 10:34:29 +00003710 for (SmallSetVector<const Type *, 4>::const_iterator
3711 I = Types.begin(), E = Types.end(); I != E; ++I) {
3712 if (!First) OS << ", ";
3713 First = false;
3714 OS << '(' << **I << ')';
3715 }
3716 OS << '\n';
3717}
3718
3719void LSRInstance::print_fixups(raw_ostream &OS) const {
3720 OS << "LSR is examining the following fixup sites:\n";
3721 for (SmallVectorImpl<LSRFixup>::const_iterator I = Fixups.begin(),
3722 E = Fixups.end(); I != E; ++I) {
Dan Gohman572645c2010-02-12 10:34:29 +00003723 dbgs() << " ";
Dan Gohman9f383eb2010-05-20 22:25:20 +00003724 I->print(OS);
Dan Gohman572645c2010-02-12 10:34:29 +00003725 OS << '\n';
3726 }
3727}
3728
3729void LSRInstance::print_uses(raw_ostream &OS) const {
3730 OS << "LSR is examining the following uses:\n";
3731 for (SmallVectorImpl<LSRUse>::const_iterator I = Uses.begin(),
3732 E = Uses.end(); I != E; ++I) {
3733 const LSRUse &LU = *I;
3734 dbgs() << " ";
3735 LU.print(OS);
3736 OS << '\n';
3737 for (SmallVectorImpl<Formula>::const_iterator J = LU.Formulae.begin(),
3738 JE = LU.Formulae.end(); J != JE; ++J) {
3739 OS << " ";
3740 J->print(OS);
3741 OS << '\n';
3742 }
3743 }
3744}
3745
3746void LSRInstance::print(raw_ostream &OS) const {
3747 print_factors_and_types(OS);
3748 print_fixups(OS);
3749 print_uses(OS);
3750}
3751
3752void LSRInstance::dump() const {
3753 print(errs()); errs() << '\n';
3754}
3755
3756namespace {
3757
3758class LoopStrengthReduce : public LoopPass {
3759 /// TLI - Keep a pointer of a TargetLowering to consult for determining
3760 /// transformation profitability.
3761 const TargetLowering *const TLI;
3762
3763public:
3764 static char ID; // Pass ID, replacement for typeid
3765 explicit LoopStrengthReduce(const TargetLowering *tli = 0);
3766
3767private:
3768 bool runOnLoop(Loop *L, LPPassManager &LPM);
3769 void getAnalysisUsage(AnalysisUsage &AU) const;
3770};
3771
3772}
3773
3774char LoopStrengthReduce::ID = 0;
Owen Andersond13db2c2010-07-21 22:09:45 +00003775INITIALIZE_PASS(LoopStrengthReduce, "loop-reduce",
3776 "Loop Strength Reduction", false, false);
Dan Gohman572645c2010-02-12 10:34:29 +00003777
3778Pass *llvm::createLoopStrengthReducePass(const TargetLowering *TLI) {
3779 return new LoopStrengthReduce(TLI);
3780}
3781
3782LoopStrengthReduce::LoopStrengthReduce(const TargetLowering *tli)
Owen Anderson90c579d2010-08-06 18:33:48 +00003783 : LoopPass(ID), TLI(tli) {}
Dan Gohman572645c2010-02-12 10:34:29 +00003784
3785void LoopStrengthReduce::getAnalysisUsage(AnalysisUsage &AU) const {
3786 // We split critical edges, so we change the CFG. However, we do update
3787 // many analyses if they are around.
3788 AU.addPreservedID(LoopSimplifyID);
Dan Gohman572645c2010-02-12 10:34:29 +00003789 AU.addPreserved("domfrontier");
3790
Dan Gohmane5f76872010-04-09 22:07:05 +00003791 AU.addRequired<LoopInfo>();
3792 AU.addPreserved<LoopInfo>();
Dan Gohman572645c2010-02-12 10:34:29 +00003793 AU.addRequiredID(LoopSimplifyID);
3794 AU.addRequired<DominatorTree>();
3795 AU.addPreserved<DominatorTree>();
3796 AU.addRequired<ScalarEvolution>();
3797 AU.addPreserved<ScalarEvolution>();
3798 AU.addRequired<IVUsers>();
3799 AU.addPreserved<IVUsers>();
3800}
3801
3802bool LoopStrengthReduce::runOnLoop(Loop *L, LPPassManager & /*LPM*/) {
3803 bool Changed = false;
3804
3805 // Run the main LSR transformation.
3806 Changed |= LSRInstance(TLI, L, this).getChanged();
3807
Dan Gohmanafc36a92009-05-02 18:29:22 +00003808 // At this point, it is worth checking to see if any recurrence PHIs are also
Dan Gohman35738ac2009-05-04 22:30:44 +00003809 // dead, so that we can remove them as well.
Dan Gohman9fff2182010-01-05 16:31:45 +00003810 Changed |= DeleteDeadPHIs(L->getHeader());
Dan Gohmanafc36a92009-05-02 18:29:22 +00003811
Evan Cheng1ce75dc2008-07-07 19:51:32 +00003812 return Changed;
Nate Begemaneaa13852004-10-18 21:08:22 +00003813}