blob: 4fe93b9d415c3ff7332a931cf08c95b3becfb48e [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 Gohman25608f72010-08-29 16:32:54 +0000116 void DropUse(size_t LUIdx, size_t NewLUIdx);
Dan Gohmana2086b32010-05-19 23:43:12 +0000117 void DropUse(size_t LUIdx);
Dan Gohmana10756e2010-01-21 02:09:26 +0000118
Dan Gohman572645c2010-02-12 10:34:29 +0000119 bool isRegUsedByUsesOtherThan(const SCEV *Reg, size_t LUIdx) const;
Dan Gohmana10756e2010-01-21 02:09:26 +0000120
Dan Gohman572645c2010-02-12 10:34:29 +0000121 const SmallBitVector &getUsedByIndices(const SCEV *Reg) const;
Dan Gohmana10756e2010-01-21 02:09:26 +0000122
Dan Gohman572645c2010-02-12 10:34:29 +0000123 void clear();
Dan Gohmana10756e2010-01-21 02:09:26 +0000124
Dan Gohman572645c2010-02-12 10:34:29 +0000125 typedef SmallVectorImpl<const SCEV *>::iterator iterator;
126 typedef SmallVectorImpl<const SCEV *>::const_iterator const_iterator;
127 iterator begin() { return RegSequence.begin(); }
128 iterator end() { return RegSequence.end(); }
129 const_iterator begin() const { return RegSequence.begin(); }
130 const_iterator end() const { return RegSequence.end(); }
131};
Dan Gohmana10756e2010-01-21 02:09:26 +0000132
Dan Gohmana10756e2010-01-21 02:09:26 +0000133}
134
Dan Gohman572645c2010-02-12 10:34:29 +0000135void
136RegUseTracker::CountRegister(const SCEV *Reg, size_t LUIdx) {
137 std::pair<RegUsesTy::iterator, bool> Pair =
Dan Gohman90bb3552010-05-18 22:33:00 +0000138 RegUsesMap.insert(std::make_pair(Reg, RegSortData()));
Dan Gohman572645c2010-02-12 10:34:29 +0000139 RegSortData &RSD = Pair.first->second;
140 if (Pair.second)
141 RegSequence.push_back(Reg);
142 RSD.UsedByIndices.resize(std::max(RSD.UsedByIndices.size(), LUIdx + 1));
143 RSD.UsedByIndices.set(LUIdx);
Dan Gohmana10756e2010-01-21 02:09:26 +0000144}
145
Dan Gohmanb2df4332010-05-18 23:42:37 +0000146void
147RegUseTracker::DropRegister(const SCEV *Reg, size_t LUIdx) {
148 RegUsesTy::iterator It = RegUsesMap.find(Reg);
149 assert(It != RegUsesMap.end());
150 RegSortData &RSD = It->second;
151 assert(RSD.UsedByIndices.size() > LUIdx);
152 RSD.UsedByIndices.reset(LUIdx);
153}
154
Dan Gohman25608f72010-08-29 16:32:54 +0000155/// DropUse - Clear out reference by use LUIdx, and prepare for use NewLUIdx
156/// to be swapped into LUIdx's position.
157void
158RegUseTracker::DropUse(size_t LUIdx, size_t NewLUIdx) {
159 // Remove the use index from every register's use list.
160 for (RegUsesTy::iterator I = RegUsesMap.begin(), E = RegUsesMap.end();
161 I != E; ++I) {
162 SmallBitVector &UsedByIndices = I->second.UsedByIndices;
163 UsedByIndices.resize(std::max(UsedByIndices.size(), NewLUIdx + 1));
164 if (LUIdx < UsedByIndices.size()) {
165 UsedByIndices[LUIdx] = UsedByIndices[NewLUIdx];
166 UsedByIndices.reset(NewLUIdx);
167 } else
168 UsedByIndices.reset(LUIdx);
169 }
170}
171
172/// DropUse - Clear out reference by use LUIdx.
Dan Gohmana2086b32010-05-19 23:43:12 +0000173void
174RegUseTracker::DropUse(size_t LUIdx) {
175 // Remove the use index from every register's use list.
176 for (RegUsesTy::iterator I = RegUsesMap.begin(), E = RegUsesMap.end();
177 I != E; ++I)
178 I->second.UsedByIndices.reset(LUIdx);
179}
180
Dan Gohman572645c2010-02-12 10:34:29 +0000181bool
182RegUseTracker::isRegUsedByUsesOtherThan(const SCEV *Reg, size_t LUIdx) const {
Dan Gohman46fd7a62010-08-29 15:18:49 +0000183 RegUsesTy::const_iterator I = RegUsesMap.find(Reg);
184 if (I == RegUsesMap.end())
185 return false;
186 const SmallBitVector &UsedByIndices = I->second.UsedByIndices;
Dan Gohman572645c2010-02-12 10:34:29 +0000187 int i = UsedByIndices.find_first();
188 if (i == -1) return false;
189 if ((size_t)i != LUIdx) return true;
190 return UsedByIndices.find_next(i) != -1;
191}
Dan Gohmana10756e2010-01-21 02:09:26 +0000192
Dan Gohman572645c2010-02-12 10:34:29 +0000193const SmallBitVector &RegUseTracker::getUsedByIndices(const SCEV *Reg) const {
Dan Gohman90bb3552010-05-18 22:33:00 +0000194 RegUsesTy::const_iterator I = RegUsesMap.find(Reg);
195 assert(I != RegUsesMap.end() && "Unknown register!");
Dan Gohman572645c2010-02-12 10:34:29 +0000196 return I->second.UsedByIndices;
197}
Dan Gohmana10756e2010-01-21 02:09:26 +0000198
Dan Gohman572645c2010-02-12 10:34:29 +0000199void RegUseTracker::clear() {
Dan Gohman90bb3552010-05-18 22:33:00 +0000200 RegUsesMap.clear();
Dan Gohman572645c2010-02-12 10:34:29 +0000201 RegSequence.clear();
202}
Dan Gohmana10756e2010-01-21 02:09:26 +0000203
Dan Gohman572645c2010-02-12 10:34:29 +0000204namespace {
205
206/// Formula - This class holds information that describes a formula for
207/// computing satisfying a use. It may include broken-out immediates and scaled
208/// registers.
209struct Formula {
210 /// AM - This is used to represent complex addressing, as well as other kinds
211 /// of interesting uses.
212 TargetLowering::AddrMode AM;
213
214 /// BaseRegs - The list of "base" registers for this use. When this is
215 /// non-empty, AM.HasBaseReg should be set to true.
216 SmallVector<const SCEV *, 2> BaseRegs;
217
218 /// ScaledReg - The 'scaled' register for this use. This should be non-null
219 /// when AM.Scale is not zero.
220 const SCEV *ScaledReg;
221
222 Formula() : ScaledReg(0) {}
223
224 void InitialMatch(const SCEV *S, Loop *L,
225 ScalarEvolution &SE, DominatorTree &DT);
226
227 unsigned getNumRegs() const;
228 const Type *getType() const;
229
Dan Gohman5ce6d052010-05-20 15:17:54 +0000230 void DeleteBaseReg(const SCEV *&S);
231
Dan Gohman572645c2010-02-12 10:34:29 +0000232 bool referencesReg(const SCEV *S) const;
233 bool hasRegsUsedByUsesOtherThan(size_t LUIdx,
234 const RegUseTracker &RegUses) const;
235
236 void print(raw_ostream &OS) const;
237 void dump() const;
238};
239
240}
241
Dan Gohman3f46a3a2010-03-01 17:49:51 +0000242/// DoInitialMatch - Recursion helper for InitialMatch.
Dan Gohman572645c2010-02-12 10:34:29 +0000243static void DoInitialMatch(const SCEV *S, Loop *L,
244 SmallVectorImpl<const SCEV *> &Good,
245 SmallVectorImpl<const SCEV *> &Bad,
246 ScalarEvolution &SE, DominatorTree &DT) {
247 // Collect expressions which properly dominate the loop header.
248 if (S->properlyDominates(L->getHeader(), &DT)) {
249 Good.push_back(S);
250 return;
Dan Gohmana10756e2010-01-21 02:09:26 +0000251 }
Dan Gohman572645c2010-02-12 10:34:29 +0000252
253 // Look at add operands.
254 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
255 for (SCEVAddExpr::op_iterator I = Add->op_begin(), E = Add->op_end();
256 I != E; ++I)
257 DoInitialMatch(*I, L, Good, Bad, SE, DT);
258 return;
259 }
260
261 // Look at addrec operands.
262 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S))
263 if (!AR->getStart()->isZero()) {
264 DoInitialMatch(AR->getStart(), L, Good, Bad, SE, DT);
Dan Gohmandeff6212010-05-03 22:09:21 +0000265 DoInitialMatch(SE.getAddRecExpr(SE.getConstant(AR->getType(), 0),
Dan Gohman572645c2010-02-12 10:34:29 +0000266 AR->getStepRecurrence(SE),
267 AR->getLoop()),
268 L, Good, Bad, SE, DT);
269 return;
270 }
271
272 // Handle a multiplication by -1 (negation) if it didn't fold.
273 if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S))
274 if (Mul->getOperand(0)->isAllOnesValue()) {
275 SmallVector<const SCEV *, 4> Ops(Mul->op_begin()+1, Mul->op_end());
276 const SCEV *NewMul = SE.getMulExpr(Ops);
277
278 SmallVector<const SCEV *, 4> MyGood;
279 SmallVector<const SCEV *, 4> MyBad;
280 DoInitialMatch(NewMul, L, MyGood, MyBad, SE, DT);
281 const SCEV *NegOne = SE.getSCEV(ConstantInt::getAllOnesValue(
282 SE.getEffectiveSCEVType(NewMul->getType())));
283 for (SmallVectorImpl<const SCEV *>::const_iterator I = MyGood.begin(),
284 E = MyGood.end(); I != E; ++I)
285 Good.push_back(SE.getMulExpr(NegOne, *I));
286 for (SmallVectorImpl<const SCEV *>::const_iterator I = MyBad.begin(),
287 E = MyBad.end(); I != E; ++I)
288 Bad.push_back(SE.getMulExpr(NegOne, *I));
289 return;
290 }
291
292 // Ok, we can't do anything interesting. Just stuff the whole thing into a
293 // register and hope for the best.
294 Bad.push_back(S);
295}
296
297/// InitialMatch - Incorporate loop-variant parts of S into this Formula,
298/// attempting to keep all loop-invariant and loop-computable values in a
299/// single base register.
300void Formula::InitialMatch(const SCEV *S, Loop *L,
301 ScalarEvolution &SE, DominatorTree &DT) {
302 SmallVector<const SCEV *, 4> Good;
303 SmallVector<const SCEV *, 4> Bad;
304 DoInitialMatch(S, L, Good, Bad, SE, DT);
305 if (!Good.empty()) {
Dan Gohmane60bb152010-04-08 23:36:27 +0000306 const SCEV *Sum = SE.getAddExpr(Good);
307 if (!Sum->isZero())
308 BaseRegs.push_back(Sum);
Dan Gohman572645c2010-02-12 10:34:29 +0000309 AM.HasBaseReg = true;
310 }
311 if (!Bad.empty()) {
Dan Gohmane60bb152010-04-08 23:36:27 +0000312 const SCEV *Sum = SE.getAddExpr(Bad);
313 if (!Sum->isZero())
314 BaseRegs.push_back(Sum);
Dan Gohman572645c2010-02-12 10:34:29 +0000315 AM.HasBaseReg = true;
316 }
317}
318
319/// getNumRegs - Return the total number of register operands used by this
320/// formula. This does not include register uses implied by non-constant
321/// addrec strides.
322unsigned Formula::getNumRegs() const {
323 return !!ScaledReg + BaseRegs.size();
324}
325
326/// getType - Return the type of this formula, if it has one, or null
327/// otherwise. This type is meaningless except for the bit size.
328const Type *Formula::getType() const {
329 return !BaseRegs.empty() ? BaseRegs.front()->getType() :
330 ScaledReg ? ScaledReg->getType() :
331 AM.BaseGV ? AM.BaseGV->getType() :
332 0;
333}
334
Dan Gohman5ce6d052010-05-20 15:17:54 +0000335/// DeleteBaseReg - Delete the given base reg from the BaseRegs list.
336void Formula::DeleteBaseReg(const SCEV *&S) {
337 if (&S != &BaseRegs.back())
338 std::swap(S, BaseRegs.back());
339 BaseRegs.pop_back();
340}
341
Dan Gohman572645c2010-02-12 10:34:29 +0000342/// referencesReg - Test if this formula references the given register.
343bool Formula::referencesReg(const SCEV *S) const {
344 return S == ScaledReg ||
345 std::find(BaseRegs.begin(), BaseRegs.end(), S) != BaseRegs.end();
346}
347
348/// hasRegsUsedByUsesOtherThan - Test whether this formula uses registers
349/// which are used by uses other than the use with the given index.
350bool Formula::hasRegsUsedByUsesOtherThan(size_t LUIdx,
351 const RegUseTracker &RegUses) const {
352 if (ScaledReg)
353 if (RegUses.isRegUsedByUsesOtherThan(ScaledReg, LUIdx))
354 return true;
355 for (SmallVectorImpl<const SCEV *>::const_iterator I = BaseRegs.begin(),
356 E = BaseRegs.end(); I != E; ++I)
357 if (RegUses.isRegUsedByUsesOtherThan(*I, LUIdx))
358 return true;
359 return false;
360}
361
362void Formula::print(raw_ostream &OS) const {
363 bool First = true;
364 if (AM.BaseGV) {
365 if (!First) OS << " + "; else First = false;
366 WriteAsOperand(OS, AM.BaseGV, /*PrintType=*/false);
367 }
368 if (AM.BaseOffs != 0) {
369 if (!First) OS << " + "; else First = false;
370 OS << AM.BaseOffs;
371 }
372 for (SmallVectorImpl<const SCEV *>::const_iterator I = BaseRegs.begin(),
373 E = BaseRegs.end(); I != E; ++I) {
374 if (!First) OS << " + "; else First = false;
375 OS << "reg(" << **I << ')';
376 }
Dan Gohmanc4cfbaf2010-05-18 22:35:55 +0000377 if (AM.HasBaseReg && BaseRegs.empty()) {
378 if (!First) OS << " + "; else First = false;
379 OS << "**error: HasBaseReg**";
380 } else if (!AM.HasBaseReg && !BaseRegs.empty()) {
381 if (!First) OS << " + "; else First = false;
382 OS << "**error: !HasBaseReg**";
383 }
Dan Gohman572645c2010-02-12 10:34:29 +0000384 if (AM.Scale != 0) {
385 if (!First) OS << " + "; else First = false;
386 OS << AM.Scale << "*reg(";
387 if (ScaledReg)
388 OS << *ScaledReg;
389 else
390 OS << "<unknown>";
391 OS << ')';
392 }
393}
394
395void Formula::dump() const {
396 print(errs()); errs() << '\n';
397}
398
Dan Gohmanaae01f12010-02-19 19:32:49 +0000399/// isAddRecSExtable - Return true if the given addrec can be sign-extended
400/// without changing its value.
401static bool isAddRecSExtable(const SCEVAddRecExpr *AR, ScalarEvolution &SE) {
402 const Type *WideTy =
Dan Gohmanea507f52010-05-20 19:44:23 +0000403 IntegerType::get(SE.getContext(), SE.getTypeSizeInBits(AR->getType()) + 1);
Dan Gohmanaae01f12010-02-19 19:32:49 +0000404 return isa<SCEVAddRecExpr>(SE.getSignExtendExpr(AR, WideTy));
405}
406
407/// isAddSExtable - Return true if the given add can be sign-extended
408/// without changing its value.
409static bool isAddSExtable(const SCEVAddExpr *A, ScalarEvolution &SE) {
410 const Type *WideTy =
Dan Gohmanea507f52010-05-20 19:44:23 +0000411 IntegerType::get(SE.getContext(), SE.getTypeSizeInBits(A->getType()) + 1);
Dan Gohmanaae01f12010-02-19 19:32:49 +0000412 return isa<SCEVAddExpr>(SE.getSignExtendExpr(A, WideTy));
413}
414
Dan Gohman473e6352010-06-24 16:45:11 +0000415/// isMulSExtable - Return true if the given mul can be sign-extended
Dan Gohmanaae01f12010-02-19 19:32:49 +0000416/// without changing its value.
Dan Gohman473e6352010-06-24 16:45:11 +0000417static bool isMulSExtable(const SCEVMulExpr *M, ScalarEvolution &SE) {
Dan Gohmanaae01f12010-02-19 19:32:49 +0000418 const Type *WideTy =
Dan Gohman473e6352010-06-24 16:45:11 +0000419 IntegerType::get(SE.getContext(),
420 SE.getTypeSizeInBits(M->getType()) * M->getNumOperands());
421 return isa<SCEVMulExpr>(SE.getSignExtendExpr(M, WideTy));
Dan Gohmanaae01f12010-02-19 19:32:49 +0000422}
423
Dan Gohmanf09b7122010-02-19 19:35:48 +0000424/// getExactSDiv - Return an expression for LHS /s RHS, if it can be determined
425/// and if the remainder is known to be zero, or null otherwise. If
426/// IgnoreSignificantBits is true, expressions like (X * Y) /s Y are simplified
427/// to Y, ignoring that the multiplication may overflow, which is useful when
428/// the result will be used in a context where the most significant bits are
429/// ignored.
430static const SCEV *getExactSDiv(const SCEV *LHS, const SCEV *RHS,
431 ScalarEvolution &SE,
432 bool IgnoreSignificantBits = false) {
Dan Gohman572645c2010-02-12 10:34:29 +0000433 // Handle the trivial case, which works for any SCEV type.
434 if (LHS == RHS)
Dan Gohmandeff6212010-05-03 22:09:21 +0000435 return SE.getConstant(LHS->getType(), 1);
Dan Gohman572645c2010-02-12 10:34:29 +0000436
Dan Gohmand42819a2010-06-24 16:51:25 +0000437 // Handle a few RHS special cases.
438 const SCEVConstant *RC = dyn_cast<SCEVConstant>(RHS);
439 if (RC) {
440 const APInt &RA = RC->getValue()->getValue();
441 // Handle x /s -1 as x * -1, to give ScalarEvolution a chance to do
442 // some folding.
443 if (RA.isAllOnesValue())
444 return SE.getMulExpr(LHS, RC);
445 // Handle x /s 1 as x.
446 if (RA == 1)
447 return LHS;
448 }
Dan Gohman572645c2010-02-12 10:34:29 +0000449
450 // Check for a division of a constant by a constant.
451 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(LHS)) {
Dan Gohman572645c2010-02-12 10:34:29 +0000452 if (!RC)
453 return 0;
Dan Gohmand42819a2010-06-24 16:51:25 +0000454 const APInt &LA = C->getValue()->getValue();
455 const APInt &RA = RC->getValue()->getValue();
456 if (LA.srem(RA) != 0)
Dan Gohman572645c2010-02-12 10:34:29 +0000457 return 0;
Dan Gohmand42819a2010-06-24 16:51:25 +0000458 return SE.getConstant(LA.sdiv(RA));
Dan Gohman572645c2010-02-12 10:34:29 +0000459 }
460
Dan Gohmanaae01f12010-02-19 19:32:49 +0000461 // Distribute the sdiv over addrec operands, if the addrec doesn't overflow.
Dan Gohman572645c2010-02-12 10:34:29 +0000462 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(LHS)) {
Dan Gohmanaae01f12010-02-19 19:32:49 +0000463 if (IgnoreSignificantBits || isAddRecSExtable(AR, SE)) {
Dan Gohmanf09b7122010-02-19 19:35:48 +0000464 const SCEV *Step = getExactSDiv(AR->getStepRecurrence(SE), RHS, SE,
465 IgnoreSignificantBits);
Dan Gohmanaae01f12010-02-19 19:32:49 +0000466 if (!Step) return 0;
Dan Gohman694a15e2010-08-19 01:02:31 +0000467 const SCEV *Start = getExactSDiv(AR->getStart(), RHS, SE,
468 IgnoreSignificantBits);
469 if (!Start) return 0;
Dan Gohmanaae01f12010-02-19 19:32:49 +0000470 return SE.getAddRecExpr(Start, Step, AR->getLoop());
471 }
Dan Gohman2ea09e02010-06-24 16:57:52 +0000472 return 0;
Dan Gohman572645c2010-02-12 10:34:29 +0000473 }
474
Dan Gohmanaae01f12010-02-19 19:32:49 +0000475 // Distribute the sdiv over add operands, if the add doesn't overflow.
Dan Gohman572645c2010-02-12 10:34:29 +0000476 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(LHS)) {
Dan Gohmanaae01f12010-02-19 19:32:49 +0000477 if (IgnoreSignificantBits || isAddSExtable(Add, SE)) {
478 SmallVector<const SCEV *, 8> Ops;
479 for (SCEVAddExpr::op_iterator I = Add->op_begin(), E = Add->op_end();
480 I != E; ++I) {
Dan Gohmanf09b7122010-02-19 19:35:48 +0000481 const SCEV *Op = getExactSDiv(*I, RHS, SE,
482 IgnoreSignificantBits);
Dan Gohmanaae01f12010-02-19 19:32:49 +0000483 if (!Op) return 0;
484 Ops.push_back(Op);
485 }
486 return SE.getAddExpr(Ops);
Dan Gohman572645c2010-02-12 10:34:29 +0000487 }
Dan Gohman2ea09e02010-06-24 16:57:52 +0000488 return 0;
Dan Gohman572645c2010-02-12 10:34:29 +0000489 }
490
491 // Check for a multiply operand that we can pull RHS out of.
Dan Gohman2ea09e02010-06-24 16:57:52 +0000492 if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(LHS)) {
Dan Gohmanaae01f12010-02-19 19:32:49 +0000493 if (IgnoreSignificantBits || isMulSExtable(Mul, SE)) {
Dan Gohman572645c2010-02-12 10:34:29 +0000494 SmallVector<const SCEV *, 4> Ops;
495 bool Found = false;
496 for (SCEVMulExpr::op_iterator I = Mul->op_begin(), E = Mul->op_end();
497 I != E; ++I) {
Dan Gohman47667442010-05-20 16:23:28 +0000498 const SCEV *S = *I;
Dan Gohman572645c2010-02-12 10:34:29 +0000499 if (!Found)
Dan Gohman47667442010-05-20 16:23:28 +0000500 if (const SCEV *Q = getExactSDiv(S, RHS, SE,
Dan Gohmanf09b7122010-02-19 19:35:48 +0000501 IgnoreSignificantBits)) {
Dan Gohman47667442010-05-20 16:23:28 +0000502 S = Q;
Dan Gohman572645c2010-02-12 10:34:29 +0000503 Found = true;
Dan Gohman572645c2010-02-12 10:34:29 +0000504 }
Dan Gohman47667442010-05-20 16:23:28 +0000505 Ops.push_back(S);
Dan Gohman572645c2010-02-12 10:34:29 +0000506 }
507 return Found ? SE.getMulExpr(Ops) : 0;
508 }
Dan Gohman2ea09e02010-06-24 16:57:52 +0000509 return 0;
510 }
Dan Gohman572645c2010-02-12 10:34:29 +0000511
512 // Otherwise we don't know.
513 return 0;
514}
515
516/// ExtractImmediate - If S involves the addition of a constant integer value,
517/// return that integer value, and mutate S to point to a new SCEV with that
518/// value excluded.
519static int64_t ExtractImmediate(const SCEV *&S, ScalarEvolution &SE) {
520 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(S)) {
521 if (C->getValue()->getValue().getMinSignedBits() <= 64) {
Dan Gohmandeff6212010-05-03 22:09:21 +0000522 S = SE.getConstant(C->getType(), 0);
Dan Gohman572645c2010-02-12 10:34:29 +0000523 return C->getValue()->getSExtValue();
524 }
525 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
526 SmallVector<const SCEV *, 8> NewOps(Add->op_begin(), Add->op_end());
527 int64_t Result = ExtractImmediate(NewOps.front(), SE);
Dan Gohmane62d5882010-08-13 21:17:19 +0000528 if (Result != 0)
529 S = SE.getAddExpr(NewOps);
Dan Gohman572645c2010-02-12 10:34:29 +0000530 return Result;
531 } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
532 SmallVector<const SCEV *, 8> NewOps(AR->op_begin(), AR->op_end());
533 int64_t Result = ExtractImmediate(NewOps.front(), SE);
Dan Gohmane62d5882010-08-13 21:17:19 +0000534 if (Result != 0)
535 S = SE.getAddRecExpr(NewOps, AR->getLoop());
Dan Gohman572645c2010-02-12 10:34:29 +0000536 return Result;
537 }
538 return 0;
539}
540
541/// ExtractSymbol - If S involves the addition of a GlobalValue address,
542/// return that symbol, and mutate S to point to a new SCEV with that
543/// value excluded.
544static GlobalValue *ExtractSymbol(const SCEV *&S, ScalarEvolution &SE) {
545 if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(S)) {
546 if (GlobalValue *GV = dyn_cast<GlobalValue>(U->getValue())) {
Dan Gohmandeff6212010-05-03 22:09:21 +0000547 S = SE.getConstant(GV->getType(), 0);
Dan Gohman572645c2010-02-12 10:34:29 +0000548 return GV;
549 }
550 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
551 SmallVector<const SCEV *, 8> NewOps(Add->op_begin(), Add->op_end());
552 GlobalValue *Result = ExtractSymbol(NewOps.back(), SE);
Dan Gohmane62d5882010-08-13 21:17:19 +0000553 if (Result)
554 S = SE.getAddExpr(NewOps);
Dan Gohman572645c2010-02-12 10:34:29 +0000555 return Result;
556 } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
557 SmallVector<const SCEV *, 8> NewOps(AR->op_begin(), AR->op_end());
558 GlobalValue *Result = ExtractSymbol(NewOps.front(), SE);
Dan Gohmane62d5882010-08-13 21:17:19 +0000559 if (Result)
560 S = SE.getAddRecExpr(NewOps, AR->getLoop());
Dan Gohman572645c2010-02-12 10:34:29 +0000561 return Result;
562 }
563 return 0;
Nate Begemaneaa13852004-10-18 21:08:22 +0000564}
565
Dan Gohmanf284ce22009-02-18 00:08:39 +0000566/// isAddressUse - Returns true if the specified instruction is using the
Dale Johannesen203af582008-12-05 21:47:27 +0000567/// specified value as an address.
568static bool isAddressUse(Instruction *Inst, Value *OperandVal) {
569 bool isAddress = isa<LoadInst>(Inst);
570 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
571 if (SI->getOperand(1) == OperandVal)
572 isAddress = true;
573 } else if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst)) {
574 // Addressing modes can also be folded into prefetches and a variety
575 // of intrinsics.
576 switch (II->getIntrinsicID()) {
577 default: break;
578 case Intrinsic::prefetch:
579 case Intrinsic::x86_sse2_loadu_dq:
580 case Intrinsic::x86_sse2_loadu_pd:
581 case Intrinsic::x86_sse_loadu_ps:
582 case Intrinsic::x86_sse_storeu_ps:
583 case Intrinsic::x86_sse2_storeu_pd:
584 case Intrinsic::x86_sse2_storeu_dq:
585 case Intrinsic::x86_sse2_storel_dq:
Gabor Greifad72e732010-06-30 09:15:28 +0000586 if (II->getArgOperand(0) == OperandVal)
Dale Johannesen203af582008-12-05 21:47:27 +0000587 isAddress = true;
588 break;
589 }
590 }
591 return isAddress;
592}
Chris Lattner0ae33eb2005-10-03 01:04:44 +0000593
Dan Gohman21e77222009-03-09 21:01:17 +0000594/// getAccessType - Return the type of the memory being accessed.
595static const Type *getAccessType(const Instruction *Inst) {
Dan Gohmana537bf82009-05-18 16:45:28 +0000596 const Type *AccessTy = Inst->getType();
Dan Gohman21e77222009-03-09 21:01:17 +0000597 if (const StoreInst *SI = dyn_cast<StoreInst>(Inst))
Dan Gohmana537bf82009-05-18 16:45:28 +0000598 AccessTy = SI->getOperand(0)->getType();
Dan Gohman21e77222009-03-09 21:01:17 +0000599 else if (const IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst)) {
600 // Addressing modes can also be folded into prefetches and a variety
601 // of intrinsics.
602 switch (II->getIntrinsicID()) {
603 default: break;
604 case Intrinsic::x86_sse_storeu_ps:
605 case Intrinsic::x86_sse2_storeu_pd:
606 case Intrinsic::x86_sse2_storeu_dq:
607 case Intrinsic::x86_sse2_storel_dq:
Gabor Greifad72e732010-06-30 09:15:28 +0000608 AccessTy = II->getArgOperand(0)->getType();
Dan Gohman21e77222009-03-09 21:01:17 +0000609 break;
610 }
611 }
Dan Gohman572645c2010-02-12 10:34:29 +0000612
613 // All pointers have the same requirements, so canonicalize them to an
614 // arbitrary pointer type to minimize variation.
615 if (const PointerType *PTy = dyn_cast<PointerType>(AccessTy))
616 AccessTy = PointerType::get(IntegerType::get(PTy->getContext(), 1),
617 PTy->getAddressSpace());
618
Dan Gohmana537bf82009-05-18 16:45:28 +0000619 return AccessTy;
Dan Gohman21e77222009-03-09 21:01:17 +0000620}
621
Dan Gohman572645c2010-02-12 10:34:29 +0000622/// DeleteTriviallyDeadInstructions - If any of the instructions is the
623/// specified set are trivially dead, delete them and see if this makes any of
624/// their operands subsequently dead.
625static bool
626DeleteTriviallyDeadInstructions(SmallVectorImpl<WeakVH> &DeadInsts) {
627 bool Changed = false;
628
629 while (!DeadInsts.empty()) {
630 Instruction *I = dyn_cast_or_null<Instruction>(DeadInsts.pop_back_val());
631
632 if (I == 0 || !isInstructionTriviallyDead(I))
633 continue;
634
635 for (User::op_iterator OI = I->op_begin(), E = I->op_end(); OI != E; ++OI)
636 if (Instruction *U = dyn_cast<Instruction>(*OI)) {
637 *OI = 0;
638 if (U->use_empty())
639 DeadInsts.push_back(U);
640 }
641
642 I->eraseFromParent();
643 Changed = true;
644 }
645
646 return Changed;
647}
648
Dan Gohman7979b722010-01-22 00:46:49 +0000649namespace {
Jim Grosbach56a1f802009-11-17 17:53:56 +0000650
Dan Gohman572645c2010-02-12 10:34:29 +0000651/// Cost - This class is used to measure and compare candidate formulae.
652class Cost {
653 /// TODO: Some of these could be merged. Also, a lexical ordering
654 /// isn't always optimal.
655 unsigned NumRegs;
656 unsigned AddRecCost;
657 unsigned NumIVMuls;
658 unsigned NumBaseAdds;
659 unsigned ImmCost;
660 unsigned SetupCost;
Nate Begeman16997482005-07-30 00:15:07 +0000661
Dan Gohman572645c2010-02-12 10:34:29 +0000662public:
663 Cost()
664 : NumRegs(0), AddRecCost(0), NumIVMuls(0), NumBaseAdds(0), ImmCost(0),
665 SetupCost(0) {}
Jim Grosbach56a1f802009-11-17 17:53:56 +0000666
Dan Gohman572645c2010-02-12 10:34:29 +0000667 unsigned getNumRegs() const { return NumRegs; }
Dan Gohman7979b722010-01-22 00:46:49 +0000668
Dan Gohman572645c2010-02-12 10:34:29 +0000669 bool operator<(const Cost &Other) const;
Dan Gohman7979b722010-01-22 00:46:49 +0000670
Dan Gohman572645c2010-02-12 10:34:29 +0000671 void Loose();
Dan Gohman7979b722010-01-22 00:46:49 +0000672
Dan Gohman572645c2010-02-12 10:34:29 +0000673 void RateFormula(const Formula &F,
674 SmallPtrSet<const SCEV *, 16> &Regs,
675 const DenseSet<const SCEV *> &VisitedRegs,
676 const Loop *L,
677 const SmallVectorImpl<int64_t> &Offsets,
678 ScalarEvolution &SE, DominatorTree &DT);
Dan Gohman7979b722010-01-22 00:46:49 +0000679
Dan Gohman572645c2010-02-12 10:34:29 +0000680 void print(raw_ostream &OS) const;
681 void dump() const;
Dan Gohman7979b722010-01-22 00:46:49 +0000682
Dan Gohman572645c2010-02-12 10:34:29 +0000683private:
684 void 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 void RatePrimaryRegister(const SCEV *Reg,
689 SmallPtrSet<const SCEV *, 16> &Regs,
690 const Loop *L,
691 ScalarEvolution &SE, DominatorTree &DT);
Dan Gohman572645c2010-02-12 10:34:29 +0000692};
693
694}
695
696/// RateRegister - Tally up interesting quantities from the given register.
697void Cost::RateRegister(const SCEV *Reg,
698 SmallPtrSet<const SCEV *, 16> &Regs,
699 const Loop *L,
700 ScalarEvolution &SE, DominatorTree &DT) {
Dan Gohman9214b822010-02-13 02:06:02 +0000701 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(Reg)) {
702 if (AR->getLoop() == L)
703 AddRecCost += 1; /// TODO: This should be a function of the stride.
Dan Gohman572645c2010-02-12 10:34:29 +0000704
Dan Gohman9214b822010-02-13 02:06:02 +0000705 // If this is an addrec for a loop that's already been visited by LSR,
706 // don't second-guess its addrec phi nodes. LSR isn't currently smart
707 // enough to reason about more than one loop at a time. Consider these
708 // registers free and leave them alone.
709 else if (L->contains(AR->getLoop()) ||
710 (!AR->getLoop()->contains(L) &&
711 DT.dominates(L->getHeader(), AR->getLoop()->getHeader()))) {
712 for (BasicBlock::iterator I = AR->getLoop()->getHeader()->begin();
713 PHINode *PN = dyn_cast<PHINode>(I); ++I)
714 if (SE.isSCEVable(PN->getType()) &&
715 (SE.getEffectiveSCEVType(PN->getType()) ==
716 SE.getEffectiveSCEVType(AR->getType())) &&
717 SE.getSCEV(PN) == AR)
718 return;
Dan Gohman572645c2010-02-12 10:34:29 +0000719
Dan Gohman9214b822010-02-13 02:06:02 +0000720 // If this isn't one of the addrecs that the loop already has, it
721 // would require a costly new phi and add. TODO: This isn't
722 // precisely modeled right now.
723 ++NumBaseAdds;
724 if (!Regs.count(AR->getStart()))
Dan Gohman572645c2010-02-12 10:34:29 +0000725 RateRegister(AR->getStart(), Regs, L, SE, DT);
Dan Gohman572645c2010-02-12 10:34:29 +0000726 }
Dan Gohman572645c2010-02-12 10:34:29 +0000727
Dan Gohman9214b822010-02-13 02:06:02 +0000728 // Add the step value register, if it needs one.
729 // TODO: The non-affine case isn't precisely modeled here.
730 if (!AR->isAffine() || !isa<SCEVConstant>(AR->getOperand(1)))
731 if (!Regs.count(AR->getStart()))
732 RateRegister(AR->getOperand(1), Regs, L, SE, DT);
Dan Gohman572645c2010-02-12 10:34:29 +0000733 }
Dan Gohman9214b822010-02-13 02:06:02 +0000734 ++NumRegs;
735
736 // Rough heuristic; favor registers which don't require extra setup
737 // instructions in the preheader.
738 if (!isa<SCEVUnknown>(Reg) &&
739 !isa<SCEVConstant>(Reg) &&
740 !(isa<SCEVAddRecExpr>(Reg) &&
741 (isa<SCEVUnknown>(cast<SCEVAddRecExpr>(Reg)->getStart()) ||
742 isa<SCEVConstant>(cast<SCEVAddRecExpr>(Reg)->getStart()))))
743 ++SetupCost;
744}
745
746/// RatePrimaryRegister - Record this register in the set. If we haven't seen it
747/// before, rate it.
748void Cost::RatePrimaryRegister(const SCEV *Reg,
Dan Gohman7fca2292010-02-16 19:42:34 +0000749 SmallPtrSet<const SCEV *, 16> &Regs,
750 const Loop *L,
751 ScalarEvolution &SE, DominatorTree &DT) {
Dan Gohman9214b822010-02-13 02:06:02 +0000752 if (Regs.insert(Reg))
753 RateRegister(Reg, Regs, L, SE, DT);
Dan Gohman572645c2010-02-12 10:34:29 +0000754}
755
756void Cost::RateFormula(const Formula &F,
757 SmallPtrSet<const SCEV *, 16> &Regs,
758 const DenseSet<const SCEV *> &VisitedRegs,
759 const Loop *L,
760 const SmallVectorImpl<int64_t> &Offsets,
761 ScalarEvolution &SE, DominatorTree &DT) {
762 // Tally up the registers.
763 if (const SCEV *ScaledReg = F.ScaledReg) {
764 if (VisitedRegs.count(ScaledReg)) {
765 Loose();
766 return;
767 }
Dan Gohman9214b822010-02-13 02:06:02 +0000768 RatePrimaryRegister(ScaledReg, Regs, L, SE, DT);
Dan Gohman572645c2010-02-12 10:34:29 +0000769 }
770 for (SmallVectorImpl<const SCEV *>::const_iterator I = F.BaseRegs.begin(),
771 E = F.BaseRegs.end(); I != E; ++I) {
772 const SCEV *BaseReg = *I;
773 if (VisitedRegs.count(BaseReg)) {
774 Loose();
775 return;
776 }
Dan Gohman9214b822010-02-13 02:06:02 +0000777 RatePrimaryRegister(BaseReg, Regs, L, SE, DT);
Dan Gohman572645c2010-02-12 10:34:29 +0000778
779 NumIVMuls += isa<SCEVMulExpr>(BaseReg) &&
780 BaseReg->hasComputableLoopEvolution(L);
781 }
782
783 if (F.BaseRegs.size() > 1)
784 NumBaseAdds += F.BaseRegs.size() - 1;
785
786 // Tally up the non-zero immediates.
787 for (SmallVectorImpl<int64_t>::const_iterator I = Offsets.begin(),
788 E = Offsets.end(); I != E; ++I) {
789 int64_t Offset = (uint64_t)*I + F.AM.BaseOffs;
790 if (F.AM.BaseGV)
791 ImmCost += 64; // Handle symbolic values conservatively.
792 // TODO: This should probably be the pointer size.
793 else if (Offset != 0)
794 ImmCost += APInt(64, Offset, true).getMinSignedBits();
795 }
796}
797
798/// Loose - Set this cost to a loosing value.
799void Cost::Loose() {
800 NumRegs = ~0u;
801 AddRecCost = ~0u;
802 NumIVMuls = ~0u;
803 NumBaseAdds = ~0u;
804 ImmCost = ~0u;
805 SetupCost = ~0u;
806}
807
808/// operator< - Choose the lower cost.
809bool Cost::operator<(const Cost &Other) const {
810 if (NumRegs != Other.NumRegs)
811 return NumRegs < Other.NumRegs;
812 if (AddRecCost != Other.AddRecCost)
813 return AddRecCost < Other.AddRecCost;
814 if (NumIVMuls != Other.NumIVMuls)
815 return NumIVMuls < Other.NumIVMuls;
816 if (NumBaseAdds != Other.NumBaseAdds)
817 return NumBaseAdds < Other.NumBaseAdds;
818 if (ImmCost != Other.ImmCost)
819 return ImmCost < Other.ImmCost;
820 if (SetupCost != Other.SetupCost)
821 return SetupCost < Other.SetupCost;
822 return false;
823}
824
825void Cost::print(raw_ostream &OS) const {
826 OS << NumRegs << " reg" << (NumRegs == 1 ? "" : "s");
827 if (AddRecCost != 0)
828 OS << ", with addrec cost " << AddRecCost;
829 if (NumIVMuls != 0)
830 OS << ", plus " << NumIVMuls << " IV mul" << (NumIVMuls == 1 ? "" : "s");
831 if (NumBaseAdds != 0)
832 OS << ", plus " << NumBaseAdds << " base add"
833 << (NumBaseAdds == 1 ? "" : "s");
834 if (ImmCost != 0)
835 OS << ", plus " << ImmCost << " imm cost";
836 if (SetupCost != 0)
837 OS << ", plus " << SetupCost << " setup cost";
838}
839
840void Cost::dump() const {
841 print(errs()); errs() << '\n';
842}
843
844namespace {
845
846/// LSRFixup - An operand value in an instruction which is to be replaced
847/// with some equivalent, possibly strength-reduced, replacement.
848struct LSRFixup {
849 /// UserInst - The instruction which will be updated.
850 Instruction *UserInst;
851
852 /// OperandValToReplace - The operand of the instruction which will
853 /// be replaced. The operand may be used more than once; every instance
854 /// will be replaced.
855 Value *OperandValToReplace;
856
Dan Gohman448db1c2010-04-07 22:27:08 +0000857 /// PostIncLoops - If this user is to use the post-incremented value of an
Dan Gohman572645c2010-02-12 10:34:29 +0000858 /// induction variable, this variable is non-null and holds the loop
859 /// associated with the induction variable.
Dan Gohman448db1c2010-04-07 22:27:08 +0000860 PostIncLoopSet PostIncLoops;
Dan Gohman572645c2010-02-12 10:34:29 +0000861
862 /// LUIdx - The index of the LSRUse describing the expression which
863 /// this fixup needs, minus an offset (below).
864 size_t LUIdx;
865
866 /// Offset - A constant offset to be added to the LSRUse expression.
867 /// This allows multiple fixups to share the same LSRUse with different
868 /// offsets, for example in an unrolled loop.
869 int64_t Offset;
870
Dan Gohman448db1c2010-04-07 22:27:08 +0000871 bool isUseFullyOutsideLoop(const Loop *L) const;
872
Dan Gohman572645c2010-02-12 10:34:29 +0000873 LSRFixup();
874
875 void print(raw_ostream &OS) const;
876 void dump() const;
877};
878
879}
880
881LSRFixup::LSRFixup()
Dan Gohmanea507f52010-05-20 19:44:23 +0000882 : UserInst(0), OperandValToReplace(0), LUIdx(~size_t(0)), Offset(0) {}
Dan Gohman572645c2010-02-12 10:34:29 +0000883
Dan Gohman448db1c2010-04-07 22:27:08 +0000884/// isUseFullyOutsideLoop - Test whether this fixup always uses its
885/// value outside of the given loop.
886bool LSRFixup::isUseFullyOutsideLoop(const Loop *L) const {
887 // PHI nodes use their value in their incoming blocks.
888 if (const PHINode *PN = dyn_cast<PHINode>(UserInst)) {
889 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
890 if (PN->getIncomingValue(i) == OperandValToReplace &&
891 L->contains(PN->getIncomingBlock(i)))
892 return false;
893 return true;
894 }
895
896 return !L->contains(UserInst);
897}
898
Dan Gohman572645c2010-02-12 10:34:29 +0000899void LSRFixup::print(raw_ostream &OS) const {
900 OS << "UserInst=";
901 // Store is common and interesting enough to be worth special-casing.
902 if (StoreInst *Store = dyn_cast<StoreInst>(UserInst)) {
903 OS << "store ";
904 WriteAsOperand(OS, Store->getOperand(0), /*PrintType=*/false);
905 } else if (UserInst->getType()->isVoidTy())
906 OS << UserInst->getOpcodeName();
907 else
908 WriteAsOperand(OS, UserInst, /*PrintType=*/false);
909
910 OS << ", OperandValToReplace=";
911 WriteAsOperand(OS, OperandValToReplace, /*PrintType=*/false);
912
Dan Gohman448db1c2010-04-07 22:27:08 +0000913 for (PostIncLoopSet::const_iterator I = PostIncLoops.begin(),
914 E = PostIncLoops.end(); I != E; ++I) {
Dan Gohman572645c2010-02-12 10:34:29 +0000915 OS << ", PostIncLoop=";
Dan Gohman448db1c2010-04-07 22:27:08 +0000916 WriteAsOperand(OS, (*I)->getHeader(), /*PrintType=*/false);
Dan Gohman572645c2010-02-12 10:34:29 +0000917 }
918
919 if (LUIdx != ~size_t(0))
920 OS << ", LUIdx=" << LUIdx;
921
922 if (Offset != 0)
923 OS << ", Offset=" << Offset;
924}
925
926void LSRFixup::dump() const {
927 print(errs()); errs() << '\n';
928}
929
930namespace {
931
932/// UniquifierDenseMapInfo - A DenseMapInfo implementation for holding
933/// DenseMaps and DenseSets of sorted SmallVectors of const SCEV*.
934struct UniquifierDenseMapInfo {
935 static SmallVector<const SCEV *, 2> getEmptyKey() {
936 SmallVector<const SCEV *, 2> V;
937 V.push_back(reinterpret_cast<const SCEV *>(-1));
938 return V;
939 }
940
941 static SmallVector<const SCEV *, 2> getTombstoneKey() {
942 SmallVector<const SCEV *, 2> V;
943 V.push_back(reinterpret_cast<const SCEV *>(-2));
944 return V;
945 }
946
947 static unsigned getHashValue(const SmallVector<const SCEV *, 2> &V) {
948 unsigned Result = 0;
949 for (SmallVectorImpl<const SCEV *>::const_iterator I = V.begin(),
950 E = V.end(); I != E; ++I)
951 Result ^= DenseMapInfo<const SCEV *>::getHashValue(*I);
952 return Result;
953 }
954
955 static bool isEqual(const SmallVector<const SCEV *, 2> &LHS,
956 const SmallVector<const SCEV *, 2> &RHS) {
957 return LHS == RHS;
958 }
959};
960
961/// LSRUse - This class holds the state that LSR keeps for each use in
962/// IVUsers, as well as uses invented by LSR itself. It includes information
963/// about what kinds of things can be folded into the user, information about
964/// the user itself, and information about how the use may be satisfied.
965/// TODO: Represent multiple users of the same expression in common?
966class LSRUse {
967 DenseSet<SmallVector<const SCEV *, 2>, UniquifierDenseMapInfo> Uniquifier;
968
969public:
970 /// KindType - An enum for a kind of use, indicating what types of
971 /// scaled and immediate operands it might support.
972 enum KindType {
973 Basic, ///< A normal use, with no folding.
974 Special, ///< A special case of basic, allowing -1 scales.
975 Address, ///< An address use; folding according to TargetLowering
976 ICmpZero ///< An equality icmp with both operands folded into one.
977 // TODO: Add a generic icmp too?
Dan Gohman7979b722010-01-22 00:46:49 +0000978 };
Dan Gohman572645c2010-02-12 10:34:29 +0000979
980 KindType Kind;
981 const Type *AccessTy;
982
983 SmallVector<int64_t, 8> Offsets;
984 int64_t MinOffset;
985 int64_t MaxOffset;
986
987 /// AllFixupsOutsideLoop - This records whether all of the fixups using this
988 /// LSRUse are outside of the loop, in which case some special-case heuristics
989 /// may be used.
990 bool AllFixupsOutsideLoop;
991
Dan Gohmana9db1292010-07-15 20:24:58 +0000992 /// WidestFixupType - This records the widest use type for any fixup using
993 /// this LSRUse. FindUseWithSimilarFormula can't consider uses with different
994 /// max fixup widths to be equivalent, because the narrower one may be relying
995 /// on the implicit truncation to truncate away bogus bits.
996 const Type *WidestFixupType;
997
Dan Gohman572645c2010-02-12 10:34:29 +0000998 /// Formulae - A list of ways to build a value that can satisfy this user.
999 /// After the list is populated, one of these is selected heuristically and
1000 /// used to formulate a replacement for OperandValToReplace in UserInst.
1001 SmallVector<Formula, 12> Formulae;
1002
1003 /// Regs - The set of register candidates used by all formulae in this LSRUse.
1004 SmallPtrSet<const SCEV *, 4> Regs;
1005
1006 LSRUse(KindType K, const Type *T) : Kind(K), AccessTy(T),
1007 MinOffset(INT64_MAX),
1008 MaxOffset(INT64_MIN),
Dan Gohmana9db1292010-07-15 20:24:58 +00001009 AllFixupsOutsideLoop(true),
1010 WidestFixupType(0) {}
Dan Gohman572645c2010-02-12 10:34:29 +00001011
Dan Gohmana2086b32010-05-19 23:43:12 +00001012 bool HasFormulaWithSameRegs(const Formula &F) const;
Dan Gohman454d26d2010-02-22 04:11:59 +00001013 bool InsertFormula(const Formula &F);
Dan Gohmand69d6282010-05-18 22:39:15 +00001014 void DeleteFormula(Formula &F);
Dan Gohmanb2df4332010-05-18 23:42:37 +00001015 void RecomputeRegs(size_t LUIdx, RegUseTracker &Reguses);
Dan Gohman572645c2010-02-12 10:34:29 +00001016
Dan Gohman572645c2010-02-12 10:34:29 +00001017 void print(raw_ostream &OS) const;
1018 void dump() const;
1019};
1020
Dan Gohmanb6211712010-06-19 21:21:39 +00001021}
1022
Dan Gohmana2086b32010-05-19 23:43:12 +00001023/// HasFormula - Test whether this use as a formula which has the same
1024/// registers as the given formula.
1025bool LSRUse::HasFormulaWithSameRegs(const Formula &F) const {
1026 SmallVector<const SCEV *, 2> Key = F.BaseRegs;
1027 if (F.ScaledReg) Key.push_back(F.ScaledReg);
1028 // Unstable sort by host order ok, because this is only used for uniquifying.
1029 std::sort(Key.begin(), Key.end());
1030 return Uniquifier.count(Key);
1031}
1032
Dan Gohman572645c2010-02-12 10:34:29 +00001033/// InsertFormula - If the given formula has not yet been inserted, add it to
1034/// the list, and return true. Return false otherwise.
Dan Gohman454d26d2010-02-22 04:11:59 +00001035bool LSRUse::InsertFormula(const Formula &F) {
Dan Gohman572645c2010-02-12 10:34:29 +00001036 SmallVector<const SCEV *, 2> Key = F.BaseRegs;
1037 if (F.ScaledReg) Key.push_back(F.ScaledReg);
1038 // Unstable sort by host order ok, because this is only used for uniquifying.
1039 std::sort(Key.begin(), Key.end());
1040
1041 if (!Uniquifier.insert(Key).second)
1042 return false;
1043
1044 // Using a register to hold the value of 0 is not profitable.
1045 assert((!F.ScaledReg || !F.ScaledReg->isZero()) &&
1046 "Zero allocated in a scaled register!");
1047#ifndef NDEBUG
1048 for (SmallVectorImpl<const SCEV *>::const_iterator I =
1049 F.BaseRegs.begin(), E = F.BaseRegs.end(); I != E; ++I)
1050 assert(!(*I)->isZero() && "Zero allocated in a base register!");
1051#endif
1052
1053 // Add the formula to the list.
1054 Formulae.push_back(F);
1055
1056 // Record registers now being used by this use.
1057 if (F.ScaledReg) Regs.insert(F.ScaledReg);
1058 Regs.insert(F.BaseRegs.begin(), F.BaseRegs.end());
1059
1060 return true;
Dan Gohman7979b722010-01-22 00:46:49 +00001061}
1062
Dan Gohmand69d6282010-05-18 22:39:15 +00001063/// DeleteFormula - Remove the given formula from this use's list.
1064void LSRUse::DeleteFormula(Formula &F) {
Dan Gohman5ce6d052010-05-20 15:17:54 +00001065 if (&F != &Formulae.back())
1066 std::swap(F, Formulae.back());
Dan Gohmand69d6282010-05-18 22:39:15 +00001067 Formulae.pop_back();
Dan Gohmana2086b32010-05-19 23:43:12 +00001068 assert(!Formulae.empty() && "LSRUse has no formulae left!");
Dan Gohmand69d6282010-05-18 22:39:15 +00001069}
1070
Dan Gohmanb2df4332010-05-18 23:42:37 +00001071/// RecomputeRegs - Recompute the Regs field, and update RegUses.
1072void LSRUse::RecomputeRegs(size_t LUIdx, RegUseTracker &RegUses) {
1073 // Now that we've filtered out some formulae, recompute the Regs set.
1074 SmallPtrSet<const SCEV *, 4> OldRegs = Regs;
1075 Regs.clear();
Dan Gohman402d4352010-05-20 20:33:18 +00001076 for (SmallVectorImpl<Formula>::const_iterator I = Formulae.begin(),
1077 E = Formulae.end(); I != E; ++I) {
1078 const Formula &F = *I;
Dan Gohmanb2df4332010-05-18 23:42:37 +00001079 if (F.ScaledReg) Regs.insert(F.ScaledReg);
1080 Regs.insert(F.BaseRegs.begin(), F.BaseRegs.end());
1081 }
1082
1083 // Update the RegTracker.
1084 for (SmallPtrSet<const SCEV *, 4>::iterator I = OldRegs.begin(),
1085 E = OldRegs.end(); I != E; ++I)
1086 if (!Regs.count(*I))
1087 RegUses.DropRegister(*I, LUIdx);
1088}
1089
Dan Gohman572645c2010-02-12 10:34:29 +00001090void LSRUse::print(raw_ostream &OS) const {
1091 OS << "LSR Use: Kind=";
1092 switch (Kind) {
1093 case Basic: OS << "Basic"; break;
1094 case Special: OS << "Special"; break;
1095 case ICmpZero: OS << "ICmpZero"; break;
1096 case Address:
1097 OS << "Address of ";
Duncan Sands1df98592010-02-16 11:11:14 +00001098 if (AccessTy->isPointerTy())
Dan Gohman572645c2010-02-12 10:34:29 +00001099 OS << "pointer"; // the full pointer type could be really verbose
1100 else
1101 OS << *AccessTy;
Evan Chengcdf43b12007-10-25 09:11:16 +00001102 }
1103
Dan Gohman572645c2010-02-12 10:34:29 +00001104 OS << ", Offsets={";
1105 for (SmallVectorImpl<int64_t>::const_iterator I = Offsets.begin(),
1106 E = Offsets.end(); I != E; ++I) {
1107 OS << *I;
Oscar Fuentesee56c422010-08-02 06:00:15 +00001108 if (llvm::next(I) != E)
Dan Gohman572645c2010-02-12 10:34:29 +00001109 OS << ',';
Dan Gohman7979b722010-01-22 00:46:49 +00001110 }
Dan Gohman572645c2010-02-12 10:34:29 +00001111 OS << '}';
Dan Gohman7979b722010-01-22 00:46:49 +00001112
Dan Gohman572645c2010-02-12 10:34:29 +00001113 if (AllFixupsOutsideLoop)
1114 OS << ", all-fixups-outside-loop";
Dan Gohmana9db1292010-07-15 20:24:58 +00001115
1116 if (WidestFixupType)
1117 OS << ", widest fixup type: " << *WidestFixupType;
Dan Gohman7979b722010-01-22 00:46:49 +00001118}
1119
Dan Gohman572645c2010-02-12 10:34:29 +00001120void LSRUse::dump() const {
1121 print(errs()); errs() << '\n';
1122}
Dan Gohman7979b722010-01-22 00:46:49 +00001123
Dan Gohman572645c2010-02-12 10:34:29 +00001124/// isLegalUse - Test whether the use described by AM is "legal", meaning it can
1125/// be completely folded into the user instruction at isel time. This includes
1126/// address-mode folding and special icmp tricks.
1127static bool isLegalUse(const TargetLowering::AddrMode &AM,
1128 LSRUse::KindType Kind, const Type *AccessTy,
1129 const TargetLowering *TLI) {
1130 switch (Kind) {
1131 case LSRUse::Address:
1132 // If we have low-level target information, ask the target if it can
1133 // completely fold this address.
1134 if (TLI) return TLI->isLegalAddressingMode(AM, AccessTy);
1135
1136 // Otherwise, just guess that reg+reg addressing is legal.
1137 return !AM.BaseGV && AM.BaseOffs == 0 && AM.Scale <= 1;
1138
1139 case LSRUse::ICmpZero:
1140 // There's not even a target hook for querying whether it would be legal to
1141 // fold a GV into an ICmp.
1142 if (AM.BaseGV)
1143 return false;
1144
1145 // ICmp only has two operands; don't allow more than two non-trivial parts.
1146 if (AM.Scale != 0 && AM.HasBaseReg && AM.BaseOffs != 0)
1147 return false;
1148
1149 // ICmp only supports no scale or a -1 scale, as we can "fold" a -1 scale by
1150 // putting the scaled register in the other operand of the icmp.
1151 if (AM.Scale != 0 && AM.Scale != -1)
1152 return false;
1153
1154 // If we have low-level target information, ask the target if it can fold an
1155 // integer immediate on an icmp.
1156 if (AM.BaseOffs != 0) {
1157 if (TLI) return TLI->isLegalICmpImmediate(-AM.BaseOffs);
1158 return false;
Dan Gohman7979b722010-01-22 00:46:49 +00001159 }
Dan Gohman572645c2010-02-12 10:34:29 +00001160
1161 return true;
1162
1163 case LSRUse::Basic:
1164 // Only handle single-register values.
1165 return !AM.BaseGV && AM.Scale == 0 && AM.BaseOffs == 0;
1166
1167 case LSRUse::Special:
1168 // Only handle -1 scales, or no scale.
1169 return AM.Scale == 0 || AM.Scale == -1;
Dan Gohman7979b722010-01-22 00:46:49 +00001170 }
1171
Dan Gohman7979b722010-01-22 00:46:49 +00001172 return false;
1173}
1174
Dan Gohman572645c2010-02-12 10:34:29 +00001175static bool isLegalUse(TargetLowering::AddrMode AM,
1176 int64_t MinOffset, int64_t MaxOffset,
1177 LSRUse::KindType Kind, const Type *AccessTy,
1178 const TargetLowering *TLI) {
1179 // Check for overflow.
1180 if (((int64_t)((uint64_t)AM.BaseOffs + MinOffset) > AM.BaseOffs) !=
1181 (MinOffset > 0))
1182 return false;
1183 AM.BaseOffs = (uint64_t)AM.BaseOffs + MinOffset;
1184 if (isLegalUse(AM, Kind, AccessTy, TLI)) {
1185 AM.BaseOffs = (uint64_t)AM.BaseOffs - MinOffset;
1186 // Check for overflow.
1187 if (((int64_t)((uint64_t)AM.BaseOffs + MaxOffset) > AM.BaseOffs) !=
1188 (MaxOffset > 0))
1189 return false;
1190 AM.BaseOffs = (uint64_t)AM.BaseOffs + MaxOffset;
1191 return isLegalUse(AM, Kind, AccessTy, TLI);
Dan Gohman7979b722010-01-22 00:46:49 +00001192 }
Dan Gohman572645c2010-02-12 10:34:29 +00001193 return false;
Dan Gohman7979b722010-01-22 00:46:49 +00001194}
1195
Dan Gohman572645c2010-02-12 10:34:29 +00001196static bool isAlwaysFoldable(int64_t BaseOffs,
1197 GlobalValue *BaseGV,
1198 bool HasBaseReg,
1199 LSRUse::KindType Kind, const Type *AccessTy,
Dan Gohman454d26d2010-02-22 04:11:59 +00001200 const TargetLowering *TLI) {
Dan Gohman572645c2010-02-12 10:34:29 +00001201 // Fast-path: zero is always foldable.
1202 if (BaseOffs == 0 && !BaseGV) return true;
Dan Gohman7979b722010-01-22 00:46:49 +00001203
Dan Gohman572645c2010-02-12 10:34:29 +00001204 // Conservatively, create an address with an immediate and a
1205 // base and a scale.
1206 TargetLowering::AddrMode AM;
1207 AM.BaseOffs = BaseOffs;
1208 AM.BaseGV = BaseGV;
1209 AM.HasBaseReg = HasBaseReg;
1210 AM.Scale = Kind == LSRUse::ICmpZero ? -1 : 1;
Dan Gohman7979b722010-01-22 00:46:49 +00001211
Dan Gohmana2086b32010-05-19 23:43:12 +00001212 // Canonicalize a scale of 1 to a base register if the formula doesn't
1213 // already have a base register.
1214 if (!AM.HasBaseReg && AM.Scale == 1) {
1215 AM.Scale = 0;
1216 AM.HasBaseReg = true;
1217 }
1218
Dan Gohman572645c2010-02-12 10:34:29 +00001219 return isLegalUse(AM, Kind, AccessTy, TLI);
Dan Gohman7979b722010-01-22 00:46:49 +00001220}
1221
Dan Gohman572645c2010-02-12 10:34:29 +00001222static bool isAlwaysFoldable(const SCEV *S,
1223 int64_t MinOffset, int64_t MaxOffset,
1224 bool HasBaseReg,
1225 LSRUse::KindType Kind, const Type *AccessTy,
1226 const TargetLowering *TLI,
1227 ScalarEvolution &SE) {
1228 // Fast-path: zero is always foldable.
1229 if (S->isZero()) return true;
1230
1231 // Conservatively, create an address with an immediate and a
1232 // base and a scale.
1233 int64_t BaseOffs = ExtractImmediate(S, SE);
1234 GlobalValue *BaseGV = ExtractSymbol(S, SE);
1235
1236 // If there's anything else involved, it's not foldable.
1237 if (!S->isZero()) return false;
1238
1239 // Fast-path: zero is always foldable.
1240 if (BaseOffs == 0 && !BaseGV) return true;
1241
1242 // Conservatively, create an address with an immediate and a
1243 // base and a scale.
1244 TargetLowering::AddrMode AM;
1245 AM.BaseOffs = BaseOffs;
1246 AM.BaseGV = BaseGV;
1247 AM.HasBaseReg = HasBaseReg;
1248 AM.Scale = Kind == LSRUse::ICmpZero ? -1 : 1;
1249
1250 return isLegalUse(AM, MinOffset, MaxOffset, Kind, AccessTy, TLI);
Dan Gohman7979b722010-01-22 00:46:49 +00001251}
1252
Dan Gohmanb6211712010-06-19 21:21:39 +00001253namespace {
1254
Dan Gohman1e3121c2010-06-19 21:29:59 +00001255/// UseMapDenseMapInfo - A DenseMapInfo implementation for holding
1256/// DenseMaps and DenseSets of pairs of const SCEV* and LSRUse::Kind.
1257struct UseMapDenseMapInfo {
1258 static std::pair<const SCEV *, LSRUse::KindType> getEmptyKey() {
1259 return std::make_pair(reinterpret_cast<const SCEV *>(-1), LSRUse::Basic);
1260 }
1261
1262 static std::pair<const SCEV *, LSRUse::KindType> getTombstoneKey() {
1263 return std::make_pair(reinterpret_cast<const SCEV *>(-2), LSRUse::Basic);
1264 }
1265
1266 static unsigned
1267 getHashValue(const std::pair<const SCEV *, LSRUse::KindType> &V) {
1268 unsigned Result = DenseMapInfo<const SCEV *>::getHashValue(V.first);
1269 Result ^= DenseMapInfo<unsigned>::getHashValue(unsigned(V.second));
1270 return Result;
1271 }
1272
1273 static bool isEqual(const std::pair<const SCEV *, LSRUse::KindType> &LHS,
1274 const std::pair<const SCEV *, LSRUse::KindType> &RHS) {
1275 return LHS == RHS;
1276 }
1277};
1278
Dan Gohman572645c2010-02-12 10:34:29 +00001279/// FormulaSorter - This class implements an ordering for formulae which sorts
1280/// the by their standalone cost.
1281class FormulaSorter {
1282 /// These two sets are kept empty, so that we compute standalone costs.
1283 DenseSet<const SCEV *> VisitedRegs;
1284 SmallPtrSet<const SCEV *, 16> Regs;
1285 Loop *L;
1286 LSRUse *LU;
1287 ScalarEvolution &SE;
1288 DominatorTree &DT;
1289
1290public:
1291 FormulaSorter(Loop *l, LSRUse &lu, ScalarEvolution &se, DominatorTree &dt)
1292 : L(l), LU(&lu), SE(se), DT(dt) {}
1293
1294 bool operator()(const Formula &A, const Formula &B) {
1295 Cost CostA;
1296 CostA.RateFormula(A, Regs, VisitedRegs, L, LU->Offsets, SE, DT);
1297 Regs.clear();
1298 Cost CostB;
1299 CostB.RateFormula(B, Regs, VisitedRegs, L, LU->Offsets, SE, DT);
1300 Regs.clear();
1301 return CostA < CostB;
1302 }
1303};
1304
1305/// LSRInstance - This class holds state for the main loop strength reduction
1306/// logic.
1307class LSRInstance {
1308 IVUsers &IU;
1309 ScalarEvolution &SE;
1310 DominatorTree &DT;
Dan Gohmane5f76872010-04-09 22:07:05 +00001311 LoopInfo &LI;
Dan Gohman572645c2010-02-12 10:34:29 +00001312 const TargetLowering *const TLI;
1313 Loop *const L;
1314 bool Changed;
1315
1316 /// IVIncInsertPos - This is the insert position that the current loop's
1317 /// induction variable increment should be placed. In simple loops, this is
1318 /// the latch block's terminator. But in more complicated cases, this is a
1319 /// position which will dominate all the in-loop post-increment users.
1320 Instruction *IVIncInsertPos;
1321
1322 /// Factors - Interesting factors between use strides.
1323 SmallSetVector<int64_t, 8> Factors;
1324
1325 /// Types - Interesting use types, to facilitate truncation reuse.
1326 SmallSetVector<const Type *, 4> Types;
1327
1328 /// Fixups - The list of operands which are to be replaced.
1329 SmallVector<LSRFixup, 16> Fixups;
1330
1331 /// Uses - The list of interesting uses.
1332 SmallVector<LSRUse, 16> Uses;
1333
1334 /// RegUses - Track which uses use which register candidates.
1335 RegUseTracker RegUses;
1336
1337 void OptimizeShadowIV();
1338 bool FindIVUserForCond(ICmpInst *Cond, IVStrideUse *&CondUse);
1339 ICmpInst *OptimizeMax(ICmpInst *Cond, IVStrideUse* &CondUse);
Dan Gohmanc6519f92010-05-20 20:05:31 +00001340 void OptimizeLoopTermCond();
Dan Gohman572645c2010-02-12 10:34:29 +00001341
1342 void CollectInterestingTypesAndFactors();
1343 void CollectFixupsAndInitialFormulae();
1344
1345 LSRFixup &getNewFixup() {
1346 Fixups.push_back(LSRFixup());
1347 return Fixups.back();
1348 }
1349
1350 // Support for sharing of LSRUses between LSRFixups.
Dan Gohman1e3121c2010-06-19 21:29:59 +00001351 typedef DenseMap<std::pair<const SCEV *, LSRUse::KindType>,
1352 size_t,
1353 UseMapDenseMapInfo> UseMapTy;
Dan Gohman572645c2010-02-12 10:34:29 +00001354 UseMapTy UseMap;
1355
Dan Gohman25608f72010-08-29 16:32:54 +00001356 bool reconcileNewOffset(LSRUse &LU,
1357 int64_t NewMinOffset, int64_t NewMaxOffset,
1358 bool HasBaseReg,
Dan Gohman572645c2010-02-12 10:34:29 +00001359 LSRUse::KindType Kind, const Type *AccessTy);
1360
1361 std::pair<size_t, int64_t> getUse(const SCEV *&Expr,
1362 LSRUse::KindType Kind,
1363 const Type *AccessTy);
1364
Dan Gohman5ce6d052010-05-20 15:17:54 +00001365 void DeleteUse(LSRUse &LU);
1366
Dan Gohman25608f72010-08-29 16:32:54 +00001367 LSRUse *FindUseWithSimilarFormula(const Formula &F, const LSRUse &OrigLU,
1368 int64_t &NewBaseOffs);
Dan Gohmana2086b32010-05-19 23:43:12 +00001369
Dan Gohman572645c2010-02-12 10:34:29 +00001370public:
Dan Gohman454d26d2010-02-22 04:11:59 +00001371 void InsertInitialFormula(const SCEV *S, LSRUse &LU, size_t LUIdx);
Dan Gohman572645c2010-02-12 10:34:29 +00001372 void InsertSupplementalFormula(const SCEV *S, LSRUse &LU, size_t LUIdx);
1373 void CountRegisters(const Formula &F, size_t LUIdx);
1374 bool InsertFormula(LSRUse &LU, unsigned LUIdx, const Formula &F);
1375
1376 void CollectLoopInvariantFixupsAndFormulae();
1377
1378 void GenerateReassociations(LSRUse &LU, unsigned LUIdx, Formula Base,
1379 unsigned Depth = 0);
1380 void GenerateCombinations(LSRUse &LU, unsigned LUIdx, Formula Base);
1381 void GenerateSymbolicOffsets(LSRUse &LU, unsigned LUIdx, Formula Base);
1382 void GenerateConstantOffsets(LSRUse &LU, unsigned LUIdx, Formula Base);
1383 void GenerateICmpZeroScales(LSRUse &LU, unsigned LUIdx, Formula Base);
1384 void GenerateScales(LSRUse &LU, unsigned LUIdx, Formula Base);
1385 void GenerateTruncates(LSRUse &LU, unsigned LUIdx, Formula Base);
1386 void GenerateCrossUseConstantOffsets();
1387 void GenerateAllReuseFormulae();
1388
1389 void FilterOutUndesirableDedicatedRegisters();
Dan Gohmand079c302010-05-18 22:51:59 +00001390
1391 size_t EstimateSearchSpaceComplexity() const;
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00001392 void NarrowSearchSpaceByDetectingSupersets();
1393 void NarrowSearchSpaceByCollapsingUnrolledCode();
Dan Gohman4f7e18d2010-08-29 16:39:22 +00001394 void NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters();
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00001395 void NarrowSearchSpaceByPickingWinnerRegs();
Dan Gohman572645c2010-02-12 10:34:29 +00001396 void NarrowSearchSpaceUsingHeuristics();
1397
1398 void SolveRecurse(SmallVectorImpl<const Formula *> &Solution,
1399 Cost &SolutionCost,
1400 SmallVectorImpl<const Formula *> &Workspace,
1401 const Cost &CurCost,
1402 const SmallPtrSet<const SCEV *, 16> &CurRegs,
1403 DenseSet<const SCEV *> &VisitedRegs) const;
1404 void Solve(SmallVectorImpl<const Formula *> &Solution) const;
1405
Dan Gohmane5f76872010-04-09 22:07:05 +00001406 BasicBlock::iterator
1407 HoistInsertPosition(BasicBlock::iterator IP,
1408 const SmallVectorImpl<Instruction *> &Inputs) const;
1409 BasicBlock::iterator AdjustInsertPositionForExpand(BasicBlock::iterator IP,
1410 const LSRFixup &LF,
1411 const LSRUse &LU) const;
Dan Gohmand96eae82010-04-09 02:00:38 +00001412
Dan Gohman572645c2010-02-12 10:34:29 +00001413 Value *Expand(const LSRFixup &LF,
1414 const Formula &F,
Dan Gohman454d26d2010-02-22 04:11:59 +00001415 BasicBlock::iterator IP,
Dan Gohman572645c2010-02-12 10:34:29 +00001416 SCEVExpander &Rewriter,
Dan Gohman454d26d2010-02-22 04:11:59 +00001417 SmallVectorImpl<WeakVH> &DeadInsts) const;
Dan Gohman3a02cbc2010-02-16 20:25:07 +00001418 void RewriteForPHI(PHINode *PN, const LSRFixup &LF,
1419 const Formula &F,
Dan Gohman3a02cbc2010-02-16 20:25:07 +00001420 SCEVExpander &Rewriter,
1421 SmallVectorImpl<WeakVH> &DeadInsts,
Dan Gohman3a02cbc2010-02-16 20:25:07 +00001422 Pass *P) const;
Dan Gohman572645c2010-02-12 10:34:29 +00001423 void Rewrite(const LSRFixup &LF,
1424 const Formula &F,
Dan Gohman572645c2010-02-12 10:34:29 +00001425 SCEVExpander &Rewriter,
1426 SmallVectorImpl<WeakVH> &DeadInsts,
Dan Gohman572645c2010-02-12 10:34:29 +00001427 Pass *P) const;
1428 void ImplementSolution(const SmallVectorImpl<const Formula *> &Solution,
1429 Pass *P);
1430
1431 LSRInstance(const TargetLowering *tli, Loop *l, Pass *P);
1432
1433 bool getChanged() const { return Changed; }
1434
1435 void print_factors_and_types(raw_ostream &OS) const;
1436 void print_fixups(raw_ostream &OS) const;
1437 void print_uses(raw_ostream &OS) const;
1438 void print(raw_ostream &OS) const;
1439 void dump() const;
1440};
1441
1442}
1443
1444/// OptimizeShadowIV - If IV is used in a int-to-float cast
Dan Gohman3f46a3a2010-03-01 17:49:51 +00001445/// inside the loop then try to eliminate the cast operation.
Dan Gohman572645c2010-02-12 10:34:29 +00001446void LSRInstance::OptimizeShadowIV() {
1447 const SCEV *BackedgeTakenCount = SE.getBackedgeTakenCount(L);
1448 if (isa<SCEVCouldNotCompute>(BackedgeTakenCount))
1449 return;
1450
1451 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end();
1452 UI != E; /* empty */) {
1453 IVUsers::const_iterator CandidateUI = UI;
1454 ++UI;
1455 Instruction *ShadowUse = CandidateUI->getUser();
1456 const Type *DestTy = NULL;
1457
1458 /* If shadow use is a int->float cast then insert a second IV
1459 to eliminate this cast.
1460
1461 for (unsigned i = 0; i < n; ++i)
1462 foo((double)i);
1463
1464 is transformed into
1465
1466 double d = 0.0;
1467 for (unsigned i = 0; i < n; ++i, ++d)
1468 foo(d);
1469 */
1470 if (UIToFPInst *UCast = dyn_cast<UIToFPInst>(CandidateUI->getUser()))
1471 DestTy = UCast->getDestTy();
1472 else if (SIToFPInst *SCast = dyn_cast<SIToFPInst>(CandidateUI->getUser()))
1473 DestTy = SCast->getDestTy();
1474 if (!DestTy) continue;
1475
1476 if (TLI) {
1477 // If target does not support DestTy natively then do not apply
1478 // this transformation.
1479 EVT DVT = TLI->getValueType(DestTy);
1480 if (!TLI->isTypeLegal(DVT)) continue;
1481 }
1482
1483 PHINode *PH = dyn_cast<PHINode>(ShadowUse->getOperand(0));
1484 if (!PH) continue;
1485 if (PH->getNumIncomingValues() != 2) continue;
1486
1487 const Type *SrcTy = PH->getType();
1488 int Mantissa = DestTy->getFPMantissaWidth();
1489 if (Mantissa == -1) continue;
1490 if ((int)SE.getTypeSizeInBits(SrcTy) > Mantissa)
1491 continue;
1492
1493 unsigned Entry, Latch;
1494 if (PH->getIncomingBlock(0) == L->getLoopPreheader()) {
1495 Entry = 0;
1496 Latch = 1;
Dan Gohman7979b722010-01-22 00:46:49 +00001497 } else {
Dan Gohman572645c2010-02-12 10:34:29 +00001498 Entry = 1;
1499 Latch = 0;
Dan Gohman7979b722010-01-22 00:46:49 +00001500 }
Dan Gohman7979b722010-01-22 00:46:49 +00001501
Dan Gohman572645c2010-02-12 10:34:29 +00001502 ConstantInt *Init = dyn_cast<ConstantInt>(PH->getIncomingValue(Entry));
1503 if (!Init) continue;
1504 Constant *NewInit = ConstantFP::get(DestTy, Init->getZExtValue());
Dan Gohman7979b722010-01-22 00:46:49 +00001505
Dan Gohman572645c2010-02-12 10:34:29 +00001506 BinaryOperator *Incr =
1507 dyn_cast<BinaryOperator>(PH->getIncomingValue(Latch));
1508 if (!Incr) continue;
1509 if (Incr->getOpcode() != Instruction::Add
1510 && Incr->getOpcode() != Instruction::Sub)
Dan Gohman7979b722010-01-22 00:46:49 +00001511 continue;
Dan Gohman7979b722010-01-22 00:46:49 +00001512
Dan Gohman572645c2010-02-12 10:34:29 +00001513 /* Initialize new IV, double d = 0.0 in above example. */
1514 ConstantInt *C = NULL;
1515 if (Incr->getOperand(0) == PH)
1516 C = dyn_cast<ConstantInt>(Incr->getOperand(1));
1517 else if (Incr->getOperand(1) == PH)
1518 C = dyn_cast<ConstantInt>(Incr->getOperand(0));
Dan Gohman7979b722010-01-22 00:46:49 +00001519 else
Dan Gohman7979b722010-01-22 00:46:49 +00001520 continue;
1521
Dan Gohman572645c2010-02-12 10:34:29 +00001522 if (!C) continue;
Dan Gohman7979b722010-01-22 00:46:49 +00001523
Dan Gohman572645c2010-02-12 10:34:29 +00001524 // Ignore negative constants, as the code below doesn't handle them
1525 // correctly. TODO: Remove this restriction.
1526 if (!C->getValue().isStrictlyPositive()) continue;
Dan Gohman7979b722010-01-22 00:46:49 +00001527
Dan Gohman572645c2010-02-12 10:34:29 +00001528 /* Add new PHINode. */
1529 PHINode *NewPH = PHINode::Create(DestTy, "IV.S.", PH);
Dan Gohman7979b722010-01-22 00:46:49 +00001530
Dan Gohman572645c2010-02-12 10:34:29 +00001531 /* create new increment. '++d' in above example. */
1532 Constant *CFP = ConstantFP::get(DestTy, C->getZExtValue());
1533 BinaryOperator *NewIncr =
1534 BinaryOperator::Create(Incr->getOpcode() == Instruction::Add ?
1535 Instruction::FAdd : Instruction::FSub,
1536 NewPH, CFP, "IV.S.next.", Incr);
Dan Gohman7979b722010-01-22 00:46:49 +00001537
Dan Gohman572645c2010-02-12 10:34:29 +00001538 NewPH->addIncoming(NewInit, PH->getIncomingBlock(Entry));
1539 NewPH->addIncoming(NewIncr, PH->getIncomingBlock(Latch));
Dan Gohman7979b722010-01-22 00:46:49 +00001540
Dan Gohman572645c2010-02-12 10:34:29 +00001541 /* Remove cast operation */
1542 ShadowUse->replaceAllUsesWith(NewPH);
1543 ShadowUse->eraseFromParent();
Dan Gohmanc6519f92010-05-20 20:05:31 +00001544 Changed = true;
Dan Gohman572645c2010-02-12 10:34:29 +00001545 break;
Dan Gohman7979b722010-01-22 00:46:49 +00001546 }
1547}
1548
1549/// FindIVUserForCond - If Cond has an operand that is an expression of an IV,
1550/// set the IV user and stride information and return true, otherwise return
1551/// false.
Dan Gohmanea507f52010-05-20 19:44:23 +00001552bool LSRInstance::FindIVUserForCond(ICmpInst *Cond, IVStrideUse *&CondUse) {
Dan Gohman572645c2010-02-12 10:34:29 +00001553 for (IVUsers::iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI)
1554 if (UI->getUser() == Cond) {
1555 // NOTE: we could handle setcc instructions with multiple uses here, but
1556 // InstCombine does it as well for simple uses, it's not clear that it
1557 // occurs enough in real life to handle.
1558 CondUse = UI;
1559 return true;
1560 }
Dan Gohman7979b722010-01-22 00:46:49 +00001561 return false;
Evan Chengcdf43b12007-10-25 09:11:16 +00001562}
1563
Dan Gohman7979b722010-01-22 00:46:49 +00001564/// OptimizeMax - Rewrite the loop's terminating condition if it uses
1565/// a max computation.
1566///
1567/// This is a narrow solution to a specific, but acute, problem. For loops
1568/// like this:
1569///
1570/// i = 0;
1571/// do {
1572/// p[i] = 0.0;
1573/// } while (++i < n);
1574///
1575/// the trip count isn't just 'n', because 'n' might not be positive. And
1576/// unfortunately this can come up even for loops where the user didn't use
1577/// a C do-while loop. For example, seemingly well-behaved top-test loops
1578/// will commonly be lowered like this:
1579//
1580/// if (n > 0) {
1581/// i = 0;
1582/// do {
1583/// p[i] = 0.0;
1584/// } while (++i < n);
1585/// }
1586///
1587/// and then it's possible for subsequent optimization to obscure the if
1588/// test in such a way that indvars can't find it.
1589///
1590/// When indvars can't find the if test in loops like this, it creates a
1591/// max expression, which allows it to give the loop a canonical
1592/// induction variable:
1593///
1594/// i = 0;
1595/// max = n < 1 ? 1 : n;
1596/// do {
1597/// p[i] = 0.0;
1598/// } while (++i != max);
1599///
1600/// Canonical induction variables are necessary because the loop passes
1601/// are designed around them. The most obvious example of this is the
1602/// LoopInfo analysis, which doesn't remember trip count values. It
1603/// expects to be able to rediscover the trip count each time it is
Dan Gohman572645c2010-02-12 10:34:29 +00001604/// needed, and it does this using a simple analysis that only succeeds if
Dan Gohman7979b722010-01-22 00:46:49 +00001605/// the loop has a canonical induction variable.
1606///
1607/// However, when it comes time to generate code, the maximum operation
1608/// can be quite costly, especially if it's inside of an outer loop.
1609///
1610/// This function solves this problem by detecting this type of loop and
1611/// rewriting their conditions from ICMP_NE back to ICMP_SLT, and deleting
1612/// the instructions for the maximum computation.
1613///
Dan Gohman572645c2010-02-12 10:34:29 +00001614ICmpInst *LSRInstance::OptimizeMax(ICmpInst *Cond, IVStrideUse* &CondUse) {
Dan Gohman7979b722010-01-22 00:46:49 +00001615 // Check that the loop matches the pattern we're looking for.
1616 if (Cond->getPredicate() != CmpInst::ICMP_EQ &&
1617 Cond->getPredicate() != CmpInst::ICMP_NE)
1618 return Cond;
Dan Gohmana10756e2010-01-21 02:09:26 +00001619
Dan Gohman7979b722010-01-22 00:46:49 +00001620 SelectInst *Sel = dyn_cast<SelectInst>(Cond->getOperand(1));
1621 if (!Sel || !Sel->hasOneUse()) return Cond;
Dan Gohmana10756e2010-01-21 02:09:26 +00001622
Dan Gohman572645c2010-02-12 10:34:29 +00001623 const SCEV *BackedgeTakenCount = SE.getBackedgeTakenCount(L);
Dan Gohman7979b722010-01-22 00:46:49 +00001624 if (isa<SCEVCouldNotCompute>(BackedgeTakenCount))
1625 return Cond;
Dan Gohmandeff6212010-05-03 22:09:21 +00001626 const SCEV *One = SE.getConstant(BackedgeTakenCount->getType(), 1);
Dan Gohmana10756e2010-01-21 02:09:26 +00001627
Dan Gohman7979b722010-01-22 00:46:49 +00001628 // Add one to the backedge-taken count to get the trip count.
Dan Gohman4065f602010-08-16 15:39:27 +00001629 const SCEV *IterationCount = SE.getAddExpr(One, BackedgeTakenCount);
Dan Gohman1d367982010-04-24 03:13:44 +00001630 if (IterationCount != SE.getSCEV(Sel)) return Cond;
Dan Gohman7979b722010-01-22 00:46:49 +00001631
Dan Gohman1d367982010-04-24 03:13:44 +00001632 // Check for a max calculation that matches the pattern. There's no check
1633 // for ICMP_ULE here because the comparison would be with zero, which
1634 // isn't interesting.
1635 CmpInst::Predicate Pred = ICmpInst::BAD_ICMP_PREDICATE;
1636 const SCEVNAryExpr *Max = 0;
1637 if (const SCEVSMaxExpr *S = dyn_cast<SCEVSMaxExpr>(BackedgeTakenCount)) {
1638 Pred = ICmpInst::ICMP_SLE;
1639 Max = S;
1640 } else if (const SCEVSMaxExpr *S = dyn_cast<SCEVSMaxExpr>(IterationCount)) {
1641 Pred = ICmpInst::ICMP_SLT;
1642 Max = S;
1643 } else if (const SCEVUMaxExpr *U = dyn_cast<SCEVUMaxExpr>(IterationCount)) {
1644 Pred = ICmpInst::ICMP_ULT;
1645 Max = U;
1646 } else {
1647 // No match; bail.
Dan Gohman7979b722010-01-22 00:46:49 +00001648 return Cond;
Dan Gohman1d367982010-04-24 03:13:44 +00001649 }
Dan Gohman7979b722010-01-22 00:46:49 +00001650
1651 // To handle a max with more than two operands, this optimization would
1652 // require additional checking and setup.
1653 if (Max->getNumOperands() != 2)
1654 return Cond;
1655
1656 const SCEV *MaxLHS = Max->getOperand(0);
1657 const SCEV *MaxRHS = Max->getOperand(1);
Dan Gohman1d367982010-04-24 03:13:44 +00001658
1659 // ScalarEvolution canonicalizes constants to the left. For < and >, look
1660 // for a comparison with 1. For <= and >=, a comparison with zero.
1661 if (!MaxLHS ||
1662 (ICmpInst::isTrueWhenEqual(Pred) ? !MaxLHS->isZero() : (MaxLHS != One)))
1663 return Cond;
1664
Dan Gohman7979b722010-01-22 00:46:49 +00001665 // Check the relevant induction variable for conformance to
1666 // the pattern.
Dan Gohman572645c2010-02-12 10:34:29 +00001667 const SCEV *IV = SE.getSCEV(Cond->getOperand(0));
Dan Gohman7979b722010-01-22 00:46:49 +00001668 const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(IV);
1669 if (!AR || !AR->isAffine() ||
1670 AR->getStart() != One ||
Dan Gohman572645c2010-02-12 10:34:29 +00001671 AR->getStepRecurrence(SE) != One)
Dan Gohman7979b722010-01-22 00:46:49 +00001672 return Cond;
1673
1674 assert(AR->getLoop() == L &&
1675 "Loop condition operand is an addrec in a different loop!");
1676
1677 // Check the right operand of the select, and remember it, as it will
1678 // be used in the new comparison instruction.
1679 Value *NewRHS = 0;
Dan Gohman1d367982010-04-24 03:13:44 +00001680 if (ICmpInst::isTrueWhenEqual(Pred)) {
1681 // Look for n+1, and grab n.
1682 if (AddOperator *BO = dyn_cast<AddOperator>(Sel->getOperand(1)))
1683 if (isa<ConstantInt>(BO->getOperand(1)) &&
1684 cast<ConstantInt>(BO->getOperand(1))->isOne() &&
1685 SE.getSCEV(BO->getOperand(0)) == MaxRHS)
1686 NewRHS = BO->getOperand(0);
1687 if (AddOperator *BO = dyn_cast<AddOperator>(Sel->getOperand(2)))
1688 if (isa<ConstantInt>(BO->getOperand(1)) &&
1689 cast<ConstantInt>(BO->getOperand(1))->isOne() &&
1690 SE.getSCEV(BO->getOperand(0)) == MaxRHS)
1691 NewRHS = BO->getOperand(0);
1692 if (!NewRHS)
1693 return Cond;
1694 } else if (SE.getSCEV(Sel->getOperand(1)) == MaxRHS)
Dan Gohman7979b722010-01-22 00:46:49 +00001695 NewRHS = Sel->getOperand(1);
Dan Gohman572645c2010-02-12 10:34:29 +00001696 else if (SE.getSCEV(Sel->getOperand(2)) == MaxRHS)
Dan Gohman7979b722010-01-22 00:46:49 +00001697 NewRHS = Sel->getOperand(2);
Dan Gohmancaf71ab2010-06-22 23:07:13 +00001698 else if (const SCEVUnknown *SU = dyn_cast<SCEVUnknown>(MaxRHS))
1699 NewRHS = SU->getValue();
Dan Gohman1d367982010-04-24 03:13:44 +00001700 else
Dan Gohmancaf71ab2010-06-22 23:07:13 +00001701 // Max doesn't match expected pattern.
1702 return Cond;
Dan Gohman7979b722010-01-22 00:46:49 +00001703
1704 // Determine the new comparison opcode. It may be signed or unsigned,
1705 // and the original comparison may be either equality or inequality.
Dan Gohman7979b722010-01-22 00:46:49 +00001706 if (Cond->getPredicate() == CmpInst::ICMP_EQ)
1707 Pred = CmpInst::getInversePredicate(Pred);
1708
1709 // Ok, everything looks ok to change the condition into an SLT or SGE and
1710 // delete the max calculation.
1711 ICmpInst *NewCond =
1712 new ICmpInst(Cond, Pred, Cond->getOperand(0), NewRHS, "scmp");
1713
1714 // Delete the max calculation instructions.
1715 Cond->replaceAllUsesWith(NewCond);
1716 CondUse->setUser(NewCond);
1717 Instruction *Cmp = cast<Instruction>(Sel->getOperand(0));
1718 Cond->eraseFromParent();
1719 Sel->eraseFromParent();
1720 if (Cmp->use_empty())
1721 Cmp->eraseFromParent();
1722 return NewCond;
Dan Gohmanad7321f2008-09-15 21:22:06 +00001723}
1724
Jim Grosbach56a1f802009-11-17 17:53:56 +00001725/// OptimizeLoopTermCond - Change loop terminating condition to use the
Evan Cheng586f69a2009-11-12 07:35:05 +00001726/// postinc iv when possible.
Dan Gohmanc6519f92010-05-20 20:05:31 +00001727void
Dan Gohman572645c2010-02-12 10:34:29 +00001728LSRInstance::OptimizeLoopTermCond() {
1729 SmallPtrSet<Instruction *, 4> PostIncs;
1730
Evan Cheng586f69a2009-11-12 07:35:05 +00001731 BasicBlock *LatchBlock = L->getLoopLatch();
Evan Cheng076e0852009-11-17 18:10:11 +00001732 SmallVector<BasicBlock*, 8> ExitingBlocks;
1733 L->getExitingBlocks(ExitingBlocks);
Jim Grosbach56a1f802009-11-17 17:53:56 +00001734
Evan Cheng076e0852009-11-17 18:10:11 +00001735 for (unsigned i = 0, e = ExitingBlocks.size(); i != e; ++i) {
1736 BasicBlock *ExitingBlock = ExitingBlocks[i];
Evan Cheng586f69a2009-11-12 07:35:05 +00001737
Dan Gohman572645c2010-02-12 10:34:29 +00001738 // Get the terminating condition for the loop if possible. If we
Evan Cheng076e0852009-11-17 18:10:11 +00001739 // can, we want to change it to use a post-incremented version of its
1740 // induction variable, to allow coalescing the live ranges for the IV into
1741 // one register value.
Evan Cheng586f69a2009-11-12 07:35:05 +00001742
Evan Cheng076e0852009-11-17 18:10:11 +00001743 BranchInst *TermBr = dyn_cast<BranchInst>(ExitingBlock->getTerminator());
1744 if (!TermBr)
1745 continue;
1746 // FIXME: Overly conservative, termination condition could be an 'or' etc..
1747 if (TermBr->isUnconditional() || !isa<ICmpInst>(TermBr->getCondition()))
1748 continue;
Evan Cheng586f69a2009-11-12 07:35:05 +00001749
Evan Cheng076e0852009-11-17 18:10:11 +00001750 // Search IVUsesByStride to find Cond's IVUse if there is one.
1751 IVStrideUse *CondUse = 0;
Evan Cheng076e0852009-11-17 18:10:11 +00001752 ICmpInst *Cond = cast<ICmpInst>(TermBr->getCondition());
Dan Gohman572645c2010-02-12 10:34:29 +00001753 if (!FindIVUserForCond(Cond, CondUse))
Evan Cheng076e0852009-11-17 18:10:11 +00001754 continue;
1755
Evan Cheng076e0852009-11-17 18:10:11 +00001756 // If the trip count is computed in terms of a max (due to ScalarEvolution
1757 // being unable to find a sufficient guard, for example), change the loop
1758 // comparison to use SLT or ULT instead of NE.
Dan Gohman572645c2010-02-12 10:34:29 +00001759 // One consequence of doing this now is that it disrupts the count-down
1760 // optimization. That's not always a bad thing though, because in such
1761 // cases it may still be worthwhile to avoid a max.
1762 Cond = OptimizeMax(Cond, CondUse);
Evan Cheng076e0852009-11-17 18:10:11 +00001763
Dan Gohman572645c2010-02-12 10:34:29 +00001764 // If this exiting block dominates the latch block, it may also use
1765 // the post-inc value if it won't be shared with other uses.
1766 // Check for dominance.
1767 if (!DT.dominates(ExitingBlock, LatchBlock))
Dan Gohman7979b722010-01-22 00:46:49 +00001768 continue;
Evan Cheng076e0852009-11-17 18:10:11 +00001769
Dan Gohman572645c2010-02-12 10:34:29 +00001770 // Conservatively avoid trying to use the post-inc value in non-latch
1771 // exits if there may be pre-inc users in intervening blocks.
Dan Gohman590bfe82010-02-14 03:21:49 +00001772 if (LatchBlock != ExitingBlock)
Dan Gohman572645c2010-02-12 10:34:29 +00001773 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI)
1774 // Test if the use is reachable from the exiting block. This dominator
1775 // query is a conservative approximation of reachability.
1776 if (&*UI != CondUse &&
1777 !DT.properlyDominates(UI->getUser()->getParent(), ExitingBlock)) {
1778 // Conservatively assume there may be reuse if the quotient of their
1779 // strides could be a legal scale.
Dan Gohmanc0564542010-04-19 21:48:58 +00001780 const SCEV *A = IU.getStride(*CondUse, L);
1781 const SCEV *B = IU.getStride(*UI, L);
Dan Gohman448db1c2010-04-07 22:27:08 +00001782 if (!A || !B) continue;
Dan Gohman572645c2010-02-12 10:34:29 +00001783 if (SE.getTypeSizeInBits(A->getType()) !=
1784 SE.getTypeSizeInBits(B->getType())) {
1785 if (SE.getTypeSizeInBits(A->getType()) >
1786 SE.getTypeSizeInBits(B->getType()))
1787 B = SE.getSignExtendExpr(B, A->getType());
1788 else
1789 A = SE.getSignExtendExpr(A, B->getType());
1790 }
1791 if (const SCEVConstant *D =
Dan Gohmanf09b7122010-02-19 19:35:48 +00001792 dyn_cast_or_null<SCEVConstant>(getExactSDiv(B, A, SE))) {
Dan Gohman9f383eb2010-05-20 22:25:20 +00001793 const ConstantInt *C = D->getValue();
Dan Gohman572645c2010-02-12 10:34:29 +00001794 // Stride of one or negative one can have reuse with non-addresses.
Dan Gohman9f383eb2010-05-20 22:25:20 +00001795 if (C->isOne() || C->isAllOnesValue())
Dan Gohman572645c2010-02-12 10:34:29 +00001796 goto decline_post_inc;
1797 // Avoid weird situations.
Dan Gohman9f383eb2010-05-20 22:25:20 +00001798 if (C->getValue().getMinSignedBits() >= 64 ||
1799 C->getValue().isMinSignedValue())
Dan Gohman572645c2010-02-12 10:34:29 +00001800 goto decline_post_inc;
Dan Gohman590bfe82010-02-14 03:21:49 +00001801 // Without TLI, assume that any stride might be valid, and so any
1802 // use might be shared.
1803 if (!TLI)
1804 goto decline_post_inc;
Dan Gohman572645c2010-02-12 10:34:29 +00001805 // Check for possible scaled-address reuse.
1806 const Type *AccessTy = getAccessType(UI->getUser());
1807 TargetLowering::AddrMode AM;
Dan Gohman9f383eb2010-05-20 22:25:20 +00001808 AM.Scale = C->getSExtValue();
Dan Gohman2763dfd2010-02-14 02:45:21 +00001809 if (TLI->isLegalAddressingMode(AM, AccessTy))
Dan Gohman572645c2010-02-12 10:34:29 +00001810 goto decline_post_inc;
1811 AM.Scale = -AM.Scale;
Dan Gohman2763dfd2010-02-14 02:45:21 +00001812 if (TLI->isLegalAddressingMode(AM, AccessTy))
Dan Gohman572645c2010-02-12 10:34:29 +00001813 goto decline_post_inc;
1814 }
1815 }
1816
David Greene63c94632009-12-23 22:58:38 +00001817 DEBUG(dbgs() << " Change loop exiting icmp to use postinc iv: "
Dan Gohman572645c2010-02-12 10:34:29 +00001818 << *Cond << '\n');
Evan Cheng076e0852009-11-17 18:10:11 +00001819
1820 // It's possible for the setcc instruction to be anywhere in the loop, and
1821 // possible for it to have multiple users. If it is not immediately before
1822 // the exiting block branch, move it.
Dan Gohman572645c2010-02-12 10:34:29 +00001823 if (&*++BasicBlock::iterator(Cond) != TermBr) {
1824 if (Cond->hasOneUse()) {
Evan Cheng076e0852009-11-17 18:10:11 +00001825 Cond->moveBefore(TermBr);
1826 } else {
Dan Gohman572645c2010-02-12 10:34:29 +00001827 // Clone the terminating condition and insert into the loopend.
1828 ICmpInst *OldCond = Cond;
Evan Cheng076e0852009-11-17 18:10:11 +00001829 Cond = cast<ICmpInst>(Cond->clone());
1830 Cond->setName(L->getHeader()->getName() + ".termcond");
1831 ExitingBlock->getInstList().insert(TermBr, Cond);
1832
1833 // Clone the IVUse, as the old use still exists!
Dan Gohmanc0564542010-04-19 21:48:58 +00001834 CondUse = &IU.AddUser(Cond, CondUse->getOperandValToReplace());
Dan Gohman572645c2010-02-12 10:34:29 +00001835 TermBr->replaceUsesOfWith(OldCond, Cond);
Evan Cheng076e0852009-11-17 18:10:11 +00001836 }
Evan Cheng586f69a2009-11-12 07:35:05 +00001837 }
1838
Evan Cheng076e0852009-11-17 18:10:11 +00001839 // If we get to here, we know that we can transform the setcc instruction to
1840 // use the post-incremented version of the IV, allowing us to coalesce the
1841 // live ranges for the IV correctly.
Dan Gohman448db1c2010-04-07 22:27:08 +00001842 CondUse->transformToPostInc(L);
Evan Cheng076e0852009-11-17 18:10:11 +00001843 Changed = true;
1844
Dan Gohman572645c2010-02-12 10:34:29 +00001845 PostIncs.insert(Cond);
1846 decline_post_inc:;
Dan Gohmana10756e2010-01-21 02:09:26 +00001847 }
Dan Gohman572645c2010-02-12 10:34:29 +00001848
1849 // Determine an insertion point for the loop induction variable increment. It
1850 // must dominate all the post-inc comparisons we just set up, and it must
1851 // dominate the loop latch edge.
1852 IVIncInsertPos = L->getLoopLatch()->getTerminator();
1853 for (SmallPtrSet<Instruction *, 4>::const_iterator I = PostIncs.begin(),
1854 E = PostIncs.end(); I != E; ++I) {
1855 BasicBlock *BB =
1856 DT.findNearestCommonDominator(IVIncInsertPos->getParent(),
1857 (*I)->getParent());
1858 if (BB == (*I)->getParent())
1859 IVIncInsertPos = *I;
1860 else if (BB != IVIncInsertPos->getParent())
1861 IVIncInsertPos = BB->getTerminator();
1862 }
Dan Gohmana10756e2010-01-21 02:09:26 +00001863}
1864
Dan Gohman76c315a2010-05-20 20:52:00 +00001865/// reconcileNewOffset - Determine if the given use can accomodate a fixup
1866/// at the given offset and other details. If so, update the use and
1867/// return true.
Dan Gohman572645c2010-02-12 10:34:29 +00001868bool
Dan Gohman25608f72010-08-29 16:32:54 +00001869LSRInstance::reconcileNewOffset(LSRUse &LU,
1870 int64_t NewMinOffset, int64_t NewMaxOffset,
1871 bool HasBaseReg,
Dan Gohman572645c2010-02-12 10:34:29 +00001872 LSRUse::KindType Kind, const Type *AccessTy) {
Dan Gohman25608f72010-08-29 16:32:54 +00001873 int64_t ResultMinOffset = LU.MinOffset;
1874 int64_t ResultMaxOffset = LU.MaxOffset;
1875 const Type *ResultAccessTy = AccessTy;
Dan Gohman7979b722010-01-22 00:46:49 +00001876
Dan Gohman572645c2010-02-12 10:34:29 +00001877 // Check for a mismatched kind. It's tempting to collapse mismatched kinds to
1878 // something conservative, however this can pessimize in the case that one of
1879 // the uses will have all its uses outside the loop, for example.
1880 if (LU.Kind != Kind)
Dan Gohman7979b722010-01-22 00:46:49 +00001881 return false;
Dan Gohman572645c2010-02-12 10:34:29 +00001882 // Conservatively assume HasBaseReg is true for now.
Dan Gohman25608f72010-08-29 16:32:54 +00001883 if (NewMinOffset < LU.MinOffset) {
1884 if (!isAlwaysFoldable(LU.MaxOffset - NewMinOffset, 0, HasBaseReg,
Dan Gohman454d26d2010-02-22 04:11:59 +00001885 Kind, AccessTy, TLI))
Dan Gohman7979b722010-01-22 00:46:49 +00001886 return false;
Dan Gohman25608f72010-08-29 16:32:54 +00001887 ResultMinOffset = NewMinOffset;
1888 } else if (NewMaxOffset > LU.MaxOffset) {
1889 if (!isAlwaysFoldable(NewMaxOffset - LU.MinOffset, 0, HasBaseReg,
Dan Gohman454d26d2010-02-22 04:11:59 +00001890 Kind, AccessTy, TLI))
Dan Gohman7979b722010-01-22 00:46:49 +00001891 return false;
Dan Gohman25608f72010-08-29 16:32:54 +00001892 ResultMaxOffset = NewMaxOffset;
Dan Gohmana10756e2010-01-21 02:09:26 +00001893 }
Dan Gohman572645c2010-02-12 10:34:29 +00001894 // Check for a mismatched access type, and fall back conservatively as needed.
Dan Gohman74e5ef02010-06-19 21:30:18 +00001895 // TODO: Be less conservative when the type is similar and can use the same
1896 // addressing modes.
Dan Gohman572645c2010-02-12 10:34:29 +00001897 if (Kind == LSRUse::Address && AccessTy != LU.AccessTy)
Dan Gohman25608f72010-08-29 16:32:54 +00001898 ResultAccessTy = Type::getVoidTy(AccessTy->getContext());
Dan Gohmana10756e2010-01-21 02:09:26 +00001899
Dan Gohman572645c2010-02-12 10:34:29 +00001900 // Update the use.
Dan Gohman25608f72010-08-29 16:32:54 +00001901 LU.MinOffset = ResultMinOffset;
1902 LU.MaxOffset = ResultMaxOffset;
1903 LU.AccessTy = ResultAccessTy;
Dan Gohman8b0ade32010-01-21 22:42:49 +00001904 return true;
1905}
1906
Dan Gohman572645c2010-02-12 10:34:29 +00001907/// getUse - Return an LSRUse index and an offset value for a fixup which
1908/// needs the given expression, with the given kind and optional access type.
Dan Gohman3f46a3a2010-03-01 17:49:51 +00001909/// Either reuse an existing use or create a new one, as needed.
Dan Gohman572645c2010-02-12 10:34:29 +00001910std::pair<size_t, int64_t>
1911LSRInstance::getUse(const SCEV *&Expr,
1912 LSRUse::KindType Kind, const Type *AccessTy) {
1913 const SCEV *Copy = Expr;
1914 int64_t Offset = ExtractImmediate(Expr, SE);
Evan Cheng586f69a2009-11-12 07:35:05 +00001915
Dan Gohman572645c2010-02-12 10:34:29 +00001916 // Basic uses can't accept any offset, for example.
Dan Gohman454d26d2010-02-22 04:11:59 +00001917 if (!isAlwaysFoldable(Offset, 0, /*HasBaseReg=*/true, Kind, AccessTy, TLI)) {
Dan Gohman572645c2010-02-12 10:34:29 +00001918 Expr = Copy;
1919 Offset = 0;
1920 }
1921
1922 std::pair<UseMapTy::iterator, bool> P =
Dan Gohman1e3121c2010-06-19 21:29:59 +00001923 UseMap.insert(std::make_pair(std::make_pair(Expr, Kind), 0));
Dan Gohman572645c2010-02-12 10:34:29 +00001924 if (!P.second) {
1925 // A use already existed with this base.
1926 size_t LUIdx = P.first->second;
1927 LSRUse &LU = Uses[LUIdx];
Dan Gohman25608f72010-08-29 16:32:54 +00001928 if (reconcileNewOffset(LU, Offset, Offset,
1929 /*HasBaseReg=*/true, Kind, AccessTy)) {
1930 LU.Offsets.push_back(Offset);
Dan Gohman572645c2010-02-12 10:34:29 +00001931 // Reuse this use.
1932 return std::make_pair(LUIdx, Offset);
Dan Gohman25608f72010-08-29 16:32:54 +00001933 }
Dan Gohman572645c2010-02-12 10:34:29 +00001934 }
1935
1936 // Create a new use.
1937 size_t LUIdx = Uses.size();
1938 P.first->second = LUIdx;
1939 Uses.push_back(LSRUse(Kind, AccessTy));
1940 LSRUse &LU = Uses[LUIdx];
1941
Dan Gohman25608f72010-08-29 16:32:54 +00001942 LU.Offsets.push_back(Offset);
Dan Gohman572645c2010-02-12 10:34:29 +00001943 LU.MinOffset = Offset;
1944 LU.MaxOffset = Offset;
1945 return std::make_pair(LUIdx, Offset);
1946}
1947
Dan Gohman5ce6d052010-05-20 15:17:54 +00001948/// DeleteUse - Delete the given use from the Uses list.
1949void LSRInstance::DeleteUse(LSRUse &LU) {
Dan Gohman25608f72010-08-29 16:32:54 +00001950 if (&LU != &Uses.back()) {
Dan Gohman5ce6d052010-05-20 15:17:54 +00001951 std::swap(LU, Uses.back());
Dan Gohman25608f72010-08-29 16:32:54 +00001952 RegUses.DropUse(&LU - Uses.begin(), Uses.size() - 1);
1953 } else {
1954 RegUses.DropUse(&LU - Uses.begin());
1955 }
Dan Gohman5ce6d052010-05-20 15:17:54 +00001956 Uses.pop_back();
1957}
1958
Dan Gohmana2086b32010-05-19 23:43:12 +00001959/// FindUseWithFormula - Look for a use distinct from OrigLU which is has
1960/// a formula that has the same registers as the given formula.
1961LSRUse *
1962LSRInstance::FindUseWithSimilarFormula(const Formula &OrigF,
Dan Gohman25608f72010-08-29 16:32:54 +00001963 const LSRUse &OrigLU,
1964 int64_t &NewBaseOffs) {
1965 // Search all uses for a formula similar to OrigF. This could be more clever.
Dan Gohmana2086b32010-05-19 23:43:12 +00001966 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
1967 LSRUse &LU = Uses[LUIdx];
Dan Gohman6a832712010-08-29 15:27:08 +00001968 // Check whether this use is close enough to OrigLU, to see whether it's
1969 // worthwhile looking through its formulae.
1970 // Ignore ICmpZero uses because they may contain formulae generated by
1971 // GenerateICmpZeroScales, in which case adding fixup offsets may
1972 // be invalid.
Dan Gohmana2086b32010-05-19 23:43:12 +00001973 if (&LU != &OrigLU &&
1974 LU.Kind != LSRUse::ICmpZero &&
1975 LU.Kind == OrigLU.Kind && OrigLU.AccessTy == LU.AccessTy &&
Dan Gohmana9db1292010-07-15 20:24:58 +00001976 LU.WidestFixupType == OrigLU.WidestFixupType &&
Dan Gohmana2086b32010-05-19 23:43:12 +00001977 LU.HasFormulaWithSameRegs(OrigF)) {
Dan Gohman6a832712010-08-29 15:27:08 +00001978 // Scan through this use's formulae.
Dan Gohman402d4352010-05-20 20:33:18 +00001979 for (SmallVectorImpl<Formula>::const_iterator I = LU.Formulae.begin(),
1980 E = LU.Formulae.end(); I != E; ++I) {
1981 const Formula &F = *I;
Dan Gohman6a832712010-08-29 15:27:08 +00001982 // Check to see if this formula has the same registers and symbols
1983 // as OrigF.
Dan Gohmana2086b32010-05-19 23:43:12 +00001984 if (F.BaseRegs == OrigF.BaseRegs &&
1985 F.ScaledReg == OrigF.ScaledReg &&
1986 F.AM.BaseGV == OrigF.AM.BaseGV &&
Dan Gohmane39a47c2010-08-29 15:30:29 +00001987 F.AM.Scale == OrigF.AM.Scale) {
Dan Gohman25608f72010-08-29 16:32:54 +00001988 // Ok, all the registers and symbols matched. Check to see if the
1989 // immediate looks nicer than our old one.
1990 if (OrigF.AM.BaseOffs == INT64_MIN ||
1991 (F.AM.BaseOffs != INT64_MIN &&
1992 abs64(F.AM.BaseOffs) < abs64(OrigF.AM.BaseOffs))) {
1993 // Looks good. Take it.
1994 NewBaseOffs = F.AM.BaseOffs;
Dan Gohmana2086b32010-05-19 23:43:12 +00001995 return &LU;
Dan Gohman25608f72010-08-29 16:32:54 +00001996 }
Dan Gohman6a832712010-08-29 15:27:08 +00001997 // This is the formula where all the registers and symbols matched;
1998 // there aren't going to be any others. Since we declined it, we
1999 // can skip the rest of the formulae and procede to the next LSRUse.
Dan Gohmana2086b32010-05-19 23:43:12 +00002000 break;
2001 }
2002 }
2003 }
2004 }
2005
Dan Gohman6a832712010-08-29 15:27:08 +00002006 // Nothing looked good.
Dan Gohmana2086b32010-05-19 23:43:12 +00002007 return 0;
2008}
2009
Dan Gohman572645c2010-02-12 10:34:29 +00002010void LSRInstance::CollectInterestingTypesAndFactors() {
2011 SmallSetVector<const SCEV *, 4> Strides;
2012
Dan Gohman1b7bf182010-02-19 00:05:23 +00002013 // Collect interesting types and strides.
Dan Gohman448db1c2010-04-07 22:27:08 +00002014 SmallVector<const SCEV *, 4> Worklist;
Dan Gohman572645c2010-02-12 10:34:29 +00002015 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI) {
Dan Gohmanc0564542010-04-19 21:48:58 +00002016 const SCEV *Expr = IU.getExpr(*UI);
Dan Gohman572645c2010-02-12 10:34:29 +00002017
2018 // Collect interesting types.
Dan Gohman448db1c2010-04-07 22:27:08 +00002019 Types.insert(SE.getEffectiveSCEVType(Expr->getType()));
Dan Gohman572645c2010-02-12 10:34:29 +00002020
Dan Gohman448db1c2010-04-07 22:27:08 +00002021 // Add strides for mentioned loops.
2022 Worklist.push_back(Expr);
2023 do {
2024 const SCEV *S = Worklist.pop_back_val();
2025 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
2026 Strides.insert(AR->getStepRecurrence(SE));
2027 Worklist.push_back(AR->getStart());
2028 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
Dan Gohman403a8cd2010-06-21 19:47:52 +00002029 Worklist.append(Add->op_begin(), Add->op_end());
Dan Gohman448db1c2010-04-07 22:27:08 +00002030 }
2031 } while (!Worklist.empty());
Dan Gohman1b7bf182010-02-19 00:05:23 +00002032 }
2033
2034 // Compute interesting factors from the set of interesting strides.
2035 for (SmallSetVector<const SCEV *, 4>::const_iterator
2036 I = Strides.begin(), E = Strides.end(); I != E; ++I)
Dan Gohman572645c2010-02-12 10:34:29 +00002037 for (SmallSetVector<const SCEV *, 4>::const_iterator NewStrideIter =
Oscar Fuentesee56c422010-08-02 06:00:15 +00002038 llvm::next(I); NewStrideIter != E; ++NewStrideIter) {
Dan Gohman1b7bf182010-02-19 00:05:23 +00002039 const SCEV *OldStride = *I;
Dan Gohman572645c2010-02-12 10:34:29 +00002040 const SCEV *NewStride = *NewStrideIter;
Dan Gohman572645c2010-02-12 10:34:29 +00002041
2042 if (SE.getTypeSizeInBits(OldStride->getType()) !=
2043 SE.getTypeSizeInBits(NewStride->getType())) {
2044 if (SE.getTypeSizeInBits(OldStride->getType()) >
2045 SE.getTypeSizeInBits(NewStride->getType()))
2046 NewStride = SE.getSignExtendExpr(NewStride, OldStride->getType());
2047 else
2048 OldStride = SE.getSignExtendExpr(OldStride, NewStride->getType());
2049 }
2050 if (const SCEVConstant *Factor =
Dan Gohmanf09b7122010-02-19 19:35:48 +00002051 dyn_cast_or_null<SCEVConstant>(getExactSDiv(NewStride, OldStride,
2052 SE, true))) {
Dan Gohman572645c2010-02-12 10:34:29 +00002053 if (Factor->getValue()->getValue().getMinSignedBits() <= 64)
2054 Factors.insert(Factor->getValue()->getValue().getSExtValue());
2055 } else if (const SCEVConstant *Factor =
Dan Gohman454d26d2010-02-22 04:11:59 +00002056 dyn_cast_or_null<SCEVConstant>(getExactSDiv(OldStride,
2057 NewStride,
Dan Gohmanf09b7122010-02-19 19:35:48 +00002058 SE, true))) {
Dan Gohman572645c2010-02-12 10:34:29 +00002059 if (Factor->getValue()->getValue().getMinSignedBits() <= 64)
2060 Factors.insert(Factor->getValue()->getValue().getSExtValue());
2061 }
2062 }
Dan Gohman572645c2010-02-12 10:34:29 +00002063
2064 // If all uses use the same type, don't bother looking for truncation-based
2065 // reuse.
2066 if (Types.size() == 1)
2067 Types.clear();
2068
2069 DEBUG(print_factors_and_types(dbgs()));
2070}
2071
2072void LSRInstance::CollectFixupsAndInitialFormulae() {
2073 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI) {
2074 // Record the uses.
2075 LSRFixup &LF = getNewFixup();
2076 LF.UserInst = UI->getUser();
2077 LF.OperandValToReplace = UI->getOperandValToReplace();
Dan Gohman448db1c2010-04-07 22:27:08 +00002078 LF.PostIncLoops = UI->getPostIncLoops();
Dan Gohman572645c2010-02-12 10:34:29 +00002079
2080 LSRUse::KindType Kind = LSRUse::Basic;
2081 const Type *AccessTy = 0;
2082 if (isAddressUse(LF.UserInst, LF.OperandValToReplace)) {
2083 Kind = LSRUse::Address;
2084 AccessTy = getAccessType(LF.UserInst);
2085 }
2086
Dan Gohmanc0564542010-04-19 21:48:58 +00002087 const SCEV *S = IU.getExpr(*UI);
Dan Gohman572645c2010-02-12 10:34:29 +00002088
2089 // Equality (== and !=) ICmps are special. We can rewrite (i == N) as
2090 // (N - i == 0), and this allows (N - i) to be the expression that we work
2091 // with rather than just N or i, so we can consider the register
2092 // requirements for both N and i at the same time. Limiting this code to
2093 // equality icmps is not a problem because all interesting loops use
2094 // equality icmps, thanks to IndVarSimplify.
2095 if (ICmpInst *CI = dyn_cast<ICmpInst>(LF.UserInst))
2096 if (CI->isEquality()) {
2097 // Swap the operands if needed to put the OperandValToReplace on the
2098 // left, for consistency.
2099 Value *NV = CI->getOperand(1);
2100 if (NV == LF.OperandValToReplace) {
2101 CI->setOperand(1, CI->getOperand(0));
2102 CI->setOperand(0, NV);
Dan Gohmanf182b232010-05-20 19:26:52 +00002103 NV = CI->getOperand(1);
Dan Gohman9da1bf42010-05-20 19:16:03 +00002104 Changed = true;
Dan Gohman572645c2010-02-12 10:34:29 +00002105 }
2106
2107 // x == y --> x - y == 0
2108 const SCEV *N = SE.getSCEV(NV);
2109 if (N->isLoopInvariant(L)) {
2110 Kind = LSRUse::ICmpZero;
2111 S = SE.getMinusSCEV(N, S);
2112 }
2113
2114 // -1 and the negations of all interesting strides (except the negation
2115 // of -1) are now also interesting.
2116 for (size_t i = 0, e = Factors.size(); i != e; ++i)
2117 if (Factors[i] != -1)
2118 Factors.insert(-(uint64_t)Factors[i]);
2119 Factors.insert(-1);
2120 }
2121
2122 // Set up the initial formula for this use.
2123 std::pair<size_t, int64_t> P = getUse(S, Kind, AccessTy);
2124 LF.LUIdx = P.first;
2125 LF.Offset = P.second;
2126 LSRUse &LU = Uses[LF.LUIdx];
Dan Gohman448db1c2010-04-07 22:27:08 +00002127 LU.AllFixupsOutsideLoop &= LF.isUseFullyOutsideLoop(L);
Dan Gohmana9db1292010-07-15 20:24:58 +00002128 if (!LU.WidestFixupType ||
2129 SE.getTypeSizeInBits(LU.WidestFixupType) <
2130 SE.getTypeSizeInBits(LF.OperandValToReplace->getType()))
2131 LU.WidestFixupType = LF.OperandValToReplace->getType();
Dan Gohman572645c2010-02-12 10:34:29 +00002132
2133 // If this is the first use of this LSRUse, give it a formula.
2134 if (LU.Formulae.empty()) {
Dan Gohman454d26d2010-02-22 04:11:59 +00002135 InsertInitialFormula(S, LU, LF.LUIdx);
Dan Gohman572645c2010-02-12 10:34:29 +00002136 CountRegisters(LU.Formulae.back(), LF.LUIdx);
2137 }
2138 }
2139
2140 DEBUG(print_fixups(dbgs()));
2141}
2142
Dan Gohman76c315a2010-05-20 20:52:00 +00002143/// InsertInitialFormula - Insert a formula for the given expression into
2144/// the given use, separating out loop-variant portions from loop-invariant
2145/// and loop-computable portions.
Dan Gohman572645c2010-02-12 10:34:29 +00002146void
Dan Gohman454d26d2010-02-22 04:11:59 +00002147LSRInstance::InsertInitialFormula(const SCEV *S, LSRUse &LU, size_t LUIdx) {
Dan Gohman572645c2010-02-12 10:34:29 +00002148 Formula F;
2149 F.InitialMatch(S, L, SE, DT);
2150 bool Inserted = InsertFormula(LU, LUIdx, F);
2151 assert(Inserted && "Initial formula already exists!"); (void)Inserted;
2152}
2153
Dan Gohman76c315a2010-05-20 20:52:00 +00002154/// InsertSupplementalFormula - Insert a simple single-register formula for
2155/// the given expression into the given use.
Dan Gohman572645c2010-02-12 10:34:29 +00002156void
2157LSRInstance::InsertSupplementalFormula(const SCEV *S,
2158 LSRUse &LU, size_t LUIdx) {
2159 Formula F;
2160 F.BaseRegs.push_back(S);
2161 F.AM.HasBaseReg = true;
2162 bool Inserted = InsertFormula(LU, LUIdx, F);
2163 assert(Inserted && "Supplemental formula already exists!"); (void)Inserted;
2164}
2165
2166/// CountRegisters - Note which registers are used by the given formula,
2167/// updating RegUses.
2168void LSRInstance::CountRegisters(const Formula &F, size_t LUIdx) {
2169 if (F.ScaledReg)
2170 RegUses.CountRegister(F.ScaledReg, LUIdx);
2171 for (SmallVectorImpl<const SCEV *>::const_iterator I = F.BaseRegs.begin(),
2172 E = F.BaseRegs.end(); I != E; ++I)
2173 RegUses.CountRegister(*I, LUIdx);
2174}
2175
2176/// InsertFormula - If the given formula has not yet been inserted, add it to
2177/// the list, and return true. Return false otherwise.
2178bool LSRInstance::InsertFormula(LSRUse &LU, unsigned LUIdx, const Formula &F) {
Dan Gohman454d26d2010-02-22 04:11:59 +00002179 if (!LU.InsertFormula(F))
Dan Gohman572645c2010-02-12 10:34:29 +00002180 return false;
2181
2182 CountRegisters(F, LUIdx);
2183 return true;
2184}
2185
2186/// CollectLoopInvariantFixupsAndFormulae - Check for other uses of
2187/// loop-invariant values which we're tracking. These other uses will pin these
2188/// values in registers, making them less profitable for elimination.
2189/// TODO: This currently misses non-constant addrec step registers.
2190/// TODO: Should this give more weight to users inside the loop?
2191void
2192LSRInstance::CollectLoopInvariantFixupsAndFormulae() {
2193 SmallVector<const SCEV *, 8> Worklist(RegUses.begin(), RegUses.end());
2194 SmallPtrSet<const SCEV *, 8> Inserted;
2195
2196 while (!Worklist.empty()) {
2197 const SCEV *S = Worklist.pop_back_val();
2198
2199 if (const SCEVNAryExpr *N = dyn_cast<SCEVNAryExpr>(S))
Dan Gohman403a8cd2010-06-21 19:47:52 +00002200 Worklist.append(N->op_begin(), N->op_end());
Dan Gohman572645c2010-02-12 10:34:29 +00002201 else if (const SCEVCastExpr *C = dyn_cast<SCEVCastExpr>(S))
2202 Worklist.push_back(C->getOperand());
2203 else if (const SCEVUDivExpr *D = dyn_cast<SCEVUDivExpr>(S)) {
2204 Worklist.push_back(D->getLHS());
2205 Worklist.push_back(D->getRHS());
2206 } else if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(S)) {
2207 if (!Inserted.insert(U)) continue;
2208 const Value *V = U->getValue();
Dan Gohmana15ec5d2010-06-04 23:16:05 +00002209 if (const Instruction *Inst = dyn_cast<Instruction>(V)) {
2210 // Look for instructions defined outside the loop.
Dan Gohman572645c2010-02-12 10:34:29 +00002211 if (L->contains(Inst)) continue;
Dan Gohmana15ec5d2010-06-04 23:16:05 +00002212 } else if (isa<UndefValue>(V))
2213 // Undef doesn't have a live range, so it doesn't matter.
2214 continue;
Gabor Greif60ad7812010-03-25 23:06:16 +00002215 for (Value::const_use_iterator UI = V->use_begin(), UE = V->use_end();
Dan Gohman572645c2010-02-12 10:34:29 +00002216 UI != UE; ++UI) {
2217 const Instruction *UserInst = dyn_cast<Instruction>(*UI);
2218 // Ignore non-instructions.
2219 if (!UserInst)
Dan Gohman7979b722010-01-22 00:46:49 +00002220 continue;
Dan Gohman572645c2010-02-12 10:34:29 +00002221 // Ignore instructions in other functions (as can happen with
2222 // Constants).
2223 if (UserInst->getParent()->getParent() != L->getHeader()->getParent())
Dan Gohman7979b722010-01-22 00:46:49 +00002224 continue;
Dan Gohman572645c2010-02-12 10:34:29 +00002225 // Ignore instructions not dominated by the loop.
2226 const BasicBlock *UseBB = !isa<PHINode>(UserInst) ?
2227 UserInst->getParent() :
2228 cast<PHINode>(UserInst)->getIncomingBlock(
2229 PHINode::getIncomingValueNumForOperand(UI.getOperandNo()));
2230 if (!DT.dominates(L->getHeader(), UseBB))
2231 continue;
2232 // Ignore uses which are part of other SCEV expressions, to avoid
2233 // analyzing them multiple times.
Dan Gohman4a2a6832010-04-09 19:12:34 +00002234 if (SE.isSCEVable(UserInst->getType())) {
2235 const SCEV *UserS = SE.getSCEV(const_cast<Instruction *>(UserInst));
2236 // If the user is a no-op, look through to its uses.
2237 if (!isa<SCEVUnknown>(UserS))
2238 continue;
2239 if (UserS == U) {
2240 Worklist.push_back(
2241 SE.getUnknown(const_cast<Instruction *>(UserInst)));
2242 continue;
2243 }
2244 }
Dan Gohman572645c2010-02-12 10:34:29 +00002245 // Ignore icmp instructions which are already being analyzed.
2246 if (const ICmpInst *ICI = dyn_cast<ICmpInst>(UserInst)) {
2247 unsigned OtherIdx = !UI.getOperandNo();
2248 Value *OtherOp = const_cast<Value *>(ICI->getOperand(OtherIdx));
2249 if (SE.getSCEV(OtherOp)->hasComputableLoopEvolution(L))
2250 continue;
2251 }
2252
2253 LSRFixup &LF = getNewFixup();
2254 LF.UserInst = const_cast<Instruction *>(UserInst);
2255 LF.OperandValToReplace = UI.getUse();
2256 std::pair<size_t, int64_t> P = getUse(S, LSRUse::Basic, 0);
2257 LF.LUIdx = P.first;
2258 LF.Offset = P.second;
2259 LSRUse &LU = Uses[LF.LUIdx];
Dan Gohman448db1c2010-04-07 22:27:08 +00002260 LU.AllFixupsOutsideLoop &= LF.isUseFullyOutsideLoop(L);
Dan Gohmana9db1292010-07-15 20:24:58 +00002261 if (!LU.WidestFixupType ||
2262 SE.getTypeSizeInBits(LU.WidestFixupType) <
2263 SE.getTypeSizeInBits(LF.OperandValToReplace->getType()))
2264 LU.WidestFixupType = LF.OperandValToReplace->getType();
Dan Gohman572645c2010-02-12 10:34:29 +00002265 InsertSupplementalFormula(U, LU, LF.LUIdx);
2266 CountRegisters(LU.Formulae.back(), Uses.size() - 1);
2267 break;
2268 }
2269 }
2270 }
2271}
2272
2273/// CollectSubexprs - Split S into subexpressions which can be pulled out into
2274/// separate registers. If C is non-null, multiply each subexpression by C.
2275static void CollectSubexprs(const SCEV *S, const SCEVConstant *C,
2276 SmallVectorImpl<const SCEV *> &Ops,
Dan Gohman3e3f15b2010-06-25 22:32:18 +00002277 const Loop *L,
Dan Gohman572645c2010-02-12 10:34:29 +00002278 ScalarEvolution &SE) {
2279 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
2280 // Break out add operands.
2281 for (SCEVAddExpr::op_iterator I = Add->op_begin(), E = Add->op_end();
2282 I != E; ++I)
Dan Gohman3e22b7c2010-08-16 15:50:00 +00002283 CollectSubexprs(*I, C, Ops, L, SE);
Dan Gohman572645c2010-02-12 10:34:29 +00002284 return;
2285 } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
2286 // Split a non-zero base out of an addrec.
2287 if (!AR->getStart()->isZero()) {
Dan Gohmandeff6212010-05-03 22:09:21 +00002288 CollectSubexprs(SE.getAddRecExpr(SE.getConstant(AR->getType(), 0),
Dan Gohman572645c2010-02-12 10:34:29 +00002289 AR->getStepRecurrence(SE),
Dan Gohman3e3f15b2010-06-25 22:32:18 +00002290 AR->getLoop()),
Dan Gohman3e22b7c2010-08-16 15:50:00 +00002291 C, Ops, L, SE);
2292 CollectSubexprs(AR->getStart(), C, Ops, L, SE);
Dan Gohman572645c2010-02-12 10:34:29 +00002293 return;
2294 }
2295 } else if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S)) {
2296 // Break (C * (a + b + c)) into C*a + C*b + C*c.
2297 if (Mul->getNumOperands() == 2)
2298 if (const SCEVConstant *Op0 =
2299 dyn_cast<SCEVConstant>(Mul->getOperand(0))) {
2300 CollectSubexprs(Mul->getOperand(1),
2301 C ? cast<SCEVConstant>(SE.getMulExpr(C, Op0)) : Op0,
Dan Gohman3e22b7c2010-08-16 15:50:00 +00002302 Ops, L, SE);
Dan Gohman572645c2010-02-12 10:34:29 +00002303 return;
2304 }
2305 }
2306
Dan Gohman3e22b7c2010-08-16 15:50:00 +00002307 // Otherwise use the value itself, optionally with a scale applied.
2308 Ops.push_back(C ? SE.getMulExpr(C, S) : S);
Dan Gohman572645c2010-02-12 10:34:29 +00002309}
2310
2311/// GenerateReassociations - Split out subexpressions from adds and the bases of
2312/// addrecs.
2313void LSRInstance::GenerateReassociations(LSRUse &LU, unsigned LUIdx,
2314 Formula Base,
2315 unsigned Depth) {
2316 // Arbitrarily cap recursion to protect compile time.
2317 if (Depth >= 3) return;
2318
2319 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i) {
2320 const SCEV *BaseReg = Base.BaseRegs[i];
2321
Dan Gohman3e22b7c2010-08-16 15:50:00 +00002322 SmallVector<const SCEV *, 8> AddOps;
2323 CollectSubexprs(BaseReg, 0, AddOps, L, SE);
Dan Gohman3e3f15b2010-06-25 22:32:18 +00002324
Dan Gohman572645c2010-02-12 10:34:29 +00002325 if (AddOps.size() == 1) continue;
2326
2327 for (SmallVectorImpl<const SCEV *>::const_iterator J = AddOps.begin(),
2328 JE = AddOps.end(); J != JE; ++J) {
Dan Gohman3e22b7c2010-08-16 15:50:00 +00002329
2330 // Loop-variant "unknown" values are uninteresting; we won't be able to
2331 // do anything meaningful with them.
2332 if (isa<SCEVUnknown>(*J) && !(*J)->isLoopInvariant(L))
2333 continue;
2334
Dan Gohman572645c2010-02-12 10:34:29 +00002335 // Don't pull a constant into a register if the constant could be folded
2336 // into an immediate field.
2337 if (isAlwaysFoldable(*J, LU.MinOffset, LU.MaxOffset,
2338 Base.getNumRegs() > 1,
2339 LU.Kind, LU.AccessTy, TLI, SE))
2340 continue;
2341
2342 // Collect all operands except *J.
Dan Gohman403a8cd2010-06-21 19:47:52 +00002343 SmallVector<const SCEV *, 8> InnerAddOps
Dan Gohman4eaee282010-08-04 17:43:57 +00002344 (((const SmallVector<const SCEV *, 8> &)AddOps).begin(), J);
Dan Gohman403a8cd2010-06-21 19:47:52 +00002345 InnerAddOps.append
Oscar Fuentesee56c422010-08-02 06:00:15 +00002346 (llvm::next(J), ((const SmallVector<const SCEV *, 8> &)AddOps).end());
Dan Gohman572645c2010-02-12 10:34:29 +00002347
2348 // Don't leave just a constant behind in a register if the constant could
2349 // be folded into an immediate field.
2350 if (InnerAddOps.size() == 1 &&
2351 isAlwaysFoldable(InnerAddOps[0], LU.MinOffset, LU.MaxOffset,
2352 Base.getNumRegs() > 1,
2353 LU.Kind, LU.AccessTy, TLI, SE))
2354 continue;
2355
Dan Gohmanfafb8902010-04-23 01:55:05 +00002356 const SCEV *InnerSum = SE.getAddExpr(InnerAddOps);
2357 if (InnerSum->isZero())
2358 continue;
Dan Gohman572645c2010-02-12 10:34:29 +00002359 Formula F = Base;
Dan Gohmanfafb8902010-04-23 01:55:05 +00002360 F.BaseRegs[i] = InnerSum;
Dan Gohman572645c2010-02-12 10:34:29 +00002361 F.BaseRegs.push_back(*J);
2362 if (InsertFormula(LU, LUIdx, F))
2363 // If that formula hadn't been seen before, recurse to find more like
2364 // it.
2365 GenerateReassociations(LU, LUIdx, LU.Formulae.back(), Depth+1);
2366 }
2367 }
2368}
2369
2370/// GenerateCombinations - Generate a formula consisting of all of the
2371/// loop-dominating registers added into a single register.
2372void LSRInstance::GenerateCombinations(LSRUse &LU, unsigned LUIdx,
Dan Gohman441a3892010-02-14 18:51:39 +00002373 Formula Base) {
Dan Gohman3f46a3a2010-03-01 17:49:51 +00002374 // This method is only interesting on a plurality of registers.
Dan Gohman572645c2010-02-12 10:34:29 +00002375 if (Base.BaseRegs.size() <= 1) return;
2376
2377 Formula F = Base;
2378 F.BaseRegs.clear();
2379 SmallVector<const SCEV *, 4> Ops;
2380 for (SmallVectorImpl<const SCEV *>::const_iterator
2381 I = Base.BaseRegs.begin(), E = Base.BaseRegs.end(); I != E; ++I) {
2382 const SCEV *BaseReg = *I;
2383 if (BaseReg->properlyDominates(L->getHeader(), &DT) &&
2384 !BaseReg->hasComputableLoopEvolution(L))
2385 Ops.push_back(BaseReg);
2386 else
2387 F.BaseRegs.push_back(BaseReg);
2388 }
2389 if (Ops.size() > 1) {
Dan Gohmance947362010-02-14 18:50:49 +00002390 const SCEV *Sum = SE.getAddExpr(Ops);
2391 // TODO: If Sum is zero, it probably means ScalarEvolution missed an
2392 // opportunity to fold something. For now, just ignore such cases
Dan Gohman3f46a3a2010-03-01 17:49:51 +00002393 // rather than proceed with zero in a register.
Dan Gohmance947362010-02-14 18:50:49 +00002394 if (!Sum->isZero()) {
2395 F.BaseRegs.push_back(Sum);
2396 (void)InsertFormula(LU, LUIdx, F);
2397 }
Dan Gohman572645c2010-02-12 10:34:29 +00002398 }
2399}
2400
2401/// GenerateSymbolicOffsets - Generate reuse formulae using symbolic offsets.
2402void LSRInstance::GenerateSymbolicOffsets(LSRUse &LU, unsigned LUIdx,
2403 Formula Base) {
2404 // We can't add a symbolic offset if the address already contains one.
2405 if (Base.AM.BaseGV) return;
2406
2407 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i) {
2408 const SCEV *G = Base.BaseRegs[i];
2409 GlobalValue *GV = ExtractSymbol(G, SE);
2410 if (G->isZero() || !GV)
2411 continue;
2412 Formula F = Base;
2413 F.AM.BaseGV = GV;
2414 if (!isLegalUse(F.AM, LU.MinOffset, LU.MaxOffset,
2415 LU.Kind, LU.AccessTy, TLI))
2416 continue;
2417 F.BaseRegs[i] = G;
2418 (void)InsertFormula(LU, LUIdx, F);
2419 }
2420}
2421
2422/// GenerateConstantOffsets - Generate reuse formulae using symbolic offsets.
2423void LSRInstance::GenerateConstantOffsets(LSRUse &LU, unsigned LUIdx,
2424 Formula Base) {
2425 // TODO: For now, just add the min and max offset, because it usually isn't
2426 // worthwhile looking at everything inbetween.
Dan Gohmanc88c1a42010-07-15 15:14:45 +00002427 SmallVector<int64_t, 2> Worklist;
Dan Gohman572645c2010-02-12 10:34:29 +00002428 Worklist.push_back(LU.MinOffset);
2429 if (LU.MaxOffset != LU.MinOffset)
2430 Worklist.push_back(LU.MaxOffset);
2431
2432 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i) {
2433 const SCEV *G = Base.BaseRegs[i];
2434
2435 for (SmallVectorImpl<int64_t>::const_iterator I = Worklist.begin(),
2436 E = Worklist.end(); I != E; ++I) {
2437 Formula F = Base;
2438 F.AM.BaseOffs = (uint64_t)Base.AM.BaseOffs - *I;
2439 if (isLegalUse(F.AM, LU.MinOffset - *I, LU.MaxOffset - *I,
2440 LU.Kind, LU.AccessTy, TLI)) {
Dan Gohmanc88c1a42010-07-15 15:14:45 +00002441 // Add the offset to the base register.
Dan Gohman4065f602010-08-16 15:39:27 +00002442 const SCEV *NewG = SE.getAddExpr(SE.getConstant(G->getType(), *I), G);
Dan Gohmanc88c1a42010-07-15 15:14:45 +00002443 // If it cancelled out, drop the base register, otherwise update it.
2444 if (NewG->isZero()) {
2445 std::swap(F.BaseRegs[i], F.BaseRegs.back());
2446 F.BaseRegs.pop_back();
2447 } else
2448 F.BaseRegs[i] = NewG;
Dan Gohman572645c2010-02-12 10:34:29 +00002449
2450 (void)InsertFormula(LU, LUIdx, F);
2451 }
2452 }
2453
2454 int64_t Imm = ExtractImmediate(G, SE);
2455 if (G->isZero() || Imm == 0)
2456 continue;
2457 Formula F = Base;
2458 F.AM.BaseOffs = (uint64_t)F.AM.BaseOffs + Imm;
2459 if (!isLegalUse(F.AM, LU.MinOffset, LU.MaxOffset,
2460 LU.Kind, LU.AccessTy, TLI))
2461 continue;
2462 F.BaseRegs[i] = G;
2463 (void)InsertFormula(LU, LUIdx, F);
2464 }
2465}
2466
2467/// GenerateICmpZeroScales - For ICmpZero, check to see if we can scale up
2468/// the comparison. For example, x == y -> x*c == y*c.
2469void LSRInstance::GenerateICmpZeroScales(LSRUse &LU, unsigned LUIdx,
2470 Formula Base) {
2471 if (LU.Kind != LSRUse::ICmpZero) return;
2472
2473 // Determine the integer type for the base formula.
2474 const Type *IntTy = Base.getType();
2475 if (!IntTy) return;
2476 if (SE.getTypeSizeInBits(IntTy) > 64) return;
2477
2478 // Don't do this if there is more than one offset.
2479 if (LU.MinOffset != LU.MaxOffset) return;
2480
2481 assert(!Base.AM.BaseGV && "ICmpZero use is not legal!");
2482
2483 // Check each interesting stride.
2484 for (SmallSetVector<int64_t, 8>::const_iterator
2485 I = Factors.begin(), E = Factors.end(); I != E; ++I) {
2486 int64_t Factor = *I;
Dan Gohman572645c2010-02-12 10:34:29 +00002487
2488 // Check that the multiplication doesn't overflow.
Dan Gohman2ea09e02010-06-24 16:57:52 +00002489 if (Base.AM.BaseOffs == INT64_MIN && Factor == -1)
Dan Gohman968cb932010-02-17 00:41:53 +00002490 continue;
Dan Gohman2ea09e02010-06-24 16:57:52 +00002491 int64_t NewBaseOffs = (uint64_t)Base.AM.BaseOffs * Factor;
2492 if (NewBaseOffs / Factor != Base.AM.BaseOffs)
Dan Gohman572645c2010-02-12 10:34:29 +00002493 continue;
2494
2495 // Check that multiplying with the use offset doesn't overflow.
2496 int64_t Offset = LU.MinOffset;
Dan Gohman968cb932010-02-17 00:41:53 +00002497 if (Offset == INT64_MIN && Factor == -1)
2498 continue;
Dan Gohman572645c2010-02-12 10:34:29 +00002499 Offset = (uint64_t)Offset * Factor;
Dan Gohman378c0b32010-02-17 00:42:19 +00002500 if (Offset / Factor != LU.MinOffset)
Dan Gohman572645c2010-02-12 10:34:29 +00002501 continue;
2502
Dan Gohman2ea09e02010-06-24 16:57:52 +00002503 Formula F = Base;
2504 F.AM.BaseOffs = NewBaseOffs;
2505
Dan Gohman572645c2010-02-12 10:34:29 +00002506 // Check that this scale is legal.
2507 if (!isLegalUse(F.AM, Offset, Offset, LU.Kind, LU.AccessTy, TLI))
2508 continue;
2509
2510 // Compensate for the use having MinOffset built into it.
2511 F.AM.BaseOffs = (uint64_t)F.AM.BaseOffs + Offset - LU.MinOffset;
2512
Dan Gohmandeff6212010-05-03 22:09:21 +00002513 const SCEV *FactorS = SE.getConstant(IntTy, Factor);
Dan Gohman572645c2010-02-12 10:34:29 +00002514
2515 // Check that multiplying with each base register doesn't overflow.
2516 for (size_t i = 0, e = F.BaseRegs.size(); i != e; ++i) {
2517 F.BaseRegs[i] = SE.getMulExpr(F.BaseRegs[i], FactorS);
Dan Gohmanf09b7122010-02-19 19:35:48 +00002518 if (getExactSDiv(F.BaseRegs[i], FactorS, SE) != Base.BaseRegs[i])
Dan Gohman572645c2010-02-12 10:34:29 +00002519 goto next;
2520 }
2521
2522 // Check that multiplying with the scaled register doesn't overflow.
2523 if (F.ScaledReg) {
2524 F.ScaledReg = SE.getMulExpr(F.ScaledReg, FactorS);
Dan Gohmanf09b7122010-02-19 19:35:48 +00002525 if (getExactSDiv(F.ScaledReg, FactorS, SE) != Base.ScaledReg)
Dan Gohman572645c2010-02-12 10:34:29 +00002526 continue;
2527 }
2528
2529 // If we make it here and it's legal, add it.
2530 (void)InsertFormula(LU, LUIdx, F);
2531 next:;
2532 }
2533}
2534
2535/// GenerateScales - Generate stride factor reuse formulae by making use of
2536/// scaled-offset address modes, for example.
Dan Gohmanea507f52010-05-20 19:44:23 +00002537void LSRInstance::GenerateScales(LSRUse &LU, unsigned LUIdx, Formula Base) {
Dan Gohman572645c2010-02-12 10:34:29 +00002538 // Determine the integer type for the base formula.
2539 const Type *IntTy = Base.getType();
2540 if (!IntTy) return;
2541
2542 // If this Formula already has a scaled register, we can't add another one.
2543 if (Base.AM.Scale != 0) return;
2544
2545 // Check each interesting stride.
2546 for (SmallSetVector<int64_t, 8>::const_iterator
2547 I = Factors.begin(), E = Factors.end(); I != E; ++I) {
2548 int64_t Factor = *I;
2549
2550 Base.AM.Scale = Factor;
2551 Base.AM.HasBaseReg = Base.BaseRegs.size() > 1;
2552 // Check whether this scale is going to be legal.
2553 if (!isLegalUse(Base.AM, LU.MinOffset, LU.MaxOffset,
2554 LU.Kind, LU.AccessTy, TLI)) {
2555 // As a special-case, handle special out-of-loop Basic users specially.
2556 // TODO: Reconsider this special case.
2557 if (LU.Kind == LSRUse::Basic &&
2558 isLegalUse(Base.AM, LU.MinOffset, LU.MaxOffset,
2559 LSRUse::Special, LU.AccessTy, TLI) &&
2560 LU.AllFixupsOutsideLoop)
2561 LU.Kind = LSRUse::Special;
2562 else
2563 continue;
2564 }
2565 // For an ICmpZero, negating a solitary base register won't lead to
2566 // new solutions.
2567 if (LU.Kind == LSRUse::ICmpZero &&
2568 !Base.AM.HasBaseReg && Base.AM.BaseOffs == 0 && !Base.AM.BaseGV)
2569 continue;
2570 // For each addrec base reg, apply the scale, if possible.
2571 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i)
2572 if (const SCEVAddRecExpr *AR =
2573 dyn_cast<SCEVAddRecExpr>(Base.BaseRegs[i])) {
Dan Gohmandeff6212010-05-03 22:09:21 +00002574 const SCEV *FactorS = SE.getConstant(IntTy, Factor);
Dan Gohman572645c2010-02-12 10:34:29 +00002575 if (FactorS->isZero())
2576 continue;
2577 // Divide out the factor, ignoring high bits, since we'll be
2578 // scaling the value back up in the end.
Dan Gohmanf09b7122010-02-19 19:35:48 +00002579 if (const SCEV *Quotient = getExactSDiv(AR, FactorS, SE, true)) {
Dan Gohman572645c2010-02-12 10:34:29 +00002580 // TODO: This could be optimized to avoid all the copying.
2581 Formula F = Base;
2582 F.ScaledReg = Quotient;
Dan Gohman5ce6d052010-05-20 15:17:54 +00002583 F.DeleteBaseReg(F.BaseRegs[i]);
Dan Gohman572645c2010-02-12 10:34:29 +00002584 (void)InsertFormula(LU, LUIdx, F);
2585 }
2586 }
2587 }
2588}
2589
2590/// GenerateTruncates - Generate reuse formulae from different IV types.
Dan Gohmanea507f52010-05-20 19:44:23 +00002591void LSRInstance::GenerateTruncates(LSRUse &LU, unsigned LUIdx, Formula Base) {
Dan Gohman572645c2010-02-12 10:34:29 +00002592 // This requires TargetLowering to tell us which truncates are free.
2593 if (!TLI) return;
2594
2595 // Don't bother truncating symbolic values.
2596 if (Base.AM.BaseGV) return;
2597
2598 // Determine the integer type for the base formula.
2599 const Type *DstTy = Base.getType();
2600 if (!DstTy) return;
2601 DstTy = SE.getEffectiveSCEVType(DstTy);
2602
2603 for (SmallSetVector<const Type *, 4>::const_iterator
2604 I = Types.begin(), E = Types.end(); I != E; ++I) {
2605 const Type *SrcTy = *I;
2606 if (SrcTy != DstTy && TLI->isTruncateFree(SrcTy, DstTy)) {
2607 Formula F = Base;
2608
2609 if (F.ScaledReg) F.ScaledReg = SE.getAnyExtendExpr(F.ScaledReg, *I);
2610 for (SmallVectorImpl<const SCEV *>::iterator J = F.BaseRegs.begin(),
2611 JE = F.BaseRegs.end(); J != JE; ++J)
2612 *J = SE.getAnyExtendExpr(*J, SrcTy);
2613
2614 // TODO: This assumes we've done basic processing on all uses and
2615 // have an idea what the register usage is.
2616 if (!F.hasRegsUsedByUsesOtherThan(LUIdx, RegUses))
2617 continue;
2618
2619 (void)InsertFormula(LU, LUIdx, F);
2620 }
2621 }
2622}
2623
2624namespace {
2625
Dan Gohman6020d852010-02-14 18:51:20 +00002626/// WorkItem - Helper class for GenerateCrossUseConstantOffsets. It's used to
Dan Gohman572645c2010-02-12 10:34:29 +00002627/// defer modifications so that the search phase doesn't have to worry about
2628/// the data structures moving underneath it.
2629struct WorkItem {
2630 size_t LUIdx;
2631 int64_t Imm;
2632 const SCEV *OrigReg;
2633
2634 WorkItem(size_t LI, int64_t I, const SCEV *R)
2635 : LUIdx(LI), Imm(I), OrigReg(R) {}
2636
Dan Gohman25608f72010-08-29 16:32:54 +00002637 bool operator==(const WorkItem &that) const {
2638 return LUIdx == that.LUIdx && Imm == that.Imm && OrigReg == that.OrigReg;
2639 }
2640 bool operator<(const WorkItem &that) const {
2641 if (LUIdx != that.LUIdx)
2642 return LUIdx < that.LUIdx;
2643 if (Imm != that.Imm)
2644 return Imm < that.Imm;
2645 return OrigReg < that.OrigReg;
2646 }
2647
Dan Gohman572645c2010-02-12 10:34:29 +00002648 void print(raw_ostream &OS) const;
2649 void dump() const;
2650};
2651
2652}
2653
2654void WorkItem::print(raw_ostream &OS) const {
2655 OS << "in formulae referencing " << *OrigReg << " in use " << LUIdx
2656 << " , add offset " << Imm;
2657}
2658
2659void WorkItem::dump() const {
2660 print(errs()); errs() << '\n';
2661}
2662
2663/// GenerateCrossUseConstantOffsets - Look for registers which are a constant
2664/// distance apart and try to form reuse opportunities between them.
2665void LSRInstance::GenerateCrossUseConstantOffsets() {
2666 // Group the registers by their value without any added constant offset.
2667 typedef std::map<int64_t, const SCEV *> ImmMapTy;
2668 typedef DenseMap<const SCEV *, ImmMapTy> RegMapTy;
2669 RegMapTy Map;
2670 DenseMap<const SCEV *, SmallBitVector> UsedByIndicesMap;
2671 SmallVector<const SCEV *, 8> Sequence;
2672 for (RegUseTracker::const_iterator I = RegUses.begin(), E = RegUses.end();
2673 I != E; ++I) {
2674 const SCEV *Reg = *I;
2675 int64_t Imm = ExtractImmediate(Reg, SE);
2676 std::pair<RegMapTy::iterator, bool> Pair =
2677 Map.insert(std::make_pair(Reg, ImmMapTy()));
2678 if (Pair.second)
2679 Sequence.push_back(Reg);
2680 Pair.first->second.insert(std::make_pair(Imm, *I));
2681 UsedByIndicesMap[Reg] |= RegUses.getUsedByIndices(*I);
2682 }
2683
2684 // Now examine each set of registers with the same base value. Build up
2685 // a list of work to do and do the work in a separate step so that we're
2686 // not adding formulae and register counts while we're searching.
Dan Gohman25608f72010-08-29 16:32:54 +00002687 SmallSetVector<WorkItem, 32> WorkItems;
Dan Gohman572645c2010-02-12 10:34:29 +00002688 for (SmallVectorImpl<const SCEV *>::const_iterator I = Sequence.begin(),
2689 E = Sequence.end(); I != E; ++I) {
2690 const SCEV *Reg = *I;
2691 const ImmMapTy &Imms = Map.find(Reg)->second;
2692
Dan Gohmancd045c02010-02-12 19:20:37 +00002693 // It's not worthwhile looking for reuse if there's only one offset.
2694 if (Imms.size() == 1)
2695 continue;
2696
Dan Gohman572645c2010-02-12 10:34:29 +00002697 DEBUG(dbgs() << "Generating cross-use offsets for " << *Reg << ':';
2698 for (ImmMapTy::const_iterator J = Imms.begin(), JE = Imms.end();
2699 J != JE; ++J)
2700 dbgs() << ' ' << J->first;
2701 dbgs() << '\n');
2702
2703 // Examine each offset.
2704 for (ImmMapTy::const_iterator J = Imms.begin(), JE = Imms.end();
2705 J != JE; ++J) {
2706 const SCEV *OrigReg = J->second;
2707
2708 int64_t JImm = J->first;
2709 const SmallBitVector &UsedByIndices = RegUses.getUsedByIndices(OrigReg);
2710
2711 if (!isa<SCEVConstant>(OrigReg) &&
2712 UsedByIndicesMap[Reg].count() == 1) {
2713 DEBUG(dbgs() << "Skipping cross-use reuse for " << *OrigReg << '\n');
2714 continue;
2715 }
2716
2717 // Conservatively examine offsets between this orig reg a few selected
2718 // other orig regs.
2719 ImmMapTy::const_iterator OtherImms[] = {
2720 Imms.begin(), prior(Imms.end()),
2721 Imms.upper_bound((Imms.begin()->first + prior(Imms.end())->first) / 2)
2722 };
2723 for (size_t i = 0, e = array_lengthof(OtherImms); i != e; ++i) {
2724 ImmMapTy::const_iterator M = OtherImms[i];
Dan Gohmancd045c02010-02-12 19:20:37 +00002725 if (M == J || M == JE) continue;
Dan Gohman572645c2010-02-12 10:34:29 +00002726
2727 // Compute the difference between the two.
2728 int64_t Imm = (uint64_t)JImm - M->first;
2729 for (int LUIdx = UsedByIndices.find_first(); LUIdx != -1;
Dan Gohman25608f72010-08-29 16:32:54 +00002730 LUIdx = UsedByIndices.find_next(LUIdx)) {
Dan Gohman572645c2010-02-12 10:34:29 +00002731 // Make a memo of this use, offset, and register tuple.
Dan Gohman25608f72010-08-29 16:32:54 +00002732 WorkItems.insert(WorkItem(LUIdx, Imm, OrigReg));
2733 }
Evan Cheng586f69a2009-11-12 07:35:05 +00002734 }
2735 }
2736 }
2737
Dan Gohman572645c2010-02-12 10:34:29 +00002738 Map.clear();
2739 Sequence.clear();
2740 UsedByIndicesMap.clear();
Dan Gohman572645c2010-02-12 10:34:29 +00002741
2742 // Now iterate through the worklist and add new formulae.
2743 for (SmallVectorImpl<WorkItem>::const_iterator I = WorkItems.begin(),
2744 E = WorkItems.end(); I != E; ++I) {
2745 const WorkItem &WI = *I;
2746 size_t LUIdx = WI.LUIdx;
2747 LSRUse &LU = Uses[LUIdx];
2748 int64_t Imm = WI.Imm;
2749 const SCEV *OrigReg = WI.OrigReg;
2750
2751 const Type *IntTy = SE.getEffectiveSCEVType(OrigReg->getType());
2752 const SCEV *NegImmS = SE.getSCEV(ConstantInt::get(IntTy, -(uint64_t)Imm));
2753 unsigned BitWidth = SE.getTypeSizeInBits(IntTy);
2754
Dan Gohman3f46a3a2010-03-01 17:49:51 +00002755 // TODO: Use a more targeted data structure.
Dan Gohman572645c2010-02-12 10:34:29 +00002756 for (size_t L = 0, LE = LU.Formulae.size(); L != LE; ++L) {
Dan Gohman9f383eb2010-05-20 22:25:20 +00002757 const Formula &F = LU.Formulae[L];
Dan Gohman572645c2010-02-12 10:34:29 +00002758 // Use the immediate in the scaled register.
2759 if (F.ScaledReg == OrigReg) {
2760 int64_t Offs = (uint64_t)F.AM.BaseOffs +
2761 Imm * (uint64_t)F.AM.Scale;
2762 // Don't create 50 + reg(-50).
2763 if (F.referencesReg(SE.getSCEV(
2764 ConstantInt::get(IntTy, -(uint64_t)Offs))))
2765 continue;
2766 Formula NewF = F;
2767 NewF.AM.BaseOffs = Offs;
2768 if (!isLegalUse(NewF.AM, LU.MinOffset, LU.MaxOffset,
2769 LU.Kind, LU.AccessTy, TLI))
2770 continue;
2771 NewF.ScaledReg = SE.getAddExpr(NegImmS, NewF.ScaledReg);
2772
2773 // If the new scale is a constant in a register, and adding the constant
2774 // value to the immediate would produce a value closer to zero than the
2775 // immediate itself, then the formula isn't worthwhile.
2776 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(NewF.ScaledReg))
2777 if (C->getValue()->getValue().isNegative() !=
2778 (NewF.AM.BaseOffs < 0) &&
2779 (C->getValue()->getValue().abs() * APInt(BitWidth, F.AM.Scale))
Dan Gohmane0567812010-04-08 23:03:40 +00002780 .ule(abs64(NewF.AM.BaseOffs)))
Dan Gohman572645c2010-02-12 10:34:29 +00002781 continue;
2782
2783 // OK, looks good.
2784 (void)InsertFormula(LU, LUIdx, NewF);
2785 } else {
2786 // Use the immediate in a base register.
2787 for (size_t N = 0, NE = F.BaseRegs.size(); N != NE; ++N) {
2788 const SCEV *BaseReg = F.BaseRegs[N];
2789 if (BaseReg != OrigReg)
2790 continue;
2791 Formula NewF = F;
2792 NewF.AM.BaseOffs = (uint64_t)NewF.AM.BaseOffs + Imm;
2793 if (!isLegalUse(NewF.AM, LU.MinOffset, LU.MaxOffset,
2794 LU.Kind, LU.AccessTy, TLI))
2795 continue;
2796 NewF.BaseRegs[N] = SE.getAddExpr(NegImmS, BaseReg);
2797
2798 // If the new formula has a constant in a register, and adding the
2799 // constant value to the immediate would produce a value closer to
2800 // zero than the immediate itself, then the formula isn't worthwhile.
2801 for (SmallVectorImpl<const SCEV *>::const_iterator
2802 J = NewF.BaseRegs.begin(), JE = NewF.BaseRegs.end();
2803 J != JE; ++J)
2804 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(*J))
Dan Gohman360026f2010-05-18 23:48:08 +00002805 if ((C->getValue()->getValue() + NewF.AM.BaseOffs).abs().slt(
2806 abs64(NewF.AM.BaseOffs)) &&
2807 (C->getValue()->getValue() +
2808 NewF.AM.BaseOffs).countTrailingZeros() >=
2809 CountTrailingZeros_64(NewF.AM.BaseOffs))
Dan Gohman572645c2010-02-12 10:34:29 +00002810 goto skip_formula;
2811
2812 // Ok, looks good.
2813 (void)InsertFormula(LU, LUIdx, NewF);
2814 break;
2815 skip_formula:;
2816 }
2817 }
2818 }
2819 }
Dale Johannesenc1acc3f2009-05-11 17:15:42 +00002820}
2821
Dan Gohman572645c2010-02-12 10:34:29 +00002822/// GenerateAllReuseFormulae - Generate formulae for each use.
2823void
2824LSRInstance::GenerateAllReuseFormulae() {
Dan Gohmanc2385a02010-02-16 01:42:53 +00002825 // This is split into multiple loops so that hasRegsUsedByUsesOtherThan
Dan Gohman572645c2010-02-12 10:34:29 +00002826 // queries are more precise.
2827 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
2828 LSRUse &LU = Uses[LUIdx];
2829 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2830 GenerateReassociations(LU, LUIdx, LU.Formulae[i]);
2831 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2832 GenerateCombinations(LU, LUIdx, LU.Formulae[i]);
2833 }
2834 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
2835 LSRUse &LU = Uses[LUIdx];
2836 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2837 GenerateSymbolicOffsets(LU, LUIdx, LU.Formulae[i]);
2838 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2839 GenerateConstantOffsets(LU, LUIdx, LU.Formulae[i]);
2840 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2841 GenerateICmpZeroScales(LU, LUIdx, LU.Formulae[i]);
2842 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2843 GenerateScales(LU, LUIdx, LU.Formulae[i]);
Dan Gohmanc2385a02010-02-16 01:42:53 +00002844 }
2845 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
2846 LSRUse &LU = Uses[LUIdx];
Dan Gohman572645c2010-02-12 10:34:29 +00002847 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2848 GenerateTruncates(LU, LUIdx, LU.Formulae[i]);
2849 }
2850
2851 GenerateCrossUseConstantOffsets();
Dan Gohman3902f9f2010-08-29 15:21:38 +00002852
2853 DEBUG(dbgs() << "\n"
2854 "After generating reuse formulae:\n";
2855 print_uses(dbgs()));
Dan Gohman572645c2010-02-12 10:34:29 +00002856}
2857
2858/// If their are multiple formulae with the same set of registers used
2859/// by other uses, pick the best one and delete the others.
2860void LSRInstance::FilterOutUndesirableDedicatedRegisters() {
2861#ifndef NDEBUG
Dan Gohmanc6519f92010-05-20 20:05:31 +00002862 bool ChangedFormulae = false;
Dan Gohman572645c2010-02-12 10:34:29 +00002863#endif
2864
2865 // Collect the best formula for each unique set of shared registers. This
2866 // is reset for each use.
2867 typedef DenseMap<SmallVector<const SCEV *, 2>, size_t, UniquifierDenseMapInfo>
2868 BestFormulaeTy;
2869 BestFormulaeTy BestFormulae;
2870
2871 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
2872 LSRUse &LU = Uses[LUIdx];
2873 FormulaSorter Sorter(L, LU, SE, DT);
Dan Gohmanea507f52010-05-20 19:44:23 +00002874 DEBUG(dbgs() << "Filtering for use "; LU.print(dbgs()); dbgs() << '\n');
Dan Gohman572645c2010-02-12 10:34:29 +00002875
Dan Gohmanb2df4332010-05-18 23:42:37 +00002876 bool Any = false;
Dan Gohman572645c2010-02-12 10:34:29 +00002877 for (size_t FIdx = 0, NumForms = LU.Formulae.size();
2878 FIdx != NumForms; ++FIdx) {
2879 Formula &F = LU.Formulae[FIdx];
2880
2881 SmallVector<const SCEV *, 2> Key;
2882 for (SmallVectorImpl<const SCEV *>::const_iterator J = F.BaseRegs.begin(),
2883 JE = F.BaseRegs.end(); J != JE; ++J) {
2884 const SCEV *Reg = *J;
2885 if (RegUses.isRegUsedByUsesOtherThan(Reg, LUIdx))
2886 Key.push_back(Reg);
2887 }
2888 if (F.ScaledReg &&
2889 RegUses.isRegUsedByUsesOtherThan(F.ScaledReg, LUIdx))
2890 Key.push_back(F.ScaledReg);
2891 // Unstable sort by host order ok, because this is only used for
2892 // uniquifying.
2893 std::sort(Key.begin(), Key.end());
2894
2895 std::pair<BestFormulaeTy::const_iterator, bool> P =
2896 BestFormulae.insert(std::make_pair(Key, FIdx));
2897 if (!P.second) {
2898 Formula &Best = LU.Formulae[P.first->second];
2899 if (Sorter.operator()(F, Best))
2900 std::swap(F, Best);
Dan Gohman6458ff92010-05-18 22:37:37 +00002901 DEBUG(dbgs() << " Filtering out formula "; F.print(dbgs());
Dan Gohman572645c2010-02-12 10:34:29 +00002902 dbgs() << "\n"
Dan Gohman6458ff92010-05-18 22:37:37 +00002903 " in favor of formula "; Best.print(dbgs());
Dan Gohman572645c2010-02-12 10:34:29 +00002904 dbgs() << '\n');
2905#ifndef NDEBUG
Dan Gohmanc6519f92010-05-20 20:05:31 +00002906 ChangedFormulae = true;
Dan Gohman572645c2010-02-12 10:34:29 +00002907#endif
Dan Gohmand69d6282010-05-18 22:39:15 +00002908 LU.DeleteFormula(F);
Dan Gohman572645c2010-02-12 10:34:29 +00002909 --FIdx;
2910 --NumForms;
Dan Gohmanb2df4332010-05-18 23:42:37 +00002911 Any = true;
Dan Gohman572645c2010-02-12 10:34:29 +00002912 continue;
2913 }
Dan Gohman59dc6032010-05-07 23:36:59 +00002914 }
2915
Dan Gohman57aaa0b2010-05-18 23:55:57 +00002916 // Now that we've filtered out some formulae, recompute the Regs set.
Dan Gohmanb2df4332010-05-18 23:42:37 +00002917 if (Any)
2918 LU.RecomputeRegs(LUIdx, RegUses);
Dan Gohman59dc6032010-05-07 23:36:59 +00002919
2920 // Reset this to prepare for the next use.
Dan Gohman572645c2010-02-12 10:34:29 +00002921 BestFormulae.clear();
2922 }
2923
Dan Gohmanc6519f92010-05-20 20:05:31 +00002924 DEBUG(if (ChangedFormulae) {
Dan Gohman9214b822010-02-13 02:06:02 +00002925 dbgs() << "\n"
2926 "After filtering out undesirable candidates:\n";
Dan Gohman572645c2010-02-12 10:34:29 +00002927 print_uses(dbgs());
2928 });
2929}
2930
Dan Gohmand079c302010-05-18 22:51:59 +00002931// This is a rough guess that seems to work fairly well.
2932static const size_t ComplexityLimit = UINT16_MAX;
2933
2934/// EstimateSearchSpaceComplexity - Estimate the worst-case number of
2935/// solutions the solver might have to consider. It almost never considers
2936/// this many solutions because it prune the search space, but the pruning
2937/// isn't always sufficient.
2938size_t LSRInstance::EstimateSearchSpaceComplexity() const {
2939 uint32_t Power = 1;
2940 for (SmallVectorImpl<LSRUse>::const_iterator I = Uses.begin(),
2941 E = Uses.end(); I != E; ++I) {
2942 size_t FSize = I->Formulae.size();
2943 if (FSize >= ComplexityLimit) {
2944 Power = ComplexityLimit;
2945 break;
2946 }
2947 Power *= FSize;
2948 if (Power >= ComplexityLimit)
2949 break;
2950 }
2951 return Power;
2952}
2953
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00002954/// NarrowSearchSpaceByDetectingSupersets - When one formula uses a superset
2955/// of the registers of another formula, it won't help reduce register
2956/// pressure (though it may not necessarily hurt register pressure); remove
2957/// it to simplify the system.
2958void LSRInstance::NarrowSearchSpaceByDetectingSupersets() {
Dan Gohmana2086b32010-05-19 23:43:12 +00002959 if (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
2960 DEBUG(dbgs() << "The search space is too complex.\n");
2961
2962 DEBUG(dbgs() << "Narrowing the search space by eliminating formulae "
2963 "which use a superset of registers used by other "
2964 "formulae.\n");
2965
2966 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
2967 LSRUse &LU = Uses[LUIdx];
2968 bool Any = false;
2969 for (size_t i = 0, e = LU.Formulae.size(); i != e; ++i) {
2970 Formula &F = LU.Formulae[i];
Dan Gohmanf7ff37d2010-05-20 20:00:41 +00002971 // Look for a formula with a constant or GV in a register. If the use
2972 // also has a formula with that same value in an immediate field,
2973 // delete the one that uses a register.
Dan Gohmana2086b32010-05-19 23:43:12 +00002974 for (SmallVectorImpl<const SCEV *>::const_iterator
2975 I = F.BaseRegs.begin(), E = F.BaseRegs.end(); I != E; ++I) {
2976 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(*I)) {
2977 Formula NewF = F;
2978 NewF.AM.BaseOffs += C->getValue()->getSExtValue();
2979 NewF.BaseRegs.erase(NewF.BaseRegs.begin() +
2980 (I - F.BaseRegs.begin()));
2981 if (LU.HasFormulaWithSameRegs(NewF)) {
2982 DEBUG(dbgs() << " Deleting "; F.print(dbgs()); dbgs() << '\n');
2983 LU.DeleteFormula(F);
2984 --i;
2985 --e;
2986 Any = true;
2987 break;
2988 }
2989 } else if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(*I)) {
2990 if (GlobalValue *GV = dyn_cast<GlobalValue>(U->getValue()))
2991 if (!F.AM.BaseGV) {
2992 Formula NewF = F;
2993 NewF.AM.BaseGV = GV;
2994 NewF.BaseRegs.erase(NewF.BaseRegs.begin() +
2995 (I - F.BaseRegs.begin()));
2996 if (LU.HasFormulaWithSameRegs(NewF)) {
2997 DEBUG(dbgs() << " Deleting "; F.print(dbgs());
2998 dbgs() << '\n');
2999 LU.DeleteFormula(F);
3000 --i;
3001 --e;
3002 Any = true;
3003 break;
3004 }
3005 }
3006 }
3007 }
3008 }
3009 if (Any)
3010 LU.RecomputeRegs(LUIdx, RegUses);
3011 }
3012
3013 DEBUG(dbgs() << "After pre-selection:\n";
3014 print_uses(dbgs()));
3015 }
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00003016}
Dan Gohmana2086b32010-05-19 23:43:12 +00003017
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00003018/// NarrowSearchSpaceByCollapsingUnrolledCode - When there are many registers
3019/// for expressions like A, A+1, A+2, etc., allocate a single register for
3020/// them.
3021void LSRInstance::NarrowSearchSpaceByCollapsingUnrolledCode() {
Dan Gohmana2086b32010-05-19 23:43:12 +00003022 if (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
3023 DEBUG(dbgs() << "The search space is too complex.\n");
3024
3025 DEBUG(dbgs() << "Narrowing the search space by assuming that uses "
3026 "separated by a constant offset will use the same "
3027 "registers.\n");
3028
Dan Gohmanf7ff37d2010-05-20 20:00:41 +00003029 // This is especially useful for unrolled loops.
3030
Dan Gohmana2086b32010-05-19 23:43:12 +00003031 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
3032 LSRUse &LU = Uses[LUIdx];
Dan Gohman402d4352010-05-20 20:33:18 +00003033 for (SmallVectorImpl<Formula>::const_iterator I = LU.Formulae.begin(),
3034 E = LU.Formulae.end(); I != E; ++I) {
3035 const Formula &F = *I;
Dan Gohmana2086b32010-05-19 23:43:12 +00003036 if (F.AM.BaseOffs != 0 && F.AM.Scale == 0) {
Dan Gohman25608f72010-08-29 16:32:54 +00003037 int64_t NewBaseOffs;
3038 if (LSRUse *LUThatHas = FindUseWithSimilarFormula(F, LU,
3039 NewBaseOffs)) {
3040 if (reconcileNewOffset(*LUThatHas,
3041 F.AM.BaseOffs + LU.MinOffset - NewBaseOffs,
3042 F.AM.BaseOffs + LU.MaxOffset - NewBaseOffs,
Dan Gohmana2086b32010-05-19 23:43:12 +00003043 /*HasBaseReg=*/false,
3044 LU.Kind, LU.AccessTy)) {
3045 DEBUG(dbgs() << " Deleting use "; LU.print(dbgs());
3046 dbgs() << '\n');
3047
3048 LUThatHas->AllFixupsOutsideLoop &= LU.AllFixupsOutsideLoop;
3049
Dan Gohman25608f72010-08-29 16:32:54 +00003050 // Update the relocs to reference the new use.
3051 // Do this first so that MinOffset and MaxOffset are updated
3052 // before we begin to determine which formulae to delete.
3053 for (SmallVectorImpl<LSRFixup>::iterator I = Fixups.begin(),
3054 E = Fixups.end(); I != E; ++I) {
3055 LSRFixup &Fixup = *I;
3056 if (Fixup.LUIdx == LUIdx) {
3057 Fixup.LUIdx = LUThatHas - &Uses.front();
3058 Fixup.Offset += F.AM.BaseOffs - NewBaseOffs;
3059 DEBUG(dbgs() << "New fixup has offset "
3060 << Fixup.Offset << '\n');
3061 LUThatHas->Offsets.push_back(Fixup.Offset);
3062 if (Fixup.Offset > LUThatHas->MaxOffset)
3063 LUThatHas->MaxOffset = Fixup.Offset;
3064 if (Fixup.Offset < LUThatHas->MinOffset)
3065 LUThatHas->MinOffset = Fixup.Offset;
3066 }
3067 // DeleteUse will do a swap+pop_back, so if this fixup is
3068 // now pointing to the last LSRUse, update it to point to the
3069 // position it'll be swapped to.
3070 if (Fixup.LUIdx == NumUses-1)
3071 Fixup.LUIdx = LUIdx;
3072 }
3073
Dan Gohmana2086b32010-05-19 23:43:12 +00003074 // Delete formulae from the new use which are no longer legal.
3075 bool Any = false;
3076 for (size_t i = 0, e = LUThatHas->Formulae.size(); i != e; ++i) {
3077 Formula &F = LUThatHas->Formulae[i];
3078 if (!isLegalUse(F.AM,
3079 LUThatHas->MinOffset, LUThatHas->MaxOffset,
3080 LUThatHas->Kind, LUThatHas->AccessTy, TLI)) {
3081 DEBUG(dbgs() << " Deleting "; F.print(dbgs());
3082 dbgs() << '\n');
3083 LUThatHas->DeleteFormula(F);
3084 --i;
3085 --e;
3086 Any = true;
3087 }
3088 }
3089 if (Any)
3090 LUThatHas->RecomputeRegs(LUThatHas - &Uses.front(), RegUses);
3091
Dan Gohmana2086b32010-05-19 23:43:12 +00003092 // Delete the old use.
Dan Gohman5ce6d052010-05-20 15:17:54 +00003093 DeleteUse(LU);
Dan Gohmana2086b32010-05-19 23:43:12 +00003094 --LUIdx;
3095 --NumUses;
3096 break;
3097 }
3098 }
3099 }
3100 }
3101 }
3102
3103 DEBUG(dbgs() << "After pre-selection:\n";
3104 print_uses(dbgs()));
3105 }
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00003106}
Dan Gohmana2086b32010-05-19 23:43:12 +00003107
Dan Gohman4f7e18d2010-08-29 16:39:22 +00003108/// NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters - Call
3109/// FilterOutUndesirableDedicatedRegisters again, if necessary, now that
3110/// we've done more filtering, as it may be able to find more formulae to
3111/// eliminate.
3112void LSRInstance::NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters(){
3113 if (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
3114 DEBUG(dbgs() << "The search space is too complex.\n");
3115
3116 DEBUG(dbgs() << "Narrowing the search space by re-filtering out "
3117 "undesirable dedicated registers.\n");
3118
3119 FilterOutUndesirableDedicatedRegisters();
3120
3121 DEBUG(dbgs() << "After pre-selection:\n";
3122 print_uses(dbgs()));
3123 }
3124}
3125
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00003126/// NarrowSearchSpaceByPickingWinnerRegs - Pick a register which seems likely
3127/// to be profitable, and then in any use which has any reference to that
3128/// register, delete all formulae which do not reference that register.
3129void LSRInstance::NarrowSearchSpaceByPickingWinnerRegs() {
Dan Gohman76c315a2010-05-20 20:52:00 +00003130 // With all other options exhausted, loop until the system is simple
3131 // enough to handle.
Dan Gohman572645c2010-02-12 10:34:29 +00003132 SmallPtrSet<const SCEV *, 4> Taken;
Dan Gohmand079c302010-05-18 22:51:59 +00003133 while (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
Dan Gohman572645c2010-02-12 10:34:29 +00003134 // Ok, we have too many of formulae on our hands to conveniently handle.
3135 // Use a rough heuristic to thin out the list.
Dan Gohman0da751b2010-05-18 22:41:32 +00003136 DEBUG(dbgs() << "The search space is too complex.\n");
Dan Gohman572645c2010-02-12 10:34:29 +00003137
3138 // Pick the register which is used by the most LSRUses, which is likely
3139 // to be a good reuse register candidate.
3140 const SCEV *Best = 0;
3141 unsigned BestNum = 0;
3142 for (RegUseTracker::const_iterator I = RegUses.begin(), E = RegUses.end();
3143 I != E; ++I) {
3144 const SCEV *Reg = *I;
3145 if (Taken.count(Reg))
3146 continue;
3147 if (!Best)
3148 Best = Reg;
3149 else {
3150 unsigned Count = RegUses.getUsedByIndices(Reg).count();
3151 if (Count > BestNum) {
3152 Best = Reg;
3153 BestNum = Count;
3154 }
3155 }
3156 }
3157
3158 DEBUG(dbgs() << "Narrowing the search space by assuming " << *Best
Dan Gohman3f46a3a2010-03-01 17:49:51 +00003159 << " will yield profitable reuse.\n");
Dan Gohman572645c2010-02-12 10:34:29 +00003160 Taken.insert(Best);
3161
3162 // In any use with formulae which references this register, delete formulae
3163 // which don't reference it.
Dan Gohmanb2df4332010-05-18 23:42:37 +00003164 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
3165 LSRUse &LU = Uses[LUIdx];
Dan Gohman572645c2010-02-12 10:34:29 +00003166 if (!LU.Regs.count(Best)) continue;
3167
Dan Gohmanb2df4332010-05-18 23:42:37 +00003168 bool Any = false;
Dan Gohman572645c2010-02-12 10:34:29 +00003169 for (size_t i = 0, e = LU.Formulae.size(); i != e; ++i) {
3170 Formula &F = LU.Formulae[i];
3171 if (!F.referencesReg(Best)) {
3172 DEBUG(dbgs() << " Deleting "; F.print(dbgs()); dbgs() << '\n');
Dan Gohmand69d6282010-05-18 22:39:15 +00003173 LU.DeleteFormula(F);
Dan Gohman572645c2010-02-12 10:34:29 +00003174 --e;
3175 --i;
Dan Gohmanb2df4332010-05-18 23:42:37 +00003176 Any = true;
Dan Gohman59dc6032010-05-07 23:36:59 +00003177 assert(e != 0 && "Use has no formulae left! Is Regs inconsistent?");
Dan Gohman572645c2010-02-12 10:34:29 +00003178 continue;
3179 }
Dan Gohman572645c2010-02-12 10:34:29 +00003180 }
Dan Gohmanb2df4332010-05-18 23:42:37 +00003181
3182 if (Any)
3183 LU.RecomputeRegs(LUIdx, RegUses);
Dan Gohman572645c2010-02-12 10:34:29 +00003184 }
3185
3186 DEBUG(dbgs() << "After pre-selection:\n";
3187 print_uses(dbgs()));
3188 }
3189}
3190
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00003191/// NarrowSearchSpaceUsingHeuristics - If there are an extraordinary number of
3192/// formulae to choose from, use some rough heuristics to prune down the number
3193/// of formulae. This keeps the main solver from taking an extraordinary amount
3194/// of time in some worst-case scenarios.
3195void LSRInstance::NarrowSearchSpaceUsingHeuristics() {
3196 NarrowSearchSpaceByDetectingSupersets();
3197 NarrowSearchSpaceByCollapsingUnrolledCode();
Dan Gohman4f7e18d2010-08-29 16:39:22 +00003198 NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters();
Dan Gohman4aa5c2e2010-08-29 16:09:42 +00003199 NarrowSearchSpaceByPickingWinnerRegs();
3200}
3201
Dan Gohman572645c2010-02-12 10:34:29 +00003202/// SolveRecurse - This is the recursive solver.
3203void LSRInstance::SolveRecurse(SmallVectorImpl<const Formula *> &Solution,
3204 Cost &SolutionCost,
3205 SmallVectorImpl<const Formula *> &Workspace,
3206 const Cost &CurCost,
3207 const SmallPtrSet<const SCEV *, 16> &CurRegs,
3208 DenseSet<const SCEV *> &VisitedRegs) const {
3209 // Some ideas:
3210 // - prune more:
3211 // - use more aggressive filtering
3212 // - sort the formula so that the most profitable solutions are found first
3213 // - sort the uses too
3214 // - search faster:
Dan Gohman3f46a3a2010-03-01 17:49:51 +00003215 // - don't compute a cost, and then compare. compare while computing a cost
Dan Gohman572645c2010-02-12 10:34:29 +00003216 // and bail early.
3217 // - track register sets with SmallBitVector
3218
3219 const LSRUse &LU = Uses[Workspace.size()];
3220
3221 // If this use references any register that's already a part of the
3222 // in-progress solution, consider it a requirement that a formula must
3223 // reference that register in order to be considered. This prunes out
3224 // unprofitable searching.
3225 SmallSetVector<const SCEV *, 4> ReqRegs;
3226 for (SmallPtrSet<const SCEV *, 16>::const_iterator I = CurRegs.begin(),
3227 E = CurRegs.end(); I != E; ++I)
Dan Gohman9214b822010-02-13 02:06:02 +00003228 if (LU.Regs.count(*I))
Dan Gohman572645c2010-02-12 10:34:29 +00003229 ReqRegs.insert(*I);
Dan Gohman572645c2010-02-12 10:34:29 +00003230
Dan Gohman9214b822010-02-13 02:06:02 +00003231 bool AnySatisfiedReqRegs = false;
Dan Gohman572645c2010-02-12 10:34:29 +00003232 SmallPtrSet<const SCEV *, 16> NewRegs;
3233 Cost NewCost;
Dan Gohman9214b822010-02-13 02:06:02 +00003234retry:
Dan Gohman572645c2010-02-12 10:34:29 +00003235 for (SmallVectorImpl<Formula>::const_iterator I = LU.Formulae.begin(),
3236 E = LU.Formulae.end(); I != E; ++I) {
3237 const Formula &F = *I;
3238
3239 // Ignore formulae which do not use any of the required registers.
3240 for (SmallSetVector<const SCEV *, 4>::const_iterator J = ReqRegs.begin(),
3241 JE = ReqRegs.end(); J != JE; ++J) {
3242 const SCEV *Reg = *J;
3243 if ((!F.ScaledReg || F.ScaledReg != Reg) &&
3244 std::find(F.BaseRegs.begin(), F.BaseRegs.end(), Reg) ==
3245 F.BaseRegs.end())
3246 goto skip;
3247 }
Dan Gohman9214b822010-02-13 02:06:02 +00003248 AnySatisfiedReqRegs = true;
Dan Gohman572645c2010-02-12 10:34:29 +00003249
3250 // Evaluate the cost of the current formula. If it's already worse than
3251 // the current best, prune the search at that point.
3252 NewCost = CurCost;
3253 NewRegs = CurRegs;
3254 NewCost.RateFormula(F, NewRegs, VisitedRegs, L, LU.Offsets, SE, DT);
3255 if (NewCost < SolutionCost) {
3256 Workspace.push_back(&F);
3257 if (Workspace.size() != Uses.size()) {
3258 SolveRecurse(Solution, SolutionCost, Workspace, NewCost,
3259 NewRegs, VisitedRegs);
3260 if (F.getNumRegs() == 1 && Workspace.size() == 1)
3261 VisitedRegs.insert(F.ScaledReg ? F.ScaledReg : F.BaseRegs[0]);
3262 } else {
3263 DEBUG(dbgs() << "New best at "; NewCost.print(dbgs());
3264 dbgs() << ". Regs:";
3265 for (SmallPtrSet<const SCEV *, 16>::const_iterator
3266 I = NewRegs.begin(), E = NewRegs.end(); I != E; ++I)
3267 dbgs() << ' ' << **I;
3268 dbgs() << '\n');
3269
3270 SolutionCost = NewCost;
3271 Solution = Workspace;
3272 }
3273 Workspace.pop_back();
3274 }
3275 skip:;
3276 }
Dan Gohman9214b822010-02-13 02:06:02 +00003277
3278 // If none of the formulae had all of the required registers, relax the
3279 // constraint so that we don't exclude all formulae.
3280 if (!AnySatisfiedReqRegs) {
Dan Gohman59dc6032010-05-07 23:36:59 +00003281 assert(!ReqRegs.empty() && "Solver failed even without required registers");
Dan Gohman9214b822010-02-13 02:06:02 +00003282 ReqRegs.clear();
3283 goto retry;
3284 }
Dan Gohman572645c2010-02-12 10:34:29 +00003285}
3286
Dan Gohman76c315a2010-05-20 20:52:00 +00003287/// Solve - Choose one formula from each use. Return the results in the given
3288/// Solution vector.
Dan Gohman572645c2010-02-12 10:34:29 +00003289void LSRInstance::Solve(SmallVectorImpl<const Formula *> &Solution) const {
3290 SmallVector<const Formula *, 8> Workspace;
3291 Cost SolutionCost;
3292 SolutionCost.Loose();
3293 Cost CurCost;
3294 SmallPtrSet<const SCEV *, 16> CurRegs;
3295 DenseSet<const SCEV *> VisitedRegs;
3296 Workspace.reserve(Uses.size());
3297
Dan Gohmanf7ff37d2010-05-20 20:00:41 +00003298 // SolveRecurse does all the work.
Dan Gohman572645c2010-02-12 10:34:29 +00003299 SolveRecurse(Solution, SolutionCost, Workspace, CurCost,
3300 CurRegs, VisitedRegs);
3301
3302 // Ok, we've now made all our decisions.
3303 DEBUG(dbgs() << "\n"
3304 "The chosen solution requires "; SolutionCost.print(dbgs());
3305 dbgs() << ":\n";
3306 for (size_t i = 0, e = Uses.size(); i != e; ++i) {
3307 dbgs() << " ";
3308 Uses[i].print(dbgs());
3309 dbgs() << "\n"
3310 " ";
3311 Solution[i]->print(dbgs());
3312 dbgs() << '\n';
3313 });
Dan Gohmana5528782010-05-20 20:59:23 +00003314
3315 assert(Solution.size() == Uses.size() && "Malformed solution!");
Dan Gohman572645c2010-02-12 10:34:29 +00003316}
3317
Dan Gohmane5f76872010-04-09 22:07:05 +00003318/// HoistInsertPosition - Helper for AdjustInsertPositionForExpand. Climb up
3319/// the dominator tree far as we can go while still being dominated by the
3320/// input positions. This helps canonicalize the insert position, which
3321/// encourages sharing.
3322BasicBlock::iterator
3323LSRInstance::HoistInsertPosition(BasicBlock::iterator IP,
3324 const SmallVectorImpl<Instruction *> &Inputs)
3325 const {
3326 for (;;) {
3327 const Loop *IPLoop = LI.getLoopFor(IP->getParent());
3328 unsigned IPLoopDepth = IPLoop ? IPLoop->getLoopDepth() : 0;
3329
3330 BasicBlock *IDom;
Dan Gohmand974a0e2010-05-20 20:00:25 +00003331 for (DomTreeNode *Rung = DT.getNode(IP->getParent()); ; ) {
Dan Gohman0fe46d92010-05-20 22:46:54 +00003332 if (!Rung) return IP;
Dan Gohmand974a0e2010-05-20 20:00:25 +00003333 Rung = Rung->getIDom();
3334 if (!Rung) return IP;
3335 IDom = Rung->getBlock();
Dan Gohmane5f76872010-04-09 22:07:05 +00003336
3337 // Don't climb into a loop though.
3338 const Loop *IDomLoop = LI.getLoopFor(IDom);
3339 unsigned IDomDepth = IDomLoop ? IDomLoop->getLoopDepth() : 0;
3340 if (IDomDepth <= IPLoopDepth &&
3341 (IDomDepth != IPLoopDepth || IDomLoop == IPLoop))
3342 break;
3343 }
3344
3345 bool AllDominate = true;
3346 Instruction *BetterPos = 0;
3347 Instruction *Tentative = IDom->getTerminator();
3348 for (SmallVectorImpl<Instruction *>::const_iterator I = Inputs.begin(),
3349 E = Inputs.end(); I != E; ++I) {
3350 Instruction *Inst = *I;
3351 if (Inst == Tentative || !DT.dominates(Inst, Tentative)) {
3352 AllDominate = false;
3353 break;
3354 }
3355 // Attempt to find an insert position in the middle of the block,
3356 // instead of at the end, so that it can be used for other expansions.
3357 if (IDom == Inst->getParent() &&
3358 (!BetterPos || DT.dominates(BetterPos, Inst)))
Douglas Gregor7d9663c2010-05-11 06:17:44 +00003359 BetterPos = llvm::next(BasicBlock::iterator(Inst));
Dan Gohmane5f76872010-04-09 22:07:05 +00003360 }
3361 if (!AllDominate)
3362 break;
3363 if (BetterPos)
3364 IP = BetterPos;
3365 else
3366 IP = Tentative;
3367 }
3368
3369 return IP;
3370}
3371
3372/// AdjustInsertPositionForExpand - Determine an input position which will be
Dan Gohmand96eae82010-04-09 02:00:38 +00003373/// dominated by the operands and which will dominate the result.
3374BasicBlock::iterator
Dan Gohmane5f76872010-04-09 22:07:05 +00003375LSRInstance::AdjustInsertPositionForExpand(BasicBlock::iterator IP,
3376 const LSRFixup &LF,
3377 const LSRUse &LU) const {
Dan Gohmand96eae82010-04-09 02:00:38 +00003378 // Collect some instructions which must be dominated by the
Dan Gohman448db1c2010-04-07 22:27:08 +00003379 // expanding replacement. These must be dominated by any operands that
Dan Gohman572645c2010-02-12 10:34:29 +00003380 // will be required in the expansion.
3381 SmallVector<Instruction *, 4> Inputs;
3382 if (Instruction *I = dyn_cast<Instruction>(LF.OperandValToReplace))
3383 Inputs.push_back(I);
3384 if (LU.Kind == LSRUse::ICmpZero)
3385 if (Instruction *I =
3386 dyn_cast<Instruction>(cast<ICmpInst>(LF.UserInst)->getOperand(1)))
3387 Inputs.push_back(I);
Dan Gohman448db1c2010-04-07 22:27:08 +00003388 if (LF.PostIncLoops.count(L)) {
3389 if (LF.isUseFullyOutsideLoop(L))
Dan Gohman069d6f32010-03-02 01:59:21 +00003390 Inputs.push_back(L->getLoopLatch()->getTerminator());
3391 else
3392 Inputs.push_back(IVIncInsertPos);
3393 }
Dan Gohman701a4ae2010-04-08 05:57:57 +00003394 // The expansion must also be dominated by the increment positions of any
3395 // loops it for which it is using post-inc mode.
3396 for (PostIncLoopSet::const_iterator I = LF.PostIncLoops.begin(),
3397 E = LF.PostIncLoops.end(); I != E; ++I) {
3398 const Loop *PIL = *I;
3399 if (PIL == L) continue;
3400
Dan Gohmane5f76872010-04-09 22:07:05 +00003401 // Be dominated by the loop exit.
Dan Gohman701a4ae2010-04-08 05:57:57 +00003402 SmallVector<BasicBlock *, 4> ExitingBlocks;
3403 PIL->getExitingBlocks(ExitingBlocks);
3404 if (!ExitingBlocks.empty()) {
3405 BasicBlock *BB = ExitingBlocks[0];
3406 for (unsigned i = 1, e = ExitingBlocks.size(); i != e; ++i)
3407 BB = DT.findNearestCommonDominator(BB, ExitingBlocks[i]);
3408 Inputs.push_back(BB->getTerminator());
3409 }
3410 }
Dan Gohman572645c2010-02-12 10:34:29 +00003411
3412 // Then, climb up the immediate dominator tree as far as we can go while
3413 // still being dominated by the input positions.
Dan Gohmane5f76872010-04-09 22:07:05 +00003414 IP = HoistInsertPosition(IP, Inputs);
Dan Gohmand96eae82010-04-09 02:00:38 +00003415
3416 // Don't insert instructions before PHI nodes.
Dan Gohman572645c2010-02-12 10:34:29 +00003417 while (isa<PHINode>(IP)) ++IP;
Dan Gohmand96eae82010-04-09 02:00:38 +00003418
3419 // Ignore debug intrinsics.
Dan Gohman449f31c2010-03-26 00:33:27 +00003420 while (isa<DbgInfoIntrinsic>(IP)) ++IP;
Dan Gohman572645c2010-02-12 10:34:29 +00003421
Dan Gohmand96eae82010-04-09 02:00:38 +00003422 return IP;
3423}
3424
Dan Gohman76c315a2010-05-20 20:52:00 +00003425/// Expand - Emit instructions for the leading candidate expression for this
3426/// LSRUse (this is called "expanding").
Dan Gohmand96eae82010-04-09 02:00:38 +00003427Value *LSRInstance::Expand(const LSRFixup &LF,
3428 const Formula &F,
3429 BasicBlock::iterator IP,
3430 SCEVExpander &Rewriter,
3431 SmallVectorImpl<WeakVH> &DeadInsts) const {
3432 const LSRUse &LU = Uses[LF.LUIdx];
3433
3434 // Determine an input position which will be dominated by the operands and
3435 // which will dominate the result.
Dan Gohmane5f76872010-04-09 22:07:05 +00003436 IP = AdjustInsertPositionForExpand(IP, LF, LU);
Dan Gohmand96eae82010-04-09 02:00:38 +00003437
Dan Gohman572645c2010-02-12 10:34:29 +00003438 // Inform the Rewriter if we have a post-increment use, so that it can
3439 // perform an advantageous expansion.
Dan Gohman448db1c2010-04-07 22:27:08 +00003440 Rewriter.setPostInc(LF.PostIncLoops);
Dan Gohman572645c2010-02-12 10:34:29 +00003441
3442 // This is the type that the user actually needs.
3443 const Type *OpTy = LF.OperandValToReplace->getType();
3444 // This will be the type that we'll initially expand to.
3445 const Type *Ty = F.getType();
3446 if (!Ty)
3447 // No type known; just expand directly to the ultimate type.
3448 Ty = OpTy;
3449 else if (SE.getEffectiveSCEVType(Ty) == SE.getEffectiveSCEVType(OpTy))
3450 // Expand directly to the ultimate type if it's the right size.
3451 Ty = OpTy;
3452 // This is the type to do integer arithmetic in.
3453 const Type *IntTy = SE.getEffectiveSCEVType(Ty);
3454
3455 // Build up a list of operands to add together to form the full base.
3456 SmallVector<const SCEV *, 8> Ops;
3457
3458 // Expand the BaseRegs portion.
3459 for (SmallVectorImpl<const SCEV *>::const_iterator I = F.BaseRegs.begin(),
3460 E = F.BaseRegs.end(); I != E; ++I) {
3461 const SCEV *Reg = *I;
3462 assert(!Reg->isZero() && "Zero allocated in a base register!");
3463
Dan Gohman448db1c2010-04-07 22:27:08 +00003464 // If we're expanding for a post-inc user, make the post-inc adjustment.
3465 PostIncLoopSet &Loops = const_cast<PostIncLoopSet &>(LF.PostIncLoops);
3466 Reg = TransformForPostIncUse(Denormalize, Reg,
3467 LF.UserInst, LF.OperandValToReplace,
3468 Loops, SE, DT);
Dan Gohman572645c2010-02-12 10:34:29 +00003469
3470 Ops.push_back(SE.getUnknown(Rewriter.expandCodeFor(Reg, 0, IP)));
3471 }
3472
Dan Gohman087bd1e2010-03-03 05:29:13 +00003473 // Flush the operand list to suppress SCEVExpander hoisting.
3474 if (!Ops.empty()) {
3475 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty, IP);
3476 Ops.clear();
3477 Ops.push_back(SE.getUnknown(FullV));
3478 }
3479
Dan Gohman572645c2010-02-12 10:34:29 +00003480 // Expand the ScaledReg portion.
3481 Value *ICmpScaledV = 0;
3482 if (F.AM.Scale != 0) {
3483 const SCEV *ScaledS = F.ScaledReg;
3484
Dan Gohman448db1c2010-04-07 22:27:08 +00003485 // If we're expanding for a post-inc user, make the post-inc adjustment.
3486 PostIncLoopSet &Loops = const_cast<PostIncLoopSet &>(LF.PostIncLoops);
3487 ScaledS = TransformForPostIncUse(Denormalize, ScaledS,
3488 LF.UserInst, LF.OperandValToReplace,
3489 Loops, SE, DT);
Dan Gohman572645c2010-02-12 10:34:29 +00003490
3491 if (LU.Kind == LSRUse::ICmpZero) {
3492 // An interesting way of "folding" with an icmp is to use a negated
3493 // scale, which we'll implement by inserting it into the other operand
3494 // of the icmp.
3495 assert(F.AM.Scale == -1 &&
3496 "The only scale supported by ICmpZero uses is -1!");
3497 ICmpScaledV = Rewriter.expandCodeFor(ScaledS, 0, IP);
3498 } else {
3499 // Otherwise just expand the scaled register and an explicit scale,
3500 // which is expected to be matched as part of the address.
3501 ScaledS = SE.getUnknown(Rewriter.expandCodeFor(ScaledS, 0, IP));
3502 ScaledS = SE.getMulExpr(ScaledS,
Dan Gohmandeff6212010-05-03 22:09:21 +00003503 SE.getConstant(ScaledS->getType(), F.AM.Scale));
Dan Gohman572645c2010-02-12 10:34:29 +00003504 Ops.push_back(ScaledS);
Dan Gohman087bd1e2010-03-03 05:29:13 +00003505
3506 // Flush the operand list to suppress SCEVExpander hoisting.
3507 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty, IP);
3508 Ops.clear();
3509 Ops.push_back(SE.getUnknown(FullV));
Dan Gohman572645c2010-02-12 10:34:29 +00003510 }
3511 }
3512
Dan Gohman087bd1e2010-03-03 05:29:13 +00003513 // Expand the GV portion.
3514 if (F.AM.BaseGV) {
3515 Ops.push_back(SE.getUnknown(F.AM.BaseGV));
3516
3517 // Flush the operand list to suppress SCEVExpander hoisting.
3518 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty, IP);
3519 Ops.clear();
3520 Ops.push_back(SE.getUnknown(FullV));
3521 }
3522
3523 // Expand the immediate portion.
Dan Gohman572645c2010-02-12 10:34:29 +00003524 int64_t Offset = (uint64_t)F.AM.BaseOffs + LF.Offset;
3525 if (Offset != 0) {
3526 if (LU.Kind == LSRUse::ICmpZero) {
3527 // The other interesting way of "folding" with an ICmpZero is to use a
3528 // negated immediate.
3529 if (!ICmpScaledV)
3530 ICmpScaledV = ConstantInt::get(IntTy, -Offset);
3531 else {
3532 Ops.push_back(SE.getUnknown(ICmpScaledV));
3533 ICmpScaledV = ConstantInt::get(IntTy, Offset);
3534 }
3535 } else {
3536 // Just add the immediate values. These again are expected to be matched
3537 // as part of the address.
Dan Gohman087bd1e2010-03-03 05:29:13 +00003538 Ops.push_back(SE.getUnknown(ConstantInt::getSigned(IntTy, Offset)));
Dan Gohman572645c2010-02-12 10:34:29 +00003539 }
3540 }
3541
3542 // Emit instructions summing all the operands.
3543 const SCEV *FullS = Ops.empty() ?
Dan Gohmandeff6212010-05-03 22:09:21 +00003544 SE.getConstant(IntTy, 0) :
Dan Gohman572645c2010-02-12 10:34:29 +00003545 SE.getAddExpr(Ops);
3546 Value *FullV = Rewriter.expandCodeFor(FullS, Ty, IP);
3547
3548 // We're done expanding now, so reset the rewriter.
Dan Gohman448db1c2010-04-07 22:27:08 +00003549 Rewriter.clearPostInc();
Dan Gohman572645c2010-02-12 10:34:29 +00003550
3551 // An ICmpZero Formula represents an ICmp which we're handling as a
3552 // comparison against zero. Now that we've expanded an expression for that
3553 // form, update the ICmp's other operand.
3554 if (LU.Kind == LSRUse::ICmpZero) {
3555 ICmpInst *CI = cast<ICmpInst>(LF.UserInst);
3556 DeadInsts.push_back(CI->getOperand(1));
3557 assert(!F.AM.BaseGV && "ICmp does not support folding a global value and "
3558 "a scale at the same time!");
3559 if (F.AM.Scale == -1) {
3560 if (ICmpScaledV->getType() != OpTy) {
3561 Instruction *Cast =
3562 CastInst::Create(CastInst::getCastOpcode(ICmpScaledV, false,
3563 OpTy, false),
3564 ICmpScaledV, OpTy, "tmp", CI);
3565 ICmpScaledV = Cast;
3566 }
3567 CI->setOperand(1, ICmpScaledV);
3568 } else {
3569 assert(F.AM.Scale == 0 &&
3570 "ICmp does not support folding a global value and "
3571 "a scale at the same time!");
3572 Constant *C = ConstantInt::getSigned(SE.getEffectiveSCEVType(OpTy),
3573 -(uint64_t)Offset);
3574 if (C->getType() != OpTy)
3575 C = ConstantExpr::getCast(CastInst::getCastOpcode(C, false,
3576 OpTy, false),
3577 C, OpTy);
3578
3579 CI->setOperand(1, C);
3580 }
3581 }
3582
3583 return FullV;
3584}
3585
Dan Gohman3a02cbc2010-02-16 20:25:07 +00003586/// RewriteForPHI - Helper for Rewrite. PHI nodes are special because the use
3587/// of their operands effectively happens in their predecessor blocks, so the
3588/// expression may need to be expanded in multiple places.
3589void LSRInstance::RewriteForPHI(PHINode *PN,
3590 const LSRFixup &LF,
3591 const Formula &F,
Dan Gohman3a02cbc2010-02-16 20:25:07 +00003592 SCEVExpander &Rewriter,
3593 SmallVectorImpl<WeakVH> &DeadInsts,
Dan Gohman3a02cbc2010-02-16 20:25:07 +00003594 Pass *P) const {
3595 DenseMap<BasicBlock *, Value *> Inserted;
3596 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
3597 if (PN->getIncomingValue(i) == LF.OperandValToReplace) {
3598 BasicBlock *BB = PN->getIncomingBlock(i);
3599
3600 // If this is a critical edge, split the edge so that we do not insert
3601 // the code on all predecessor/successor paths. We do this unless this
3602 // is the canonical backedge for this loop, which complicates post-inc
3603 // users.
3604 if (e != 1 && BB->getTerminator()->getNumSuccessors() > 1 &&
3605 !isa<IndirectBrInst>(BB->getTerminator()) &&
3606 (PN->getParent() != L->getHeader() || !L->contains(BB))) {
3607 // Split the critical edge.
3608 BasicBlock *NewBB = SplitCriticalEdge(BB, PN->getParent(), P);
3609
3610 // If PN is outside of the loop and BB is in the loop, we want to
3611 // move the block to be immediately before the PHI block, not
3612 // immediately after BB.
3613 if (L->contains(BB) && !L->contains(PN))
3614 NewBB->moveBefore(PN->getParent());
3615
3616 // Splitting the edge can reduce the number of PHI entries we have.
3617 e = PN->getNumIncomingValues();
3618 BB = NewBB;
3619 i = PN->getBasicBlockIndex(BB);
3620 }
3621
3622 std::pair<DenseMap<BasicBlock *, Value *>::iterator, bool> Pair =
3623 Inserted.insert(std::make_pair(BB, static_cast<Value *>(0)));
3624 if (!Pair.second)
3625 PN->setIncomingValue(i, Pair.first->second);
3626 else {
Dan Gohman454d26d2010-02-22 04:11:59 +00003627 Value *FullV = Expand(LF, F, BB->getTerminator(), Rewriter, DeadInsts);
Dan Gohman3a02cbc2010-02-16 20:25:07 +00003628
3629 // If this is reuse-by-noop-cast, insert the noop cast.
3630 const Type *OpTy = LF.OperandValToReplace->getType();
3631 if (FullV->getType() != OpTy)
3632 FullV =
3633 CastInst::Create(CastInst::getCastOpcode(FullV, false,
3634 OpTy, false),
3635 FullV, LF.OperandValToReplace->getType(),
3636 "tmp", BB->getTerminator());
3637
3638 PN->setIncomingValue(i, FullV);
3639 Pair.first->second = FullV;
3640 }
3641 }
3642}
3643
Dan Gohman572645c2010-02-12 10:34:29 +00003644/// Rewrite - Emit instructions for the leading candidate expression for this
3645/// LSRUse (this is called "expanding"), and update the UserInst to reference
3646/// the newly expanded value.
3647void LSRInstance::Rewrite(const LSRFixup &LF,
3648 const Formula &F,
Dan Gohman572645c2010-02-12 10:34:29 +00003649 SCEVExpander &Rewriter,
3650 SmallVectorImpl<WeakVH> &DeadInsts,
Dan Gohman572645c2010-02-12 10:34:29 +00003651 Pass *P) const {
Dan Gohman572645c2010-02-12 10:34:29 +00003652 // First, find an insertion point that dominates UserInst. For PHI nodes,
3653 // find the nearest block which dominates all the relevant uses.
3654 if (PHINode *PN = dyn_cast<PHINode>(LF.UserInst)) {
Dan Gohman454d26d2010-02-22 04:11:59 +00003655 RewriteForPHI(PN, LF, F, Rewriter, DeadInsts, P);
Dan Gohman572645c2010-02-12 10:34:29 +00003656 } else {
Dan Gohman454d26d2010-02-22 04:11:59 +00003657 Value *FullV = Expand(LF, F, LF.UserInst, Rewriter, DeadInsts);
Dan Gohman572645c2010-02-12 10:34:29 +00003658
3659 // If this is reuse-by-noop-cast, insert the noop cast.
Dan Gohman3a02cbc2010-02-16 20:25:07 +00003660 const Type *OpTy = LF.OperandValToReplace->getType();
Dan Gohman572645c2010-02-12 10:34:29 +00003661 if (FullV->getType() != OpTy) {
3662 Instruction *Cast =
3663 CastInst::Create(CastInst::getCastOpcode(FullV, false, OpTy, false),
3664 FullV, OpTy, "tmp", LF.UserInst);
3665 FullV = Cast;
3666 }
3667
3668 // Update the user. ICmpZero is handled specially here (for now) because
3669 // Expand may have updated one of the operands of the icmp already, and
3670 // its new value may happen to be equal to LF.OperandValToReplace, in
3671 // which case doing replaceUsesOfWith leads to replacing both operands
3672 // with the same value. TODO: Reorganize this.
3673 if (Uses[LF.LUIdx].Kind == LSRUse::ICmpZero)
3674 LF.UserInst->setOperand(0, FullV);
3675 else
3676 LF.UserInst->replaceUsesOfWith(LF.OperandValToReplace, FullV);
3677 }
3678
3679 DeadInsts.push_back(LF.OperandValToReplace);
3680}
3681
Dan Gohman76c315a2010-05-20 20:52:00 +00003682/// ImplementSolution - Rewrite all the fixup locations with new values,
3683/// following the chosen solution.
Dan Gohman572645c2010-02-12 10:34:29 +00003684void
3685LSRInstance::ImplementSolution(const SmallVectorImpl<const Formula *> &Solution,
3686 Pass *P) {
3687 // Keep track of instructions we may have made dead, so that
3688 // we can remove them after we are done working.
3689 SmallVector<WeakVH, 16> DeadInsts;
3690
3691 SCEVExpander Rewriter(SE);
3692 Rewriter.disableCanonicalMode();
3693 Rewriter.setIVIncInsertPos(L, IVIncInsertPos);
3694
3695 // Expand the new value definitions and update the users.
Dan Gohman402d4352010-05-20 20:33:18 +00003696 for (SmallVectorImpl<LSRFixup>::const_iterator I = Fixups.begin(),
3697 E = Fixups.end(); I != E; ++I) {
3698 const LSRFixup &Fixup = *I;
Dan Gohman572645c2010-02-12 10:34:29 +00003699
Dan Gohman402d4352010-05-20 20:33:18 +00003700 Rewrite(Fixup, *Solution[Fixup.LUIdx], Rewriter, DeadInsts, P);
Dan Gohman572645c2010-02-12 10:34:29 +00003701
3702 Changed = true;
3703 }
3704
3705 // Clean up after ourselves. This must be done before deleting any
3706 // instructions.
3707 Rewriter.clear();
3708
3709 Changed |= DeleteTriviallyDeadInstructions(DeadInsts);
3710}
3711
3712LSRInstance::LSRInstance(const TargetLowering *tli, Loop *l, Pass *P)
3713 : IU(P->getAnalysis<IVUsers>()),
3714 SE(P->getAnalysis<ScalarEvolution>()),
3715 DT(P->getAnalysis<DominatorTree>()),
Dan Gohmane5f76872010-04-09 22:07:05 +00003716 LI(P->getAnalysis<LoopInfo>()),
Dan Gohman572645c2010-02-12 10:34:29 +00003717 TLI(tli), L(l), Changed(false), IVIncInsertPos(0) {
Devang Patel0f54dcb2007-03-06 21:14:09 +00003718
Dan Gohman03e896b2009-11-05 21:11:53 +00003719 // If LoopSimplify form is not available, stay out of trouble.
Dan Gohman572645c2010-02-12 10:34:29 +00003720 if (!L->isLoopSimplifyForm()) return;
Dan Gohman03e896b2009-11-05 21:11:53 +00003721
Dan Gohman572645c2010-02-12 10:34:29 +00003722 // If there's no interesting work to be done, bail early.
3723 if (IU.empty()) return;
Dan Gohman80b0f8c2009-03-09 20:34:59 +00003724
Dan Gohman572645c2010-02-12 10:34:29 +00003725 DEBUG(dbgs() << "\nLSR on loop ";
3726 WriteAsOperand(dbgs(), L->getHeader(), /*PrintType=*/false);
3727 dbgs() << ":\n");
Dan Gohmanf7912df2009-03-09 20:46:50 +00003728
Dan Gohman402d4352010-05-20 20:33:18 +00003729 // First, perform some low-level loop optimizations.
Dan Gohman572645c2010-02-12 10:34:29 +00003730 OptimizeShadowIV();
Dan Gohmanc6519f92010-05-20 20:05:31 +00003731 OptimizeLoopTermCond();
Evan Cheng5792f512009-05-11 22:33:01 +00003732
Dan Gohman402d4352010-05-20 20:33:18 +00003733 // Start collecting data and preparing for the solver.
Dan Gohman572645c2010-02-12 10:34:29 +00003734 CollectInterestingTypesAndFactors();
3735 CollectFixupsAndInitialFormulae();
3736 CollectLoopInvariantFixupsAndFormulae();
Chris Lattner010de252005-08-08 05:28:22 +00003737
Dan Gohman572645c2010-02-12 10:34:29 +00003738 DEBUG(dbgs() << "LSR found " << Uses.size() << " uses:\n";
3739 print_uses(dbgs()));
Misha Brukmanfd939082005-04-21 23:48:37 +00003740
Dan Gohman572645c2010-02-12 10:34:29 +00003741 // Now use the reuse data to generate a bunch of interesting ways
3742 // to formulate the values needed for the uses.
3743 GenerateAllReuseFormulae();
Evan Chengd1d6b5c2006-03-16 21:53:05 +00003744
Dan Gohman572645c2010-02-12 10:34:29 +00003745 FilterOutUndesirableDedicatedRegisters();
3746 NarrowSearchSpaceUsingHeuristics();
Dan Gohman6bec5bb2009-12-18 00:06:20 +00003747
Dan Gohman572645c2010-02-12 10:34:29 +00003748 SmallVector<const Formula *, 8> Solution;
3749 Solve(Solution);
Dan Gohman6bec5bb2009-12-18 00:06:20 +00003750
Dan Gohman572645c2010-02-12 10:34:29 +00003751 // Release memory that is no longer needed.
3752 Factors.clear();
3753 Types.clear();
3754 RegUses.clear();
3755
3756#ifndef NDEBUG
3757 // Formulae should be legal.
3758 for (SmallVectorImpl<LSRUse>::const_iterator I = Uses.begin(),
3759 E = Uses.end(); I != E; ++I) {
3760 const LSRUse &LU = *I;
3761 for (SmallVectorImpl<Formula>::const_iterator J = LU.Formulae.begin(),
3762 JE = LU.Formulae.end(); J != JE; ++J)
3763 assert(isLegalUse(J->AM, LU.MinOffset, LU.MaxOffset,
3764 LU.Kind, LU.AccessTy, TLI) &&
3765 "Illegal formula generated!");
3766 };
3767#endif
3768
3769 // Now that we've decided what we want, make it so.
3770 ImplementSolution(Solution, P);
3771}
3772
3773void LSRInstance::print_factors_and_types(raw_ostream &OS) const {
3774 if (Factors.empty() && Types.empty()) return;
3775
3776 OS << "LSR has identified the following interesting factors and types: ";
3777 bool First = true;
3778
3779 for (SmallSetVector<int64_t, 8>::const_iterator
3780 I = Factors.begin(), E = Factors.end(); I != E; ++I) {
3781 if (!First) OS << ", ";
3782 First = false;
3783 OS << '*' << *I;
Evan Cheng81ebdcf2009-11-10 21:14:05 +00003784 }
Dale Johannesenc1acc3f2009-05-11 17:15:42 +00003785
Dan Gohman572645c2010-02-12 10:34:29 +00003786 for (SmallSetVector<const Type *, 4>::const_iterator
3787 I = Types.begin(), E = Types.end(); I != E; ++I) {
3788 if (!First) OS << ", ";
3789 First = false;
3790 OS << '(' << **I << ')';
3791 }
3792 OS << '\n';
3793}
3794
3795void LSRInstance::print_fixups(raw_ostream &OS) const {
3796 OS << "LSR is examining the following fixup sites:\n";
3797 for (SmallVectorImpl<LSRFixup>::const_iterator I = Fixups.begin(),
3798 E = Fixups.end(); I != E; ++I) {
Dan Gohman572645c2010-02-12 10:34:29 +00003799 dbgs() << " ";
Dan Gohman9f383eb2010-05-20 22:25:20 +00003800 I->print(OS);
Dan Gohman572645c2010-02-12 10:34:29 +00003801 OS << '\n';
3802 }
3803}
3804
3805void LSRInstance::print_uses(raw_ostream &OS) const {
3806 OS << "LSR is examining the following uses:\n";
3807 for (SmallVectorImpl<LSRUse>::const_iterator I = Uses.begin(),
3808 E = Uses.end(); I != E; ++I) {
3809 const LSRUse &LU = *I;
3810 dbgs() << " ";
3811 LU.print(OS);
3812 OS << '\n';
3813 for (SmallVectorImpl<Formula>::const_iterator J = LU.Formulae.begin(),
3814 JE = LU.Formulae.end(); J != JE; ++J) {
3815 OS << " ";
3816 J->print(OS);
3817 OS << '\n';
3818 }
3819 }
3820}
3821
3822void LSRInstance::print(raw_ostream &OS) const {
3823 print_factors_and_types(OS);
3824 print_fixups(OS);
3825 print_uses(OS);
3826}
3827
3828void LSRInstance::dump() const {
3829 print(errs()); errs() << '\n';
3830}
3831
3832namespace {
3833
3834class LoopStrengthReduce : public LoopPass {
3835 /// TLI - Keep a pointer of a TargetLowering to consult for determining
3836 /// transformation profitability.
3837 const TargetLowering *const TLI;
3838
3839public:
3840 static char ID; // Pass ID, replacement for typeid
3841 explicit LoopStrengthReduce(const TargetLowering *tli = 0);
3842
3843private:
3844 bool runOnLoop(Loop *L, LPPassManager &LPM);
3845 void getAnalysisUsage(AnalysisUsage &AU) const;
3846};
3847
3848}
3849
3850char LoopStrengthReduce::ID = 0;
Owen Andersond13db2c2010-07-21 22:09:45 +00003851INITIALIZE_PASS(LoopStrengthReduce, "loop-reduce",
3852 "Loop Strength Reduction", false, false);
Dan Gohman572645c2010-02-12 10:34:29 +00003853
3854Pass *llvm::createLoopStrengthReducePass(const TargetLowering *TLI) {
3855 return new LoopStrengthReduce(TLI);
3856}
3857
3858LoopStrengthReduce::LoopStrengthReduce(const TargetLowering *tli)
Owen Anderson90c579d2010-08-06 18:33:48 +00003859 : LoopPass(ID), TLI(tli) {}
Dan Gohman572645c2010-02-12 10:34:29 +00003860
3861void LoopStrengthReduce::getAnalysisUsage(AnalysisUsage &AU) const {
3862 // We split critical edges, so we change the CFG. However, we do update
3863 // many analyses if they are around.
3864 AU.addPreservedID(LoopSimplifyID);
Dan Gohman572645c2010-02-12 10:34:29 +00003865 AU.addPreserved("domfrontier");
3866
Dan Gohmane5f76872010-04-09 22:07:05 +00003867 AU.addRequired<LoopInfo>();
3868 AU.addPreserved<LoopInfo>();
Dan Gohman572645c2010-02-12 10:34:29 +00003869 AU.addRequiredID(LoopSimplifyID);
3870 AU.addRequired<DominatorTree>();
3871 AU.addPreserved<DominatorTree>();
3872 AU.addRequired<ScalarEvolution>();
3873 AU.addPreserved<ScalarEvolution>();
3874 AU.addRequired<IVUsers>();
3875 AU.addPreserved<IVUsers>();
3876}
3877
3878bool LoopStrengthReduce::runOnLoop(Loop *L, LPPassManager & /*LPM*/) {
3879 bool Changed = false;
3880
3881 // Run the main LSR transformation.
3882 Changed |= LSRInstance(TLI, L, this).getChanged();
3883
Dan Gohmanafc36a92009-05-02 18:29:22 +00003884 // At this point, it is worth checking to see if any recurrence PHIs are also
Dan Gohman35738ac2009-05-04 22:30:44 +00003885 // dead, so that we can remove them as well.
Dan Gohman9fff2182010-01-05 16:31:45 +00003886 Changed |= DeleteDeadPHIs(L->getHeader());
Dan Gohmanafc36a92009-05-02 18:29:22 +00003887
Evan Cheng1ce75dc2008-07-07 19:51:32 +00003888 return Changed;
Nate Begemaneaa13852004-10-18 21:08:22 +00003889}