blob: 349d04524fe9aaf3df1c9be03cc7c6f454c1e5bd [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 Lattner9fc5cdf2011-01-02 22:09:33 +000066#include "llvm/Assembly/Writer.h"
Chris Lattnere0391be2005-08-12 22:06:11 +000067#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Nate Begemaneaa13852004-10-18 21:08:22 +000068#include "llvm/Transforms/Utils/Local.h"
Dan Gohman572645c2010-02-12 10:34:29 +000069#include "llvm/ADT/SmallBitVector.h"
70#include "llvm/ADT/SetVector.h"
71#include "llvm/ADT/DenseSet.h"
Nate Begeman16997482005-07-30 00:15:07 +000072#include "llvm/Support/Debug.h"
Andrew Trick80ef1b22011-09-27 00:44:14 +000073#include "llvm/Support/CommandLine.h"
Dan Gohmanafc36a92009-05-02 18:29:22 +000074#include "llvm/Support/ValueHandle.h"
Daniel Dunbar460f6562009-07-26 09:48:23 +000075#include "llvm/Support/raw_ostream.h"
Evan Chengd277f2c2006-03-13 23:14:23 +000076#include "llvm/Target/TargetLowering.h"
Jeff Cohencfb1d422005-07-30 18:22:27 +000077#include <algorithm>
Nate Begemaneaa13852004-10-18 21:08:22 +000078using namespace llvm;
79
Benjamin Kramer0861f572011-11-26 23:01:57 +000080static cl::opt<bool> EnableNested(
Andrew Trick0c01bc32011-09-29 01:33:38 +000081 "enable-lsr-nested", cl::Hidden, cl::desc("Enable LSR on nested loops"));
82
Benjamin Kramer0861f572011-11-26 23:01:57 +000083static cl::opt<bool> EnableRetry(
84 "enable-lsr-retry", cl::Hidden, cl::desc("Enable LSR retry"));
Andrew Tricka02bfce2011-10-11 02:30:45 +000085
86// Temporary flag to cleanup congruent phis after LSR phi expansion.
87// It's currently disabled until we can determine whether it's truly useful or
88// not. The flag should be removed after the v3.0 release.
Benjamin Kramer0861f572011-11-26 23:01:57 +000089static cl::opt<bool> EnablePhiElim(
90 "enable-lsr-phielim", cl::Hidden, cl::desc("Enable LSR phi elimination"));
Andrew Trick80ef1b22011-09-27 00:44:14 +000091
Dan Gohman572645c2010-02-12 10:34:29 +000092namespace {
Nate Begemaneaa13852004-10-18 21:08:22 +000093
Dan Gohman572645c2010-02-12 10:34:29 +000094/// RegSortData - This class holds data which is used to order reuse candidates.
95class RegSortData {
96public:
97 /// UsedByIndices - This represents the set of LSRUse indices which reference
98 /// a particular register.
99 SmallBitVector UsedByIndices;
100
101 RegSortData() {}
102
103 void print(raw_ostream &OS) const;
104 void dump() const;
105};
106
107}
108
109void RegSortData::print(raw_ostream &OS) const {
110 OS << "[NumUses=" << UsedByIndices.count() << ']';
111}
112
113void RegSortData::dump() const {
114 print(errs()); errs() << '\n';
115}
Dan Gohmanc17e0cf2009-02-20 04:17:46 +0000116
Chris Lattner0e5f4992006-12-19 21:40:18 +0000117namespace {
Dale Johannesendc42f482007-03-20 00:47:50 +0000118
Dan Gohman572645c2010-02-12 10:34:29 +0000119/// RegUseTracker - Map register candidates to information about how they are
120/// used.
121class RegUseTracker {
122 typedef DenseMap<const SCEV *, RegSortData> RegUsesTy;
Dale Johannesendc42f482007-03-20 00:47:50 +0000123
Dan Gohman90bb3552010-05-18 22:33:00 +0000124 RegUsesTy RegUsesMap;
Dan Gohman572645c2010-02-12 10:34:29 +0000125 SmallVector<const SCEV *, 16> RegSequence;
Evan Chengd1d6b5c2006-03-16 21:53:05 +0000126
Dan Gohman572645c2010-02-12 10:34:29 +0000127public:
128 void CountRegister(const SCEV *Reg, size_t LUIdx);
Dan Gohmanb2df4332010-05-18 23:42:37 +0000129 void DropRegister(const SCEV *Reg, size_t LUIdx);
Dan Gohmanc6897702010-10-07 23:33:43 +0000130 void SwapAndDropUse(size_t LUIdx, size_t LastLUIdx);
Dan Gohmana10756e2010-01-21 02:09:26 +0000131
Dan Gohman572645c2010-02-12 10:34:29 +0000132 bool isRegUsedByUsesOtherThan(const SCEV *Reg, size_t LUIdx) const;
Dan Gohmana10756e2010-01-21 02:09:26 +0000133
Dan Gohman572645c2010-02-12 10:34:29 +0000134 const SmallBitVector &getUsedByIndices(const SCEV *Reg) const;
Dan Gohmana10756e2010-01-21 02:09:26 +0000135
Dan Gohman572645c2010-02-12 10:34:29 +0000136 void clear();
Dan Gohmana10756e2010-01-21 02:09:26 +0000137
Dan Gohman572645c2010-02-12 10:34:29 +0000138 typedef SmallVectorImpl<const SCEV *>::iterator iterator;
139 typedef SmallVectorImpl<const SCEV *>::const_iterator const_iterator;
140 iterator begin() { return RegSequence.begin(); }
141 iterator end() { return RegSequence.end(); }
142 const_iterator begin() const { return RegSequence.begin(); }
143 const_iterator end() const { return RegSequence.end(); }
144};
Dan Gohmana10756e2010-01-21 02:09:26 +0000145
Dan Gohmana10756e2010-01-21 02:09:26 +0000146}
147
Dan Gohman572645c2010-02-12 10:34:29 +0000148void
149RegUseTracker::CountRegister(const SCEV *Reg, size_t LUIdx) {
150 std::pair<RegUsesTy::iterator, bool> Pair =
Dan Gohman90bb3552010-05-18 22:33:00 +0000151 RegUsesMap.insert(std::make_pair(Reg, RegSortData()));
Dan Gohman572645c2010-02-12 10:34:29 +0000152 RegSortData &RSD = Pair.first->second;
153 if (Pair.second)
154 RegSequence.push_back(Reg);
155 RSD.UsedByIndices.resize(std::max(RSD.UsedByIndices.size(), LUIdx + 1));
156 RSD.UsedByIndices.set(LUIdx);
Dan Gohmana10756e2010-01-21 02:09:26 +0000157}
158
Dan Gohmanb2df4332010-05-18 23:42:37 +0000159void
160RegUseTracker::DropRegister(const SCEV *Reg, size_t LUIdx) {
161 RegUsesTy::iterator It = RegUsesMap.find(Reg);
162 assert(It != RegUsesMap.end());
163 RegSortData &RSD = It->second;
164 assert(RSD.UsedByIndices.size() > LUIdx);
165 RSD.UsedByIndices.reset(LUIdx);
166}
167
Dan Gohmana2086b32010-05-19 23:43:12 +0000168void
Dan Gohmanc6897702010-10-07 23:33:43 +0000169RegUseTracker::SwapAndDropUse(size_t LUIdx, size_t LastLUIdx) {
170 assert(LUIdx <= LastLUIdx);
171
172 // Update RegUses. The data structure is not optimized for this purpose;
173 // we must iterate through it and update each of the bit vectors.
Dan Gohmana2086b32010-05-19 23:43:12 +0000174 for (RegUsesTy::iterator I = RegUsesMap.begin(), E = RegUsesMap.end();
Dan Gohmanc6897702010-10-07 23:33:43 +0000175 I != E; ++I) {
176 SmallBitVector &UsedByIndices = I->second.UsedByIndices;
177 if (LUIdx < UsedByIndices.size())
178 UsedByIndices[LUIdx] =
179 LastLUIdx < UsedByIndices.size() ? UsedByIndices[LastLUIdx] : 0;
180 UsedByIndices.resize(std::min(UsedByIndices.size(), LastLUIdx));
181 }
Dan Gohmana2086b32010-05-19 23:43:12 +0000182}
183
Dan Gohman572645c2010-02-12 10:34:29 +0000184bool
185RegUseTracker::isRegUsedByUsesOtherThan(const SCEV *Reg, size_t LUIdx) const {
Dan Gohman46fd7a62010-08-29 15:18:49 +0000186 RegUsesTy::const_iterator I = RegUsesMap.find(Reg);
187 if (I == RegUsesMap.end())
188 return false;
189 const SmallBitVector &UsedByIndices = I->second.UsedByIndices;
Dan Gohman572645c2010-02-12 10:34:29 +0000190 int i = UsedByIndices.find_first();
191 if (i == -1) return false;
192 if ((size_t)i != LUIdx) return true;
193 return UsedByIndices.find_next(i) != -1;
194}
Dan Gohmana10756e2010-01-21 02:09:26 +0000195
Dan Gohman572645c2010-02-12 10:34:29 +0000196const SmallBitVector &RegUseTracker::getUsedByIndices(const SCEV *Reg) const {
Dan Gohman90bb3552010-05-18 22:33:00 +0000197 RegUsesTy::const_iterator I = RegUsesMap.find(Reg);
198 assert(I != RegUsesMap.end() && "Unknown register!");
Dan Gohman572645c2010-02-12 10:34:29 +0000199 return I->second.UsedByIndices;
200}
Dan Gohmana10756e2010-01-21 02:09:26 +0000201
Dan Gohman572645c2010-02-12 10:34:29 +0000202void RegUseTracker::clear() {
Dan Gohman90bb3552010-05-18 22:33:00 +0000203 RegUsesMap.clear();
Dan Gohman572645c2010-02-12 10:34:29 +0000204 RegSequence.clear();
205}
Dan Gohmana10756e2010-01-21 02:09:26 +0000206
Dan Gohman572645c2010-02-12 10:34:29 +0000207namespace {
208
209/// Formula - This class holds information that describes a formula for
210/// computing satisfying a use. It may include broken-out immediates and scaled
211/// registers.
212struct Formula {
213 /// AM - This is used to represent complex addressing, as well as other kinds
214 /// of interesting uses.
215 TargetLowering::AddrMode AM;
216
217 /// BaseRegs - The list of "base" registers for this use. When this is
218 /// non-empty, AM.HasBaseReg should be set to true.
219 SmallVector<const SCEV *, 2> BaseRegs;
220
221 /// ScaledReg - The 'scaled' register for this use. This should be non-null
222 /// when AM.Scale is not zero.
223 const SCEV *ScaledReg;
224
Dan Gohmancca82142011-05-03 00:46:49 +0000225 /// UnfoldedOffset - An additional constant offset which added near the
226 /// use. This requires a temporary register, but the offset itself can
227 /// live in an add immediate field rather than a register.
228 int64_t UnfoldedOffset;
229
230 Formula() : ScaledReg(0), UnfoldedOffset(0) {}
Dan Gohman572645c2010-02-12 10:34:29 +0000231
Dan Gohmandc0e8fb2010-11-17 21:41:58 +0000232 void InitialMatch(const SCEV *S, Loop *L, ScalarEvolution &SE);
Dan Gohman572645c2010-02-12 10:34:29 +0000233
234 unsigned getNumRegs() const;
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000235 Type *getType() const;
Dan Gohman572645c2010-02-12 10:34:29 +0000236
Dan Gohman5ce6d052010-05-20 15:17:54 +0000237 void DeleteBaseReg(const SCEV *&S);
238
Dan Gohman572645c2010-02-12 10:34:29 +0000239 bool referencesReg(const SCEV *S) const;
240 bool hasRegsUsedByUsesOtherThan(size_t LUIdx,
241 const RegUseTracker &RegUses) const;
242
243 void print(raw_ostream &OS) const;
244 void dump() const;
245};
246
247}
248
Dan Gohman3f46a3a2010-03-01 17:49:51 +0000249/// DoInitialMatch - Recursion helper for InitialMatch.
Dan Gohman572645c2010-02-12 10:34:29 +0000250static void DoInitialMatch(const SCEV *S, Loop *L,
251 SmallVectorImpl<const SCEV *> &Good,
252 SmallVectorImpl<const SCEV *> &Bad,
Dan Gohmandc0e8fb2010-11-17 21:41:58 +0000253 ScalarEvolution &SE) {
Dan Gohman572645c2010-02-12 10:34:29 +0000254 // Collect expressions which properly dominate the loop header.
Dan Gohmandc0e8fb2010-11-17 21:41:58 +0000255 if (SE.properlyDominates(S, L->getHeader())) {
Dan Gohman572645c2010-02-12 10:34:29 +0000256 Good.push_back(S);
257 return;
Dan Gohmana10756e2010-01-21 02:09:26 +0000258 }
Dan Gohman572645c2010-02-12 10:34:29 +0000259
260 // Look at add operands.
261 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
262 for (SCEVAddExpr::op_iterator I = Add->op_begin(), E = Add->op_end();
263 I != E; ++I)
Dan Gohmandc0e8fb2010-11-17 21:41:58 +0000264 DoInitialMatch(*I, L, Good, Bad, SE);
Dan Gohman572645c2010-02-12 10:34:29 +0000265 return;
266 }
267
268 // Look at addrec operands.
269 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S))
270 if (!AR->getStart()->isZero()) {
Dan Gohmandc0e8fb2010-11-17 21:41:58 +0000271 DoInitialMatch(AR->getStart(), L, Good, Bad, SE);
Dan Gohmandeff6212010-05-03 22:09:21 +0000272 DoInitialMatch(SE.getAddRecExpr(SE.getConstant(AR->getType(), 0),
Dan Gohman572645c2010-02-12 10:34:29 +0000273 AR->getStepRecurrence(SE),
Andrew Trick3228cc22011-03-14 16:50:06 +0000274 // FIXME: AR->getNoWrapFlags()
275 AR->getLoop(), SCEV::FlagAnyWrap),
Dan Gohmandc0e8fb2010-11-17 21:41:58 +0000276 L, Good, Bad, SE);
Dan Gohman572645c2010-02-12 10:34:29 +0000277 return;
278 }
279
280 // Handle a multiplication by -1 (negation) if it didn't fold.
281 if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S))
282 if (Mul->getOperand(0)->isAllOnesValue()) {
283 SmallVector<const SCEV *, 4> Ops(Mul->op_begin()+1, Mul->op_end());
284 const SCEV *NewMul = SE.getMulExpr(Ops);
285
286 SmallVector<const SCEV *, 4> MyGood;
287 SmallVector<const SCEV *, 4> MyBad;
Dan Gohmandc0e8fb2010-11-17 21:41:58 +0000288 DoInitialMatch(NewMul, L, MyGood, MyBad, SE);
Dan Gohman572645c2010-02-12 10:34:29 +0000289 const SCEV *NegOne = SE.getSCEV(ConstantInt::getAllOnesValue(
290 SE.getEffectiveSCEVType(NewMul->getType())));
291 for (SmallVectorImpl<const SCEV *>::const_iterator I = MyGood.begin(),
292 E = MyGood.end(); I != E; ++I)
293 Good.push_back(SE.getMulExpr(NegOne, *I));
294 for (SmallVectorImpl<const SCEV *>::const_iterator I = MyBad.begin(),
295 E = MyBad.end(); I != E; ++I)
296 Bad.push_back(SE.getMulExpr(NegOne, *I));
297 return;
298 }
299
300 // Ok, we can't do anything interesting. Just stuff the whole thing into a
301 // register and hope for the best.
302 Bad.push_back(S);
303}
304
305/// InitialMatch - Incorporate loop-variant parts of S into this Formula,
306/// attempting to keep all loop-invariant and loop-computable values in a
307/// single base register.
Dan Gohmandc0e8fb2010-11-17 21:41:58 +0000308void Formula::InitialMatch(const SCEV *S, Loop *L, ScalarEvolution &SE) {
Dan Gohman572645c2010-02-12 10:34:29 +0000309 SmallVector<const SCEV *, 4> Good;
310 SmallVector<const SCEV *, 4> Bad;
Dan Gohmandc0e8fb2010-11-17 21:41:58 +0000311 DoInitialMatch(S, L, Good, Bad, SE);
Dan Gohman572645c2010-02-12 10:34:29 +0000312 if (!Good.empty()) {
Dan Gohmane60bb152010-04-08 23:36:27 +0000313 const SCEV *Sum = SE.getAddExpr(Good);
314 if (!Sum->isZero())
315 BaseRegs.push_back(Sum);
Dan Gohman572645c2010-02-12 10:34:29 +0000316 AM.HasBaseReg = true;
317 }
318 if (!Bad.empty()) {
Dan Gohmane60bb152010-04-08 23:36:27 +0000319 const SCEV *Sum = SE.getAddExpr(Bad);
320 if (!Sum->isZero())
321 BaseRegs.push_back(Sum);
Dan Gohman572645c2010-02-12 10:34:29 +0000322 AM.HasBaseReg = true;
323 }
324}
325
326/// getNumRegs - Return the total number of register operands used by this
327/// formula. This does not include register uses implied by non-constant
328/// addrec strides.
329unsigned Formula::getNumRegs() const {
330 return !!ScaledReg + BaseRegs.size();
331}
332
333/// getType - Return the type of this formula, if it has one, or null
334/// otherwise. This type is meaningless except for the bit size.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000335Type *Formula::getType() const {
Dan Gohman572645c2010-02-12 10:34:29 +0000336 return !BaseRegs.empty() ? BaseRegs.front()->getType() :
337 ScaledReg ? ScaledReg->getType() :
338 AM.BaseGV ? AM.BaseGV->getType() :
339 0;
340}
341
Dan Gohman5ce6d052010-05-20 15:17:54 +0000342/// DeleteBaseReg - Delete the given base reg from the BaseRegs list.
343void Formula::DeleteBaseReg(const SCEV *&S) {
344 if (&S != &BaseRegs.back())
345 std::swap(S, BaseRegs.back());
346 BaseRegs.pop_back();
347}
348
Dan Gohman572645c2010-02-12 10:34:29 +0000349/// referencesReg - Test if this formula references the given register.
350bool Formula::referencesReg(const SCEV *S) const {
351 return S == ScaledReg ||
352 std::find(BaseRegs.begin(), BaseRegs.end(), S) != BaseRegs.end();
353}
354
355/// hasRegsUsedByUsesOtherThan - Test whether this formula uses registers
356/// which are used by uses other than the use with the given index.
357bool Formula::hasRegsUsedByUsesOtherThan(size_t LUIdx,
358 const RegUseTracker &RegUses) const {
359 if (ScaledReg)
360 if (RegUses.isRegUsedByUsesOtherThan(ScaledReg, LUIdx))
361 return true;
362 for (SmallVectorImpl<const SCEV *>::const_iterator I = BaseRegs.begin(),
363 E = BaseRegs.end(); I != E; ++I)
364 if (RegUses.isRegUsedByUsesOtherThan(*I, LUIdx))
365 return true;
366 return false;
367}
368
369void Formula::print(raw_ostream &OS) const {
370 bool First = true;
371 if (AM.BaseGV) {
372 if (!First) OS << " + "; else First = false;
373 WriteAsOperand(OS, AM.BaseGV, /*PrintType=*/false);
374 }
375 if (AM.BaseOffs != 0) {
376 if (!First) OS << " + "; else First = false;
377 OS << AM.BaseOffs;
378 }
379 for (SmallVectorImpl<const SCEV *>::const_iterator I = BaseRegs.begin(),
380 E = BaseRegs.end(); I != E; ++I) {
381 if (!First) OS << " + "; else First = false;
382 OS << "reg(" << **I << ')';
383 }
Dan Gohmanc4cfbaf2010-05-18 22:35:55 +0000384 if (AM.HasBaseReg && BaseRegs.empty()) {
385 if (!First) OS << " + "; else First = false;
386 OS << "**error: HasBaseReg**";
387 } else if (!AM.HasBaseReg && !BaseRegs.empty()) {
388 if (!First) OS << " + "; else First = false;
389 OS << "**error: !HasBaseReg**";
390 }
Dan Gohman572645c2010-02-12 10:34:29 +0000391 if (AM.Scale != 0) {
392 if (!First) OS << " + "; else First = false;
393 OS << AM.Scale << "*reg(";
394 if (ScaledReg)
395 OS << *ScaledReg;
396 else
397 OS << "<unknown>";
398 OS << ')';
399 }
Dan Gohmancca82142011-05-03 00:46:49 +0000400 if (UnfoldedOffset != 0) {
401 if (!First) OS << " + "; else First = false;
402 OS << "imm(" << UnfoldedOffset << ')';
403 }
Dan Gohman572645c2010-02-12 10:34:29 +0000404}
405
406void Formula::dump() const {
407 print(errs()); errs() << '\n';
408}
409
Dan Gohmanaae01f12010-02-19 19:32:49 +0000410/// isAddRecSExtable - Return true if the given addrec can be sign-extended
411/// without changing its value.
412static bool isAddRecSExtable(const SCEVAddRecExpr *AR, ScalarEvolution &SE) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000413 Type *WideTy =
Dan Gohmanea507f52010-05-20 19:44:23 +0000414 IntegerType::get(SE.getContext(), SE.getTypeSizeInBits(AR->getType()) + 1);
Dan Gohmanaae01f12010-02-19 19:32:49 +0000415 return isa<SCEVAddRecExpr>(SE.getSignExtendExpr(AR, WideTy));
416}
417
418/// isAddSExtable - Return true if the given add can be sign-extended
419/// without changing its value.
420static bool isAddSExtable(const SCEVAddExpr *A, ScalarEvolution &SE) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000421 Type *WideTy =
Dan Gohmanea507f52010-05-20 19:44:23 +0000422 IntegerType::get(SE.getContext(), SE.getTypeSizeInBits(A->getType()) + 1);
Dan Gohmanaae01f12010-02-19 19:32:49 +0000423 return isa<SCEVAddExpr>(SE.getSignExtendExpr(A, WideTy));
424}
425
Dan Gohman473e6352010-06-24 16:45:11 +0000426/// isMulSExtable - Return true if the given mul can be sign-extended
Dan Gohmanaae01f12010-02-19 19:32:49 +0000427/// without changing its value.
Dan Gohman473e6352010-06-24 16:45:11 +0000428static bool isMulSExtable(const SCEVMulExpr *M, ScalarEvolution &SE) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000429 Type *WideTy =
Dan Gohman473e6352010-06-24 16:45:11 +0000430 IntegerType::get(SE.getContext(),
431 SE.getTypeSizeInBits(M->getType()) * M->getNumOperands());
432 return isa<SCEVMulExpr>(SE.getSignExtendExpr(M, WideTy));
Dan Gohmanaae01f12010-02-19 19:32:49 +0000433}
434
Dan Gohmanf09b7122010-02-19 19:35:48 +0000435/// getExactSDiv - Return an expression for LHS /s RHS, if it can be determined
436/// and if the remainder is known to be zero, or null otherwise. If
437/// IgnoreSignificantBits is true, expressions like (X * Y) /s Y are simplified
438/// to Y, ignoring that the multiplication may overflow, which is useful when
439/// the result will be used in a context where the most significant bits are
440/// ignored.
441static const SCEV *getExactSDiv(const SCEV *LHS, const SCEV *RHS,
442 ScalarEvolution &SE,
443 bool IgnoreSignificantBits = false) {
Dan Gohman572645c2010-02-12 10:34:29 +0000444 // Handle the trivial case, which works for any SCEV type.
445 if (LHS == RHS)
Dan Gohmandeff6212010-05-03 22:09:21 +0000446 return SE.getConstant(LHS->getType(), 1);
Dan Gohman572645c2010-02-12 10:34:29 +0000447
Dan Gohmand42819a2010-06-24 16:51:25 +0000448 // Handle a few RHS special cases.
449 const SCEVConstant *RC = dyn_cast<SCEVConstant>(RHS);
450 if (RC) {
451 const APInt &RA = RC->getValue()->getValue();
452 // Handle x /s -1 as x * -1, to give ScalarEvolution a chance to do
453 // some folding.
454 if (RA.isAllOnesValue())
455 return SE.getMulExpr(LHS, RC);
456 // Handle x /s 1 as x.
457 if (RA == 1)
458 return LHS;
459 }
Dan Gohman572645c2010-02-12 10:34:29 +0000460
461 // Check for a division of a constant by a constant.
462 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(LHS)) {
Dan Gohman572645c2010-02-12 10:34:29 +0000463 if (!RC)
464 return 0;
Dan Gohmand42819a2010-06-24 16:51:25 +0000465 const APInt &LA = C->getValue()->getValue();
466 const APInt &RA = RC->getValue()->getValue();
467 if (LA.srem(RA) != 0)
Dan Gohman572645c2010-02-12 10:34:29 +0000468 return 0;
Dan Gohmand42819a2010-06-24 16:51:25 +0000469 return SE.getConstant(LA.sdiv(RA));
Dan Gohman572645c2010-02-12 10:34:29 +0000470 }
471
Dan Gohmanaae01f12010-02-19 19:32:49 +0000472 // Distribute the sdiv over addrec operands, if the addrec doesn't overflow.
Dan Gohman572645c2010-02-12 10:34:29 +0000473 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(LHS)) {
Dan Gohmanaae01f12010-02-19 19:32:49 +0000474 if (IgnoreSignificantBits || isAddRecSExtable(AR, SE)) {
Dan Gohmanf09b7122010-02-19 19:35:48 +0000475 const SCEV *Step = getExactSDiv(AR->getStepRecurrence(SE), RHS, SE,
476 IgnoreSignificantBits);
Dan Gohmanaae01f12010-02-19 19:32:49 +0000477 if (!Step) return 0;
Dan Gohman694a15e2010-08-19 01:02:31 +0000478 const SCEV *Start = getExactSDiv(AR->getStart(), RHS, SE,
479 IgnoreSignificantBits);
480 if (!Start) return 0;
Andrew Trick3228cc22011-03-14 16:50:06 +0000481 // FlagNW is independent of the start value, step direction, and is
482 // preserved with smaller magnitude steps.
483 // FIXME: AR->getNoWrapFlags(SCEV::FlagNW)
484 return SE.getAddRecExpr(Start, Step, AR->getLoop(), SCEV::FlagAnyWrap);
Dan Gohmanaae01f12010-02-19 19:32:49 +0000485 }
Dan Gohman2ea09e02010-06-24 16:57:52 +0000486 return 0;
Dan Gohman572645c2010-02-12 10:34:29 +0000487 }
488
Dan Gohmanaae01f12010-02-19 19:32:49 +0000489 // Distribute the sdiv over add operands, if the add doesn't overflow.
Dan Gohman572645c2010-02-12 10:34:29 +0000490 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(LHS)) {
Dan Gohmanaae01f12010-02-19 19:32:49 +0000491 if (IgnoreSignificantBits || isAddSExtable(Add, SE)) {
492 SmallVector<const SCEV *, 8> Ops;
493 for (SCEVAddExpr::op_iterator I = Add->op_begin(), E = Add->op_end();
494 I != E; ++I) {
Dan Gohmanf09b7122010-02-19 19:35:48 +0000495 const SCEV *Op = getExactSDiv(*I, RHS, SE,
496 IgnoreSignificantBits);
Dan Gohmanaae01f12010-02-19 19:32:49 +0000497 if (!Op) return 0;
498 Ops.push_back(Op);
499 }
500 return SE.getAddExpr(Ops);
Dan Gohman572645c2010-02-12 10:34:29 +0000501 }
Dan Gohman2ea09e02010-06-24 16:57:52 +0000502 return 0;
Dan Gohman572645c2010-02-12 10:34:29 +0000503 }
504
505 // Check for a multiply operand that we can pull RHS out of.
Dan Gohman2ea09e02010-06-24 16:57:52 +0000506 if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(LHS)) {
Dan Gohmanaae01f12010-02-19 19:32:49 +0000507 if (IgnoreSignificantBits || isMulSExtable(Mul, SE)) {
Dan Gohman572645c2010-02-12 10:34:29 +0000508 SmallVector<const SCEV *, 4> Ops;
509 bool Found = false;
510 for (SCEVMulExpr::op_iterator I = Mul->op_begin(), E = Mul->op_end();
511 I != E; ++I) {
Dan Gohman47667442010-05-20 16:23:28 +0000512 const SCEV *S = *I;
Dan Gohman572645c2010-02-12 10:34:29 +0000513 if (!Found)
Dan Gohman47667442010-05-20 16:23:28 +0000514 if (const SCEV *Q = getExactSDiv(S, RHS, SE,
Dan Gohmanf09b7122010-02-19 19:35:48 +0000515 IgnoreSignificantBits)) {
Dan Gohman47667442010-05-20 16:23:28 +0000516 S = Q;
Dan Gohman572645c2010-02-12 10:34:29 +0000517 Found = true;
Dan Gohman572645c2010-02-12 10:34:29 +0000518 }
Dan Gohman47667442010-05-20 16:23:28 +0000519 Ops.push_back(S);
Dan Gohman572645c2010-02-12 10:34:29 +0000520 }
521 return Found ? SE.getMulExpr(Ops) : 0;
522 }
Dan Gohman2ea09e02010-06-24 16:57:52 +0000523 return 0;
524 }
Dan Gohman572645c2010-02-12 10:34:29 +0000525
526 // Otherwise we don't know.
527 return 0;
528}
529
530/// ExtractImmediate - If S involves the addition of a constant integer value,
531/// return that integer value, and mutate S to point to a new SCEV with that
532/// value excluded.
533static int64_t ExtractImmediate(const SCEV *&S, ScalarEvolution &SE) {
534 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(S)) {
535 if (C->getValue()->getValue().getMinSignedBits() <= 64) {
Dan Gohmandeff6212010-05-03 22:09:21 +0000536 S = SE.getConstant(C->getType(), 0);
Dan Gohman572645c2010-02-12 10:34:29 +0000537 return C->getValue()->getSExtValue();
538 }
539 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
540 SmallVector<const SCEV *, 8> NewOps(Add->op_begin(), Add->op_end());
541 int64_t Result = ExtractImmediate(NewOps.front(), SE);
Dan Gohmane62d5882010-08-13 21:17:19 +0000542 if (Result != 0)
543 S = SE.getAddExpr(NewOps);
Dan Gohman572645c2010-02-12 10:34:29 +0000544 return Result;
545 } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
546 SmallVector<const SCEV *, 8> NewOps(AR->op_begin(), AR->op_end());
547 int64_t Result = ExtractImmediate(NewOps.front(), SE);
Dan Gohmane62d5882010-08-13 21:17:19 +0000548 if (Result != 0)
Andrew Trick3228cc22011-03-14 16:50:06 +0000549 S = SE.getAddRecExpr(NewOps, AR->getLoop(),
550 // FIXME: AR->getNoWrapFlags(SCEV::FlagNW)
551 SCEV::FlagAnyWrap);
Dan Gohman572645c2010-02-12 10:34:29 +0000552 return Result;
553 }
554 return 0;
555}
556
557/// ExtractSymbol - If S involves the addition of a GlobalValue address,
558/// return that symbol, and mutate S to point to a new SCEV with that
559/// value excluded.
560static GlobalValue *ExtractSymbol(const SCEV *&S, ScalarEvolution &SE) {
561 if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(S)) {
562 if (GlobalValue *GV = dyn_cast<GlobalValue>(U->getValue())) {
Dan Gohmandeff6212010-05-03 22:09:21 +0000563 S = SE.getConstant(GV->getType(), 0);
Dan Gohman572645c2010-02-12 10:34:29 +0000564 return GV;
565 }
566 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
567 SmallVector<const SCEV *, 8> NewOps(Add->op_begin(), Add->op_end());
568 GlobalValue *Result = ExtractSymbol(NewOps.back(), SE);
Dan Gohmane62d5882010-08-13 21:17:19 +0000569 if (Result)
570 S = SE.getAddExpr(NewOps);
Dan Gohman572645c2010-02-12 10:34:29 +0000571 return Result;
572 } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
573 SmallVector<const SCEV *, 8> NewOps(AR->op_begin(), AR->op_end());
574 GlobalValue *Result = ExtractSymbol(NewOps.front(), SE);
Dan Gohmane62d5882010-08-13 21:17:19 +0000575 if (Result)
Andrew Trick3228cc22011-03-14 16:50:06 +0000576 S = SE.getAddRecExpr(NewOps, AR->getLoop(),
577 // FIXME: AR->getNoWrapFlags(SCEV::FlagNW)
578 SCEV::FlagAnyWrap);
Dan Gohman572645c2010-02-12 10:34:29 +0000579 return Result;
580 }
581 return 0;
Nate Begemaneaa13852004-10-18 21:08:22 +0000582}
583
Dan Gohmanf284ce22009-02-18 00:08:39 +0000584/// isAddressUse - Returns true if the specified instruction is using the
Dale Johannesen203af582008-12-05 21:47:27 +0000585/// specified value as an address.
586static bool isAddressUse(Instruction *Inst, Value *OperandVal) {
587 bool isAddress = isa<LoadInst>(Inst);
588 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
589 if (SI->getOperand(1) == OperandVal)
590 isAddress = true;
591 } else if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst)) {
592 // Addressing modes can also be folded into prefetches and a variety
593 // of intrinsics.
594 switch (II->getIntrinsicID()) {
595 default: break;
596 case Intrinsic::prefetch:
Dale Johannesen203af582008-12-05 21:47:27 +0000597 case Intrinsic::x86_sse_storeu_ps:
598 case Intrinsic::x86_sse2_storeu_pd:
599 case Intrinsic::x86_sse2_storeu_dq:
600 case Intrinsic::x86_sse2_storel_dq:
Gabor Greifad72e732010-06-30 09:15:28 +0000601 if (II->getArgOperand(0) == OperandVal)
Dale Johannesen203af582008-12-05 21:47:27 +0000602 isAddress = true;
603 break;
604 }
605 }
606 return isAddress;
607}
Chris Lattner0ae33eb2005-10-03 01:04:44 +0000608
Dan Gohman21e77222009-03-09 21:01:17 +0000609/// getAccessType - Return the type of the memory being accessed.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000610static Type *getAccessType(const Instruction *Inst) {
611 Type *AccessTy = Inst->getType();
Dan Gohman21e77222009-03-09 21:01:17 +0000612 if (const StoreInst *SI = dyn_cast<StoreInst>(Inst))
Dan Gohmana537bf82009-05-18 16:45:28 +0000613 AccessTy = SI->getOperand(0)->getType();
Dan Gohman21e77222009-03-09 21:01:17 +0000614 else if (const IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst)) {
615 // Addressing modes can also be folded into prefetches and a variety
616 // of intrinsics.
617 switch (II->getIntrinsicID()) {
618 default: break;
619 case Intrinsic::x86_sse_storeu_ps:
620 case Intrinsic::x86_sse2_storeu_pd:
621 case Intrinsic::x86_sse2_storeu_dq:
622 case Intrinsic::x86_sse2_storel_dq:
Gabor Greifad72e732010-06-30 09:15:28 +0000623 AccessTy = II->getArgOperand(0)->getType();
Dan Gohman21e77222009-03-09 21:01:17 +0000624 break;
625 }
626 }
Dan Gohman572645c2010-02-12 10:34:29 +0000627
628 // All pointers have the same requirements, so canonicalize them to an
629 // arbitrary pointer type to minimize variation.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000630 if (PointerType *PTy = dyn_cast<PointerType>(AccessTy))
Dan Gohman572645c2010-02-12 10:34:29 +0000631 AccessTy = PointerType::get(IntegerType::get(PTy->getContext(), 1),
632 PTy->getAddressSpace());
633
Dan Gohmana537bf82009-05-18 16:45:28 +0000634 return AccessTy;
Dan Gohman21e77222009-03-09 21:01:17 +0000635}
636
Dan Gohman572645c2010-02-12 10:34:29 +0000637/// DeleteTriviallyDeadInstructions - If any of the instructions is the
638/// specified set are trivially dead, delete them and see if this makes any of
639/// their operands subsequently dead.
640static bool
641DeleteTriviallyDeadInstructions(SmallVectorImpl<WeakVH> &DeadInsts) {
642 bool Changed = false;
643
644 while (!DeadInsts.empty()) {
Gabor Greiff097b592010-09-18 11:55:34 +0000645 Instruction *I = dyn_cast_or_null<Instruction>(&*DeadInsts.pop_back_val());
Dan Gohman572645c2010-02-12 10:34:29 +0000646
647 if (I == 0 || !isInstructionTriviallyDead(I))
648 continue;
649
650 for (User::op_iterator OI = I->op_begin(), E = I->op_end(); OI != E; ++OI)
651 if (Instruction *U = dyn_cast<Instruction>(*OI)) {
652 *OI = 0;
653 if (U->use_empty())
654 DeadInsts.push_back(U);
655 }
656
657 I->eraseFromParent();
658 Changed = true;
659 }
660
661 return Changed;
662}
663
Dan Gohman7979b722010-01-22 00:46:49 +0000664namespace {
Jim Grosbach56a1f802009-11-17 17:53:56 +0000665
Dan Gohman572645c2010-02-12 10:34:29 +0000666/// Cost - This class is used to measure and compare candidate formulae.
667class Cost {
668 /// TODO: Some of these could be merged. Also, a lexical ordering
669 /// isn't always optimal.
670 unsigned NumRegs;
671 unsigned AddRecCost;
672 unsigned NumIVMuls;
673 unsigned NumBaseAdds;
674 unsigned ImmCost;
675 unsigned SetupCost;
Nate Begeman16997482005-07-30 00:15:07 +0000676
Dan Gohman572645c2010-02-12 10:34:29 +0000677public:
678 Cost()
679 : NumRegs(0), AddRecCost(0), NumIVMuls(0), NumBaseAdds(0), ImmCost(0),
680 SetupCost(0) {}
Jim Grosbach56a1f802009-11-17 17:53:56 +0000681
Dan Gohman572645c2010-02-12 10:34:29 +0000682 bool operator<(const Cost &Other) const;
Dan Gohman7979b722010-01-22 00:46:49 +0000683
Dan Gohman572645c2010-02-12 10:34:29 +0000684 void Loose();
Dan Gohman7979b722010-01-22 00:46:49 +0000685
Andrew Trick7d11bd82011-09-26 23:11:04 +0000686#ifndef NDEBUG
687 // Once any of the metrics loses, they must all remain losers.
688 bool isValid() {
689 return ((NumRegs | AddRecCost | NumIVMuls | NumBaseAdds
690 | ImmCost | SetupCost) != ~0u)
691 || ((NumRegs & AddRecCost & NumIVMuls & NumBaseAdds
692 & ImmCost & SetupCost) == ~0u);
693 }
694#endif
695
696 bool isLoser() {
697 assert(isValid() && "invalid cost");
698 return NumRegs == ~0u;
699 }
700
Dan Gohman572645c2010-02-12 10:34:29 +0000701 void RateFormula(const Formula &F,
702 SmallPtrSet<const SCEV *, 16> &Regs,
703 const DenseSet<const SCEV *> &VisitedRegs,
704 const Loop *L,
705 const SmallVectorImpl<int64_t> &Offsets,
706 ScalarEvolution &SE, DominatorTree &DT);
Dan Gohman7979b722010-01-22 00:46:49 +0000707
Dan Gohman572645c2010-02-12 10:34:29 +0000708 void print(raw_ostream &OS) const;
709 void dump() const;
Dan Gohman7979b722010-01-22 00:46:49 +0000710
Dan Gohman572645c2010-02-12 10:34:29 +0000711private:
712 void RateRegister(const SCEV *Reg,
713 SmallPtrSet<const SCEV *, 16> &Regs,
714 const Loop *L,
715 ScalarEvolution &SE, DominatorTree &DT);
Dan Gohman9214b822010-02-13 02:06:02 +0000716 void RatePrimaryRegister(const SCEV *Reg,
717 SmallPtrSet<const SCEV *, 16> &Regs,
718 const Loop *L,
719 ScalarEvolution &SE, DominatorTree &DT);
Dan Gohman572645c2010-02-12 10:34:29 +0000720};
721
722}
723
724/// RateRegister - Tally up interesting quantities from the given register.
725void Cost::RateRegister(const SCEV *Reg,
726 SmallPtrSet<const SCEV *, 16> &Regs,
727 const Loop *L,
728 ScalarEvolution &SE, DominatorTree &DT) {
Dan Gohman9214b822010-02-13 02:06:02 +0000729 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(Reg)) {
730 if (AR->getLoop() == L)
731 AddRecCost += 1; /// TODO: This should be a function of the stride.
Dan Gohman572645c2010-02-12 10:34:29 +0000732
Andrew Trick0c01bc32011-09-29 01:33:38 +0000733 // If this is an addrec for another loop, don't second-guess its addrec phi
734 // nodes. LSR isn't currently smart enough to reason about more than one
735 // loop at a time. LSR has either already run on inner loops, will not run
736 // on other loops, and cannot be expected to change sibling loops. If the
737 // AddRec exists, consider it's register free and leave it alone. Otherwise,
738 // do not consider this formula at all.
739 // FIXME: why do we need to generate such fomulae?
740 else if (!EnableNested || L->contains(AR->getLoop()) ||
Dan Gohman9214b822010-02-13 02:06:02 +0000741 (!AR->getLoop()->contains(L) &&
742 DT.dominates(L->getHeader(), AR->getLoop()->getHeader()))) {
743 for (BasicBlock::iterator I = AR->getLoop()->getHeader()->begin();
Andrew Trick7d11bd82011-09-26 23:11:04 +0000744 PHINode *PN = dyn_cast<PHINode>(I); ++I) {
Dan Gohman9214b822010-02-13 02:06:02 +0000745 if (SE.isSCEVable(PN->getType()) &&
746 (SE.getEffectiveSCEVType(PN->getType()) ==
747 SE.getEffectiveSCEVType(AR->getType())) &&
748 SE.getSCEV(PN) == AR)
749 return;
Andrew Trick7d11bd82011-09-26 23:11:04 +0000750 }
Andrew Trick0c01bc32011-09-29 01:33:38 +0000751 if (!EnableNested) {
752 Loose();
753 return;
754 }
Dan Gohman9214b822010-02-13 02:06:02 +0000755 // If this isn't one of the addrecs that the loop already has, it
756 // would require a costly new phi and add. TODO: This isn't
757 // precisely modeled right now.
758 ++NumBaseAdds;
Andrew Trick7d11bd82011-09-26 23:11:04 +0000759 if (!Regs.count(AR->getStart())) {
Dan Gohman572645c2010-02-12 10:34:29 +0000760 RateRegister(AR->getStart(), Regs, L, SE, DT);
Andrew Trick7d11bd82011-09-26 23:11:04 +0000761 if (isLoser())
762 return;
763 }
Dan Gohman572645c2010-02-12 10:34:29 +0000764 }
Dan Gohman572645c2010-02-12 10:34:29 +0000765
Dan Gohman9214b822010-02-13 02:06:02 +0000766 // Add the step value register, if it needs one.
767 // TODO: The non-affine case isn't precisely modeled here.
Andrew Trick25b689e2011-09-26 23:35:25 +0000768 if (!AR->isAffine() || !isa<SCEVConstant>(AR->getOperand(1))) {
769 if (!Regs.count(AR->getOperand(1))) {
Dan Gohman9214b822010-02-13 02:06:02 +0000770 RateRegister(AR->getOperand(1), Regs, L, SE, DT);
Andrew Trick25b689e2011-09-26 23:35:25 +0000771 if (isLoser())
772 return;
773 }
774 }
Dan Gohman572645c2010-02-12 10:34:29 +0000775 }
Dan Gohman9214b822010-02-13 02:06:02 +0000776 ++NumRegs;
777
778 // Rough heuristic; favor registers which don't require extra setup
779 // instructions in the preheader.
780 if (!isa<SCEVUnknown>(Reg) &&
781 !isa<SCEVConstant>(Reg) &&
782 !(isa<SCEVAddRecExpr>(Reg) &&
783 (isa<SCEVUnknown>(cast<SCEVAddRecExpr>(Reg)->getStart()) ||
784 isa<SCEVConstant>(cast<SCEVAddRecExpr>(Reg)->getStart()))))
785 ++SetupCost;
Dan Gohman23c3fde2010-10-07 23:41:58 +0000786
787 NumIVMuls += isa<SCEVMulExpr>(Reg) &&
Dan Gohman17ead4f2010-11-17 21:23:15 +0000788 SE.hasComputableLoopEvolution(Reg, L);
Dan Gohman9214b822010-02-13 02:06:02 +0000789}
790
791/// RatePrimaryRegister - Record this register in the set. If we haven't seen it
792/// before, rate it.
793void Cost::RatePrimaryRegister(const SCEV *Reg,
Dan Gohman7fca2292010-02-16 19:42:34 +0000794 SmallPtrSet<const SCEV *, 16> &Regs,
795 const Loop *L,
796 ScalarEvolution &SE, DominatorTree &DT) {
Dan Gohman9214b822010-02-13 02:06:02 +0000797 if (Regs.insert(Reg))
798 RateRegister(Reg, Regs, L, SE, DT);
Dan Gohman572645c2010-02-12 10:34:29 +0000799}
800
801void Cost::RateFormula(const Formula &F,
802 SmallPtrSet<const SCEV *, 16> &Regs,
803 const DenseSet<const SCEV *> &VisitedRegs,
804 const Loop *L,
805 const SmallVectorImpl<int64_t> &Offsets,
806 ScalarEvolution &SE, DominatorTree &DT) {
807 // Tally up the registers.
808 if (const SCEV *ScaledReg = F.ScaledReg) {
809 if (VisitedRegs.count(ScaledReg)) {
810 Loose();
811 return;
812 }
Dan Gohman9214b822010-02-13 02:06:02 +0000813 RatePrimaryRegister(ScaledReg, Regs, L, SE, DT);
Andrew Trick7d11bd82011-09-26 23:11:04 +0000814 if (isLoser())
815 return;
Dan Gohman572645c2010-02-12 10:34:29 +0000816 }
817 for (SmallVectorImpl<const SCEV *>::const_iterator I = F.BaseRegs.begin(),
818 E = F.BaseRegs.end(); I != E; ++I) {
819 const SCEV *BaseReg = *I;
820 if (VisitedRegs.count(BaseReg)) {
821 Loose();
822 return;
823 }
Dan Gohman9214b822010-02-13 02:06:02 +0000824 RatePrimaryRegister(BaseReg, Regs, L, SE, DT);
Andrew Trick7d11bd82011-09-26 23:11:04 +0000825 if (isLoser())
826 return;
Dan Gohman572645c2010-02-12 10:34:29 +0000827 }
828
Dan Gohmancca82142011-05-03 00:46:49 +0000829 // Determine how many (unfolded) adds we'll need inside the loop.
830 size_t NumBaseParts = F.BaseRegs.size() + (F.UnfoldedOffset != 0);
831 if (NumBaseParts > 1)
832 NumBaseAdds += NumBaseParts - 1;
Dan Gohman572645c2010-02-12 10:34:29 +0000833
834 // Tally up the non-zero immediates.
835 for (SmallVectorImpl<int64_t>::const_iterator I = Offsets.begin(),
836 E = Offsets.end(); I != E; ++I) {
837 int64_t Offset = (uint64_t)*I + F.AM.BaseOffs;
838 if (F.AM.BaseGV)
839 ImmCost += 64; // Handle symbolic values conservatively.
840 // TODO: This should probably be the pointer size.
841 else if (Offset != 0)
842 ImmCost += APInt(64, Offset, true).getMinSignedBits();
843 }
Andrew Trick7d11bd82011-09-26 23:11:04 +0000844 assert(isValid() && "invalid cost");
Dan Gohman572645c2010-02-12 10:34:29 +0000845}
846
Chris Lattner7a2bdde2011-04-15 05:18:47 +0000847/// Loose - Set this cost to a losing value.
Dan Gohman572645c2010-02-12 10:34:29 +0000848void Cost::Loose() {
849 NumRegs = ~0u;
850 AddRecCost = ~0u;
851 NumIVMuls = ~0u;
852 NumBaseAdds = ~0u;
853 ImmCost = ~0u;
854 SetupCost = ~0u;
855}
856
857/// operator< - Choose the lower cost.
858bool Cost::operator<(const Cost &Other) const {
859 if (NumRegs != Other.NumRegs)
860 return NumRegs < Other.NumRegs;
861 if (AddRecCost != Other.AddRecCost)
862 return AddRecCost < Other.AddRecCost;
863 if (NumIVMuls != Other.NumIVMuls)
864 return NumIVMuls < Other.NumIVMuls;
865 if (NumBaseAdds != Other.NumBaseAdds)
866 return NumBaseAdds < Other.NumBaseAdds;
867 if (ImmCost != Other.ImmCost)
868 return ImmCost < Other.ImmCost;
869 if (SetupCost != Other.SetupCost)
870 return SetupCost < Other.SetupCost;
871 return false;
872}
873
874void Cost::print(raw_ostream &OS) const {
875 OS << NumRegs << " reg" << (NumRegs == 1 ? "" : "s");
876 if (AddRecCost != 0)
877 OS << ", with addrec cost " << AddRecCost;
878 if (NumIVMuls != 0)
879 OS << ", plus " << NumIVMuls << " IV mul" << (NumIVMuls == 1 ? "" : "s");
880 if (NumBaseAdds != 0)
881 OS << ", plus " << NumBaseAdds << " base add"
882 << (NumBaseAdds == 1 ? "" : "s");
883 if (ImmCost != 0)
884 OS << ", plus " << ImmCost << " imm cost";
885 if (SetupCost != 0)
886 OS << ", plus " << SetupCost << " setup cost";
887}
888
889void Cost::dump() const {
890 print(errs()); errs() << '\n';
891}
892
893namespace {
894
895/// LSRFixup - An operand value in an instruction which is to be replaced
896/// with some equivalent, possibly strength-reduced, replacement.
897struct LSRFixup {
898 /// UserInst - The instruction which will be updated.
899 Instruction *UserInst;
900
901 /// OperandValToReplace - The operand of the instruction which will
902 /// be replaced. The operand may be used more than once; every instance
903 /// will be replaced.
904 Value *OperandValToReplace;
905
Dan Gohman448db1c2010-04-07 22:27:08 +0000906 /// PostIncLoops - If this user is to use the post-incremented value of an
Dan Gohman572645c2010-02-12 10:34:29 +0000907 /// induction variable, this variable is non-null and holds the loop
908 /// associated with the induction variable.
Dan Gohman448db1c2010-04-07 22:27:08 +0000909 PostIncLoopSet PostIncLoops;
Dan Gohman572645c2010-02-12 10:34:29 +0000910
911 /// LUIdx - The index of the LSRUse describing the expression which
912 /// this fixup needs, minus an offset (below).
913 size_t LUIdx;
914
915 /// Offset - A constant offset to be added to the LSRUse expression.
916 /// This allows multiple fixups to share the same LSRUse with different
917 /// offsets, for example in an unrolled loop.
918 int64_t Offset;
919
Dan Gohman448db1c2010-04-07 22:27:08 +0000920 bool isUseFullyOutsideLoop(const Loop *L) const;
921
Dan Gohman572645c2010-02-12 10:34:29 +0000922 LSRFixup();
923
924 void print(raw_ostream &OS) const;
925 void dump() const;
926};
927
928}
929
930LSRFixup::LSRFixup()
Dan Gohmanea507f52010-05-20 19:44:23 +0000931 : UserInst(0), OperandValToReplace(0), LUIdx(~size_t(0)), Offset(0) {}
Dan Gohman572645c2010-02-12 10:34:29 +0000932
Dan Gohman448db1c2010-04-07 22:27:08 +0000933/// isUseFullyOutsideLoop - Test whether this fixup always uses its
934/// value outside of the given loop.
935bool LSRFixup::isUseFullyOutsideLoop(const Loop *L) const {
936 // PHI nodes use their value in their incoming blocks.
937 if (const PHINode *PN = dyn_cast<PHINode>(UserInst)) {
938 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
939 if (PN->getIncomingValue(i) == OperandValToReplace &&
940 L->contains(PN->getIncomingBlock(i)))
941 return false;
942 return true;
943 }
944
945 return !L->contains(UserInst);
946}
947
Dan Gohman572645c2010-02-12 10:34:29 +0000948void LSRFixup::print(raw_ostream &OS) const {
949 OS << "UserInst=";
950 // Store is common and interesting enough to be worth special-casing.
951 if (StoreInst *Store = dyn_cast<StoreInst>(UserInst)) {
952 OS << "store ";
953 WriteAsOperand(OS, Store->getOperand(0), /*PrintType=*/false);
954 } else if (UserInst->getType()->isVoidTy())
955 OS << UserInst->getOpcodeName();
956 else
957 WriteAsOperand(OS, UserInst, /*PrintType=*/false);
958
959 OS << ", OperandValToReplace=";
960 WriteAsOperand(OS, OperandValToReplace, /*PrintType=*/false);
961
Dan Gohman448db1c2010-04-07 22:27:08 +0000962 for (PostIncLoopSet::const_iterator I = PostIncLoops.begin(),
963 E = PostIncLoops.end(); I != E; ++I) {
Dan Gohman572645c2010-02-12 10:34:29 +0000964 OS << ", PostIncLoop=";
Dan Gohman448db1c2010-04-07 22:27:08 +0000965 WriteAsOperand(OS, (*I)->getHeader(), /*PrintType=*/false);
Dan Gohman572645c2010-02-12 10:34:29 +0000966 }
967
968 if (LUIdx != ~size_t(0))
969 OS << ", LUIdx=" << LUIdx;
970
971 if (Offset != 0)
972 OS << ", Offset=" << Offset;
973}
974
975void LSRFixup::dump() const {
976 print(errs()); errs() << '\n';
977}
978
979namespace {
980
981/// UniquifierDenseMapInfo - A DenseMapInfo implementation for holding
982/// DenseMaps and DenseSets of sorted SmallVectors of const SCEV*.
983struct UniquifierDenseMapInfo {
984 static SmallVector<const SCEV *, 2> getEmptyKey() {
985 SmallVector<const SCEV *, 2> V;
986 V.push_back(reinterpret_cast<const SCEV *>(-1));
987 return V;
988 }
989
990 static SmallVector<const SCEV *, 2> getTombstoneKey() {
991 SmallVector<const SCEV *, 2> V;
992 V.push_back(reinterpret_cast<const SCEV *>(-2));
993 return V;
994 }
995
996 static unsigned getHashValue(const SmallVector<const SCEV *, 2> &V) {
997 unsigned Result = 0;
998 for (SmallVectorImpl<const SCEV *>::const_iterator I = V.begin(),
999 E = V.end(); I != E; ++I)
1000 Result ^= DenseMapInfo<const SCEV *>::getHashValue(*I);
1001 return Result;
1002 }
1003
1004 static bool isEqual(const SmallVector<const SCEV *, 2> &LHS,
1005 const SmallVector<const SCEV *, 2> &RHS) {
1006 return LHS == RHS;
1007 }
1008};
1009
1010/// LSRUse - This class holds the state that LSR keeps for each use in
1011/// IVUsers, as well as uses invented by LSR itself. It includes information
1012/// about what kinds of things can be folded into the user, information about
1013/// the user itself, and information about how the use may be satisfied.
1014/// TODO: Represent multiple users of the same expression in common?
1015class LSRUse {
1016 DenseSet<SmallVector<const SCEV *, 2>, UniquifierDenseMapInfo> Uniquifier;
1017
1018public:
1019 /// KindType - An enum for a kind of use, indicating what types of
1020 /// scaled and immediate operands it might support.
1021 enum KindType {
1022 Basic, ///< A normal use, with no folding.
1023 Special, ///< A special case of basic, allowing -1 scales.
1024 Address, ///< An address use; folding according to TargetLowering
1025 ICmpZero ///< An equality icmp with both operands folded into one.
1026 // TODO: Add a generic icmp too?
Dan Gohman7979b722010-01-22 00:46:49 +00001027 };
Dan Gohman572645c2010-02-12 10:34:29 +00001028
1029 KindType Kind;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001030 Type *AccessTy;
Dan Gohman572645c2010-02-12 10:34:29 +00001031
1032 SmallVector<int64_t, 8> Offsets;
1033 int64_t MinOffset;
1034 int64_t MaxOffset;
1035
1036 /// AllFixupsOutsideLoop - This records whether all of the fixups using this
1037 /// LSRUse are outside of the loop, in which case some special-case heuristics
1038 /// may be used.
1039 bool AllFixupsOutsideLoop;
1040
Dan Gohmana9db1292010-07-15 20:24:58 +00001041 /// WidestFixupType - This records the widest use type for any fixup using
1042 /// this LSRUse. FindUseWithSimilarFormula can't consider uses with different
1043 /// max fixup widths to be equivalent, because the narrower one may be relying
1044 /// on the implicit truncation to truncate away bogus bits.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001045 Type *WidestFixupType;
Dan Gohmana9db1292010-07-15 20:24:58 +00001046
Dan Gohman572645c2010-02-12 10:34:29 +00001047 /// Formulae - A list of ways to build a value that can satisfy this user.
1048 /// After the list is populated, one of these is selected heuristically and
1049 /// used to formulate a replacement for OperandValToReplace in UserInst.
1050 SmallVector<Formula, 12> Formulae;
1051
1052 /// Regs - The set of register candidates used by all formulae in this LSRUse.
1053 SmallPtrSet<const SCEV *, 4> Regs;
1054
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001055 LSRUse(KindType K, Type *T) : Kind(K), AccessTy(T),
Dan Gohman572645c2010-02-12 10:34:29 +00001056 MinOffset(INT64_MAX),
1057 MaxOffset(INT64_MIN),
Dan Gohmana9db1292010-07-15 20:24:58 +00001058 AllFixupsOutsideLoop(true),
1059 WidestFixupType(0) {}
Dan Gohman572645c2010-02-12 10:34:29 +00001060
Dan Gohmana2086b32010-05-19 23:43:12 +00001061 bool HasFormulaWithSameRegs(const Formula &F) const;
Dan Gohman454d26d2010-02-22 04:11:59 +00001062 bool InsertFormula(const Formula &F);
Dan Gohmand69d6282010-05-18 22:39:15 +00001063 void DeleteFormula(Formula &F);
Dan Gohmanb2df4332010-05-18 23:42:37 +00001064 void RecomputeRegs(size_t LUIdx, RegUseTracker &Reguses);
Dan Gohman572645c2010-02-12 10:34:29 +00001065
Dan Gohman572645c2010-02-12 10:34:29 +00001066 void print(raw_ostream &OS) const;
1067 void dump() const;
1068};
1069
Dan Gohmanb6211712010-06-19 21:21:39 +00001070}
1071
Dan Gohmana2086b32010-05-19 23:43:12 +00001072/// HasFormula - Test whether this use as a formula which has the same
1073/// registers as the given formula.
1074bool LSRUse::HasFormulaWithSameRegs(const Formula &F) const {
1075 SmallVector<const SCEV *, 2> Key = F.BaseRegs;
1076 if (F.ScaledReg) Key.push_back(F.ScaledReg);
1077 // Unstable sort by host order ok, because this is only used for uniquifying.
1078 std::sort(Key.begin(), Key.end());
1079 return Uniquifier.count(Key);
1080}
1081
Dan Gohman572645c2010-02-12 10:34:29 +00001082/// InsertFormula - If the given formula has not yet been inserted, add it to
1083/// the list, and return true. Return false otherwise.
Dan Gohman454d26d2010-02-22 04:11:59 +00001084bool LSRUse::InsertFormula(const Formula &F) {
Dan Gohman572645c2010-02-12 10:34:29 +00001085 SmallVector<const SCEV *, 2> Key = F.BaseRegs;
1086 if (F.ScaledReg) Key.push_back(F.ScaledReg);
1087 // Unstable sort by host order ok, because this is only used for uniquifying.
1088 std::sort(Key.begin(), Key.end());
1089
1090 if (!Uniquifier.insert(Key).second)
1091 return false;
1092
1093 // Using a register to hold the value of 0 is not profitable.
1094 assert((!F.ScaledReg || !F.ScaledReg->isZero()) &&
1095 "Zero allocated in a scaled register!");
1096#ifndef NDEBUG
1097 for (SmallVectorImpl<const SCEV *>::const_iterator I =
1098 F.BaseRegs.begin(), E = F.BaseRegs.end(); I != E; ++I)
1099 assert(!(*I)->isZero() && "Zero allocated in a base register!");
1100#endif
1101
1102 // Add the formula to the list.
1103 Formulae.push_back(F);
1104
1105 // Record registers now being used by this use.
1106 if (F.ScaledReg) Regs.insert(F.ScaledReg);
1107 Regs.insert(F.BaseRegs.begin(), F.BaseRegs.end());
1108
1109 return true;
Dan Gohman7979b722010-01-22 00:46:49 +00001110}
1111
Dan Gohmand69d6282010-05-18 22:39:15 +00001112/// DeleteFormula - Remove the given formula from this use's list.
1113void LSRUse::DeleteFormula(Formula &F) {
Dan Gohman5ce6d052010-05-20 15:17:54 +00001114 if (&F != &Formulae.back())
1115 std::swap(F, Formulae.back());
Dan Gohmand69d6282010-05-18 22:39:15 +00001116 Formulae.pop_back();
Dan Gohmana2086b32010-05-19 23:43:12 +00001117 assert(!Formulae.empty() && "LSRUse has no formulae left!");
Dan Gohmand69d6282010-05-18 22:39:15 +00001118}
1119
Dan Gohmanb2df4332010-05-18 23:42:37 +00001120/// RecomputeRegs - Recompute the Regs field, and update RegUses.
1121void LSRUse::RecomputeRegs(size_t LUIdx, RegUseTracker &RegUses) {
1122 // Now that we've filtered out some formulae, recompute the Regs set.
1123 SmallPtrSet<const SCEV *, 4> OldRegs = Regs;
1124 Regs.clear();
Dan Gohman402d4352010-05-20 20:33:18 +00001125 for (SmallVectorImpl<Formula>::const_iterator I = Formulae.begin(),
1126 E = Formulae.end(); I != E; ++I) {
1127 const Formula &F = *I;
Dan Gohmanb2df4332010-05-18 23:42:37 +00001128 if (F.ScaledReg) Regs.insert(F.ScaledReg);
1129 Regs.insert(F.BaseRegs.begin(), F.BaseRegs.end());
1130 }
1131
1132 // Update the RegTracker.
1133 for (SmallPtrSet<const SCEV *, 4>::iterator I = OldRegs.begin(),
1134 E = OldRegs.end(); I != E; ++I)
1135 if (!Regs.count(*I))
1136 RegUses.DropRegister(*I, LUIdx);
1137}
1138
Dan Gohman572645c2010-02-12 10:34:29 +00001139void LSRUse::print(raw_ostream &OS) const {
1140 OS << "LSR Use: Kind=";
1141 switch (Kind) {
1142 case Basic: OS << "Basic"; break;
1143 case Special: OS << "Special"; break;
1144 case ICmpZero: OS << "ICmpZero"; break;
1145 case Address:
1146 OS << "Address of ";
Duncan Sands1df98592010-02-16 11:11:14 +00001147 if (AccessTy->isPointerTy())
Dan Gohman572645c2010-02-12 10:34:29 +00001148 OS << "pointer"; // the full pointer type could be really verbose
1149 else
1150 OS << *AccessTy;
Evan Chengcdf43b12007-10-25 09:11:16 +00001151 }
1152
Dan Gohman572645c2010-02-12 10:34:29 +00001153 OS << ", Offsets={";
1154 for (SmallVectorImpl<int64_t>::const_iterator I = Offsets.begin(),
1155 E = Offsets.end(); I != E; ++I) {
1156 OS << *I;
Oscar Fuentesee56c422010-08-02 06:00:15 +00001157 if (llvm::next(I) != E)
Dan Gohman572645c2010-02-12 10:34:29 +00001158 OS << ',';
Dan Gohman7979b722010-01-22 00:46:49 +00001159 }
Dan Gohman572645c2010-02-12 10:34:29 +00001160 OS << '}';
Dan Gohman7979b722010-01-22 00:46:49 +00001161
Dan Gohman572645c2010-02-12 10:34:29 +00001162 if (AllFixupsOutsideLoop)
1163 OS << ", all-fixups-outside-loop";
Dan Gohmana9db1292010-07-15 20:24:58 +00001164
1165 if (WidestFixupType)
1166 OS << ", widest fixup type: " << *WidestFixupType;
Dan Gohman7979b722010-01-22 00:46:49 +00001167}
1168
Dan Gohman572645c2010-02-12 10:34:29 +00001169void LSRUse::dump() const {
1170 print(errs()); errs() << '\n';
1171}
Dan Gohman7979b722010-01-22 00:46:49 +00001172
Dan Gohman572645c2010-02-12 10:34:29 +00001173/// isLegalUse - Test whether the use described by AM is "legal", meaning it can
1174/// be completely folded into the user instruction at isel time. This includes
1175/// address-mode folding and special icmp tricks.
1176static bool isLegalUse(const TargetLowering::AddrMode &AM,
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001177 LSRUse::KindType Kind, Type *AccessTy,
Dan Gohman572645c2010-02-12 10:34:29 +00001178 const TargetLowering *TLI) {
1179 switch (Kind) {
1180 case LSRUse::Address:
1181 // If we have low-level target information, ask the target if it can
1182 // completely fold this address.
1183 if (TLI) return TLI->isLegalAddressingMode(AM, AccessTy);
1184
1185 // Otherwise, just guess that reg+reg addressing is legal.
1186 return !AM.BaseGV && AM.BaseOffs == 0 && AM.Scale <= 1;
1187
1188 case LSRUse::ICmpZero:
1189 // There's not even a target hook for querying whether it would be legal to
1190 // fold a GV into an ICmp.
1191 if (AM.BaseGV)
1192 return false;
1193
1194 // ICmp only has two operands; don't allow more than two non-trivial parts.
1195 if (AM.Scale != 0 && AM.HasBaseReg && AM.BaseOffs != 0)
1196 return false;
1197
1198 // ICmp only supports no scale or a -1 scale, as we can "fold" a -1 scale by
1199 // putting the scaled register in the other operand of the icmp.
1200 if (AM.Scale != 0 && AM.Scale != -1)
1201 return false;
1202
1203 // If we have low-level target information, ask the target if it can fold an
1204 // integer immediate on an icmp.
1205 if (AM.BaseOffs != 0) {
Eli Friedmandae36ba2011-10-13 23:48:33 +00001206 if (TLI) return TLI->isLegalICmpImmediate(-(uint64_t)AM.BaseOffs);
Dan Gohman572645c2010-02-12 10:34:29 +00001207 return false;
Dan Gohman7979b722010-01-22 00:46:49 +00001208 }
Dan Gohman572645c2010-02-12 10:34:29 +00001209
1210 return true;
1211
1212 case LSRUse::Basic:
1213 // Only handle single-register values.
1214 return !AM.BaseGV && AM.Scale == 0 && AM.BaseOffs == 0;
1215
1216 case LSRUse::Special:
1217 // Only handle -1 scales, or no scale.
1218 return AM.Scale == 0 || AM.Scale == -1;
Dan Gohman7979b722010-01-22 00:46:49 +00001219 }
1220
Dan Gohman7979b722010-01-22 00:46:49 +00001221 return false;
1222}
1223
Dan Gohman572645c2010-02-12 10:34:29 +00001224static bool isLegalUse(TargetLowering::AddrMode AM,
1225 int64_t MinOffset, int64_t MaxOffset,
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001226 LSRUse::KindType Kind, Type *AccessTy,
Dan Gohman572645c2010-02-12 10:34:29 +00001227 const TargetLowering *TLI) {
1228 // Check for overflow.
1229 if (((int64_t)((uint64_t)AM.BaseOffs + MinOffset) > AM.BaseOffs) !=
1230 (MinOffset > 0))
1231 return false;
1232 AM.BaseOffs = (uint64_t)AM.BaseOffs + MinOffset;
1233 if (isLegalUse(AM, Kind, AccessTy, TLI)) {
1234 AM.BaseOffs = (uint64_t)AM.BaseOffs - MinOffset;
1235 // Check for overflow.
1236 if (((int64_t)((uint64_t)AM.BaseOffs + MaxOffset) > AM.BaseOffs) !=
1237 (MaxOffset > 0))
1238 return false;
1239 AM.BaseOffs = (uint64_t)AM.BaseOffs + MaxOffset;
1240 return isLegalUse(AM, Kind, AccessTy, TLI);
Dan Gohman7979b722010-01-22 00:46:49 +00001241 }
Dan Gohman572645c2010-02-12 10:34:29 +00001242 return false;
Dan Gohman7979b722010-01-22 00:46:49 +00001243}
1244
Dan Gohman572645c2010-02-12 10:34:29 +00001245static bool isAlwaysFoldable(int64_t BaseOffs,
1246 GlobalValue *BaseGV,
1247 bool HasBaseReg,
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001248 LSRUse::KindType Kind, Type *AccessTy,
Dan Gohman454d26d2010-02-22 04:11:59 +00001249 const TargetLowering *TLI) {
Dan Gohman572645c2010-02-12 10:34:29 +00001250 // Fast-path: zero is always foldable.
1251 if (BaseOffs == 0 && !BaseGV) return true;
Dan Gohman7979b722010-01-22 00:46:49 +00001252
Dan Gohman572645c2010-02-12 10:34:29 +00001253 // Conservatively, create an address with an immediate and a
1254 // base and a scale.
1255 TargetLowering::AddrMode AM;
1256 AM.BaseOffs = BaseOffs;
1257 AM.BaseGV = BaseGV;
1258 AM.HasBaseReg = HasBaseReg;
1259 AM.Scale = Kind == LSRUse::ICmpZero ? -1 : 1;
Dan Gohman7979b722010-01-22 00:46:49 +00001260
Dan Gohmana2086b32010-05-19 23:43:12 +00001261 // Canonicalize a scale of 1 to a base register if the formula doesn't
1262 // already have a base register.
1263 if (!AM.HasBaseReg && AM.Scale == 1) {
1264 AM.Scale = 0;
1265 AM.HasBaseReg = true;
1266 }
1267
Dan Gohman572645c2010-02-12 10:34:29 +00001268 return isLegalUse(AM, Kind, AccessTy, TLI);
Dan Gohman7979b722010-01-22 00:46:49 +00001269}
1270
Dan Gohman572645c2010-02-12 10:34:29 +00001271static bool isAlwaysFoldable(const SCEV *S,
1272 int64_t MinOffset, int64_t MaxOffset,
1273 bool HasBaseReg,
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001274 LSRUse::KindType Kind, Type *AccessTy,
Dan Gohman572645c2010-02-12 10:34:29 +00001275 const TargetLowering *TLI,
1276 ScalarEvolution &SE) {
1277 // Fast-path: zero is always foldable.
1278 if (S->isZero()) return true;
1279
1280 // Conservatively, create an address with an immediate and a
1281 // base and a scale.
1282 int64_t BaseOffs = ExtractImmediate(S, SE);
1283 GlobalValue *BaseGV = ExtractSymbol(S, SE);
1284
1285 // If there's anything else involved, it's not foldable.
1286 if (!S->isZero()) return false;
1287
1288 // Fast-path: zero is always foldable.
1289 if (BaseOffs == 0 && !BaseGV) return true;
1290
1291 // Conservatively, create an address with an immediate and a
1292 // base and a scale.
1293 TargetLowering::AddrMode AM;
1294 AM.BaseOffs = BaseOffs;
1295 AM.BaseGV = BaseGV;
1296 AM.HasBaseReg = HasBaseReg;
1297 AM.Scale = Kind == LSRUse::ICmpZero ? -1 : 1;
1298
1299 return isLegalUse(AM, MinOffset, MaxOffset, Kind, AccessTy, TLI);
Dan Gohman7979b722010-01-22 00:46:49 +00001300}
1301
Dan Gohmanb6211712010-06-19 21:21:39 +00001302namespace {
1303
Dan Gohman1e3121c2010-06-19 21:29:59 +00001304/// UseMapDenseMapInfo - A DenseMapInfo implementation for holding
1305/// DenseMaps and DenseSets of pairs of const SCEV* and LSRUse::Kind.
1306struct UseMapDenseMapInfo {
1307 static std::pair<const SCEV *, LSRUse::KindType> getEmptyKey() {
1308 return std::make_pair(reinterpret_cast<const SCEV *>(-1), LSRUse::Basic);
1309 }
1310
1311 static std::pair<const SCEV *, LSRUse::KindType> getTombstoneKey() {
1312 return std::make_pair(reinterpret_cast<const SCEV *>(-2), LSRUse::Basic);
1313 }
1314
1315 static unsigned
1316 getHashValue(const std::pair<const SCEV *, LSRUse::KindType> &V) {
1317 unsigned Result = DenseMapInfo<const SCEV *>::getHashValue(V.first);
1318 Result ^= DenseMapInfo<unsigned>::getHashValue(unsigned(V.second));
1319 return Result;
1320 }
1321
1322 static bool isEqual(const std::pair<const SCEV *, LSRUse::KindType> &LHS,
1323 const std::pair<const SCEV *, LSRUse::KindType> &RHS) {
1324 return LHS == RHS;
1325 }
1326};
1327
Dan Gohman572645c2010-02-12 10:34:29 +00001328/// LSRInstance - This class holds state for the main loop strength reduction
1329/// logic.
1330class LSRInstance {
1331 IVUsers &IU;
1332 ScalarEvolution &SE;
1333 DominatorTree &DT;
Dan Gohmane5f76872010-04-09 22:07:05 +00001334 LoopInfo &LI;
Dan Gohman572645c2010-02-12 10:34:29 +00001335 const TargetLowering *const TLI;
1336 Loop *const L;
1337 bool Changed;
1338
1339 /// IVIncInsertPos - This is the insert position that the current loop's
1340 /// induction variable increment should be placed. In simple loops, this is
1341 /// the latch block's terminator. But in more complicated cases, this is a
1342 /// position which will dominate all the in-loop post-increment users.
1343 Instruction *IVIncInsertPos;
1344
1345 /// Factors - Interesting factors between use strides.
1346 SmallSetVector<int64_t, 8> Factors;
1347
1348 /// Types - Interesting use types, to facilitate truncation reuse.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001349 SmallSetVector<Type *, 4> Types;
Dan Gohman572645c2010-02-12 10:34:29 +00001350
1351 /// Fixups - The list of operands which are to be replaced.
1352 SmallVector<LSRFixup, 16> Fixups;
1353
1354 /// Uses - The list of interesting uses.
1355 SmallVector<LSRUse, 16> Uses;
1356
1357 /// RegUses - Track which uses use which register candidates.
1358 RegUseTracker RegUses;
1359
1360 void OptimizeShadowIV();
1361 bool FindIVUserForCond(ICmpInst *Cond, IVStrideUse *&CondUse);
1362 ICmpInst *OptimizeMax(ICmpInst *Cond, IVStrideUse* &CondUse);
Dan Gohmanc6519f92010-05-20 20:05:31 +00001363 void OptimizeLoopTermCond();
Dan Gohman572645c2010-02-12 10:34:29 +00001364
1365 void CollectInterestingTypesAndFactors();
1366 void CollectFixupsAndInitialFormulae();
1367
1368 LSRFixup &getNewFixup() {
1369 Fixups.push_back(LSRFixup());
1370 return Fixups.back();
1371 }
1372
1373 // Support for sharing of LSRUses between LSRFixups.
Dan Gohman1e3121c2010-06-19 21:29:59 +00001374 typedef DenseMap<std::pair<const SCEV *, LSRUse::KindType>,
1375 size_t,
1376 UseMapDenseMapInfo> UseMapTy;
Dan Gohman572645c2010-02-12 10:34:29 +00001377 UseMapTy UseMap;
1378
Dan Gohman191bd642010-09-01 01:45:53 +00001379 bool reconcileNewOffset(LSRUse &LU, int64_t NewOffset, bool HasBaseReg,
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001380 LSRUse::KindType Kind, Type *AccessTy);
Dan Gohman572645c2010-02-12 10:34:29 +00001381
1382 std::pair<size_t, int64_t> getUse(const SCEV *&Expr,
1383 LSRUse::KindType Kind,
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001384 Type *AccessTy);
Dan Gohman572645c2010-02-12 10:34:29 +00001385
Dan Gohmanc6897702010-10-07 23:33:43 +00001386 void DeleteUse(LSRUse &LU, size_t LUIdx);
Dan Gohman5ce6d052010-05-20 15:17:54 +00001387
Dan Gohman191bd642010-09-01 01:45:53 +00001388 LSRUse *FindUseWithSimilarFormula(const Formula &F, const LSRUse &OrigLU);
Dan Gohmana2086b32010-05-19 23:43:12 +00001389
Dan Gohman572645c2010-02-12 10:34:29 +00001390public:
Dan Gohman454d26d2010-02-22 04:11:59 +00001391 void InsertInitialFormula(const SCEV *S, LSRUse &LU, size_t LUIdx);
Dan Gohman572645c2010-02-12 10:34:29 +00001392 void InsertSupplementalFormula(const SCEV *S, LSRUse &LU, size_t LUIdx);
1393 void CountRegisters(const Formula &F, size_t LUIdx);
1394 bool InsertFormula(LSRUse &LU, unsigned LUIdx, const Formula &F);
1395
1396 void CollectLoopInvariantFixupsAndFormulae();
1397
1398 void GenerateReassociations(LSRUse &LU, unsigned LUIdx, Formula Base,
1399 unsigned Depth = 0);
1400 void GenerateCombinations(LSRUse &LU, unsigned LUIdx, Formula Base);
1401 void GenerateSymbolicOffsets(LSRUse &LU, unsigned LUIdx, Formula Base);
1402 void GenerateConstantOffsets(LSRUse &LU, unsigned LUIdx, Formula Base);
1403 void GenerateICmpZeroScales(LSRUse &LU, unsigned LUIdx, Formula Base);
1404 void GenerateScales(LSRUse &LU, unsigned LUIdx, Formula Base);
1405 void GenerateTruncates(LSRUse &LU, unsigned LUIdx, Formula Base);
1406 void GenerateCrossUseConstantOffsets();
1407 void GenerateAllReuseFormulae();
1408
1409 void FilterOutUndesirableDedicatedRegisters();
Dan Gohmand079c302010-05-18 22:51:59 +00001410
1411 size_t EstimateSearchSpaceComplexity() const;
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00001412 void NarrowSearchSpaceByDetectingSupersets();
1413 void NarrowSearchSpaceByCollapsingUnrolledCode();
Dan Gohman4f7e18d2010-08-29 16:39:22 +00001414 void NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters();
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00001415 void NarrowSearchSpaceByPickingWinnerRegs();
Dan Gohman572645c2010-02-12 10:34:29 +00001416 void NarrowSearchSpaceUsingHeuristics();
1417
1418 void SolveRecurse(SmallVectorImpl<const Formula *> &Solution,
1419 Cost &SolutionCost,
1420 SmallVectorImpl<const Formula *> &Workspace,
1421 const Cost &CurCost,
1422 const SmallPtrSet<const SCEV *, 16> &CurRegs,
1423 DenseSet<const SCEV *> &VisitedRegs) const;
1424 void Solve(SmallVectorImpl<const Formula *> &Solution) const;
1425
Dan Gohmane5f76872010-04-09 22:07:05 +00001426 BasicBlock::iterator
1427 HoistInsertPosition(BasicBlock::iterator IP,
1428 const SmallVectorImpl<Instruction *> &Inputs) const;
1429 BasicBlock::iterator AdjustInsertPositionForExpand(BasicBlock::iterator IP,
1430 const LSRFixup &LF,
1431 const LSRUse &LU) const;
Dan Gohmand96eae82010-04-09 02:00:38 +00001432
Dan Gohman572645c2010-02-12 10:34:29 +00001433 Value *Expand(const LSRFixup &LF,
1434 const Formula &F,
Dan Gohman454d26d2010-02-22 04:11:59 +00001435 BasicBlock::iterator IP,
Dan Gohman572645c2010-02-12 10:34:29 +00001436 SCEVExpander &Rewriter,
Dan Gohman454d26d2010-02-22 04:11:59 +00001437 SmallVectorImpl<WeakVH> &DeadInsts) const;
Dan Gohman3a02cbc2010-02-16 20:25:07 +00001438 void RewriteForPHI(PHINode *PN, const LSRFixup &LF,
1439 const Formula &F,
Dan Gohman3a02cbc2010-02-16 20:25:07 +00001440 SCEVExpander &Rewriter,
1441 SmallVectorImpl<WeakVH> &DeadInsts,
Dan Gohman3a02cbc2010-02-16 20:25:07 +00001442 Pass *P) const;
Dan Gohman572645c2010-02-12 10:34:29 +00001443 void Rewrite(const LSRFixup &LF,
1444 const Formula &F,
Dan Gohman572645c2010-02-12 10:34:29 +00001445 SCEVExpander &Rewriter,
1446 SmallVectorImpl<WeakVH> &DeadInsts,
Dan Gohman572645c2010-02-12 10:34:29 +00001447 Pass *P) const;
1448 void ImplementSolution(const SmallVectorImpl<const Formula *> &Solution,
1449 Pass *P);
1450
1451 LSRInstance(const TargetLowering *tli, Loop *l, Pass *P);
1452
1453 bool getChanged() const { return Changed; }
1454
1455 void print_factors_and_types(raw_ostream &OS) const;
1456 void print_fixups(raw_ostream &OS) const;
1457 void print_uses(raw_ostream &OS) const;
1458 void print(raw_ostream &OS) const;
1459 void dump() const;
1460};
1461
1462}
1463
1464/// OptimizeShadowIV - If IV is used in a int-to-float cast
Dan Gohman3f46a3a2010-03-01 17:49:51 +00001465/// inside the loop then try to eliminate the cast operation.
Dan Gohman572645c2010-02-12 10:34:29 +00001466void LSRInstance::OptimizeShadowIV() {
1467 const SCEV *BackedgeTakenCount = SE.getBackedgeTakenCount(L);
1468 if (isa<SCEVCouldNotCompute>(BackedgeTakenCount))
1469 return;
1470
1471 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end();
1472 UI != E; /* empty */) {
1473 IVUsers::const_iterator CandidateUI = UI;
1474 ++UI;
1475 Instruction *ShadowUse = CandidateUI->getUser();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001476 Type *DestTy = NULL;
Andrew Trickc2c988e2011-07-21 01:05:01 +00001477 bool IsSigned = false;
Dan Gohman572645c2010-02-12 10:34:29 +00001478
1479 /* If shadow use is a int->float cast then insert a second IV
1480 to eliminate this cast.
1481
1482 for (unsigned i = 0; i < n; ++i)
1483 foo((double)i);
1484
1485 is transformed into
1486
1487 double d = 0.0;
1488 for (unsigned i = 0; i < n; ++i, ++d)
1489 foo(d);
1490 */
Andrew Trickc2c988e2011-07-21 01:05:01 +00001491 if (UIToFPInst *UCast = dyn_cast<UIToFPInst>(CandidateUI->getUser())) {
1492 IsSigned = false;
Dan Gohman572645c2010-02-12 10:34:29 +00001493 DestTy = UCast->getDestTy();
Andrew Trickc2c988e2011-07-21 01:05:01 +00001494 }
1495 else if (SIToFPInst *SCast = dyn_cast<SIToFPInst>(CandidateUI->getUser())) {
1496 IsSigned = true;
Dan Gohman572645c2010-02-12 10:34:29 +00001497 DestTy = SCast->getDestTy();
Andrew Trickc2c988e2011-07-21 01:05:01 +00001498 }
Dan Gohman572645c2010-02-12 10:34:29 +00001499 if (!DestTy) continue;
1500
1501 if (TLI) {
1502 // If target does not support DestTy natively then do not apply
1503 // this transformation.
1504 EVT DVT = TLI->getValueType(DestTy);
1505 if (!TLI->isTypeLegal(DVT)) continue;
1506 }
1507
1508 PHINode *PH = dyn_cast<PHINode>(ShadowUse->getOperand(0));
1509 if (!PH) continue;
1510 if (PH->getNumIncomingValues() != 2) continue;
1511
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001512 Type *SrcTy = PH->getType();
Dan Gohman572645c2010-02-12 10:34:29 +00001513 int Mantissa = DestTy->getFPMantissaWidth();
1514 if (Mantissa == -1) continue;
1515 if ((int)SE.getTypeSizeInBits(SrcTy) > Mantissa)
1516 continue;
1517
1518 unsigned Entry, Latch;
1519 if (PH->getIncomingBlock(0) == L->getLoopPreheader()) {
1520 Entry = 0;
1521 Latch = 1;
Dan Gohman7979b722010-01-22 00:46:49 +00001522 } else {
Dan Gohman572645c2010-02-12 10:34:29 +00001523 Entry = 1;
1524 Latch = 0;
Dan Gohman7979b722010-01-22 00:46:49 +00001525 }
Dan Gohman7979b722010-01-22 00:46:49 +00001526
Dan Gohman572645c2010-02-12 10:34:29 +00001527 ConstantInt *Init = dyn_cast<ConstantInt>(PH->getIncomingValue(Entry));
1528 if (!Init) continue;
Andrew Trickc2c988e2011-07-21 01:05:01 +00001529 Constant *NewInit = ConstantFP::get(DestTy, IsSigned ?
Andrew Trickc205a092011-07-21 01:45:54 +00001530 (double)Init->getSExtValue() :
1531 (double)Init->getZExtValue());
Dan Gohman7979b722010-01-22 00:46:49 +00001532
Dan Gohman572645c2010-02-12 10:34:29 +00001533 BinaryOperator *Incr =
1534 dyn_cast<BinaryOperator>(PH->getIncomingValue(Latch));
1535 if (!Incr) continue;
1536 if (Incr->getOpcode() != Instruction::Add
1537 && Incr->getOpcode() != Instruction::Sub)
Dan Gohman7979b722010-01-22 00:46:49 +00001538 continue;
Dan Gohman7979b722010-01-22 00:46:49 +00001539
Dan Gohman572645c2010-02-12 10:34:29 +00001540 /* Initialize new IV, double d = 0.0 in above example. */
1541 ConstantInt *C = NULL;
1542 if (Incr->getOperand(0) == PH)
1543 C = dyn_cast<ConstantInt>(Incr->getOperand(1));
1544 else if (Incr->getOperand(1) == PH)
1545 C = dyn_cast<ConstantInt>(Incr->getOperand(0));
Dan Gohman7979b722010-01-22 00:46:49 +00001546 else
Dan Gohman7979b722010-01-22 00:46:49 +00001547 continue;
1548
Dan Gohman572645c2010-02-12 10:34:29 +00001549 if (!C) continue;
Dan Gohman7979b722010-01-22 00:46:49 +00001550
Dan Gohman572645c2010-02-12 10:34:29 +00001551 // Ignore negative constants, as the code below doesn't handle them
1552 // correctly. TODO: Remove this restriction.
1553 if (!C->getValue().isStrictlyPositive()) continue;
Dan Gohman7979b722010-01-22 00:46:49 +00001554
Dan Gohman572645c2010-02-12 10:34:29 +00001555 /* Add new PHINode. */
Jay Foad3ecfc862011-03-30 11:28:46 +00001556 PHINode *NewPH = PHINode::Create(DestTy, 2, "IV.S.", PH);
Dan Gohman7979b722010-01-22 00:46:49 +00001557
Dan Gohman572645c2010-02-12 10:34:29 +00001558 /* create new increment. '++d' in above example. */
1559 Constant *CFP = ConstantFP::get(DestTy, C->getZExtValue());
1560 BinaryOperator *NewIncr =
1561 BinaryOperator::Create(Incr->getOpcode() == Instruction::Add ?
1562 Instruction::FAdd : Instruction::FSub,
1563 NewPH, CFP, "IV.S.next.", Incr);
Dan Gohman7979b722010-01-22 00:46:49 +00001564
Dan Gohman572645c2010-02-12 10:34:29 +00001565 NewPH->addIncoming(NewInit, PH->getIncomingBlock(Entry));
1566 NewPH->addIncoming(NewIncr, PH->getIncomingBlock(Latch));
Dan Gohman7979b722010-01-22 00:46:49 +00001567
Dan Gohman572645c2010-02-12 10:34:29 +00001568 /* Remove cast operation */
1569 ShadowUse->replaceAllUsesWith(NewPH);
1570 ShadowUse->eraseFromParent();
Dan Gohmanc6519f92010-05-20 20:05:31 +00001571 Changed = true;
Dan Gohman572645c2010-02-12 10:34:29 +00001572 break;
Dan Gohman7979b722010-01-22 00:46:49 +00001573 }
1574}
1575
1576/// FindIVUserForCond - If Cond has an operand that is an expression of an IV,
1577/// set the IV user and stride information and return true, otherwise return
1578/// false.
Dan Gohmanea507f52010-05-20 19:44:23 +00001579bool LSRInstance::FindIVUserForCond(ICmpInst *Cond, IVStrideUse *&CondUse) {
Dan Gohman572645c2010-02-12 10:34:29 +00001580 for (IVUsers::iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI)
1581 if (UI->getUser() == Cond) {
1582 // NOTE: we could handle setcc instructions with multiple uses here, but
1583 // InstCombine does it as well for simple uses, it's not clear that it
1584 // occurs enough in real life to handle.
1585 CondUse = UI;
1586 return true;
1587 }
Dan Gohman7979b722010-01-22 00:46:49 +00001588 return false;
Evan Chengcdf43b12007-10-25 09:11:16 +00001589}
1590
Dan Gohman7979b722010-01-22 00:46:49 +00001591/// OptimizeMax - Rewrite the loop's terminating condition if it uses
1592/// a max computation.
1593///
1594/// This is a narrow solution to a specific, but acute, problem. For loops
1595/// like this:
1596///
1597/// i = 0;
1598/// do {
1599/// p[i] = 0.0;
1600/// } while (++i < n);
1601///
1602/// the trip count isn't just 'n', because 'n' might not be positive. And
1603/// unfortunately this can come up even for loops where the user didn't use
1604/// a C do-while loop. For example, seemingly well-behaved top-test loops
1605/// will commonly be lowered like this:
1606//
1607/// if (n > 0) {
1608/// i = 0;
1609/// do {
1610/// p[i] = 0.0;
1611/// } while (++i < n);
1612/// }
1613///
1614/// and then it's possible for subsequent optimization to obscure the if
1615/// test in such a way that indvars can't find it.
1616///
1617/// When indvars can't find the if test in loops like this, it creates a
1618/// max expression, which allows it to give the loop a canonical
1619/// induction variable:
1620///
1621/// i = 0;
1622/// max = n < 1 ? 1 : n;
1623/// do {
1624/// p[i] = 0.0;
1625/// } while (++i != max);
1626///
1627/// Canonical induction variables are necessary because the loop passes
1628/// are designed around them. The most obvious example of this is the
1629/// LoopInfo analysis, which doesn't remember trip count values. It
1630/// expects to be able to rediscover the trip count each time it is
Dan Gohman572645c2010-02-12 10:34:29 +00001631/// needed, and it does this using a simple analysis that only succeeds if
Dan Gohman7979b722010-01-22 00:46:49 +00001632/// the loop has a canonical induction variable.
1633///
1634/// However, when it comes time to generate code, the maximum operation
1635/// can be quite costly, especially if it's inside of an outer loop.
1636///
1637/// This function solves this problem by detecting this type of loop and
1638/// rewriting their conditions from ICMP_NE back to ICMP_SLT, and deleting
1639/// the instructions for the maximum computation.
1640///
Dan Gohman572645c2010-02-12 10:34:29 +00001641ICmpInst *LSRInstance::OptimizeMax(ICmpInst *Cond, IVStrideUse* &CondUse) {
Dan Gohman7979b722010-01-22 00:46:49 +00001642 // Check that the loop matches the pattern we're looking for.
1643 if (Cond->getPredicate() != CmpInst::ICMP_EQ &&
1644 Cond->getPredicate() != CmpInst::ICMP_NE)
1645 return Cond;
Dan Gohmana10756e2010-01-21 02:09:26 +00001646
Dan Gohman7979b722010-01-22 00:46:49 +00001647 SelectInst *Sel = dyn_cast<SelectInst>(Cond->getOperand(1));
1648 if (!Sel || !Sel->hasOneUse()) return Cond;
Dan Gohmana10756e2010-01-21 02:09:26 +00001649
Dan Gohman572645c2010-02-12 10:34:29 +00001650 const SCEV *BackedgeTakenCount = SE.getBackedgeTakenCount(L);
Dan Gohman7979b722010-01-22 00:46:49 +00001651 if (isa<SCEVCouldNotCompute>(BackedgeTakenCount))
1652 return Cond;
Dan Gohmandeff6212010-05-03 22:09:21 +00001653 const SCEV *One = SE.getConstant(BackedgeTakenCount->getType(), 1);
Dan Gohmana10756e2010-01-21 02:09:26 +00001654
Dan Gohman7979b722010-01-22 00:46:49 +00001655 // Add one to the backedge-taken count to get the trip count.
Dan Gohman4065f602010-08-16 15:39:27 +00001656 const SCEV *IterationCount = SE.getAddExpr(One, BackedgeTakenCount);
Dan Gohman1d367982010-04-24 03:13:44 +00001657 if (IterationCount != SE.getSCEV(Sel)) return Cond;
Dan Gohman7979b722010-01-22 00:46:49 +00001658
Dan Gohman1d367982010-04-24 03:13:44 +00001659 // Check for a max calculation that matches the pattern. There's no check
1660 // for ICMP_ULE here because the comparison would be with zero, which
1661 // isn't interesting.
1662 CmpInst::Predicate Pred = ICmpInst::BAD_ICMP_PREDICATE;
1663 const SCEVNAryExpr *Max = 0;
1664 if (const SCEVSMaxExpr *S = dyn_cast<SCEVSMaxExpr>(BackedgeTakenCount)) {
1665 Pred = ICmpInst::ICMP_SLE;
1666 Max = S;
1667 } else if (const SCEVSMaxExpr *S = dyn_cast<SCEVSMaxExpr>(IterationCount)) {
1668 Pred = ICmpInst::ICMP_SLT;
1669 Max = S;
1670 } else if (const SCEVUMaxExpr *U = dyn_cast<SCEVUMaxExpr>(IterationCount)) {
1671 Pred = ICmpInst::ICMP_ULT;
1672 Max = U;
1673 } else {
1674 // No match; bail.
Dan Gohman7979b722010-01-22 00:46:49 +00001675 return Cond;
Dan Gohman1d367982010-04-24 03:13:44 +00001676 }
Dan Gohman7979b722010-01-22 00:46:49 +00001677
1678 // To handle a max with more than two operands, this optimization would
1679 // require additional checking and setup.
1680 if (Max->getNumOperands() != 2)
1681 return Cond;
1682
1683 const SCEV *MaxLHS = Max->getOperand(0);
1684 const SCEV *MaxRHS = Max->getOperand(1);
Dan Gohman1d367982010-04-24 03:13:44 +00001685
1686 // ScalarEvolution canonicalizes constants to the left. For < and >, look
1687 // for a comparison with 1. For <= and >=, a comparison with zero.
1688 if (!MaxLHS ||
1689 (ICmpInst::isTrueWhenEqual(Pred) ? !MaxLHS->isZero() : (MaxLHS != One)))
1690 return Cond;
1691
Dan Gohman7979b722010-01-22 00:46:49 +00001692 // Check the relevant induction variable for conformance to
1693 // the pattern.
Dan Gohman572645c2010-02-12 10:34:29 +00001694 const SCEV *IV = SE.getSCEV(Cond->getOperand(0));
Dan Gohman7979b722010-01-22 00:46:49 +00001695 const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(IV);
1696 if (!AR || !AR->isAffine() ||
1697 AR->getStart() != One ||
Dan Gohman572645c2010-02-12 10:34:29 +00001698 AR->getStepRecurrence(SE) != One)
Dan Gohman7979b722010-01-22 00:46:49 +00001699 return Cond;
1700
1701 assert(AR->getLoop() == L &&
1702 "Loop condition operand is an addrec in a different loop!");
1703
1704 // Check the right operand of the select, and remember it, as it will
1705 // be used in the new comparison instruction.
1706 Value *NewRHS = 0;
Dan Gohman1d367982010-04-24 03:13:44 +00001707 if (ICmpInst::isTrueWhenEqual(Pred)) {
1708 // Look for n+1, and grab n.
1709 if (AddOperator *BO = dyn_cast<AddOperator>(Sel->getOperand(1)))
1710 if (isa<ConstantInt>(BO->getOperand(1)) &&
1711 cast<ConstantInt>(BO->getOperand(1))->isOne() &&
1712 SE.getSCEV(BO->getOperand(0)) == MaxRHS)
1713 NewRHS = BO->getOperand(0);
1714 if (AddOperator *BO = dyn_cast<AddOperator>(Sel->getOperand(2)))
1715 if (isa<ConstantInt>(BO->getOperand(1)) &&
1716 cast<ConstantInt>(BO->getOperand(1))->isOne() &&
1717 SE.getSCEV(BO->getOperand(0)) == MaxRHS)
1718 NewRHS = BO->getOperand(0);
1719 if (!NewRHS)
1720 return Cond;
1721 } else if (SE.getSCEV(Sel->getOperand(1)) == MaxRHS)
Dan Gohman7979b722010-01-22 00:46:49 +00001722 NewRHS = Sel->getOperand(1);
Dan Gohman572645c2010-02-12 10:34:29 +00001723 else if (SE.getSCEV(Sel->getOperand(2)) == MaxRHS)
Dan Gohman7979b722010-01-22 00:46:49 +00001724 NewRHS = Sel->getOperand(2);
Dan Gohmancaf71ab2010-06-22 23:07:13 +00001725 else if (const SCEVUnknown *SU = dyn_cast<SCEVUnknown>(MaxRHS))
1726 NewRHS = SU->getValue();
Dan Gohman1d367982010-04-24 03:13:44 +00001727 else
Dan Gohmancaf71ab2010-06-22 23:07:13 +00001728 // Max doesn't match expected pattern.
1729 return Cond;
Dan Gohman7979b722010-01-22 00:46:49 +00001730
1731 // Determine the new comparison opcode. It may be signed or unsigned,
1732 // and the original comparison may be either equality or inequality.
Dan Gohman7979b722010-01-22 00:46:49 +00001733 if (Cond->getPredicate() == CmpInst::ICMP_EQ)
1734 Pred = CmpInst::getInversePredicate(Pred);
1735
1736 // Ok, everything looks ok to change the condition into an SLT or SGE and
1737 // delete the max calculation.
1738 ICmpInst *NewCond =
1739 new ICmpInst(Cond, Pred, Cond->getOperand(0), NewRHS, "scmp");
1740
1741 // Delete the max calculation instructions.
1742 Cond->replaceAllUsesWith(NewCond);
1743 CondUse->setUser(NewCond);
1744 Instruction *Cmp = cast<Instruction>(Sel->getOperand(0));
1745 Cond->eraseFromParent();
1746 Sel->eraseFromParent();
1747 if (Cmp->use_empty())
1748 Cmp->eraseFromParent();
1749 return NewCond;
Dan Gohmanad7321f2008-09-15 21:22:06 +00001750}
1751
Jim Grosbach56a1f802009-11-17 17:53:56 +00001752/// OptimizeLoopTermCond - Change loop terminating condition to use the
Evan Cheng586f69a2009-11-12 07:35:05 +00001753/// postinc iv when possible.
Dan Gohmanc6519f92010-05-20 20:05:31 +00001754void
Dan Gohman572645c2010-02-12 10:34:29 +00001755LSRInstance::OptimizeLoopTermCond() {
1756 SmallPtrSet<Instruction *, 4> PostIncs;
1757
Evan Cheng586f69a2009-11-12 07:35:05 +00001758 BasicBlock *LatchBlock = L->getLoopLatch();
Evan Cheng076e0852009-11-17 18:10:11 +00001759 SmallVector<BasicBlock*, 8> ExitingBlocks;
1760 L->getExitingBlocks(ExitingBlocks);
Jim Grosbach56a1f802009-11-17 17:53:56 +00001761
Evan Cheng076e0852009-11-17 18:10:11 +00001762 for (unsigned i = 0, e = ExitingBlocks.size(); i != e; ++i) {
1763 BasicBlock *ExitingBlock = ExitingBlocks[i];
Evan Cheng586f69a2009-11-12 07:35:05 +00001764
Dan Gohman572645c2010-02-12 10:34:29 +00001765 // Get the terminating condition for the loop if possible. If we
Evan Cheng076e0852009-11-17 18:10:11 +00001766 // can, we want to change it to use a post-incremented version of its
1767 // induction variable, to allow coalescing the live ranges for the IV into
1768 // one register value.
Evan Cheng586f69a2009-11-12 07:35:05 +00001769
Evan Cheng076e0852009-11-17 18:10:11 +00001770 BranchInst *TermBr = dyn_cast<BranchInst>(ExitingBlock->getTerminator());
1771 if (!TermBr)
1772 continue;
1773 // FIXME: Overly conservative, termination condition could be an 'or' etc..
1774 if (TermBr->isUnconditional() || !isa<ICmpInst>(TermBr->getCondition()))
1775 continue;
Evan Cheng586f69a2009-11-12 07:35:05 +00001776
Evan Cheng076e0852009-11-17 18:10:11 +00001777 // Search IVUsesByStride to find Cond's IVUse if there is one.
1778 IVStrideUse *CondUse = 0;
Evan Cheng076e0852009-11-17 18:10:11 +00001779 ICmpInst *Cond = cast<ICmpInst>(TermBr->getCondition());
Dan Gohman572645c2010-02-12 10:34:29 +00001780 if (!FindIVUserForCond(Cond, CondUse))
Evan Cheng076e0852009-11-17 18:10:11 +00001781 continue;
1782
Evan Cheng076e0852009-11-17 18:10:11 +00001783 // If the trip count is computed in terms of a max (due to ScalarEvolution
1784 // being unable to find a sufficient guard, for example), change the loop
1785 // comparison to use SLT or ULT instead of NE.
Dan Gohman572645c2010-02-12 10:34:29 +00001786 // One consequence of doing this now is that it disrupts the count-down
1787 // optimization. That's not always a bad thing though, because in such
1788 // cases it may still be worthwhile to avoid a max.
1789 Cond = OptimizeMax(Cond, CondUse);
Evan Cheng076e0852009-11-17 18:10:11 +00001790
Dan Gohman572645c2010-02-12 10:34:29 +00001791 // If this exiting block dominates the latch block, it may also use
1792 // the post-inc value if it won't be shared with other uses.
1793 // Check for dominance.
1794 if (!DT.dominates(ExitingBlock, LatchBlock))
Dan Gohman7979b722010-01-22 00:46:49 +00001795 continue;
Evan Cheng076e0852009-11-17 18:10:11 +00001796
Dan Gohman572645c2010-02-12 10:34:29 +00001797 // Conservatively avoid trying to use the post-inc value in non-latch
1798 // exits if there may be pre-inc users in intervening blocks.
Dan Gohman590bfe82010-02-14 03:21:49 +00001799 if (LatchBlock != ExitingBlock)
Dan Gohman572645c2010-02-12 10:34:29 +00001800 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI)
1801 // Test if the use is reachable from the exiting block. This dominator
1802 // query is a conservative approximation of reachability.
1803 if (&*UI != CondUse &&
1804 !DT.properlyDominates(UI->getUser()->getParent(), ExitingBlock)) {
1805 // Conservatively assume there may be reuse if the quotient of their
1806 // strides could be a legal scale.
Dan Gohmanc0564542010-04-19 21:48:58 +00001807 const SCEV *A = IU.getStride(*CondUse, L);
1808 const SCEV *B = IU.getStride(*UI, L);
Dan Gohman448db1c2010-04-07 22:27:08 +00001809 if (!A || !B) continue;
Dan Gohman572645c2010-02-12 10:34:29 +00001810 if (SE.getTypeSizeInBits(A->getType()) !=
1811 SE.getTypeSizeInBits(B->getType())) {
1812 if (SE.getTypeSizeInBits(A->getType()) >
1813 SE.getTypeSizeInBits(B->getType()))
1814 B = SE.getSignExtendExpr(B, A->getType());
1815 else
1816 A = SE.getSignExtendExpr(A, B->getType());
1817 }
1818 if (const SCEVConstant *D =
Dan Gohmanf09b7122010-02-19 19:35:48 +00001819 dyn_cast_or_null<SCEVConstant>(getExactSDiv(B, A, SE))) {
Dan Gohman9f383eb2010-05-20 22:25:20 +00001820 const ConstantInt *C = D->getValue();
Dan Gohman572645c2010-02-12 10:34:29 +00001821 // Stride of one or negative one can have reuse with non-addresses.
Dan Gohman9f383eb2010-05-20 22:25:20 +00001822 if (C->isOne() || C->isAllOnesValue())
Dan Gohman572645c2010-02-12 10:34:29 +00001823 goto decline_post_inc;
1824 // Avoid weird situations.
Dan Gohman9f383eb2010-05-20 22:25:20 +00001825 if (C->getValue().getMinSignedBits() >= 64 ||
1826 C->getValue().isMinSignedValue())
Dan Gohman572645c2010-02-12 10:34:29 +00001827 goto decline_post_inc;
Dan Gohman590bfe82010-02-14 03:21:49 +00001828 // Without TLI, assume that any stride might be valid, and so any
1829 // use might be shared.
1830 if (!TLI)
1831 goto decline_post_inc;
Dan Gohman572645c2010-02-12 10:34:29 +00001832 // Check for possible scaled-address reuse.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001833 Type *AccessTy = getAccessType(UI->getUser());
Dan Gohman572645c2010-02-12 10:34:29 +00001834 TargetLowering::AddrMode AM;
Dan Gohman9f383eb2010-05-20 22:25:20 +00001835 AM.Scale = C->getSExtValue();
Dan Gohman2763dfd2010-02-14 02:45:21 +00001836 if (TLI->isLegalAddressingMode(AM, AccessTy))
Dan Gohman572645c2010-02-12 10:34:29 +00001837 goto decline_post_inc;
1838 AM.Scale = -AM.Scale;
Dan Gohman2763dfd2010-02-14 02:45:21 +00001839 if (TLI->isLegalAddressingMode(AM, AccessTy))
Dan Gohman572645c2010-02-12 10:34:29 +00001840 goto decline_post_inc;
1841 }
1842 }
1843
David Greene63c94632009-12-23 22:58:38 +00001844 DEBUG(dbgs() << " Change loop exiting icmp to use postinc iv: "
Dan Gohman572645c2010-02-12 10:34:29 +00001845 << *Cond << '\n');
Evan Cheng076e0852009-11-17 18:10:11 +00001846
1847 // It's possible for the setcc instruction to be anywhere in the loop, and
1848 // possible for it to have multiple users. If it is not immediately before
1849 // the exiting block branch, move it.
Dan Gohman572645c2010-02-12 10:34:29 +00001850 if (&*++BasicBlock::iterator(Cond) != TermBr) {
1851 if (Cond->hasOneUse()) {
Evan Cheng076e0852009-11-17 18:10:11 +00001852 Cond->moveBefore(TermBr);
1853 } else {
Dan Gohman572645c2010-02-12 10:34:29 +00001854 // Clone the terminating condition and insert into the loopend.
1855 ICmpInst *OldCond = Cond;
Evan Cheng076e0852009-11-17 18:10:11 +00001856 Cond = cast<ICmpInst>(Cond->clone());
1857 Cond->setName(L->getHeader()->getName() + ".termcond");
1858 ExitingBlock->getInstList().insert(TermBr, Cond);
1859
1860 // Clone the IVUse, as the old use still exists!
Andrew Trick4417e532011-06-21 15:43:52 +00001861 CondUse = &IU.AddUser(Cond, CondUse->getOperandValToReplace());
Dan Gohman572645c2010-02-12 10:34:29 +00001862 TermBr->replaceUsesOfWith(OldCond, Cond);
Evan Cheng076e0852009-11-17 18:10:11 +00001863 }
Evan Cheng586f69a2009-11-12 07:35:05 +00001864 }
1865
Evan Cheng076e0852009-11-17 18:10:11 +00001866 // If we get to here, we know that we can transform the setcc instruction to
1867 // use the post-incremented version of the IV, allowing us to coalesce the
1868 // live ranges for the IV correctly.
Dan Gohman448db1c2010-04-07 22:27:08 +00001869 CondUse->transformToPostInc(L);
Evan Cheng076e0852009-11-17 18:10:11 +00001870 Changed = true;
1871
Dan Gohman572645c2010-02-12 10:34:29 +00001872 PostIncs.insert(Cond);
1873 decline_post_inc:;
Dan Gohmana10756e2010-01-21 02:09:26 +00001874 }
Dan Gohman572645c2010-02-12 10:34:29 +00001875
1876 // Determine an insertion point for the loop induction variable increment. It
1877 // must dominate all the post-inc comparisons we just set up, and it must
1878 // dominate the loop latch edge.
1879 IVIncInsertPos = L->getLoopLatch()->getTerminator();
1880 for (SmallPtrSet<Instruction *, 4>::const_iterator I = PostIncs.begin(),
1881 E = PostIncs.end(); I != E; ++I) {
1882 BasicBlock *BB =
1883 DT.findNearestCommonDominator(IVIncInsertPos->getParent(),
1884 (*I)->getParent());
1885 if (BB == (*I)->getParent())
1886 IVIncInsertPos = *I;
1887 else if (BB != IVIncInsertPos->getParent())
1888 IVIncInsertPos = BB->getTerminator();
1889 }
Dan Gohmana10756e2010-01-21 02:09:26 +00001890}
1891
Chris Lattner7a2bdde2011-04-15 05:18:47 +00001892/// reconcileNewOffset - Determine if the given use can accommodate a fixup
Dan Gohman76c315a2010-05-20 20:52:00 +00001893/// at the given offset and other details. If so, update the use and
1894/// return true.
Dan Gohman572645c2010-02-12 10:34:29 +00001895bool
Dan Gohman191bd642010-09-01 01:45:53 +00001896LSRInstance::reconcileNewOffset(LSRUse &LU, int64_t NewOffset, bool HasBaseReg,
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001897 LSRUse::KindType Kind, Type *AccessTy) {
Dan Gohman191bd642010-09-01 01:45:53 +00001898 int64_t NewMinOffset = LU.MinOffset;
1899 int64_t NewMaxOffset = LU.MaxOffset;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001900 Type *NewAccessTy = AccessTy;
Dan Gohman7979b722010-01-22 00:46:49 +00001901
Dan Gohman572645c2010-02-12 10:34:29 +00001902 // Check for a mismatched kind. It's tempting to collapse mismatched kinds to
1903 // something conservative, however this can pessimize in the case that one of
1904 // the uses will have all its uses outside the loop, for example.
1905 if (LU.Kind != Kind)
Dan Gohman7979b722010-01-22 00:46:49 +00001906 return false;
Dan Gohman572645c2010-02-12 10:34:29 +00001907 // Conservatively assume HasBaseReg is true for now.
Dan Gohman191bd642010-09-01 01:45:53 +00001908 if (NewOffset < LU.MinOffset) {
1909 if (!isAlwaysFoldable(LU.MaxOffset - NewOffset, 0, HasBaseReg,
Dan Gohman454d26d2010-02-22 04:11:59 +00001910 Kind, AccessTy, TLI))
Dan Gohman7979b722010-01-22 00:46:49 +00001911 return false;
Dan Gohman191bd642010-09-01 01:45:53 +00001912 NewMinOffset = NewOffset;
1913 } else if (NewOffset > LU.MaxOffset) {
1914 if (!isAlwaysFoldable(NewOffset - LU.MinOffset, 0, HasBaseReg,
Dan Gohman454d26d2010-02-22 04:11:59 +00001915 Kind, AccessTy, TLI))
Dan Gohman7979b722010-01-22 00:46:49 +00001916 return false;
Dan Gohman191bd642010-09-01 01:45:53 +00001917 NewMaxOffset = NewOffset;
Dan Gohmana10756e2010-01-21 02:09:26 +00001918 }
Dan Gohman572645c2010-02-12 10:34:29 +00001919 // Check for a mismatched access type, and fall back conservatively as needed.
Dan Gohman74e5ef02010-06-19 21:30:18 +00001920 // TODO: Be less conservative when the type is similar and can use the same
1921 // addressing modes.
Dan Gohman572645c2010-02-12 10:34:29 +00001922 if (Kind == LSRUse::Address && AccessTy != LU.AccessTy)
Dan Gohman191bd642010-09-01 01:45:53 +00001923 NewAccessTy = Type::getVoidTy(AccessTy->getContext());
Dan Gohmana10756e2010-01-21 02:09:26 +00001924
Dan Gohman572645c2010-02-12 10:34:29 +00001925 // Update the use.
Dan Gohman191bd642010-09-01 01:45:53 +00001926 LU.MinOffset = NewMinOffset;
1927 LU.MaxOffset = NewMaxOffset;
1928 LU.AccessTy = NewAccessTy;
1929 if (NewOffset != LU.Offsets.back())
1930 LU.Offsets.push_back(NewOffset);
Dan Gohman8b0ade32010-01-21 22:42:49 +00001931 return true;
1932}
1933
Dan Gohman572645c2010-02-12 10:34:29 +00001934/// getUse - Return an LSRUse index and an offset value for a fixup which
1935/// needs the given expression, with the given kind and optional access type.
Dan Gohman3f46a3a2010-03-01 17:49:51 +00001936/// Either reuse an existing use or create a new one, as needed.
Dan Gohman572645c2010-02-12 10:34:29 +00001937std::pair<size_t, int64_t>
1938LSRInstance::getUse(const SCEV *&Expr,
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001939 LSRUse::KindType Kind, Type *AccessTy) {
Dan Gohman572645c2010-02-12 10:34:29 +00001940 const SCEV *Copy = Expr;
1941 int64_t Offset = ExtractImmediate(Expr, SE);
Evan Cheng586f69a2009-11-12 07:35:05 +00001942
Dan Gohman572645c2010-02-12 10:34:29 +00001943 // Basic uses can't accept any offset, for example.
Dan Gohman454d26d2010-02-22 04:11:59 +00001944 if (!isAlwaysFoldable(Offset, 0, /*HasBaseReg=*/true, Kind, AccessTy, TLI)) {
Dan Gohman572645c2010-02-12 10:34:29 +00001945 Expr = Copy;
1946 Offset = 0;
1947 }
1948
1949 std::pair<UseMapTy::iterator, bool> P =
Dan Gohman1e3121c2010-06-19 21:29:59 +00001950 UseMap.insert(std::make_pair(std::make_pair(Expr, Kind), 0));
Dan Gohman572645c2010-02-12 10:34:29 +00001951 if (!P.second) {
1952 // A use already existed with this base.
1953 size_t LUIdx = P.first->second;
1954 LSRUse &LU = Uses[LUIdx];
Dan Gohman191bd642010-09-01 01:45:53 +00001955 if (reconcileNewOffset(LU, Offset, /*HasBaseReg=*/true, Kind, AccessTy))
Dan Gohman572645c2010-02-12 10:34:29 +00001956 // Reuse this use.
1957 return std::make_pair(LUIdx, Offset);
1958 }
1959
1960 // Create a new use.
1961 size_t LUIdx = Uses.size();
1962 P.first->second = LUIdx;
1963 Uses.push_back(LSRUse(Kind, AccessTy));
1964 LSRUse &LU = Uses[LUIdx];
1965
Dan Gohman191bd642010-09-01 01:45:53 +00001966 // We don't need to track redundant offsets, but we don't need to go out
1967 // of our way here to avoid them.
1968 if (LU.Offsets.empty() || Offset != LU.Offsets.back())
1969 LU.Offsets.push_back(Offset);
1970
Dan Gohman572645c2010-02-12 10:34:29 +00001971 LU.MinOffset = Offset;
1972 LU.MaxOffset = Offset;
1973 return std::make_pair(LUIdx, Offset);
1974}
1975
Dan Gohman5ce6d052010-05-20 15:17:54 +00001976/// DeleteUse - Delete the given use from the Uses list.
Dan Gohmanc6897702010-10-07 23:33:43 +00001977void LSRInstance::DeleteUse(LSRUse &LU, size_t LUIdx) {
Dan Gohman191bd642010-09-01 01:45:53 +00001978 if (&LU != &Uses.back())
Dan Gohman5ce6d052010-05-20 15:17:54 +00001979 std::swap(LU, Uses.back());
1980 Uses.pop_back();
Dan Gohmanc6897702010-10-07 23:33:43 +00001981
1982 // Update RegUses.
1983 RegUses.SwapAndDropUse(LUIdx, Uses.size());
Dan Gohman5ce6d052010-05-20 15:17:54 +00001984}
1985
Dan Gohmana2086b32010-05-19 23:43:12 +00001986/// FindUseWithFormula - Look for a use distinct from OrigLU which is has
1987/// a formula that has the same registers as the given formula.
1988LSRUse *
1989LSRInstance::FindUseWithSimilarFormula(const Formula &OrigF,
Dan Gohman191bd642010-09-01 01:45:53 +00001990 const LSRUse &OrigLU) {
1991 // Search all uses for the formula. This could be more clever.
Dan Gohmana2086b32010-05-19 23:43:12 +00001992 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
1993 LSRUse &LU = Uses[LUIdx];
Dan Gohman6a832712010-08-29 15:27:08 +00001994 // Check whether this use is close enough to OrigLU, to see whether it's
1995 // worthwhile looking through its formulae.
1996 // Ignore ICmpZero uses because they may contain formulae generated by
1997 // GenerateICmpZeroScales, in which case adding fixup offsets may
1998 // be invalid.
Dan Gohmana2086b32010-05-19 23:43:12 +00001999 if (&LU != &OrigLU &&
2000 LU.Kind != LSRUse::ICmpZero &&
2001 LU.Kind == OrigLU.Kind && OrigLU.AccessTy == LU.AccessTy &&
Dan Gohmana9db1292010-07-15 20:24:58 +00002002 LU.WidestFixupType == OrigLU.WidestFixupType &&
Dan Gohmana2086b32010-05-19 23:43:12 +00002003 LU.HasFormulaWithSameRegs(OrigF)) {
Dan Gohman6a832712010-08-29 15:27:08 +00002004 // Scan through this use's formulae.
Dan Gohman402d4352010-05-20 20:33:18 +00002005 for (SmallVectorImpl<Formula>::const_iterator I = LU.Formulae.begin(),
2006 E = LU.Formulae.end(); I != E; ++I) {
2007 const Formula &F = *I;
Dan Gohman6a832712010-08-29 15:27:08 +00002008 // Check to see if this formula has the same registers and symbols
2009 // as OrigF.
Dan Gohmana2086b32010-05-19 23:43:12 +00002010 if (F.BaseRegs == OrigF.BaseRegs &&
2011 F.ScaledReg == OrigF.ScaledReg &&
2012 F.AM.BaseGV == OrigF.AM.BaseGV &&
Dan Gohmancca82142011-05-03 00:46:49 +00002013 F.AM.Scale == OrigF.AM.Scale &&
2014 F.UnfoldedOffset == OrigF.UnfoldedOffset) {
Dan Gohman191bd642010-09-01 01:45:53 +00002015 if (F.AM.BaseOffs == 0)
Dan Gohmana2086b32010-05-19 23:43:12 +00002016 return &LU;
Dan Gohman6a832712010-08-29 15:27:08 +00002017 // This is the formula where all the registers and symbols matched;
2018 // there aren't going to be any others. Since we declined it, we
2019 // can skip the rest of the formulae and procede to the next LSRUse.
Dan Gohmana2086b32010-05-19 23:43:12 +00002020 break;
2021 }
2022 }
2023 }
2024 }
2025
Dan Gohman6a832712010-08-29 15:27:08 +00002026 // Nothing looked good.
Dan Gohmana2086b32010-05-19 23:43:12 +00002027 return 0;
2028}
2029
Dan Gohman572645c2010-02-12 10:34:29 +00002030void LSRInstance::CollectInterestingTypesAndFactors() {
2031 SmallSetVector<const SCEV *, 4> Strides;
2032
Dan Gohman1b7bf182010-02-19 00:05:23 +00002033 // Collect interesting types and strides.
Dan Gohman448db1c2010-04-07 22:27:08 +00002034 SmallVector<const SCEV *, 4> Worklist;
Dan Gohman572645c2010-02-12 10:34:29 +00002035 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI) {
Dan Gohmanc0564542010-04-19 21:48:58 +00002036 const SCEV *Expr = IU.getExpr(*UI);
Dan Gohman572645c2010-02-12 10:34:29 +00002037
2038 // Collect interesting types.
Dan Gohman448db1c2010-04-07 22:27:08 +00002039 Types.insert(SE.getEffectiveSCEVType(Expr->getType()));
Dan Gohman572645c2010-02-12 10:34:29 +00002040
Dan Gohman448db1c2010-04-07 22:27:08 +00002041 // Add strides for mentioned loops.
2042 Worklist.push_back(Expr);
2043 do {
2044 const SCEV *S = Worklist.pop_back_val();
2045 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
2046 Strides.insert(AR->getStepRecurrence(SE));
2047 Worklist.push_back(AR->getStart());
2048 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
Dan Gohman403a8cd2010-06-21 19:47:52 +00002049 Worklist.append(Add->op_begin(), Add->op_end());
Dan Gohman448db1c2010-04-07 22:27:08 +00002050 }
2051 } while (!Worklist.empty());
Dan Gohman1b7bf182010-02-19 00:05:23 +00002052 }
2053
2054 // Compute interesting factors from the set of interesting strides.
2055 for (SmallSetVector<const SCEV *, 4>::const_iterator
2056 I = Strides.begin(), E = Strides.end(); I != E; ++I)
Dan Gohman572645c2010-02-12 10:34:29 +00002057 for (SmallSetVector<const SCEV *, 4>::const_iterator NewStrideIter =
Oscar Fuentesee56c422010-08-02 06:00:15 +00002058 llvm::next(I); NewStrideIter != E; ++NewStrideIter) {
Dan Gohman1b7bf182010-02-19 00:05:23 +00002059 const SCEV *OldStride = *I;
Dan Gohman572645c2010-02-12 10:34:29 +00002060 const SCEV *NewStride = *NewStrideIter;
Dan Gohman572645c2010-02-12 10:34:29 +00002061
2062 if (SE.getTypeSizeInBits(OldStride->getType()) !=
2063 SE.getTypeSizeInBits(NewStride->getType())) {
2064 if (SE.getTypeSizeInBits(OldStride->getType()) >
2065 SE.getTypeSizeInBits(NewStride->getType()))
2066 NewStride = SE.getSignExtendExpr(NewStride, OldStride->getType());
2067 else
2068 OldStride = SE.getSignExtendExpr(OldStride, NewStride->getType());
2069 }
2070 if (const SCEVConstant *Factor =
Dan Gohmanf09b7122010-02-19 19:35:48 +00002071 dyn_cast_or_null<SCEVConstant>(getExactSDiv(NewStride, OldStride,
2072 SE, true))) {
Dan Gohman572645c2010-02-12 10:34:29 +00002073 if (Factor->getValue()->getValue().getMinSignedBits() <= 64)
2074 Factors.insert(Factor->getValue()->getValue().getSExtValue());
2075 } else if (const SCEVConstant *Factor =
Dan Gohman454d26d2010-02-22 04:11:59 +00002076 dyn_cast_or_null<SCEVConstant>(getExactSDiv(OldStride,
2077 NewStride,
Dan Gohmanf09b7122010-02-19 19:35:48 +00002078 SE, true))) {
Dan Gohman572645c2010-02-12 10:34:29 +00002079 if (Factor->getValue()->getValue().getMinSignedBits() <= 64)
2080 Factors.insert(Factor->getValue()->getValue().getSExtValue());
2081 }
2082 }
Dan Gohman572645c2010-02-12 10:34:29 +00002083
2084 // If all uses use the same type, don't bother looking for truncation-based
2085 // reuse.
2086 if (Types.size() == 1)
2087 Types.clear();
2088
2089 DEBUG(print_factors_and_types(dbgs()));
2090}
2091
2092void LSRInstance::CollectFixupsAndInitialFormulae() {
2093 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI) {
2094 // Record the uses.
2095 LSRFixup &LF = getNewFixup();
2096 LF.UserInst = UI->getUser();
2097 LF.OperandValToReplace = UI->getOperandValToReplace();
Dan Gohman448db1c2010-04-07 22:27:08 +00002098 LF.PostIncLoops = UI->getPostIncLoops();
Dan Gohman572645c2010-02-12 10:34:29 +00002099
2100 LSRUse::KindType Kind = LSRUse::Basic;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002101 Type *AccessTy = 0;
Dan Gohman572645c2010-02-12 10:34:29 +00002102 if (isAddressUse(LF.UserInst, LF.OperandValToReplace)) {
2103 Kind = LSRUse::Address;
2104 AccessTy = getAccessType(LF.UserInst);
2105 }
2106
Dan Gohmanc0564542010-04-19 21:48:58 +00002107 const SCEV *S = IU.getExpr(*UI);
Dan Gohman572645c2010-02-12 10:34:29 +00002108
2109 // Equality (== and !=) ICmps are special. We can rewrite (i == N) as
2110 // (N - i == 0), and this allows (N - i) to be the expression that we work
2111 // with rather than just N or i, so we can consider the register
2112 // requirements for both N and i at the same time. Limiting this code to
2113 // equality icmps is not a problem because all interesting loops use
2114 // equality icmps, thanks to IndVarSimplify.
2115 if (ICmpInst *CI = dyn_cast<ICmpInst>(LF.UserInst))
2116 if (CI->isEquality()) {
2117 // Swap the operands if needed to put the OperandValToReplace on the
2118 // left, for consistency.
2119 Value *NV = CI->getOperand(1);
2120 if (NV == LF.OperandValToReplace) {
2121 CI->setOperand(1, CI->getOperand(0));
2122 CI->setOperand(0, NV);
Dan Gohmanf182b232010-05-20 19:26:52 +00002123 NV = CI->getOperand(1);
Dan Gohman9da1bf42010-05-20 19:16:03 +00002124 Changed = true;
Dan Gohman572645c2010-02-12 10:34:29 +00002125 }
2126
2127 // x == y --> x - y == 0
2128 const SCEV *N = SE.getSCEV(NV);
Dan Gohman17ead4f2010-11-17 21:23:15 +00002129 if (SE.isLoopInvariant(N, L)) {
Dan Gohman673968a2011-05-18 21:02:18 +00002130 // S is normalized, so normalize N before folding it into S
2131 // to keep the result normalized.
2132 N = TransformForPostIncUse(Normalize, N, CI, 0,
2133 LF.PostIncLoops, SE, DT);
Dan Gohman572645c2010-02-12 10:34:29 +00002134 Kind = LSRUse::ICmpZero;
2135 S = SE.getMinusSCEV(N, S);
2136 }
2137
2138 // -1 and the negations of all interesting strides (except the negation
2139 // of -1) are now also interesting.
2140 for (size_t i = 0, e = Factors.size(); i != e; ++i)
2141 if (Factors[i] != -1)
2142 Factors.insert(-(uint64_t)Factors[i]);
2143 Factors.insert(-1);
2144 }
2145
2146 // Set up the initial formula for this use.
2147 std::pair<size_t, int64_t> P = getUse(S, Kind, AccessTy);
2148 LF.LUIdx = P.first;
2149 LF.Offset = P.second;
2150 LSRUse &LU = Uses[LF.LUIdx];
Dan Gohman448db1c2010-04-07 22:27:08 +00002151 LU.AllFixupsOutsideLoop &= LF.isUseFullyOutsideLoop(L);
Dan Gohmana9db1292010-07-15 20:24:58 +00002152 if (!LU.WidestFixupType ||
2153 SE.getTypeSizeInBits(LU.WidestFixupType) <
2154 SE.getTypeSizeInBits(LF.OperandValToReplace->getType()))
2155 LU.WidestFixupType = LF.OperandValToReplace->getType();
Dan Gohman572645c2010-02-12 10:34:29 +00002156
2157 // If this is the first use of this LSRUse, give it a formula.
2158 if (LU.Formulae.empty()) {
Dan Gohman454d26d2010-02-22 04:11:59 +00002159 InsertInitialFormula(S, LU, LF.LUIdx);
Dan Gohman572645c2010-02-12 10:34:29 +00002160 CountRegisters(LU.Formulae.back(), LF.LUIdx);
2161 }
2162 }
2163
2164 DEBUG(print_fixups(dbgs()));
2165}
2166
Dan Gohman76c315a2010-05-20 20:52:00 +00002167/// InsertInitialFormula - Insert a formula for the given expression into
2168/// the given use, separating out loop-variant portions from loop-invariant
2169/// and loop-computable portions.
Dan Gohman572645c2010-02-12 10:34:29 +00002170void
Dan Gohman454d26d2010-02-22 04:11:59 +00002171LSRInstance::InsertInitialFormula(const SCEV *S, LSRUse &LU, size_t LUIdx) {
Dan Gohman572645c2010-02-12 10:34:29 +00002172 Formula F;
Dan Gohmandc0e8fb2010-11-17 21:41:58 +00002173 F.InitialMatch(S, L, SE);
Dan Gohman572645c2010-02-12 10:34:29 +00002174 bool Inserted = InsertFormula(LU, LUIdx, F);
2175 assert(Inserted && "Initial formula already exists!"); (void)Inserted;
2176}
2177
Dan Gohman76c315a2010-05-20 20:52:00 +00002178/// InsertSupplementalFormula - Insert a simple single-register formula for
2179/// the given expression into the given use.
Dan Gohman572645c2010-02-12 10:34:29 +00002180void
2181LSRInstance::InsertSupplementalFormula(const SCEV *S,
2182 LSRUse &LU, size_t LUIdx) {
2183 Formula F;
2184 F.BaseRegs.push_back(S);
2185 F.AM.HasBaseReg = true;
2186 bool Inserted = InsertFormula(LU, LUIdx, F);
2187 assert(Inserted && "Supplemental formula already exists!"); (void)Inserted;
2188}
2189
2190/// CountRegisters - Note which registers are used by the given formula,
2191/// updating RegUses.
2192void LSRInstance::CountRegisters(const Formula &F, size_t LUIdx) {
2193 if (F.ScaledReg)
2194 RegUses.CountRegister(F.ScaledReg, LUIdx);
2195 for (SmallVectorImpl<const SCEV *>::const_iterator I = F.BaseRegs.begin(),
2196 E = F.BaseRegs.end(); I != E; ++I)
2197 RegUses.CountRegister(*I, LUIdx);
2198}
2199
2200/// InsertFormula - If the given formula has not yet been inserted, add it to
2201/// the list, and return true. Return false otherwise.
2202bool LSRInstance::InsertFormula(LSRUse &LU, unsigned LUIdx, const Formula &F) {
Dan Gohman454d26d2010-02-22 04:11:59 +00002203 if (!LU.InsertFormula(F))
Dan Gohman572645c2010-02-12 10:34:29 +00002204 return false;
2205
2206 CountRegisters(F, LUIdx);
2207 return true;
2208}
2209
2210/// CollectLoopInvariantFixupsAndFormulae - Check for other uses of
2211/// loop-invariant values which we're tracking. These other uses will pin these
2212/// values in registers, making them less profitable for elimination.
2213/// TODO: This currently misses non-constant addrec step registers.
2214/// TODO: Should this give more weight to users inside the loop?
2215void
2216LSRInstance::CollectLoopInvariantFixupsAndFormulae() {
2217 SmallVector<const SCEV *, 8> Worklist(RegUses.begin(), RegUses.end());
2218 SmallPtrSet<const SCEV *, 8> Inserted;
2219
2220 while (!Worklist.empty()) {
2221 const SCEV *S = Worklist.pop_back_val();
2222
2223 if (const SCEVNAryExpr *N = dyn_cast<SCEVNAryExpr>(S))
Dan Gohman403a8cd2010-06-21 19:47:52 +00002224 Worklist.append(N->op_begin(), N->op_end());
Dan Gohman572645c2010-02-12 10:34:29 +00002225 else if (const SCEVCastExpr *C = dyn_cast<SCEVCastExpr>(S))
2226 Worklist.push_back(C->getOperand());
2227 else if (const SCEVUDivExpr *D = dyn_cast<SCEVUDivExpr>(S)) {
2228 Worklist.push_back(D->getLHS());
2229 Worklist.push_back(D->getRHS());
2230 } else if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(S)) {
2231 if (!Inserted.insert(U)) continue;
2232 const Value *V = U->getValue();
Dan Gohmana15ec5d2010-06-04 23:16:05 +00002233 if (const Instruction *Inst = dyn_cast<Instruction>(V)) {
2234 // Look for instructions defined outside the loop.
Dan Gohman572645c2010-02-12 10:34:29 +00002235 if (L->contains(Inst)) continue;
Dan Gohmana15ec5d2010-06-04 23:16:05 +00002236 } else if (isa<UndefValue>(V))
2237 // Undef doesn't have a live range, so it doesn't matter.
2238 continue;
Gabor Greif60ad7812010-03-25 23:06:16 +00002239 for (Value::const_use_iterator UI = V->use_begin(), UE = V->use_end();
Dan Gohman572645c2010-02-12 10:34:29 +00002240 UI != UE; ++UI) {
2241 const Instruction *UserInst = dyn_cast<Instruction>(*UI);
2242 // Ignore non-instructions.
2243 if (!UserInst)
Dan Gohman7979b722010-01-22 00:46:49 +00002244 continue;
Dan Gohman572645c2010-02-12 10:34:29 +00002245 // Ignore instructions in other functions (as can happen with
2246 // Constants).
2247 if (UserInst->getParent()->getParent() != L->getHeader()->getParent())
Dan Gohman7979b722010-01-22 00:46:49 +00002248 continue;
Dan Gohman572645c2010-02-12 10:34:29 +00002249 // Ignore instructions not dominated by the loop.
2250 const BasicBlock *UseBB = !isa<PHINode>(UserInst) ?
2251 UserInst->getParent() :
2252 cast<PHINode>(UserInst)->getIncomingBlock(
2253 PHINode::getIncomingValueNumForOperand(UI.getOperandNo()));
2254 if (!DT.dominates(L->getHeader(), UseBB))
2255 continue;
2256 // Ignore uses which are part of other SCEV expressions, to avoid
2257 // analyzing them multiple times.
Dan Gohman4a2a6832010-04-09 19:12:34 +00002258 if (SE.isSCEVable(UserInst->getType())) {
2259 const SCEV *UserS = SE.getSCEV(const_cast<Instruction *>(UserInst));
2260 // If the user is a no-op, look through to its uses.
2261 if (!isa<SCEVUnknown>(UserS))
2262 continue;
2263 if (UserS == U) {
2264 Worklist.push_back(
2265 SE.getUnknown(const_cast<Instruction *>(UserInst)));
2266 continue;
2267 }
2268 }
Dan Gohman572645c2010-02-12 10:34:29 +00002269 // Ignore icmp instructions which are already being analyzed.
2270 if (const ICmpInst *ICI = dyn_cast<ICmpInst>(UserInst)) {
2271 unsigned OtherIdx = !UI.getOperandNo();
2272 Value *OtherOp = const_cast<Value *>(ICI->getOperand(OtherIdx));
Dan Gohman17ead4f2010-11-17 21:23:15 +00002273 if (SE.hasComputableLoopEvolution(SE.getSCEV(OtherOp), L))
Dan Gohman572645c2010-02-12 10:34:29 +00002274 continue;
2275 }
2276
2277 LSRFixup &LF = getNewFixup();
2278 LF.UserInst = const_cast<Instruction *>(UserInst);
2279 LF.OperandValToReplace = UI.getUse();
2280 std::pair<size_t, int64_t> P = getUse(S, LSRUse::Basic, 0);
2281 LF.LUIdx = P.first;
2282 LF.Offset = P.second;
2283 LSRUse &LU = Uses[LF.LUIdx];
Dan Gohman448db1c2010-04-07 22:27:08 +00002284 LU.AllFixupsOutsideLoop &= LF.isUseFullyOutsideLoop(L);
Dan Gohmana9db1292010-07-15 20:24:58 +00002285 if (!LU.WidestFixupType ||
2286 SE.getTypeSizeInBits(LU.WidestFixupType) <
2287 SE.getTypeSizeInBits(LF.OperandValToReplace->getType()))
2288 LU.WidestFixupType = LF.OperandValToReplace->getType();
Dan Gohman572645c2010-02-12 10:34:29 +00002289 InsertSupplementalFormula(U, LU, LF.LUIdx);
2290 CountRegisters(LU.Formulae.back(), Uses.size() - 1);
2291 break;
2292 }
2293 }
2294 }
2295}
2296
2297/// CollectSubexprs - Split S into subexpressions which can be pulled out into
2298/// separate registers. If C is non-null, multiply each subexpression by C.
2299static void CollectSubexprs(const SCEV *S, const SCEVConstant *C,
2300 SmallVectorImpl<const SCEV *> &Ops,
Dan Gohman3e3f15b2010-06-25 22:32:18 +00002301 const Loop *L,
Dan Gohman572645c2010-02-12 10:34:29 +00002302 ScalarEvolution &SE) {
2303 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
2304 // Break out add operands.
2305 for (SCEVAddExpr::op_iterator I = Add->op_begin(), E = Add->op_end();
2306 I != E; ++I)
Dan Gohman3e22b7c2010-08-16 15:50:00 +00002307 CollectSubexprs(*I, C, Ops, L, SE);
Dan Gohman572645c2010-02-12 10:34:29 +00002308 return;
2309 } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
2310 // Split a non-zero base out of an addrec.
2311 if (!AR->getStart()->isZero()) {
Dan Gohmandeff6212010-05-03 22:09:21 +00002312 CollectSubexprs(SE.getAddRecExpr(SE.getConstant(AR->getType(), 0),
Dan Gohman572645c2010-02-12 10:34:29 +00002313 AR->getStepRecurrence(SE),
Andrew Trick3228cc22011-03-14 16:50:06 +00002314 AR->getLoop(),
2315 //FIXME: AR->getNoWrapFlags(SCEV::FlagNW)
2316 SCEV::FlagAnyWrap),
Dan Gohman3e22b7c2010-08-16 15:50:00 +00002317 C, Ops, L, SE);
2318 CollectSubexprs(AR->getStart(), C, Ops, L, SE);
Dan Gohman572645c2010-02-12 10:34:29 +00002319 return;
2320 }
2321 } else if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S)) {
2322 // Break (C * (a + b + c)) into C*a + C*b + C*c.
2323 if (Mul->getNumOperands() == 2)
2324 if (const SCEVConstant *Op0 =
2325 dyn_cast<SCEVConstant>(Mul->getOperand(0))) {
2326 CollectSubexprs(Mul->getOperand(1),
2327 C ? cast<SCEVConstant>(SE.getMulExpr(C, Op0)) : Op0,
Dan Gohman3e22b7c2010-08-16 15:50:00 +00002328 Ops, L, SE);
Dan Gohman572645c2010-02-12 10:34:29 +00002329 return;
2330 }
2331 }
2332
Dan Gohman3e22b7c2010-08-16 15:50:00 +00002333 // Otherwise use the value itself, optionally with a scale applied.
2334 Ops.push_back(C ? SE.getMulExpr(C, S) : S);
Dan Gohman572645c2010-02-12 10:34:29 +00002335}
2336
2337/// GenerateReassociations - Split out subexpressions from adds and the bases of
2338/// addrecs.
2339void LSRInstance::GenerateReassociations(LSRUse &LU, unsigned LUIdx,
2340 Formula Base,
2341 unsigned Depth) {
2342 // Arbitrarily cap recursion to protect compile time.
2343 if (Depth >= 3) return;
2344
2345 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i) {
2346 const SCEV *BaseReg = Base.BaseRegs[i];
2347
Dan Gohman3e22b7c2010-08-16 15:50:00 +00002348 SmallVector<const SCEV *, 8> AddOps;
2349 CollectSubexprs(BaseReg, 0, AddOps, L, SE);
Dan Gohman3e3f15b2010-06-25 22:32:18 +00002350
Dan Gohman572645c2010-02-12 10:34:29 +00002351 if (AddOps.size() == 1) continue;
2352
2353 for (SmallVectorImpl<const SCEV *>::const_iterator J = AddOps.begin(),
2354 JE = AddOps.end(); J != JE; ++J) {
Dan Gohman3e22b7c2010-08-16 15:50:00 +00002355
2356 // Loop-variant "unknown" values are uninteresting; we won't be able to
2357 // do anything meaningful with them.
Dan Gohman17ead4f2010-11-17 21:23:15 +00002358 if (isa<SCEVUnknown>(*J) && !SE.isLoopInvariant(*J, L))
Dan Gohman3e22b7c2010-08-16 15:50:00 +00002359 continue;
2360
Dan Gohman572645c2010-02-12 10:34:29 +00002361 // Don't pull a constant into a register if the constant could be folded
2362 // into an immediate field.
2363 if (isAlwaysFoldable(*J, LU.MinOffset, LU.MaxOffset,
2364 Base.getNumRegs() > 1,
2365 LU.Kind, LU.AccessTy, TLI, SE))
2366 continue;
2367
2368 // Collect all operands except *J.
Dan Gohman403a8cd2010-06-21 19:47:52 +00002369 SmallVector<const SCEV *, 8> InnerAddOps
Dan Gohman4eaee282010-08-04 17:43:57 +00002370 (((const SmallVector<const SCEV *, 8> &)AddOps).begin(), J);
Dan Gohman403a8cd2010-06-21 19:47:52 +00002371 InnerAddOps.append
Oscar Fuentesee56c422010-08-02 06:00:15 +00002372 (llvm::next(J), ((const SmallVector<const SCEV *, 8> &)AddOps).end());
Dan Gohman572645c2010-02-12 10:34:29 +00002373
2374 // Don't leave just a constant behind in a register if the constant could
2375 // be folded into an immediate field.
2376 if (InnerAddOps.size() == 1 &&
2377 isAlwaysFoldable(InnerAddOps[0], LU.MinOffset, LU.MaxOffset,
2378 Base.getNumRegs() > 1,
2379 LU.Kind, LU.AccessTy, TLI, SE))
2380 continue;
2381
Dan Gohmanfafb8902010-04-23 01:55:05 +00002382 const SCEV *InnerSum = SE.getAddExpr(InnerAddOps);
2383 if (InnerSum->isZero())
2384 continue;
Dan Gohman572645c2010-02-12 10:34:29 +00002385 Formula F = Base;
Dan Gohmancca82142011-05-03 00:46:49 +00002386
2387 // Add the remaining pieces of the add back into the new formula.
2388 const SCEVConstant *InnerSumSC = dyn_cast<SCEVConstant>(InnerSum);
2389 if (TLI && InnerSumSC &&
2390 SE.getTypeSizeInBits(InnerSumSC->getType()) <= 64 &&
2391 TLI->isLegalAddImmediate((uint64_t)F.UnfoldedOffset +
2392 InnerSumSC->getValue()->getZExtValue())) {
2393 F.UnfoldedOffset = (uint64_t)F.UnfoldedOffset +
2394 InnerSumSC->getValue()->getZExtValue();
2395 F.BaseRegs.erase(F.BaseRegs.begin() + i);
2396 } else
2397 F.BaseRegs[i] = InnerSum;
2398
2399 // Add J as its own register, or an unfolded immediate.
2400 const SCEVConstant *SC = dyn_cast<SCEVConstant>(*J);
2401 if (TLI && SC && SE.getTypeSizeInBits(SC->getType()) <= 64 &&
2402 TLI->isLegalAddImmediate((uint64_t)F.UnfoldedOffset +
2403 SC->getValue()->getZExtValue()))
2404 F.UnfoldedOffset = (uint64_t)F.UnfoldedOffset +
2405 SC->getValue()->getZExtValue();
2406 else
2407 F.BaseRegs.push_back(*J);
2408
Dan Gohman572645c2010-02-12 10:34:29 +00002409 if (InsertFormula(LU, LUIdx, F))
2410 // If that formula hadn't been seen before, recurse to find more like
2411 // it.
2412 GenerateReassociations(LU, LUIdx, LU.Formulae.back(), Depth+1);
2413 }
2414 }
2415}
2416
2417/// GenerateCombinations - Generate a formula consisting of all of the
2418/// loop-dominating registers added into a single register.
2419void LSRInstance::GenerateCombinations(LSRUse &LU, unsigned LUIdx,
Dan Gohman441a3892010-02-14 18:51:39 +00002420 Formula Base) {
Dan Gohman3f46a3a2010-03-01 17:49:51 +00002421 // This method is only interesting on a plurality of registers.
Dan Gohman572645c2010-02-12 10:34:29 +00002422 if (Base.BaseRegs.size() <= 1) return;
2423
2424 Formula F = Base;
2425 F.BaseRegs.clear();
2426 SmallVector<const SCEV *, 4> Ops;
2427 for (SmallVectorImpl<const SCEV *>::const_iterator
2428 I = Base.BaseRegs.begin(), E = Base.BaseRegs.end(); I != E; ++I) {
2429 const SCEV *BaseReg = *I;
Dan Gohmandc0e8fb2010-11-17 21:41:58 +00002430 if (SE.properlyDominates(BaseReg, L->getHeader()) &&
Dan Gohman17ead4f2010-11-17 21:23:15 +00002431 !SE.hasComputableLoopEvolution(BaseReg, L))
Dan Gohman572645c2010-02-12 10:34:29 +00002432 Ops.push_back(BaseReg);
2433 else
2434 F.BaseRegs.push_back(BaseReg);
2435 }
2436 if (Ops.size() > 1) {
Dan Gohmance947362010-02-14 18:50:49 +00002437 const SCEV *Sum = SE.getAddExpr(Ops);
2438 // TODO: If Sum is zero, it probably means ScalarEvolution missed an
2439 // opportunity to fold something. For now, just ignore such cases
Dan Gohman3f46a3a2010-03-01 17:49:51 +00002440 // rather than proceed with zero in a register.
Dan Gohmance947362010-02-14 18:50:49 +00002441 if (!Sum->isZero()) {
2442 F.BaseRegs.push_back(Sum);
2443 (void)InsertFormula(LU, LUIdx, F);
2444 }
Dan Gohman572645c2010-02-12 10:34:29 +00002445 }
2446}
2447
2448/// GenerateSymbolicOffsets - Generate reuse formulae using symbolic offsets.
2449void LSRInstance::GenerateSymbolicOffsets(LSRUse &LU, unsigned LUIdx,
2450 Formula Base) {
2451 // We can't add a symbolic offset if the address already contains one.
2452 if (Base.AM.BaseGV) return;
2453
2454 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i) {
2455 const SCEV *G = Base.BaseRegs[i];
2456 GlobalValue *GV = ExtractSymbol(G, SE);
2457 if (G->isZero() || !GV)
2458 continue;
2459 Formula F = Base;
2460 F.AM.BaseGV = GV;
2461 if (!isLegalUse(F.AM, LU.MinOffset, LU.MaxOffset,
2462 LU.Kind, LU.AccessTy, TLI))
2463 continue;
2464 F.BaseRegs[i] = G;
2465 (void)InsertFormula(LU, LUIdx, F);
2466 }
2467}
2468
2469/// GenerateConstantOffsets - Generate reuse formulae using symbolic offsets.
2470void LSRInstance::GenerateConstantOffsets(LSRUse &LU, unsigned LUIdx,
2471 Formula Base) {
2472 // TODO: For now, just add the min and max offset, because it usually isn't
2473 // worthwhile looking at everything inbetween.
Dan Gohmanc88c1a42010-07-15 15:14:45 +00002474 SmallVector<int64_t, 2> Worklist;
Dan Gohman572645c2010-02-12 10:34:29 +00002475 Worklist.push_back(LU.MinOffset);
2476 if (LU.MaxOffset != LU.MinOffset)
2477 Worklist.push_back(LU.MaxOffset);
2478
2479 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i) {
2480 const SCEV *G = Base.BaseRegs[i];
2481
2482 for (SmallVectorImpl<int64_t>::const_iterator I = Worklist.begin(),
2483 E = Worklist.end(); I != E; ++I) {
2484 Formula F = Base;
2485 F.AM.BaseOffs = (uint64_t)Base.AM.BaseOffs - *I;
2486 if (isLegalUse(F.AM, LU.MinOffset - *I, LU.MaxOffset - *I,
2487 LU.Kind, LU.AccessTy, TLI)) {
Dan Gohmanc88c1a42010-07-15 15:14:45 +00002488 // Add the offset to the base register.
Dan Gohman4065f602010-08-16 15:39:27 +00002489 const SCEV *NewG = SE.getAddExpr(SE.getConstant(G->getType(), *I), G);
Dan Gohmanc88c1a42010-07-15 15:14:45 +00002490 // If it cancelled out, drop the base register, otherwise update it.
2491 if (NewG->isZero()) {
2492 std::swap(F.BaseRegs[i], F.BaseRegs.back());
2493 F.BaseRegs.pop_back();
2494 } else
2495 F.BaseRegs[i] = NewG;
Dan Gohman572645c2010-02-12 10:34:29 +00002496
2497 (void)InsertFormula(LU, LUIdx, F);
2498 }
2499 }
2500
2501 int64_t Imm = ExtractImmediate(G, SE);
2502 if (G->isZero() || Imm == 0)
2503 continue;
2504 Formula F = Base;
2505 F.AM.BaseOffs = (uint64_t)F.AM.BaseOffs + Imm;
2506 if (!isLegalUse(F.AM, LU.MinOffset, LU.MaxOffset,
2507 LU.Kind, LU.AccessTy, TLI))
2508 continue;
2509 F.BaseRegs[i] = G;
2510 (void)InsertFormula(LU, LUIdx, F);
2511 }
2512}
2513
2514/// GenerateICmpZeroScales - For ICmpZero, check to see if we can scale up
2515/// the comparison. For example, x == y -> x*c == y*c.
2516void LSRInstance::GenerateICmpZeroScales(LSRUse &LU, unsigned LUIdx,
2517 Formula Base) {
2518 if (LU.Kind != LSRUse::ICmpZero) return;
2519
2520 // Determine the integer type for the base formula.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002521 Type *IntTy = Base.getType();
Dan Gohman572645c2010-02-12 10:34:29 +00002522 if (!IntTy) return;
2523 if (SE.getTypeSizeInBits(IntTy) > 64) return;
2524
2525 // Don't do this if there is more than one offset.
2526 if (LU.MinOffset != LU.MaxOffset) return;
2527
2528 assert(!Base.AM.BaseGV && "ICmpZero use is not legal!");
2529
2530 // Check each interesting stride.
2531 for (SmallSetVector<int64_t, 8>::const_iterator
2532 I = Factors.begin(), E = Factors.end(); I != E; ++I) {
2533 int64_t Factor = *I;
Dan Gohman572645c2010-02-12 10:34:29 +00002534
2535 // Check that the multiplication doesn't overflow.
Dan Gohman2ea09e02010-06-24 16:57:52 +00002536 if (Base.AM.BaseOffs == INT64_MIN && Factor == -1)
Dan Gohman968cb932010-02-17 00:41:53 +00002537 continue;
Dan Gohman2ea09e02010-06-24 16:57:52 +00002538 int64_t NewBaseOffs = (uint64_t)Base.AM.BaseOffs * Factor;
2539 if (NewBaseOffs / Factor != Base.AM.BaseOffs)
Dan Gohman572645c2010-02-12 10:34:29 +00002540 continue;
2541
2542 // Check that multiplying with the use offset doesn't overflow.
2543 int64_t Offset = LU.MinOffset;
Dan Gohman968cb932010-02-17 00:41:53 +00002544 if (Offset == INT64_MIN && Factor == -1)
2545 continue;
Dan Gohman572645c2010-02-12 10:34:29 +00002546 Offset = (uint64_t)Offset * Factor;
Dan Gohman378c0b32010-02-17 00:42:19 +00002547 if (Offset / Factor != LU.MinOffset)
Dan Gohman572645c2010-02-12 10:34:29 +00002548 continue;
2549
Dan Gohman2ea09e02010-06-24 16:57:52 +00002550 Formula F = Base;
2551 F.AM.BaseOffs = NewBaseOffs;
2552
Dan Gohman572645c2010-02-12 10:34:29 +00002553 // Check that this scale is legal.
2554 if (!isLegalUse(F.AM, Offset, Offset, LU.Kind, LU.AccessTy, TLI))
2555 continue;
2556
2557 // Compensate for the use having MinOffset built into it.
2558 F.AM.BaseOffs = (uint64_t)F.AM.BaseOffs + Offset - LU.MinOffset;
2559
Dan Gohmandeff6212010-05-03 22:09:21 +00002560 const SCEV *FactorS = SE.getConstant(IntTy, Factor);
Dan Gohman572645c2010-02-12 10:34:29 +00002561
2562 // Check that multiplying with each base register doesn't overflow.
2563 for (size_t i = 0, e = F.BaseRegs.size(); i != e; ++i) {
2564 F.BaseRegs[i] = SE.getMulExpr(F.BaseRegs[i], FactorS);
Dan Gohmanf09b7122010-02-19 19:35:48 +00002565 if (getExactSDiv(F.BaseRegs[i], FactorS, SE) != Base.BaseRegs[i])
Dan Gohman572645c2010-02-12 10:34:29 +00002566 goto next;
2567 }
2568
2569 // Check that multiplying with the scaled register doesn't overflow.
2570 if (F.ScaledReg) {
2571 F.ScaledReg = SE.getMulExpr(F.ScaledReg, FactorS);
Dan Gohmanf09b7122010-02-19 19:35:48 +00002572 if (getExactSDiv(F.ScaledReg, FactorS, SE) != Base.ScaledReg)
Dan Gohman572645c2010-02-12 10:34:29 +00002573 continue;
2574 }
2575
Dan Gohmancca82142011-05-03 00:46:49 +00002576 // Check that multiplying with the unfolded offset doesn't overflow.
2577 if (F.UnfoldedOffset != 0) {
Dan Gohman1b58d452011-05-23 21:07:39 +00002578 if (F.UnfoldedOffset == INT64_MIN && Factor == -1)
2579 continue;
Dan Gohmancca82142011-05-03 00:46:49 +00002580 F.UnfoldedOffset = (uint64_t)F.UnfoldedOffset * Factor;
2581 if (F.UnfoldedOffset / Factor != Base.UnfoldedOffset)
2582 continue;
2583 }
2584
Dan Gohman572645c2010-02-12 10:34:29 +00002585 // If we make it here and it's legal, add it.
2586 (void)InsertFormula(LU, LUIdx, F);
2587 next:;
2588 }
2589}
2590
2591/// GenerateScales - Generate stride factor reuse formulae by making use of
2592/// scaled-offset address modes, for example.
Dan Gohmanea507f52010-05-20 19:44:23 +00002593void LSRInstance::GenerateScales(LSRUse &LU, unsigned LUIdx, Formula Base) {
Dan Gohman572645c2010-02-12 10:34:29 +00002594 // Determine the integer type for the base formula.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002595 Type *IntTy = Base.getType();
Dan Gohman572645c2010-02-12 10:34:29 +00002596 if (!IntTy) return;
2597
2598 // If this Formula already has a scaled register, we can't add another one.
2599 if (Base.AM.Scale != 0) return;
2600
2601 // Check each interesting stride.
2602 for (SmallSetVector<int64_t, 8>::const_iterator
2603 I = Factors.begin(), E = Factors.end(); I != E; ++I) {
2604 int64_t Factor = *I;
2605
2606 Base.AM.Scale = Factor;
2607 Base.AM.HasBaseReg = Base.BaseRegs.size() > 1;
2608 // Check whether this scale is going to be legal.
2609 if (!isLegalUse(Base.AM, LU.MinOffset, LU.MaxOffset,
2610 LU.Kind, LU.AccessTy, TLI)) {
2611 // As a special-case, handle special out-of-loop Basic users specially.
2612 // TODO: Reconsider this special case.
2613 if (LU.Kind == LSRUse::Basic &&
2614 isLegalUse(Base.AM, LU.MinOffset, LU.MaxOffset,
2615 LSRUse::Special, LU.AccessTy, TLI) &&
2616 LU.AllFixupsOutsideLoop)
2617 LU.Kind = LSRUse::Special;
2618 else
2619 continue;
2620 }
2621 // For an ICmpZero, negating a solitary base register won't lead to
2622 // new solutions.
2623 if (LU.Kind == LSRUse::ICmpZero &&
2624 !Base.AM.HasBaseReg && Base.AM.BaseOffs == 0 && !Base.AM.BaseGV)
2625 continue;
2626 // For each addrec base reg, apply the scale, if possible.
2627 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i)
2628 if (const SCEVAddRecExpr *AR =
2629 dyn_cast<SCEVAddRecExpr>(Base.BaseRegs[i])) {
Dan Gohmandeff6212010-05-03 22:09:21 +00002630 const SCEV *FactorS = SE.getConstant(IntTy, Factor);
Dan Gohman572645c2010-02-12 10:34:29 +00002631 if (FactorS->isZero())
2632 continue;
2633 // Divide out the factor, ignoring high bits, since we'll be
2634 // scaling the value back up in the end.
Dan Gohmanf09b7122010-02-19 19:35:48 +00002635 if (const SCEV *Quotient = getExactSDiv(AR, FactorS, SE, true)) {
Dan Gohman572645c2010-02-12 10:34:29 +00002636 // TODO: This could be optimized to avoid all the copying.
2637 Formula F = Base;
2638 F.ScaledReg = Quotient;
Dan Gohman5ce6d052010-05-20 15:17:54 +00002639 F.DeleteBaseReg(F.BaseRegs[i]);
Dan Gohman572645c2010-02-12 10:34:29 +00002640 (void)InsertFormula(LU, LUIdx, F);
2641 }
2642 }
2643 }
2644}
2645
2646/// GenerateTruncates - Generate reuse formulae from different IV types.
Dan Gohmanea507f52010-05-20 19:44:23 +00002647void LSRInstance::GenerateTruncates(LSRUse &LU, unsigned LUIdx, Formula Base) {
Dan Gohman572645c2010-02-12 10:34:29 +00002648 // This requires TargetLowering to tell us which truncates are free.
2649 if (!TLI) return;
2650
2651 // Don't bother truncating symbolic values.
2652 if (Base.AM.BaseGV) return;
2653
2654 // Determine the integer type for the base formula.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002655 Type *DstTy = Base.getType();
Dan Gohman572645c2010-02-12 10:34:29 +00002656 if (!DstTy) return;
2657 DstTy = SE.getEffectiveSCEVType(DstTy);
2658
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002659 for (SmallSetVector<Type *, 4>::const_iterator
Dan Gohman572645c2010-02-12 10:34:29 +00002660 I = Types.begin(), E = Types.end(); I != E; ++I) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002661 Type *SrcTy = *I;
Dan Gohman572645c2010-02-12 10:34:29 +00002662 if (SrcTy != DstTy && TLI->isTruncateFree(SrcTy, DstTy)) {
2663 Formula F = Base;
2664
2665 if (F.ScaledReg) F.ScaledReg = SE.getAnyExtendExpr(F.ScaledReg, *I);
2666 for (SmallVectorImpl<const SCEV *>::iterator J = F.BaseRegs.begin(),
2667 JE = F.BaseRegs.end(); J != JE; ++J)
2668 *J = SE.getAnyExtendExpr(*J, SrcTy);
2669
2670 // TODO: This assumes we've done basic processing on all uses and
2671 // have an idea what the register usage is.
2672 if (!F.hasRegsUsedByUsesOtherThan(LUIdx, RegUses))
2673 continue;
2674
2675 (void)InsertFormula(LU, LUIdx, F);
2676 }
2677 }
2678}
2679
2680namespace {
2681
Dan Gohman6020d852010-02-14 18:51:20 +00002682/// WorkItem - Helper class for GenerateCrossUseConstantOffsets. It's used to
Dan Gohman572645c2010-02-12 10:34:29 +00002683/// defer modifications so that the search phase doesn't have to worry about
2684/// the data structures moving underneath it.
2685struct WorkItem {
2686 size_t LUIdx;
2687 int64_t Imm;
2688 const SCEV *OrigReg;
2689
2690 WorkItem(size_t LI, int64_t I, const SCEV *R)
2691 : LUIdx(LI), Imm(I), OrigReg(R) {}
2692
2693 void print(raw_ostream &OS) const;
2694 void dump() const;
2695};
2696
2697}
2698
2699void WorkItem::print(raw_ostream &OS) const {
2700 OS << "in formulae referencing " << *OrigReg << " in use " << LUIdx
2701 << " , add offset " << Imm;
2702}
2703
2704void WorkItem::dump() const {
2705 print(errs()); errs() << '\n';
2706}
2707
2708/// GenerateCrossUseConstantOffsets - Look for registers which are a constant
2709/// distance apart and try to form reuse opportunities between them.
2710void LSRInstance::GenerateCrossUseConstantOffsets() {
2711 // Group the registers by their value without any added constant offset.
2712 typedef std::map<int64_t, const SCEV *> ImmMapTy;
2713 typedef DenseMap<const SCEV *, ImmMapTy> RegMapTy;
2714 RegMapTy Map;
2715 DenseMap<const SCEV *, SmallBitVector> UsedByIndicesMap;
2716 SmallVector<const SCEV *, 8> Sequence;
2717 for (RegUseTracker::const_iterator I = RegUses.begin(), E = RegUses.end();
2718 I != E; ++I) {
2719 const SCEV *Reg = *I;
2720 int64_t Imm = ExtractImmediate(Reg, SE);
2721 std::pair<RegMapTy::iterator, bool> Pair =
2722 Map.insert(std::make_pair(Reg, ImmMapTy()));
2723 if (Pair.second)
2724 Sequence.push_back(Reg);
2725 Pair.first->second.insert(std::make_pair(Imm, *I));
2726 UsedByIndicesMap[Reg] |= RegUses.getUsedByIndices(*I);
2727 }
2728
2729 // Now examine each set of registers with the same base value. Build up
2730 // a list of work to do and do the work in a separate step so that we're
2731 // not adding formulae and register counts while we're searching.
Dan Gohman191bd642010-09-01 01:45:53 +00002732 SmallVector<WorkItem, 32> WorkItems;
2733 SmallSet<std::pair<size_t, int64_t>, 32> UniqueItems;
Dan Gohman572645c2010-02-12 10:34:29 +00002734 for (SmallVectorImpl<const SCEV *>::const_iterator I = Sequence.begin(),
2735 E = Sequence.end(); I != E; ++I) {
2736 const SCEV *Reg = *I;
2737 const ImmMapTy &Imms = Map.find(Reg)->second;
2738
Dan Gohmancd045c02010-02-12 19:20:37 +00002739 // It's not worthwhile looking for reuse if there's only one offset.
2740 if (Imms.size() == 1)
2741 continue;
2742
Dan Gohman572645c2010-02-12 10:34:29 +00002743 DEBUG(dbgs() << "Generating cross-use offsets for " << *Reg << ':';
2744 for (ImmMapTy::const_iterator J = Imms.begin(), JE = Imms.end();
2745 J != JE; ++J)
2746 dbgs() << ' ' << J->first;
2747 dbgs() << '\n');
2748
2749 // Examine each offset.
2750 for (ImmMapTy::const_iterator J = Imms.begin(), JE = Imms.end();
2751 J != JE; ++J) {
2752 const SCEV *OrigReg = J->second;
2753
2754 int64_t JImm = J->first;
2755 const SmallBitVector &UsedByIndices = RegUses.getUsedByIndices(OrigReg);
2756
2757 if (!isa<SCEVConstant>(OrigReg) &&
2758 UsedByIndicesMap[Reg].count() == 1) {
2759 DEBUG(dbgs() << "Skipping cross-use reuse for " << *OrigReg << '\n');
2760 continue;
2761 }
2762
2763 // Conservatively examine offsets between this orig reg a few selected
2764 // other orig regs.
2765 ImmMapTy::const_iterator OtherImms[] = {
2766 Imms.begin(), prior(Imms.end()),
Dan Gohmancca82142011-05-03 00:46:49 +00002767 Imms.lower_bound((Imms.begin()->first + prior(Imms.end())->first) / 2)
Dan Gohman572645c2010-02-12 10:34:29 +00002768 };
2769 for (size_t i = 0, e = array_lengthof(OtherImms); i != e; ++i) {
2770 ImmMapTy::const_iterator M = OtherImms[i];
Dan Gohmancd045c02010-02-12 19:20:37 +00002771 if (M == J || M == JE) continue;
Dan Gohman572645c2010-02-12 10:34:29 +00002772
2773 // Compute the difference between the two.
2774 int64_t Imm = (uint64_t)JImm - M->first;
2775 for (int LUIdx = UsedByIndices.find_first(); LUIdx != -1;
Dan Gohman191bd642010-09-01 01:45:53 +00002776 LUIdx = UsedByIndices.find_next(LUIdx))
Dan Gohman572645c2010-02-12 10:34:29 +00002777 // Make a memo of this use, offset, and register tuple.
Dan Gohman191bd642010-09-01 01:45:53 +00002778 if (UniqueItems.insert(std::make_pair(LUIdx, Imm)))
2779 WorkItems.push_back(WorkItem(LUIdx, Imm, OrigReg));
Evan Cheng586f69a2009-11-12 07:35:05 +00002780 }
2781 }
2782 }
2783
Dan Gohman572645c2010-02-12 10:34:29 +00002784 Map.clear();
2785 Sequence.clear();
2786 UsedByIndicesMap.clear();
Dan Gohman191bd642010-09-01 01:45:53 +00002787 UniqueItems.clear();
Dan Gohman572645c2010-02-12 10:34:29 +00002788
2789 // Now iterate through the worklist and add new formulae.
2790 for (SmallVectorImpl<WorkItem>::const_iterator I = WorkItems.begin(),
2791 E = WorkItems.end(); I != E; ++I) {
2792 const WorkItem &WI = *I;
2793 size_t LUIdx = WI.LUIdx;
2794 LSRUse &LU = Uses[LUIdx];
2795 int64_t Imm = WI.Imm;
2796 const SCEV *OrigReg = WI.OrigReg;
2797
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002798 Type *IntTy = SE.getEffectiveSCEVType(OrigReg->getType());
Dan Gohman572645c2010-02-12 10:34:29 +00002799 const SCEV *NegImmS = SE.getSCEV(ConstantInt::get(IntTy, -(uint64_t)Imm));
2800 unsigned BitWidth = SE.getTypeSizeInBits(IntTy);
2801
Dan Gohman3f46a3a2010-03-01 17:49:51 +00002802 // TODO: Use a more targeted data structure.
Dan Gohman572645c2010-02-12 10:34:29 +00002803 for (size_t L = 0, LE = LU.Formulae.size(); L != LE; ++L) {
Dan Gohman9f383eb2010-05-20 22:25:20 +00002804 const Formula &F = LU.Formulae[L];
Dan Gohman572645c2010-02-12 10:34:29 +00002805 // Use the immediate in the scaled register.
2806 if (F.ScaledReg == OrigReg) {
2807 int64_t Offs = (uint64_t)F.AM.BaseOffs +
2808 Imm * (uint64_t)F.AM.Scale;
2809 // Don't create 50 + reg(-50).
2810 if (F.referencesReg(SE.getSCEV(
2811 ConstantInt::get(IntTy, -(uint64_t)Offs))))
2812 continue;
2813 Formula NewF = F;
2814 NewF.AM.BaseOffs = Offs;
2815 if (!isLegalUse(NewF.AM, LU.MinOffset, LU.MaxOffset,
2816 LU.Kind, LU.AccessTy, TLI))
2817 continue;
2818 NewF.ScaledReg = SE.getAddExpr(NegImmS, NewF.ScaledReg);
2819
2820 // If the new scale is a constant in a register, and adding the constant
2821 // value to the immediate would produce a value closer to zero than the
2822 // immediate itself, then the formula isn't worthwhile.
2823 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(NewF.ScaledReg))
Chris Lattnerc73b24d2011-07-15 06:08:15 +00002824 if (C->getValue()->isNegative() !=
Dan Gohman572645c2010-02-12 10:34:29 +00002825 (NewF.AM.BaseOffs < 0) &&
2826 (C->getValue()->getValue().abs() * APInt(BitWidth, F.AM.Scale))
Dan Gohmane0567812010-04-08 23:03:40 +00002827 .ule(abs64(NewF.AM.BaseOffs)))
Dan Gohman572645c2010-02-12 10:34:29 +00002828 continue;
2829
2830 // OK, looks good.
2831 (void)InsertFormula(LU, LUIdx, NewF);
2832 } else {
2833 // Use the immediate in a base register.
2834 for (size_t N = 0, NE = F.BaseRegs.size(); N != NE; ++N) {
2835 const SCEV *BaseReg = F.BaseRegs[N];
2836 if (BaseReg != OrigReg)
2837 continue;
2838 Formula NewF = F;
2839 NewF.AM.BaseOffs = (uint64_t)NewF.AM.BaseOffs + Imm;
2840 if (!isLegalUse(NewF.AM, LU.MinOffset, LU.MaxOffset,
Dan Gohmancca82142011-05-03 00:46:49 +00002841 LU.Kind, LU.AccessTy, TLI)) {
2842 if (!TLI ||
2843 !TLI->isLegalAddImmediate((uint64_t)NewF.UnfoldedOffset + Imm))
2844 continue;
2845 NewF = F;
2846 NewF.UnfoldedOffset = (uint64_t)NewF.UnfoldedOffset + Imm;
2847 }
Dan Gohman572645c2010-02-12 10:34:29 +00002848 NewF.BaseRegs[N] = SE.getAddExpr(NegImmS, BaseReg);
2849
2850 // If the new formula has a constant in a register, and adding the
2851 // constant value to the immediate would produce a value closer to
2852 // zero than the immediate itself, then the formula isn't worthwhile.
2853 for (SmallVectorImpl<const SCEV *>::const_iterator
2854 J = NewF.BaseRegs.begin(), JE = NewF.BaseRegs.end();
2855 J != JE; ++J)
2856 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(*J))
Dan Gohman360026f2010-05-18 23:48:08 +00002857 if ((C->getValue()->getValue() + NewF.AM.BaseOffs).abs().slt(
2858 abs64(NewF.AM.BaseOffs)) &&
2859 (C->getValue()->getValue() +
2860 NewF.AM.BaseOffs).countTrailingZeros() >=
2861 CountTrailingZeros_64(NewF.AM.BaseOffs))
Dan Gohman572645c2010-02-12 10:34:29 +00002862 goto skip_formula;
2863
2864 // Ok, looks good.
2865 (void)InsertFormula(LU, LUIdx, NewF);
2866 break;
2867 skip_formula:;
2868 }
2869 }
2870 }
2871 }
Dale Johannesenc1acc3f2009-05-11 17:15:42 +00002872}
2873
Dan Gohman572645c2010-02-12 10:34:29 +00002874/// GenerateAllReuseFormulae - Generate formulae for each use.
2875void
2876LSRInstance::GenerateAllReuseFormulae() {
Dan Gohmanc2385a02010-02-16 01:42:53 +00002877 // This is split into multiple loops so that hasRegsUsedByUsesOtherThan
Dan Gohman572645c2010-02-12 10:34:29 +00002878 // queries are more precise.
2879 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
2880 LSRUse &LU = Uses[LUIdx];
2881 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2882 GenerateReassociations(LU, LUIdx, LU.Formulae[i]);
2883 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2884 GenerateCombinations(LU, LUIdx, LU.Formulae[i]);
2885 }
2886 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
2887 LSRUse &LU = Uses[LUIdx];
2888 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2889 GenerateSymbolicOffsets(LU, LUIdx, LU.Formulae[i]);
2890 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2891 GenerateConstantOffsets(LU, LUIdx, LU.Formulae[i]);
2892 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2893 GenerateICmpZeroScales(LU, LUIdx, LU.Formulae[i]);
2894 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2895 GenerateScales(LU, LUIdx, LU.Formulae[i]);
Dan Gohmanc2385a02010-02-16 01:42:53 +00002896 }
2897 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
2898 LSRUse &LU = Uses[LUIdx];
Dan Gohman572645c2010-02-12 10:34:29 +00002899 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2900 GenerateTruncates(LU, LUIdx, LU.Formulae[i]);
2901 }
2902
2903 GenerateCrossUseConstantOffsets();
Dan Gohman3902f9f2010-08-29 15:21:38 +00002904
2905 DEBUG(dbgs() << "\n"
2906 "After generating reuse formulae:\n";
2907 print_uses(dbgs()));
Dan Gohman572645c2010-02-12 10:34:29 +00002908}
2909
Dan Gohmanf63d70f2010-10-07 23:43:09 +00002910/// If there are multiple formulae with the same set of registers used
Dan Gohman572645c2010-02-12 10:34:29 +00002911/// by other uses, pick the best one and delete the others.
2912void LSRInstance::FilterOutUndesirableDedicatedRegisters() {
Dan Gohmanfc7744b2010-10-07 23:52:18 +00002913 DenseSet<const SCEV *> VisitedRegs;
2914 SmallPtrSet<const SCEV *, 16> Regs;
Dan Gohman572645c2010-02-12 10:34:29 +00002915#ifndef NDEBUG
Dan Gohmanc6519f92010-05-20 20:05:31 +00002916 bool ChangedFormulae = false;
Dan Gohman572645c2010-02-12 10:34:29 +00002917#endif
2918
2919 // Collect the best formula for each unique set of shared registers. This
2920 // is reset for each use.
2921 typedef DenseMap<SmallVector<const SCEV *, 2>, size_t, UniquifierDenseMapInfo>
2922 BestFormulaeTy;
2923 BestFormulaeTy BestFormulae;
2924
2925 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
2926 LSRUse &LU = Uses[LUIdx];
Dan Gohmanea507f52010-05-20 19:44:23 +00002927 DEBUG(dbgs() << "Filtering for use "; LU.print(dbgs()); dbgs() << '\n');
Dan Gohman572645c2010-02-12 10:34:29 +00002928
Dan Gohmanb2df4332010-05-18 23:42:37 +00002929 bool Any = false;
Dan Gohman572645c2010-02-12 10:34:29 +00002930 for (size_t FIdx = 0, NumForms = LU.Formulae.size();
2931 FIdx != NumForms; ++FIdx) {
2932 Formula &F = LU.Formulae[FIdx];
2933
2934 SmallVector<const SCEV *, 2> Key;
2935 for (SmallVectorImpl<const SCEV *>::const_iterator J = F.BaseRegs.begin(),
2936 JE = F.BaseRegs.end(); J != JE; ++J) {
2937 const SCEV *Reg = *J;
2938 if (RegUses.isRegUsedByUsesOtherThan(Reg, LUIdx))
2939 Key.push_back(Reg);
2940 }
2941 if (F.ScaledReg &&
2942 RegUses.isRegUsedByUsesOtherThan(F.ScaledReg, LUIdx))
2943 Key.push_back(F.ScaledReg);
2944 // Unstable sort by host order ok, because this is only used for
2945 // uniquifying.
2946 std::sort(Key.begin(), Key.end());
2947
2948 std::pair<BestFormulaeTy::const_iterator, bool> P =
2949 BestFormulae.insert(std::make_pair(Key, FIdx));
2950 if (!P.second) {
2951 Formula &Best = LU.Formulae[P.first->second];
Dan Gohmanfc7744b2010-10-07 23:52:18 +00002952
2953 Cost CostF;
2954 CostF.RateFormula(F, Regs, VisitedRegs, L, LU.Offsets, SE, DT);
2955 Regs.clear();
2956 Cost CostBest;
2957 CostBest.RateFormula(Best, Regs, VisitedRegs, L, LU.Offsets, SE, DT);
2958 Regs.clear();
2959 if (CostF < CostBest)
Dan Gohman572645c2010-02-12 10:34:29 +00002960 std::swap(F, Best);
Dan Gohman6458ff92010-05-18 22:37:37 +00002961 DEBUG(dbgs() << " Filtering out formula "; F.print(dbgs());
Dan Gohman572645c2010-02-12 10:34:29 +00002962 dbgs() << "\n"
Dan Gohman6458ff92010-05-18 22:37:37 +00002963 " in favor of formula "; Best.print(dbgs());
Dan Gohman572645c2010-02-12 10:34:29 +00002964 dbgs() << '\n');
2965#ifndef NDEBUG
Dan Gohmanc6519f92010-05-20 20:05:31 +00002966 ChangedFormulae = true;
Dan Gohman572645c2010-02-12 10:34:29 +00002967#endif
Dan Gohmand69d6282010-05-18 22:39:15 +00002968 LU.DeleteFormula(F);
Dan Gohman572645c2010-02-12 10:34:29 +00002969 --FIdx;
2970 --NumForms;
Dan Gohmanb2df4332010-05-18 23:42:37 +00002971 Any = true;
Dan Gohman572645c2010-02-12 10:34:29 +00002972 continue;
2973 }
Dan Gohman59dc6032010-05-07 23:36:59 +00002974 }
2975
Dan Gohman57aaa0b2010-05-18 23:55:57 +00002976 // Now that we've filtered out some formulae, recompute the Regs set.
Dan Gohmanb2df4332010-05-18 23:42:37 +00002977 if (Any)
2978 LU.RecomputeRegs(LUIdx, RegUses);
Dan Gohman59dc6032010-05-07 23:36:59 +00002979
2980 // Reset this to prepare for the next use.
Dan Gohman572645c2010-02-12 10:34:29 +00002981 BestFormulae.clear();
2982 }
2983
Dan Gohmanc6519f92010-05-20 20:05:31 +00002984 DEBUG(if (ChangedFormulae) {
Dan Gohman9214b822010-02-13 02:06:02 +00002985 dbgs() << "\n"
2986 "After filtering out undesirable candidates:\n";
Dan Gohman572645c2010-02-12 10:34:29 +00002987 print_uses(dbgs());
2988 });
2989}
2990
Dan Gohmand079c302010-05-18 22:51:59 +00002991// This is a rough guess that seems to work fairly well.
2992static const size_t ComplexityLimit = UINT16_MAX;
2993
2994/// EstimateSearchSpaceComplexity - Estimate the worst-case number of
2995/// solutions the solver might have to consider. It almost never considers
2996/// this many solutions because it prune the search space, but the pruning
2997/// isn't always sufficient.
2998size_t LSRInstance::EstimateSearchSpaceComplexity() const {
Dan Gohman0d6715a2010-10-07 23:37:58 +00002999 size_t Power = 1;
Dan Gohmand079c302010-05-18 22:51:59 +00003000 for (SmallVectorImpl<LSRUse>::const_iterator I = Uses.begin(),
3001 E = Uses.end(); I != E; ++I) {
3002 size_t FSize = I->Formulae.size();
3003 if (FSize >= ComplexityLimit) {
3004 Power = ComplexityLimit;
3005 break;
3006 }
3007 Power *= FSize;
3008 if (Power >= ComplexityLimit)
3009 break;
3010 }
3011 return Power;
3012}
3013
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00003014/// NarrowSearchSpaceByDetectingSupersets - When one formula uses a superset
3015/// of the registers of another formula, it won't help reduce register
3016/// pressure (though it may not necessarily hurt register pressure); remove
3017/// it to simplify the system.
3018void LSRInstance::NarrowSearchSpaceByDetectingSupersets() {
Dan Gohmana2086b32010-05-19 23:43:12 +00003019 if (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
3020 DEBUG(dbgs() << "The search space is too complex.\n");
3021
3022 DEBUG(dbgs() << "Narrowing the search space by eliminating formulae "
3023 "which use a superset of registers used by other "
3024 "formulae.\n");
3025
3026 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
3027 LSRUse &LU = Uses[LUIdx];
3028 bool Any = false;
3029 for (size_t i = 0, e = LU.Formulae.size(); i != e; ++i) {
3030 Formula &F = LU.Formulae[i];
Dan Gohmanf7ff37d2010-05-20 20:00:41 +00003031 // Look for a formula with a constant or GV in a register. If the use
3032 // also has a formula with that same value in an immediate field,
3033 // delete the one that uses a register.
Dan Gohmana2086b32010-05-19 23:43:12 +00003034 for (SmallVectorImpl<const SCEV *>::const_iterator
3035 I = F.BaseRegs.begin(), E = F.BaseRegs.end(); I != E; ++I) {
3036 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(*I)) {
3037 Formula NewF = F;
3038 NewF.AM.BaseOffs += C->getValue()->getSExtValue();
3039 NewF.BaseRegs.erase(NewF.BaseRegs.begin() +
3040 (I - F.BaseRegs.begin()));
3041 if (LU.HasFormulaWithSameRegs(NewF)) {
3042 DEBUG(dbgs() << " Deleting "; F.print(dbgs()); dbgs() << '\n');
3043 LU.DeleteFormula(F);
3044 --i;
3045 --e;
3046 Any = true;
3047 break;
3048 }
3049 } else if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(*I)) {
3050 if (GlobalValue *GV = dyn_cast<GlobalValue>(U->getValue()))
3051 if (!F.AM.BaseGV) {
3052 Formula NewF = F;
3053 NewF.AM.BaseGV = GV;
3054 NewF.BaseRegs.erase(NewF.BaseRegs.begin() +
3055 (I - F.BaseRegs.begin()));
3056 if (LU.HasFormulaWithSameRegs(NewF)) {
3057 DEBUG(dbgs() << " Deleting "; F.print(dbgs());
3058 dbgs() << '\n');
3059 LU.DeleteFormula(F);
3060 --i;
3061 --e;
3062 Any = true;
3063 break;
3064 }
3065 }
3066 }
3067 }
3068 }
3069 if (Any)
3070 LU.RecomputeRegs(LUIdx, RegUses);
3071 }
3072
3073 DEBUG(dbgs() << "After pre-selection:\n";
3074 print_uses(dbgs()));
3075 }
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00003076}
Dan Gohmana2086b32010-05-19 23:43:12 +00003077
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00003078/// NarrowSearchSpaceByCollapsingUnrolledCode - When there are many registers
3079/// for expressions like A, A+1, A+2, etc., allocate a single register for
3080/// them.
3081void LSRInstance::NarrowSearchSpaceByCollapsingUnrolledCode() {
Dan Gohmana2086b32010-05-19 23:43:12 +00003082 if (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
3083 DEBUG(dbgs() << "The search space is too complex.\n");
3084
3085 DEBUG(dbgs() << "Narrowing the search space by assuming that uses "
3086 "separated by a constant offset will use the same "
3087 "registers.\n");
3088
Dan Gohmanf7ff37d2010-05-20 20:00:41 +00003089 // This is especially useful for unrolled loops.
3090
Dan Gohmana2086b32010-05-19 23:43:12 +00003091 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
3092 LSRUse &LU = Uses[LUIdx];
Dan Gohman402d4352010-05-20 20:33:18 +00003093 for (SmallVectorImpl<Formula>::const_iterator I = LU.Formulae.begin(),
3094 E = LU.Formulae.end(); I != E; ++I) {
3095 const Formula &F = *I;
Dan Gohmana2086b32010-05-19 23:43:12 +00003096 if (F.AM.BaseOffs != 0 && F.AM.Scale == 0) {
Dan Gohman191bd642010-09-01 01:45:53 +00003097 if (LSRUse *LUThatHas = FindUseWithSimilarFormula(F, LU)) {
3098 if (reconcileNewOffset(*LUThatHas, F.AM.BaseOffs,
Dan Gohmana2086b32010-05-19 23:43:12 +00003099 /*HasBaseReg=*/false,
3100 LU.Kind, LU.AccessTy)) {
3101 DEBUG(dbgs() << " Deleting use "; LU.print(dbgs());
3102 dbgs() << '\n');
3103
3104 LUThatHas->AllFixupsOutsideLoop &= LU.AllFixupsOutsideLoop;
3105
Dan Gohman191bd642010-09-01 01:45:53 +00003106 // Update the relocs to reference the new use.
3107 for (SmallVectorImpl<LSRFixup>::iterator I = Fixups.begin(),
3108 E = Fixups.end(); I != E; ++I) {
3109 LSRFixup &Fixup = *I;
3110 if (Fixup.LUIdx == LUIdx) {
3111 Fixup.LUIdx = LUThatHas - &Uses.front();
3112 Fixup.Offset += F.AM.BaseOffs;
Dan Gohmandd3db0e2010-10-07 23:36:45 +00003113 // Add the new offset to LUThatHas' offset list.
3114 if (LUThatHas->Offsets.back() != Fixup.Offset) {
3115 LUThatHas->Offsets.push_back(Fixup.Offset);
3116 if (Fixup.Offset > LUThatHas->MaxOffset)
3117 LUThatHas->MaxOffset = Fixup.Offset;
3118 if (Fixup.Offset < LUThatHas->MinOffset)
3119 LUThatHas->MinOffset = Fixup.Offset;
3120 }
Dan Gohman191bd642010-09-01 01:45:53 +00003121 DEBUG(dbgs() << "New fixup has offset "
3122 << Fixup.Offset << '\n');
3123 }
3124 if (Fixup.LUIdx == NumUses-1)
3125 Fixup.LUIdx = LUIdx;
3126 }
3127
Dan Gohmanc2921ea2010-10-08 19:33:26 +00003128 // Delete formulae from the new use which are no longer legal.
3129 bool Any = false;
3130 for (size_t i = 0, e = LUThatHas->Formulae.size(); i != e; ++i) {
3131 Formula &F = LUThatHas->Formulae[i];
3132 if (!isLegalUse(F.AM,
3133 LUThatHas->MinOffset, LUThatHas->MaxOffset,
3134 LUThatHas->Kind, LUThatHas->AccessTy, TLI)) {
3135 DEBUG(dbgs() << " Deleting "; F.print(dbgs());
3136 dbgs() << '\n');
3137 LUThatHas->DeleteFormula(F);
3138 --i;
3139 --e;
3140 Any = true;
3141 }
3142 }
3143 if (Any)
3144 LUThatHas->RecomputeRegs(LUThatHas - &Uses.front(), RegUses);
3145
Dan Gohmana2086b32010-05-19 23:43:12 +00003146 // Delete the old use.
Dan Gohmanc6897702010-10-07 23:33:43 +00003147 DeleteUse(LU, LUIdx);
Dan Gohmana2086b32010-05-19 23:43:12 +00003148 --LUIdx;
3149 --NumUses;
3150 break;
3151 }
3152 }
3153 }
3154 }
3155 }
3156
3157 DEBUG(dbgs() << "After pre-selection:\n";
3158 print_uses(dbgs()));
3159 }
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00003160}
Dan Gohmana2086b32010-05-19 23:43:12 +00003161
Andrew Trick3228cc22011-03-14 16:50:06 +00003162/// NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters - Call
Dan Gohman4f7e18d2010-08-29 16:39:22 +00003163/// FilterOutUndesirableDedicatedRegisters again, if necessary, now that
3164/// we've done more filtering, as it may be able to find more formulae to
3165/// eliminate.
3166void LSRInstance::NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters(){
3167 if (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
3168 DEBUG(dbgs() << "The search space is too complex.\n");
3169
3170 DEBUG(dbgs() << "Narrowing the search space by re-filtering out "
3171 "undesirable dedicated registers.\n");
3172
3173 FilterOutUndesirableDedicatedRegisters();
3174
3175 DEBUG(dbgs() << "After pre-selection:\n";
3176 print_uses(dbgs()));
3177 }
3178}
3179
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00003180/// NarrowSearchSpaceByPickingWinnerRegs - Pick a register which seems likely
3181/// to be profitable, and then in any use which has any reference to that
3182/// register, delete all formulae which do not reference that register.
3183void LSRInstance::NarrowSearchSpaceByPickingWinnerRegs() {
Dan Gohman76c315a2010-05-20 20:52:00 +00003184 // With all other options exhausted, loop until the system is simple
3185 // enough to handle.
Dan Gohman572645c2010-02-12 10:34:29 +00003186 SmallPtrSet<const SCEV *, 4> Taken;
Dan Gohmand079c302010-05-18 22:51:59 +00003187 while (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
Dan Gohman572645c2010-02-12 10:34:29 +00003188 // Ok, we have too many of formulae on our hands to conveniently handle.
3189 // Use a rough heuristic to thin out the list.
Dan Gohman0da751b2010-05-18 22:41:32 +00003190 DEBUG(dbgs() << "The search space is too complex.\n");
Dan Gohman572645c2010-02-12 10:34:29 +00003191
3192 // Pick the register which is used by the most LSRUses, which is likely
3193 // to be a good reuse register candidate.
3194 const SCEV *Best = 0;
3195 unsigned BestNum = 0;
3196 for (RegUseTracker::const_iterator I = RegUses.begin(), E = RegUses.end();
3197 I != E; ++I) {
3198 const SCEV *Reg = *I;
3199 if (Taken.count(Reg))
3200 continue;
3201 if (!Best)
3202 Best = Reg;
3203 else {
3204 unsigned Count = RegUses.getUsedByIndices(Reg).count();
3205 if (Count > BestNum) {
3206 Best = Reg;
3207 BestNum = Count;
3208 }
3209 }
3210 }
3211
3212 DEBUG(dbgs() << "Narrowing the search space by assuming " << *Best
Dan Gohman3f46a3a2010-03-01 17:49:51 +00003213 << " will yield profitable reuse.\n");
Dan Gohman572645c2010-02-12 10:34:29 +00003214 Taken.insert(Best);
3215
3216 // In any use with formulae which references this register, delete formulae
3217 // which don't reference it.
Dan Gohmanb2df4332010-05-18 23:42:37 +00003218 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
3219 LSRUse &LU = Uses[LUIdx];
Dan Gohman572645c2010-02-12 10:34:29 +00003220 if (!LU.Regs.count(Best)) continue;
3221
Dan Gohmanb2df4332010-05-18 23:42:37 +00003222 bool Any = false;
Dan Gohman572645c2010-02-12 10:34:29 +00003223 for (size_t i = 0, e = LU.Formulae.size(); i != e; ++i) {
3224 Formula &F = LU.Formulae[i];
3225 if (!F.referencesReg(Best)) {
3226 DEBUG(dbgs() << " Deleting "; F.print(dbgs()); dbgs() << '\n');
Dan Gohmand69d6282010-05-18 22:39:15 +00003227 LU.DeleteFormula(F);
Dan Gohman572645c2010-02-12 10:34:29 +00003228 --e;
3229 --i;
Dan Gohmanb2df4332010-05-18 23:42:37 +00003230 Any = true;
Dan Gohman59dc6032010-05-07 23:36:59 +00003231 assert(e != 0 && "Use has no formulae left! Is Regs inconsistent?");
Dan Gohman572645c2010-02-12 10:34:29 +00003232 continue;
3233 }
Dan Gohman572645c2010-02-12 10:34:29 +00003234 }
Dan Gohmanb2df4332010-05-18 23:42:37 +00003235
3236 if (Any)
3237 LU.RecomputeRegs(LUIdx, RegUses);
Dan Gohman572645c2010-02-12 10:34:29 +00003238 }
3239
3240 DEBUG(dbgs() << "After pre-selection:\n";
3241 print_uses(dbgs()));
3242 }
3243}
3244
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00003245/// NarrowSearchSpaceUsingHeuristics - If there are an extraordinary number of
3246/// formulae to choose from, use some rough heuristics to prune down the number
3247/// of formulae. This keeps the main solver from taking an extraordinary amount
3248/// of time in some worst-case scenarios.
3249void LSRInstance::NarrowSearchSpaceUsingHeuristics() {
3250 NarrowSearchSpaceByDetectingSupersets();
3251 NarrowSearchSpaceByCollapsingUnrolledCode();
Dan Gohman4f7e18d2010-08-29 16:39:22 +00003252 NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters();
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00003253 NarrowSearchSpaceByPickingWinnerRegs();
3254}
3255
Dan Gohman572645c2010-02-12 10:34:29 +00003256/// SolveRecurse - This is the recursive solver.
3257void LSRInstance::SolveRecurse(SmallVectorImpl<const Formula *> &Solution,
3258 Cost &SolutionCost,
3259 SmallVectorImpl<const Formula *> &Workspace,
3260 const Cost &CurCost,
3261 const SmallPtrSet<const SCEV *, 16> &CurRegs,
3262 DenseSet<const SCEV *> &VisitedRegs) const {
3263 // Some ideas:
3264 // - prune more:
3265 // - use more aggressive filtering
3266 // - sort the formula so that the most profitable solutions are found first
3267 // - sort the uses too
3268 // - search faster:
Dan Gohman3f46a3a2010-03-01 17:49:51 +00003269 // - don't compute a cost, and then compare. compare while computing a cost
Dan Gohman572645c2010-02-12 10:34:29 +00003270 // and bail early.
3271 // - track register sets with SmallBitVector
3272
3273 const LSRUse &LU = Uses[Workspace.size()];
3274
3275 // If this use references any register that's already a part of the
3276 // in-progress solution, consider it a requirement that a formula must
3277 // reference that register in order to be considered. This prunes out
3278 // unprofitable searching.
3279 SmallSetVector<const SCEV *, 4> ReqRegs;
3280 for (SmallPtrSet<const SCEV *, 16>::const_iterator I = CurRegs.begin(),
3281 E = CurRegs.end(); I != E; ++I)
Dan Gohman9214b822010-02-13 02:06:02 +00003282 if (LU.Regs.count(*I))
Dan Gohman572645c2010-02-12 10:34:29 +00003283 ReqRegs.insert(*I);
Dan Gohman572645c2010-02-12 10:34:29 +00003284
Dan Gohman9214b822010-02-13 02:06:02 +00003285 bool AnySatisfiedReqRegs = false;
Dan Gohman572645c2010-02-12 10:34:29 +00003286 SmallPtrSet<const SCEV *, 16> NewRegs;
3287 Cost NewCost;
Dan Gohman9214b822010-02-13 02:06:02 +00003288retry:
Dan Gohman572645c2010-02-12 10:34:29 +00003289 for (SmallVectorImpl<Formula>::const_iterator I = LU.Formulae.begin(),
3290 E = LU.Formulae.end(); I != E; ++I) {
3291 const Formula &F = *I;
3292
3293 // Ignore formulae which do not use any of the required registers.
3294 for (SmallSetVector<const SCEV *, 4>::const_iterator J = ReqRegs.begin(),
3295 JE = ReqRegs.end(); J != JE; ++J) {
3296 const SCEV *Reg = *J;
3297 if ((!F.ScaledReg || F.ScaledReg != Reg) &&
3298 std::find(F.BaseRegs.begin(), F.BaseRegs.end(), Reg) ==
3299 F.BaseRegs.end())
3300 goto skip;
3301 }
Dan Gohman9214b822010-02-13 02:06:02 +00003302 AnySatisfiedReqRegs = true;
Dan Gohman572645c2010-02-12 10:34:29 +00003303
3304 // Evaluate the cost of the current formula. If it's already worse than
3305 // the current best, prune the search at that point.
3306 NewCost = CurCost;
3307 NewRegs = CurRegs;
3308 NewCost.RateFormula(F, NewRegs, VisitedRegs, L, LU.Offsets, SE, DT);
3309 if (NewCost < SolutionCost) {
3310 Workspace.push_back(&F);
3311 if (Workspace.size() != Uses.size()) {
3312 SolveRecurse(Solution, SolutionCost, Workspace, NewCost,
3313 NewRegs, VisitedRegs);
3314 if (F.getNumRegs() == 1 && Workspace.size() == 1)
3315 VisitedRegs.insert(F.ScaledReg ? F.ScaledReg : F.BaseRegs[0]);
3316 } else {
3317 DEBUG(dbgs() << "New best at "; NewCost.print(dbgs());
3318 dbgs() << ". Regs:";
3319 for (SmallPtrSet<const SCEV *, 16>::const_iterator
3320 I = NewRegs.begin(), E = NewRegs.end(); I != E; ++I)
3321 dbgs() << ' ' << **I;
3322 dbgs() << '\n');
3323
3324 SolutionCost = NewCost;
3325 Solution = Workspace;
3326 }
3327 Workspace.pop_back();
3328 }
3329 skip:;
3330 }
Dan Gohman9214b822010-02-13 02:06:02 +00003331
Andrew Trick80ef1b22011-09-27 00:44:14 +00003332 if (!EnableRetry && !AnySatisfiedReqRegs)
3333 return;
3334
Dan Gohman9214b822010-02-13 02:06:02 +00003335 // If none of the formulae had all of the required registers, relax the
3336 // constraint so that we don't exclude all formulae.
3337 if (!AnySatisfiedReqRegs) {
Dan Gohman59dc6032010-05-07 23:36:59 +00003338 assert(!ReqRegs.empty() && "Solver failed even without required registers");
Dan Gohman9214b822010-02-13 02:06:02 +00003339 ReqRegs.clear();
3340 goto retry;
3341 }
Dan Gohman572645c2010-02-12 10:34:29 +00003342}
3343
Dan Gohman76c315a2010-05-20 20:52:00 +00003344/// Solve - Choose one formula from each use. Return the results in the given
3345/// Solution vector.
Dan Gohman572645c2010-02-12 10:34:29 +00003346void LSRInstance::Solve(SmallVectorImpl<const Formula *> &Solution) const {
3347 SmallVector<const Formula *, 8> Workspace;
3348 Cost SolutionCost;
3349 SolutionCost.Loose();
3350 Cost CurCost;
3351 SmallPtrSet<const SCEV *, 16> CurRegs;
3352 DenseSet<const SCEV *> VisitedRegs;
3353 Workspace.reserve(Uses.size());
3354
Dan Gohmanf7ff37d2010-05-20 20:00:41 +00003355 // SolveRecurse does all the work.
Dan Gohman572645c2010-02-12 10:34:29 +00003356 SolveRecurse(Solution, SolutionCost, Workspace, CurCost,
3357 CurRegs, VisitedRegs);
Andrew Trick80ef1b22011-09-27 00:44:14 +00003358 if (Solution.empty()) {
3359 DEBUG(dbgs() << "\nNo Satisfactory Solution\n");
3360 return;
3361 }
Dan Gohman572645c2010-02-12 10:34:29 +00003362
3363 // Ok, we've now made all our decisions.
3364 DEBUG(dbgs() << "\n"
3365 "The chosen solution requires "; SolutionCost.print(dbgs());
3366 dbgs() << ":\n";
3367 for (size_t i = 0, e = Uses.size(); i != e; ++i) {
3368 dbgs() << " ";
3369 Uses[i].print(dbgs());
3370 dbgs() << "\n"
3371 " ";
3372 Solution[i]->print(dbgs());
3373 dbgs() << '\n';
3374 });
Dan Gohmana5528782010-05-20 20:59:23 +00003375
3376 assert(Solution.size() == Uses.size() && "Malformed solution!");
Dan Gohman572645c2010-02-12 10:34:29 +00003377}
3378
Dan Gohmane5f76872010-04-09 22:07:05 +00003379/// HoistInsertPosition - Helper for AdjustInsertPositionForExpand. Climb up
3380/// the dominator tree far as we can go while still being dominated by the
3381/// input positions. This helps canonicalize the insert position, which
3382/// encourages sharing.
3383BasicBlock::iterator
3384LSRInstance::HoistInsertPosition(BasicBlock::iterator IP,
3385 const SmallVectorImpl<Instruction *> &Inputs)
3386 const {
3387 for (;;) {
3388 const Loop *IPLoop = LI.getLoopFor(IP->getParent());
3389 unsigned IPLoopDepth = IPLoop ? IPLoop->getLoopDepth() : 0;
3390
3391 BasicBlock *IDom;
Dan Gohmand974a0e2010-05-20 20:00:25 +00003392 for (DomTreeNode *Rung = DT.getNode(IP->getParent()); ; ) {
Dan Gohman0fe46d92010-05-20 22:46:54 +00003393 if (!Rung) return IP;
Dan Gohmand974a0e2010-05-20 20:00:25 +00003394 Rung = Rung->getIDom();
3395 if (!Rung) return IP;
3396 IDom = Rung->getBlock();
Dan Gohmane5f76872010-04-09 22:07:05 +00003397
3398 // Don't climb into a loop though.
3399 const Loop *IDomLoop = LI.getLoopFor(IDom);
3400 unsigned IDomDepth = IDomLoop ? IDomLoop->getLoopDepth() : 0;
3401 if (IDomDepth <= IPLoopDepth &&
3402 (IDomDepth != IPLoopDepth || IDomLoop == IPLoop))
3403 break;
3404 }
3405
3406 bool AllDominate = true;
3407 Instruction *BetterPos = 0;
3408 Instruction *Tentative = IDom->getTerminator();
3409 for (SmallVectorImpl<Instruction *>::const_iterator I = Inputs.begin(),
3410 E = Inputs.end(); I != E; ++I) {
3411 Instruction *Inst = *I;
3412 if (Inst == Tentative || !DT.dominates(Inst, Tentative)) {
3413 AllDominate = false;
3414 break;
3415 }
3416 // Attempt to find an insert position in the middle of the block,
3417 // instead of at the end, so that it can be used for other expansions.
3418 if (IDom == Inst->getParent() &&
3419 (!BetterPos || DT.dominates(BetterPos, Inst)))
Douglas Gregor7d9663c2010-05-11 06:17:44 +00003420 BetterPos = llvm::next(BasicBlock::iterator(Inst));
Dan Gohmane5f76872010-04-09 22:07:05 +00003421 }
3422 if (!AllDominate)
3423 break;
3424 if (BetterPos)
3425 IP = BetterPos;
3426 else
3427 IP = Tentative;
3428 }
3429
3430 return IP;
3431}
3432
3433/// AdjustInsertPositionForExpand - Determine an input position which will be
Dan Gohmand96eae82010-04-09 02:00:38 +00003434/// dominated by the operands and which will dominate the result.
3435BasicBlock::iterator
Dan Gohmane5f76872010-04-09 22:07:05 +00003436LSRInstance::AdjustInsertPositionForExpand(BasicBlock::iterator IP,
3437 const LSRFixup &LF,
3438 const LSRUse &LU) const {
Dan Gohmand96eae82010-04-09 02:00:38 +00003439 // Collect some instructions which must be dominated by the
Dan Gohman448db1c2010-04-07 22:27:08 +00003440 // expanding replacement. These must be dominated by any operands that
Dan Gohman572645c2010-02-12 10:34:29 +00003441 // will be required in the expansion.
3442 SmallVector<Instruction *, 4> Inputs;
3443 if (Instruction *I = dyn_cast<Instruction>(LF.OperandValToReplace))
3444 Inputs.push_back(I);
3445 if (LU.Kind == LSRUse::ICmpZero)
3446 if (Instruction *I =
3447 dyn_cast<Instruction>(cast<ICmpInst>(LF.UserInst)->getOperand(1)))
3448 Inputs.push_back(I);
Dan Gohman448db1c2010-04-07 22:27:08 +00003449 if (LF.PostIncLoops.count(L)) {
3450 if (LF.isUseFullyOutsideLoop(L))
Dan Gohman069d6f32010-03-02 01:59:21 +00003451 Inputs.push_back(L->getLoopLatch()->getTerminator());
3452 else
3453 Inputs.push_back(IVIncInsertPos);
3454 }
Dan Gohman701a4ae2010-04-08 05:57:57 +00003455 // The expansion must also be dominated by the increment positions of any
3456 // loops it for which it is using post-inc mode.
3457 for (PostIncLoopSet::const_iterator I = LF.PostIncLoops.begin(),
3458 E = LF.PostIncLoops.end(); I != E; ++I) {
3459 const Loop *PIL = *I;
3460 if (PIL == L) continue;
3461
Dan Gohmane5f76872010-04-09 22:07:05 +00003462 // Be dominated by the loop exit.
Dan Gohman701a4ae2010-04-08 05:57:57 +00003463 SmallVector<BasicBlock *, 4> ExitingBlocks;
3464 PIL->getExitingBlocks(ExitingBlocks);
3465 if (!ExitingBlocks.empty()) {
3466 BasicBlock *BB = ExitingBlocks[0];
3467 for (unsigned i = 1, e = ExitingBlocks.size(); i != e; ++i)
3468 BB = DT.findNearestCommonDominator(BB, ExitingBlocks[i]);
3469 Inputs.push_back(BB->getTerminator());
3470 }
3471 }
Dan Gohman572645c2010-02-12 10:34:29 +00003472
3473 // Then, climb up the immediate dominator tree as far as we can go while
3474 // still being dominated by the input positions.
Dan Gohmane5f76872010-04-09 22:07:05 +00003475 IP = HoistInsertPosition(IP, Inputs);
Dan Gohmand96eae82010-04-09 02:00:38 +00003476
3477 // Don't insert instructions before PHI nodes.
Dan Gohman572645c2010-02-12 10:34:29 +00003478 while (isa<PHINode>(IP)) ++IP;
Dan Gohmand96eae82010-04-09 02:00:38 +00003479
Bill Wendlinga4c86ab2011-08-24 21:06:46 +00003480 // Ignore landingpad instructions.
3481 while (isa<LandingPadInst>(IP)) ++IP;
3482
Dan Gohmand96eae82010-04-09 02:00:38 +00003483 // Ignore debug intrinsics.
Dan Gohman449f31c2010-03-26 00:33:27 +00003484 while (isa<DbgInfoIntrinsic>(IP)) ++IP;
Dan Gohman572645c2010-02-12 10:34:29 +00003485
Dan Gohmand96eae82010-04-09 02:00:38 +00003486 return IP;
3487}
3488
Dan Gohman76c315a2010-05-20 20:52:00 +00003489/// Expand - Emit instructions for the leading candidate expression for this
3490/// LSRUse (this is called "expanding").
Dan Gohmand96eae82010-04-09 02:00:38 +00003491Value *LSRInstance::Expand(const LSRFixup &LF,
3492 const Formula &F,
3493 BasicBlock::iterator IP,
3494 SCEVExpander &Rewriter,
3495 SmallVectorImpl<WeakVH> &DeadInsts) const {
3496 const LSRUse &LU = Uses[LF.LUIdx];
3497
3498 // Determine an input position which will be dominated by the operands and
3499 // which will dominate the result.
Dan Gohmane5f76872010-04-09 22:07:05 +00003500 IP = AdjustInsertPositionForExpand(IP, LF, LU);
Dan Gohmand96eae82010-04-09 02:00:38 +00003501
Dan Gohman572645c2010-02-12 10:34:29 +00003502 // Inform the Rewriter if we have a post-increment use, so that it can
3503 // perform an advantageous expansion.
Dan Gohman448db1c2010-04-07 22:27:08 +00003504 Rewriter.setPostInc(LF.PostIncLoops);
Dan Gohman572645c2010-02-12 10:34:29 +00003505
3506 // This is the type that the user actually needs.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003507 Type *OpTy = LF.OperandValToReplace->getType();
Dan Gohman572645c2010-02-12 10:34:29 +00003508 // This will be the type that we'll initially expand to.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003509 Type *Ty = F.getType();
Dan Gohman572645c2010-02-12 10:34:29 +00003510 if (!Ty)
3511 // No type known; just expand directly to the ultimate type.
3512 Ty = OpTy;
3513 else if (SE.getEffectiveSCEVType(Ty) == SE.getEffectiveSCEVType(OpTy))
3514 // Expand directly to the ultimate type if it's the right size.
3515 Ty = OpTy;
3516 // This is the type to do integer arithmetic in.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003517 Type *IntTy = SE.getEffectiveSCEVType(Ty);
Dan Gohman572645c2010-02-12 10:34:29 +00003518
3519 // Build up a list of operands to add together to form the full base.
3520 SmallVector<const SCEV *, 8> Ops;
3521
3522 // Expand the BaseRegs portion.
3523 for (SmallVectorImpl<const SCEV *>::const_iterator I = F.BaseRegs.begin(),
3524 E = F.BaseRegs.end(); I != E; ++I) {
3525 const SCEV *Reg = *I;
3526 assert(!Reg->isZero() && "Zero allocated in a base register!");
3527
Dan Gohman448db1c2010-04-07 22:27:08 +00003528 // If we're expanding for a post-inc user, make the post-inc adjustment.
3529 PostIncLoopSet &Loops = const_cast<PostIncLoopSet &>(LF.PostIncLoops);
3530 Reg = TransformForPostIncUse(Denormalize, Reg,
3531 LF.UserInst, LF.OperandValToReplace,
3532 Loops, SE, DT);
Dan Gohman572645c2010-02-12 10:34:29 +00003533
3534 Ops.push_back(SE.getUnknown(Rewriter.expandCodeFor(Reg, 0, IP)));
3535 }
3536
Dan Gohman087bd1e2010-03-03 05:29:13 +00003537 // Flush the operand list to suppress SCEVExpander hoisting.
3538 if (!Ops.empty()) {
3539 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty, IP);
3540 Ops.clear();
3541 Ops.push_back(SE.getUnknown(FullV));
3542 }
3543
Dan Gohman572645c2010-02-12 10:34:29 +00003544 // Expand the ScaledReg portion.
3545 Value *ICmpScaledV = 0;
3546 if (F.AM.Scale != 0) {
3547 const SCEV *ScaledS = F.ScaledReg;
3548
Dan Gohman448db1c2010-04-07 22:27:08 +00003549 // If we're expanding for a post-inc user, make the post-inc adjustment.
3550 PostIncLoopSet &Loops = const_cast<PostIncLoopSet &>(LF.PostIncLoops);
3551 ScaledS = TransformForPostIncUse(Denormalize, ScaledS,
3552 LF.UserInst, LF.OperandValToReplace,
3553 Loops, SE, DT);
Dan Gohman572645c2010-02-12 10:34:29 +00003554
3555 if (LU.Kind == LSRUse::ICmpZero) {
3556 // An interesting way of "folding" with an icmp is to use a negated
3557 // scale, which we'll implement by inserting it into the other operand
3558 // of the icmp.
3559 assert(F.AM.Scale == -1 &&
3560 "The only scale supported by ICmpZero uses is -1!");
3561 ICmpScaledV = Rewriter.expandCodeFor(ScaledS, 0, IP);
3562 } else {
3563 // Otherwise just expand the scaled register and an explicit scale,
3564 // which is expected to be matched as part of the address.
3565 ScaledS = SE.getUnknown(Rewriter.expandCodeFor(ScaledS, 0, IP));
3566 ScaledS = SE.getMulExpr(ScaledS,
Dan Gohmandeff6212010-05-03 22:09:21 +00003567 SE.getConstant(ScaledS->getType(), F.AM.Scale));
Dan Gohman572645c2010-02-12 10:34:29 +00003568 Ops.push_back(ScaledS);
Dan Gohman087bd1e2010-03-03 05:29:13 +00003569
3570 // Flush the operand list to suppress SCEVExpander hoisting.
3571 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty, IP);
3572 Ops.clear();
3573 Ops.push_back(SE.getUnknown(FullV));
Dan Gohman572645c2010-02-12 10:34:29 +00003574 }
3575 }
3576
Dan Gohman087bd1e2010-03-03 05:29:13 +00003577 // Expand the GV portion.
3578 if (F.AM.BaseGV) {
3579 Ops.push_back(SE.getUnknown(F.AM.BaseGV));
3580
3581 // Flush the operand list to suppress SCEVExpander hoisting.
3582 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty, IP);
3583 Ops.clear();
3584 Ops.push_back(SE.getUnknown(FullV));
3585 }
3586
3587 // Expand the immediate portion.
Dan Gohman572645c2010-02-12 10:34:29 +00003588 int64_t Offset = (uint64_t)F.AM.BaseOffs + LF.Offset;
3589 if (Offset != 0) {
3590 if (LU.Kind == LSRUse::ICmpZero) {
3591 // The other interesting way of "folding" with an ICmpZero is to use a
3592 // negated immediate.
3593 if (!ICmpScaledV)
Eli Friedmandae36ba2011-10-13 23:48:33 +00003594 ICmpScaledV = ConstantInt::get(IntTy, -(uint64_t)Offset);
Dan Gohman572645c2010-02-12 10:34:29 +00003595 else {
3596 Ops.push_back(SE.getUnknown(ICmpScaledV));
3597 ICmpScaledV = ConstantInt::get(IntTy, Offset);
3598 }
3599 } else {
3600 // Just add the immediate values. These again are expected to be matched
3601 // as part of the address.
Dan Gohman087bd1e2010-03-03 05:29:13 +00003602 Ops.push_back(SE.getUnknown(ConstantInt::getSigned(IntTy, Offset)));
Dan Gohman572645c2010-02-12 10:34:29 +00003603 }
3604 }
3605
Dan Gohmancca82142011-05-03 00:46:49 +00003606 // Expand the unfolded offset portion.
3607 int64_t UnfoldedOffset = F.UnfoldedOffset;
3608 if (UnfoldedOffset != 0) {
3609 // Just add the immediate values.
3610 Ops.push_back(SE.getUnknown(ConstantInt::getSigned(IntTy,
3611 UnfoldedOffset)));
3612 }
3613
Dan Gohman572645c2010-02-12 10:34:29 +00003614 // Emit instructions summing all the operands.
3615 const SCEV *FullS = Ops.empty() ?
Dan Gohmandeff6212010-05-03 22:09:21 +00003616 SE.getConstant(IntTy, 0) :
Dan Gohman572645c2010-02-12 10:34:29 +00003617 SE.getAddExpr(Ops);
3618 Value *FullV = Rewriter.expandCodeFor(FullS, Ty, IP);
3619
3620 // We're done expanding now, so reset the rewriter.
Dan Gohman448db1c2010-04-07 22:27:08 +00003621 Rewriter.clearPostInc();
Dan Gohman572645c2010-02-12 10:34:29 +00003622
3623 // An ICmpZero Formula represents an ICmp which we're handling as a
3624 // comparison against zero. Now that we've expanded an expression for that
3625 // form, update the ICmp's other operand.
3626 if (LU.Kind == LSRUse::ICmpZero) {
3627 ICmpInst *CI = cast<ICmpInst>(LF.UserInst);
3628 DeadInsts.push_back(CI->getOperand(1));
3629 assert(!F.AM.BaseGV && "ICmp does not support folding a global value and "
3630 "a scale at the same time!");
3631 if (F.AM.Scale == -1) {
3632 if (ICmpScaledV->getType() != OpTy) {
3633 Instruction *Cast =
3634 CastInst::Create(CastInst::getCastOpcode(ICmpScaledV, false,
3635 OpTy, false),
3636 ICmpScaledV, OpTy, "tmp", CI);
3637 ICmpScaledV = Cast;
3638 }
3639 CI->setOperand(1, ICmpScaledV);
3640 } else {
3641 assert(F.AM.Scale == 0 &&
3642 "ICmp does not support folding a global value and "
3643 "a scale at the same time!");
3644 Constant *C = ConstantInt::getSigned(SE.getEffectiveSCEVType(OpTy),
3645 -(uint64_t)Offset);
3646 if (C->getType() != OpTy)
3647 C = ConstantExpr::getCast(CastInst::getCastOpcode(C, false,
3648 OpTy, false),
3649 C, OpTy);
3650
3651 CI->setOperand(1, C);
3652 }
3653 }
3654
3655 return FullV;
3656}
3657
Dan Gohman3a02cbc2010-02-16 20:25:07 +00003658/// RewriteForPHI - Helper for Rewrite. PHI nodes are special because the use
3659/// of their operands effectively happens in their predecessor blocks, so the
3660/// expression may need to be expanded in multiple places.
3661void LSRInstance::RewriteForPHI(PHINode *PN,
3662 const LSRFixup &LF,
3663 const Formula &F,
Dan Gohman3a02cbc2010-02-16 20:25:07 +00003664 SCEVExpander &Rewriter,
3665 SmallVectorImpl<WeakVH> &DeadInsts,
Dan Gohman3a02cbc2010-02-16 20:25:07 +00003666 Pass *P) const {
3667 DenseMap<BasicBlock *, Value *> Inserted;
3668 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
3669 if (PN->getIncomingValue(i) == LF.OperandValToReplace) {
3670 BasicBlock *BB = PN->getIncomingBlock(i);
3671
3672 // If this is a critical edge, split the edge so that we do not insert
3673 // the code on all predecessor/successor paths. We do this unless this
3674 // is the canonical backedge for this loop, which complicates post-inc
3675 // users.
3676 if (e != 1 && BB->getTerminator()->getNumSuccessors() > 1 &&
Dan Gohman3ef98382011-02-08 00:55:13 +00003677 !isa<IndirectBrInst>(BB->getTerminator())) {
Bill Wendling89d44112011-08-25 01:08:34 +00003678 BasicBlock *Parent = PN->getParent();
3679 Loop *PNLoop = LI.getLoopFor(Parent);
3680 if (!PNLoop || Parent != PNLoop->getHeader()) {
Dan Gohman3ef98382011-02-08 00:55:13 +00003681 // Split the critical edge.
Bill Wendling8b6af8a2011-08-25 05:55:40 +00003682 BasicBlock *NewBB = 0;
3683 if (!Parent->isLandingPad()) {
Andrew Trickf143b792011-10-04 03:50:44 +00003684 NewBB = SplitCriticalEdge(BB, Parent, P,
3685 /*MergeIdenticalEdges=*/true,
3686 /*DontDeleteUselessPhis=*/true);
Bill Wendling8b6af8a2011-08-25 05:55:40 +00003687 } else {
3688 SmallVector<BasicBlock*, 2> NewBBs;
3689 SplitLandingPadPredecessors(Parent, BB, "", "", P, NewBBs);
3690 NewBB = NewBBs[0];
3691 }
Dan Gohman3a02cbc2010-02-16 20:25:07 +00003692
Dan Gohman3ef98382011-02-08 00:55:13 +00003693 // If PN is outside of the loop and BB is in the loop, we want to
3694 // move the block to be immediately before the PHI block, not
3695 // immediately after BB.
3696 if (L->contains(BB) && !L->contains(PN))
3697 NewBB->moveBefore(PN->getParent());
Dan Gohman3a02cbc2010-02-16 20:25:07 +00003698
Dan Gohman3ef98382011-02-08 00:55:13 +00003699 // Splitting the edge can reduce the number of PHI entries we have.
3700 e = PN->getNumIncomingValues();
3701 BB = NewBB;
3702 i = PN->getBasicBlockIndex(BB);
3703 }
Dan Gohman3a02cbc2010-02-16 20:25:07 +00003704 }
3705
3706 std::pair<DenseMap<BasicBlock *, Value *>::iterator, bool> Pair =
3707 Inserted.insert(std::make_pair(BB, static_cast<Value *>(0)));
3708 if (!Pair.second)
3709 PN->setIncomingValue(i, Pair.first->second);
3710 else {
Dan Gohman454d26d2010-02-22 04:11:59 +00003711 Value *FullV = Expand(LF, F, BB->getTerminator(), Rewriter, DeadInsts);
Dan Gohman3a02cbc2010-02-16 20:25:07 +00003712
3713 // If this is reuse-by-noop-cast, insert the noop cast.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003714 Type *OpTy = LF.OperandValToReplace->getType();
Dan Gohman3a02cbc2010-02-16 20:25:07 +00003715 if (FullV->getType() != OpTy)
3716 FullV =
3717 CastInst::Create(CastInst::getCastOpcode(FullV, false,
3718 OpTy, false),
3719 FullV, LF.OperandValToReplace->getType(),
3720 "tmp", BB->getTerminator());
3721
3722 PN->setIncomingValue(i, FullV);
3723 Pair.first->second = FullV;
3724 }
3725 }
3726}
3727
Dan Gohman572645c2010-02-12 10:34:29 +00003728/// Rewrite - Emit instructions for the leading candidate expression for this
3729/// LSRUse (this is called "expanding"), and update the UserInst to reference
3730/// the newly expanded value.
3731void LSRInstance::Rewrite(const LSRFixup &LF,
3732 const Formula &F,
Dan Gohman572645c2010-02-12 10:34:29 +00003733 SCEVExpander &Rewriter,
3734 SmallVectorImpl<WeakVH> &DeadInsts,
Dan Gohman572645c2010-02-12 10:34:29 +00003735 Pass *P) const {
Dan Gohman572645c2010-02-12 10:34:29 +00003736 // First, find an insertion point that dominates UserInst. For PHI nodes,
3737 // find the nearest block which dominates all the relevant uses.
3738 if (PHINode *PN = dyn_cast<PHINode>(LF.UserInst)) {
Dan Gohman454d26d2010-02-22 04:11:59 +00003739 RewriteForPHI(PN, LF, F, Rewriter, DeadInsts, P);
Dan Gohman572645c2010-02-12 10:34:29 +00003740 } else {
Dan Gohman454d26d2010-02-22 04:11:59 +00003741 Value *FullV = Expand(LF, F, LF.UserInst, Rewriter, DeadInsts);
Dan Gohman572645c2010-02-12 10:34:29 +00003742
3743 // If this is reuse-by-noop-cast, insert the noop cast.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003744 Type *OpTy = LF.OperandValToReplace->getType();
Dan Gohman572645c2010-02-12 10:34:29 +00003745 if (FullV->getType() != OpTy) {
3746 Instruction *Cast =
3747 CastInst::Create(CastInst::getCastOpcode(FullV, false, OpTy, false),
3748 FullV, OpTy, "tmp", LF.UserInst);
3749 FullV = Cast;
3750 }
3751
3752 // Update the user. ICmpZero is handled specially here (for now) because
3753 // Expand may have updated one of the operands of the icmp already, and
3754 // its new value may happen to be equal to LF.OperandValToReplace, in
3755 // which case doing replaceUsesOfWith leads to replacing both operands
3756 // with the same value. TODO: Reorganize this.
3757 if (Uses[LF.LUIdx].Kind == LSRUse::ICmpZero)
3758 LF.UserInst->setOperand(0, FullV);
3759 else
3760 LF.UserInst->replaceUsesOfWith(LF.OperandValToReplace, FullV);
3761 }
3762
3763 DeadInsts.push_back(LF.OperandValToReplace);
3764}
3765
Dan Gohman76c315a2010-05-20 20:52:00 +00003766/// ImplementSolution - Rewrite all the fixup locations with new values,
3767/// following the chosen solution.
Dan Gohman572645c2010-02-12 10:34:29 +00003768void
3769LSRInstance::ImplementSolution(const SmallVectorImpl<const Formula *> &Solution,
3770 Pass *P) {
3771 // Keep track of instructions we may have made dead, so that
3772 // we can remove them after we are done working.
3773 SmallVector<WeakVH, 16> DeadInsts;
3774
Andrew Trick5e7645b2011-06-28 05:07:32 +00003775 SCEVExpander Rewriter(SE, "lsr");
Dan Gohman572645c2010-02-12 10:34:29 +00003776 Rewriter.disableCanonicalMode();
Andrew Trickc5701912011-10-07 23:46:21 +00003777 Rewriter.enableLSRMode();
Dan Gohman572645c2010-02-12 10:34:29 +00003778 Rewriter.setIVIncInsertPos(L, IVIncInsertPos);
3779
3780 // Expand the new value definitions and update the users.
Dan Gohman402d4352010-05-20 20:33:18 +00003781 for (SmallVectorImpl<LSRFixup>::const_iterator I = Fixups.begin(),
3782 E = Fixups.end(); I != E; ++I) {
3783 const LSRFixup &Fixup = *I;
Dan Gohman572645c2010-02-12 10:34:29 +00003784
Dan Gohman402d4352010-05-20 20:33:18 +00003785 Rewrite(Fixup, *Solution[Fixup.LUIdx], Rewriter, DeadInsts, P);
Dan Gohman572645c2010-02-12 10:34:29 +00003786
3787 Changed = true;
3788 }
3789
3790 // Clean up after ourselves. This must be done before deleting any
3791 // instructions.
3792 Rewriter.clear();
3793
3794 Changed |= DeleteTriviallyDeadInstructions(DeadInsts);
3795}
3796
3797LSRInstance::LSRInstance(const TargetLowering *tli, Loop *l, Pass *P)
3798 : IU(P->getAnalysis<IVUsers>()),
3799 SE(P->getAnalysis<ScalarEvolution>()),
3800 DT(P->getAnalysis<DominatorTree>()),
Dan Gohmane5f76872010-04-09 22:07:05 +00003801 LI(P->getAnalysis<LoopInfo>()),
Dan Gohman572645c2010-02-12 10:34:29 +00003802 TLI(tli), L(l), Changed(false), IVIncInsertPos(0) {
Devang Patel0f54dcb2007-03-06 21:14:09 +00003803
Dan Gohman03e896b2009-11-05 21:11:53 +00003804 // If LoopSimplify form is not available, stay out of trouble.
Dan Gohman572645c2010-02-12 10:34:29 +00003805 if (!L->isLoopSimplifyForm()) return;
Dan Gohman03e896b2009-11-05 21:11:53 +00003806
Dan Gohman572645c2010-02-12 10:34:29 +00003807 // If there's no interesting work to be done, bail early.
3808 if (IU.empty()) return;
Dan Gohman80b0f8c2009-03-09 20:34:59 +00003809
Dan Gohman572645c2010-02-12 10:34:29 +00003810 DEBUG(dbgs() << "\nLSR on loop ";
3811 WriteAsOperand(dbgs(), L->getHeader(), /*PrintType=*/false);
3812 dbgs() << ":\n");
Dan Gohmanf7912df2009-03-09 20:46:50 +00003813
Dan Gohman402d4352010-05-20 20:33:18 +00003814 // First, perform some low-level loop optimizations.
Dan Gohman572645c2010-02-12 10:34:29 +00003815 OptimizeShadowIV();
Dan Gohmanc6519f92010-05-20 20:05:31 +00003816 OptimizeLoopTermCond();
Evan Cheng5792f512009-05-11 22:33:01 +00003817
Andrew Trick37eb38d2011-07-21 00:40:04 +00003818 // If loop preparation eliminates all interesting IV users, bail.
3819 if (IU.empty()) return;
3820
Andrew Trick5219f862011-09-29 01:53:08 +00003821 // Skip nested loops until we can model them better with formulae.
Andrew Trick0c01bc32011-09-29 01:33:38 +00003822 if (!EnableNested && !L->empty()) {
Andrew Tricka02bfce2011-10-11 02:30:45 +00003823
3824 if (EnablePhiElim) {
3825 // Remove any extra phis created by processing inner loops.
3826 SmallVector<WeakVH, 16> DeadInsts;
3827 SCEVExpander Rewriter(SE, "lsr");
Nadav Rotemde631122011-11-15 22:54:21 +00003828 Changed |= (bool)Rewriter.replaceCongruentIVs(L, &DT, DeadInsts);
3829 Changed |= (bool)DeleteTriviallyDeadInstructions(DeadInsts);
Andrew Tricka02bfce2011-10-11 02:30:45 +00003830 }
Andrew Trick0c01bc32011-09-29 01:33:38 +00003831 DEBUG(dbgs() << "LSR skipping outer loop " << *L << "\n");
Andrew Trick5219f862011-09-29 01:53:08 +00003832 return;
Andrew Trick0c01bc32011-09-29 01:33:38 +00003833 }
3834
Dan Gohman402d4352010-05-20 20:33:18 +00003835 // Start collecting data and preparing for the solver.
Dan Gohman572645c2010-02-12 10:34:29 +00003836 CollectInterestingTypesAndFactors();
3837 CollectFixupsAndInitialFormulae();
3838 CollectLoopInvariantFixupsAndFormulae();
Chris Lattner010de252005-08-08 05:28:22 +00003839
Dan Gohman572645c2010-02-12 10:34:29 +00003840 DEBUG(dbgs() << "LSR found " << Uses.size() << " uses:\n";
3841 print_uses(dbgs()));
Misha Brukmanfd939082005-04-21 23:48:37 +00003842
Dan Gohman572645c2010-02-12 10:34:29 +00003843 // Now use the reuse data to generate a bunch of interesting ways
3844 // to formulate the values needed for the uses.
3845 GenerateAllReuseFormulae();
Evan Chengd1d6b5c2006-03-16 21:53:05 +00003846
Dan Gohman572645c2010-02-12 10:34:29 +00003847 FilterOutUndesirableDedicatedRegisters();
3848 NarrowSearchSpaceUsingHeuristics();
Dan Gohman6bec5bb2009-12-18 00:06:20 +00003849
Dan Gohman572645c2010-02-12 10:34:29 +00003850 SmallVector<const Formula *, 8> Solution;
3851 Solve(Solution);
Dan Gohman6bec5bb2009-12-18 00:06:20 +00003852
Dan Gohman572645c2010-02-12 10:34:29 +00003853 // Release memory that is no longer needed.
3854 Factors.clear();
3855 Types.clear();
3856 RegUses.clear();
3857
Andrew Trick80ef1b22011-09-27 00:44:14 +00003858 if (Solution.empty())
3859 return;
3860
Dan Gohman572645c2010-02-12 10:34:29 +00003861#ifndef NDEBUG
3862 // Formulae should be legal.
3863 for (SmallVectorImpl<LSRUse>::const_iterator I = Uses.begin(),
3864 E = Uses.end(); I != E; ++I) {
3865 const LSRUse &LU = *I;
3866 for (SmallVectorImpl<Formula>::const_iterator J = LU.Formulae.begin(),
3867 JE = LU.Formulae.end(); J != JE; ++J)
3868 assert(isLegalUse(J->AM, LU.MinOffset, LU.MaxOffset,
3869 LU.Kind, LU.AccessTy, TLI) &&
3870 "Illegal formula generated!");
3871 };
3872#endif
3873
3874 // Now that we've decided what we want, make it so.
3875 ImplementSolution(Solution, P);
Andrew Tricka02bfce2011-10-11 02:30:45 +00003876
3877 if (EnablePhiElim) {
3878 // Remove any extra phis created by processing inner loops.
3879 SmallVector<WeakVH, 16> DeadInsts;
3880 SCEVExpander Rewriter(SE, "lsr");
Nadav Rotemde631122011-11-15 22:54:21 +00003881 Changed |= (bool)Rewriter.replaceCongruentIVs(L, &DT, DeadInsts);
3882 Changed |= (bool)DeleteTriviallyDeadInstructions(DeadInsts);
Andrew Tricka02bfce2011-10-11 02:30:45 +00003883 }
Dan Gohman572645c2010-02-12 10:34:29 +00003884}
3885
3886void LSRInstance::print_factors_and_types(raw_ostream &OS) const {
3887 if (Factors.empty() && Types.empty()) return;
3888
3889 OS << "LSR has identified the following interesting factors and types: ";
3890 bool First = true;
3891
3892 for (SmallSetVector<int64_t, 8>::const_iterator
3893 I = Factors.begin(), E = Factors.end(); I != E; ++I) {
3894 if (!First) OS << ", ";
3895 First = false;
3896 OS << '*' << *I;
Evan Cheng81ebdcf2009-11-10 21:14:05 +00003897 }
Dale Johannesenc1acc3f2009-05-11 17:15:42 +00003898
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003899 for (SmallSetVector<Type *, 4>::const_iterator
Dan Gohman572645c2010-02-12 10:34:29 +00003900 I = Types.begin(), E = Types.end(); I != E; ++I) {
3901 if (!First) OS << ", ";
3902 First = false;
3903 OS << '(' << **I << ')';
3904 }
3905 OS << '\n';
3906}
3907
3908void LSRInstance::print_fixups(raw_ostream &OS) const {
3909 OS << "LSR is examining the following fixup sites:\n";
3910 for (SmallVectorImpl<LSRFixup>::const_iterator I = Fixups.begin(),
3911 E = Fixups.end(); I != E; ++I) {
Dan Gohman572645c2010-02-12 10:34:29 +00003912 dbgs() << " ";
Dan Gohman9f383eb2010-05-20 22:25:20 +00003913 I->print(OS);
Dan Gohman572645c2010-02-12 10:34:29 +00003914 OS << '\n';
3915 }
3916}
3917
3918void LSRInstance::print_uses(raw_ostream &OS) const {
3919 OS << "LSR is examining the following uses:\n";
3920 for (SmallVectorImpl<LSRUse>::const_iterator I = Uses.begin(),
3921 E = Uses.end(); I != E; ++I) {
3922 const LSRUse &LU = *I;
3923 dbgs() << " ";
3924 LU.print(OS);
3925 OS << '\n';
3926 for (SmallVectorImpl<Formula>::const_iterator J = LU.Formulae.begin(),
3927 JE = LU.Formulae.end(); J != JE; ++J) {
3928 OS << " ";
3929 J->print(OS);
3930 OS << '\n';
3931 }
3932 }
3933}
3934
3935void LSRInstance::print(raw_ostream &OS) const {
3936 print_factors_and_types(OS);
3937 print_fixups(OS);
3938 print_uses(OS);
3939}
3940
3941void LSRInstance::dump() const {
3942 print(errs()); errs() << '\n';
3943}
3944
3945namespace {
3946
3947class LoopStrengthReduce : public LoopPass {
3948 /// TLI - Keep a pointer of a TargetLowering to consult for determining
3949 /// transformation profitability.
3950 const TargetLowering *const TLI;
3951
3952public:
3953 static char ID; // Pass ID, replacement for typeid
3954 explicit LoopStrengthReduce(const TargetLowering *tli = 0);
3955
3956private:
3957 bool runOnLoop(Loop *L, LPPassManager &LPM);
3958 void getAnalysisUsage(AnalysisUsage &AU) const;
3959};
3960
3961}
3962
3963char LoopStrengthReduce::ID = 0;
Owen Anderson2ab36d32010-10-12 19:48:12 +00003964INITIALIZE_PASS_BEGIN(LoopStrengthReduce, "loop-reduce",
Owen Andersonce665bd2010-10-07 22:25:06 +00003965 "Loop Strength Reduction", false, false)
Owen Anderson2ab36d32010-10-12 19:48:12 +00003966INITIALIZE_PASS_DEPENDENCY(DominatorTree)
3967INITIALIZE_PASS_DEPENDENCY(ScalarEvolution)
3968INITIALIZE_PASS_DEPENDENCY(IVUsers)
Owen Anderson205942a2010-10-19 20:08:44 +00003969INITIALIZE_PASS_DEPENDENCY(LoopInfo)
3970INITIALIZE_PASS_DEPENDENCY(LoopSimplify)
Owen Anderson2ab36d32010-10-12 19:48:12 +00003971INITIALIZE_PASS_END(LoopStrengthReduce, "loop-reduce",
3972 "Loop Strength Reduction", false, false)
3973
Dan Gohman572645c2010-02-12 10:34:29 +00003974
3975Pass *llvm::createLoopStrengthReducePass(const TargetLowering *TLI) {
3976 return new LoopStrengthReduce(TLI);
3977}
3978
3979LoopStrengthReduce::LoopStrengthReduce(const TargetLowering *tli)
Owen Anderson081c34b2010-10-19 17:21:58 +00003980 : LoopPass(ID), TLI(tli) {
3981 initializeLoopStrengthReducePass(*PassRegistry::getPassRegistry());
3982 }
Dan Gohman572645c2010-02-12 10:34:29 +00003983
3984void LoopStrengthReduce::getAnalysisUsage(AnalysisUsage &AU) const {
3985 // We split critical edges, so we change the CFG. However, we do update
3986 // many analyses if they are around.
Eric Christopher6793c492011-02-10 01:48:24 +00003987 AU.addPreservedID(LoopSimplifyID);
Dan Gohman572645c2010-02-12 10:34:29 +00003988
Eric Christopher6793c492011-02-10 01:48:24 +00003989 AU.addRequired<LoopInfo>();
3990 AU.addPreserved<LoopInfo>();
3991 AU.addRequiredID(LoopSimplifyID);
Dan Gohman572645c2010-02-12 10:34:29 +00003992 AU.addRequired<DominatorTree>();
3993 AU.addPreserved<DominatorTree>();
3994 AU.addRequired<ScalarEvolution>();
3995 AU.addPreserved<ScalarEvolution>();
Cameron Zwarich2c2b9332011-02-10 23:53:14 +00003996 // Requiring LoopSimplify a second time here prevents IVUsers from running
3997 // twice, since LoopSimplify was invalidated by running ScalarEvolution.
3998 AU.addRequiredID(LoopSimplifyID);
Dan Gohman572645c2010-02-12 10:34:29 +00003999 AU.addRequired<IVUsers>();
4000 AU.addPreserved<IVUsers>();
4001}
4002
4003bool LoopStrengthReduce::runOnLoop(Loop *L, LPPassManager & /*LPM*/) {
4004 bool Changed = false;
4005
4006 // Run the main LSR transformation.
4007 Changed |= LSRInstance(TLI, L, this).getChanged();
4008
Dan Gohmanafc36a92009-05-02 18:29:22 +00004009 // At this point, it is worth checking to see if any recurrence PHIs are also
Dan Gohman35738ac2009-05-04 22:30:44 +00004010 // dead, so that we can remove them as well.
Dan Gohman9fff2182010-01-05 16:31:45 +00004011 Changed |= DeleteDeadPHIs(L->getHeader());
Dan Gohmanafc36a92009-05-02 18:29:22 +00004012
Evan Cheng1ce75dc2008-07-07 19:51:32 +00004013 return Changed;
Nate Begemaneaa13852004-10-18 21:08:22 +00004014}