blob: b2c039d38dbc400c7aff874299947759f5217a97 [file] [log] [blame]
Dan Gohman2d1be872009-04-16 03:18:22 +00001//===- LoopStrengthReduce.cpp - Strength Reduce IVs in Loops --------------===//
Misha Brukmanfd939082005-04-21 23:48:37 +00002//
Nate Begemaneaa13852004-10-18 21:08:22 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanfd939082005-04-21 23:48:37 +00007//
Nate Begemaneaa13852004-10-18 21:08:22 +00008//===----------------------------------------------------------------------===//
9//
Dan Gohmancec8f9d2009-05-19 20:37:36 +000010// This transformation analyzes and transforms the induction variables (and
11// computations derived from them) into forms suitable for efficient execution
12// on the target.
13//
Nate Begemaneaa13852004-10-18 21:08:22 +000014// This pass performs a strength reduction on array references inside loops that
Dan Gohmancec8f9d2009-05-19 20:37:36 +000015// have as one or more of their components the loop induction variable, it
16// rewrites expressions to take advantage of scaled-index addressing modes
17// available on the target, and it performs a variety of other optimizations
18// related to loop induction variables.
Nate Begemaneaa13852004-10-18 21:08:22 +000019//
Dan Gohman572645c2010-02-12 10:34:29 +000020// Terminology note: this code has a lot of handling for "post-increment" or
21// "post-inc" users. This is not talking about post-increment addressing modes;
22// it is instead talking about code like this:
23//
24// %i = phi [ 0, %entry ], [ %i.next, %latch ]
25// ...
26// %i.next = add %i, 1
27// %c = icmp eq %i.next, %n
28//
29// The SCEV for %i is {0,+,1}<%L>. The SCEV for %i.next is {1,+,1}<%L>, however
30// it's useful to think about these as the same register, with some uses using
31// the value of the register before the add and some using // it after. In this
32// example, the icmp is a post-increment user, since it uses %i.next, which is
33// the value of the induction variable after the increment. The other common
34// case of post-increment users is users outside the loop.
35//
36// TODO: More sophistication in the way Formulae are generated and filtered.
37//
38// TODO: Handle multiple loops at a time.
39//
40// TODO: Should TargetLowering::AddrMode::BaseGV be changed to a ConstantExpr
41// instead of a GlobalValue?
42//
43// TODO: When truncation is free, truncate ICmp users' operands to make it a
44// smaller encoding (on x86 at least).
45//
46// TODO: When a negated register is used by an add (such as in a list of
47// multiple base registers, or as the increment expression in an addrec),
48// we may not actually need both reg and (-1 * reg) in registers; the
49// negation can be implemented by using a sub instead of an add. The
50// lack of support for taking this into consideration when making
51// register pressure decisions is partly worked around by the "Special"
52// use kind.
53//
Nate Begemaneaa13852004-10-18 21:08:22 +000054//===----------------------------------------------------------------------===//
55
Chris Lattnerbe3e5212005-08-03 23:30:08 +000056#define DEBUG_TYPE "loop-reduce"
Nate Begemaneaa13852004-10-18 21:08:22 +000057#include "llvm/Transforms/Scalar.h"
58#include "llvm/Constants.h"
59#include "llvm/Instructions.h"
Dan Gohmane5b01be2007-05-04 14:59:09 +000060#include "llvm/IntrinsicInst.h"
Jeff Cohen2f3c9b72005-03-04 04:04:26 +000061#include "llvm/DerivedTypes.h"
Dan Gohman81db61a2009-05-12 02:17:14 +000062#include "llvm/Analysis/IVUsers.h"
Dan Gohman572645c2010-02-12 10:34:29 +000063#include "llvm/Analysis/Dominators.h"
Devang Patel0f54dcb2007-03-06 21:14:09 +000064#include "llvm/Analysis/LoopPass.h"
Nate Begeman16997482005-07-30 00:15:07 +000065#include "llvm/Analysis/ScalarEvolutionExpander.h"
Chris Lattnere0391be2005-08-12 22:06:11 +000066#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Nate Begemaneaa13852004-10-18 21:08:22 +000067#include "llvm/Transforms/Utils/Local.h"
Dan Gohman572645c2010-02-12 10:34:29 +000068#include "llvm/ADT/SmallBitVector.h"
69#include "llvm/ADT/SetVector.h"
70#include "llvm/ADT/DenseSet.h"
Nate Begeman16997482005-07-30 00:15:07 +000071#include "llvm/Support/Debug.h"
Dan Gohmanafc36a92009-05-02 18:29:22 +000072#include "llvm/Support/ValueHandle.h"
Daniel Dunbar460f6562009-07-26 09:48:23 +000073#include "llvm/Support/raw_ostream.h"
Evan Chengd277f2c2006-03-13 23:14:23 +000074#include "llvm/Target/TargetLowering.h"
Jeff Cohencfb1d422005-07-30 18:22:27 +000075#include <algorithm>
Nate Begemaneaa13852004-10-18 21:08:22 +000076using namespace llvm;
77
Dan Gohman572645c2010-02-12 10:34:29 +000078namespace {
Nate Begemaneaa13852004-10-18 21:08:22 +000079
Dan Gohman572645c2010-02-12 10:34:29 +000080/// RegSortData - This class holds data which is used to order reuse candidates.
81class RegSortData {
82public:
83 /// UsedByIndices - This represents the set of LSRUse indices which reference
84 /// a particular register.
85 SmallBitVector UsedByIndices;
86
87 RegSortData() {}
88
89 void print(raw_ostream &OS) const;
90 void dump() const;
91};
92
93}
94
95void RegSortData::print(raw_ostream &OS) const {
96 OS << "[NumUses=" << UsedByIndices.count() << ']';
97}
98
99void RegSortData::dump() const {
100 print(errs()); errs() << '\n';
101}
Dan Gohmanc17e0cf2009-02-20 04:17:46 +0000102
Chris Lattner0e5f4992006-12-19 21:40:18 +0000103namespace {
Dale Johannesendc42f482007-03-20 00:47:50 +0000104
Dan Gohman572645c2010-02-12 10:34:29 +0000105/// RegUseTracker - Map register candidates to information about how they are
106/// used.
107class RegUseTracker {
108 typedef DenseMap<const SCEV *, RegSortData> RegUsesTy;
Dale Johannesendc42f482007-03-20 00:47:50 +0000109
Dan Gohman90bb3552010-05-18 22:33:00 +0000110 RegUsesTy RegUsesMap;
Dan Gohman572645c2010-02-12 10:34:29 +0000111 SmallVector<const SCEV *, 16> RegSequence;
Evan Chengd1d6b5c2006-03-16 21:53:05 +0000112
Dan Gohman572645c2010-02-12 10:34:29 +0000113public:
114 void CountRegister(const SCEV *Reg, size_t LUIdx);
Dan Gohmanb2df4332010-05-18 23:42:37 +0000115 void DropRegister(const SCEV *Reg, size_t LUIdx);
Dan Gohmanc6897702010-10-07 23:33:43 +0000116 void SwapAndDropUse(size_t LUIdx, size_t LastLUIdx);
Dan Gohmana10756e2010-01-21 02:09:26 +0000117
Dan Gohman572645c2010-02-12 10:34:29 +0000118 bool isRegUsedByUsesOtherThan(const SCEV *Reg, size_t LUIdx) const;
Dan Gohmana10756e2010-01-21 02:09:26 +0000119
Dan Gohman572645c2010-02-12 10:34:29 +0000120 const SmallBitVector &getUsedByIndices(const SCEV *Reg) const;
Dan Gohmana10756e2010-01-21 02:09:26 +0000121
Dan Gohman572645c2010-02-12 10:34:29 +0000122 void clear();
Dan Gohmana10756e2010-01-21 02:09:26 +0000123
Dan Gohman572645c2010-02-12 10:34:29 +0000124 typedef SmallVectorImpl<const SCEV *>::iterator iterator;
125 typedef SmallVectorImpl<const SCEV *>::const_iterator const_iterator;
126 iterator begin() { return RegSequence.begin(); }
127 iterator end() { return RegSequence.end(); }
128 const_iterator begin() const { return RegSequence.begin(); }
129 const_iterator end() const { return RegSequence.end(); }
130};
Dan Gohmana10756e2010-01-21 02:09:26 +0000131
Dan Gohmana10756e2010-01-21 02:09:26 +0000132}
133
Dan Gohman572645c2010-02-12 10:34:29 +0000134void
135RegUseTracker::CountRegister(const SCEV *Reg, size_t LUIdx) {
136 std::pair<RegUsesTy::iterator, bool> Pair =
Dan Gohman90bb3552010-05-18 22:33:00 +0000137 RegUsesMap.insert(std::make_pair(Reg, RegSortData()));
Dan Gohman572645c2010-02-12 10:34:29 +0000138 RegSortData &RSD = Pair.first->second;
139 if (Pair.second)
140 RegSequence.push_back(Reg);
141 RSD.UsedByIndices.resize(std::max(RSD.UsedByIndices.size(), LUIdx + 1));
142 RSD.UsedByIndices.set(LUIdx);
Dan Gohmana10756e2010-01-21 02:09:26 +0000143}
144
Dan Gohmanb2df4332010-05-18 23:42:37 +0000145void
146RegUseTracker::DropRegister(const SCEV *Reg, size_t LUIdx) {
147 RegUsesTy::iterator It = RegUsesMap.find(Reg);
148 assert(It != RegUsesMap.end());
149 RegSortData &RSD = It->second;
150 assert(RSD.UsedByIndices.size() > LUIdx);
151 RSD.UsedByIndices.reset(LUIdx);
152}
153
Dan Gohmana2086b32010-05-19 23:43:12 +0000154void
Dan Gohmanc6897702010-10-07 23:33:43 +0000155RegUseTracker::SwapAndDropUse(size_t LUIdx, size_t LastLUIdx) {
156 assert(LUIdx <= LastLUIdx);
157
158 // Update RegUses. The data structure is not optimized for this purpose;
159 // we must iterate through it and update each of the bit vectors.
Dan Gohmana2086b32010-05-19 23:43:12 +0000160 for (RegUsesTy::iterator I = RegUsesMap.begin(), E = RegUsesMap.end();
Dan Gohmanc6897702010-10-07 23:33:43 +0000161 I != E; ++I) {
162 SmallBitVector &UsedByIndices = I->second.UsedByIndices;
163 if (LUIdx < UsedByIndices.size())
164 UsedByIndices[LUIdx] =
165 LastLUIdx < UsedByIndices.size() ? UsedByIndices[LastLUIdx] : 0;
166 UsedByIndices.resize(std::min(UsedByIndices.size(), LastLUIdx));
167 }
Dan Gohmana2086b32010-05-19 23:43:12 +0000168}
169
Dan Gohman572645c2010-02-12 10:34:29 +0000170bool
171RegUseTracker::isRegUsedByUsesOtherThan(const SCEV *Reg, size_t LUIdx) const {
Dan Gohman46fd7a62010-08-29 15:18:49 +0000172 RegUsesTy::const_iterator I = RegUsesMap.find(Reg);
173 if (I == RegUsesMap.end())
174 return false;
175 const SmallBitVector &UsedByIndices = I->second.UsedByIndices;
Dan Gohman572645c2010-02-12 10:34:29 +0000176 int i = UsedByIndices.find_first();
177 if (i == -1) return false;
178 if ((size_t)i != LUIdx) return true;
179 return UsedByIndices.find_next(i) != -1;
180}
Dan Gohmana10756e2010-01-21 02:09:26 +0000181
Dan Gohman572645c2010-02-12 10:34:29 +0000182const SmallBitVector &RegUseTracker::getUsedByIndices(const SCEV *Reg) const {
Dan Gohman90bb3552010-05-18 22:33:00 +0000183 RegUsesTy::const_iterator I = RegUsesMap.find(Reg);
184 assert(I != RegUsesMap.end() && "Unknown register!");
Dan Gohman572645c2010-02-12 10:34:29 +0000185 return I->second.UsedByIndices;
186}
Dan Gohmana10756e2010-01-21 02:09:26 +0000187
Dan Gohman572645c2010-02-12 10:34:29 +0000188void RegUseTracker::clear() {
Dan Gohman90bb3552010-05-18 22:33:00 +0000189 RegUsesMap.clear();
Dan Gohman572645c2010-02-12 10:34:29 +0000190 RegSequence.clear();
191}
Dan Gohmana10756e2010-01-21 02:09:26 +0000192
Dan Gohman572645c2010-02-12 10:34:29 +0000193namespace {
194
195/// Formula - This class holds information that describes a formula for
196/// computing satisfying a use. It may include broken-out immediates and scaled
197/// registers.
198struct Formula {
199 /// AM - This is used to represent complex addressing, as well as other kinds
200 /// of interesting uses.
201 TargetLowering::AddrMode AM;
202
203 /// BaseRegs - The list of "base" registers for this use. When this is
204 /// non-empty, AM.HasBaseReg should be set to true.
205 SmallVector<const SCEV *, 2> BaseRegs;
206
207 /// ScaledReg - The 'scaled' register for this use. This should be non-null
208 /// when AM.Scale is not zero.
209 const SCEV *ScaledReg;
210
211 Formula() : ScaledReg(0) {}
212
213 void InitialMatch(const SCEV *S, Loop *L,
214 ScalarEvolution &SE, DominatorTree &DT);
215
216 unsigned getNumRegs() const;
217 const Type *getType() const;
218
Dan Gohman5ce6d052010-05-20 15:17:54 +0000219 void DeleteBaseReg(const SCEV *&S);
220
Dan Gohman572645c2010-02-12 10:34:29 +0000221 bool referencesReg(const SCEV *S) const;
222 bool hasRegsUsedByUsesOtherThan(size_t LUIdx,
223 const RegUseTracker &RegUses) const;
224
225 void print(raw_ostream &OS) const;
226 void dump() const;
227};
228
229}
230
Dan Gohman3f46a3a2010-03-01 17:49:51 +0000231/// DoInitialMatch - Recursion helper for InitialMatch.
Dan Gohman572645c2010-02-12 10:34:29 +0000232static void DoInitialMatch(const SCEV *S, Loop *L,
233 SmallVectorImpl<const SCEV *> &Good,
234 SmallVectorImpl<const SCEV *> &Bad,
235 ScalarEvolution &SE, DominatorTree &DT) {
236 // Collect expressions which properly dominate the loop header.
237 if (S->properlyDominates(L->getHeader(), &DT)) {
238 Good.push_back(S);
239 return;
Dan Gohmana10756e2010-01-21 02:09:26 +0000240 }
Dan Gohman572645c2010-02-12 10:34:29 +0000241
242 // Look at add operands.
243 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
244 for (SCEVAddExpr::op_iterator I = Add->op_begin(), E = Add->op_end();
245 I != E; ++I)
246 DoInitialMatch(*I, L, Good, Bad, SE, DT);
247 return;
248 }
249
250 // Look at addrec operands.
251 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S))
252 if (!AR->getStart()->isZero()) {
253 DoInitialMatch(AR->getStart(), L, Good, Bad, SE, DT);
Dan Gohmandeff6212010-05-03 22:09:21 +0000254 DoInitialMatch(SE.getAddRecExpr(SE.getConstant(AR->getType(), 0),
Dan Gohman572645c2010-02-12 10:34:29 +0000255 AR->getStepRecurrence(SE),
256 AR->getLoop()),
257 L, Good, Bad, SE, DT);
258 return;
259 }
260
261 // Handle a multiplication by -1 (negation) if it didn't fold.
262 if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S))
263 if (Mul->getOperand(0)->isAllOnesValue()) {
264 SmallVector<const SCEV *, 4> Ops(Mul->op_begin()+1, Mul->op_end());
265 const SCEV *NewMul = SE.getMulExpr(Ops);
266
267 SmallVector<const SCEV *, 4> MyGood;
268 SmallVector<const SCEV *, 4> MyBad;
269 DoInitialMatch(NewMul, L, MyGood, MyBad, SE, DT);
270 const SCEV *NegOne = SE.getSCEV(ConstantInt::getAllOnesValue(
271 SE.getEffectiveSCEVType(NewMul->getType())));
272 for (SmallVectorImpl<const SCEV *>::const_iterator I = MyGood.begin(),
273 E = MyGood.end(); I != E; ++I)
274 Good.push_back(SE.getMulExpr(NegOne, *I));
275 for (SmallVectorImpl<const SCEV *>::const_iterator I = MyBad.begin(),
276 E = MyBad.end(); I != E; ++I)
277 Bad.push_back(SE.getMulExpr(NegOne, *I));
278 return;
279 }
280
281 // Ok, we can't do anything interesting. Just stuff the whole thing into a
282 // register and hope for the best.
283 Bad.push_back(S);
284}
285
286/// InitialMatch - Incorporate loop-variant parts of S into this Formula,
287/// attempting to keep all loop-invariant and loop-computable values in a
288/// single base register.
289void Formula::InitialMatch(const SCEV *S, Loop *L,
290 ScalarEvolution &SE, DominatorTree &DT) {
291 SmallVector<const SCEV *, 4> Good;
292 SmallVector<const SCEV *, 4> Bad;
293 DoInitialMatch(S, L, Good, Bad, SE, DT);
294 if (!Good.empty()) {
Dan Gohmane60bb152010-04-08 23:36:27 +0000295 const SCEV *Sum = SE.getAddExpr(Good);
296 if (!Sum->isZero())
297 BaseRegs.push_back(Sum);
Dan Gohman572645c2010-02-12 10:34:29 +0000298 AM.HasBaseReg = true;
299 }
300 if (!Bad.empty()) {
Dan Gohmane60bb152010-04-08 23:36:27 +0000301 const SCEV *Sum = SE.getAddExpr(Bad);
302 if (!Sum->isZero())
303 BaseRegs.push_back(Sum);
Dan Gohman572645c2010-02-12 10:34:29 +0000304 AM.HasBaseReg = true;
305 }
306}
307
308/// getNumRegs - Return the total number of register operands used by this
309/// formula. This does not include register uses implied by non-constant
310/// addrec strides.
311unsigned Formula::getNumRegs() const {
312 return !!ScaledReg + BaseRegs.size();
313}
314
315/// getType - Return the type of this formula, if it has one, or null
316/// otherwise. This type is meaningless except for the bit size.
317const Type *Formula::getType() const {
318 return !BaseRegs.empty() ? BaseRegs.front()->getType() :
319 ScaledReg ? ScaledReg->getType() :
320 AM.BaseGV ? AM.BaseGV->getType() :
321 0;
322}
323
Dan Gohman5ce6d052010-05-20 15:17:54 +0000324/// DeleteBaseReg - Delete the given base reg from the BaseRegs list.
325void Formula::DeleteBaseReg(const SCEV *&S) {
326 if (&S != &BaseRegs.back())
327 std::swap(S, BaseRegs.back());
328 BaseRegs.pop_back();
329}
330
Dan Gohman572645c2010-02-12 10:34:29 +0000331/// referencesReg - Test if this formula references the given register.
332bool Formula::referencesReg(const SCEV *S) const {
333 return S == ScaledReg ||
334 std::find(BaseRegs.begin(), BaseRegs.end(), S) != BaseRegs.end();
335}
336
337/// hasRegsUsedByUsesOtherThan - Test whether this formula uses registers
338/// which are used by uses other than the use with the given index.
339bool Formula::hasRegsUsedByUsesOtherThan(size_t LUIdx,
340 const RegUseTracker &RegUses) const {
341 if (ScaledReg)
342 if (RegUses.isRegUsedByUsesOtherThan(ScaledReg, LUIdx))
343 return true;
344 for (SmallVectorImpl<const SCEV *>::const_iterator I = BaseRegs.begin(),
345 E = BaseRegs.end(); I != E; ++I)
346 if (RegUses.isRegUsedByUsesOtherThan(*I, LUIdx))
347 return true;
348 return false;
349}
350
351void Formula::print(raw_ostream &OS) const {
352 bool First = true;
353 if (AM.BaseGV) {
354 if (!First) OS << " + "; else First = false;
355 WriteAsOperand(OS, AM.BaseGV, /*PrintType=*/false);
356 }
357 if (AM.BaseOffs != 0) {
358 if (!First) OS << " + "; else First = false;
359 OS << AM.BaseOffs;
360 }
361 for (SmallVectorImpl<const SCEV *>::const_iterator I = BaseRegs.begin(),
362 E = BaseRegs.end(); I != E; ++I) {
363 if (!First) OS << " + "; else First = false;
364 OS << "reg(" << **I << ')';
365 }
Dan Gohmanc4cfbaf2010-05-18 22:35:55 +0000366 if (AM.HasBaseReg && BaseRegs.empty()) {
367 if (!First) OS << " + "; else First = false;
368 OS << "**error: HasBaseReg**";
369 } else if (!AM.HasBaseReg && !BaseRegs.empty()) {
370 if (!First) OS << " + "; else First = false;
371 OS << "**error: !HasBaseReg**";
372 }
Dan Gohman572645c2010-02-12 10:34:29 +0000373 if (AM.Scale != 0) {
374 if (!First) OS << " + "; else First = false;
375 OS << AM.Scale << "*reg(";
376 if (ScaledReg)
377 OS << *ScaledReg;
378 else
379 OS << "<unknown>";
380 OS << ')';
381 }
382}
383
384void Formula::dump() const {
385 print(errs()); errs() << '\n';
386}
387
Dan Gohmanaae01f12010-02-19 19:32:49 +0000388/// isAddRecSExtable - Return true if the given addrec can be sign-extended
389/// without changing its value.
390static bool isAddRecSExtable(const SCEVAddRecExpr *AR, ScalarEvolution &SE) {
391 const Type *WideTy =
Dan Gohmanea507f52010-05-20 19:44:23 +0000392 IntegerType::get(SE.getContext(), SE.getTypeSizeInBits(AR->getType()) + 1);
Dan Gohmanaae01f12010-02-19 19:32:49 +0000393 return isa<SCEVAddRecExpr>(SE.getSignExtendExpr(AR, WideTy));
394}
395
396/// isAddSExtable - Return true if the given add can be sign-extended
397/// without changing its value.
398static bool isAddSExtable(const SCEVAddExpr *A, ScalarEvolution &SE) {
399 const Type *WideTy =
Dan Gohmanea507f52010-05-20 19:44:23 +0000400 IntegerType::get(SE.getContext(), SE.getTypeSizeInBits(A->getType()) + 1);
Dan Gohmanaae01f12010-02-19 19:32:49 +0000401 return isa<SCEVAddExpr>(SE.getSignExtendExpr(A, WideTy));
402}
403
Dan Gohman473e6352010-06-24 16:45:11 +0000404/// isMulSExtable - Return true if the given mul can be sign-extended
Dan Gohmanaae01f12010-02-19 19:32:49 +0000405/// without changing its value.
Dan Gohman473e6352010-06-24 16:45:11 +0000406static bool isMulSExtable(const SCEVMulExpr *M, ScalarEvolution &SE) {
Dan Gohmanaae01f12010-02-19 19:32:49 +0000407 const Type *WideTy =
Dan Gohman473e6352010-06-24 16:45:11 +0000408 IntegerType::get(SE.getContext(),
409 SE.getTypeSizeInBits(M->getType()) * M->getNumOperands());
410 return isa<SCEVMulExpr>(SE.getSignExtendExpr(M, WideTy));
Dan Gohmanaae01f12010-02-19 19:32:49 +0000411}
412
Dan Gohmanf09b7122010-02-19 19:35:48 +0000413/// getExactSDiv - Return an expression for LHS /s RHS, if it can be determined
414/// and if the remainder is known to be zero, or null otherwise. If
415/// IgnoreSignificantBits is true, expressions like (X * Y) /s Y are simplified
416/// to Y, ignoring that the multiplication may overflow, which is useful when
417/// the result will be used in a context where the most significant bits are
418/// ignored.
419static const SCEV *getExactSDiv(const SCEV *LHS, const SCEV *RHS,
420 ScalarEvolution &SE,
421 bool IgnoreSignificantBits = false) {
Dan Gohman572645c2010-02-12 10:34:29 +0000422 // Handle the trivial case, which works for any SCEV type.
423 if (LHS == RHS)
Dan Gohmandeff6212010-05-03 22:09:21 +0000424 return SE.getConstant(LHS->getType(), 1);
Dan Gohman572645c2010-02-12 10:34:29 +0000425
Dan Gohmand42819a2010-06-24 16:51:25 +0000426 // Handle a few RHS special cases.
427 const SCEVConstant *RC = dyn_cast<SCEVConstant>(RHS);
428 if (RC) {
429 const APInt &RA = RC->getValue()->getValue();
430 // Handle x /s -1 as x * -1, to give ScalarEvolution a chance to do
431 // some folding.
432 if (RA.isAllOnesValue())
433 return SE.getMulExpr(LHS, RC);
434 // Handle x /s 1 as x.
435 if (RA == 1)
436 return LHS;
437 }
Dan Gohman572645c2010-02-12 10:34:29 +0000438
439 // Check for a division of a constant by a constant.
440 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(LHS)) {
Dan Gohman572645c2010-02-12 10:34:29 +0000441 if (!RC)
442 return 0;
Dan Gohmand42819a2010-06-24 16:51:25 +0000443 const APInt &LA = C->getValue()->getValue();
444 const APInt &RA = RC->getValue()->getValue();
445 if (LA.srem(RA) != 0)
Dan Gohman572645c2010-02-12 10:34:29 +0000446 return 0;
Dan Gohmand42819a2010-06-24 16:51:25 +0000447 return SE.getConstant(LA.sdiv(RA));
Dan Gohman572645c2010-02-12 10:34:29 +0000448 }
449
Dan Gohmanaae01f12010-02-19 19:32:49 +0000450 // Distribute the sdiv over addrec operands, if the addrec doesn't overflow.
Dan Gohman572645c2010-02-12 10:34:29 +0000451 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(LHS)) {
Dan Gohmanaae01f12010-02-19 19:32:49 +0000452 if (IgnoreSignificantBits || isAddRecSExtable(AR, SE)) {
Dan Gohmanf09b7122010-02-19 19:35:48 +0000453 const SCEV *Step = getExactSDiv(AR->getStepRecurrence(SE), RHS, SE,
454 IgnoreSignificantBits);
Dan Gohmanaae01f12010-02-19 19:32:49 +0000455 if (!Step) return 0;
Dan Gohman694a15e2010-08-19 01:02:31 +0000456 const SCEV *Start = getExactSDiv(AR->getStart(), RHS, SE,
457 IgnoreSignificantBits);
458 if (!Start) return 0;
Dan Gohmanaae01f12010-02-19 19:32:49 +0000459 return SE.getAddRecExpr(Start, Step, AR->getLoop());
460 }
Dan Gohman2ea09e02010-06-24 16:57:52 +0000461 return 0;
Dan Gohman572645c2010-02-12 10:34:29 +0000462 }
463
Dan Gohmanaae01f12010-02-19 19:32:49 +0000464 // Distribute the sdiv over add operands, if the add doesn't overflow.
Dan Gohman572645c2010-02-12 10:34:29 +0000465 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(LHS)) {
Dan Gohmanaae01f12010-02-19 19:32:49 +0000466 if (IgnoreSignificantBits || isAddSExtable(Add, SE)) {
467 SmallVector<const SCEV *, 8> Ops;
468 for (SCEVAddExpr::op_iterator I = Add->op_begin(), E = Add->op_end();
469 I != E; ++I) {
Dan Gohmanf09b7122010-02-19 19:35:48 +0000470 const SCEV *Op = getExactSDiv(*I, RHS, SE,
471 IgnoreSignificantBits);
Dan Gohmanaae01f12010-02-19 19:32:49 +0000472 if (!Op) return 0;
473 Ops.push_back(Op);
474 }
475 return SE.getAddExpr(Ops);
Dan Gohman572645c2010-02-12 10:34:29 +0000476 }
Dan Gohman2ea09e02010-06-24 16:57:52 +0000477 return 0;
Dan Gohman572645c2010-02-12 10:34:29 +0000478 }
479
480 // Check for a multiply operand that we can pull RHS out of.
Dan Gohman2ea09e02010-06-24 16:57:52 +0000481 if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(LHS)) {
Dan Gohmanaae01f12010-02-19 19:32:49 +0000482 if (IgnoreSignificantBits || isMulSExtable(Mul, SE)) {
Dan Gohman572645c2010-02-12 10:34:29 +0000483 SmallVector<const SCEV *, 4> Ops;
484 bool Found = false;
485 for (SCEVMulExpr::op_iterator I = Mul->op_begin(), E = Mul->op_end();
486 I != E; ++I) {
Dan Gohman47667442010-05-20 16:23:28 +0000487 const SCEV *S = *I;
Dan Gohman572645c2010-02-12 10:34:29 +0000488 if (!Found)
Dan Gohman47667442010-05-20 16:23:28 +0000489 if (const SCEV *Q = getExactSDiv(S, RHS, SE,
Dan Gohmanf09b7122010-02-19 19:35:48 +0000490 IgnoreSignificantBits)) {
Dan Gohman47667442010-05-20 16:23:28 +0000491 S = Q;
Dan Gohman572645c2010-02-12 10:34:29 +0000492 Found = true;
Dan Gohman572645c2010-02-12 10:34:29 +0000493 }
Dan Gohman47667442010-05-20 16:23:28 +0000494 Ops.push_back(S);
Dan Gohman572645c2010-02-12 10:34:29 +0000495 }
496 return Found ? SE.getMulExpr(Ops) : 0;
497 }
Dan Gohman2ea09e02010-06-24 16:57:52 +0000498 return 0;
499 }
Dan Gohman572645c2010-02-12 10:34:29 +0000500
501 // Otherwise we don't know.
502 return 0;
503}
504
505/// ExtractImmediate - If S involves the addition of a constant integer value,
506/// return that integer value, and mutate S to point to a new SCEV with that
507/// value excluded.
508static int64_t ExtractImmediate(const SCEV *&S, ScalarEvolution &SE) {
509 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(S)) {
510 if (C->getValue()->getValue().getMinSignedBits() <= 64) {
Dan Gohmandeff6212010-05-03 22:09:21 +0000511 S = SE.getConstant(C->getType(), 0);
Dan Gohman572645c2010-02-12 10:34:29 +0000512 return C->getValue()->getSExtValue();
513 }
514 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
515 SmallVector<const SCEV *, 8> NewOps(Add->op_begin(), Add->op_end());
516 int64_t Result = ExtractImmediate(NewOps.front(), SE);
Dan Gohmane62d5882010-08-13 21:17:19 +0000517 if (Result != 0)
518 S = SE.getAddExpr(NewOps);
Dan Gohman572645c2010-02-12 10:34:29 +0000519 return Result;
520 } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
521 SmallVector<const SCEV *, 8> NewOps(AR->op_begin(), AR->op_end());
522 int64_t Result = ExtractImmediate(NewOps.front(), SE);
Dan Gohmane62d5882010-08-13 21:17:19 +0000523 if (Result != 0)
524 S = SE.getAddRecExpr(NewOps, AR->getLoop());
Dan Gohman572645c2010-02-12 10:34:29 +0000525 return Result;
526 }
527 return 0;
528}
529
530/// ExtractSymbol - If S involves the addition of a GlobalValue address,
531/// return that symbol, and mutate S to point to a new SCEV with that
532/// value excluded.
533static GlobalValue *ExtractSymbol(const SCEV *&S, ScalarEvolution &SE) {
534 if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(S)) {
535 if (GlobalValue *GV = dyn_cast<GlobalValue>(U->getValue())) {
Dan Gohmandeff6212010-05-03 22:09:21 +0000536 S = SE.getConstant(GV->getType(), 0);
Dan Gohman572645c2010-02-12 10:34:29 +0000537 return GV;
538 }
539 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
540 SmallVector<const SCEV *, 8> NewOps(Add->op_begin(), Add->op_end());
541 GlobalValue *Result = ExtractSymbol(NewOps.back(), SE);
Dan Gohmane62d5882010-08-13 21:17:19 +0000542 if (Result)
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 GlobalValue *Result = ExtractSymbol(NewOps.front(), SE);
Dan Gohmane62d5882010-08-13 21:17:19 +0000548 if (Result)
549 S = SE.getAddRecExpr(NewOps, AR->getLoop());
Dan Gohman572645c2010-02-12 10:34:29 +0000550 return Result;
551 }
552 return 0;
Nate Begemaneaa13852004-10-18 21:08:22 +0000553}
554
Dan Gohmanf284ce22009-02-18 00:08:39 +0000555/// isAddressUse - Returns true if the specified instruction is using the
Dale Johannesen203af582008-12-05 21:47:27 +0000556/// specified value as an address.
557static bool isAddressUse(Instruction *Inst, Value *OperandVal) {
558 bool isAddress = isa<LoadInst>(Inst);
559 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
560 if (SI->getOperand(1) == OperandVal)
561 isAddress = true;
562 } else if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst)) {
563 // Addressing modes can also be folded into prefetches and a variety
564 // of intrinsics.
565 switch (II->getIntrinsicID()) {
566 default: break;
567 case Intrinsic::prefetch:
568 case Intrinsic::x86_sse2_loadu_dq:
569 case Intrinsic::x86_sse2_loadu_pd:
570 case Intrinsic::x86_sse_loadu_ps:
571 case Intrinsic::x86_sse_storeu_ps:
572 case Intrinsic::x86_sse2_storeu_pd:
573 case Intrinsic::x86_sse2_storeu_dq:
574 case Intrinsic::x86_sse2_storel_dq:
Gabor Greifad72e732010-06-30 09:15:28 +0000575 if (II->getArgOperand(0) == OperandVal)
Dale Johannesen203af582008-12-05 21:47:27 +0000576 isAddress = true;
577 break;
578 }
579 }
580 return isAddress;
581}
Chris Lattner0ae33eb2005-10-03 01:04:44 +0000582
Dan Gohman21e77222009-03-09 21:01:17 +0000583/// getAccessType - Return the type of the memory being accessed.
584static const Type *getAccessType(const Instruction *Inst) {
Dan Gohmana537bf82009-05-18 16:45:28 +0000585 const Type *AccessTy = Inst->getType();
Dan Gohman21e77222009-03-09 21:01:17 +0000586 if (const StoreInst *SI = dyn_cast<StoreInst>(Inst))
Dan Gohmana537bf82009-05-18 16:45:28 +0000587 AccessTy = SI->getOperand(0)->getType();
Dan Gohman21e77222009-03-09 21:01:17 +0000588 else if (const IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst)) {
589 // Addressing modes can also be folded into prefetches and a variety
590 // of intrinsics.
591 switch (II->getIntrinsicID()) {
592 default: break;
593 case Intrinsic::x86_sse_storeu_ps:
594 case Intrinsic::x86_sse2_storeu_pd:
595 case Intrinsic::x86_sse2_storeu_dq:
596 case Intrinsic::x86_sse2_storel_dq:
Gabor Greifad72e732010-06-30 09:15:28 +0000597 AccessTy = II->getArgOperand(0)->getType();
Dan Gohman21e77222009-03-09 21:01:17 +0000598 break;
599 }
600 }
Dan Gohman572645c2010-02-12 10:34:29 +0000601
602 // All pointers have the same requirements, so canonicalize them to an
603 // arbitrary pointer type to minimize variation.
604 if (const PointerType *PTy = dyn_cast<PointerType>(AccessTy))
605 AccessTy = PointerType::get(IntegerType::get(PTy->getContext(), 1),
606 PTy->getAddressSpace());
607
Dan Gohmana537bf82009-05-18 16:45:28 +0000608 return AccessTy;
Dan Gohman21e77222009-03-09 21:01:17 +0000609}
610
Dan Gohman572645c2010-02-12 10:34:29 +0000611/// DeleteTriviallyDeadInstructions - If any of the instructions is the
612/// specified set are trivially dead, delete them and see if this makes any of
613/// their operands subsequently dead.
614static bool
615DeleteTriviallyDeadInstructions(SmallVectorImpl<WeakVH> &DeadInsts) {
616 bool Changed = false;
617
618 while (!DeadInsts.empty()) {
Gabor Greiff097b592010-09-18 11:55:34 +0000619 Instruction *I = dyn_cast_or_null<Instruction>(&*DeadInsts.pop_back_val());
Dan Gohman572645c2010-02-12 10:34:29 +0000620
621 if (I == 0 || !isInstructionTriviallyDead(I))
622 continue;
623
624 for (User::op_iterator OI = I->op_begin(), E = I->op_end(); OI != E; ++OI)
625 if (Instruction *U = dyn_cast<Instruction>(*OI)) {
626 *OI = 0;
627 if (U->use_empty())
628 DeadInsts.push_back(U);
629 }
630
631 I->eraseFromParent();
632 Changed = true;
633 }
634
635 return Changed;
636}
637
Dan Gohman7979b722010-01-22 00:46:49 +0000638namespace {
Jim Grosbach56a1f802009-11-17 17:53:56 +0000639
Dan Gohman572645c2010-02-12 10:34:29 +0000640/// Cost - This class is used to measure and compare candidate formulae.
641class Cost {
642 /// TODO: Some of these could be merged. Also, a lexical ordering
643 /// isn't always optimal.
644 unsigned NumRegs;
645 unsigned AddRecCost;
646 unsigned NumIVMuls;
647 unsigned NumBaseAdds;
648 unsigned ImmCost;
649 unsigned SetupCost;
Nate Begeman16997482005-07-30 00:15:07 +0000650
Dan Gohman572645c2010-02-12 10:34:29 +0000651public:
652 Cost()
653 : NumRegs(0), AddRecCost(0), NumIVMuls(0), NumBaseAdds(0), ImmCost(0),
654 SetupCost(0) {}
Jim Grosbach56a1f802009-11-17 17:53:56 +0000655
Dan Gohman572645c2010-02-12 10:34:29 +0000656 bool operator<(const Cost &Other) const;
Dan Gohman7979b722010-01-22 00:46:49 +0000657
Dan Gohman572645c2010-02-12 10:34:29 +0000658 void Loose();
Dan Gohman7979b722010-01-22 00:46:49 +0000659
Dan Gohman572645c2010-02-12 10:34:29 +0000660 void RateFormula(const Formula &F,
661 SmallPtrSet<const SCEV *, 16> &Regs,
662 const DenseSet<const SCEV *> &VisitedRegs,
663 const Loop *L,
664 const SmallVectorImpl<int64_t> &Offsets,
665 ScalarEvolution &SE, DominatorTree &DT);
Dan Gohman7979b722010-01-22 00:46:49 +0000666
Dan Gohman572645c2010-02-12 10:34:29 +0000667 void print(raw_ostream &OS) const;
668 void dump() const;
Dan Gohman7979b722010-01-22 00:46:49 +0000669
Dan Gohman572645c2010-02-12 10:34:29 +0000670private:
671 void RateRegister(const SCEV *Reg,
672 SmallPtrSet<const SCEV *, 16> &Regs,
673 const Loop *L,
674 ScalarEvolution &SE, DominatorTree &DT);
Dan Gohman9214b822010-02-13 02:06:02 +0000675 void RatePrimaryRegister(const SCEV *Reg,
676 SmallPtrSet<const SCEV *, 16> &Regs,
677 const Loop *L,
678 ScalarEvolution &SE, DominatorTree &DT);
Dan Gohman572645c2010-02-12 10:34:29 +0000679};
680
681}
682
683/// RateRegister - Tally up interesting quantities from the given register.
684void Cost::RateRegister(const SCEV *Reg,
685 SmallPtrSet<const SCEV *, 16> &Regs,
686 const Loop *L,
687 ScalarEvolution &SE, DominatorTree &DT) {
Dan Gohman9214b822010-02-13 02:06:02 +0000688 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(Reg)) {
689 if (AR->getLoop() == L)
690 AddRecCost += 1; /// TODO: This should be a function of the stride.
Dan Gohman572645c2010-02-12 10:34:29 +0000691
Dan Gohman9214b822010-02-13 02:06:02 +0000692 // If this is an addrec for a loop that's already been visited by LSR,
693 // don't second-guess its addrec phi nodes. LSR isn't currently smart
694 // enough to reason about more than one loop at a time. Consider these
695 // registers free and leave them alone.
696 else if (L->contains(AR->getLoop()) ||
697 (!AR->getLoop()->contains(L) &&
698 DT.dominates(L->getHeader(), AR->getLoop()->getHeader()))) {
699 for (BasicBlock::iterator I = AR->getLoop()->getHeader()->begin();
700 PHINode *PN = dyn_cast<PHINode>(I); ++I)
701 if (SE.isSCEVable(PN->getType()) &&
702 (SE.getEffectiveSCEVType(PN->getType()) ==
703 SE.getEffectiveSCEVType(AR->getType())) &&
704 SE.getSCEV(PN) == AR)
705 return;
Dan Gohman572645c2010-02-12 10:34:29 +0000706
Dan Gohman9214b822010-02-13 02:06:02 +0000707 // If this isn't one of the addrecs that the loop already has, it
708 // would require a costly new phi and add. TODO: This isn't
709 // precisely modeled right now.
710 ++NumBaseAdds;
711 if (!Regs.count(AR->getStart()))
Dan Gohman572645c2010-02-12 10:34:29 +0000712 RateRegister(AR->getStart(), Regs, L, SE, DT);
Dan Gohman572645c2010-02-12 10:34:29 +0000713 }
Dan Gohman572645c2010-02-12 10:34:29 +0000714
Dan Gohman9214b822010-02-13 02:06:02 +0000715 // Add the step value register, if it needs one.
716 // TODO: The non-affine case isn't precisely modeled here.
717 if (!AR->isAffine() || !isa<SCEVConstant>(AR->getOperand(1)))
718 if (!Regs.count(AR->getStart()))
719 RateRegister(AR->getOperand(1), Regs, L, SE, DT);
Dan Gohman572645c2010-02-12 10:34:29 +0000720 }
Dan Gohman9214b822010-02-13 02:06:02 +0000721 ++NumRegs;
722
723 // Rough heuristic; favor registers which don't require extra setup
724 // instructions in the preheader.
725 if (!isa<SCEVUnknown>(Reg) &&
726 !isa<SCEVConstant>(Reg) &&
727 !(isa<SCEVAddRecExpr>(Reg) &&
728 (isa<SCEVUnknown>(cast<SCEVAddRecExpr>(Reg)->getStart()) ||
729 isa<SCEVConstant>(cast<SCEVAddRecExpr>(Reg)->getStart()))))
730 ++SetupCost;
Dan Gohman23c3fde2010-10-07 23:41:58 +0000731
732 NumIVMuls += isa<SCEVMulExpr>(Reg) &&
733 Reg->hasComputableLoopEvolution(L);
Dan Gohman9214b822010-02-13 02:06:02 +0000734}
735
736/// RatePrimaryRegister - Record this register in the set. If we haven't seen it
737/// before, rate it.
738void Cost::RatePrimaryRegister(const SCEV *Reg,
Dan Gohman7fca2292010-02-16 19:42:34 +0000739 SmallPtrSet<const SCEV *, 16> &Regs,
740 const Loop *L,
741 ScalarEvolution &SE, DominatorTree &DT) {
Dan Gohman9214b822010-02-13 02:06:02 +0000742 if (Regs.insert(Reg))
743 RateRegister(Reg, Regs, L, SE, DT);
Dan Gohman572645c2010-02-12 10:34:29 +0000744}
745
746void Cost::RateFormula(const Formula &F,
747 SmallPtrSet<const SCEV *, 16> &Regs,
748 const DenseSet<const SCEV *> &VisitedRegs,
749 const Loop *L,
750 const SmallVectorImpl<int64_t> &Offsets,
751 ScalarEvolution &SE, DominatorTree &DT) {
752 // Tally up the registers.
753 if (const SCEV *ScaledReg = F.ScaledReg) {
754 if (VisitedRegs.count(ScaledReg)) {
755 Loose();
756 return;
757 }
Dan Gohman9214b822010-02-13 02:06:02 +0000758 RatePrimaryRegister(ScaledReg, Regs, L, SE, DT);
Dan Gohman572645c2010-02-12 10:34:29 +0000759 }
760 for (SmallVectorImpl<const SCEV *>::const_iterator I = F.BaseRegs.begin(),
761 E = F.BaseRegs.end(); I != E; ++I) {
762 const SCEV *BaseReg = *I;
763 if (VisitedRegs.count(BaseReg)) {
764 Loose();
765 return;
766 }
Dan Gohman9214b822010-02-13 02:06:02 +0000767 RatePrimaryRegister(BaseReg, Regs, L, SE, DT);
Dan Gohman572645c2010-02-12 10:34:29 +0000768 }
769
770 if (F.BaseRegs.size() > 1)
771 NumBaseAdds += F.BaseRegs.size() - 1;
772
773 // Tally up the non-zero immediates.
774 for (SmallVectorImpl<int64_t>::const_iterator I = Offsets.begin(),
775 E = Offsets.end(); I != E; ++I) {
776 int64_t Offset = (uint64_t)*I + F.AM.BaseOffs;
777 if (F.AM.BaseGV)
778 ImmCost += 64; // Handle symbolic values conservatively.
779 // TODO: This should probably be the pointer size.
780 else if (Offset != 0)
781 ImmCost += APInt(64, Offset, true).getMinSignedBits();
782 }
783}
784
785/// Loose - Set this cost to a loosing value.
786void Cost::Loose() {
787 NumRegs = ~0u;
788 AddRecCost = ~0u;
789 NumIVMuls = ~0u;
790 NumBaseAdds = ~0u;
791 ImmCost = ~0u;
792 SetupCost = ~0u;
793}
794
795/// operator< - Choose the lower cost.
796bool Cost::operator<(const Cost &Other) const {
797 if (NumRegs != Other.NumRegs)
798 return NumRegs < Other.NumRegs;
799 if (AddRecCost != Other.AddRecCost)
800 return AddRecCost < Other.AddRecCost;
801 if (NumIVMuls != Other.NumIVMuls)
802 return NumIVMuls < Other.NumIVMuls;
803 if (NumBaseAdds != Other.NumBaseAdds)
804 return NumBaseAdds < Other.NumBaseAdds;
805 if (ImmCost != Other.ImmCost)
806 return ImmCost < Other.ImmCost;
807 if (SetupCost != Other.SetupCost)
808 return SetupCost < Other.SetupCost;
809 return false;
810}
811
812void Cost::print(raw_ostream &OS) const {
813 OS << NumRegs << " reg" << (NumRegs == 1 ? "" : "s");
814 if (AddRecCost != 0)
815 OS << ", with addrec cost " << AddRecCost;
816 if (NumIVMuls != 0)
817 OS << ", plus " << NumIVMuls << " IV mul" << (NumIVMuls == 1 ? "" : "s");
818 if (NumBaseAdds != 0)
819 OS << ", plus " << NumBaseAdds << " base add"
820 << (NumBaseAdds == 1 ? "" : "s");
821 if (ImmCost != 0)
822 OS << ", plus " << ImmCost << " imm cost";
823 if (SetupCost != 0)
824 OS << ", plus " << SetupCost << " setup cost";
825}
826
827void Cost::dump() const {
828 print(errs()); errs() << '\n';
829}
830
831namespace {
832
833/// LSRFixup - An operand value in an instruction which is to be replaced
834/// with some equivalent, possibly strength-reduced, replacement.
835struct LSRFixup {
836 /// UserInst - The instruction which will be updated.
837 Instruction *UserInst;
838
839 /// OperandValToReplace - The operand of the instruction which will
840 /// be replaced. The operand may be used more than once; every instance
841 /// will be replaced.
842 Value *OperandValToReplace;
843
Dan Gohman448db1c2010-04-07 22:27:08 +0000844 /// PostIncLoops - If this user is to use the post-incremented value of an
Dan Gohman572645c2010-02-12 10:34:29 +0000845 /// induction variable, this variable is non-null and holds the loop
846 /// associated with the induction variable.
Dan Gohman448db1c2010-04-07 22:27:08 +0000847 PostIncLoopSet PostIncLoops;
Dan Gohman572645c2010-02-12 10:34:29 +0000848
849 /// LUIdx - The index of the LSRUse describing the expression which
850 /// this fixup needs, minus an offset (below).
851 size_t LUIdx;
852
853 /// Offset - A constant offset to be added to the LSRUse expression.
854 /// This allows multiple fixups to share the same LSRUse with different
855 /// offsets, for example in an unrolled loop.
856 int64_t Offset;
857
Dan Gohman448db1c2010-04-07 22:27:08 +0000858 bool isUseFullyOutsideLoop(const Loop *L) const;
859
Dan Gohman572645c2010-02-12 10:34:29 +0000860 LSRFixup();
861
862 void print(raw_ostream &OS) const;
863 void dump() const;
864};
865
866}
867
868LSRFixup::LSRFixup()
Dan Gohmanea507f52010-05-20 19:44:23 +0000869 : UserInst(0), OperandValToReplace(0), LUIdx(~size_t(0)), Offset(0) {}
Dan Gohman572645c2010-02-12 10:34:29 +0000870
Dan Gohman448db1c2010-04-07 22:27:08 +0000871/// isUseFullyOutsideLoop - Test whether this fixup always uses its
872/// value outside of the given loop.
873bool LSRFixup::isUseFullyOutsideLoop(const Loop *L) const {
874 // PHI nodes use their value in their incoming blocks.
875 if (const PHINode *PN = dyn_cast<PHINode>(UserInst)) {
876 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
877 if (PN->getIncomingValue(i) == OperandValToReplace &&
878 L->contains(PN->getIncomingBlock(i)))
879 return false;
880 return true;
881 }
882
883 return !L->contains(UserInst);
884}
885
Dan Gohman572645c2010-02-12 10:34:29 +0000886void LSRFixup::print(raw_ostream &OS) const {
887 OS << "UserInst=";
888 // Store is common and interesting enough to be worth special-casing.
889 if (StoreInst *Store = dyn_cast<StoreInst>(UserInst)) {
890 OS << "store ";
891 WriteAsOperand(OS, Store->getOperand(0), /*PrintType=*/false);
892 } else if (UserInst->getType()->isVoidTy())
893 OS << UserInst->getOpcodeName();
894 else
895 WriteAsOperand(OS, UserInst, /*PrintType=*/false);
896
897 OS << ", OperandValToReplace=";
898 WriteAsOperand(OS, OperandValToReplace, /*PrintType=*/false);
899
Dan Gohman448db1c2010-04-07 22:27:08 +0000900 for (PostIncLoopSet::const_iterator I = PostIncLoops.begin(),
901 E = PostIncLoops.end(); I != E; ++I) {
Dan Gohman572645c2010-02-12 10:34:29 +0000902 OS << ", PostIncLoop=";
Dan Gohman448db1c2010-04-07 22:27:08 +0000903 WriteAsOperand(OS, (*I)->getHeader(), /*PrintType=*/false);
Dan Gohman572645c2010-02-12 10:34:29 +0000904 }
905
906 if (LUIdx != ~size_t(0))
907 OS << ", LUIdx=" << LUIdx;
908
909 if (Offset != 0)
910 OS << ", Offset=" << Offset;
911}
912
913void LSRFixup::dump() const {
914 print(errs()); errs() << '\n';
915}
916
917namespace {
918
919/// UniquifierDenseMapInfo - A DenseMapInfo implementation for holding
920/// DenseMaps and DenseSets of sorted SmallVectors of const SCEV*.
921struct UniquifierDenseMapInfo {
922 static SmallVector<const SCEV *, 2> getEmptyKey() {
923 SmallVector<const SCEV *, 2> V;
924 V.push_back(reinterpret_cast<const SCEV *>(-1));
925 return V;
926 }
927
928 static SmallVector<const SCEV *, 2> getTombstoneKey() {
929 SmallVector<const SCEV *, 2> V;
930 V.push_back(reinterpret_cast<const SCEV *>(-2));
931 return V;
932 }
933
934 static unsigned getHashValue(const SmallVector<const SCEV *, 2> &V) {
935 unsigned Result = 0;
936 for (SmallVectorImpl<const SCEV *>::const_iterator I = V.begin(),
937 E = V.end(); I != E; ++I)
938 Result ^= DenseMapInfo<const SCEV *>::getHashValue(*I);
939 return Result;
940 }
941
942 static bool isEqual(const SmallVector<const SCEV *, 2> &LHS,
943 const SmallVector<const SCEV *, 2> &RHS) {
944 return LHS == RHS;
945 }
946};
947
948/// LSRUse - This class holds the state that LSR keeps for each use in
949/// IVUsers, as well as uses invented by LSR itself. It includes information
950/// about what kinds of things can be folded into the user, information about
951/// the user itself, and information about how the use may be satisfied.
952/// TODO: Represent multiple users of the same expression in common?
953class LSRUse {
954 DenseSet<SmallVector<const SCEV *, 2>, UniquifierDenseMapInfo> Uniquifier;
955
956public:
957 /// KindType - An enum for a kind of use, indicating what types of
958 /// scaled and immediate operands it might support.
959 enum KindType {
960 Basic, ///< A normal use, with no folding.
961 Special, ///< A special case of basic, allowing -1 scales.
962 Address, ///< An address use; folding according to TargetLowering
963 ICmpZero ///< An equality icmp with both operands folded into one.
964 // TODO: Add a generic icmp too?
Dan Gohman7979b722010-01-22 00:46:49 +0000965 };
Dan Gohman572645c2010-02-12 10:34:29 +0000966
967 KindType Kind;
968 const Type *AccessTy;
969
970 SmallVector<int64_t, 8> Offsets;
971 int64_t MinOffset;
972 int64_t MaxOffset;
973
974 /// AllFixupsOutsideLoop - This records whether all of the fixups using this
975 /// LSRUse are outside of the loop, in which case some special-case heuristics
976 /// may be used.
977 bool AllFixupsOutsideLoop;
978
Dan Gohmana9db1292010-07-15 20:24:58 +0000979 /// WidestFixupType - This records the widest use type for any fixup using
980 /// this LSRUse. FindUseWithSimilarFormula can't consider uses with different
981 /// max fixup widths to be equivalent, because the narrower one may be relying
982 /// on the implicit truncation to truncate away bogus bits.
983 const Type *WidestFixupType;
984
Dan Gohman572645c2010-02-12 10:34:29 +0000985 /// Formulae - A list of ways to build a value that can satisfy this user.
986 /// After the list is populated, one of these is selected heuristically and
987 /// used to formulate a replacement for OperandValToReplace in UserInst.
988 SmallVector<Formula, 12> Formulae;
989
990 /// Regs - The set of register candidates used by all formulae in this LSRUse.
991 SmallPtrSet<const SCEV *, 4> Regs;
992
993 LSRUse(KindType K, const Type *T) : Kind(K), AccessTy(T),
994 MinOffset(INT64_MAX),
995 MaxOffset(INT64_MIN),
Dan Gohmana9db1292010-07-15 20:24:58 +0000996 AllFixupsOutsideLoop(true),
997 WidestFixupType(0) {}
Dan Gohman572645c2010-02-12 10:34:29 +0000998
Dan Gohmana2086b32010-05-19 23:43:12 +0000999 bool HasFormulaWithSameRegs(const Formula &F) const;
Dan Gohman454d26d2010-02-22 04:11:59 +00001000 bool InsertFormula(const Formula &F);
Dan Gohmand69d6282010-05-18 22:39:15 +00001001 void DeleteFormula(Formula &F);
Dan Gohmanb2df4332010-05-18 23:42:37 +00001002 void RecomputeRegs(size_t LUIdx, RegUseTracker &Reguses);
Dan Gohman572645c2010-02-12 10:34:29 +00001003
Dan Gohman572645c2010-02-12 10:34:29 +00001004 void print(raw_ostream &OS) const;
1005 void dump() const;
1006};
1007
Dan Gohmanb6211712010-06-19 21:21:39 +00001008}
1009
Dan Gohmana2086b32010-05-19 23:43:12 +00001010/// HasFormula - Test whether this use as a formula which has the same
1011/// registers as the given formula.
1012bool LSRUse::HasFormulaWithSameRegs(const Formula &F) const {
1013 SmallVector<const SCEV *, 2> Key = F.BaseRegs;
1014 if (F.ScaledReg) Key.push_back(F.ScaledReg);
1015 // Unstable sort by host order ok, because this is only used for uniquifying.
1016 std::sort(Key.begin(), Key.end());
1017 return Uniquifier.count(Key);
1018}
1019
Dan Gohman572645c2010-02-12 10:34:29 +00001020/// InsertFormula - If the given formula has not yet been inserted, add it to
1021/// the list, and return true. Return false otherwise.
Dan Gohman454d26d2010-02-22 04:11:59 +00001022bool LSRUse::InsertFormula(const Formula &F) {
Dan Gohman572645c2010-02-12 10:34:29 +00001023 SmallVector<const SCEV *, 2> Key = F.BaseRegs;
1024 if (F.ScaledReg) Key.push_back(F.ScaledReg);
1025 // Unstable sort by host order ok, because this is only used for uniquifying.
1026 std::sort(Key.begin(), Key.end());
1027
1028 if (!Uniquifier.insert(Key).second)
1029 return false;
1030
1031 // Using a register to hold the value of 0 is not profitable.
1032 assert((!F.ScaledReg || !F.ScaledReg->isZero()) &&
1033 "Zero allocated in a scaled register!");
1034#ifndef NDEBUG
1035 for (SmallVectorImpl<const SCEV *>::const_iterator I =
1036 F.BaseRegs.begin(), E = F.BaseRegs.end(); I != E; ++I)
1037 assert(!(*I)->isZero() && "Zero allocated in a base register!");
1038#endif
1039
1040 // Add the formula to the list.
1041 Formulae.push_back(F);
1042
1043 // Record registers now being used by this use.
1044 if (F.ScaledReg) Regs.insert(F.ScaledReg);
1045 Regs.insert(F.BaseRegs.begin(), F.BaseRegs.end());
1046
1047 return true;
Dan Gohman7979b722010-01-22 00:46:49 +00001048}
1049
Dan Gohmand69d6282010-05-18 22:39:15 +00001050/// DeleteFormula - Remove the given formula from this use's list.
1051void LSRUse::DeleteFormula(Formula &F) {
Dan Gohman5ce6d052010-05-20 15:17:54 +00001052 if (&F != &Formulae.back())
1053 std::swap(F, Formulae.back());
Dan Gohmand69d6282010-05-18 22:39:15 +00001054 Formulae.pop_back();
Dan Gohmana2086b32010-05-19 23:43:12 +00001055 assert(!Formulae.empty() && "LSRUse has no formulae left!");
Dan Gohmand69d6282010-05-18 22:39:15 +00001056}
1057
Dan Gohmanb2df4332010-05-18 23:42:37 +00001058/// RecomputeRegs - Recompute the Regs field, and update RegUses.
1059void LSRUse::RecomputeRegs(size_t LUIdx, RegUseTracker &RegUses) {
1060 // Now that we've filtered out some formulae, recompute the Regs set.
1061 SmallPtrSet<const SCEV *, 4> OldRegs = Regs;
1062 Regs.clear();
Dan Gohman402d4352010-05-20 20:33:18 +00001063 for (SmallVectorImpl<Formula>::const_iterator I = Formulae.begin(),
1064 E = Formulae.end(); I != E; ++I) {
1065 const Formula &F = *I;
Dan Gohmanb2df4332010-05-18 23:42:37 +00001066 if (F.ScaledReg) Regs.insert(F.ScaledReg);
1067 Regs.insert(F.BaseRegs.begin(), F.BaseRegs.end());
1068 }
1069
1070 // Update the RegTracker.
1071 for (SmallPtrSet<const SCEV *, 4>::iterator I = OldRegs.begin(),
1072 E = OldRegs.end(); I != E; ++I)
1073 if (!Regs.count(*I))
1074 RegUses.DropRegister(*I, LUIdx);
1075}
1076
Dan Gohman572645c2010-02-12 10:34:29 +00001077void LSRUse::print(raw_ostream &OS) const {
1078 OS << "LSR Use: Kind=";
1079 switch (Kind) {
1080 case Basic: OS << "Basic"; break;
1081 case Special: OS << "Special"; break;
1082 case ICmpZero: OS << "ICmpZero"; break;
1083 case Address:
1084 OS << "Address of ";
Duncan Sands1df98592010-02-16 11:11:14 +00001085 if (AccessTy->isPointerTy())
Dan Gohman572645c2010-02-12 10:34:29 +00001086 OS << "pointer"; // the full pointer type could be really verbose
1087 else
1088 OS << *AccessTy;
Evan Chengcdf43b12007-10-25 09:11:16 +00001089 }
1090
Dan Gohman572645c2010-02-12 10:34:29 +00001091 OS << ", Offsets={";
1092 for (SmallVectorImpl<int64_t>::const_iterator I = Offsets.begin(),
1093 E = Offsets.end(); I != E; ++I) {
1094 OS << *I;
Oscar Fuentesee56c422010-08-02 06:00:15 +00001095 if (llvm::next(I) != E)
Dan Gohman572645c2010-02-12 10:34:29 +00001096 OS << ',';
Dan Gohman7979b722010-01-22 00:46:49 +00001097 }
Dan Gohman572645c2010-02-12 10:34:29 +00001098 OS << '}';
Dan Gohman7979b722010-01-22 00:46:49 +00001099
Dan Gohman572645c2010-02-12 10:34:29 +00001100 if (AllFixupsOutsideLoop)
1101 OS << ", all-fixups-outside-loop";
Dan Gohmana9db1292010-07-15 20:24:58 +00001102
1103 if (WidestFixupType)
1104 OS << ", widest fixup type: " << *WidestFixupType;
Dan Gohman7979b722010-01-22 00:46:49 +00001105}
1106
Dan Gohman572645c2010-02-12 10:34:29 +00001107void LSRUse::dump() const {
1108 print(errs()); errs() << '\n';
1109}
Dan Gohman7979b722010-01-22 00:46:49 +00001110
Dan Gohman572645c2010-02-12 10:34:29 +00001111/// isLegalUse - Test whether the use described by AM is "legal", meaning it can
1112/// be completely folded into the user instruction at isel time. This includes
1113/// address-mode folding and special icmp tricks.
1114static bool isLegalUse(const TargetLowering::AddrMode &AM,
1115 LSRUse::KindType Kind, const Type *AccessTy,
1116 const TargetLowering *TLI) {
1117 switch (Kind) {
1118 case LSRUse::Address:
1119 // If we have low-level target information, ask the target if it can
1120 // completely fold this address.
1121 if (TLI) return TLI->isLegalAddressingMode(AM, AccessTy);
1122
1123 // Otherwise, just guess that reg+reg addressing is legal.
1124 return !AM.BaseGV && AM.BaseOffs == 0 && AM.Scale <= 1;
1125
1126 case LSRUse::ICmpZero:
1127 // There's not even a target hook for querying whether it would be legal to
1128 // fold a GV into an ICmp.
1129 if (AM.BaseGV)
1130 return false;
1131
1132 // ICmp only has two operands; don't allow more than two non-trivial parts.
1133 if (AM.Scale != 0 && AM.HasBaseReg && AM.BaseOffs != 0)
1134 return false;
1135
1136 // ICmp only supports no scale or a -1 scale, as we can "fold" a -1 scale by
1137 // putting the scaled register in the other operand of the icmp.
1138 if (AM.Scale != 0 && AM.Scale != -1)
1139 return false;
1140
1141 // If we have low-level target information, ask the target if it can fold an
1142 // integer immediate on an icmp.
1143 if (AM.BaseOffs != 0) {
1144 if (TLI) return TLI->isLegalICmpImmediate(-AM.BaseOffs);
1145 return false;
Dan Gohman7979b722010-01-22 00:46:49 +00001146 }
Dan Gohman572645c2010-02-12 10:34:29 +00001147
1148 return true;
1149
1150 case LSRUse::Basic:
1151 // Only handle single-register values.
1152 return !AM.BaseGV && AM.Scale == 0 && AM.BaseOffs == 0;
1153
1154 case LSRUse::Special:
1155 // Only handle -1 scales, or no scale.
1156 return AM.Scale == 0 || AM.Scale == -1;
Dan Gohman7979b722010-01-22 00:46:49 +00001157 }
1158
Dan Gohman7979b722010-01-22 00:46:49 +00001159 return false;
1160}
1161
Dan Gohman572645c2010-02-12 10:34:29 +00001162static bool isLegalUse(TargetLowering::AddrMode AM,
1163 int64_t MinOffset, int64_t MaxOffset,
1164 LSRUse::KindType Kind, const Type *AccessTy,
1165 const TargetLowering *TLI) {
1166 // Check for overflow.
1167 if (((int64_t)((uint64_t)AM.BaseOffs + MinOffset) > AM.BaseOffs) !=
1168 (MinOffset > 0))
1169 return false;
1170 AM.BaseOffs = (uint64_t)AM.BaseOffs + MinOffset;
1171 if (isLegalUse(AM, Kind, AccessTy, TLI)) {
1172 AM.BaseOffs = (uint64_t)AM.BaseOffs - MinOffset;
1173 // Check for overflow.
1174 if (((int64_t)((uint64_t)AM.BaseOffs + MaxOffset) > AM.BaseOffs) !=
1175 (MaxOffset > 0))
1176 return false;
1177 AM.BaseOffs = (uint64_t)AM.BaseOffs + MaxOffset;
1178 return isLegalUse(AM, Kind, AccessTy, TLI);
Dan Gohman7979b722010-01-22 00:46:49 +00001179 }
Dan Gohman572645c2010-02-12 10:34:29 +00001180 return false;
Dan Gohman7979b722010-01-22 00:46:49 +00001181}
1182
Dan Gohman572645c2010-02-12 10:34:29 +00001183static bool isAlwaysFoldable(int64_t BaseOffs,
1184 GlobalValue *BaseGV,
1185 bool HasBaseReg,
1186 LSRUse::KindType Kind, const Type *AccessTy,
Dan Gohman454d26d2010-02-22 04:11:59 +00001187 const TargetLowering *TLI) {
Dan Gohman572645c2010-02-12 10:34:29 +00001188 // Fast-path: zero is always foldable.
1189 if (BaseOffs == 0 && !BaseGV) return true;
Dan Gohman7979b722010-01-22 00:46:49 +00001190
Dan Gohman572645c2010-02-12 10:34:29 +00001191 // Conservatively, create an address with an immediate and a
1192 // base and a scale.
1193 TargetLowering::AddrMode AM;
1194 AM.BaseOffs = BaseOffs;
1195 AM.BaseGV = BaseGV;
1196 AM.HasBaseReg = HasBaseReg;
1197 AM.Scale = Kind == LSRUse::ICmpZero ? -1 : 1;
Dan Gohman7979b722010-01-22 00:46:49 +00001198
Dan Gohmana2086b32010-05-19 23:43:12 +00001199 // Canonicalize a scale of 1 to a base register if the formula doesn't
1200 // already have a base register.
1201 if (!AM.HasBaseReg && AM.Scale == 1) {
1202 AM.Scale = 0;
1203 AM.HasBaseReg = true;
1204 }
1205
Dan Gohman572645c2010-02-12 10:34:29 +00001206 return isLegalUse(AM, Kind, AccessTy, TLI);
Dan Gohman7979b722010-01-22 00:46:49 +00001207}
1208
Dan Gohman572645c2010-02-12 10:34:29 +00001209static bool isAlwaysFoldable(const SCEV *S,
1210 int64_t MinOffset, int64_t MaxOffset,
1211 bool HasBaseReg,
1212 LSRUse::KindType Kind, const Type *AccessTy,
1213 const TargetLowering *TLI,
1214 ScalarEvolution &SE) {
1215 // Fast-path: zero is always foldable.
1216 if (S->isZero()) return true;
1217
1218 // Conservatively, create an address with an immediate and a
1219 // base and a scale.
1220 int64_t BaseOffs = ExtractImmediate(S, SE);
1221 GlobalValue *BaseGV = ExtractSymbol(S, SE);
1222
1223 // If there's anything else involved, it's not foldable.
1224 if (!S->isZero()) return false;
1225
1226 // Fast-path: zero is always foldable.
1227 if (BaseOffs == 0 && !BaseGV) return true;
1228
1229 // Conservatively, create an address with an immediate and a
1230 // base and a scale.
1231 TargetLowering::AddrMode AM;
1232 AM.BaseOffs = BaseOffs;
1233 AM.BaseGV = BaseGV;
1234 AM.HasBaseReg = HasBaseReg;
1235 AM.Scale = Kind == LSRUse::ICmpZero ? -1 : 1;
1236
1237 return isLegalUse(AM, MinOffset, MaxOffset, Kind, AccessTy, TLI);
Dan Gohman7979b722010-01-22 00:46:49 +00001238}
1239
Dan Gohmanb6211712010-06-19 21:21:39 +00001240namespace {
1241
Dan Gohman1e3121c2010-06-19 21:29:59 +00001242/// UseMapDenseMapInfo - A DenseMapInfo implementation for holding
1243/// DenseMaps and DenseSets of pairs of const SCEV* and LSRUse::Kind.
1244struct UseMapDenseMapInfo {
1245 static std::pair<const SCEV *, LSRUse::KindType> getEmptyKey() {
1246 return std::make_pair(reinterpret_cast<const SCEV *>(-1), LSRUse::Basic);
1247 }
1248
1249 static std::pair<const SCEV *, LSRUse::KindType> getTombstoneKey() {
1250 return std::make_pair(reinterpret_cast<const SCEV *>(-2), LSRUse::Basic);
1251 }
1252
1253 static unsigned
1254 getHashValue(const std::pair<const SCEV *, LSRUse::KindType> &V) {
1255 unsigned Result = DenseMapInfo<const SCEV *>::getHashValue(V.first);
1256 Result ^= DenseMapInfo<unsigned>::getHashValue(unsigned(V.second));
1257 return Result;
1258 }
1259
1260 static bool isEqual(const std::pair<const SCEV *, LSRUse::KindType> &LHS,
1261 const std::pair<const SCEV *, LSRUse::KindType> &RHS) {
1262 return LHS == RHS;
1263 }
1264};
1265
Dan Gohman572645c2010-02-12 10:34:29 +00001266/// LSRInstance - This class holds state for the main loop strength reduction
1267/// logic.
1268class LSRInstance {
1269 IVUsers &IU;
1270 ScalarEvolution &SE;
1271 DominatorTree &DT;
Dan Gohmane5f76872010-04-09 22:07:05 +00001272 LoopInfo &LI;
Dan Gohman572645c2010-02-12 10:34:29 +00001273 const TargetLowering *const TLI;
1274 Loop *const L;
1275 bool Changed;
1276
1277 /// IVIncInsertPos - This is the insert position that the current loop's
1278 /// induction variable increment should be placed. In simple loops, this is
1279 /// the latch block's terminator. But in more complicated cases, this is a
1280 /// position which will dominate all the in-loop post-increment users.
1281 Instruction *IVIncInsertPos;
1282
1283 /// Factors - Interesting factors between use strides.
1284 SmallSetVector<int64_t, 8> Factors;
1285
1286 /// Types - Interesting use types, to facilitate truncation reuse.
1287 SmallSetVector<const Type *, 4> Types;
1288
1289 /// Fixups - The list of operands which are to be replaced.
1290 SmallVector<LSRFixup, 16> Fixups;
1291
1292 /// Uses - The list of interesting uses.
1293 SmallVector<LSRUse, 16> Uses;
1294
1295 /// RegUses - Track which uses use which register candidates.
1296 RegUseTracker RegUses;
1297
1298 void OptimizeShadowIV();
1299 bool FindIVUserForCond(ICmpInst *Cond, IVStrideUse *&CondUse);
1300 ICmpInst *OptimizeMax(ICmpInst *Cond, IVStrideUse* &CondUse);
Dan Gohmanc6519f92010-05-20 20:05:31 +00001301 void OptimizeLoopTermCond();
Dan Gohman572645c2010-02-12 10:34:29 +00001302
1303 void CollectInterestingTypesAndFactors();
1304 void CollectFixupsAndInitialFormulae();
1305
1306 LSRFixup &getNewFixup() {
1307 Fixups.push_back(LSRFixup());
1308 return Fixups.back();
1309 }
1310
1311 // Support for sharing of LSRUses between LSRFixups.
Dan Gohman1e3121c2010-06-19 21:29:59 +00001312 typedef DenseMap<std::pair<const SCEV *, LSRUse::KindType>,
1313 size_t,
1314 UseMapDenseMapInfo> UseMapTy;
Dan Gohman572645c2010-02-12 10:34:29 +00001315 UseMapTy UseMap;
1316
Dan Gohman191bd642010-09-01 01:45:53 +00001317 bool reconcileNewOffset(LSRUse &LU, int64_t NewOffset, bool HasBaseReg,
Dan Gohman572645c2010-02-12 10:34:29 +00001318 LSRUse::KindType Kind, const Type *AccessTy);
1319
1320 std::pair<size_t, int64_t> getUse(const SCEV *&Expr,
1321 LSRUse::KindType Kind,
1322 const Type *AccessTy);
1323
Dan Gohmanc6897702010-10-07 23:33:43 +00001324 void DeleteUse(LSRUse &LU, size_t LUIdx);
Dan Gohman5ce6d052010-05-20 15:17:54 +00001325
Dan Gohman191bd642010-09-01 01:45:53 +00001326 LSRUse *FindUseWithSimilarFormula(const Formula &F, const LSRUse &OrigLU);
Dan Gohmana2086b32010-05-19 23:43:12 +00001327
Dan Gohman572645c2010-02-12 10:34:29 +00001328public:
Dan Gohman454d26d2010-02-22 04:11:59 +00001329 void InsertInitialFormula(const SCEV *S, LSRUse &LU, size_t LUIdx);
Dan Gohman572645c2010-02-12 10:34:29 +00001330 void InsertSupplementalFormula(const SCEV *S, LSRUse &LU, size_t LUIdx);
1331 void CountRegisters(const Formula &F, size_t LUIdx);
1332 bool InsertFormula(LSRUse &LU, unsigned LUIdx, const Formula &F);
1333
1334 void CollectLoopInvariantFixupsAndFormulae();
1335
1336 void GenerateReassociations(LSRUse &LU, unsigned LUIdx, Formula Base,
1337 unsigned Depth = 0);
1338 void GenerateCombinations(LSRUse &LU, unsigned LUIdx, Formula Base);
1339 void GenerateSymbolicOffsets(LSRUse &LU, unsigned LUIdx, Formula Base);
1340 void GenerateConstantOffsets(LSRUse &LU, unsigned LUIdx, Formula Base);
1341 void GenerateICmpZeroScales(LSRUse &LU, unsigned LUIdx, Formula Base);
1342 void GenerateScales(LSRUse &LU, unsigned LUIdx, Formula Base);
1343 void GenerateTruncates(LSRUse &LU, unsigned LUIdx, Formula Base);
1344 void GenerateCrossUseConstantOffsets();
1345 void GenerateAllReuseFormulae();
1346
1347 void FilterOutUndesirableDedicatedRegisters();
Dan Gohmand079c302010-05-18 22:51:59 +00001348
1349 size_t EstimateSearchSpaceComplexity() const;
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00001350 void NarrowSearchSpaceByDetectingSupersets();
1351 void NarrowSearchSpaceByCollapsingUnrolledCode();
Dan Gohman4f7e18d2010-08-29 16:39:22 +00001352 void NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters();
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00001353 void NarrowSearchSpaceByPickingWinnerRegs();
Dan Gohman572645c2010-02-12 10:34:29 +00001354 void NarrowSearchSpaceUsingHeuristics();
1355
1356 void SolveRecurse(SmallVectorImpl<const Formula *> &Solution,
1357 Cost &SolutionCost,
1358 SmallVectorImpl<const Formula *> &Workspace,
1359 const Cost &CurCost,
1360 const SmallPtrSet<const SCEV *, 16> &CurRegs,
1361 DenseSet<const SCEV *> &VisitedRegs) const;
1362 void Solve(SmallVectorImpl<const Formula *> &Solution) const;
1363
Dan Gohmane5f76872010-04-09 22:07:05 +00001364 BasicBlock::iterator
1365 HoistInsertPosition(BasicBlock::iterator IP,
1366 const SmallVectorImpl<Instruction *> &Inputs) const;
1367 BasicBlock::iterator AdjustInsertPositionForExpand(BasicBlock::iterator IP,
1368 const LSRFixup &LF,
1369 const LSRUse &LU) const;
Dan Gohmand96eae82010-04-09 02:00:38 +00001370
Dan Gohman572645c2010-02-12 10:34:29 +00001371 Value *Expand(const LSRFixup &LF,
1372 const Formula &F,
Dan Gohman454d26d2010-02-22 04:11:59 +00001373 BasicBlock::iterator IP,
Dan Gohman572645c2010-02-12 10:34:29 +00001374 SCEVExpander &Rewriter,
Dan Gohman454d26d2010-02-22 04:11:59 +00001375 SmallVectorImpl<WeakVH> &DeadInsts) const;
Dan Gohman3a02cbc2010-02-16 20:25:07 +00001376 void RewriteForPHI(PHINode *PN, const LSRFixup &LF,
1377 const Formula &F,
Dan Gohman3a02cbc2010-02-16 20:25:07 +00001378 SCEVExpander &Rewriter,
1379 SmallVectorImpl<WeakVH> &DeadInsts,
Dan Gohman3a02cbc2010-02-16 20:25:07 +00001380 Pass *P) const;
Dan Gohman572645c2010-02-12 10:34:29 +00001381 void Rewrite(const LSRFixup &LF,
1382 const Formula &F,
Dan Gohman572645c2010-02-12 10:34:29 +00001383 SCEVExpander &Rewriter,
1384 SmallVectorImpl<WeakVH> &DeadInsts,
Dan Gohman572645c2010-02-12 10:34:29 +00001385 Pass *P) const;
1386 void ImplementSolution(const SmallVectorImpl<const Formula *> &Solution,
1387 Pass *P);
1388
1389 LSRInstance(const TargetLowering *tli, Loop *l, Pass *P);
1390
1391 bool getChanged() const { return Changed; }
1392
1393 void print_factors_and_types(raw_ostream &OS) const;
1394 void print_fixups(raw_ostream &OS) const;
1395 void print_uses(raw_ostream &OS) const;
1396 void print(raw_ostream &OS) const;
1397 void dump() const;
1398};
1399
1400}
1401
1402/// OptimizeShadowIV - If IV is used in a int-to-float cast
Dan Gohman3f46a3a2010-03-01 17:49:51 +00001403/// inside the loop then try to eliminate the cast operation.
Dan Gohman572645c2010-02-12 10:34:29 +00001404void LSRInstance::OptimizeShadowIV() {
1405 const SCEV *BackedgeTakenCount = SE.getBackedgeTakenCount(L);
1406 if (isa<SCEVCouldNotCompute>(BackedgeTakenCount))
1407 return;
1408
1409 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end();
1410 UI != E; /* empty */) {
1411 IVUsers::const_iterator CandidateUI = UI;
1412 ++UI;
1413 Instruction *ShadowUse = CandidateUI->getUser();
1414 const Type *DestTy = NULL;
1415
1416 /* If shadow use is a int->float cast then insert a second IV
1417 to eliminate this cast.
1418
1419 for (unsigned i = 0; i < n; ++i)
1420 foo((double)i);
1421
1422 is transformed into
1423
1424 double d = 0.0;
1425 for (unsigned i = 0; i < n; ++i, ++d)
1426 foo(d);
1427 */
1428 if (UIToFPInst *UCast = dyn_cast<UIToFPInst>(CandidateUI->getUser()))
1429 DestTy = UCast->getDestTy();
1430 else if (SIToFPInst *SCast = dyn_cast<SIToFPInst>(CandidateUI->getUser()))
1431 DestTy = SCast->getDestTy();
1432 if (!DestTy) continue;
1433
1434 if (TLI) {
1435 // If target does not support DestTy natively then do not apply
1436 // this transformation.
1437 EVT DVT = TLI->getValueType(DestTy);
1438 if (!TLI->isTypeLegal(DVT)) continue;
1439 }
1440
1441 PHINode *PH = dyn_cast<PHINode>(ShadowUse->getOperand(0));
1442 if (!PH) continue;
1443 if (PH->getNumIncomingValues() != 2) continue;
1444
1445 const Type *SrcTy = PH->getType();
1446 int Mantissa = DestTy->getFPMantissaWidth();
1447 if (Mantissa == -1) continue;
1448 if ((int)SE.getTypeSizeInBits(SrcTy) > Mantissa)
1449 continue;
1450
1451 unsigned Entry, Latch;
1452 if (PH->getIncomingBlock(0) == L->getLoopPreheader()) {
1453 Entry = 0;
1454 Latch = 1;
Dan Gohman7979b722010-01-22 00:46:49 +00001455 } else {
Dan Gohman572645c2010-02-12 10:34:29 +00001456 Entry = 1;
1457 Latch = 0;
Dan Gohman7979b722010-01-22 00:46:49 +00001458 }
Dan Gohman7979b722010-01-22 00:46:49 +00001459
Dan Gohman572645c2010-02-12 10:34:29 +00001460 ConstantInt *Init = dyn_cast<ConstantInt>(PH->getIncomingValue(Entry));
1461 if (!Init) continue;
1462 Constant *NewInit = ConstantFP::get(DestTy, Init->getZExtValue());
Dan Gohman7979b722010-01-22 00:46:49 +00001463
Dan Gohman572645c2010-02-12 10:34:29 +00001464 BinaryOperator *Incr =
1465 dyn_cast<BinaryOperator>(PH->getIncomingValue(Latch));
1466 if (!Incr) continue;
1467 if (Incr->getOpcode() != Instruction::Add
1468 && Incr->getOpcode() != Instruction::Sub)
Dan Gohman7979b722010-01-22 00:46:49 +00001469 continue;
Dan Gohman7979b722010-01-22 00:46:49 +00001470
Dan Gohman572645c2010-02-12 10:34:29 +00001471 /* Initialize new IV, double d = 0.0 in above example. */
1472 ConstantInt *C = NULL;
1473 if (Incr->getOperand(0) == PH)
1474 C = dyn_cast<ConstantInt>(Incr->getOperand(1));
1475 else if (Incr->getOperand(1) == PH)
1476 C = dyn_cast<ConstantInt>(Incr->getOperand(0));
Dan Gohman7979b722010-01-22 00:46:49 +00001477 else
Dan Gohman7979b722010-01-22 00:46:49 +00001478 continue;
1479
Dan Gohman572645c2010-02-12 10:34:29 +00001480 if (!C) continue;
Dan Gohman7979b722010-01-22 00:46:49 +00001481
Dan Gohman572645c2010-02-12 10:34:29 +00001482 // Ignore negative constants, as the code below doesn't handle them
1483 // correctly. TODO: Remove this restriction.
1484 if (!C->getValue().isStrictlyPositive()) continue;
Dan Gohman7979b722010-01-22 00:46:49 +00001485
Dan Gohman572645c2010-02-12 10:34:29 +00001486 /* Add new PHINode. */
1487 PHINode *NewPH = PHINode::Create(DestTy, "IV.S.", PH);
Dan Gohman7979b722010-01-22 00:46:49 +00001488
Dan Gohman572645c2010-02-12 10:34:29 +00001489 /* create new increment. '++d' in above example. */
1490 Constant *CFP = ConstantFP::get(DestTy, C->getZExtValue());
1491 BinaryOperator *NewIncr =
1492 BinaryOperator::Create(Incr->getOpcode() == Instruction::Add ?
1493 Instruction::FAdd : Instruction::FSub,
1494 NewPH, CFP, "IV.S.next.", Incr);
Dan Gohman7979b722010-01-22 00:46:49 +00001495
Dan Gohman572645c2010-02-12 10:34:29 +00001496 NewPH->addIncoming(NewInit, PH->getIncomingBlock(Entry));
1497 NewPH->addIncoming(NewIncr, PH->getIncomingBlock(Latch));
Dan Gohman7979b722010-01-22 00:46:49 +00001498
Dan Gohman572645c2010-02-12 10:34:29 +00001499 /* Remove cast operation */
1500 ShadowUse->replaceAllUsesWith(NewPH);
1501 ShadowUse->eraseFromParent();
Dan Gohmanc6519f92010-05-20 20:05:31 +00001502 Changed = true;
Dan Gohman572645c2010-02-12 10:34:29 +00001503 break;
Dan Gohman7979b722010-01-22 00:46:49 +00001504 }
1505}
1506
1507/// FindIVUserForCond - If Cond has an operand that is an expression of an IV,
1508/// set the IV user and stride information and return true, otherwise return
1509/// false.
Dan Gohmanea507f52010-05-20 19:44:23 +00001510bool LSRInstance::FindIVUserForCond(ICmpInst *Cond, IVStrideUse *&CondUse) {
Dan Gohman572645c2010-02-12 10:34:29 +00001511 for (IVUsers::iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI)
1512 if (UI->getUser() == Cond) {
1513 // NOTE: we could handle setcc instructions with multiple uses here, but
1514 // InstCombine does it as well for simple uses, it's not clear that it
1515 // occurs enough in real life to handle.
1516 CondUse = UI;
1517 return true;
1518 }
Dan Gohman7979b722010-01-22 00:46:49 +00001519 return false;
Evan Chengcdf43b12007-10-25 09:11:16 +00001520}
1521
Dan Gohman7979b722010-01-22 00:46:49 +00001522/// OptimizeMax - Rewrite the loop's terminating condition if it uses
1523/// a max computation.
1524///
1525/// This is a narrow solution to a specific, but acute, problem. For loops
1526/// like this:
1527///
1528/// i = 0;
1529/// do {
1530/// p[i] = 0.0;
1531/// } while (++i < n);
1532///
1533/// the trip count isn't just 'n', because 'n' might not be positive. And
1534/// unfortunately this can come up even for loops where the user didn't use
1535/// a C do-while loop. For example, seemingly well-behaved top-test loops
1536/// will commonly be lowered like this:
1537//
1538/// if (n > 0) {
1539/// i = 0;
1540/// do {
1541/// p[i] = 0.0;
1542/// } while (++i < n);
1543/// }
1544///
1545/// and then it's possible for subsequent optimization to obscure the if
1546/// test in such a way that indvars can't find it.
1547///
1548/// When indvars can't find the if test in loops like this, it creates a
1549/// max expression, which allows it to give the loop a canonical
1550/// induction variable:
1551///
1552/// i = 0;
1553/// max = n < 1 ? 1 : n;
1554/// do {
1555/// p[i] = 0.0;
1556/// } while (++i != max);
1557///
1558/// Canonical induction variables are necessary because the loop passes
1559/// are designed around them. The most obvious example of this is the
1560/// LoopInfo analysis, which doesn't remember trip count values. It
1561/// expects to be able to rediscover the trip count each time it is
Dan Gohman572645c2010-02-12 10:34:29 +00001562/// needed, and it does this using a simple analysis that only succeeds if
Dan Gohman7979b722010-01-22 00:46:49 +00001563/// the loop has a canonical induction variable.
1564///
1565/// However, when it comes time to generate code, the maximum operation
1566/// can be quite costly, especially if it's inside of an outer loop.
1567///
1568/// This function solves this problem by detecting this type of loop and
1569/// rewriting their conditions from ICMP_NE back to ICMP_SLT, and deleting
1570/// the instructions for the maximum computation.
1571///
Dan Gohman572645c2010-02-12 10:34:29 +00001572ICmpInst *LSRInstance::OptimizeMax(ICmpInst *Cond, IVStrideUse* &CondUse) {
Dan Gohman7979b722010-01-22 00:46:49 +00001573 // Check that the loop matches the pattern we're looking for.
1574 if (Cond->getPredicate() != CmpInst::ICMP_EQ &&
1575 Cond->getPredicate() != CmpInst::ICMP_NE)
1576 return Cond;
Dan Gohmana10756e2010-01-21 02:09:26 +00001577
Dan Gohman7979b722010-01-22 00:46:49 +00001578 SelectInst *Sel = dyn_cast<SelectInst>(Cond->getOperand(1));
1579 if (!Sel || !Sel->hasOneUse()) return Cond;
Dan Gohmana10756e2010-01-21 02:09:26 +00001580
Dan Gohman572645c2010-02-12 10:34:29 +00001581 const SCEV *BackedgeTakenCount = SE.getBackedgeTakenCount(L);
Dan Gohman7979b722010-01-22 00:46:49 +00001582 if (isa<SCEVCouldNotCompute>(BackedgeTakenCount))
1583 return Cond;
Dan Gohmandeff6212010-05-03 22:09:21 +00001584 const SCEV *One = SE.getConstant(BackedgeTakenCount->getType(), 1);
Dan Gohmana10756e2010-01-21 02:09:26 +00001585
Dan Gohman7979b722010-01-22 00:46:49 +00001586 // Add one to the backedge-taken count to get the trip count.
Dan Gohman4065f602010-08-16 15:39:27 +00001587 const SCEV *IterationCount = SE.getAddExpr(One, BackedgeTakenCount);
Dan Gohman1d367982010-04-24 03:13:44 +00001588 if (IterationCount != SE.getSCEV(Sel)) return Cond;
Dan Gohman7979b722010-01-22 00:46:49 +00001589
Dan Gohman1d367982010-04-24 03:13:44 +00001590 // Check for a max calculation that matches the pattern. There's no check
1591 // for ICMP_ULE here because the comparison would be with zero, which
1592 // isn't interesting.
1593 CmpInst::Predicate Pred = ICmpInst::BAD_ICMP_PREDICATE;
1594 const SCEVNAryExpr *Max = 0;
1595 if (const SCEVSMaxExpr *S = dyn_cast<SCEVSMaxExpr>(BackedgeTakenCount)) {
1596 Pred = ICmpInst::ICMP_SLE;
1597 Max = S;
1598 } else if (const SCEVSMaxExpr *S = dyn_cast<SCEVSMaxExpr>(IterationCount)) {
1599 Pred = ICmpInst::ICMP_SLT;
1600 Max = S;
1601 } else if (const SCEVUMaxExpr *U = dyn_cast<SCEVUMaxExpr>(IterationCount)) {
1602 Pred = ICmpInst::ICMP_ULT;
1603 Max = U;
1604 } else {
1605 // No match; bail.
Dan Gohman7979b722010-01-22 00:46:49 +00001606 return Cond;
Dan Gohman1d367982010-04-24 03:13:44 +00001607 }
Dan Gohman7979b722010-01-22 00:46:49 +00001608
1609 // To handle a max with more than two operands, this optimization would
1610 // require additional checking and setup.
1611 if (Max->getNumOperands() != 2)
1612 return Cond;
1613
1614 const SCEV *MaxLHS = Max->getOperand(0);
1615 const SCEV *MaxRHS = Max->getOperand(1);
Dan Gohman1d367982010-04-24 03:13:44 +00001616
1617 // ScalarEvolution canonicalizes constants to the left. For < and >, look
1618 // for a comparison with 1. For <= and >=, a comparison with zero.
1619 if (!MaxLHS ||
1620 (ICmpInst::isTrueWhenEqual(Pred) ? !MaxLHS->isZero() : (MaxLHS != One)))
1621 return Cond;
1622
Dan Gohman7979b722010-01-22 00:46:49 +00001623 // Check the relevant induction variable for conformance to
1624 // the pattern.
Dan Gohman572645c2010-02-12 10:34:29 +00001625 const SCEV *IV = SE.getSCEV(Cond->getOperand(0));
Dan Gohman7979b722010-01-22 00:46:49 +00001626 const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(IV);
1627 if (!AR || !AR->isAffine() ||
1628 AR->getStart() != One ||
Dan Gohman572645c2010-02-12 10:34:29 +00001629 AR->getStepRecurrence(SE) != One)
Dan Gohman7979b722010-01-22 00:46:49 +00001630 return Cond;
1631
1632 assert(AR->getLoop() == L &&
1633 "Loop condition operand is an addrec in a different loop!");
1634
1635 // Check the right operand of the select, and remember it, as it will
1636 // be used in the new comparison instruction.
1637 Value *NewRHS = 0;
Dan Gohman1d367982010-04-24 03:13:44 +00001638 if (ICmpInst::isTrueWhenEqual(Pred)) {
1639 // Look for n+1, and grab n.
1640 if (AddOperator *BO = dyn_cast<AddOperator>(Sel->getOperand(1)))
1641 if (isa<ConstantInt>(BO->getOperand(1)) &&
1642 cast<ConstantInt>(BO->getOperand(1))->isOne() &&
1643 SE.getSCEV(BO->getOperand(0)) == MaxRHS)
1644 NewRHS = BO->getOperand(0);
1645 if (AddOperator *BO = dyn_cast<AddOperator>(Sel->getOperand(2)))
1646 if (isa<ConstantInt>(BO->getOperand(1)) &&
1647 cast<ConstantInt>(BO->getOperand(1))->isOne() &&
1648 SE.getSCEV(BO->getOperand(0)) == MaxRHS)
1649 NewRHS = BO->getOperand(0);
1650 if (!NewRHS)
1651 return Cond;
1652 } else if (SE.getSCEV(Sel->getOperand(1)) == MaxRHS)
Dan Gohman7979b722010-01-22 00:46:49 +00001653 NewRHS = Sel->getOperand(1);
Dan Gohman572645c2010-02-12 10:34:29 +00001654 else if (SE.getSCEV(Sel->getOperand(2)) == MaxRHS)
Dan Gohman7979b722010-01-22 00:46:49 +00001655 NewRHS = Sel->getOperand(2);
Dan Gohmancaf71ab2010-06-22 23:07:13 +00001656 else if (const SCEVUnknown *SU = dyn_cast<SCEVUnknown>(MaxRHS))
1657 NewRHS = SU->getValue();
Dan Gohman1d367982010-04-24 03:13:44 +00001658 else
Dan Gohmancaf71ab2010-06-22 23:07:13 +00001659 // Max doesn't match expected pattern.
1660 return Cond;
Dan Gohman7979b722010-01-22 00:46:49 +00001661
1662 // Determine the new comparison opcode. It may be signed or unsigned,
1663 // and the original comparison may be either equality or inequality.
Dan Gohman7979b722010-01-22 00:46:49 +00001664 if (Cond->getPredicate() == CmpInst::ICMP_EQ)
1665 Pred = CmpInst::getInversePredicate(Pred);
1666
1667 // Ok, everything looks ok to change the condition into an SLT or SGE and
1668 // delete the max calculation.
1669 ICmpInst *NewCond =
1670 new ICmpInst(Cond, Pred, Cond->getOperand(0), NewRHS, "scmp");
1671
1672 // Delete the max calculation instructions.
1673 Cond->replaceAllUsesWith(NewCond);
1674 CondUse->setUser(NewCond);
1675 Instruction *Cmp = cast<Instruction>(Sel->getOperand(0));
1676 Cond->eraseFromParent();
1677 Sel->eraseFromParent();
1678 if (Cmp->use_empty())
1679 Cmp->eraseFromParent();
1680 return NewCond;
Dan Gohmanad7321f2008-09-15 21:22:06 +00001681}
1682
Jim Grosbach56a1f802009-11-17 17:53:56 +00001683/// OptimizeLoopTermCond - Change loop terminating condition to use the
Evan Cheng586f69a2009-11-12 07:35:05 +00001684/// postinc iv when possible.
Dan Gohmanc6519f92010-05-20 20:05:31 +00001685void
Dan Gohman572645c2010-02-12 10:34:29 +00001686LSRInstance::OptimizeLoopTermCond() {
1687 SmallPtrSet<Instruction *, 4> PostIncs;
1688
Evan Cheng586f69a2009-11-12 07:35:05 +00001689 BasicBlock *LatchBlock = L->getLoopLatch();
Evan Cheng076e0852009-11-17 18:10:11 +00001690 SmallVector<BasicBlock*, 8> ExitingBlocks;
1691 L->getExitingBlocks(ExitingBlocks);
Jim Grosbach56a1f802009-11-17 17:53:56 +00001692
Evan Cheng076e0852009-11-17 18:10:11 +00001693 for (unsigned i = 0, e = ExitingBlocks.size(); i != e; ++i) {
1694 BasicBlock *ExitingBlock = ExitingBlocks[i];
Evan Cheng586f69a2009-11-12 07:35:05 +00001695
Dan Gohman572645c2010-02-12 10:34:29 +00001696 // Get the terminating condition for the loop if possible. If we
Evan Cheng076e0852009-11-17 18:10:11 +00001697 // can, we want to change it to use a post-incremented version of its
1698 // induction variable, to allow coalescing the live ranges for the IV into
1699 // one register value.
Evan Cheng586f69a2009-11-12 07:35:05 +00001700
Evan Cheng076e0852009-11-17 18:10:11 +00001701 BranchInst *TermBr = dyn_cast<BranchInst>(ExitingBlock->getTerminator());
1702 if (!TermBr)
1703 continue;
1704 // FIXME: Overly conservative, termination condition could be an 'or' etc..
1705 if (TermBr->isUnconditional() || !isa<ICmpInst>(TermBr->getCondition()))
1706 continue;
Evan Cheng586f69a2009-11-12 07:35:05 +00001707
Evan Cheng076e0852009-11-17 18:10:11 +00001708 // Search IVUsesByStride to find Cond's IVUse if there is one.
1709 IVStrideUse *CondUse = 0;
Evan Cheng076e0852009-11-17 18:10:11 +00001710 ICmpInst *Cond = cast<ICmpInst>(TermBr->getCondition());
Dan Gohman572645c2010-02-12 10:34:29 +00001711 if (!FindIVUserForCond(Cond, CondUse))
Evan Cheng076e0852009-11-17 18:10:11 +00001712 continue;
1713
Evan Cheng076e0852009-11-17 18:10:11 +00001714 // If the trip count is computed in terms of a max (due to ScalarEvolution
1715 // being unable to find a sufficient guard, for example), change the loop
1716 // comparison to use SLT or ULT instead of NE.
Dan Gohman572645c2010-02-12 10:34:29 +00001717 // One consequence of doing this now is that it disrupts the count-down
1718 // optimization. That's not always a bad thing though, because in such
1719 // cases it may still be worthwhile to avoid a max.
1720 Cond = OptimizeMax(Cond, CondUse);
Evan Cheng076e0852009-11-17 18:10:11 +00001721
Dan Gohman572645c2010-02-12 10:34:29 +00001722 // If this exiting block dominates the latch block, it may also use
1723 // the post-inc value if it won't be shared with other uses.
1724 // Check for dominance.
1725 if (!DT.dominates(ExitingBlock, LatchBlock))
Dan Gohman7979b722010-01-22 00:46:49 +00001726 continue;
Evan Cheng076e0852009-11-17 18:10:11 +00001727
Dan Gohman572645c2010-02-12 10:34:29 +00001728 // Conservatively avoid trying to use the post-inc value in non-latch
1729 // exits if there may be pre-inc users in intervening blocks.
Dan Gohman590bfe82010-02-14 03:21:49 +00001730 if (LatchBlock != ExitingBlock)
Dan Gohman572645c2010-02-12 10:34:29 +00001731 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI)
1732 // Test if the use is reachable from the exiting block. This dominator
1733 // query is a conservative approximation of reachability.
1734 if (&*UI != CondUse &&
1735 !DT.properlyDominates(UI->getUser()->getParent(), ExitingBlock)) {
1736 // Conservatively assume there may be reuse if the quotient of their
1737 // strides could be a legal scale.
Dan Gohmanc0564542010-04-19 21:48:58 +00001738 const SCEV *A = IU.getStride(*CondUse, L);
1739 const SCEV *B = IU.getStride(*UI, L);
Dan Gohman448db1c2010-04-07 22:27:08 +00001740 if (!A || !B) continue;
Dan Gohman572645c2010-02-12 10:34:29 +00001741 if (SE.getTypeSizeInBits(A->getType()) !=
1742 SE.getTypeSizeInBits(B->getType())) {
1743 if (SE.getTypeSizeInBits(A->getType()) >
1744 SE.getTypeSizeInBits(B->getType()))
1745 B = SE.getSignExtendExpr(B, A->getType());
1746 else
1747 A = SE.getSignExtendExpr(A, B->getType());
1748 }
1749 if (const SCEVConstant *D =
Dan Gohmanf09b7122010-02-19 19:35:48 +00001750 dyn_cast_or_null<SCEVConstant>(getExactSDiv(B, A, SE))) {
Dan Gohman9f383eb2010-05-20 22:25:20 +00001751 const ConstantInt *C = D->getValue();
Dan Gohman572645c2010-02-12 10:34:29 +00001752 // Stride of one or negative one can have reuse with non-addresses.
Dan Gohman9f383eb2010-05-20 22:25:20 +00001753 if (C->isOne() || C->isAllOnesValue())
Dan Gohman572645c2010-02-12 10:34:29 +00001754 goto decline_post_inc;
1755 // Avoid weird situations.
Dan Gohman9f383eb2010-05-20 22:25:20 +00001756 if (C->getValue().getMinSignedBits() >= 64 ||
1757 C->getValue().isMinSignedValue())
Dan Gohman572645c2010-02-12 10:34:29 +00001758 goto decline_post_inc;
Dan Gohman590bfe82010-02-14 03:21:49 +00001759 // Without TLI, assume that any stride might be valid, and so any
1760 // use might be shared.
1761 if (!TLI)
1762 goto decline_post_inc;
Dan Gohman572645c2010-02-12 10:34:29 +00001763 // Check for possible scaled-address reuse.
1764 const Type *AccessTy = getAccessType(UI->getUser());
1765 TargetLowering::AddrMode AM;
Dan Gohman9f383eb2010-05-20 22:25:20 +00001766 AM.Scale = C->getSExtValue();
Dan Gohman2763dfd2010-02-14 02:45:21 +00001767 if (TLI->isLegalAddressingMode(AM, AccessTy))
Dan Gohman572645c2010-02-12 10:34:29 +00001768 goto decline_post_inc;
1769 AM.Scale = -AM.Scale;
Dan Gohman2763dfd2010-02-14 02:45:21 +00001770 if (TLI->isLegalAddressingMode(AM, AccessTy))
Dan Gohman572645c2010-02-12 10:34:29 +00001771 goto decline_post_inc;
1772 }
1773 }
1774
David Greene63c94632009-12-23 22:58:38 +00001775 DEBUG(dbgs() << " Change loop exiting icmp to use postinc iv: "
Dan Gohman572645c2010-02-12 10:34:29 +00001776 << *Cond << '\n');
Evan Cheng076e0852009-11-17 18:10:11 +00001777
1778 // It's possible for the setcc instruction to be anywhere in the loop, and
1779 // possible for it to have multiple users. If it is not immediately before
1780 // the exiting block branch, move it.
Dan Gohman572645c2010-02-12 10:34:29 +00001781 if (&*++BasicBlock::iterator(Cond) != TermBr) {
1782 if (Cond->hasOneUse()) {
Evan Cheng076e0852009-11-17 18:10:11 +00001783 Cond->moveBefore(TermBr);
1784 } else {
Dan Gohman572645c2010-02-12 10:34:29 +00001785 // Clone the terminating condition and insert into the loopend.
1786 ICmpInst *OldCond = Cond;
Evan Cheng076e0852009-11-17 18:10:11 +00001787 Cond = cast<ICmpInst>(Cond->clone());
1788 Cond->setName(L->getHeader()->getName() + ".termcond");
1789 ExitingBlock->getInstList().insert(TermBr, Cond);
1790
1791 // Clone the IVUse, as the old use still exists!
Dan Gohmanc0564542010-04-19 21:48:58 +00001792 CondUse = &IU.AddUser(Cond, CondUse->getOperandValToReplace());
Dan Gohman572645c2010-02-12 10:34:29 +00001793 TermBr->replaceUsesOfWith(OldCond, Cond);
Evan Cheng076e0852009-11-17 18:10:11 +00001794 }
Evan Cheng586f69a2009-11-12 07:35:05 +00001795 }
1796
Evan Cheng076e0852009-11-17 18:10:11 +00001797 // If we get to here, we know that we can transform the setcc instruction to
1798 // use the post-incremented version of the IV, allowing us to coalesce the
1799 // live ranges for the IV correctly.
Dan Gohman448db1c2010-04-07 22:27:08 +00001800 CondUse->transformToPostInc(L);
Evan Cheng076e0852009-11-17 18:10:11 +00001801 Changed = true;
1802
Dan Gohman572645c2010-02-12 10:34:29 +00001803 PostIncs.insert(Cond);
1804 decline_post_inc:;
Dan Gohmana10756e2010-01-21 02:09:26 +00001805 }
Dan Gohman572645c2010-02-12 10:34:29 +00001806
1807 // Determine an insertion point for the loop induction variable increment. It
1808 // must dominate all the post-inc comparisons we just set up, and it must
1809 // dominate the loop latch edge.
1810 IVIncInsertPos = L->getLoopLatch()->getTerminator();
1811 for (SmallPtrSet<Instruction *, 4>::const_iterator I = PostIncs.begin(),
1812 E = PostIncs.end(); I != E; ++I) {
1813 BasicBlock *BB =
1814 DT.findNearestCommonDominator(IVIncInsertPos->getParent(),
1815 (*I)->getParent());
1816 if (BB == (*I)->getParent())
1817 IVIncInsertPos = *I;
1818 else if (BB != IVIncInsertPos->getParent())
1819 IVIncInsertPos = BB->getTerminator();
1820 }
Dan Gohmana10756e2010-01-21 02:09:26 +00001821}
1822
Dan Gohman76c315a2010-05-20 20:52:00 +00001823/// reconcileNewOffset - Determine if the given use can accomodate a fixup
1824/// at the given offset and other details. If so, update the use and
1825/// return true.
Dan Gohman572645c2010-02-12 10:34:29 +00001826bool
Dan Gohman191bd642010-09-01 01:45:53 +00001827LSRInstance::reconcileNewOffset(LSRUse &LU, int64_t NewOffset, bool HasBaseReg,
Dan Gohman572645c2010-02-12 10:34:29 +00001828 LSRUse::KindType Kind, const Type *AccessTy) {
Dan Gohman191bd642010-09-01 01:45:53 +00001829 int64_t NewMinOffset = LU.MinOffset;
1830 int64_t NewMaxOffset = LU.MaxOffset;
1831 const Type *NewAccessTy = AccessTy;
Dan Gohman7979b722010-01-22 00:46:49 +00001832
Dan Gohman572645c2010-02-12 10:34:29 +00001833 // Check for a mismatched kind. It's tempting to collapse mismatched kinds to
1834 // something conservative, however this can pessimize in the case that one of
1835 // the uses will have all its uses outside the loop, for example.
1836 if (LU.Kind != Kind)
Dan Gohman7979b722010-01-22 00:46:49 +00001837 return false;
Dan Gohman572645c2010-02-12 10:34:29 +00001838 // Conservatively assume HasBaseReg is true for now.
Dan Gohman191bd642010-09-01 01:45:53 +00001839 if (NewOffset < LU.MinOffset) {
1840 if (!isAlwaysFoldable(LU.MaxOffset - NewOffset, 0, HasBaseReg,
Dan Gohman454d26d2010-02-22 04:11:59 +00001841 Kind, AccessTy, TLI))
Dan Gohman7979b722010-01-22 00:46:49 +00001842 return false;
Dan Gohman191bd642010-09-01 01:45:53 +00001843 NewMinOffset = NewOffset;
1844 } else if (NewOffset > LU.MaxOffset) {
1845 if (!isAlwaysFoldable(NewOffset - LU.MinOffset, 0, HasBaseReg,
Dan Gohman454d26d2010-02-22 04:11:59 +00001846 Kind, AccessTy, TLI))
Dan Gohman7979b722010-01-22 00:46:49 +00001847 return false;
Dan Gohman191bd642010-09-01 01:45:53 +00001848 NewMaxOffset = NewOffset;
Dan Gohmana10756e2010-01-21 02:09:26 +00001849 }
Dan Gohman572645c2010-02-12 10:34:29 +00001850 // Check for a mismatched access type, and fall back conservatively as needed.
Dan Gohman74e5ef02010-06-19 21:30:18 +00001851 // TODO: Be less conservative when the type is similar and can use the same
1852 // addressing modes.
Dan Gohman572645c2010-02-12 10:34:29 +00001853 if (Kind == LSRUse::Address && AccessTy != LU.AccessTy)
Dan Gohman191bd642010-09-01 01:45:53 +00001854 NewAccessTy = Type::getVoidTy(AccessTy->getContext());
Dan Gohmana10756e2010-01-21 02:09:26 +00001855
Dan Gohman572645c2010-02-12 10:34:29 +00001856 // Update the use.
Dan Gohman191bd642010-09-01 01:45:53 +00001857 LU.MinOffset = NewMinOffset;
1858 LU.MaxOffset = NewMaxOffset;
1859 LU.AccessTy = NewAccessTy;
1860 if (NewOffset != LU.Offsets.back())
1861 LU.Offsets.push_back(NewOffset);
Dan Gohman8b0ade32010-01-21 22:42:49 +00001862 return true;
1863}
1864
Dan Gohman572645c2010-02-12 10:34:29 +00001865/// getUse - Return an LSRUse index and an offset value for a fixup which
1866/// needs the given expression, with the given kind and optional access type.
Dan Gohman3f46a3a2010-03-01 17:49:51 +00001867/// Either reuse an existing use or create a new one, as needed.
Dan Gohman572645c2010-02-12 10:34:29 +00001868std::pair<size_t, int64_t>
1869LSRInstance::getUse(const SCEV *&Expr,
1870 LSRUse::KindType Kind, const Type *AccessTy) {
1871 const SCEV *Copy = Expr;
1872 int64_t Offset = ExtractImmediate(Expr, SE);
Evan Cheng586f69a2009-11-12 07:35:05 +00001873
Dan Gohman572645c2010-02-12 10:34:29 +00001874 // Basic uses can't accept any offset, for example.
Dan Gohman454d26d2010-02-22 04:11:59 +00001875 if (!isAlwaysFoldable(Offset, 0, /*HasBaseReg=*/true, Kind, AccessTy, TLI)) {
Dan Gohman572645c2010-02-12 10:34:29 +00001876 Expr = Copy;
1877 Offset = 0;
1878 }
1879
1880 std::pair<UseMapTy::iterator, bool> P =
Dan Gohman1e3121c2010-06-19 21:29:59 +00001881 UseMap.insert(std::make_pair(std::make_pair(Expr, Kind), 0));
Dan Gohman572645c2010-02-12 10:34:29 +00001882 if (!P.second) {
1883 // A use already existed with this base.
1884 size_t LUIdx = P.first->second;
1885 LSRUse &LU = Uses[LUIdx];
Dan Gohman191bd642010-09-01 01:45:53 +00001886 if (reconcileNewOffset(LU, Offset, /*HasBaseReg=*/true, Kind, AccessTy))
Dan Gohman572645c2010-02-12 10:34:29 +00001887 // Reuse this use.
1888 return std::make_pair(LUIdx, Offset);
1889 }
1890
1891 // Create a new use.
1892 size_t LUIdx = Uses.size();
1893 P.first->second = LUIdx;
1894 Uses.push_back(LSRUse(Kind, AccessTy));
1895 LSRUse &LU = Uses[LUIdx];
1896
Dan Gohman191bd642010-09-01 01:45:53 +00001897 // We don't need to track redundant offsets, but we don't need to go out
1898 // of our way here to avoid them.
1899 if (LU.Offsets.empty() || Offset != LU.Offsets.back())
1900 LU.Offsets.push_back(Offset);
1901
Dan Gohman572645c2010-02-12 10:34:29 +00001902 LU.MinOffset = Offset;
1903 LU.MaxOffset = Offset;
1904 return std::make_pair(LUIdx, Offset);
1905}
1906
Dan Gohman5ce6d052010-05-20 15:17:54 +00001907/// DeleteUse - Delete the given use from the Uses list.
Dan Gohmanc6897702010-10-07 23:33:43 +00001908void LSRInstance::DeleteUse(LSRUse &LU, size_t LUIdx) {
Dan Gohman191bd642010-09-01 01:45:53 +00001909 if (&LU != &Uses.back())
Dan Gohman5ce6d052010-05-20 15:17:54 +00001910 std::swap(LU, Uses.back());
1911 Uses.pop_back();
Dan Gohmanc6897702010-10-07 23:33:43 +00001912
1913 // Update RegUses.
1914 RegUses.SwapAndDropUse(LUIdx, Uses.size());
Dan Gohman5ce6d052010-05-20 15:17:54 +00001915}
1916
Dan Gohmana2086b32010-05-19 23:43:12 +00001917/// FindUseWithFormula - Look for a use distinct from OrigLU which is has
1918/// a formula that has the same registers as the given formula.
1919LSRUse *
1920LSRInstance::FindUseWithSimilarFormula(const Formula &OrigF,
Dan Gohman191bd642010-09-01 01:45:53 +00001921 const LSRUse &OrigLU) {
1922 // Search all uses for the formula. This could be more clever.
Dan Gohmana2086b32010-05-19 23:43:12 +00001923 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
1924 LSRUse &LU = Uses[LUIdx];
Dan Gohman6a832712010-08-29 15:27:08 +00001925 // Check whether this use is close enough to OrigLU, to see whether it's
1926 // worthwhile looking through its formulae.
1927 // Ignore ICmpZero uses because they may contain formulae generated by
1928 // GenerateICmpZeroScales, in which case adding fixup offsets may
1929 // be invalid.
Dan Gohmana2086b32010-05-19 23:43:12 +00001930 if (&LU != &OrigLU &&
1931 LU.Kind != LSRUse::ICmpZero &&
1932 LU.Kind == OrigLU.Kind && OrigLU.AccessTy == LU.AccessTy &&
Dan Gohmana9db1292010-07-15 20:24:58 +00001933 LU.WidestFixupType == OrigLU.WidestFixupType &&
Dan Gohmana2086b32010-05-19 23:43:12 +00001934 LU.HasFormulaWithSameRegs(OrigF)) {
Dan Gohman6a832712010-08-29 15:27:08 +00001935 // Scan through this use's formulae.
Dan Gohman402d4352010-05-20 20:33:18 +00001936 for (SmallVectorImpl<Formula>::const_iterator I = LU.Formulae.begin(),
1937 E = LU.Formulae.end(); I != E; ++I) {
1938 const Formula &F = *I;
Dan Gohman6a832712010-08-29 15:27:08 +00001939 // Check to see if this formula has the same registers and symbols
1940 // as OrigF.
Dan Gohmana2086b32010-05-19 23:43:12 +00001941 if (F.BaseRegs == OrigF.BaseRegs &&
1942 F.ScaledReg == OrigF.ScaledReg &&
1943 F.AM.BaseGV == OrigF.AM.BaseGV &&
Dan Gohmane39a47c2010-08-29 15:30:29 +00001944 F.AM.Scale == OrigF.AM.Scale) {
Dan Gohman191bd642010-09-01 01:45:53 +00001945 if (F.AM.BaseOffs == 0)
Dan Gohmana2086b32010-05-19 23:43:12 +00001946 return &LU;
Dan Gohman6a832712010-08-29 15:27:08 +00001947 // This is the formula where all the registers and symbols matched;
1948 // there aren't going to be any others. Since we declined it, we
1949 // can skip the rest of the formulae and procede to the next LSRUse.
Dan Gohmana2086b32010-05-19 23:43:12 +00001950 break;
1951 }
1952 }
1953 }
1954 }
1955
Dan Gohman6a832712010-08-29 15:27:08 +00001956 // Nothing looked good.
Dan Gohmana2086b32010-05-19 23:43:12 +00001957 return 0;
1958}
1959
Dan Gohman572645c2010-02-12 10:34:29 +00001960void LSRInstance::CollectInterestingTypesAndFactors() {
1961 SmallSetVector<const SCEV *, 4> Strides;
1962
Dan Gohman1b7bf182010-02-19 00:05:23 +00001963 // Collect interesting types and strides.
Dan Gohman448db1c2010-04-07 22:27:08 +00001964 SmallVector<const SCEV *, 4> Worklist;
Dan Gohman572645c2010-02-12 10:34:29 +00001965 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI) {
Dan Gohmanc0564542010-04-19 21:48:58 +00001966 const SCEV *Expr = IU.getExpr(*UI);
Dan Gohman572645c2010-02-12 10:34:29 +00001967
1968 // Collect interesting types.
Dan Gohman448db1c2010-04-07 22:27:08 +00001969 Types.insert(SE.getEffectiveSCEVType(Expr->getType()));
Dan Gohman572645c2010-02-12 10:34:29 +00001970
Dan Gohman448db1c2010-04-07 22:27:08 +00001971 // Add strides for mentioned loops.
1972 Worklist.push_back(Expr);
1973 do {
1974 const SCEV *S = Worklist.pop_back_val();
1975 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
1976 Strides.insert(AR->getStepRecurrence(SE));
1977 Worklist.push_back(AR->getStart());
1978 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
Dan Gohman403a8cd2010-06-21 19:47:52 +00001979 Worklist.append(Add->op_begin(), Add->op_end());
Dan Gohman448db1c2010-04-07 22:27:08 +00001980 }
1981 } while (!Worklist.empty());
Dan Gohman1b7bf182010-02-19 00:05:23 +00001982 }
1983
1984 // Compute interesting factors from the set of interesting strides.
1985 for (SmallSetVector<const SCEV *, 4>::const_iterator
1986 I = Strides.begin(), E = Strides.end(); I != E; ++I)
Dan Gohman572645c2010-02-12 10:34:29 +00001987 for (SmallSetVector<const SCEV *, 4>::const_iterator NewStrideIter =
Oscar Fuentesee56c422010-08-02 06:00:15 +00001988 llvm::next(I); NewStrideIter != E; ++NewStrideIter) {
Dan Gohman1b7bf182010-02-19 00:05:23 +00001989 const SCEV *OldStride = *I;
Dan Gohman572645c2010-02-12 10:34:29 +00001990 const SCEV *NewStride = *NewStrideIter;
Dan Gohman572645c2010-02-12 10:34:29 +00001991
1992 if (SE.getTypeSizeInBits(OldStride->getType()) !=
1993 SE.getTypeSizeInBits(NewStride->getType())) {
1994 if (SE.getTypeSizeInBits(OldStride->getType()) >
1995 SE.getTypeSizeInBits(NewStride->getType()))
1996 NewStride = SE.getSignExtendExpr(NewStride, OldStride->getType());
1997 else
1998 OldStride = SE.getSignExtendExpr(OldStride, NewStride->getType());
1999 }
2000 if (const SCEVConstant *Factor =
Dan Gohmanf09b7122010-02-19 19:35:48 +00002001 dyn_cast_or_null<SCEVConstant>(getExactSDiv(NewStride, OldStride,
2002 SE, true))) {
Dan Gohman572645c2010-02-12 10:34:29 +00002003 if (Factor->getValue()->getValue().getMinSignedBits() <= 64)
2004 Factors.insert(Factor->getValue()->getValue().getSExtValue());
2005 } else if (const SCEVConstant *Factor =
Dan Gohman454d26d2010-02-22 04:11:59 +00002006 dyn_cast_or_null<SCEVConstant>(getExactSDiv(OldStride,
2007 NewStride,
Dan Gohmanf09b7122010-02-19 19:35:48 +00002008 SE, true))) {
Dan Gohman572645c2010-02-12 10:34:29 +00002009 if (Factor->getValue()->getValue().getMinSignedBits() <= 64)
2010 Factors.insert(Factor->getValue()->getValue().getSExtValue());
2011 }
2012 }
Dan Gohman572645c2010-02-12 10:34:29 +00002013
2014 // If all uses use the same type, don't bother looking for truncation-based
2015 // reuse.
2016 if (Types.size() == 1)
2017 Types.clear();
2018
2019 DEBUG(print_factors_and_types(dbgs()));
2020}
2021
2022void LSRInstance::CollectFixupsAndInitialFormulae() {
2023 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI) {
2024 // Record the uses.
2025 LSRFixup &LF = getNewFixup();
2026 LF.UserInst = UI->getUser();
2027 LF.OperandValToReplace = UI->getOperandValToReplace();
Dan Gohman448db1c2010-04-07 22:27:08 +00002028 LF.PostIncLoops = UI->getPostIncLoops();
Dan Gohman572645c2010-02-12 10:34:29 +00002029
2030 LSRUse::KindType Kind = LSRUse::Basic;
2031 const Type *AccessTy = 0;
2032 if (isAddressUse(LF.UserInst, LF.OperandValToReplace)) {
2033 Kind = LSRUse::Address;
2034 AccessTy = getAccessType(LF.UserInst);
2035 }
2036
Dan Gohmanc0564542010-04-19 21:48:58 +00002037 const SCEV *S = IU.getExpr(*UI);
Dan Gohman572645c2010-02-12 10:34:29 +00002038
2039 // Equality (== and !=) ICmps are special. We can rewrite (i == N) as
2040 // (N - i == 0), and this allows (N - i) to be the expression that we work
2041 // with rather than just N or i, so we can consider the register
2042 // requirements for both N and i at the same time. Limiting this code to
2043 // equality icmps is not a problem because all interesting loops use
2044 // equality icmps, thanks to IndVarSimplify.
2045 if (ICmpInst *CI = dyn_cast<ICmpInst>(LF.UserInst))
2046 if (CI->isEquality()) {
2047 // Swap the operands if needed to put the OperandValToReplace on the
2048 // left, for consistency.
2049 Value *NV = CI->getOperand(1);
2050 if (NV == LF.OperandValToReplace) {
2051 CI->setOperand(1, CI->getOperand(0));
2052 CI->setOperand(0, NV);
Dan Gohmanf182b232010-05-20 19:26:52 +00002053 NV = CI->getOperand(1);
Dan Gohman9da1bf42010-05-20 19:16:03 +00002054 Changed = true;
Dan Gohman572645c2010-02-12 10:34:29 +00002055 }
2056
2057 // x == y --> x - y == 0
2058 const SCEV *N = SE.getSCEV(NV);
2059 if (N->isLoopInvariant(L)) {
2060 Kind = LSRUse::ICmpZero;
2061 S = SE.getMinusSCEV(N, S);
2062 }
2063
2064 // -1 and the negations of all interesting strides (except the negation
2065 // of -1) are now also interesting.
2066 for (size_t i = 0, e = Factors.size(); i != e; ++i)
2067 if (Factors[i] != -1)
2068 Factors.insert(-(uint64_t)Factors[i]);
2069 Factors.insert(-1);
2070 }
2071
2072 // Set up the initial formula for this use.
2073 std::pair<size_t, int64_t> P = getUse(S, Kind, AccessTy);
2074 LF.LUIdx = P.first;
2075 LF.Offset = P.second;
2076 LSRUse &LU = Uses[LF.LUIdx];
Dan Gohman448db1c2010-04-07 22:27:08 +00002077 LU.AllFixupsOutsideLoop &= LF.isUseFullyOutsideLoop(L);
Dan Gohmana9db1292010-07-15 20:24:58 +00002078 if (!LU.WidestFixupType ||
2079 SE.getTypeSizeInBits(LU.WidestFixupType) <
2080 SE.getTypeSizeInBits(LF.OperandValToReplace->getType()))
2081 LU.WidestFixupType = LF.OperandValToReplace->getType();
Dan Gohman572645c2010-02-12 10:34:29 +00002082
2083 // If this is the first use of this LSRUse, give it a formula.
2084 if (LU.Formulae.empty()) {
Dan Gohman454d26d2010-02-22 04:11:59 +00002085 InsertInitialFormula(S, LU, LF.LUIdx);
Dan Gohman572645c2010-02-12 10:34:29 +00002086 CountRegisters(LU.Formulae.back(), LF.LUIdx);
2087 }
2088 }
2089
2090 DEBUG(print_fixups(dbgs()));
2091}
2092
Dan Gohman76c315a2010-05-20 20:52:00 +00002093/// InsertInitialFormula - Insert a formula for the given expression into
2094/// the given use, separating out loop-variant portions from loop-invariant
2095/// and loop-computable portions.
Dan Gohman572645c2010-02-12 10:34:29 +00002096void
Dan Gohman454d26d2010-02-22 04:11:59 +00002097LSRInstance::InsertInitialFormula(const SCEV *S, LSRUse &LU, size_t LUIdx) {
Dan Gohman572645c2010-02-12 10:34:29 +00002098 Formula F;
2099 F.InitialMatch(S, L, SE, DT);
2100 bool Inserted = InsertFormula(LU, LUIdx, F);
2101 assert(Inserted && "Initial formula already exists!"); (void)Inserted;
2102}
2103
Dan Gohman76c315a2010-05-20 20:52:00 +00002104/// InsertSupplementalFormula - Insert a simple single-register formula for
2105/// the given expression into the given use.
Dan Gohman572645c2010-02-12 10:34:29 +00002106void
2107LSRInstance::InsertSupplementalFormula(const SCEV *S,
2108 LSRUse &LU, size_t LUIdx) {
2109 Formula F;
2110 F.BaseRegs.push_back(S);
2111 F.AM.HasBaseReg = true;
2112 bool Inserted = InsertFormula(LU, LUIdx, F);
2113 assert(Inserted && "Supplemental formula already exists!"); (void)Inserted;
2114}
2115
2116/// CountRegisters - Note which registers are used by the given formula,
2117/// updating RegUses.
2118void LSRInstance::CountRegisters(const Formula &F, size_t LUIdx) {
2119 if (F.ScaledReg)
2120 RegUses.CountRegister(F.ScaledReg, LUIdx);
2121 for (SmallVectorImpl<const SCEV *>::const_iterator I = F.BaseRegs.begin(),
2122 E = F.BaseRegs.end(); I != E; ++I)
2123 RegUses.CountRegister(*I, LUIdx);
2124}
2125
2126/// InsertFormula - If the given formula has not yet been inserted, add it to
2127/// the list, and return true. Return false otherwise.
2128bool LSRInstance::InsertFormula(LSRUse &LU, unsigned LUIdx, const Formula &F) {
Dan Gohman454d26d2010-02-22 04:11:59 +00002129 if (!LU.InsertFormula(F))
Dan Gohman572645c2010-02-12 10:34:29 +00002130 return false;
2131
2132 CountRegisters(F, LUIdx);
2133 return true;
2134}
2135
2136/// CollectLoopInvariantFixupsAndFormulae - Check for other uses of
2137/// loop-invariant values which we're tracking. These other uses will pin these
2138/// values in registers, making them less profitable for elimination.
2139/// TODO: This currently misses non-constant addrec step registers.
2140/// TODO: Should this give more weight to users inside the loop?
2141void
2142LSRInstance::CollectLoopInvariantFixupsAndFormulae() {
2143 SmallVector<const SCEV *, 8> Worklist(RegUses.begin(), RegUses.end());
2144 SmallPtrSet<const SCEV *, 8> Inserted;
2145
2146 while (!Worklist.empty()) {
2147 const SCEV *S = Worklist.pop_back_val();
2148
2149 if (const SCEVNAryExpr *N = dyn_cast<SCEVNAryExpr>(S))
Dan Gohman403a8cd2010-06-21 19:47:52 +00002150 Worklist.append(N->op_begin(), N->op_end());
Dan Gohman572645c2010-02-12 10:34:29 +00002151 else if (const SCEVCastExpr *C = dyn_cast<SCEVCastExpr>(S))
2152 Worklist.push_back(C->getOperand());
2153 else if (const SCEVUDivExpr *D = dyn_cast<SCEVUDivExpr>(S)) {
2154 Worklist.push_back(D->getLHS());
2155 Worklist.push_back(D->getRHS());
2156 } else if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(S)) {
2157 if (!Inserted.insert(U)) continue;
2158 const Value *V = U->getValue();
Dan Gohmana15ec5d2010-06-04 23:16:05 +00002159 if (const Instruction *Inst = dyn_cast<Instruction>(V)) {
2160 // Look for instructions defined outside the loop.
Dan Gohman572645c2010-02-12 10:34:29 +00002161 if (L->contains(Inst)) continue;
Dan Gohmana15ec5d2010-06-04 23:16:05 +00002162 } else if (isa<UndefValue>(V))
2163 // Undef doesn't have a live range, so it doesn't matter.
2164 continue;
Gabor Greif60ad7812010-03-25 23:06:16 +00002165 for (Value::const_use_iterator UI = V->use_begin(), UE = V->use_end();
Dan Gohman572645c2010-02-12 10:34:29 +00002166 UI != UE; ++UI) {
2167 const Instruction *UserInst = dyn_cast<Instruction>(*UI);
2168 // Ignore non-instructions.
2169 if (!UserInst)
Dan Gohman7979b722010-01-22 00:46:49 +00002170 continue;
Dan Gohman572645c2010-02-12 10:34:29 +00002171 // Ignore instructions in other functions (as can happen with
2172 // Constants).
2173 if (UserInst->getParent()->getParent() != L->getHeader()->getParent())
Dan Gohman7979b722010-01-22 00:46:49 +00002174 continue;
Dan Gohman572645c2010-02-12 10:34:29 +00002175 // Ignore instructions not dominated by the loop.
2176 const BasicBlock *UseBB = !isa<PHINode>(UserInst) ?
2177 UserInst->getParent() :
2178 cast<PHINode>(UserInst)->getIncomingBlock(
2179 PHINode::getIncomingValueNumForOperand(UI.getOperandNo()));
2180 if (!DT.dominates(L->getHeader(), UseBB))
2181 continue;
2182 // Ignore uses which are part of other SCEV expressions, to avoid
2183 // analyzing them multiple times.
Dan Gohman4a2a6832010-04-09 19:12:34 +00002184 if (SE.isSCEVable(UserInst->getType())) {
2185 const SCEV *UserS = SE.getSCEV(const_cast<Instruction *>(UserInst));
2186 // If the user is a no-op, look through to its uses.
2187 if (!isa<SCEVUnknown>(UserS))
2188 continue;
2189 if (UserS == U) {
2190 Worklist.push_back(
2191 SE.getUnknown(const_cast<Instruction *>(UserInst)));
2192 continue;
2193 }
2194 }
Dan Gohman572645c2010-02-12 10:34:29 +00002195 // Ignore icmp instructions which are already being analyzed.
2196 if (const ICmpInst *ICI = dyn_cast<ICmpInst>(UserInst)) {
2197 unsigned OtherIdx = !UI.getOperandNo();
2198 Value *OtherOp = const_cast<Value *>(ICI->getOperand(OtherIdx));
2199 if (SE.getSCEV(OtherOp)->hasComputableLoopEvolution(L))
2200 continue;
2201 }
2202
2203 LSRFixup &LF = getNewFixup();
2204 LF.UserInst = const_cast<Instruction *>(UserInst);
2205 LF.OperandValToReplace = UI.getUse();
2206 std::pair<size_t, int64_t> P = getUse(S, LSRUse::Basic, 0);
2207 LF.LUIdx = P.first;
2208 LF.Offset = P.second;
2209 LSRUse &LU = Uses[LF.LUIdx];
Dan Gohman448db1c2010-04-07 22:27:08 +00002210 LU.AllFixupsOutsideLoop &= LF.isUseFullyOutsideLoop(L);
Dan Gohmana9db1292010-07-15 20:24:58 +00002211 if (!LU.WidestFixupType ||
2212 SE.getTypeSizeInBits(LU.WidestFixupType) <
2213 SE.getTypeSizeInBits(LF.OperandValToReplace->getType()))
2214 LU.WidestFixupType = LF.OperandValToReplace->getType();
Dan Gohman572645c2010-02-12 10:34:29 +00002215 InsertSupplementalFormula(U, LU, LF.LUIdx);
2216 CountRegisters(LU.Formulae.back(), Uses.size() - 1);
2217 break;
2218 }
2219 }
2220 }
2221}
2222
2223/// CollectSubexprs - Split S into subexpressions which can be pulled out into
2224/// separate registers. If C is non-null, multiply each subexpression by C.
2225static void CollectSubexprs(const SCEV *S, const SCEVConstant *C,
2226 SmallVectorImpl<const SCEV *> &Ops,
Dan Gohman3e3f15b2010-06-25 22:32:18 +00002227 const Loop *L,
Dan Gohman572645c2010-02-12 10:34:29 +00002228 ScalarEvolution &SE) {
2229 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
2230 // Break out add operands.
2231 for (SCEVAddExpr::op_iterator I = Add->op_begin(), E = Add->op_end();
2232 I != E; ++I)
Dan Gohman3e22b7c2010-08-16 15:50:00 +00002233 CollectSubexprs(*I, C, Ops, L, SE);
Dan Gohman572645c2010-02-12 10:34:29 +00002234 return;
2235 } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
2236 // Split a non-zero base out of an addrec.
2237 if (!AR->getStart()->isZero()) {
Dan Gohmandeff6212010-05-03 22:09:21 +00002238 CollectSubexprs(SE.getAddRecExpr(SE.getConstant(AR->getType(), 0),
Dan Gohman572645c2010-02-12 10:34:29 +00002239 AR->getStepRecurrence(SE),
Dan Gohman3e3f15b2010-06-25 22:32:18 +00002240 AR->getLoop()),
Dan Gohman3e22b7c2010-08-16 15:50:00 +00002241 C, Ops, L, SE);
2242 CollectSubexprs(AR->getStart(), C, Ops, L, SE);
Dan Gohman572645c2010-02-12 10:34:29 +00002243 return;
2244 }
2245 } else if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S)) {
2246 // Break (C * (a + b + c)) into C*a + C*b + C*c.
2247 if (Mul->getNumOperands() == 2)
2248 if (const SCEVConstant *Op0 =
2249 dyn_cast<SCEVConstant>(Mul->getOperand(0))) {
2250 CollectSubexprs(Mul->getOperand(1),
2251 C ? cast<SCEVConstant>(SE.getMulExpr(C, Op0)) : Op0,
Dan Gohman3e22b7c2010-08-16 15:50:00 +00002252 Ops, L, SE);
Dan Gohman572645c2010-02-12 10:34:29 +00002253 return;
2254 }
2255 }
2256
Dan Gohman3e22b7c2010-08-16 15:50:00 +00002257 // Otherwise use the value itself, optionally with a scale applied.
2258 Ops.push_back(C ? SE.getMulExpr(C, S) : S);
Dan Gohman572645c2010-02-12 10:34:29 +00002259}
2260
2261/// GenerateReassociations - Split out subexpressions from adds and the bases of
2262/// addrecs.
2263void LSRInstance::GenerateReassociations(LSRUse &LU, unsigned LUIdx,
2264 Formula Base,
2265 unsigned Depth) {
2266 // Arbitrarily cap recursion to protect compile time.
2267 if (Depth >= 3) return;
2268
2269 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i) {
2270 const SCEV *BaseReg = Base.BaseRegs[i];
2271
Dan Gohman3e22b7c2010-08-16 15:50:00 +00002272 SmallVector<const SCEV *, 8> AddOps;
2273 CollectSubexprs(BaseReg, 0, AddOps, L, SE);
Dan Gohman3e3f15b2010-06-25 22:32:18 +00002274
Dan Gohman572645c2010-02-12 10:34:29 +00002275 if (AddOps.size() == 1) continue;
2276
2277 for (SmallVectorImpl<const SCEV *>::const_iterator J = AddOps.begin(),
2278 JE = AddOps.end(); J != JE; ++J) {
Dan Gohman3e22b7c2010-08-16 15:50:00 +00002279
2280 // Loop-variant "unknown" values are uninteresting; we won't be able to
2281 // do anything meaningful with them.
2282 if (isa<SCEVUnknown>(*J) && !(*J)->isLoopInvariant(L))
2283 continue;
2284
Dan Gohman572645c2010-02-12 10:34:29 +00002285 // Don't pull a constant into a register if the constant could be folded
2286 // into an immediate field.
2287 if (isAlwaysFoldable(*J, LU.MinOffset, LU.MaxOffset,
2288 Base.getNumRegs() > 1,
2289 LU.Kind, LU.AccessTy, TLI, SE))
2290 continue;
2291
2292 // Collect all operands except *J.
Dan Gohman403a8cd2010-06-21 19:47:52 +00002293 SmallVector<const SCEV *, 8> InnerAddOps
Dan Gohman4eaee282010-08-04 17:43:57 +00002294 (((const SmallVector<const SCEV *, 8> &)AddOps).begin(), J);
Dan Gohman403a8cd2010-06-21 19:47:52 +00002295 InnerAddOps.append
Oscar Fuentesee56c422010-08-02 06:00:15 +00002296 (llvm::next(J), ((const SmallVector<const SCEV *, 8> &)AddOps).end());
Dan Gohman572645c2010-02-12 10:34:29 +00002297
2298 // Don't leave just a constant behind in a register if the constant could
2299 // be folded into an immediate field.
2300 if (InnerAddOps.size() == 1 &&
2301 isAlwaysFoldable(InnerAddOps[0], LU.MinOffset, LU.MaxOffset,
2302 Base.getNumRegs() > 1,
2303 LU.Kind, LU.AccessTy, TLI, SE))
2304 continue;
2305
Dan Gohmanfafb8902010-04-23 01:55:05 +00002306 const SCEV *InnerSum = SE.getAddExpr(InnerAddOps);
2307 if (InnerSum->isZero())
2308 continue;
Dan Gohman572645c2010-02-12 10:34:29 +00002309 Formula F = Base;
Dan Gohmanfafb8902010-04-23 01:55:05 +00002310 F.BaseRegs[i] = InnerSum;
Dan Gohman572645c2010-02-12 10:34:29 +00002311 F.BaseRegs.push_back(*J);
2312 if (InsertFormula(LU, LUIdx, F))
2313 // If that formula hadn't been seen before, recurse to find more like
2314 // it.
2315 GenerateReassociations(LU, LUIdx, LU.Formulae.back(), Depth+1);
2316 }
2317 }
2318}
2319
2320/// GenerateCombinations - Generate a formula consisting of all of the
2321/// loop-dominating registers added into a single register.
2322void LSRInstance::GenerateCombinations(LSRUse &LU, unsigned LUIdx,
Dan Gohman441a3892010-02-14 18:51:39 +00002323 Formula Base) {
Dan Gohman3f46a3a2010-03-01 17:49:51 +00002324 // This method is only interesting on a plurality of registers.
Dan Gohman572645c2010-02-12 10:34:29 +00002325 if (Base.BaseRegs.size() <= 1) return;
2326
2327 Formula F = Base;
2328 F.BaseRegs.clear();
2329 SmallVector<const SCEV *, 4> Ops;
2330 for (SmallVectorImpl<const SCEV *>::const_iterator
2331 I = Base.BaseRegs.begin(), E = Base.BaseRegs.end(); I != E; ++I) {
2332 const SCEV *BaseReg = *I;
2333 if (BaseReg->properlyDominates(L->getHeader(), &DT) &&
2334 !BaseReg->hasComputableLoopEvolution(L))
2335 Ops.push_back(BaseReg);
2336 else
2337 F.BaseRegs.push_back(BaseReg);
2338 }
2339 if (Ops.size() > 1) {
Dan Gohmance947362010-02-14 18:50:49 +00002340 const SCEV *Sum = SE.getAddExpr(Ops);
2341 // TODO: If Sum is zero, it probably means ScalarEvolution missed an
2342 // opportunity to fold something. For now, just ignore such cases
Dan Gohman3f46a3a2010-03-01 17:49:51 +00002343 // rather than proceed with zero in a register.
Dan Gohmance947362010-02-14 18:50:49 +00002344 if (!Sum->isZero()) {
2345 F.BaseRegs.push_back(Sum);
2346 (void)InsertFormula(LU, LUIdx, F);
2347 }
Dan Gohman572645c2010-02-12 10:34:29 +00002348 }
2349}
2350
2351/// GenerateSymbolicOffsets - Generate reuse formulae using symbolic offsets.
2352void LSRInstance::GenerateSymbolicOffsets(LSRUse &LU, unsigned LUIdx,
2353 Formula Base) {
2354 // We can't add a symbolic offset if the address already contains one.
2355 if (Base.AM.BaseGV) return;
2356
2357 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i) {
2358 const SCEV *G = Base.BaseRegs[i];
2359 GlobalValue *GV = ExtractSymbol(G, SE);
2360 if (G->isZero() || !GV)
2361 continue;
2362 Formula F = Base;
2363 F.AM.BaseGV = GV;
2364 if (!isLegalUse(F.AM, LU.MinOffset, LU.MaxOffset,
2365 LU.Kind, LU.AccessTy, TLI))
2366 continue;
2367 F.BaseRegs[i] = G;
2368 (void)InsertFormula(LU, LUIdx, F);
2369 }
2370}
2371
2372/// GenerateConstantOffsets - Generate reuse formulae using symbolic offsets.
2373void LSRInstance::GenerateConstantOffsets(LSRUse &LU, unsigned LUIdx,
2374 Formula Base) {
2375 // TODO: For now, just add the min and max offset, because it usually isn't
2376 // worthwhile looking at everything inbetween.
Dan Gohmanc88c1a42010-07-15 15:14:45 +00002377 SmallVector<int64_t, 2> Worklist;
Dan Gohman572645c2010-02-12 10:34:29 +00002378 Worklist.push_back(LU.MinOffset);
2379 if (LU.MaxOffset != LU.MinOffset)
2380 Worklist.push_back(LU.MaxOffset);
2381
2382 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i) {
2383 const SCEV *G = Base.BaseRegs[i];
2384
2385 for (SmallVectorImpl<int64_t>::const_iterator I = Worklist.begin(),
2386 E = Worklist.end(); I != E; ++I) {
2387 Formula F = Base;
2388 F.AM.BaseOffs = (uint64_t)Base.AM.BaseOffs - *I;
2389 if (isLegalUse(F.AM, LU.MinOffset - *I, LU.MaxOffset - *I,
2390 LU.Kind, LU.AccessTy, TLI)) {
Dan Gohmanc88c1a42010-07-15 15:14:45 +00002391 // Add the offset to the base register.
Dan Gohman4065f602010-08-16 15:39:27 +00002392 const SCEV *NewG = SE.getAddExpr(SE.getConstant(G->getType(), *I), G);
Dan Gohmanc88c1a42010-07-15 15:14:45 +00002393 // If it cancelled out, drop the base register, otherwise update it.
2394 if (NewG->isZero()) {
2395 std::swap(F.BaseRegs[i], F.BaseRegs.back());
2396 F.BaseRegs.pop_back();
2397 } else
2398 F.BaseRegs[i] = NewG;
Dan Gohman572645c2010-02-12 10:34:29 +00002399
2400 (void)InsertFormula(LU, LUIdx, F);
2401 }
2402 }
2403
2404 int64_t Imm = ExtractImmediate(G, SE);
2405 if (G->isZero() || Imm == 0)
2406 continue;
2407 Formula F = Base;
2408 F.AM.BaseOffs = (uint64_t)F.AM.BaseOffs + Imm;
2409 if (!isLegalUse(F.AM, LU.MinOffset, LU.MaxOffset,
2410 LU.Kind, LU.AccessTy, TLI))
2411 continue;
2412 F.BaseRegs[i] = G;
2413 (void)InsertFormula(LU, LUIdx, F);
2414 }
2415}
2416
2417/// GenerateICmpZeroScales - For ICmpZero, check to see if we can scale up
2418/// the comparison. For example, x == y -> x*c == y*c.
2419void LSRInstance::GenerateICmpZeroScales(LSRUse &LU, unsigned LUIdx,
2420 Formula Base) {
2421 if (LU.Kind != LSRUse::ICmpZero) return;
2422
2423 // Determine the integer type for the base formula.
2424 const Type *IntTy = Base.getType();
2425 if (!IntTy) return;
2426 if (SE.getTypeSizeInBits(IntTy) > 64) return;
2427
2428 // Don't do this if there is more than one offset.
2429 if (LU.MinOffset != LU.MaxOffset) return;
2430
2431 assert(!Base.AM.BaseGV && "ICmpZero use is not legal!");
2432
2433 // Check each interesting stride.
2434 for (SmallSetVector<int64_t, 8>::const_iterator
2435 I = Factors.begin(), E = Factors.end(); I != E; ++I) {
2436 int64_t Factor = *I;
Dan Gohman572645c2010-02-12 10:34:29 +00002437
2438 // Check that the multiplication doesn't overflow.
Dan Gohman2ea09e02010-06-24 16:57:52 +00002439 if (Base.AM.BaseOffs == INT64_MIN && Factor == -1)
Dan Gohman968cb932010-02-17 00:41:53 +00002440 continue;
Dan Gohman2ea09e02010-06-24 16:57:52 +00002441 int64_t NewBaseOffs = (uint64_t)Base.AM.BaseOffs * Factor;
2442 if (NewBaseOffs / Factor != Base.AM.BaseOffs)
Dan Gohman572645c2010-02-12 10:34:29 +00002443 continue;
2444
2445 // Check that multiplying with the use offset doesn't overflow.
2446 int64_t Offset = LU.MinOffset;
Dan Gohman968cb932010-02-17 00:41:53 +00002447 if (Offset == INT64_MIN && Factor == -1)
2448 continue;
Dan Gohman572645c2010-02-12 10:34:29 +00002449 Offset = (uint64_t)Offset * Factor;
Dan Gohman378c0b32010-02-17 00:42:19 +00002450 if (Offset / Factor != LU.MinOffset)
Dan Gohman572645c2010-02-12 10:34:29 +00002451 continue;
2452
Dan Gohman2ea09e02010-06-24 16:57:52 +00002453 Formula F = Base;
2454 F.AM.BaseOffs = NewBaseOffs;
2455
Dan Gohman572645c2010-02-12 10:34:29 +00002456 // Check that this scale is legal.
2457 if (!isLegalUse(F.AM, Offset, Offset, LU.Kind, LU.AccessTy, TLI))
2458 continue;
2459
2460 // Compensate for the use having MinOffset built into it.
2461 F.AM.BaseOffs = (uint64_t)F.AM.BaseOffs + Offset - LU.MinOffset;
2462
Dan Gohmandeff6212010-05-03 22:09:21 +00002463 const SCEV *FactorS = SE.getConstant(IntTy, Factor);
Dan Gohman572645c2010-02-12 10:34:29 +00002464
2465 // Check that multiplying with each base register doesn't overflow.
2466 for (size_t i = 0, e = F.BaseRegs.size(); i != e; ++i) {
2467 F.BaseRegs[i] = SE.getMulExpr(F.BaseRegs[i], FactorS);
Dan Gohmanf09b7122010-02-19 19:35:48 +00002468 if (getExactSDiv(F.BaseRegs[i], FactorS, SE) != Base.BaseRegs[i])
Dan Gohman572645c2010-02-12 10:34:29 +00002469 goto next;
2470 }
2471
2472 // Check that multiplying with the scaled register doesn't overflow.
2473 if (F.ScaledReg) {
2474 F.ScaledReg = SE.getMulExpr(F.ScaledReg, FactorS);
Dan Gohmanf09b7122010-02-19 19:35:48 +00002475 if (getExactSDiv(F.ScaledReg, FactorS, SE) != Base.ScaledReg)
Dan Gohman572645c2010-02-12 10:34:29 +00002476 continue;
2477 }
2478
2479 // If we make it here and it's legal, add it.
2480 (void)InsertFormula(LU, LUIdx, F);
2481 next:;
2482 }
2483}
2484
2485/// GenerateScales - Generate stride factor reuse formulae by making use of
2486/// scaled-offset address modes, for example.
Dan Gohmanea507f52010-05-20 19:44:23 +00002487void LSRInstance::GenerateScales(LSRUse &LU, unsigned LUIdx, Formula Base) {
Dan Gohman572645c2010-02-12 10:34:29 +00002488 // Determine the integer type for the base formula.
2489 const Type *IntTy = Base.getType();
2490 if (!IntTy) return;
2491
2492 // If this Formula already has a scaled register, we can't add another one.
2493 if (Base.AM.Scale != 0) return;
2494
2495 // Check each interesting stride.
2496 for (SmallSetVector<int64_t, 8>::const_iterator
2497 I = Factors.begin(), E = Factors.end(); I != E; ++I) {
2498 int64_t Factor = *I;
2499
2500 Base.AM.Scale = Factor;
2501 Base.AM.HasBaseReg = Base.BaseRegs.size() > 1;
2502 // Check whether this scale is going to be legal.
2503 if (!isLegalUse(Base.AM, LU.MinOffset, LU.MaxOffset,
2504 LU.Kind, LU.AccessTy, TLI)) {
2505 // As a special-case, handle special out-of-loop Basic users specially.
2506 // TODO: Reconsider this special case.
2507 if (LU.Kind == LSRUse::Basic &&
2508 isLegalUse(Base.AM, LU.MinOffset, LU.MaxOffset,
2509 LSRUse::Special, LU.AccessTy, TLI) &&
2510 LU.AllFixupsOutsideLoop)
2511 LU.Kind = LSRUse::Special;
2512 else
2513 continue;
2514 }
2515 // For an ICmpZero, negating a solitary base register won't lead to
2516 // new solutions.
2517 if (LU.Kind == LSRUse::ICmpZero &&
2518 !Base.AM.HasBaseReg && Base.AM.BaseOffs == 0 && !Base.AM.BaseGV)
2519 continue;
2520 // For each addrec base reg, apply the scale, if possible.
2521 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i)
2522 if (const SCEVAddRecExpr *AR =
2523 dyn_cast<SCEVAddRecExpr>(Base.BaseRegs[i])) {
Dan Gohmandeff6212010-05-03 22:09:21 +00002524 const SCEV *FactorS = SE.getConstant(IntTy, Factor);
Dan Gohman572645c2010-02-12 10:34:29 +00002525 if (FactorS->isZero())
2526 continue;
2527 // Divide out the factor, ignoring high bits, since we'll be
2528 // scaling the value back up in the end.
Dan Gohmanf09b7122010-02-19 19:35:48 +00002529 if (const SCEV *Quotient = getExactSDiv(AR, FactorS, SE, true)) {
Dan Gohman572645c2010-02-12 10:34:29 +00002530 // TODO: This could be optimized to avoid all the copying.
2531 Formula F = Base;
2532 F.ScaledReg = Quotient;
Dan Gohman5ce6d052010-05-20 15:17:54 +00002533 F.DeleteBaseReg(F.BaseRegs[i]);
Dan Gohman572645c2010-02-12 10:34:29 +00002534 (void)InsertFormula(LU, LUIdx, F);
2535 }
2536 }
2537 }
2538}
2539
2540/// GenerateTruncates - Generate reuse formulae from different IV types.
Dan Gohmanea507f52010-05-20 19:44:23 +00002541void LSRInstance::GenerateTruncates(LSRUse &LU, unsigned LUIdx, Formula Base) {
Dan Gohman572645c2010-02-12 10:34:29 +00002542 // This requires TargetLowering to tell us which truncates are free.
2543 if (!TLI) return;
2544
2545 // Don't bother truncating symbolic values.
2546 if (Base.AM.BaseGV) return;
2547
2548 // Determine the integer type for the base formula.
2549 const Type *DstTy = Base.getType();
2550 if (!DstTy) return;
2551 DstTy = SE.getEffectiveSCEVType(DstTy);
2552
2553 for (SmallSetVector<const Type *, 4>::const_iterator
2554 I = Types.begin(), E = Types.end(); I != E; ++I) {
2555 const Type *SrcTy = *I;
2556 if (SrcTy != DstTy && TLI->isTruncateFree(SrcTy, DstTy)) {
2557 Formula F = Base;
2558
2559 if (F.ScaledReg) F.ScaledReg = SE.getAnyExtendExpr(F.ScaledReg, *I);
2560 for (SmallVectorImpl<const SCEV *>::iterator J = F.BaseRegs.begin(),
2561 JE = F.BaseRegs.end(); J != JE; ++J)
2562 *J = SE.getAnyExtendExpr(*J, SrcTy);
2563
2564 // TODO: This assumes we've done basic processing on all uses and
2565 // have an idea what the register usage is.
2566 if (!F.hasRegsUsedByUsesOtherThan(LUIdx, RegUses))
2567 continue;
2568
2569 (void)InsertFormula(LU, LUIdx, F);
2570 }
2571 }
2572}
2573
2574namespace {
2575
Dan Gohman6020d852010-02-14 18:51:20 +00002576/// WorkItem - Helper class for GenerateCrossUseConstantOffsets. It's used to
Dan Gohman572645c2010-02-12 10:34:29 +00002577/// defer modifications so that the search phase doesn't have to worry about
2578/// the data structures moving underneath it.
2579struct WorkItem {
2580 size_t LUIdx;
2581 int64_t Imm;
2582 const SCEV *OrigReg;
2583
2584 WorkItem(size_t LI, int64_t I, const SCEV *R)
2585 : LUIdx(LI), Imm(I), OrigReg(R) {}
2586
2587 void print(raw_ostream &OS) const;
2588 void dump() const;
2589};
2590
2591}
2592
2593void WorkItem::print(raw_ostream &OS) const {
2594 OS << "in formulae referencing " << *OrigReg << " in use " << LUIdx
2595 << " , add offset " << Imm;
2596}
2597
2598void WorkItem::dump() const {
2599 print(errs()); errs() << '\n';
2600}
2601
2602/// GenerateCrossUseConstantOffsets - Look for registers which are a constant
2603/// distance apart and try to form reuse opportunities between them.
2604void LSRInstance::GenerateCrossUseConstantOffsets() {
2605 // Group the registers by their value without any added constant offset.
2606 typedef std::map<int64_t, const SCEV *> ImmMapTy;
2607 typedef DenseMap<const SCEV *, ImmMapTy> RegMapTy;
2608 RegMapTy Map;
2609 DenseMap<const SCEV *, SmallBitVector> UsedByIndicesMap;
2610 SmallVector<const SCEV *, 8> Sequence;
2611 for (RegUseTracker::const_iterator I = RegUses.begin(), E = RegUses.end();
2612 I != E; ++I) {
2613 const SCEV *Reg = *I;
2614 int64_t Imm = ExtractImmediate(Reg, SE);
2615 std::pair<RegMapTy::iterator, bool> Pair =
2616 Map.insert(std::make_pair(Reg, ImmMapTy()));
2617 if (Pair.second)
2618 Sequence.push_back(Reg);
2619 Pair.first->second.insert(std::make_pair(Imm, *I));
2620 UsedByIndicesMap[Reg] |= RegUses.getUsedByIndices(*I);
2621 }
2622
2623 // Now examine each set of registers with the same base value. Build up
2624 // a list of work to do and do the work in a separate step so that we're
2625 // not adding formulae and register counts while we're searching.
Dan Gohman191bd642010-09-01 01:45:53 +00002626 SmallVector<WorkItem, 32> WorkItems;
2627 SmallSet<std::pair<size_t, int64_t>, 32> UniqueItems;
Dan Gohman572645c2010-02-12 10:34:29 +00002628 for (SmallVectorImpl<const SCEV *>::const_iterator I = Sequence.begin(),
2629 E = Sequence.end(); I != E; ++I) {
2630 const SCEV *Reg = *I;
2631 const ImmMapTy &Imms = Map.find(Reg)->second;
2632
Dan Gohmancd045c02010-02-12 19:20:37 +00002633 // It's not worthwhile looking for reuse if there's only one offset.
2634 if (Imms.size() == 1)
2635 continue;
2636
Dan Gohman572645c2010-02-12 10:34:29 +00002637 DEBUG(dbgs() << "Generating cross-use offsets for " << *Reg << ':';
2638 for (ImmMapTy::const_iterator J = Imms.begin(), JE = Imms.end();
2639 J != JE; ++J)
2640 dbgs() << ' ' << J->first;
2641 dbgs() << '\n');
2642
2643 // Examine each offset.
2644 for (ImmMapTy::const_iterator J = Imms.begin(), JE = Imms.end();
2645 J != JE; ++J) {
2646 const SCEV *OrigReg = J->second;
2647
2648 int64_t JImm = J->first;
2649 const SmallBitVector &UsedByIndices = RegUses.getUsedByIndices(OrigReg);
2650
2651 if (!isa<SCEVConstant>(OrigReg) &&
2652 UsedByIndicesMap[Reg].count() == 1) {
2653 DEBUG(dbgs() << "Skipping cross-use reuse for " << *OrigReg << '\n');
2654 continue;
2655 }
2656
2657 // Conservatively examine offsets between this orig reg a few selected
2658 // other orig regs.
2659 ImmMapTy::const_iterator OtherImms[] = {
2660 Imms.begin(), prior(Imms.end()),
2661 Imms.upper_bound((Imms.begin()->first + prior(Imms.end())->first) / 2)
2662 };
2663 for (size_t i = 0, e = array_lengthof(OtherImms); i != e; ++i) {
2664 ImmMapTy::const_iterator M = OtherImms[i];
Dan Gohmancd045c02010-02-12 19:20:37 +00002665 if (M == J || M == JE) continue;
Dan Gohman572645c2010-02-12 10:34:29 +00002666
2667 // Compute the difference between the two.
2668 int64_t Imm = (uint64_t)JImm - M->first;
2669 for (int LUIdx = UsedByIndices.find_first(); LUIdx != -1;
Dan Gohman191bd642010-09-01 01:45:53 +00002670 LUIdx = UsedByIndices.find_next(LUIdx))
Dan Gohman572645c2010-02-12 10:34:29 +00002671 // Make a memo of this use, offset, and register tuple.
Dan Gohman191bd642010-09-01 01:45:53 +00002672 if (UniqueItems.insert(std::make_pair(LUIdx, Imm)))
2673 WorkItems.push_back(WorkItem(LUIdx, Imm, OrigReg));
Evan Cheng586f69a2009-11-12 07:35:05 +00002674 }
2675 }
2676 }
2677
Dan Gohman572645c2010-02-12 10:34:29 +00002678 Map.clear();
2679 Sequence.clear();
2680 UsedByIndicesMap.clear();
Dan Gohman191bd642010-09-01 01:45:53 +00002681 UniqueItems.clear();
Dan Gohman572645c2010-02-12 10:34:29 +00002682
2683 // Now iterate through the worklist and add new formulae.
2684 for (SmallVectorImpl<WorkItem>::const_iterator I = WorkItems.begin(),
2685 E = WorkItems.end(); I != E; ++I) {
2686 const WorkItem &WI = *I;
2687 size_t LUIdx = WI.LUIdx;
2688 LSRUse &LU = Uses[LUIdx];
2689 int64_t Imm = WI.Imm;
2690 const SCEV *OrigReg = WI.OrigReg;
2691
2692 const Type *IntTy = SE.getEffectiveSCEVType(OrigReg->getType());
2693 const SCEV *NegImmS = SE.getSCEV(ConstantInt::get(IntTy, -(uint64_t)Imm));
2694 unsigned BitWidth = SE.getTypeSizeInBits(IntTy);
2695
Dan Gohman3f46a3a2010-03-01 17:49:51 +00002696 // TODO: Use a more targeted data structure.
Dan Gohman572645c2010-02-12 10:34:29 +00002697 for (size_t L = 0, LE = LU.Formulae.size(); L != LE; ++L) {
Dan Gohman9f383eb2010-05-20 22:25:20 +00002698 const Formula &F = LU.Formulae[L];
Dan Gohman572645c2010-02-12 10:34:29 +00002699 // Use the immediate in the scaled register.
2700 if (F.ScaledReg == OrigReg) {
2701 int64_t Offs = (uint64_t)F.AM.BaseOffs +
2702 Imm * (uint64_t)F.AM.Scale;
2703 // Don't create 50 + reg(-50).
2704 if (F.referencesReg(SE.getSCEV(
2705 ConstantInt::get(IntTy, -(uint64_t)Offs))))
2706 continue;
2707 Formula NewF = F;
2708 NewF.AM.BaseOffs = Offs;
2709 if (!isLegalUse(NewF.AM, LU.MinOffset, LU.MaxOffset,
2710 LU.Kind, LU.AccessTy, TLI))
2711 continue;
2712 NewF.ScaledReg = SE.getAddExpr(NegImmS, NewF.ScaledReg);
2713
2714 // If the new scale is a constant in a register, and adding the constant
2715 // value to the immediate would produce a value closer to zero than the
2716 // immediate itself, then the formula isn't worthwhile.
2717 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(NewF.ScaledReg))
2718 if (C->getValue()->getValue().isNegative() !=
2719 (NewF.AM.BaseOffs < 0) &&
2720 (C->getValue()->getValue().abs() * APInt(BitWidth, F.AM.Scale))
Dan Gohmane0567812010-04-08 23:03:40 +00002721 .ule(abs64(NewF.AM.BaseOffs)))
Dan Gohman572645c2010-02-12 10:34:29 +00002722 continue;
2723
2724 // OK, looks good.
2725 (void)InsertFormula(LU, LUIdx, NewF);
2726 } else {
2727 // Use the immediate in a base register.
2728 for (size_t N = 0, NE = F.BaseRegs.size(); N != NE; ++N) {
2729 const SCEV *BaseReg = F.BaseRegs[N];
2730 if (BaseReg != OrigReg)
2731 continue;
2732 Formula NewF = F;
2733 NewF.AM.BaseOffs = (uint64_t)NewF.AM.BaseOffs + Imm;
2734 if (!isLegalUse(NewF.AM, LU.MinOffset, LU.MaxOffset,
2735 LU.Kind, LU.AccessTy, TLI))
2736 continue;
2737 NewF.BaseRegs[N] = SE.getAddExpr(NegImmS, BaseReg);
2738
2739 // If the new formula has a constant in a register, and adding the
2740 // constant value to the immediate would produce a value closer to
2741 // zero than the immediate itself, then the formula isn't worthwhile.
2742 for (SmallVectorImpl<const SCEV *>::const_iterator
2743 J = NewF.BaseRegs.begin(), JE = NewF.BaseRegs.end();
2744 J != JE; ++J)
2745 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(*J))
Dan Gohman360026f2010-05-18 23:48:08 +00002746 if ((C->getValue()->getValue() + NewF.AM.BaseOffs).abs().slt(
2747 abs64(NewF.AM.BaseOffs)) &&
2748 (C->getValue()->getValue() +
2749 NewF.AM.BaseOffs).countTrailingZeros() >=
2750 CountTrailingZeros_64(NewF.AM.BaseOffs))
Dan Gohman572645c2010-02-12 10:34:29 +00002751 goto skip_formula;
2752
2753 // Ok, looks good.
2754 (void)InsertFormula(LU, LUIdx, NewF);
2755 break;
2756 skip_formula:;
2757 }
2758 }
2759 }
2760 }
Dale Johannesenc1acc3f2009-05-11 17:15:42 +00002761}
2762
Dan Gohman572645c2010-02-12 10:34:29 +00002763/// GenerateAllReuseFormulae - Generate formulae for each use.
2764void
2765LSRInstance::GenerateAllReuseFormulae() {
Dan Gohmanc2385a02010-02-16 01:42:53 +00002766 // This is split into multiple loops so that hasRegsUsedByUsesOtherThan
Dan Gohman572645c2010-02-12 10:34:29 +00002767 // queries are more precise.
2768 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
2769 LSRUse &LU = Uses[LUIdx];
2770 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2771 GenerateReassociations(LU, LUIdx, LU.Formulae[i]);
2772 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2773 GenerateCombinations(LU, LUIdx, LU.Formulae[i]);
2774 }
2775 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
2776 LSRUse &LU = Uses[LUIdx];
2777 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2778 GenerateSymbolicOffsets(LU, LUIdx, LU.Formulae[i]);
2779 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2780 GenerateConstantOffsets(LU, LUIdx, LU.Formulae[i]);
2781 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2782 GenerateICmpZeroScales(LU, LUIdx, LU.Formulae[i]);
2783 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2784 GenerateScales(LU, LUIdx, LU.Formulae[i]);
Dan Gohmanc2385a02010-02-16 01:42:53 +00002785 }
2786 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
2787 LSRUse &LU = Uses[LUIdx];
Dan Gohman572645c2010-02-12 10:34:29 +00002788 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2789 GenerateTruncates(LU, LUIdx, LU.Formulae[i]);
2790 }
2791
2792 GenerateCrossUseConstantOffsets();
Dan Gohman3902f9f2010-08-29 15:21:38 +00002793
2794 DEBUG(dbgs() << "\n"
2795 "After generating reuse formulae:\n";
2796 print_uses(dbgs()));
Dan Gohman572645c2010-02-12 10:34:29 +00002797}
2798
Dan Gohmanf63d70f2010-10-07 23:43:09 +00002799/// If there are multiple formulae with the same set of registers used
Dan Gohman572645c2010-02-12 10:34:29 +00002800/// by other uses, pick the best one and delete the others.
2801void LSRInstance::FilterOutUndesirableDedicatedRegisters() {
Dan Gohmanfc7744b2010-10-07 23:52:18 +00002802 DenseSet<const SCEV *> VisitedRegs;
2803 SmallPtrSet<const SCEV *, 16> Regs;
Dan Gohman572645c2010-02-12 10:34:29 +00002804#ifndef NDEBUG
Dan Gohmanc6519f92010-05-20 20:05:31 +00002805 bool ChangedFormulae = false;
Dan Gohman572645c2010-02-12 10:34:29 +00002806#endif
2807
2808 // Collect the best formula for each unique set of shared registers. This
2809 // is reset for each use.
2810 typedef DenseMap<SmallVector<const SCEV *, 2>, size_t, UniquifierDenseMapInfo>
2811 BestFormulaeTy;
2812 BestFormulaeTy BestFormulae;
2813
2814 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
2815 LSRUse &LU = Uses[LUIdx];
Dan Gohmanea507f52010-05-20 19:44:23 +00002816 DEBUG(dbgs() << "Filtering for use "; LU.print(dbgs()); dbgs() << '\n');
Dan Gohman572645c2010-02-12 10:34:29 +00002817
Dan Gohmanb2df4332010-05-18 23:42:37 +00002818 bool Any = false;
Dan Gohman572645c2010-02-12 10:34:29 +00002819 for (size_t FIdx = 0, NumForms = LU.Formulae.size();
2820 FIdx != NumForms; ++FIdx) {
2821 Formula &F = LU.Formulae[FIdx];
2822
2823 SmallVector<const SCEV *, 2> Key;
2824 for (SmallVectorImpl<const SCEV *>::const_iterator J = F.BaseRegs.begin(),
2825 JE = F.BaseRegs.end(); J != JE; ++J) {
2826 const SCEV *Reg = *J;
2827 if (RegUses.isRegUsedByUsesOtherThan(Reg, LUIdx))
2828 Key.push_back(Reg);
2829 }
2830 if (F.ScaledReg &&
2831 RegUses.isRegUsedByUsesOtherThan(F.ScaledReg, LUIdx))
2832 Key.push_back(F.ScaledReg);
2833 // Unstable sort by host order ok, because this is only used for
2834 // uniquifying.
2835 std::sort(Key.begin(), Key.end());
2836
2837 std::pair<BestFormulaeTy::const_iterator, bool> P =
2838 BestFormulae.insert(std::make_pair(Key, FIdx));
2839 if (!P.second) {
2840 Formula &Best = LU.Formulae[P.first->second];
Dan Gohmanfc7744b2010-10-07 23:52:18 +00002841
2842 Cost CostF;
2843 CostF.RateFormula(F, Regs, VisitedRegs, L, LU.Offsets, SE, DT);
2844 Regs.clear();
2845 Cost CostBest;
2846 CostBest.RateFormula(Best, Regs, VisitedRegs, L, LU.Offsets, SE, DT);
2847 Regs.clear();
2848 if (CostF < CostBest)
Dan Gohman572645c2010-02-12 10:34:29 +00002849 std::swap(F, Best);
Dan Gohman6458ff92010-05-18 22:37:37 +00002850 DEBUG(dbgs() << " Filtering out formula "; F.print(dbgs());
Dan Gohman572645c2010-02-12 10:34:29 +00002851 dbgs() << "\n"
Dan Gohman6458ff92010-05-18 22:37:37 +00002852 " in favor of formula "; Best.print(dbgs());
Dan Gohman572645c2010-02-12 10:34:29 +00002853 dbgs() << '\n');
2854#ifndef NDEBUG
Dan Gohmanc6519f92010-05-20 20:05:31 +00002855 ChangedFormulae = true;
Dan Gohman572645c2010-02-12 10:34:29 +00002856#endif
Dan Gohmand69d6282010-05-18 22:39:15 +00002857 LU.DeleteFormula(F);
Dan Gohman572645c2010-02-12 10:34:29 +00002858 --FIdx;
2859 --NumForms;
Dan Gohmanb2df4332010-05-18 23:42:37 +00002860 Any = true;
Dan Gohman572645c2010-02-12 10:34:29 +00002861 continue;
2862 }
Dan Gohman59dc6032010-05-07 23:36:59 +00002863 }
2864
Dan Gohman57aaa0b2010-05-18 23:55:57 +00002865 // Now that we've filtered out some formulae, recompute the Regs set.
Dan Gohmanb2df4332010-05-18 23:42:37 +00002866 if (Any)
2867 LU.RecomputeRegs(LUIdx, RegUses);
Dan Gohman59dc6032010-05-07 23:36:59 +00002868
2869 // Reset this to prepare for the next use.
Dan Gohman572645c2010-02-12 10:34:29 +00002870 BestFormulae.clear();
2871 }
2872
Dan Gohmanc6519f92010-05-20 20:05:31 +00002873 DEBUG(if (ChangedFormulae) {
Dan Gohman9214b822010-02-13 02:06:02 +00002874 dbgs() << "\n"
2875 "After filtering out undesirable candidates:\n";
Dan Gohman572645c2010-02-12 10:34:29 +00002876 print_uses(dbgs());
2877 });
2878}
2879
Dan Gohmand079c302010-05-18 22:51:59 +00002880// This is a rough guess that seems to work fairly well.
2881static const size_t ComplexityLimit = UINT16_MAX;
2882
2883/// EstimateSearchSpaceComplexity - Estimate the worst-case number of
2884/// solutions the solver might have to consider. It almost never considers
2885/// this many solutions because it prune the search space, but the pruning
2886/// isn't always sufficient.
2887size_t LSRInstance::EstimateSearchSpaceComplexity() const {
Dan Gohman0d6715a2010-10-07 23:37:58 +00002888 size_t Power = 1;
Dan Gohmand079c302010-05-18 22:51:59 +00002889 for (SmallVectorImpl<LSRUse>::const_iterator I = Uses.begin(),
2890 E = Uses.end(); I != E; ++I) {
2891 size_t FSize = I->Formulae.size();
2892 if (FSize >= ComplexityLimit) {
2893 Power = ComplexityLimit;
2894 break;
2895 }
2896 Power *= FSize;
2897 if (Power >= ComplexityLimit)
2898 break;
2899 }
2900 return Power;
2901}
2902
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00002903/// NarrowSearchSpaceByDetectingSupersets - When one formula uses a superset
2904/// of the registers of another formula, it won't help reduce register
2905/// pressure (though it may not necessarily hurt register pressure); remove
2906/// it to simplify the system.
2907void LSRInstance::NarrowSearchSpaceByDetectingSupersets() {
Dan Gohmana2086b32010-05-19 23:43:12 +00002908 if (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
2909 DEBUG(dbgs() << "The search space is too complex.\n");
2910
2911 DEBUG(dbgs() << "Narrowing the search space by eliminating formulae "
2912 "which use a superset of registers used by other "
2913 "formulae.\n");
2914
2915 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
2916 LSRUse &LU = Uses[LUIdx];
2917 bool Any = false;
2918 for (size_t i = 0, e = LU.Formulae.size(); i != e; ++i) {
2919 Formula &F = LU.Formulae[i];
Dan Gohmanf7ff37d2010-05-20 20:00:41 +00002920 // Look for a formula with a constant or GV in a register. If the use
2921 // also has a formula with that same value in an immediate field,
2922 // delete the one that uses a register.
Dan Gohmana2086b32010-05-19 23:43:12 +00002923 for (SmallVectorImpl<const SCEV *>::const_iterator
2924 I = F.BaseRegs.begin(), E = F.BaseRegs.end(); I != E; ++I) {
2925 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(*I)) {
2926 Formula NewF = F;
2927 NewF.AM.BaseOffs += C->getValue()->getSExtValue();
2928 NewF.BaseRegs.erase(NewF.BaseRegs.begin() +
2929 (I - F.BaseRegs.begin()));
2930 if (LU.HasFormulaWithSameRegs(NewF)) {
2931 DEBUG(dbgs() << " Deleting "; F.print(dbgs()); dbgs() << '\n');
2932 LU.DeleteFormula(F);
2933 --i;
2934 --e;
2935 Any = true;
2936 break;
2937 }
2938 } else if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(*I)) {
2939 if (GlobalValue *GV = dyn_cast<GlobalValue>(U->getValue()))
2940 if (!F.AM.BaseGV) {
2941 Formula NewF = F;
2942 NewF.AM.BaseGV = GV;
2943 NewF.BaseRegs.erase(NewF.BaseRegs.begin() +
2944 (I - F.BaseRegs.begin()));
2945 if (LU.HasFormulaWithSameRegs(NewF)) {
2946 DEBUG(dbgs() << " Deleting "; F.print(dbgs());
2947 dbgs() << '\n');
2948 LU.DeleteFormula(F);
2949 --i;
2950 --e;
2951 Any = true;
2952 break;
2953 }
2954 }
2955 }
2956 }
2957 }
2958 if (Any)
2959 LU.RecomputeRegs(LUIdx, RegUses);
2960 }
2961
2962 DEBUG(dbgs() << "After pre-selection:\n";
2963 print_uses(dbgs()));
2964 }
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00002965}
Dan Gohmana2086b32010-05-19 23:43:12 +00002966
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00002967/// NarrowSearchSpaceByCollapsingUnrolledCode - When there are many registers
2968/// for expressions like A, A+1, A+2, etc., allocate a single register for
2969/// them.
2970void LSRInstance::NarrowSearchSpaceByCollapsingUnrolledCode() {
Dan Gohmana2086b32010-05-19 23:43:12 +00002971 if (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
2972 DEBUG(dbgs() << "The search space is too complex.\n");
2973
2974 DEBUG(dbgs() << "Narrowing the search space by assuming that uses "
2975 "separated by a constant offset will use the same "
2976 "registers.\n");
2977
Dan Gohmanf7ff37d2010-05-20 20:00:41 +00002978 // This is especially useful for unrolled loops.
2979
Dan Gohmana2086b32010-05-19 23:43:12 +00002980 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
2981 LSRUse &LU = Uses[LUIdx];
Dan Gohman402d4352010-05-20 20:33:18 +00002982 for (SmallVectorImpl<Formula>::const_iterator I = LU.Formulae.begin(),
2983 E = LU.Formulae.end(); I != E; ++I) {
2984 const Formula &F = *I;
Dan Gohmana2086b32010-05-19 23:43:12 +00002985 if (F.AM.BaseOffs != 0 && F.AM.Scale == 0) {
Dan Gohman191bd642010-09-01 01:45:53 +00002986 if (LSRUse *LUThatHas = FindUseWithSimilarFormula(F, LU)) {
2987 if (reconcileNewOffset(*LUThatHas, F.AM.BaseOffs,
Dan Gohmana2086b32010-05-19 23:43:12 +00002988 /*HasBaseReg=*/false,
2989 LU.Kind, LU.AccessTy)) {
2990 DEBUG(dbgs() << " Deleting use "; LU.print(dbgs());
2991 dbgs() << '\n');
2992
2993 LUThatHas->AllFixupsOutsideLoop &= LU.AllFixupsOutsideLoop;
2994
Dan Gohman191bd642010-09-01 01:45:53 +00002995 // Update the relocs to reference the new use.
2996 for (SmallVectorImpl<LSRFixup>::iterator I = Fixups.begin(),
2997 E = Fixups.end(); I != E; ++I) {
2998 LSRFixup &Fixup = *I;
2999 if (Fixup.LUIdx == LUIdx) {
3000 Fixup.LUIdx = LUThatHas - &Uses.front();
3001 Fixup.Offset += F.AM.BaseOffs;
Dan Gohmandd3db0e2010-10-07 23:36:45 +00003002 // Add the new offset to LUThatHas' offset list.
3003 if (LUThatHas->Offsets.back() != Fixup.Offset) {
3004 LUThatHas->Offsets.push_back(Fixup.Offset);
3005 if (Fixup.Offset > LUThatHas->MaxOffset)
3006 LUThatHas->MaxOffset = Fixup.Offset;
3007 if (Fixup.Offset < LUThatHas->MinOffset)
3008 LUThatHas->MinOffset = Fixup.Offset;
3009 }
Dan Gohman191bd642010-09-01 01:45:53 +00003010 DEBUG(dbgs() << "New fixup has offset "
3011 << Fixup.Offset << '\n');
3012 }
3013 if (Fixup.LUIdx == NumUses-1)
3014 Fixup.LUIdx = LUIdx;
3015 }
3016
Dan Gohmanc2921ea2010-10-08 19:33:26 +00003017 // Delete formulae from the new use which are no longer legal.
3018 bool Any = false;
3019 for (size_t i = 0, e = LUThatHas->Formulae.size(); i != e; ++i) {
3020 Formula &F = LUThatHas->Formulae[i];
3021 if (!isLegalUse(F.AM,
3022 LUThatHas->MinOffset, LUThatHas->MaxOffset,
3023 LUThatHas->Kind, LUThatHas->AccessTy, TLI)) {
3024 DEBUG(dbgs() << " Deleting "; F.print(dbgs());
3025 dbgs() << '\n');
3026 LUThatHas->DeleteFormula(F);
3027 --i;
3028 --e;
3029 Any = true;
3030 }
3031 }
3032 if (Any)
3033 LUThatHas->RecomputeRegs(LUThatHas - &Uses.front(), RegUses);
3034
Dan Gohmana2086b32010-05-19 23:43:12 +00003035 // Delete the old use.
Dan Gohmanc6897702010-10-07 23:33:43 +00003036 DeleteUse(LU, LUIdx);
Dan Gohmana2086b32010-05-19 23:43:12 +00003037 --LUIdx;
3038 --NumUses;
3039 break;
3040 }
3041 }
3042 }
3043 }
3044 }
3045
3046 DEBUG(dbgs() << "After pre-selection:\n";
3047 print_uses(dbgs()));
3048 }
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00003049}
Dan Gohmana2086b32010-05-19 23:43:12 +00003050
Dan Gohman4f7e18d2010-08-29 16:39:22 +00003051/// NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters - Call
3052/// FilterOutUndesirableDedicatedRegisters again, if necessary, now that
3053/// we've done more filtering, as it may be able to find more formulae to
3054/// eliminate.
3055void LSRInstance::NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters(){
3056 if (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
3057 DEBUG(dbgs() << "The search space is too complex.\n");
3058
3059 DEBUG(dbgs() << "Narrowing the search space by re-filtering out "
3060 "undesirable dedicated registers.\n");
3061
3062 FilterOutUndesirableDedicatedRegisters();
3063
3064 DEBUG(dbgs() << "After pre-selection:\n";
3065 print_uses(dbgs()));
3066 }
3067}
3068
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00003069/// NarrowSearchSpaceByPickingWinnerRegs - Pick a register which seems likely
3070/// to be profitable, and then in any use which has any reference to that
3071/// register, delete all formulae which do not reference that register.
3072void LSRInstance::NarrowSearchSpaceByPickingWinnerRegs() {
Dan Gohman76c315a2010-05-20 20:52:00 +00003073 // With all other options exhausted, loop until the system is simple
3074 // enough to handle.
Dan Gohman572645c2010-02-12 10:34:29 +00003075 SmallPtrSet<const SCEV *, 4> Taken;
Dan Gohmand079c302010-05-18 22:51:59 +00003076 while (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
Dan Gohman572645c2010-02-12 10:34:29 +00003077 // Ok, we have too many of formulae on our hands to conveniently handle.
3078 // Use a rough heuristic to thin out the list.
Dan Gohman0da751b2010-05-18 22:41:32 +00003079 DEBUG(dbgs() << "The search space is too complex.\n");
Dan Gohman572645c2010-02-12 10:34:29 +00003080
3081 // Pick the register which is used by the most LSRUses, which is likely
3082 // to be a good reuse register candidate.
3083 const SCEV *Best = 0;
3084 unsigned BestNum = 0;
3085 for (RegUseTracker::const_iterator I = RegUses.begin(), E = RegUses.end();
3086 I != E; ++I) {
3087 const SCEV *Reg = *I;
3088 if (Taken.count(Reg))
3089 continue;
3090 if (!Best)
3091 Best = Reg;
3092 else {
3093 unsigned Count = RegUses.getUsedByIndices(Reg).count();
3094 if (Count > BestNum) {
3095 Best = Reg;
3096 BestNum = Count;
3097 }
3098 }
3099 }
3100
3101 DEBUG(dbgs() << "Narrowing the search space by assuming " << *Best
Dan Gohman3f46a3a2010-03-01 17:49:51 +00003102 << " will yield profitable reuse.\n");
Dan Gohman572645c2010-02-12 10:34:29 +00003103 Taken.insert(Best);
3104
3105 // In any use with formulae which references this register, delete formulae
3106 // which don't reference it.
Dan Gohmanb2df4332010-05-18 23:42:37 +00003107 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
3108 LSRUse &LU = Uses[LUIdx];
Dan Gohman572645c2010-02-12 10:34:29 +00003109 if (!LU.Regs.count(Best)) continue;
3110
Dan Gohmanb2df4332010-05-18 23:42:37 +00003111 bool Any = false;
Dan Gohman572645c2010-02-12 10:34:29 +00003112 for (size_t i = 0, e = LU.Formulae.size(); i != e; ++i) {
3113 Formula &F = LU.Formulae[i];
3114 if (!F.referencesReg(Best)) {
3115 DEBUG(dbgs() << " Deleting "; F.print(dbgs()); dbgs() << '\n');
Dan Gohmand69d6282010-05-18 22:39:15 +00003116 LU.DeleteFormula(F);
Dan Gohman572645c2010-02-12 10:34:29 +00003117 --e;
3118 --i;
Dan Gohmanb2df4332010-05-18 23:42:37 +00003119 Any = true;
Dan Gohman59dc6032010-05-07 23:36:59 +00003120 assert(e != 0 && "Use has no formulae left! Is Regs inconsistent?");
Dan Gohman572645c2010-02-12 10:34:29 +00003121 continue;
3122 }
Dan Gohman572645c2010-02-12 10:34:29 +00003123 }
Dan Gohmanb2df4332010-05-18 23:42:37 +00003124
3125 if (Any)
3126 LU.RecomputeRegs(LUIdx, RegUses);
Dan Gohman572645c2010-02-12 10:34:29 +00003127 }
3128
3129 DEBUG(dbgs() << "After pre-selection:\n";
3130 print_uses(dbgs()));
3131 }
3132}
3133
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00003134/// NarrowSearchSpaceUsingHeuristics - If there are an extraordinary number of
3135/// formulae to choose from, use some rough heuristics to prune down the number
3136/// of formulae. This keeps the main solver from taking an extraordinary amount
3137/// of time in some worst-case scenarios.
3138void LSRInstance::NarrowSearchSpaceUsingHeuristics() {
3139 NarrowSearchSpaceByDetectingSupersets();
3140 NarrowSearchSpaceByCollapsingUnrolledCode();
Dan Gohman4f7e18d2010-08-29 16:39:22 +00003141 NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters();
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00003142 NarrowSearchSpaceByPickingWinnerRegs();
3143}
3144
Dan Gohman572645c2010-02-12 10:34:29 +00003145/// SolveRecurse - This is the recursive solver.
3146void LSRInstance::SolveRecurse(SmallVectorImpl<const Formula *> &Solution,
3147 Cost &SolutionCost,
3148 SmallVectorImpl<const Formula *> &Workspace,
3149 const Cost &CurCost,
3150 const SmallPtrSet<const SCEV *, 16> &CurRegs,
3151 DenseSet<const SCEV *> &VisitedRegs) const {
3152 // Some ideas:
3153 // - prune more:
3154 // - use more aggressive filtering
3155 // - sort the formula so that the most profitable solutions are found first
3156 // - sort the uses too
3157 // - search faster:
Dan Gohman3f46a3a2010-03-01 17:49:51 +00003158 // - don't compute a cost, and then compare. compare while computing a cost
Dan Gohman572645c2010-02-12 10:34:29 +00003159 // and bail early.
3160 // - track register sets with SmallBitVector
3161
3162 const LSRUse &LU = Uses[Workspace.size()];
3163
3164 // If this use references any register that's already a part of the
3165 // in-progress solution, consider it a requirement that a formula must
3166 // reference that register in order to be considered. This prunes out
3167 // unprofitable searching.
3168 SmallSetVector<const SCEV *, 4> ReqRegs;
3169 for (SmallPtrSet<const SCEV *, 16>::const_iterator I = CurRegs.begin(),
3170 E = CurRegs.end(); I != E; ++I)
Dan Gohman9214b822010-02-13 02:06:02 +00003171 if (LU.Regs.count(*I))
Dan Gohman572645c2010-02-12 10:34:29 +00003172 ReqRegs.insert(*I);
Dan Gohman572645c2010-02-12 10:34:29 +00003173
Dan Gohman9214b822010-02-13 02:06:02 +00003174 bool AnySatisfiedReqRegs = false;
Dan Gohman572645c2010-02-12 10:34:29 +00003175 SmallPtrSet<const SCEV *, 16> NewRegs;
3176 Cost NewCost;
Dan Gohman9214b822010-02-13 02:06:02 +00003177retry:
Dan Gohman572645c2010-02-12 10:34:29 +00003178 for (SmallVectorImpl<Formula>::const_iterator I = LU.Formulae.begin(),
3179 E = LU.Formulae.end(); I != E; ++I) {
3180 const Formula &F = *I;
3181
3182 // Ignore formulae which do not use any of the required registers.
3183 for (SmallSetVector<const SCEV *, 4>::const_iterator J = ReqRegs.begin(),
3184 JE = ReqRegs.end(); J != JE; ++J) {
3185 const SCEV *Reg = *J;
3186 if ((!F.ScaledReg || F.ScaledReg != Reg) &&
3187 std::find(F.BaseRegs.begin(), F.BaseRegs.end(), Reg) ==
3188 F.BaseRegs.end())
3189 goto skip;
3190 }
Dan Gohman9214b822010-02-13 02:06:02 +00003191 AnySatisfiedReqRegs = true;
Dan Gohman572645c2010-02-12 10:34:29 +00003192
3193 // Evaluate the cost of the current formula. If it's already worse than
3194 // the current best, prune the search at that point.
3195 NewCost = CurCost;
3196 NewRegs = CurRegs;
3197 NewCost.RateFormula(F, NewRegs, VisitedRegs, L, LU.Offsets, SE, DT);
3198 if (NewCost < SolutionCost) {
3199 Workspace.push_back(&F);
3200 if (Workspace.size() != Uses.size()) {
3201 SolveRecurse(Solution, SolutionCost, Workspace, NewCost,
3202 NewRegs, VisitedRegs);
3203 if (F.getNumRegs() == 1 && Workspace.size() == 1)
3204 VisitedRegs.insert(F.ScaledReg ? F.ScaledReg : F.BaseRegs[0]);
3205 } else {
3206 DEBUG(dbgs() << "New best at "; NewCost.print(dbgs());
3207 dbgs() << ". Regs:";
3208 for (SmallPtrSet<const SCEV *, 16>::const_iterator
3209 I = NewRegs.begin(), E = NewRegs.end(); I != E; ++I)
3210 dbgs() << ' ' << **I;
3211 dbgs() << '\n');
3212
3213 SolutionCost = NewCost;
3214 Solution = Workspace;
3215 }
3216 Workspace.pop_back();
3217 }
3218 skip:;
3219 }
Dan Gohman9214b822010-02-13 02:06:02 +00003220
3221 // If none of the formulae had all of the required registers, relax the
3222 // constraint so that we don't exclude all formulae.
3223 if (!AnySatisfiedReqRegs) {
Dan Gohman59dc6032010-05-07 23:36:59 +00003224 assert(!ReqRegs.empty() && "Solver failed even without required registers");
Dan Gohman9214b822010-02-13 02:06:02 +00003225 ReqRegs.clear();
3226 goto retry;
3227 }
Dan Gohman572645c2010-02-12 10:34:29 +00003228}
3229
Dan Gohman76c315a2010-05-20 20:52:00 +00003230/// Solve - Choose one formula from each use. Return the results in the given
3231/// Solution vector.
Dan Gohman572645c2010-02-12 10:34:29 +00003232void LSRInstance::Solve(SmallVectorImpl<const Formula *> &Solution) const {
3233 SmallVector<const Formula *, 8> Workspace;
3234 Cost SolutionCost;
3235 SolutionCost.Loose();
3236 Cost CurCost;
3237 SmallPtrSet<const SCEV *, 16> CurRegs;
3238 DenseSet<const SCEV *> VisitedRegs;
3239 Workspace.reserve(Uses.size());
3240
Dan Gohmanf7ff37d2010-05-20 20:00:41 +00003241 // SolveRecurse does all the work.
Dan Gohman572645c2010-02-12 10:34:29 +00003242 SolveRecurse(Solution, SolutionCost, Workspace, CurCost,
3243 CurRegs, VisitedRegs);
3244
3245 // Ok, we've now made all our decisions.
3246 DEBUG(dbgs() << "\n"
3247 "The chosen solution requires "; SolutionCost.print(dbgs());
3248 dbgs() << ":\n";
3249 for (size_t i = 0, e = Uses.size(); i != e; ++i) {
3250 dbgs() << " ";
3251 Uses[i].print(dbgs());
3252 dbgs() << "\n"
3253 " ";
3254 Solution[i]->print(dbgs());
3255 dbgs() << '\n';
3256 });
Dan Gohmana5528782010-05-20 20:59:23 +00003257
3258 assert(Solution.size() == Uses.size() && "Malformed solution!");
Dan Gohman572645c2010-02-12 10:34:29 +00003259}
3260
Dan Gohmane5f76872010-04-09 22:07:05 +00003261/// HoistInsertPosition - Helper for AdjustInsertPositionForExpand. Climb up
3262/// the dominator tree far as we can go while still being dominated by the
3263/// input positions. This helps canonicalize the insert position, which
3264/// encourages sharing.
3265BasicBlock::iterator
3266LSRInstance::HoistInsertPosition(BasicBlock::iterator IP,
3267 const SmallVectorImpl<Instruction *> &Inputs)
3268 const {
3269 for (;;) {
3270 const Loop *IPLoop = LI.getLoopFor(IP->getParent());
3271 unsigned IPLoopDepth = IPLoop ? IPLoop->getLoopDepth() : 0;
3272
3273 BasicBlock *IDom;
Dan Gohmand974a0e2010-05-20 20:00:25 +00003274 for (DomTreeNode *Rung = DT.getNode(IP->getParent()); ; ) {
Dan Gohman0fe46d92010-05-20 22:46:54 +00003275 if (!Rung) return IP;
Dan Gohmand974a0e2010-05-20 20:00:25 +00003276 Rung = Rung->getIDom();
3277 if (!Rung) return IP;
3278 IDom = Rung->getBlock();
Dan Gohmane5f76872010-04-09 22:07:05 +00003279
3280 // Don't climb into a loop though.
3281 const Loop *IDomLoop = LI.getLoopFor(IDom);
3282 unsigned IDomDepth = IDomLoop ? IDomLoop->getLoopDepth() : 0;
3283 if (IDomDepth <= IPLoopDepth &&
3284 (IDomDepth != IPLoopDepth || IDomLoop == IPLoop))
3285 break;
3286 }
3287
3288 bool AllDominate = true;
3289 Instruction *BetterPos = 0;
3290 Instruction *Tentative = IDom->getTerminator();
3291 for (SmallVectorImpl<Instruction *>::const_iterator I = Inputs.begin(),
3292 E = Inputs.end(); I != E; ++I) {
3293 Instruction *Inst = *I;
3294 if (Inst == Tentative || !DT.dominates(Inst, Tentative)) {
3295 AllDominate = false;
3296 break;
3297 }
3298 // Attempt to find an insert position in the middle of the block,
3299 // instead of at the end, so that it can be used for other expansions.
3300 if (IDom == Inst->getParent() &&
3301 (!BetterPos || DT.dominates(BetterPos, Inst)))
Douglas Gregor7d9663c2010-05-11 06:17:44 +00003302 BetterPos = llvm::next(BasicBlock::iterator(Inst));
Dan Gohmane5f76872010-04-09 22:07:05 +00003303 }
3304 if (!AllDominate)
3305 break;
3306 if (BetterPos)
3307 IP = BetterPos;
3308 else
3309 IP = Tentative;
3310 }
3311
3312 return IP;
3313}
3314
3315/// AdjustInsertPositionForExpand - Determine an input position which will be
Dan Gohmand96eae82010-04-09 02:00:38 +00003316/// dominated by the operands and which will dominate the result.
3317BasicBlock::iterator
Dan Gohmane5f76872010-04-09 22:07:05 +00003318LSRInstance::AdjustInsertPositionForExpand(BasicBlock::iterator IP,
3319 const LSRFixup &LF,
3320 const LSRUse &LU) const {
Dan Gohmand96eae82010-04-09 02:00:38 +00003321 // Collect some instructions which must be dominated by the
Dan Gohman448db1c2010-04-07 22:27:08 +00003322 // expanding replacement. These must be dominated by any operands that
Dan Gohman572645c2010-02-12 10:34:29 +00003323 // will be required in the expansion.
3324 SmallVector<Instruction *, 4> Inputs;
3325 if (Instruction *I = dyn_cast<Instruction>(LF.OperandValToReplace))
3326 Inputs.push_back(I);
3327 if (LU.Kind == LSRUse::ICmpZero)
3328 if (Instruction *I =
3329 dyn_cast<Instruction>(cast<ICmpInst>(LF.UserInst)->getOperand(1)))
3330 Inputs.push_back(I);
Dan Gohman448db1c2010-04-07 22:27:08 +00003331 if (LF.PostIncLoops.count(L)) {
3332 if (LF.isUseFullyOutsideLoop(L))
Dan Gohman069d6f32010-03-02 01:59:21 +00003333 Inputs.push_back(L->getLoopLatch()->getTerminator());
3334 else
3335 Inputs.push_back(IVIncInsertPos);
3336 }
Dan Gohman701a4ae2010-04-08 05:57:57 +00003337 // The expansion must also be dominated by the increment positions of any
3338 // loops it for which it is using post-inc mode.
3339 for (PostIncLoopSet::const_iterator I = LF.PostIncLoops.begin(),
3340 E = LF.PostIncLoops.end(); I != E; ++I) {
3341 const Loop *PIL = *I;
3342 if (PIL == L) continue;
3343
Dan Gohmane5f76872010-04-09 22:07:05 +00003344 // Be dominated by the loop exit.
Dan Gohman701a4ae2010-04-08 05:57:57 +00003345 SmallVector<BasicBlock *, 4> ExitingBlocks;
3346 PIL->getExitingBlocks(ExitingBlocks);
3347 if (!ExitingBlocks.empty()) {
3348 BasicBlock *BB = ExitingBlocks[0];
3349 for (unsigned i = 1, e = ExitingBlocks.size(); i != e; ++i)
3350 BB = DT.findNearestCommonDominator(BB, ExitingBlocks[i]);
3351 Inputs.push_back(BB->getTerminator());
3352 }
3353 }
Dan Gohman572645c2010-02-12 10:34:29 +00003354
3355 // Then, climb up the immediate dominator tree as far as we can go while
3356 // still being dominated by the input positions.
Dan Gohmane5f76872010-04-09 22:07:05 +00003357 IP = HoistInsertPosition(IP, Inputs);
Dan Gohmand96eae82010-04-09 02:00:38 +00003358
3359 // Don't insert instructions before PHI nodes.
Dan Gohman572645c2010-02-12 10:34:29 +00003360 while (isa<PHINode>(IP)) ++IP;
Dan Gohmand96eae82010-04-09 02:00:38 +00003361
3362 // Ignore debug intrinsics.
Dan Gohman449f31c2010-03-26 00:33:27 +00003363 while (isa<DbgInfoIntrinsic>(IP)) ++IP;
Dan Gohman572645c2010-02-12 10:34:29 +00003364
Dan Gohmand96eae82010-04-09 02:00:38 +00003365 return IP;
3366}
3367
Dan Gohman76c315a2010-05-20 20:52:00 +00003368/// Expand - Emit instructions for the leading candidate expression for this
3369/// LSRUse (this is called "expanding").
Dan Gohmand96eae82010-04-09 02:00:38 +00003370Value *LSRInstance::Expand(const LSRFixup &LF,
3371 const Formula &F,
3372 BasicBlock::iterator IP,
3373 SCEVExpander &Rewriter,
3374 SmallVectorImpl<WeakVH> &DeadInsts) const {
3375 const LSRUse &LU = Uses[LF.LUIdx];
3376
3377 // Determine an input position which will be dominated by the operands and
3378 // which will dominate the result.
Dan Gohmane5f76872010-04-09 22:07:05 +00003379 IP = AdjustInsertPositionForExpand(IP, LF, LU);
Dan Gohmand96eae82010-04-09 02:00:38 +00003380
Dan Gohman572645c2010-02-12 10:34:29 +00003381 // Inform the Rewriter if we have a post-increment use, so that it can
3382 // perform an advantageous expansion.
Dan Gohman448db1c2010-04-07 22:27:08 +00003383 Rewriter.setPostInc(LF.PostIncLoops);
Dan Gohman572645c2010-02-12 10:34:29 +00003384
3385 // This is the type that the user actually needs.
3386 const Type *OpTy = LF.OperandValToReplace->getType();
3387 // This will be the type that we'll initially expand to.
3388 const Type *Ty = F.getType();
3389 if (!Ty)
3390 // No type known; just expand directly to the ultimate type.
3391 Ty = OpTy;
3392 else if (SE.getEffectiveSCEVType(Ty) == SE.getEffectiveSCEVType(OpTy))
3393 // Expand directly to the ultimate type if it's the right size.
3394 Ty = OpTy;
3395 // This is the type to do integer arithmetic in.
3396 const Type *IntTy = SE.getEffectiveSCEVType(Ty);
3397
3398 // Build up a list of operands to add together to form the full base.
3399 SmallVector<const SCEV *, 8> Ops;
3400
3401 // Expand the BaseRegs portion.
3402 for (SmallVectorImpl<const SCEV *>::const_iterator I = F.BaseRegs.begin(),
3403 E = F.BaseRegs.end(); I != E; ++I) {
3404 const SCEV *Reg = *I;
3405 assert(!Reg->isZero() && "Zero allocated in a base register!");
3406
Dan Gohman448db1c2010-04-07 22:27:08 +00003407 // If we're expanding for a post-inc user, make the post-inc adjustment.
3408 PostIncLoopSet &Loops = const_cast<PostIncLoopSet &>(LF.PostIncLoops);
3409 Reg = TransformForPostIncUse(Denormalize, Reg,
3410 LF.UserInst, LF.OperandValToReplace,
3411 Loops, SE, DT);
Dan Gohman572645c2010-02-12 10:34:29 +00003412
3413 Ops.push_back(SE.getUnknown(Rewriter.expandCodeFor(Reg, 0, IP)));
3414 }
3415
Dan Gohman087bd1e2010-03-03 05:29:13 +00003416 // Flush the operand list to suppress SCEVExpander hoisting.
3417 if (!Ops.empty()) {
3418 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty, IP);
3419 Ops.clear();
3420 Ops.push_back(SE.getUnknown(FullV));
3421 }
3422
Dan Gohman572645c2010-02-12 10:34:29 +00003423 // Expand the ScaledReg portion.
3424 Value *ICmpScaledV = 0;
3425 if (F.AM.Scale != 0) {
3426 const SCEV *ScaledS = F.ScaledReg;
3427
Dan Gohman448db1c2010-04-07 22:27:08 +00003428 // If we're expanding for a post-inc user, make the post-inc adjustment.
3429 PostIncLoopSet &Loops = const_cast<PostIncLoopSet &>(LF.PostIncLoops);
3430 ScaledS = TransformForPostIncUse(Denormalize, ScaledS,
3431 LF.UserInst, LF.OperandValToReplace,
3432 Loops, SE, DT);
Dan Gohman572645c2010-02-12 10:34:29 +00003433
3434 if (LU.Kind == LSRUse::ICmpZero) {
3435 // An interesting way of "folding" with an icmp is to use a negated
3436 // scale, which we'll implement by inserting it into the other operand
3437 // of the icmp.
3438 assert(F.AM.Scale == -1 &&
3439 "The only scale supported by ICmpZero uses is -1!");
3440 ICmpScaledV = Rewriter.expandCodeFor(ScaledS, 0, IP);
3441 } else {
3442 // Otherwise just expand the scaled register and an explicit scale,
3443 // which is expected to be matched as part of the address.
3444 ScaledS = SE.getUnknown(Rewriter.expandCodeFor(ScaledS, 0, IP));
3445 ScaledS = SE.getMulExpr(ScaledS,
Dan Gohmandeff6212010-05-03 22:09:21 +00003446 SE.getConstant(ScaledS->getType(), F.AM.Scale));
Dan Gohman572645c2010-02-12 10:34:29 +00003447 Ops.push_back(ScaledS);
Dan Gohman087bd1e2010-03-03 05:29:13 +00003448
3449 // Flush the operand list to suppress SCEVExpander hoisting.
3450 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty, IP);
3451 Ops.clear();
3452 Ops.push_back(SE.getUnknown(FullV));
Dan Gohman572645c2010-02-12 10:34:29 +00003453 }
3454 }
3455
Dan Gohman087bd1e2010-03-03 05:29:13 +00003456 // Expand the GV portion.
3457 if (F.AM.BaseGV) {
3458 Ops.push_back(SE.getUnknown(F.AM.BaseGV));
3459
3460 // Flush the operand list to suppress SCEVExpander hoisting.
3461 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty, IP);
3462 Ops.clear();
3463 Ops.push_back(SE.getUnknown(FullV));
3464 }
3465
3466 // Expand the immediate portion.
Dan Gohman572645c2010-02-12 10:34:29 +00003467 int64_t Offset = (uint64_t)F.AM.BaseOffs + LF.Offset;
3468 if (Offset != 0) {
3469 if (LU.Kind == LSRUse::ICmpZero) {
3470 // The other interesting way of "folding" with an ICmpZero is to use a
3471 // negated immediate.
3472 if (!ICmpScaledV)
3473 ICmpScaledV = ConstantInt::get(IntTy, -Offset);
3474 else {
3475 Ops.push_back(SE.getUnknown(ICmpScaledV));
3476 ICmpScaledV = ConstantInt::get(IntTy, Offset);
3477 }
3478 } else {
3479 // Just add the immediate values. These again are expected to be matched
3480 // as part of the address.
Dan Gohman087bd1e2010-03-03 05:29:13 +00003481 Ops.push_back(SE.getUnknown(ConstantInt::getSigned(IntTy, Offset)));
Dan Gohman572645c2010-02-12 10:34:29 +00003482 }
3483 }
3484
3485 // Emit instructions summing all the operands.
3486 const SCEV *FullS = Ops.empty() ?
Dan Gohmandeff6212010-05-03 22:09:21 +00003487 SE.getConstant(IntTy, 0) :
Dan Gohman572645c2010-02-12 10:34:29 +00003488 SE.getAddExpr(Ops);
3489 Value *FullV = Rewriter.expandCodeFor(FullS, Ty, IP);
3490
3491 // We're done expanding now, so reset the rewriter.
Dan Gohman448db1c2010-04-07 22:27:08 +00003492 Rewriter.clearPostInc();
Dan Gohman572645c2010-02-12 10:34:29 +00003493
3494 // An ICmpZero Formula represents an ICmp which we're handling as a
3495 // comparison against zero. Now that we've expanded an expression for that
3496 // form, update the ICmp's other operand.
3497 if (LU.Kind == LSRUse::ICmpZero) {
3498 ICmpInst *CI = cast<ICmpInst>(LF.UserInst);
3499 DeadInsts.push_back(CI->getOperand(1));
3500 assert(!F.AM.BaseGV && "ICmp does not support folding a global value and "
3501 "a scale at the same time!");
3502 if (F.AM.Scale == -1) {
3503 if (ICmpScaledV->getType() != OpTy) {
3504 Instruction *Cast =
3505 CastInst::Create(CastInst::getCastOpcode(ICmpScaledV, false,
3506 OpTy, false),
3507 ICmpScaledV, OpTy, "tmp", CI);
3508 ICmpScaledV = Cast;
3509 }
3510 CI->setOperand(1, ICmpScaledV);
3511 } else {
3512 assert(F.AM.Scale == 0 &&
3513 "ICmp does not support folding a global value and "
3514 "a scale at the same time!");
3515 Constant *C = ConstantInt::getSigned(SE.getEffectiveSCEVType(OpTy),
3516 -(uint64_t)Offset);
3517 if (C->getType() != OpTy)
3518 C = ConstantExpr::getCast(CastInst::getCastOpcode(C, false,
3519 OpTy, false),
3520 C, OpTy);
3521
3522 CI->setOperand(1, C);
3523 }
3524 }
3525
3526 return FullV;
3527}
3528
Dan Gohman3a02cbc2010-02-16 20:25:07 +00003529/// RewriteForPHI - Helper for Rewrite. PHI nodes are special because the use
3530/// of their operands effectively happens in their predecessor blocks, so the
3531/// expression may need to be expanded in multiple places.
3532void LSRInstance::RewriteForPHI(PHINode *PN,
3533 const LSRFixup &LF,
3534 const Formula &F,
Dan Gohman3a02cbc2010-02-16 20:25:07 +00003535 SCEVExpander &Rewriter,
3536 SmallVectorImpl<WeakVH> &DeadInsts,
Dan Gohman3a02cbc2010-02-16 20:25:07 +00003537 Pass *P) const {
3538 DenseMap<BasicBlock *, Value *> Inserted;
3539 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
3540 if (PN->getIncomingValue(i) == LF.OperandValToReplace) {
3541 BasicBlock *BB = PN->getIncomingBlock(i);
3542
3543 // If this is a critical edge, split the edge so that we do not insert
3544 // the code on all predecessor/successor paths. We do this unless this
3545 // is the canonical backedge for this loop, which complicates post-inc
3546 // users.
3547 if (e != 1 && BB->getTerminator()->getNumSuccessors() > 1 &&
3548 !isa<IndirectBrInst>(BB->getTerminator()) &&
3549 (PN->getParent() != L->getHeader() || !L->contains(BB))) {
3550 // Split the critical edge.
3551 BasicBlock *NewBB = SplitCriticalEdge(BB, PN->getParent(), P);
3552
3553 // If PN is outside of the loop and BB is in the loop, we want to
3554 // move the block to be immediately before the PHI block, not
3555 // immediately after BB.
3556 if (L->contains(BB) && !L->contains(PN))
3557 NewBB->moveBefore(PN->getParent());
3558
3559 // Splitting the edge can reduce the number of PHI entries we have.
3560 e = PN->getNumIncomingValues();
3561 BB = NewBB;
3562 i = PN->getBasicBlockIndex(BB);
3563 }
3564
3565 std::pair<DenseMap<BasicBlock *, Value *>::iterator, bool> Pair =
3566 Inserted.insert(std::make_pair(BB, static_cast<Value *>(0)));
3567 if (!Pair.second)
3568 PN->setIncomingValue(i, Pair.first->second);
3569 else {
Dan Gohman454d26d2010-02-22 04:11:59 +00003570 Value *FullV = Expand(LF, F, BB->getTerminator(), Rewriter, DeadInsts);
Dan Gohman3a02cbc2010-02-16 20:25:07 +00003571
3572 // If this is reuse-by-noop-cast, insert the noop cast.
3573 const Type *OpTy = LF.OperandValToReplace->getType();
3574 if (FullV->getType() != OpTy)
3575 FullV =
3576 CastInst::Create(CastInst::getCastOpcode(FullV, false,
3577 OpTy, false),
3578 FullV, LF.OperandValToReplace->getType(),
3579 "tmp", BB->getTerminator());
3580
3581 PN->setIncomingValue(i, FullV);
3582 Pair.first->second = FullV;
3583 }
3584 }
3585}
3586
Dan Gohman572645c2010-02-12 10:34:29 +00003587/// Rewrite - Emit instructions for the leading candidate expression for this
3588/// LSRUse (this is called "expanding"), and update the UserInst to reference
3589/// the newly expanded value.
3590void LSRInstance::Rewrite(const LSRFixup &LF,
3591 const Formula &F,
Dan Gohman572645c2010-02-12 10:34:29 +00003592 SCEVExpander &Rewriter,
3593 SmallVectorImpl<WeakVH> &DeadInsts,
Dan Gohman572645c2010-02-12 10:34:29 +00003594 Pass *P) const {
Dan Gohman572645c2010-02-12 10:34:29 +00003595 // First, find an insertion point that dominates UserInst. For PHI nodes,
3596 // find the nearest block which dominates all the relevant uses.
3597 if (PHINode *PN = dyn_cast<PHINode>(LF.UserInst)) {
Dan Gohman454d26d2010-02-22 04:11:59 +00003598 RewriteForPHI(PN, LF, F, Rewriter, DeadInsts, P);
Dan Gohman572645c2010-02-12 10:34:29 +00003599 } else {
Dan Gohman454d26d2010-02-22 04:11:59 +00003600 Value *FullV = Expand(LF, F, LF.UserInst, Rewriter, DeadInsts);
Dan Gohman572645c2010-02-12 10:34:29 +00003601
3602 // If this is reuse-by-noop-cast, insert the noop cast.
Dan Gohman3a02cbc2010-02-16 20:25:07 +00003603 const Type *OpTy = LF.OperandValToReplace->getType();
Dan Gohman572645c2010-02-12 10:34:29 +00003604 if (FullV->getType() != OpTy) {
3605 Instruction *Cast =
3606 CastInst::Create(CastInst::getCastOpcode(FullV, false, OpTy, false),
3607 FullV, OpTy, "tmp", LF.UserInst);
3608 FullV = Cast;
3609 }
3610
3611 // Update the user. ICmpZero is handled specially here (for now) because
3612 // Expand may have updated one of the operands of the icmp already, and
3613 // its new value may happen to be equal to LF.OperandValToReplace, in
3614 // which case doing replaceUsesOfWith leads to replacing both operands
3615 // with the same value. TODO: Reorganize this.
3616 if (Uses[LF.LUIdx].Kind == LSRUse::ICmpZero)
3617 LF.UserInst->setOperand(0, FullV);
3618 else
3619 LF.UserInst->replaceUsesOfWith(LF.OperandValToReplace, FullV);
3620 }
3621
3622 DeadInsts.push_back(LF.OperandValToReplace);
3623}
3624
Dan Gohman76c315a2010-05-20 20:52:00 +00003625/// ImplementSolution - Rewrite all the fixup locations with new values,
3626/// following the chosen solution.
Dan Gohman572645c2010-02-12 10:34:29 +00003627void
3628LSRInstance::ImplementSolution(const SmallVectorImpl<const Formula *> &Solution,
3629 Pass *P) {
3630 // Keep track of instructions we may have made dead, so that
3631 // we can remove them after we are done working.
3632 SmallVector<WeakVH, 16> DeadInsts;
3633
3634 SCEVExpander Rewriter(SE);
3635 Rewriter.disableCanonicalMode();
3636 Rewriter.setIVIncInsertPos(L, IVIncInsertPos);
3637
3638 // Expand the new value definitions and update the users.
Dan Gohman402d4352010-05-20 20:33:18 +00003639 for (SmallVectorImpl<LSRFixup>::const_iterator I = Fixups.begin(),
3640 E = Fixups.end(); I != E; ++I) {
3641 const LSRFixup &Fixup = *I;
Dan Gohman572645c2010-02-12 10:34:29 +00003642
Dan Gohman402d4352010-05-20 20:33:18 +00003643 Rewrite(Fixup, *Solution[Fixup.LUIdx], Rewriter, DeadInsts, P);
Dan Gohman572645c2010-02-12 10:34:29 +00003644
3645 Changed = true;
3646 }
3647
3648 // Clean up after ourselves. This must be done before deleting any
3649 // instructions.
3650 Rewriter.clear();
3651
3652 Changed |= DeleteTriviallyDeadInstructions(DeadInsts);
3653}
3654
3655LSRInstance::LSRInstance(const TargetLowering *tli, Loop *l, Pass *P)
3656 : IU(P->getAnalysis<IVUsers>()),
3657 SE(P->getAnalysis<ScalarEvolution>()),
3658 DT(P->getAnalysis<DominatorTree>()),
Dan Gohmane5f76872010-04-09 22:07:05 +00003659 LI(P->getAnalysis<LoopInfo>()),
Dan Gohman572645c2010-02-12 10:34:29 +00003660 TLI(tli), L(l), Changed(false), IVIncInsertPos(0) {
Devang Patel0f54dcb2007-03-06 21:14:09 +00003661
Dan Gohman03e896b2009-11-05 21:11:53 +00003662 // If LoopSimplify form is not available, stay out of trouble.
Dan Gohman572645c2010-02-12 10:34:29 +00003663 if (!L->isLoopSimplifyForm()) return;
Dan Gohman03e896b2009-11-05 21:11:53 +00003664
Dan Gohman572645c2010-02-12 10:34:29 +00003665 // If there's no interesting work to be done, bail early.
3666 if (IU.empty()) return;
Dan Gohman80b0f8c2009-03-09 20:34:59 +00003667
Dan Gohman572645c2010-02-12 10:34:29 +00003668 DEBUG(dbgs() << "\nLSR on loop ";
3669 WriteAsOperand(dbgs(), L->getHeader(), /*PrintType=*/false);
3670 dbgs() << ":\n");
Dan Gohmanf7912df2009-03-09 20:46:50 +00003671
Dan Gohman402d4352010-05-20 20:33:18 +00003672 // First, perform some low-level loop optimizations.
Dan Gohman572645c2010-02-12 10:34:29 +00003673 OptimizeShadowIV();
Dan Gohmanc6519f92010-05-20 20:05:31 +00003674 OptimizeLoopTermCond();
Evan Cheng5792f512009-05-11 22:33:01 +00003675
Dan Gohman402d4352010-05-20 20:33:18 +00003676 // Start collecting data and preparing for the solver.
Dan Gohman572645c2010-02-12 10:34:29 +00003677 CollectInterestingTypesAndFactors();
3678 CollectFixupsAndInitialFormulae();
3679 CollectLoopInvariantFixupsAndFormulae();
Chris Lattner010de252005-08-08 05:28:22 +00003680
Dan Gohman572645c2010-02-12 10:34:29 +00003681 DEBUG(dbgs() << "LSR found " << Uses.size() << " uses:\n";
3682 print_uses(dbgs()));
Misha Brukmanfd939082005-04-21 23:48:37 +00003683
Dan Gohman572645c2010-02-12 10:34:29 +00003684 // Now use the reuse data to generate a bunch of interesting ways
3685 // to formulate the values needed for the uses.
3686 GenerateAllReuseFormulae();
Evan Chengd1d6b5c2006-03-16 21:53:05 +00003687
Dan Gohman572645c2010-02-12 10:34:29 +00003688 FilterOutUndesirableDedicatedRegisters();
3689 NarrowSearchSpaceUsingHeuristics();
Dan Gohman6bec5bb2009-12-18 00:06:20 +00003690
Dan Gohman572645c2010-02-12 10:34:29 +00003691 SmallVector<const Formula *, 8> Solution;
3692 Solve(Solution);
Dan Gohman6bec5bb2009-12-18 00:06:20 +00003693
Dan Gohman572645c2010-02-12 10:34:29 +00003694 // Release memory that is no longer needed.
3695 Factors.clear();
3696 Types.clear();
3697 RegUses.clear();
3698
3699#ifndef NDEBUG
3700 // Formulae should be legal.
3701 for (SmallVectorImpl<LSRUse>::const_iterator I = Uses.begin(),
3702 E = Uses.end(); I != E; ++I) {
3703 const LSRUse &LU = *I;
3704 for (SmallVectorImpl<Formula>::const_iterator J = LU.Formulae.begin(),
3705 JE = LU.Formulae.end(); J != JE; ++J)
3706 assert(isLegalUse(J->AM, LU.MinOffset, LU.MaxOffset,
3707 LU.Kind, LU.AccessTy, TLI) &&
3708 "Illegal formula generated!");
3709 };
3710#endif
3711
3712 // Now that we've decided what we want, make it so.
3713 ImplementSolution(Solution, P);
3714}
3715
3716void LSRInstance::print_factors_and_types(raw_ostream &OS) const {
3717 if (Factors.empty() && Types.empty()) return;
3718
3719 OS << "LSR has identified the following interesting factors and types: ";
3720 bool First = true;
3721
3722 for (SmallSetVector<int64_t, 8>::const_iterator
3723 I = Factors.begin(), E = Factors.end(); I != E; ++I) {
3724 if (!First) OS << ", ";
3725 First = false;
3726 OS << '*' << *I;
Evan Cheng81ebdcf2009-11-10 21:14:05 +00003727 }
Dale Johannesenc1acc3f2009-05-11 17:15:42 +00003728
Dan Gohman572645c2010-02-12 10:34:29 +00003729 for (SmallSetVector<const Type *, 4>::const_iterator
3730 I = Types.begin(), E = Types.end(); I != E; ++I) {
3731 if (!First) OS << ", ";
3732 First = false;
3733 OS << '(' << **I << ')';
3734 }
3735 OS << '\n';
3736}
3737
3738void LSRInstance::print_fixups(raw_ostream &OS) const {
3739 OS << "LSR is examining the following fixup sites:\n";
3740 for (SmallVectorImpl<LSRFixup>::const_iterator I = Fixups.begin(),
3741 E = Fixups.end(); I != E; ++I) {
Dan Gohman572645c2010-02-12 10:34:29 +00003742 dbgs() << " ";
Dan Gohman9f383eb2010-05-20 22:25:20 +00003743 I->print(OS);
Dan Gohman572645c2010-02-12 10:34:29 +00003744 OS << '\n';
3745 }
3746}
3747
3748void LSRInstance::print_uses(raw_ostream &OS) const {
3749 OS << "LSR is examining the following uses:\n";
3750 for (SmallVectorImpl<LSRUse>::const_iterator I = Uses.begin(),
3751 E = Uses.end(); I != E; ++I) {
3752 const LSRUse &LU = *I;
3753 dbgs() << " ";
3754 LU.print(OS);
3755 OS << '\n';
3756 for (SmallVectorImpl<Formula>::const_iterator J = LU.Formulae.begin(),
3757 JE = LU.Formulae.end(); J != JE; ++J) {
3758 OS << " ";
3759 J->print(OS);
3760 OS << '\n';
3761 }
3762 }
3763}
3764
3765void LSRInstance::print(raw_ostream &OS) const {
3766 print_factors_and_types(OS);
3767 print_fixups(OS);
3768 print_uses(OS);
3769}
3770
3771void LSRInstance::dump() const {
3772 print(errs()); errs() << '\n';
3773}
3774
3775namespace {
3776
3777class LoopStrengthReduce : public LoopPass {
3778 /// TLI - Keep a pointer of a TargetLowering to consult for determining
3779 /// transformation profitability.
3780 const TargetLowering *const TLI;
3781
3782public:
3783 static char ID; // Pass ID, replacement for typeid
3784 explicit LoopStrengthReduce(const TargetLowering *tli = 0);
3785
3786private:
3787 bool runOnLoop(Loop *L, LPPassManager &LPM);
3788 void getAnalysisUsage(AnalysisUsage &AU) const;
3789};
3790
3791}
3792
3793char LoopStrengthReduce::ID = 0;
Owen Anderson2ab36d32010-10-12 19:48:12 +00003794INITIALIZE_PASS_BEGIN(LoopStrengthReduce, "loop-reduce",
Owen Andersonce665bd2010-10-07 22:25:06 +00003795 "Loop Strength Reduction", false, false)
Owen Anderson2ab36d32010-10-12 19:48:12 +00003796INITIALIZE_PASS_DEPENDENCY(LoopSimplify)
3797INITIALIZE_PASS_DEPENDENCY(DominanceFrontier)
3798INITIALIZE_PASS_DEPENDENCY(DominatorTree)
3799INITIALIZE_PASS_DEPENDENCY(ScalarEvolution)
3800INITIALIZE_PASS_DEPENDENCY(IVUsers)
3801INITIALIZE_PASS_END(LoopStrengthReduce, "loop-reduce",
3802 "Loop Strength Reduction", false, false)
3803
Dan Gohman572645c2010-02-12 10:34:29 +00003804
3805Pass *llvm::createLoopStrengthReducePass(const TargetLowering *TLI) {
3806 return new LoopStrengthReduce(TLI);
3807}
3808
3809LoopStrengthReduce::LoopStrengthReduce(const TargetLowering *tli)
Owen Anderson081c34b2010-10-19 17:21:58 +00003810 : LoopPass(ID), TLI(tli) {
3811 initializeLoopStrengthReducePass(*PassRegistry::getPassRegistry());
3812 }
Dan Gohman572645c2010-02-12 10:34:29 +00003813
3814void LoopStrengthReduce::getAnalysisUsage(AnalysisUsage &AU) const {
3815 // We split critical edges, so we change the CFG. However, we do update
3816 // many analyses if they are around.
3817 AU.addPreservedID(LoopSimplifyID);
Dan Gohman572645c2010-02-12 10:34:29 +00003818 AU.addPreserved("domfrontier");
3819
Dan Gohmane5f76872010-04-09 22:07:05 +00003820 AU.addRequired<LoopInfo>();
3821 AU.addPreserved<LoopInfo>();
Dan Gohman572645c2010-02-12 10:34:29 +00003822 AU.addRequiredID(LoopSimplifyID);
3823 AU.addRequired<DominatorTree>();
3824 AU.addPreserved<DominatorTree>();
3825 AU.addRequired<ScalarEvolution>();
3826 AU.addPreserved<ScalarEvolution>();
3827 AU.addRequired<IVUsers>();
3828 AU.addPreserved<IVUsers>();
3829}
3830
3831bool LoopStrengthReduce::runOnLoop(Loop *L, LPPassManager & /*LPM*/) {
3832 bool Changed = false;
3833
3834 // Run the main LSR transformation.
3835 Changed |= LSRInstance(TLI, L, this).getChanged();
3836
Dan Gohmanafc36a92009-05-02 18:29:22 +00003837 // At this point, it is worth checking to see if any recurrence PHIs are also
Dan Gohman35738ac2009-05-04 22:30:44 +00003838 // dead, so that we can remove them as well.
Dan Gohman9fff2182010-01-05 16:31:45 +00003839 Changed |= DeleteDeadPHIs(L->getHeader());
Dan Gohmanafc36a92009-05-02 18:29:22 +00003840
Evan Cheng1ce75dc2008-07-07 19:51:32 +00003841 return Changed;
Nate Begemaneaa13852004-10-18 21:08:22 +00003842}