blob: 5a1efbe2c2ec6f58e9d7e8fd4b4ff153e1980c31 [file] [log] [blame]
Dan Gohman2d1be872009-04-16 03:18:22 +00001//===- LoopStrengthReduce.cpp - Strength Reduce IVs in Loops --------------===//
Misha Brukmanfd939082005-04-21 23:48:37 +00002//
Nate Begemaneaa13852004-10-18 21:08:22 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanfd939082005-04-21 23:48:37 +00007//
Nate Begemaneaa13852004-10-18 21:08:22 +00008//===----------------------------------------------------------------------===//
9//
Dan Gohmancec8f9d2009-05-19 20:37:36 +000010// This transformation analyzes and transforms the induction variables (and
11// computations derived from them) into forms suitable for efficient execution
12// on the target.
13//
Nate Begemaneaa13852004-10-18 21:08:22 +000014// This pass performs a strength reduction on array references inside loops that
Dan Gohmancec8f9d2009-05-19 20:37:36 +000015// have as one or more of their components the loop induction variable, it
16// rewrites expressions to take advantage of scaled-index addressing modes
17// available on the target, and it performs a variety of other optimizations
18// related to loop induction variables.
Nate Begemaneaa13852004-10-18 21:08:22 +000019//
Dan Gohman572645c2010-02-12 10:34:29 +000020// Terminology note: this code has a lot of handling for "post-increment" or
21// "post-inc" users. This is not talking about post-increment addressing modes;
22// it is instead talking about code like this:
23//
24// %i = phi [ 0, %entry ], [ %i.next, %latch ]
25// ...
26// %i.next = add %i, 1
27// %c = icmp eq %i.next, %n
28//
29// The SCEV for %i is {0,+,1}<%L>. The SCEV for %i.next is {1,+,1}<%L>, however
30// it's useful to think about these as the same register, with some uses using
31// the value of the register before the add and some using // it after. In this
32// example, the icmp is a post-increment user, since it uses %i.next, which is
33// the value of the induction variable after the increment. The other common
34// case of post-increment users is users outside the loop.
35//
36// TODO: More sophistication in the way Formulae are generated and filtered.
37//
38// TODO: Handle multiple loops at a time.
39//
40// TODO: Should TargetLowering::AddrMode::BaseGV be changed to a ConstantExpr
41// instead of a GlobalValue?
42//
43// TODO: When truncation is free, truncate ICmp users' operands to make it a
44// smaller encoding (on x86 at least).
45//
46// TODO: When a negated register is used by an add (such as in a list of
47// multiple base registers, or as the increment expression in an addrec),
48// we may not actually need both reg and (-1 * reg) in registers; the
49// negation can be implemented by using a sub instead of an add. The
50// lack of support for taking this into consideration when making
51// register pressure decisions is partly worked around by the "Special"
52// use kind.
53//
Nate Begemaneaa13852004-10-18 21:08:22 +000054//===----------------------------------------------------------------------===//
55
Chris Lattnerbe3e5212005-08-03 23:30:08 +000056#define DEBUG_TYPE "loop-reduce"
Nate Begemaneaa13852004-10-18 21:08:22 +000057#include "llvm/Transforms/Scalar.h"
58#include "llvm/Constants.h"
59#include "llvm/Instructions.h"
Dan Gohmane5b01be2007-05-04 14:59:09 +000060#include "llvm/IntrinsicInst.h"
Jeff Cohen2f3c9b72005-03-04 04:04:26 +000061#include "llvm/DerivedTypes.h"
Dan Gohman81db61a2009-05-12 02:17:14 +000062#include "llvm/Analysis/IVUsers.h"
Dan Gohman572645c2010-02-12 10:34:29 +000063#include "llvm/Analysis/Dominators.h"
Devang Patel0f54dcb2007-03-06 21:14:09 +000064#include "llvm/Analysis/LoopPass.h"
Nate Begeman16997482005-07-30 00:15:07 +000065#include "llvm/Analysis/ScalarEvolutionExpander.h"
Chris Lattnere0391be2005-08-12 22:06:11 +000066#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Nate Begemaneaa13852004-10-18 21:08:22 +000067#include "llvm/Transforms/Utils/Local.h"
Dan Gohman572645c2010-02-12 10:34:29 +000068#include "llvm/ADT/SmallBitVector.h"
69#include "llvm/ADT/SetVector.h"
70#include "llvm/ADT/DenseSet.h"
Nate Begeman16997482005-07-30 00:15:07 +000071#include "llvm/Support/Debug.h"
Dan Gohmanafc36a92009-05-02 18:29:22 +000072#include "llvm/Support/ValueHandle.h"
Daniel Dunbar460f6562009-07-26 09:48:23 +000073#include "llvm/Support/raw_ostream.h"
Evan Chengd277f2c2006-03-13 23:14:23 +000074#include "llvm/Target/TargetLowering.h"
Jeff Cohencfb1d422005-07-30 18:22:27 +000075#include <algorithm>
Nate Begemaneaa13852004-10-18 21:08:22 +000076using namespace llvm;
77
Dan Gohman572645c2010-02-12 10:34:29 +000078namespace {
Nate Begemaneaa13852004-10-18 21:08:22 +000079
Dan Gohman572645c2010-02-12 10:34:29 +000080/// RegSortData - This class holds data which is used to order reuse candidates.
81class RegSortData {
82public:
83 /// UsedByIndices - This represents the set of LSRUse indices which reference
84 /// a particular register.
85 SmallBitVector UsedByIndices;
86
87 RegSortData() {}
88
89 void print(raw_ostream &OS) const;
90 void dump() const;
91};
92
93}
94
95void RegSortData::print(raw_ostream &OS) const {
96 OS << "[NumUses=" << UsedByIndices.count() << ']';
97}
98
99void RegSortData::dump() const {
100 print(errs()); errs() << '\n';
101}
Dan Gohmanc17e0cf2009-02-20 04:17:46 +0000102
Chris Lattner0e5f4992006-12-19 21:40:18 +0000103namespace {
Dale Johannesendc42f482007-03-20 00:47:50 +0000104
Dan Gohman572645c2010-02-12 10:34:29 +0000105/// RegUseTracker - Map register candidates to information about how they are
106/// used.
107class RegUseTracker {
108 typedef DenseMap<const SCEV *, RegSortData> RegUsesTy;
Dale Johannesendc42f482007-03-20 00:47:50 +0000109
Dan Gohman90bb3552010-05-18 22:33:00 +0000110 RegUsesTy RegUsesMap;
Dan Gohman572645c2010-02-12 10:34:29 +0000111 SmallVector<const SCEV *, 16> RegSequence;
Evan Chengd1d6b5c2006-03-16 21:53:05 +0000112
Dan Gohman572645c2010-02-12 10:34:29 +0000113public:
114 void CountRegister(const SCEV *Reg, size_t LUIdx);
Dan Gohmanb2df4332010-05-18 23:42:37 +0000115 void DropRegister(const SCEV *Reg, size_t LUIdx);
Dan Gohmana2086b32010-05-19 23:43:12 +0000116 void DropUse(size_t LUIdx);
Dan Gohmana10756e2010-01-21 02:09:26 +0000117
Dan Gohman572645c2010-02-12 10:34:29 +0000118 bool isRegUsedByUsesOtherThan(const SCEV *Reg, size_t LUIdx) const;
Dan Gohmana10756e2010-01-21 02:09:26 +0000119
Dan Gohman572645c2010-02-12 10:34:29 +0000120 const SmallBitVector &getUsedByIndices(const SCEV *Reg) const;
Dan Gohmana10756e2010-01-21 02:09:26 +0000121
Dan Gohman572645c2010-02-12 10:34:29 +0000122 void clear();
Dan Gohmana10756e2010-01-21 02:09:26 +0000123
Dan Gohman572645c2010-02-12 10:34:29 +0000124 typedef SmallVectorImpl<const SCEV *>::iterator iterator;
125 typedef SmallVectorImpl<const SCEV *>::const_iterator const_iterator;
126 iterator begin() { return RegSequence.begin(); }
127 iterator end() { return RegSequence.end(); }
128 const_iterator begin() const { return RegSequence.begin(); }
129 const_iterator end() const { return RegSequence.end(); }
130};
Dan Gohmana10756e2010-01-21 02:09:26 +0000131
Dan Gohmana10756e2010-01-21 02:09:26 +0000132}
133
Dan Gohman572645c2010-02-12 10:34:29 +0000134void
135RegUseTracker::CountRegister(const SCEV *Reg, size_t LUIdx) {
136 std::pair<RegUsesTy::iterator, bool> Pair =
Dan Gohman90bb3552010-05-18 22:33:00 +0000137 RegUsesMap.insert(std::make_pair(Reg, RegSortData()));
Dan Gohman572645c2010-02-12 10:34:29 +0000138 RegSortData &RSD = Pair.first->second;
139 if (Pair.second)
140 RegSequence.push_back(Reg);
141 RSD.UsedByIndices.resize(std::max(RSD.UsedByIndices.size(), LUIdx + 1));
142 RSD.UsedByIndices.set(LUIdx);
Dan Gohmana10756e2010-01-21 02:09:26 +0000143}
144
Dan Gohmanb2df4332010-05-18 23:42:37 +0000145void
146RegUseTracker::DropRegister(const SCEV *Reg, size_t LUIdx) {
147 RegUsesTy::iterator It = RegUsesMap.find(Reg);
148 assert(It != RegUsesMap.end());
149 RegSortData &RSD = It->second;
150 assert(RSD.UsedByIndices.size() > LUIdx);
151 RSD.UsedByIndices.reset(LUIdx);
152}
153
Dan Gohmana2086b32010-05-19 23:43:12 +0000154void
155RegUseTracker::DropUse(size_t LUIdx) {
156 // Remove the use index from every register's use list.
157 for (RegUsesTy::iterator I = RegUsesMap.begin(), E = RegUsesMap.end();
158 I != E; ++I)
159 I->second.UsedByIndices.reset(LUIdx);
160}
161
Dan Gohman572645c2010-02-12 10:34:29 +0000162bool
163RegUseTracker::isRegUsedByUsesOtherThan(const SCEV *Reg, size_t LUIdx) const {
Dan Gohman90bb3552010-05-18 22:33:00 +0000164 if (!RegUsesMap.count(Reg)) return false;
Dan Gohman572645c2010-02-12 10:34:29 +0000165 const SmallBitVector &UsedByIndices =
Dan Gohman90bb3552010-05-18 22:33:00 +0000166 RegUsesMap.find(Reg)->second.UsedByIndices;
Dan Gohman572645c2010-02-12 10:34:29 +0000167 int i = UsedByIndices.find_first();
168 if (i == -1) return false;
169 if ((size_t)i != LUIdx) return true;
170 return UsedByIndices.find_next(i) != -1;
171}
Dan Gohmana10756e2010-01-21 02:09:26 +0000172
Dan Gohman572645c2010-02-12 10:34:29 +0000173const SmallBitVector &RegUseTracker::getUsedByIndices(const SCEV *Reg) const {
Dan Gohman90bb3552010-05-18 22:33:00 +0000174 RegUsesTy::const_iterator I = RegUsesMap.find(Reg);
175 assert(I != RegUsesMap.end() && "Unknown register!");
Dan Gohman572645c2010-02-12 10:34:29 +0000176 return I->second.UsedByIndices;
177}
Dan Gohmana10756e2010-01-21 02:09:26 +0000178
Dan Gohman572645c2010-02-12 10:34:29 +0000179void RegUseTracker::clear() {
Dan Gohman90bb3552010-05-18 22:33:00 +0000180 RegUsesMap.clear();
Dan Gohman572645c2010-02-12 10:34:29 +0000181 RegSequence.clear();
182}
Dan Gohmana10756e2010-01-21 02:09:26 +0000183
Dan Gohman572645c2010-02-12 10:34:29 +0000184namespace {
185
186/// Formula - This class holds information that describes a formula for
187/// computing satisfying a use. It may include broken-out immediates and scaled
188/// registers.
189struct Formula {
190 /// AM - This is used to represent complex addressing, as well as other kinds
191 /// of interesting uses.
192 TargetLowering::AddrMode AM;
193
194 /// BaseRegs - The list of "base" registers for this use. When this is
195 /// non-empty, AM.HasBaseReg should be set to true.
196 SmallVector<const SCEV *, 2> BaseRegs;
197
198 /// ScaledReg - The 'scaled' register for this use. This should be non-null
199 /// when AM.Scale is not zero.
200 const SCEV *ScaledReg;
201
202 Formula() : ScaledReg(0) {}
203
204 void InitialMatch(const SCEV *S, Loop *L,
205 ScalarEvolution &SE, DominatorTree &DT);
206
207 unsigned getNumRegs() const;
208 const Type *getType() const;
209
Dan Gohman5ce6d052010-05-20 15:17:54 +0000210 void DeleteBaseReg(const SCEV *&S);
211
Dan Gohman572645c2010-02-12 10:34:29 +0000212 bool referencesReg(const SCEV *S) const;
213 bool hasRegsUsedByUsesOtherThan(size_t LUIdx,
214 const RegUseTracker &RegUses) const;
215
216 void print(raw_ostream &OS) const;
217 void dump() const;
218};
219
220}
221
Dan Gohman3f46a3a2010-03-01 17:49:51 +0000222/// DoInitialMatch - Recursion helper for InitialMatch.
Dan Gohman572645c2010-02-12 10:34:29 +0000223static void DoInitialMatch(const SCEV *S, Loop *L,
224 SmallVectorImpl<const SCEV *> &Good,
225 SmallVectorImpl<const SCEV *> &Bad,
226 ScalarEvolution &SE, DominatorTree &DT) {
227 // Collect expressions which properly dominate the loop header.
228 if (S->properlyDominates(L->getHeader(), &DT)) {
229 Good.push_back(S);
230 return;
Dan Gohmana10756e2010-01-21 02:09:26 +0000231 }
Dan Gohman572645c2010-02-12 10:34:29 +0000232
233 // Look at add operands.
234 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
235 for (SCEVAddExpr::op_iterator I = Add->op_begin(), E = Add->op_end();
236 I != E; ++I)
237 DoInitialMatch(*I, L, Good, Bad, SE, DT);
238 return;
239 }
240
241 // Look at addrec operands.
242 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S))
243 if (!AR->getStart()->isZero()) {
244 DoInitialMatch(AR->getStart(), L, Good, Bad, SE, DT);
Dan Gohmandeff6212010-05-03 22:09:21 +0000245 DoInitialMatch(SE.getAddRecExpr(SE.getConstant(AR->getType(), 0),
Dan Gohman572645c2010-02-12 10:34:29 +0000246 AR->getStepRecurrence(SE),
247 AR->getLoop()),
248 L, Good, Bad, SE, DT);
249 return;
250 }
251
252 // Handle a multiplication by -1 (negation) if it didn't fold.
253 if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S))
254 if (Mul->getOperand(0)->isAllOnesValue()) {
255 SmallVector<const SCEV *, 4> Ops(Mul->op_begin()+1, Mul->op_end());
256 const SCEV *NewMul = SE.getMulExpr(Ops);
257
258 SmallVector<const SCEV *, 4> MyGood;
259 SmallVector<const SCEV *, 4> MyBad;
260 DoInitialMatch(NewMul, L, MyGood, MyBad, SE, DT);
261 const SCEV *NegOne = SE.getSCEV(ConstantInt::getAllOnesValue(
262 SE.getEffectiveSCEVType(NewMul->getType())));
263 for (SmallVectorImpl<const SCEV *>::const_iterator I = MyGood.begin(),
264 E = MyGood.end(); I != E; ++I)
265 Good.push_back(SE.getMulExpr(NegOne, *I));
266 for (SmallVectorImpl<const SCEV *>::const_iterator I = MyBad.begin(),
267 E = MyBad.end(); I != E; ++I)
268 Bad.push_back(SE.getMulExpr(NegOne, *I));
269 return;
270 }
271
272 // Ok, we can't do anything interesting. Just stuff the whole thing into a
273 // register and hope for the best.
274 Bad.push_back(S);
275}
276
277/// InitialMatch - Incorporate loop-variant parts of S into this Formula,
278/// attempting to keep all loop-invariant and loop-computable values in a
279/// single base register.
280void Formula::InitialMatch(const SCEV *S, Loop *L,
281 ScalarEvolution &SE, DominatorTree &DT) {
282 SmallVector<const SCEV *, 4> Good;
283 SmallVector<const SCEV *, 4> Bad;
284 DoInitialMatch(S, L, Good, Bad, SE, DT);
285 if (!Good.empty()) {
Dan Gohmane60bb152010-04-08 23:36:27 +0000286 const SCEV *Sum = SE.getAddExpr(Good);
287 if (!Sum->isZero())
288 BaseRegs.push_back(Sum);
Dan Gohman572645c2010-02-12 10:34:29 +0000289 AM.HasBaseReg = true;
290 }
291 if (!Bad.empty()) {
Dan Gohmane60bb152010-04-08 23:36:27 +0000292 const SCEV *Sum = SE.getAddExpr(Bad);
293 if (!Sum->isZero())
294 BaseRegs.push_back(Sum);
Dan Gohman572645c2010-02-12 10:34:29 +0000295 AM.HasBaseReg = true;
296 }
297}
298
299/// getNumRegs - Return the total number of register operands used by this
300/// formula. This does not include register uses implied by non-constant
301/// addrec strides.
302unsigned Formula::getNumRegs() const {
303 return !!ScaledReg + BaseRegs.size();
304}
305
306/// getType - Return the type of this formula, if it has one, or null
307/// otherwise. This type is meaningless except for the bit size.
308const Type *Formula::getType() const {
309 return !BaseRegs.empty() ? BaseRegs.front()->getType() :
310 ScaledReg ? ScaledReg->getType() :
311 AM.BaseGV ? AM.BaseGV->getType() :
312 0;
313}
314
Dan Gohman5ce6d052010-05-20 15:17:54 +0000315/// DeleteBaseReg - Delete the given base reg from the BaseRegs list.
316void Formula::DeleteBaseReg(const SCEV *&S) {
317 if (&S != &BaseRegs.back())
318 std::swap(S, BaseRegs.back());
319 BaseRegs.pop_back();
320}
321
Dan Gohman572645c2010-02-12 10:34:29 +0000322/// referencesReg - Test if this formula references the given register.
323bool Formula::referencesReg(const SCEV *S) const {
324 return S == ScaledReg ||
325 std::find(BaseRegs.begin(), BaseRegs.end(), S) != BaseRegs.end();
326}
327
328/// hasRegsUsedByUsesOtherThan - Test whether this formula uses registers
329/// which are used by uses other than the use with the given index.
330bool Formula::hasRegsUsedByUsesOtherThan(size_t LUIdx,
331 const RegUseTracker &RegUses) const {
332 if (ScaledReg)
333 if (RegUses.isRegUsedByUsesOtherThan(ScaledReg, LUIdx))
334 return true;
335 for (SmallVectorImpl<const SCEV *>::const_iterator I = BaseRegs.begin(),
336 E = BaseRegs.end(); I != E; ++I)
337 if (RegUses.isRegUsedByUsesOtherThan(*I, LUIdx))
338 return true;
339 return false;
340}
341
342void Formula::print(raw_ostream &OS) const {
343 bool First = true;
344 if (AM.BaseGV) {
345 if (!First) OS << " + "; else First = false;
346 WriteAsOperand(OS, AM.BaseGV, /*PrintType=*/false);
347 }
348 if (AM.BaseOffs != 0) {
349 if (!First) OS << " + "; else First = false;
350 OS << AM.BaseOffs;
351 }
352 for (SmallVectorImpl<const SCEV *>::const_iterator I = BaseRegs.begin(),
353 E = BaseRegs.end(); I != E; ++I) {
354 if (!First) OS << " + "; else First = false;
355 OS << "reg(" << **I << ')';
356 }
Dan Gohmanc4cfbaf2010-05-18 22:35:55 +0000357 if (AM.HasBaseReg && BaseRegs.empty()) {
358 if (!First) OS << " + "; else First = false;
359 OS << "**error: HasBaseReg**";
360 } else if (!AM.HasBaseReg && !BaseRegs.empty()) {
361 if (!First) OS << " + "; else First = false;
362 OS << "**error: !HasBaseReg**";
363 }
Dan Gohman572645c2010-02-12 10:34:29 +0000364 if (AM.Scale != 0) {
365 if (!First) OS << " + "; else First = false;
366 OS << AM.Scale << "*reg(";
367 if (ScaledReg)
368 OS << *ScaledReg;
369 else
370 OS << "<unknown>";
371 OS << ')';
372 }
373}
374
375void Formula::dump() const {
376 print(errs()); errs() << '\n';
377}
378
Dan Gohmanaae01f12010-02-19 19:32:49 +0000379/// isAddRecSExtable - Return true if the given addrec can be sign-extended
380/// without changing its value.
381static bool isAddRecSExtable(const SCEVAddRecExpr *AR, ScalarEvolution &SE) {
382 const Type *WideTy =
Dan Gohmanea507f52010-05-20 19:44:23 +0000383 IntegerType::get(SE.getContext(), SE.getTypeSizeInBits(AR->getType()) + 1);
Dan Gohmanaae01f12010-02-19 19:32:49 +0000384 return isa<SCEVAddRecExpr>(SE.getSignExtendExpr(AR, WideTy));
385}
386
387/// isAddSExtable - Return true if the given add can be sign-extended
388/// without changing its value.
389static bool isAddSExtable(const SCEVAddExpr *A, ScalarEvolution &SE) {
390 const Type *WideTy =
Dan Gohmanea507f52010-05-20 19:44:23 +0000391 IntegerType::get(SE.getContext(), SE.getTypeSizeInBits(A->getType()) + 1);
Dan Gohmanaae01f12010-02-19 19:32:49 +0000392 return isa<SCEVAddExpr>(SE.getSignExtendExpr(A, WideTy));
393}
394
Dan Gohman473e6352010-06-24 16:45:11 +0000395/// isMulSExtable - Return true if the given mul can be sign-extended
Dan Gohmanaae01f12010-02-19 19:32:49 +0000396/// without changing its value.
Dan Gohman473e6352010-06-24 16:45:11 +0000397static bool isMulSExtable(const SCEVMulExpr *M, ScalarEvolution &SE) {
Dan Gohmanaae01f12010-02-19 19:32:49 +0000398 const Type *WideTy =
Dan Gohman473e6352010-06-24 16:45:11 +0000399 IntegerType::get(SE.getContext(),
400 SE.getTypeSizeInBits(M->getType()) * M->getNumOperands());
401 return isa<SCEVMulExpr>(SE.getSignExtendExpr(M, WideTy));
Dan Gohmanaae01f12010-02-19 19:32:49 +0000402}
403
Dan Gohmanf09b7122010-02-19 19:35:48 +0000404/// getExactSDiv - Return an expression for LHS /s RHS, if it can be determined
405/// and if the remainder is known to be zero, or null otherwise. If
406/// IgnoreSignificantBits is true, expressions like (X * Y) /s Y are simplified
407/// to Y, ignoring that the multiplication may overflow, which is useful when
408/// the result will be used in a context where the most significant bits are
409/// ignored.
410static const SCEV *getExactSDiv(const SCEV *LHS, const SCEV *RHS,
411 ScalarEvolution &SE,
412 bool IgnoreSignificantBits = false) {
Dan Gohman572645c2010-02-12 10:34:29 +0000413 // Handle the trivial case, which works for any SCEV type.
414 if (LHS == RHS)
Dan Gohmandeff6212010-05-03 22:09:21 +0000415 return SE.getConstant(LHS->getType(), 1);
Dan Gohman572645c2010-02-12 10:34:29 +0000416
Dan Gohmand42819a2010-06-24 16:51:25 +0000417 // Handle a few RHS special cases.
418 const SCEVConstant *RC = dyn_cast<SCEVConstant>(RHS);
419 if (RC) {
420 const APInt &RA = RC->getValue()->getValue();
421 // Handle x /s -1 as x * -1, to give ScalarEvolution a chance to do
422 // some folding.
423 if (RA.isAllOnesValue())
424 return SE.getMulExpr(LHS, RC);
425 // Handle x /s 1 as x.
426 if (RA == 1)
427 return LHS;
428 }
Dan Gohman572645c2010-02-12 10:34:29 +0000429
430 // Check for a division of a constant by a constant.
431 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(LHS)) {
Dan Gohman572645c2010-02-12 10:34:29 +0000432 if (!RC)
433 return 0;
Dan Gohmand42819a2010-06-24 16:51:25 +0000434 const APInt &LA = C->getValue()->getValue();
435 const APInt &RA = RC->getValue()->getValue();
436 if (LA.srem(RA) != 0)
Dan Gohman572645c2010-02-12 10:34:29 +0000437 return 0;
Dan Gohmand42819a2010-06-24 16:51:25 +0000438 return SE.getConstant(LA.sdiv(RA));
Dan Gohman572645c2010-02-12 10:34:29 +0000439 }
440
Dan Gohmanaae01f12010-02-19 19:32:49 +0000441 // Distribute the sdiv over addrec operands, if the addrec doesn't overflow.
Dan Gohman572645c2010-02-12 10:34:29 +0000442 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(LHS)) {
Dan Gohmanaae01f12010-02-19 19:32:49 +0000443 if (IgnoreSignificantBits || isAddRecSExtable(AR, SE)) {
Dan Gohmanf09b7122010-02-19 19:35:48 +0000444 const SCEV *Start = getExactSDiv(AR->getStart(), RHS, SE,
445 IgnoreSignificantBits);
Dan Gohmanaae01f12010-02-19 19:32:49 +0000446 if (!Start) return 0;
Dan Gohmanf09b7122010-02-19 19:35:48 +0000447 const SCEV *Step = getExactSDiv(AR->getStepRecurrence(SE), RHS, SE,
448 IgnoreSignificantBits);
Dan Gohmanaae01f12010-02-19 19:32:49 +0000449 if (!Step) return 0;
450 return SE.getAddRecExpr(Start, Step, AR->getLoop());
451 }
Dan Gohman2ea09e02010-06-24 16:57:52 +0000452 return 0;
Dan Gohman572645c2010-02-12 10:34:29 +0000453 }
454
Dan Gohmanaae01f12010-02-19 19:32:49 +0000455 // Distribute the sdiv over add operands, if the add doesn't overflow.
Dan Gohman572645c2010-02-12 10:34:29 +0000456 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(LHS)) {
Dan Gohmanaae01f12010-02-19 19:32:49 +0000457 if (IgnoreSignificantBits || isAddSExtable(Add, SE)) {
458 SmallVector<const SCEV *, 8> Ops;
459 for (SCEVAddExpr::op_iterator I = Add->op_begin(), E = Add->op_end();
460 I != E; ++I) {
Dan Gohmanf09b7122010-02-19 19:35:48 +0000461 const SCEV *Op = getExactSDiv(*I, RHS, SE,
462 IgnoreSignificantBits);
Dan Gohmanaae01f12010-02-19 19:32:49 +0000463 if (!Op) return 0;
464 Ops.push_back(Op);
465 }
466 return SE.getAddExpr(Ops);
Dan Gohman572645c2010-02-12 10:34:29 +0000467 }
Dan Gohman2ea09e02010-06-24 16:57:52 +0000468 return 0;
Dan Gohman572645c2010-02-12 10:34:29 +0000469 }
470
471 // Check for a multiply operand that we can pull RHS out of.
Dan Gohman2ea09e02010-06-24 16:57:52 +0000472 if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(LHS)) {
Dan Gohmanaae01f12010-02-19 19:32:49 +0000473 if (IgnoreSignificantBits || isMulSExtable(Mul, SE)) {
Dan Gohman572645c2010-02-12 10:34:29 +0000474 SmallVector<const SCEV *, 4> Ops;
475 bool Found = false;
476 for (SCEVMulExpr::op_iterator I = Mul->op_begin(), E = Mul->op_end();
477 I != E; ++I) {
Dan Gohman47667442010-05-20 16:23:28 +0000478 const SCEV *S = *I;
Dan Gohman572645c2010-02-12 10:34:29 +0000479 if (!Found)
Dan Gohman47667442010-05-20 16:23:28 +0000480 if (const SCEV *Q = getExactSDiv(S, RHS, SE,
Dan Gohmanf09b7122010-02-19 19:35:48 +0000481 IgnoreSignificantBits)) {
Dan Gohman47667442010-05-20 16:23:28 +0000482 S = Q;
Dan Gohman572645c2010-02-12 10:34:29 +0000483 Found = true;
Dan Gohman572645c2010-02-12 10:34:29 +0000484 }
Dan Gohman47667442010-05-20 16:23:28 +0000485 Ops.push_back(S);
Dan Gohman572645c2010-02-12 10:34:29 +0000486 }
487 return Found ? SE.getMulExpr(Ops) : 0;
488 }
Dan Gohman2ea09e02010-06-24 16:57:52 +0000489 return 0;
490 }
Dan Gohman572645c2010-02-12 10:34:29 +0000491
492 // Otherwise we don't know.
493 return 0;
494}
495
496/// ExtractImmediate - If S involves the addition of a constant integer value,
497/// return that integer value, and mutate S to point to a new SCEV with that
498/// value excluded.
499static int64_t ExtractImmediate(const SCEV *&S, ScalarEvolution &SE) {
500 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(S)) {
501 if (C->getValue()->getValue().getMinSignedBits() <= 64) {
Dan Gohmandeff6212010-05-03 22:09:21 +0000502 S = SE.getConstant(C->getType(), 0);
Dan Gohman572645c2010-02-12 10:34:29 +0000503 return C->getValue()->getSExtValue();
504 }
505 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
506 SmallVector<const SCEV *, 8> NewOps(Add->op_begin(), Add->op_end());
507 int64_t Result = ExtractImmediate(NewOps.front(), SE);
508 S = SE.getAddExpr(NewOps);
509 return Result;
510 } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
511 SmallVector<const SCEV *, 8> NewOps(AR->op_begin(), AR->op_end());
512 int64_t Result = ExtractImmediate(NewOps.front(), SE);
513 S = SE.getAddRecExpr(NewOps, AR->getLoop());
514 return Result;
515 }
516 return 0;
517}
518
519/// ExtractSymbol - If S involves the addition of a GlobalValue address,
520/// return that symbol, and mutate S to point to a new SCEV with that
521/// value excluded.
522static GlobalValue *ExtractSymbol(const SCEV *&S, ScalarEvolution &SE) {
523 if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(S)) {
524 if (GlobalValue *GV = dyn_cast<GlobalValue>(U->getValue())) {
Dan Gohmandeff6212010-05-03 22:09:21 +0000525 S = SE.getConstant(GV->getType(), 0);
Dan Gohman572645c2010-02-12 10:34:29 +0000526 return GV;
527 }
528 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
529 SmallVector<const SCEV *, 8> NewOps(Add->op_begin(), Add->op_end());
530 GlobalValue *Result = ExtractSymbol(NewOps.back(), SE);
531 S = SE.getAddExpr(NewOps);
532 return Result;
533 } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
534 SmallVector<const SCEV *, 8> NewOps(AR->op_begin(), AR->op_end());
535 GlobalValue *Result = ExtractSymbol(NewOps.front(), SE);
536 S = SE.getAddRecExpr(NewOps, AR->getLoop());
537 return Result;
538 }
539 return 0;
Nate Begemaneaa13852004-10-18 21:08:22 +0000540}
541
Dan Gohmanf284ce22009-02-18 00:08:39 +0000542/// isAddressUse - Returns true if the specified instruction is using the
Dale Johannesen203af582008-12-05 21:47:27 +0000543/// specified value as an address.
544static bool isAddressUse(Instruction *Inst, Value *OperandVal) {
545 bool isAddress = isa<LoadInst>(Inst);
546 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
547 if (SI->getOperand(1) == OperandVal)
548 isAddress = true;
549 } else if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst)) {
550 // Addressing modes can also be folded into prefetches and a variety
551 // of intrinsics.
552 switch (II->getIntrinsicID()) {
553 default: break;
554 case Intrinsic::prefetch:
555 case Intrinsic::x86_sse2_loadu_dq:
556 case Intrinsic::x86_sse2_loadu_pd:
557 case Intrinsic::x86_sse_loadu_ps:
558 case Intrinsic::x86_sse_storeu_ps:
559 case Intrinsic::x86_sse2_storeu_pd:
560 case Intrinsic::x86_sse2_storeu_dq:
561 case Intrinsic::x86_sse2_storel_dq:
Gabor Greifad72e732010-06-30 09:15:28 +0000562 if (II->getArgOperand(0) == OperandVal)
Dale Johannesen203af582008-12-05 21:47:27 +0000563 isAddress = true;
564 break;
565 }
566 }
567 return isAddress;
568}
Chris Lattner0ae33eb2005-10-03 01:04:44 +0000569
Dan Gohman21e77222009-03-09 21:01:17 +0000570/// getAccessType - Return the type of the memory being accessed.
571static const Type *getAccessType(const Instruction *Inst) {
Dan Gohmana537bf82009-05-18 16:45:28 +0000572 const Type *AccessTy = Inst->getType();
Dan Gohman21e77222009-03-09 21:01:17 +0000573 if (const StoreInst *SI = dyn_cast<StoreInst>(Inst))
Dan Gohmana537bf82009-05-18 16:45:28 +0000574 AccessTy = SI->getOperand(0)->getType();
Dan Gohman21e77222009-03-09 21:01:17 +0000575 else if (const IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst)) {
576 // Addressing modes can also be folded into prefetches and a variety
577 // of intrinsics.
578 switch (II->getIntrinsicID()) {
579 default: break;
580 case Intrinsic::x86_sse_storeu_ps:
581 case Intrinsic::x86_sse2_storeu_pd:
582 case Intrinsic::x86_sse2_storeu_dq:
583 case Intrinsic::x86_sse2_storel_dq:
Gabor Greifad72e732010-06-30 09:15:28 +0000584 AccessTy = II->getArgOperand(0)->getType();
Dan Gohman21e77222009-03-09 21:01:17 +0000585 break;
586 }
587 }
Dan Gohman572645c2010-02-12 10:34:29 +0000588
589 // All pointers have the same requirements, so canonicalize them to an
590 // arbitrary pointer type to minimize variation.
591 if (const PointerType *PTy = dyn_cast<PointerType>(AccessTy))
592 AccessTy = PointerType::get(IntegerType::get(PTy->getContext(), 1),
593 PTy->getAddressSpace());
594
Dan Gohmana537bf82009-05-18 16:45:28 +0000595 return AccessTy;
Dan Gohman21e77222009-03-09 21:01:17 +0000596}
597
Dan Gohman572645c2010-02-12 10:34:29 +0000598/// DeleteTriviallyDeadInstructions - If any of the instructions is the
599/// specified set are trivially dead, delete them and see if this makes any of
600/// their operands subsequently dead.
601static bool
602DeleteTriviallyDeadInstructions(SmallVectorImpl<WeakVH> &DeadInsts) {
603 bool Changed = false;
604
605 while (!DeadInsts.empty()) {
606 Instruction *I = dyn_cast_or_null<Instruction>(DeadInsts.pop_back_val());
607
608 if (I == 0 || !isInstructionTriviallyDead(I))
609 continue;
610
611 for (User::op_iterator OI = I->op_begin(), E = I->op_end(); OI != E; ++OI)
612 if (Instruction *U = dyn_cast<Instruction>(*OI)) {
613 *OI = 0;
614 if (U->use_empty())
615 DeadInsts.push_back(U);
616 }
617
618 I->eraseFromParent();
619 Changed = true;
620 }
621
622 return Changed;
623}
624
Dan Gohman7979b722010-01-22 00:46:49 +0000625namespace {
Jim Grosbach56a1f802009-11-17 17:53:56 +0000626
Dan Gohman572645c2010-02-12 10:34:29 +0000627/// Cost - This class is used to measure and compare candidate formulae.
628class Cost {
629 /// TODO: Some of these could be merged. Also, a lexical ordering
630 /// isn't always optimal.
631 unsigned NumRegs;
632 unsigned AddRecCost;
633 unsigned NumIVMuls;
634 unsigned NumBaseAdds;
635 unsigned ImmCost;
636 unsigned SetupCost;
Nate Begeman16997482005-07-30 00:15:07 +0000637
Dan Gohman572645c2010-02-12 10:34:29 +0000638public:
639 Cost()
640 : NumRegs(0), AddRecCost(0), NumIVMuls(0), NumBaseAdds(0), ImmCost(0),
641 SetupCost(0) {}
Jim Grosbach56a1f802009-11-17 17:53:56 +0000642
Dan Gohman572645c2010-02-12 10:34:29 +0000643 unsigned getNumRegs() const { return NumRegs; }
Dan Gohman7979b722010-01-22 00:46:49 +0000644
Dan Gohman572645c2010-02-12 10:34:29 +0000645 bool operator<(const Cost &Other) const;
Dan Gohman7979b722010-01-22 00:46:49 +0000646
Dan Gohman572645c2010-02-12 10:34:29 +0000647 void Loose();
Dan Gohman7979b722010-01-22 00:46:49 +0000648
Dan Gohman572645c2010-02-12 10:34:29 +0000649 void RateFormula(const Formula &F,
650 SmallPtrSet<const SCEV *, 16> &Regs,
651 const DenseSet<const SCEV *> &VisitedRegs,
652 const Loop *L,
653 const SmallVectorImpl<int64_t> &Offsets,
654 ScalarEvolution &SE, DominatorTree &DT);
Dan Gohman7979b722010-01-22 00:46:49 +0000655
Dan Gohman572645c2010-02-12 10:34:29 +0000656 void print(raw_ostream &OS) const;
657 void dump() const;
Dan Gohman7979b722010-01-22 00:46:49 +0000658
Dan Gohman572645c2010-02-12 10:34:29 +0000659private:
660 void RateRegister(const SCEV *Reg,
661 SmallPtrSet<const SCEV *, 16> &Regs,
662 const Loop *L,
663 ScalarEvolution &SE, DominatorTree &DT);
Dan Gohman9214b822010-02-13 02:06:02 +0000664 void RatePrimaryRegister(const SCEV *Reg,
665 SmallPtrSet<const SCEV *, 16> &Regs,
666 const Loop *L,
667 ScalarEvolution &SE, DominatorTree &DT);
Dan Gohman572645c2010-02-12 10:34:29 +0000668};
669
670}
671
672/// RateRegister - Tally up interesting quantities from the given register.
673void Cost::RateRegister(const SCEV *Reg,
674 SmallPtrSet<const SCEV *, 16> &Regs,
675 const Loop *L,
676 ScalarEvolution &SE, DominatorTree &DT) {
Dan Gohman9214b822010-02-13 02:06:02 +0000677 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(Reg)) {
678 if (AR->getLoop() == L)
679 AddRecCost += 1; /// TODO: This should be a function of the stride.
Dan Gohman572645c2010-02-12 10:34:29 +0000680
Dan Gohman9214b822010-02-13 02:06:02 +0000681 // If this is an addrec for a loop that's already been visited by LSR,
682 // don't second-guess its addrec phi nodes. LSR isn't currently smart
683 // enough to reason about more than one loop at a time. Consider these
684 // registers free and leave them alone.
685 else if (L->contains(AR->getLoop()) ||
686 (!AR->getLoop()->contains(L) &&
687 DT.dominates(L->getHeader(), AR->getLoop()->getHeader()))) {
688 for (BasicBlock::iterator I = AR->getLoop()->getHeader()->begin();
689 PHINode *PN = dyn_cast<PHINode>(I); ++I)
690 if (SE.isSCEVable(PN->getType()) &&
691 (SE.getEffectiveSCEVType(PN->getType()) ==
692 SE.getEffectiveSCEVType(AR->getType())) &&
693 SE.getSCEV(PN) == AR)
694 return;
Dan Gohman572645c2010-02-12 10:34:29 +0000695
Dan Gohman9214b822010-02-13 02:06:02 +0000696 // If this isn't one of the addrecs that the loop already has, it
697 // would require a costly new phi and add. TODO: This isn't
698 // precisely modeled right now.
699 ++NumBaseAdds;
700 if (!Regs.count(AR->getStart()))
Dan Gohman572645c2010-02-12 10:34:29 +0000701 RateRegister(AR->getStart(), Regs, L, SE, DT);
Dan Gohman572645c2010-02-12 10:34:29 +0000702 }
Dan Gohman572645c2010-02-12 10:34:29 +0000703
Dan Gohman9214b822010-02-13 02:06:02 +0000704 // Add the step value register, if it needs one.
705 // TODO: The non-affine case isn't precisely modeled here.
706 if (!AR->isAffine() || !isa<SCEVConstant>(AR->getOperand(1)))
707 if (!Regs.count(AR->getStart()))
708 RateRegister(AR->getOperand(1), Regs, L, SE, DT);
Dan Gohman572645c2010-02-12 10:34:29 +0000709 }
Dan Gohman9214b822010-02-13 02:06:02 +0000710 ++NumRegs;
711
712 // Rough heuristic; favor registers which don't require extra setup
713 // instructions in the preheader.
714 if (!isa<SCEVUnknown>(Reg) &&
715 !isa<SCEVConstant>(Reg) &&
716 !(isa<SCEVAddRecExpr>(Reg) &&
717 (isa<SCEVUnknown>(cast<SCEVAddRecExpr>(Reg)->getStart()) ||
718 isa<SCEVConstant>(cast<SCEVAddRecExpr>(Reg)->getStart()))))
719 ++SetupCost;
720}
721
722/// RatePrimaryRegister - Record this register in the set. If we haven't seen it
723/// before, rate it.
724void Cost::RatePrimaryRegister(const SCEV *Reg,
Dan Gohman7fca2292010-02-16 19:42:34 +0000725 SmallPtrSet<const SCEV *, 16> &Regs,
726 const Loop *L,
727 ScalarEvolution &SE, DominatorTree &DT) {
Dan Gohman9214b822010-02-13 02:06:02 +0000728 if (Regs.insert(Reg))
729 RateRegister(Reg, Regs, L, SE, DT);
Dan Gohman572645c2010-02-12 10:34:29 +0000730}
731
732void Cost::RateFormula(const Formula &F,
733 SmallPtrSet<const SCEV *, 16> &Regs,
734 const DenseSet<const SCEV *> &VisitedRegs,
735 const Loop *L,
736 const SmallVectorImpl<int64_t> &Offsets,
737 ScalarEvolution &SE, DominatorTree &DT) {
738 // Tally up the registers.
739 if (const SCEV *ScaledReg = F.ScaledReg) {
740 if (VisitedRegs.count(ScaledReg)) {
741 Loose();
742 return;
743 }
Dan Gohman9214b822010-02-13 02:06:02 +0000744 RatePrimaryRegister(ScaledReg, Regs, L, SE, DT);
Dan Gohman572645c2010-02-12 10:34:29 +0000745 }
746 for (SmallVectorImpl<const SCEV *>::const_iterator I = F.BaseRegs.begin(),
747 E = F.BaseRegs.end(); I != E; ++I) {
748 const SCEV *BaseReg = *I;
749 if (VisitedRegs.count(BaseReg)) {
750 Loose();
751 return;
752 }
Dan Gohman9214b822010-02-13 02:06:02 +0000753 RatePrimaryRegister(BaseReg, Regs, L, SE, DT);
Dan Gohman572645c2010-02-12 10:34:29 +0000754
755 NumIVMuls += isa<SCEVMulExpr>(BaseReg) &&
756 BaseReg->hasComputableLoopEvolution(L);
757 }
758
759 if (F.BaseRegs.size() > 1)
760 NumBaseAdds += F.BaseRegs.size() - 1;
761
762 // Tally up the non-zero immediates.
763 for (SmallVectorImpl<int64_t>::const_iterator I = Offsets.begin(),
764 E = Offsets.end(); I != E; ++I) {
765 int64_t Offset = (uint64_t)*I + F.AM.BaseOffs;
766 if (F.AM.BaseGV)
767 ImmCost += 64; // Handle symbolic values conservatively.
768 // TODO: This should probably be the pointer size.
769 else if (Offset != 0)
770 ImmCost += APInt(64, Offset, true).getMinSignedBits();
771 }
772}
773
774/// Loose - Set this cost to a loosing value.
775void Cost::Loose() {
776 NumRegs = ~0u;
777 AddRecCost = ~0u;
778 NumIVMuls = ~0u;
779 NumBaseAdds = ~0u;
780 ImmCost = ~0u;
781 SetupCost = ~0u;
782}
783
784/// operator< - Choose the lower cost.
785bool Cost::operator<(const Cost &Other) const {
786 if (NumRegs != Other.NumRegs)
787 return NumRegs < Other.NumRegs;
788 if (AddRecCost != Other.AddRecCost)
789 return AddRecCost < Other.AddRecCost;
790 if (NumIVMuls != Other.NumIVMuls)
791 return NumIVMuls < Other.NumIVMuls;
792 if (NumBaseAdds != Other.NumBaseAdds)
793 return NumBaseAdds < Other.NumBaseAdds;
794 if (ImmCost != Other.ImmCost)
795 return ImmCost < Other.ImmCost;
796 if (SetupCost != Other.SetupCost)
797 return SetupCost < Other.SetupCost;
798 return false;
799}
800
801void Cost::print(raw_ostream &OS) const {
802 OS << NumRegs << " reg" << (NumRegs == 1 ? "" : "s");
803 if (AddRecCost != 0)
804 OS << ", with addrec cost " << AddRecCost;
805 if (NumIVMuls != 0)
806 OS << ", plus " << NumIVMuls << " IV mul" << (NumIVMuls == 1 ? "" : "s");
807 if (NumBaseAdds != 0)
808 OS << ", plus " << NumBaseAdds << " base add"
809 << (NumBaseAdds == 1 ? "" : "s");
810 if (ImmCost != 0)
811 OS << ", plus " << ImmCost << " imm cost";
812 if (SetupCost != 0)
813 OS << ", plus " << SetupCost << " setup cost";
814}
815
816void Cost::dump() const {
817 print(errs()); errs() << '\n';
818}
819
820namespace {
821
822/// LSRFixup - An operand value in an instruction which is to be replaced
823/// with some equivalent, possibly strength-reduced, replacement.
824struct LSRFixup {
825 /// UserInst - The instruction which will be updated.
826 Instruction *UserInst;
827
828 /// OperandValToReplace - The operand of the instruction which will
829 /// be replaced. The operand may be used more than once; every instance
830 /// will be replaced.
831 Value *OperandValToReplace;
832
Dan Gohman448db1c2010-04-07 22:27:08 +0000833 /// PostIncLoops - If this user is to use the post-incremented value of an
Dan Gohman572645c2010-02-12 10:34:29 +0000834 /// induction variable, this variable is non-null and holds the loop
835 /// associated with the induction variable.
Dan Gohman448db1c2010-04-07 22:27:08 +0000836 PostIncLoopSet PostIncLoops;
Dan Gohman572645c2010-02-12 10:34:29 +0000837
838 /// LUIdx - The index of the LSRUse describing the expression which
839 /// this fixup needs, minus an offset (below).
840 size_t LUIdx;
841
842 /// Offset - A constant offset to be added to the LSRUse expression.
843 /// This allows multiple fixups to share the same LSRUse with different
844 /// offsets, for example in an unrolled loop.
845 int64_t Offset;
846
Dan Gohman448db1c2010-04-07 22:27:08 +0000847 bool isUseFullyOutsideLoop(const Loop *L) const;
848
Dan Gohman572645c2010-02-12 10:34:29 +0000849 LSRFixup();
850
851 void print(raw_ostream &OS) const;
852 void dump() const;
853};
854
855}
856
857LSRFixup::LSRFixup()
Dan Gohmanea507f52010-05-20 19:44:23 +0000858 : UserInst(0), OperandValToReplace(0), LUIdx(~size_t(0)), Offset(0) {}
Dan Gohman572645c2010-02-12 10:34:29 +0000859
Dan Gohman448db1c2010-04-07 22:27:08 +0000860/// isUseFullyOutsideLoop - Test whether this fixup always uses its
861/// value outside of the given loop.
862bool LSRFixup::isUseFullyOutsideLoop(const Loop *L) const {
863 // PHI nodes use their value in their incoming blocks.
864 if (const PHINode *PN = dyn_cast<PHINode>(UserInst)) {
865 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
866 if (PN->getIncomingValue(i) == OperandValToReplace &&
867 L->contains(PN->getIncomingBlock(i)))
868 return false;
869 return true;
870 }
871
872 return !L->contains(UserInst);
873}
874
Dan Gohman572645c2010-02-12 10:34:29 +0000875void LSRFixup::print(raw_ostream &OS) const {
876 OS << "UserInst=";
877 // Store is common and interesting enough to be worth special-casing.
878 if (StoreInst *Store = dyn_cast<StoreInst>(UserInst)) {
879 OS << "store ";
880 WriteAsOperand(OS, Store->getOperand(0), /*PrintType=*/false);
881 } else if (UserInst->getType()->isVoidTy())
882 OS << UserInst->getOpcodeName();
883 else
884 WriteAsOperand(OS, UserInst, /*PrintType=*/false);
885
886 OS << ", OperandValToReplace=";
887 WriteAsOperand(OS, OperandValToReplace, /*PrintType=*/false);
888
Dan Gohman448db1c2010-04-07 22:27:08 +0000889 for (PostIncLoopSet::const_iterator I = PostIncLoops.begin(),
890 E = PostIncLoops.end(); I != E; ++I) {
Dan Gohman572645c2010-02-12 10:34:29 +0000891 OS << ", PostIncLoop=";
Dan Gohman448db1c2010-04-07 22:27:08 +0000892 WriteAsOperand(OS, (*I)->getHeader(), /*PrintType=*/false);
Dan Gohman572645c2010-02-12 10:34:29 +0000893 }
894
895 if (LUIdx != ~size_t(0))
896 OS << ", LUIdx=" << LUIdx;
897
898 if (Offset != 0)
899 OS << ", Offset=" << Offset;
900}
901
902void LSRFixup::dump() const {
903 print(errs()); errs() << '\n';
904}
905
906namespace {
907
908/// UniquifierDenseMapInfo - A DenseMapInfo implementation for holding
909/// DenseMaps and DenseSets of sorted SmallVectors of const SCEV*.
910struct UniquifierDenseMapInfo {
911 static SmallVector<const SCEV *, 2> getEmptyKey() {
912 SmallVector<const SCEV *, 2> V;
913 V.push_back(reinterpret_cast<const SCEV *>(-1));
914 return V;
915 }
916
917 static SmallVector<const SCEV *, 2> getTombstoneKey() {
918 SmallVector<const SCEV *, 2> V;
919 V.push_back(reinterpret_cast<const SCEV *>(-2));
920 return V;
921 }
922
923 static unsigned getHashValue(const SmallVector<const SCEV *, 2> &V) {
924 unsigned Result = 0;
925 for (SmallVectorImpl<const SCEV *>::const_iterator I = V.begin(),
926 E = V.end(); I != E; ++I)
927 Result ^= DenseMapInfo<const SCEV *>::getHashValue(*I);
928 return Result;
929 }
930
931 static bool isEqual(const SmallVector<const SCEV *, 2> &LHS,
932 const SmallVector<const SCEV *, 2> &RHS) {
933 return LHS == RHS;
934 }
935};
936
937/// LSRUse - This class holds the state that LSR keeps for each use in
938/// IVUsers, as well as uses invented by LSR itself. It includes information
939/// about what kinds of things can be folded into the user, information about
940/// the user itself, and information about how the use may be satisfied.
941/// TODO: Represent multiple users of the same expression in common?
942class LSRUse {
943 DenseSet<SmallVector<const SCEV *, 2>, UniquifierDenseMapInfo> Uniquifier;
944
945public:
946 /// KindType - An enum for a kind of use, indicating what types of
947 /// scaled and immediate operands it might support.
948 enum KindType {
949 Basic, ///< A normal use, with no folding.
950 Special, ///< A special case of basic, allowing -1 scales.
951 Address, ///< An address use; folding according to TargetLowering
952 ICmpZero ///< An equality icmp with both operands folded into one.
953 // TODO: Add a generic icmp too?
Dan Gohman7979b722010-01-22 00:46:49 +0000954 };
Dan Gohman572645c2010-02-12 10:34:29 +0000955
956 KindType Kind;
957 const Type *AccessTy;
958
959 SmallVector<int64_t, 8> Offsets;
960 int64_t MinOffset;
961 int64_t MaxOffset;
962
963 /// AllFixupsOutsideLoop - This records whether all of the fixups using this
964 /// LSRUse are outside of the loop, in which case some special-case heuristics
965 /// may be used.
966 bool AllFixupsOutsideLoop;
967
Dan Gohmana9db1292010-07-15 20:24:58 +0000968 /// WidestFixupType - This records the widest use type for any fixup using
969 /// this LSRUse. FindUseWithSimilarFormula can't consider uses with different
970 /// max fixup widths to be equivalent, because the narrower one may be relying
971 /// on the implicit truncation to truncate away bogus bits.
972 const Type *WidestFixupType;
973
Dan Gohman572645c2010-02-12 10:34:29 +0000974 /// Formulae - A list of ways to build a value that can satisfy this user.
975 /// After the list is populated, one of these is selected heuristically and
976 /// used to formulate a replacement for OperandValToReplace in UserInst.
977 SmallVector<Formula, 12> Formulae;
978
979 /// Regs - The set of register candidates used by all formulae in this LSRUse.
980 SmallPtrSet<const SCEV *, 4> Regs;
981
982 LSRUse(KindType K, const Type *T) : Kind(K), AccessTy(T),
983 MinOffset(INT64_MAX),
984 MaxOffset(INT64_MIN),
Dan Gohmana9db1292010-07-15 20:24:58 +0000985 AllFixupsOutsideLoop(true),
986 WidestFixupType(0) {}
Dan Gohman572645c2010-02-12 10:34:29 +0000987
Dan Gohmana2086b32010-05-19 23:43:12 +0000988 bool HasFormulaWithSameRegs(const Formula &F) const;
Dan Gohman454d26d2010-02-22 04:11:59 +0000989 bool InsertFormula(const Formula &F);
Dan Gohmand69d6282010-05-18 22:39:15 +0000990 void DeleteFormula(Formula &F);
Dan Gohmanb2df4332010-05-18 23:42:37 +0000991 void RecomputeRegs(size_t LUIdx, RegUseTracker &Reguses);
Dan Gohman572645c2010-02-12 10:34:29 +0000992
993 void check() const;
994
995 void print(raw_ostream &OS) const;
996 void dump() const;
997};
998
Dan Gohmanb6211712010-06-19 21:21:39 +0000999}
1000
Dan Gohmana2086b32010-05-19 23:43:12 +00001001/// HasFormula - Test whether this use as a formula which has the same
1002/// registers as the given formula.
1003bool LSRUse::HasFormulaWithSameRegs(const Formula &F) const {
1004 SmallVector<const SCEV *, 2> Key = F.BaseRegs;
1005 if (F.ScaledReg) Key.push_back(F.ScaledReg);
1006 // Unstable sort by host order ok, because this is only used for uniquifying.
1007 std::sort(Key.begin(), Key.end());
1008 return Uniquifier.count(Key);
1009}
1010
Dan Gohman572645c2010-02-12 10:34:29 +00001011/// InsertFormula - If the given formula has not yet been inserted, add it to
1012/// the list, and return true. Return false otherwise.
Dan Gohman454d26d2010-02-22 04:11:59 +00001013bool LSRUse::InsertFormula(const Formula &F) {
Dan Gohman572645c2010-02-12 10:34:29 +00001014 SmallVector<const SCEV *, 2> Key = F.BaseRegs;
1015 if (F.ScaledReg) Key.push_back(F.ScaledReg);
1016 // Unstable sort by host order ok, because this is only used for uniquifying.
1017 std::sort(Key.begin(), Key.end());
1018
1019 if (!Uniquifier.insert(Key).second)
1020 return false;
1021
1022 // Using a register to hold the value of 0 is not profitable.
1023 assert((!F.ScaledReg || !F.ScaledReg->isZero()) &&
1024 "Zero allocated in a scaled register!");
1025#ifndef NDEBUG
1026 for (SmallVectorImpl<const SCEV *>::const_iterator I =
1027 F.BaseRegs.begin(), E = F.BaseRegs.end(); I != E; ++I)
1028 assert(!(*I)->isZero() && "Zero allocated in a base register!");
1029#endif
1030
1031 // Add the formula to the list.
1032 Formulae.push_back(F);
1033
1034 // Record registers now being used by this use.
1035 if (F.ScaledReg) Regs.insert(F.ScaledReg);
1036 Regs.insert(F.BaseRegs.begin(), F.BaseRegs.end());
1037
1038 return true;
Dan Gohman7979b722010-01-22 00:46:49 +00001039}
1040
Dan Gohmand69d6282010-05-18 22:39:15 +00001041/// DeleteFormula - Remove the given formula from this use's list.
1042void LSRUse::DeleteFormula(Formula &F) {
Dan Gohman5ce6d052010-05-20 15:17:54 +00001043 if (&F != &Formulae.back())
1044 std::swap(F, Formulae.back());
Dan Gohmand69d6282010-05-18 22:39:15 +00001045 Formulae.pop_back();
Dan Gohmana2086b32010-05-19 23:43:12 +00001046 assert(!Formulae.empty() && "LSRUse has no formulae left!");
Dan Gohmand69d6282010-05-18 22:39:15 +00001047}
1048
Dan Gohmanb2df4332010-05-18 23:42:37 +00001049/// RecomputeRegs - Recompute the Regs field, and update RegUses.
1050void LSRUse::RecomputeRegs(size_t LUIdx, RegUseTracker &RegUses) {
1051 // Now that we've filtered out some formulae, recompute the Regs set.
1052 SmallPtrSet<const SCEV *, 4> OldRegs = Regs;
1053 Regs.clear();
Dan Gohman402d4352010-05-20 20:33:18 +00001054 for (SmallVectorImpl<Formula>::const_iterator I = Formulae.begin(),
1055 E = Formulae.end(); I != E; ++I) {
1056 const Formula &F = *I;
Dan Gohmanb2df4332010-05-18 23:42:37 +00001057 if (F.ScaledReg) Regs.insert(F.ScaledReg);
1058 Regs.insert(F.BaseRegs.begin(), F.BaseRegs.end());
1059 }
1060
1061 // Update the RegTracker.
1062 for (SmallPtrSet<const SCEV *, 4>::iterator I = OldRegs.begin(),
1063 E = OldRegs.end(); I != E; ++I)
1064 if (!Regs.count(*I))
1065 RegUses.DropRegister(*I, LUIdx);
1066}
1067
Dan Gohman572645c2010-02-12 10:34:29 +00001068void LSRUse::print(raw_ostream &OS) const {
1069 OS << "LSR Use: Kind=";
1070 switch (Kind) {
1071 case Basic: OS << "Basic"; break;
1072 case Special: OS << "Special"; break;
1073 case ICmpZero: OS << "ICmpZero"; break;
1074 case Address:
1075 OS << "Address of ";
Duncan Sands1df98592010-02-16 11:11:14 +00001076 if (AccessTy->isPointerTy())
Dan Gohman572645c2010-02-12 10:34:29 +00001077 OS << "pointer"; // the full pointer type could be really verbose
1078 else
1079 OS << *AccessTy;
Evan Chengcdf43b12007-10-25 09:11:16 +00001080 }
1081
Dan Gohman572645c2010-02-12 10:34:29 +00001082 OS << ", Offsets={";
1083 for (SmallVectorImpl<int64_t>::const_iterator I = Offsets.begin(),
1084 E = Offsets.end(); I != E; ++I) {
1085 OS << *I;
1086 if (next(I) != E)
1087 OS << ',';
Dan Gohman7979b722010-01-22 00:46:49 +00001088 }
Dan Gohman572645c2010-02-12 10:34:29 +00001089 OS << '}';
Dan Gohman7979b722010-01-22 00:46:49 +00001090
Dan Gohman572645c2010-02-12 10:34:29 +00001091 if (AllFixupsOutsideLoop)
1092 OS << ", all-fixups-outside-loop";
Dan Gohmana9db1292010-07-15 20:24:58 +00001093
1094 if (WidestFixupType)
1095 OS << ", widest fixup type: " << *WidestFixupType;
Dan Gohman7979b722010-01-22 00:46:49 +00001096}
1097
Dan Gohman572645c2010-02-12 10:34:29 +00001098void LSRUse::dump() const {
1099 print(errs()); errs() << '\n';
1100}
Dan Gohman7979b722010-01-22 00:46:49 +00001101
Dan Gohman572645c2010-02-12 10:34:29 +00001102/// isLegalUse - Test whether the use described by AM is "legal", meaning it can
1103/// be completely folded into the user instruction at isel time. This includes
1104/// address-mode folding and special icmp tricks.
1105static bool isLegalUse(const TargetLowering::AddrMode &AM,
1106 LSRUse::KindType Kind, const Type *AccessTy,
1107 const TargetLowering *TLI) {
1108 switch (Kind) {
1109 case LSRUse::Address:
1110 // If we have low-level target information, ask the target if it can
1111 // completely fold this address.
1112 if (TLI) return TLI->isLegalAddressingMode(AM, AccessTy);
1113
1114 // Otherwise, just guess that reg+reg addressing is legal.
1115 return !AM.BaseGV && AM.BaseOffs == 0 && AM.Scale <= 1;
1116
1117 case LSRUse::ICmpZero:
1118 // There's not even a target hook for querying whether it would be legal to
1119 // fold a GV into an ICmp.
1120 if (AM.BaseGV)
1121 return false;
1122
1123 // ICmp only has two operands; don't allow more than two non-trivial parts.
1124 if (AM.Scale != 0 && AM.HasBaseReg && AM.BaseOffs != 0)
1125 return false;
1126
1127 // ICmp only supports no scale or a -1 scale, as we can "fold" a -1 scale by
1128 // putting the scaled register in the other operand of the icmp.
1129 if (AM.Scale != 0 && AM.Scale != -1)
1130 return false;
1131
1132 // If we have low-level target information, ask the target if it can fold an
1133 // integer immediate on an icmp.
1134 if (AM.BaseOffs != 0) {
1135 if (TLI) return TLI->isLegalICmpImmediate(-AM.BaseOffs);
1136 return false;
Dan Gohman7979b722010-01-22 00:46:49 +00001137 }
Dan Gohman572645c2010-02-12 10:34:29 +00001138
1139 return true;
1140
1141 case LSRUse::Basic:
1142 // Only handle single-register values.
1143 return !AM.BaseGV && AM.Scale == 0 && AM.BaseOffs == 0;
1144
1145 case LSRUse::Special:
1146 // Only handle -1 scales, or no scale.
1147 return AM.Scale == 0 || AM.Scale == -1;
Dan Gohman7979b722010-01-22 00:46:49 +00001148 }
1149
Dan Gohman7979b722010-01-22 00:46:49 +00001150 return false;
1151}
1152
Dan Gohman572645c2010-02-12 10:34:29 +00001153static bool isLegalUse(TargetLowering::AddrMode AM,
1154 int64_t MinOffset, int64_t MaxOffset,
1155 LSRUse::KindType Kind, const Type *AccessTy,
1156 const TargetLowering *TLI) {
1157 // Check for overflow.
1158 if (((int64_t)((uint64_t)AM.BaseOffs + MinOffset) > AM.BaseOffs) !=
1159 (MinOffset > 0))
1160 return false;
1161 AM.BaseOffs = (uint64_t)AM.BaseOffs + MinOffset;
1162 if (isLegalUse(AM, Kind, AccessTy, TLI)) {
1163 AM.BaseOffs = (uint64_t)AM.BaseOffs - MinOffset;
1164 // Check for overflow.
1165 if (((int64_t)((uint64_t)AM.BaseOffs + MaxOffset) > AM.BaseOffs) !=
1166 (MaxOffset > 0))
1167 return false;
1168 AM.BaseOffs = (uint64_t)AM.BaseOffs + MaxOffset;
1169 return isLegalUse(AM, Kind, AccessTy, TLI);
Dan Gohman7979b722010-01-22 00:46:49 +00001170 }
Dan Gohman572645c2010-02-12 10:34:29 +00001171 return false;
Dan Gohman7979b722010-01-22 00:46:49 +00001172}
1173
Dan Gohman572645c2010-02-12 10:34:29 +00001174static bool isAlwaysFoldable(int64_t BaseOffs,
1175 GlobalValue *BaseGV,
1176 bool HasBaseReg,
1177 LSRUse::KindType Kind, const Type *AccessTy,
Dan Gohman454d26d2010-02-22 04:11:59 +00001178 const TargetLowering *TLI) {
Dan Gohman572645c2010-02-12 10:34:29 +00001179 // Fast-path: zero is always foldable.
1180 if (BaseOffs == 0 && !BaseGV) return true;
Dan Gohman7979b722010-01-22 00:46:49 +00001181
Dan Gohman572645c2010-02-12 10:34:29 +00001182 // Conservatively, create an address with an immediate and a
1183 // base and a scale.
1184 TargetLowering::AddrMode AM;
1185 AM.BaseOffs = BaseOffs;
1186 AM.BaseGV = BaseGV;
1187 AM.HasBaseReg = HasBaseReg;
1188 AM.Scale = Kind == LSRUse::ICmpZero ? -1 : 1;
Dan Gohman7979b722010-01-22 00:46:49 +00001189
Dan Gohmana2086b32010-05-19 23:43:12 +00001190 // Canonicalize a scale of 1 to a base register if the formula doesn't
1191 // already have a base register.
1192 if (!AM.HasBaseReg && AM.Scale == 1) {
1193 AM.Scale = 0;
1194 AM.HasBaseReg = true;
1195 }
1196
Dan Gohman572645c2010-02-12 10:34:29 +00001197 return isLegalUse(AM, Kind, AccessTy, TLI);
Dan Gohman7979b722010-01-22 00:46:49 +00001198}
1199
Dan Gohman572645c2010-02-12 10:34:29 +00001200static bool isAlwaysFoldable(const SCEV *S,
1201 int64_t MinOffset, int64_t MaxOffset,
1202 bool HasBaseReg,
1203 LSRUse::KindType Kind, const Type *AccessTy,
1204 const TargetLowering *TLI,
1205 ScalarEvolution &SE) {
1206 // Fast-path: zero is always foldable.
1207 if (S->isZero()) return true;
1208
1209 // Conservatively, create an address with an immediate and a
1210 // base and a scale.
1211 int64_t BaseOffs = ExtractImmediate(S, SE);
1212 GlobalValue *BaseGV = ExtractSymbol(S, SE);
1213
1214 // If there's anything else involved, it's not foldable.
1215 if (!S->isZero()) return false;
1216
1217 // Fast-path: zero is always foldable.
1218 if (BaseOffs == 0 && !BaseGV) return true;
1219
1220 // Conservatively, create an address with an immediate and a
1221 // base and a scale.
1222 TargetLowering::AddrMode AM;
1223 AM.BaseOffs = BaseOffs;
1224 AM.BaseGV = BaseGV;
1225 AM.HasBaseReg = HasBaseReg;
1226 AM.Scale = Kind == LSRUse::ICmpZero ? -1 : 1;
1227
1228 return isLegalUse(AM, MinOffset, MaxOffset, Kind, AccessTy, TLI);
Dan Gohman7979b722010-01-22 00:46:49 +00001229}
1230
Dan Gohmanb6211712010-06-19 21:21:39 +00001231namespace {
1232
Dan Gohman1e3121c2010-06-19 21:29:59 +00001233/// UseMapDenseMapInfo - A DenseMapInfo implementation for holding
1234/// DenseMaps and DenseSets of pairs of const SCEV* and LSRUse::Kind.
1235struct UseMapDenseMapInfo {
1236 static std::pair<const SCEV *, LSRUse::KindType> getEmptyKey() {
1237 return std::make_pair(reinterpret_cast<const SCEV *>(-1), LSRUse::Basic);
1238 }
1239
1240 static std::pair<const SCEV *, LSRUse::KindType> getTombstoneKey() {
1241 return std::make_pair(reinterpret_cast<const SCEV *>(-2), LSRUse::Basic);
1242 }
1243
1244 static unsigned
1245 getHashValue(const std::pair<const SCEV *, LSRUse::KindType> &V) {
1246 unsigned Result = DenseMapInfo<const SCEV *>::getHashValue(V.first);
1247 Result ^= DenseMapInfo<unsigned>::getHashValue(unsigned(V.second));
1248 return Result;
1249 }
1250
1251 static bool isEqual(const std::pair<const SCEV *, LSRUse::KindType> &LHS,
1252 const std::pair<const SCEV *, LSRUse::KindType> &RHS) {
1253 return LHS == RHS;
1254 }
1255};
1256
Dan Gohman572645c2010-02-12 10:34:29 +00001257/// FormulaSorter - This class implements an ordering for formulae which sorts
1258/// the by their standalone cost.
1259class FormulaSorter {
1260 /// These two sets are kept empty, so that we compute standalone costs.
1261 DenseSet<const SCEV *> VisitedRegs;
1262 SmallPtrSet<const SCEV *, 16> Regs;
1263 Loop *L;
1264 LSRUse *LU;
1265 ScalarEvolution &SE;
1266 DominatorTree &DT;
1267
1268public:
1269 FormulaSorter(Loop *l, LSRUse &lu, ScalarEvolution &se, DominatorTree &dt)
1270 : L(l), LU(&lu), SE(se), DT(dt) {}
1271
1272 bool operator()(const Formula &A, const Formula &B) {
1273 Cost CostA;
1274 CostA.RateFormula(A, Regs, VisitedRegs, L, LU->Offsets, SE, DT);
1275 Regs.clear();
1276 Cost CostB;
1277 CostB.RateFormula(B, Regs, VisitedRegs, L, LU->Offsets, SE, DT);
1278 Regs.clear();
1279 return CostA < CostB;
1280 }
1281};
1282
1283/// LSRInstance - This class holds state for the main loop strength reduction
1284/// logic.
1285class LSRInstance {
1286 IVUsers &IU;
1287 ScalarEvolution &SE;
1288 DominatorTree &DT;
Dan Gohmane5f76872010-04-09 22:07:05 +00001289 LoopInfo &LI;
Dan Gohman572645c2010-02-12 10:34:29 +00001290 const TargetLowering *const TLI;
1291 Loop *const L;
1292 bool Changed;
1293
1294 /// IVIncInsertPos - This is the insert position that the current loop's
1295 /// induction variable increment should be placed. In simple loops, this is
1296 /// the latch block's terminator. But in more complicated cases, this is a
1297 /// position which will dominate all the in-loop post-increment users.
1298 Instruction *IVIncInsertPos;
1299
1300 /// Factors - Interesting factors between use strides.
1301 SmallSetVector<int64_t, 8> Factors;
1302
1303 /// Types - Interesting use types, to facilitate truncation reuse.
1304 SmallSetVector<const Type *, 4> Types;
1305
1306 /// Fixups - The list of operands which are to be replaced.
1307 SmallVector<LSRFixup, 16> Fixups;
1308
1309 /// Uses - The list of interesting uses.
1310 SmallVector<LSRUse, 16> Uses;
1311
1312 /// RegUses - Track which uses use which register candidates.
1313 RegUseTracker RegUses;
1314
1315 void OptimizeShadowIV();
1316 bool FindIVUserForCond(ICmpInst *Cond, IVStrideUse *&CondUse);
1317 ICmpInst *OptimizeMax(ICmpInst *Cond, IVStrideUse* &CondUse);
Dan Gohmanc6519f92010-05-20 20:05:31 +00001318 void OptimizeLoopTermCond();
Dan Gohman572645c2010-02-12 10:34:29 +00001319
1320 void CollectInterestingTypesAndFactors();
1321 void CollectFixupsAndInitialFormulae();
1322
1323 LSRFixup &getNewFixup() {
1324 Fixups.push_back(LSRFixup());
1325 return Fixups.back();
1326 }
1327
1328 // Support for sharing of LSRUses between LSRFixups.
Dan Gohman1e3121c2010-06-19 21:29:59 +00001329 typedef DenseMap<std::pair<const SCEV *, LSRUse::KindType>,
1330 size_t,
1331 UseMapDenseMapInfo> UseMapTy;
Dan Gohman572645c2010-02-12 10:34:29 +00001332 UseMapTy UseMap;
1333
Dan Gohmanea507f52010-05-20 19:44:23 +00001334 bool reconcileNewOffset(LSRUse &LU, int64_t NewOffset, bool HasBaseReg,
Dan Gohman572645c2010-02-12 10:34:29 +00001335 LSRUse::KindType Kind, const Type *AccessTy);
1336
1337 std::pair<size_t, int64_t> getUse(const SCEV *&Expr,
1338 LSRUse::KindType Kind,
1339 const Type *AccessTy);
1340
Dan Gohman5ce6d052010-05-20 15:17:54 +00001341 void DeleteUse(LSRUse &LU);
1342
Dan Gohmana2086b32010-05-19 23:43:12 +00001343 LSRUse *FindUseWithSimilarFormula(const Formula &F, const LSRUse &OrigLU);
1344
Dan Gohman572645c2010-02-12 10:34:29 +00001345public:
Dan Gohman454d26d2010-02-22 04:11:59 +00001346 void InsertInitialFormula(const SCEV *S, LSRUse &LU, size_t LUIdx);
Dan Gohman572645c2010-02-12 10:34:29 +00001347 void InsertSupplementalFormula(const SCEV *S, LSRUse &LU, size_t LUIdx);
1348 void CountRegisters(const Formula &F, size_t LUIdx);
1349 bool InsertFormula(LSRUse &LU, unsigned LUIdx, const Formula &F);
1350
1351 void CollectLoopInvariantFixupsAndFormulae();
1352
1353 void GenerateReassociations(LSRUse &LU, unsigned LUIdx, Formula Base,
1354 unsigned Depth = 0);
1355 void GenerateCombinations(LSRUse &LU, unsigned LUIdx, Formula Base);
1356 void GenerateSymbolicOffsets(LSRUse &LU, unsigned LUIdx, Formula Base);
1357 void GenerateConstantOffsets(LSRUse &LU, unsigned LUIdx, Formula Base);
1358 void GenerateICmpZeroScales(LSRUse &LU, unsigned LUIdx, Formula Base);
1359 void GenerateScales(LSRUse &LU, unsigned LUIdx, Formula Base);
1360 void GenerateTruncates(LSRUse &LU, unsigned LUIdx, Formula Base);
1361 void GenerateCrossUseConstantOffsets();
1362 void GenerateAllReuseFormulae();
1363
1364 void FilterOutUndesirableDedicatedRegisters();
Dan Gohmand079c302010-05-18 22:51:59 +00001365
1366 size_t EstimateSearchSpaceComplexity() const;
Dan Gohman572645c2010-02-12 10:34:29 +00001367 void NarrowSearchSpaceUsingHeuristics();
1368
1369 void SolveRecurse(SmallVectorImpl<const Formula *> &Solution,
1370 Cost &SolutionCost,
1371 SmallVectorImpl<const Formula *> &Workspace,
1372 const Cost &CurCost,
1373 const SmallPtrSet<const SCEV *, 16> &CurRegs,
1374 DenseSet<const SCEV *> &VisitedRegs) const;
1375 void Solve(SmallVectorImpl<const Formula *> &Solution) const;
1376
Dan Gohmane5f76872010-04-09 22:07:05 +00001377 BasicBlock::iterator
1378 HoistInsertPosition(BasicBlock::iterator IP,
1379 const SmallVectorImpl<Instruction *> &Inputs) const;
1380 BasicBlock::iterator AdjustInsertPositionForExpand(BasicBlock::iterator IP,
1381 const LSRFixup &LF,
1382 const LSRUse &LU) const;
Dan Gohmand96eae82010-04-09 02:00:38 +00001383
Dan Gohman572645c2010-02-12 10:34:29 +00001384 Value *Expand(const LSRFixup &LF,
1385 const Formula &F,
Dan Gohman454d26d2010-02-22 04:11:59 +00001386 BasicBlock::iterator IP,
Dan Gohman572645c2010-02-12 10:34:29 +00001387 SCEVExpander &Rewriter,
Dan Gohman454d26d2010-02-22 04:11:59 +00001388 SmallVectorImpl<WeakVH> &DeadInsts) const;
Dan Gohman3a02cbc2010-02-16 20:25:07 +00001389 void RewriteForPHI(PHINode *PN, const LSRFixup &LF,
1390 const Formula &F,
Dan Gohman3a02cbc2010-02-16 20:25:07 +00001391 SCEVExpander &Rewriter,
1392 SmallVectorImpl<WeakVH> &DeadInsts,
Dan Gohman3a02cbc2010-02-16 20:25:07 +00001393 Pass *P) const;
Dan Gohman572645c2010-02-12 10:34:29 +00001394 void Rewrite(const LSRFixup &LF,
1395 const Formula &F,
Dan Gohman572645c2010-02-12 10:34:29 +00001396 SCEVExpander &Rewriter,
1397 SmallVectorImpl<WeakVH> &DeadInsts,
Dan Gohman572645c2010-02-12 10:34:29 +00001398 Pass *P) const;
1399 void ImplementSolution(const SmallVectorImpl<const Formula *> &Solution,
1400 Pass *P);
1401
1402 LSRInstance(const TargetLowering *tli, Loop *l, Pass *P);
1403
1404 bool getChanged() const { return Changed; }
1405
1406 void print_factors_and_types(raw_ostream &OS) const;
1407 void print_fixups(raw_ostream &OS) const;
1408 void print_uses(raw_ostream &OS) const;
1409 void print(raw_ostream &OS) const;
1410 void dump() const;
1411};
1412
1413}
1414
1415/// OptimizeShadowIV - If IV is used in a int-to-float cast
Dan Gohman3f46a3a2010-03-01 17:49:51 +00001416/// inside the loop then try to eliminate the cast operation.
Dan Gohman572645c2010-02-12 10:34:29 +00001417void LSRInstance::OptimizeShadowIV() {
1418 const SCEV *BackedgeTakenCount = SE.getBackedgeTakenCount(L);
1419 if (isa<SCEVCouldNotCompute>(BackedgeTakenCount))
1420 return;
1421
1422 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end();
1423 UI != E; /* empty */) {
1424 IVUsers::const_iterator CandidateUI = UI;
1425 ++UI;
1426 Instruction *ShadowUse = CandidateUI->getUser();
1427 const Type *DestTy = NULL;
1428
1429 /* If shadow use is a int->float cast then insert a second IV
1430 to eliminate this cast.
1431
1432 for (unsigned i = 0; i < n; ++i)
1433 foo((double)i);
1434
1435 is transformed into
1436
1437 double d = 0.0;
1438 for (unsigned i = 0; i < n; ++i, ++d)
1439 foo(d);
1440 */
1441 if (UIToFPInst *UCast = dyn_cast<UIToFPInst>(CandidateUI->getUser()))
1442 DestTy = UCast->getDestTy();
1443 else if (SIToFPInst *SCast = dyn_cast<SIToFPInst>(CandidateUI->getUser()))
1444 DestTy = SCast->getDestTy();
1445 if (!DestTy) continue;
1446
1447 if (TLI) {
1448 // If target does not support DestTy natively then do not apply
1449 // this transformation.
1450 EVT DVT = TLI->getValueType(DestTy);
1451 if (!TLI->isTypeLegal(DVT)) continue;
1452 }
1453
1454 PHINode *PH = dyn_cast<PHINode>(ShadowUse->getOperand(0));
1455 if (!PH) continue;
1456 if (PH->getNumIncomingValues() != 2) continue;
1457
1458 const Type *SrcTy = PH->getType();
1459 int Mantissa = DestTy->getFPMantissaWidth();
1460 if (Mantissa == -1) continue;
1461 if ((int)SE.getTypeSizeInBits(SrcTy) > Mantissa)
1462 continue;
1463
1464 unsigned Entry, Latch;
1465 if (PH->getIncomingBlock(0) == L->getLoopPreheader()) {
1466 Entry = 0;
1467 Latch = 1;
Dan Gohman7979b722010-01-22 00:46:49 +00001468 } else {
Dan Gohman572645c2010-02-12 10:34:29 +00001469 Entry = 1;
1470 Latch = 0;
Dan Gohman7979b722010-01-22 00:46:49 +00001471 }
Dan Gohman7979b722010-01-22 00:46:49 +00001472
Dan Gohman572645c2010-02-12 10:34:29 +00001473 ConstantInt *Init = dyn_cast<ConstantInt>(PH->getIncomingValue(Entry));
1474 if (!Init) continue;
1475 Constant *NewInit = ConstantFP::get(DestTy, Init->getZExtValue());
Dan Gohman7979b722010-01-22 00:46:49 +00001476
Dan Gohman572645c2010-02-12 10:34:29 +00001477 BinaryOperator *Incr =
1478 dyn_cast<BinaryOperator>(PH->getIncomingValue(Latch));
1479 if (!Incr) continue;
1480 if (Incr->getOpcode() != Instruction::Add
1481 && Incr->getOpcode() != Instruction::Sub)
Dan Gohman7979b722010-01-22 00:46:49 +00001482 continue;
Dan Gohman7979b722010-01-22 00:46:49 +00001483
Dan Gohman572645c2010-02-12 10:34:29 +00001484 /* Initialize new IV, double d = 0.0 in above example. */
1485 ConstantInt *C = NULL;
1486 if (Incr->getOperand(0) == PH)
1487 C = dyn_cast<ConstantInt>(Incr->getOperand(1));
1488 else if (Incr->getOperand(1) == PH)
1489 C = dyn_cast<ConstantInt>(Incr->getOperand(0));
Dan Gohman7979b722010-01-22 00:46:49 +00001490 else
Dan Gohman7979b722010-01-22 00:46:49 +00001491 continue;
1492
Dan Gohman572645c2010-02-12 10:34:29 +00001493 if (!C) continue;
Dan Gohman7979b722010-01-22 00:46:49 +00001494
Dan Gohman572645c2010-02-12 10:34:29 +00001495 // Ignore negative constants, as the code below doesn't handle them
1496 // correctly. TODO: Remove this restriction.
1497 if (!C->getValue().isStrictlyPositive()) continue;
Dan Gohman7979b722010-01-22 00:46:49 +00001498
Dan Gohman572645c2010-02-12 10:34:29 +00001499 /* Add new PHINode. */
1500 PHINode *NewPH = PHINode::Create(DestTy, "IV.S.", PH);
Dan Gohman7979b722010-01-22 00:46:49 +00001501
Dan Gohman572645c2010-02-12 10:34:29 +00001502 /* create new increment. '++d' in above example. */
1503 Constant *CFP = ConstantFP::get(DestTy, C->getZExtValue());
1504 BinaryOperator *NewIncr =
1505 BinaryOperator::Create(Incr->getOpcode() == Instruction::Add ?
1506 Instruction::FAdd : Instruction::FSub,
1507 NewPH, CFP, "IV.S.next.", Incr);
Dan Gohman7979b722010-01-22 00:46:49 +00001508
Dan Gohman572645c2010-02-12 10:34:29 +00001509 NewPH->addIncoming(NewInit, PH->getIncomingBlock(Entry));
1510 NewPH->addIncoming(NewIncr, PH->getIncomingBlock(Latch));
Dan Gohman7979b722010-01-22 00:46:49 +00001511
Dan Gohman572645c2010-02-12 10:34:29 +00001512 /* Remove cast operation */
1513 ShadowUse->replaceAllUsesWith(NewPH);
1514 ShadowUse->eraseFromParent();
Dan Gohmanc6519f92010-05-20 20:05:31 +00001515 Changed = true;
Dan Gohman572645c2010-02-12 10:34:29 +00001516 break;
Dan Gohman7979b722010-01-22 00:46:49 +00001517 }
1518}
1519
1520/// FindIVUserForCond - If Cond has an operand that is an expression of an IV,
1521/// set the IV user and stride information and return true, otherwise return
1522/// false.
Dan Gohmanea507f52010-05-20 19:44:23 +00001523bool LSRInstance::FindIVUserForCond(ICmpInst *Cond, IVStrideUse *&CondUse) {
Dan Gohman572645c2010-02-12 10:34:29 +00001524 for (IVUsers::iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI)
1525 if (UI->getUser() == Cond) {
1526 // NOTE: we could handle setcc instructions with multiple uses here, but
1527 // InstCombine does it as well for simple uses, it's not clear that it
1528 // occurs enough in real life to handle.
1529 CondUse = UI;
1530 return true;
1531 }
Dan Gohman7979b722010-01-22 00:46:49 +00001532 return false;
Evan Chengcdf43b12007-10-25 09:11:16 +00001533}
1534
Dan Gohman7979b722010-01-22 00:46:49 +00001535/// OptimizeMax - Rewrite the loop's terminating condition if it uses
1536/// a max computation.
1537///
1538/// This is a narrow solution to a specific, but acute, problem. For loops
1539/// like this:
1540///
1541/// i = 0;
1542/// do {
1543/// p[i] = 0.0;
1544/// } while (++i < n);
1545///
1546/// the trip count isn't just 'n', because 'n' might not be positive. And
1547/// unfortunately this can come up even for loops where the user didn't use
1548/// a C do-while loop. For example, seemingly well-behaved top-test loops
1549/// will commonly be lowered like this:
1550//
1551/// if (n > 0) {
1552/// i = 0;
1553/// do {
1554/// p[i] = 0.0;
1555/// } while (++i < n);
1556/// }
1557///
1558/// and then it's possible for subsequent optimization to obscure the if
1559/// test in such a way that indvars can't find it.
1560///
1561/// When indvars can't find the if test in loops like this, it creates a
1562/// max expression, which allows it to give the loop a canonical
1563/// induction variable:
1564///
1565/// i = 0;
1566/// max = n < 1 ? 1 : n;
1567/// do {
1568/// p[i] = 0.0;
1569/// } while (++i != max);
1570///
1571/// Canonical induction variables are necessary because the loop passes
1572/// are designed around them. The most obvious example of this is the
1573/// LoopInfo analysis, which doesn't remember trip count values. It
1574/// expects to be able to rediscover the trip count each time it is
Dan Gohman572645c2010-02-12 10:34:29 +00001575/// needed, and it does this using a simple analysis that only succeeds if
Dan Gohman7979b722010-01-22 00:46:49 +00001576/// the loop has a canonical induction variable.
1577///
1578/// However, when it comes time to generate code, the maximum operation
1579/// can be quite costly, especially if it's inside of an outer loop.
1580///
1581/// This function solves this problem by detecting this type of loop and
1582/// rewriting their conditions from ICMP_NE back to ICMP_SLT, and deleting
1583/// the instructions for the maximum computation.
1584///
Dan Gohman572645c2010-02-12 10:34:29 +00001585ICmpInst *LSRInstance::OptimizeMax(ICmpInst *Cond, IVStrideUse* &CondUse) {
Dan Gohman7979b722010-01-22 00:46:49 +00001586 // Check that the loop matches the pattern we're looking for.
1587 if (Cond->getPredicate() != CmpInst::ICMP_EQ &&
1588 Cond->getPredicate() != CmpInst::ICMP_NE)
1589 return Cond;
Dan Gohmana10756e2010-01-21 02:09:26 +00001590
Dan Gohman7979b722010-01-22 00:46:49 +00001591 SelectInst *Sel = dyn_cast<SelectInst>(Cond->getOperand(1));
1592 if (!Sel || !Sel->hasOneUse()) return Cond;
Dan Gohmana10756e2010-01-21 02:09:26 +00001593
Dan Gohman572645c2010-02-12 10:34:29 +00001594 const SCEV *BackedgeTakenCount = SE.getBackedgeTakenCount(L);
Dan Gohman7979b722010-01-22 00:46:49 +00001595 if (isa<SCEVCouldNotCompute>(BackedgeTakenCount))
1596 return Cond;
Dan Gohmandeff6212010-05-03 22:09:21 +00001597 const SCEV *One = SE.getConstant(BackedgeTakenCount->getType(), 1);
Dan Gohmana10756e2010-01-21 02:09:26 +00001598
Dan Gohman7979b722010-01-22 00:46:49 +00001599 // Add one to the backedge-taken count to get the trip count.
Dan Gohman572645c2010-02-12 10:34:29 +00001600 const SCEV *IterationCount = SE.getAddExpr(BackedgeTakenCount, One);
Dan Gohman1d367982010-04-24 03:13:44 +00001601 if (IterationCount != SE.getSCEV(Sel)) return Cond;
Dan Gohman7979b722010-01-22 00:46:49 +00001602
Dan Gohman1d367982010-04-24 03:13:44 +00001603 // Check for a max calculation that matches the pattern. There's no check
1604 // for ICMP_ULE here because the comparison would be with zero, which
1605 // isn't interesting.
1606 CmpInst::Predicate Pred = ICmpInst::BAD_ICMP_PREDICATE;
1607 const SCEVNAryExpr *Max = 0;
1608 if (const SCEVSMaxExpr *S = dyn_cast<SCEVSMaxExpr>(BackedgeTakenCount)) {
1609 Pred = ICmpInst::ICMP_SLE;
1610 Max = S;
1611 } else if (const SCEVSMaxExpr *S = dyn_cast<SCEVSMaxExpr>(IterationCount)) {
1612 Pred = ICmpInst::ICMP_SLT;
1613 Max = S;
1614 } else if (const SCEVUMaxExpr *U = dyn_cast<SCEVUMaxExpr>(IterationCount)) {
1615 Pred = ICmpInst::ICMP_ULT;
1616 Max = U;
1617 } else {
1618 // No match; bail.
Dan Gohman7979b722010-01-22 00:46:49 +00001619 return Cond;
Dan Gohman1d367982010-04-24 03:13:44 +00001620 }
Dan Gohman7979b722010-01-22 00:46:49 +00001621
1622 // To handle a max with more than two operands, this optimization would
1623 // require additional checking and setup.
1624 if (Max->getNumOperands() != 2)
1625 return Cond;
1626
1627 const SCEV *MaxLHS = Max->getOperand(0);
1628 const SCEV *MaxRHS = Max->getOperand(1);
Dan Gohman1d367982010-04-24 03:13:44 +00001629
1630 // ScalarEvolution canonicalizes constants to the left. For < and >, look
1631 // for a comparison with 1. For <= and >=, a comparison with zero.
1632 if (!MaxLHS ||
1633 (ICmpInst::isTrueWhenEqual(Pred) ? !MaxLHS->isZero() : (MaxLHS != One)))
1634 return Cond;
1635
Dan Gohman7979b722010-01-22 00:46:49 +00001636 // Check the relevant induction variable for conformance to
1637 // the pattern.
Dan Gohman572645c2010-02-12 10:34:29 +00001638 const SCEV *IV = SE.getSCEV(Cond->getOperand(0));
Dan Gohman7979b722010-01-22 00:46:49 +00001639 const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(IV);
1640 if (!AR || !AR->isAffine() ||
1641 AR->getStart() != One ||
Dan Gohman572645c2010-02-12 10:34:29 +00001642 AR->getStepRecurrence(SE) != One)
Dan Gohman7979b722010-01-22 00:46:49 +00001643 return Cond;
1644
1645 assert(AR->getLoop() == L &&
1646 "Loop condition operand is an addrec in a different loop!");
1647
1648 // Check the right operand of the select, and remember it, as it will
1649 // be used in the new comparison instruction.
1650 Value *NewRHS = 0;
Dan Gohman1d367982010-04-24 03:13:44 +00001651 if (ICmpInst::isTrueWhenEqual(Pred)) {
1652 // Look for n+1, and grab n.
1653 if (AddOperator *BO = dyn_cast<AddOperator>(Sel->getOperand(1)))
1654 if (isa<ConstantInt>(BO->getOperand(1)) &&
1655 cast<ConstantInt>(BO->getOperand(1))->isOne() &&
1656 SE.getSCEV(BO->getOperand(0)) == MaxRHS)
1657 NewRHS = BO->getOperand(0);
1658 if (AddOperator *BO = dyn_cast<AddOperator>(Sel->getOperand(2)))
1659 if (isa<ConstantInt>(BO->getOperand(1)) &&
1660 cast<ConstantInt>(BO->getOperand(1))->isOne() &&
1661 SE.getSCEV(BO->getOperand(0)) == MaxRHS)
1662 NewRHS = BO->getOperand(0);
1663 if (!NewRHS)
1664 return Cond;
1665 } else if (SE.getSCEV(Sel->getOperand(1)) == MaxRHS)
Dan Gohman7979b722010-01-22 00:46:49 +00001666 NewRHS = Sel->getOperand(1);
Dan Gohman572645c2010-02-12 10:34:29 +00001667 else if (SE.getSCEV(Sel->getOperand(2)) == MaxRHS)
Dan Gohman7979b722010-01-22 00:46:49 +00001668 NewRHS = Sel->getOperand(2);
Dan Gohmancaf71ab2010-06-22 23:07:13 +00001669 else if (const SCEVUnknown *SU = dyn_cast<SCEVUnknown>(MaxRHS))
1670 NewRHS = SU->getValue();
Dan Gohman1d367982010-04-24 03:13:44 +00001671 else
Dan Gohmancaf71ab2010-06-22 23:07:13 +00001672 // Max doesn't match expected pattern.
1673 return Cond;
Dan Gohman7979b722010-01-22 00:46:49 +00001674
1675 // Determine the new comparison opcode. It may be signed or unsigned,
1676 // and the original comparison may be either equality or inequality.
Dan Gohman7979b722010-01-22 00:46:49 +00001677 if (Cond->getPredicate() == CmpInst::ICMP_EQ)
1678 Pred = CmpInst::getInversePredicate(Pred);
1679
1680 // Ok, everything looks ok to change the condition into an SLT or SGE and
1681 // delete the max calculation.
1682 ICmpInst *NewCond =
1683 new ICmpInst(Cond, Pred, Cond->getOperand(0), NewRHS, "scmp");
1684
1685 // Delete the max calculation instructions.
1686 Cond->replaceAllUsesWith(NewCond);
1687 CondUse->setUser(NewCond);
1688 Instruction *Cmp = cast<Instruction>(Sel->getOperand(0));
1689 Cond->eraseFromParent();
1690 Sel->eraseFromParent();
1691 if (Cmp->use_empty())
1692 Cmp->eraseFromParent();
1693 return NewCond;
Dan Gohmanad7321f2008-09-15 21:22:06 +00001694}
1695
Jim Grosbach56a1f802009-11-17 17:53:56 +00001696/// OptimizeLoopTermCond - Change loop terminating condition to use the
Evan Cheng586f69a2009-11-12 07:35:05 +00001697/// postinc iv when possible.
Dan Gohmanc6519f92010-05-20 20:05:31 +00001698void
Dan Gohman572645c2010-02-12 10:34:29 +00001699LSRInstance::OptimizeLoopTermCond() {
1700 SmallPtrSet<Instruction *, 4> PostIncs;
1701
Evan Cheng586f69a2009-11-12 07:35:05 +00001702 BasicBlock *LatchBlock = L->getLoopLatch();
Evan Cheng076e0852009-11-17 18:10:11 +00001703 SmallVector<BasicBlock*, 8> ExitingBlocks;
1704 L->getExitingBlocks(ExitingBlocks);
Jim Grosbach56a1f802009-11-17 17:53:56 +00001705
Evan Cheng076e0852009-11-17 18:10:11 +00001706 for (unsigned i = 0, e = ExitingBlocks.size(); i != e; ++i) {
1707 BasicBlock *ExitingBlock = ExitingBlocks[i];
Evan Cheng586f69a2009-11-12 07:35:05 +00001708
Dan Gohman572645c2010-02-12 10:34:29 +00001709 // Get the terminating condition for the loop if possible. If we
Evan Cheng076e0852009-11-17 18:10:11 +00001710 // can, we want to change it to use a post-incremented version of its
1711 // induction variable, to allow coalescing the live ranges for the IV into
1712 // one register value.
Evan Cheng586f69a2009-11-12 07:35:05 +00001713
Evan Cheng076e0852009-11-17 18:10:11 +00001714 BranchInst *TermBr = dyn_cast<BranchInst>(ExitingBlock->getTerminator());
1715 if (!TermBr)
1716 continue;
1717 // FIXME: Overly conservative, termination condition could be an 'or' etc..
1718 if (TermBr->isUnconditional() || !isa<ICmpInst>(TermBr->getCondition()))
1719 continue;
Evan Cheng586f69a2009-11-12 07:35:05 +00001720
Evan Cheng076e0852009-11-17 18:10:11 +00001721 // Search IVUsesByStride to find Cond's IVUse if there is one.
1722 IVStrideUse *CondUse = 0;
Evan Cheng076e0852009-11-17 18:10:11 +00001723 ICmpInst *Cond = cast<ICmpInst>(TermBr->getCondition());
Dan Gohman572645c2010-02-12 10:34:29 +00001724 if (!FindIVUserForCond(Cond, CondUse))
Evan Cheng076e0852009-11-17 18:10:11 +00001725 continue;
1726
Evan Cheng076e0852009-11-17 18:10:11 +00001727 // If the trip count is computed in terms of a max (due to ScalarEvolution
1728 // being unable to find a sufficient guard, for example), change the loop
1729 // comparison to use SLT or ULT instead of NE.
Dan Gohman572645c2010-02-12 10:34:29 +00001730 // One consequence of doing this now is that it disrupts the count-down
1731 // optimization. That's not always a bad thing though, because in such
1732 // cases it may still be worthwhile to avoid a max.
1733 Cond = OptimizeMax(Cond, CondUse);
Evan Cheng076e0852009-11-17 18:10:11 +00001734
Dan Gohman572645c2010-02-12 10:34:29 +00001735 // If this exiting block dominates the latch block, it may also use
1736 // the post-inc value if it won't be shared with other uses.
1737 // Check for dominance.
1738 if (!DT.dominates(ExitingBlock, LatchBlock))
Dan Gohman7979b722010-01-22 00:46:49 +00001739 continue;
Evan Cheng076e0852009-11-17 18:10:11 +00001740
Dan Gohman572645c2010-02-12 10:34:29 +00001741 // Conservatively avoid trying to use the post-inc value in non-latch
1742 // exits if there may be pre-inc users in intervening blocks.
Dan Gohman590bfe82010-02-14 03:21:49 +00001743 if (LatchBlock != ExitingBlock)
Dan Gohman572645c2010-02-12 10:34:29 +00001744 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI)
1745 // Test if the use is reachable from the exiting block. This dominator
1746 // query is a conservative approximation of reachability.
1747 if (&*UI != CondUse &&
1748 !DT.properlyDominates(UI->getUser()->getParent(), ExitingBlock)) {
1749 // Conservatively assume there may be reuse if the quotient of their
1750 // strides could be a legal scale.
Dan Gohmanc0564542010-04-19 21:48:58 +00001751 const SCEV *A = IU.getStride(*CondUse, L);
1752 const SCEV *B = IU.getStride(*UI, L);
Dan Gohman448db1c2010-04-07 22:27:08 +00001753 if (!A || !B) continue;
Dan Gohman572645c2010-02-12 10:34:29 +00001754 if (SE.getTypeSizeInBits(A->getType()) !=
1755 SE.getTypeSizeInBits(B->getType())) {
1756 if (SE.getTypeSizeInBits(A->getType()) >
1757 SE.getTypeSizeInBits(B->getType()))
1758 B = SE.getSignExtendExpr(B, A->getType());
1759 else
1760 A = SE.getSignExtendExpr(A, B->getType());
1761 }
1762 if (const SCEVConstant *D =
Dan Gohmanf09b7122010-02-19 19:35:48 +00001763 dyn_cast_or_null<SCEVConstant>(getExactSDiv(B, A, SE))) {
Dan Gohman9f383eb2010-05-20 22:25:20 +00001764 const ConstantInt *C = D->getValue();
Dan Gohman572645c2010-02-12 10:34:29 +00001765 // Stride of one or negative one can have reuse with non-addresses.
Dan Gohman9f383eb2010-05-20 22:25:20 +00001766 if (C->isOne() || C->isAllOnesValue())
Dan Gohman572645c2010-02-12 10:34:29 +00001767 goto decline_post_inc;
1768 // Avoid weird situations.
Dan Gohman9f383eb2010-05-20 22:25:20 +00001769 if (C->getValue().getMinSignedBits() >= 64 ||
1770 C->getValue().isMinSignedValue())
Dan Gohman572645c2010-02-12 10:34:29 +00001771 goto decline_post_inc;
Dan Gohman590bfe82010-02-14 03:21:49 +00001772 // Without TLI, assume that any stride might be valid, and so any
1773 // use might be shared.
1774 if (!TLI)
1775 goto decline_post_inc;
Dan Gohman572645c2010-02-12 10:34:29 +00001776 // Check for possible scaled-address reuse.
1777 const Type *AccessTy = getAccessType(UI->getUser());
1778 TargetLowering::AddrMode AM;
Dan Gohman9f383eb2010-05-20 22:25:20 +00001779 AM.Scale = C->getSExtValue();
Dan Gohman2763dfd2010-02-14 02:45:21 +00001780 if (TLI->isLegalAddressingMode(AM, AccessTy))
Dan Gohman572645c2010-02-12 10:34:29 +00001781 goto decline_post_inc;
1782 AM.Scale = -AM.Scale;
Dan Gohman2763dfd2010-02-14 02:45:21 +00001783 if (TLI->isLegalAddressingMode(AM, AccessTy))
Dan Gohman572645c2010-02-12 10:34:29 +00001784 goto decline_post_inc;
1785 }
1786 }
1787
David Greene63c94632009-12-23 22:58:38 +00001788 DEBUG(dbgs() << " Change loop exiting icmp to use postinc iv: "
Dan Gohman572645c2010-02-12 10:34:29 +00001789 << *Cond << '\n');
Evan Cheng076e0852009-11-17 18:10:11 +00001790
1791 // It's possible for the setcc instruction to be anywhere in the loop, and
1792 // possible for it to have multiple users. If it is not immediately before
1793 // the exiting block branch, move it.
Dan Gohman572645c2010-02-12 10:34:29 +00001794 if (&*++BasicBlock::iterator(Cond) != TermBr) {
1795 if (Cond->hasOneUse()) {
Evan Cheng076e0852009-11-17 18:10:11 +00001796 Cond->moveBefore(TermBr);
1797 } else {
Dan Gohman572645c2010-02-12 10:34:29 +00001798 // Clone the terminating condition and insert into the loopend.
1799 ICmpInst *OldCond = Cond;
Evan Cheng076e0852009-11-17 18:10:11 +00001800 Cond = cast<ICmpInst>(Cond->clone());
1801 Cond->setName(L->getHeader()->getName() + ".termcond");
1802 ExitingBlock->getInstList().insert(TermBr, Cond);
1803
1804 // Clone the IVUse, as the old use still exists!
Dan Gohmanc0564542010-04-19 21:48:58 +00001805 CondUse = &IU.AddUser(Cond, CondUse->getOperandValToReplace());
Dan Gohman572645c2010-02-12 10:34:29 +00001806 TermBr->replaceUsesOfWith(OldCond, Cond);
Evan Cheng076e0852009-11-17 18:10:11 +00001807 }
Evan Cheng586f69a2009-11-12 07:35:05 +00001808 }
1809
Evan Cheng076e0852009-11-17 18:10:11 +00001810 // If we get to here, we know that we can transform the setcc instruction to
1811 // use the post-incremented version of the IV, allowing us to coalesce the
1812 // live ranges for the IV correctly.
Dan Gohman448db1c2010-04-07 22:27:08 +00001813 CondUse->transformToPostInc(L);
Evan Cheng076e0852009-11-17 18:10:11 +00001814 Changed = true;
1815
Dan Gohman572645c2010-02-12 10:34:29 +00001816 PostIncs.insert(Cond);
1817 decline_post_inc:;
Dan Gohmana10756e2010-01-21 02:09:26 +00001818 }
Dan Gohman572645c2010-02-12 10:34:29 +00001819
1820 // Determine an insertion point for the loop induction variable increment. It
1821 // must dominate all the post-inc comparisons we just set up, and it must
1822 // dominate the loop latch edge.
1823 IVIncInsertPos = L->getLoopLatch()->getTerminator();
1824 for (SmallPtrSet<Instruction *, 4>::const_iterator I = PostIncs.begin(),
1825 E = PostIncs.end(); I != E; ++I) {
1826 BasicBlock *BB =
1827 DT.findNearestCommonDominator(IVIncInsertPos->getParent(),
1828 (*I)->getParent());
1829 if (BB == (*I)->getParent())
1830 IVIncInsertPos = *I;
1831 else if (BB != IVIncInsertPos->getParent())
1832 IVIncInsertPos = BB->getTerminator();
1833 }
Dan Gohmana10756e2010-01-21 02:09:26 +00001834}
1835
Dan Gohman76c315a2010-05-20 20:52:00 +00001836/// reconcileNewOffset - Determine if the given use can accomodate a fixup
1837/// at the given offset and other details. If so, update the use and
1838/// return true.
Dan Gohman572645c2010-02-12 10:34:29 +00001839bool
Dan Gohmanea507f52010-05-20 19:44:23 +00001840LSRInstance::reconcileNewOffset(LSRUse &LU, int64_t NewOffset, bool HasBaseReg,
Dan Gohman572645c2010-02-12 10:34:29 +00001841 LSRUse::KindType Kind, const Type *AccessTy) {
1842 int64_t NewMinOffset = LU.MinOffset;
1843 int64_t NewMaxOffset = LU.MaxOffset;
1844 const Type *NewAccessTy = AccessTy;
Dan Gohman7979b722010-01-22 00:46:49 +00001845
Dan Gohman572645c2010-02-12 10:34:29 +00001846 // Check for a mismatched kind. It's tempting to collapse mismatched kinds to
1847 // something conservative, however this can pessimize in the case that one of
1848 // the uses will have all its uses outside the loop, for example.
1849 if (LU.Kind != Kind)
Dan Gohman7979b722010-01-22 00:46:49 +00001850 return false;
Dan Gohman572645c2010-02-12 10:34:29 +00001851 // Conservatively assume HasBaseReg is true for now.
1852 if (NewOffset < LU.MinOffset) {
Dan Gohmana2086b32010-05-19 23:43:12 +00001853 if (!isAlwaysFoldable(LU.MaxOffset - NewOffset, 0, HasBaseReg,
Dan Gohman454d26d2010-02-22 04:11:59 +00001854 Kind, AccessTy, TLI))
Dan Gohman7979b722010-01-22 00:46:49 +00001855 return false;
Dan Gohman572645c2010-02-12 10:34:29 +00001856 NewMinOffset = NewOffset;
1857 } else if (NewOffset > LU.MaxOffset) {
Dan Gohmana2086b32010-05-19 23:43:12 +00001858 if (!isAlwaysFoldable(NewOffset - LU.MinOffset, 0, HasBaseReg,
Dan Gohman454d26d2010-02-22 04:11:59 +00001859 Kind, AccessTy, TLI))
Dan Gohman7979b722010-01-22 00:46:49 +00001860 return false;
Dan Gohman572645c2010-02-12 10:34:29 +00001861 NewMaxOffset = NewOffset;
Dan Gohmana10756e2010-01-21 02:09:26 +00001862 }
Dan Gohman572645c2010-02-12 10:34:29 +00001863 // Check for a mismatched access type, and fall back conservatively as needed.
Dan Gohman74e5ef02010-06-19 21:30:18 +00001864 // TODO: Be less conservative when the type is similar and can use the same
1865 // addressing modes.
Dan Gohman572645c2010-02-12 10:34:29 +00001866 if (Kind == LSRUse::Address && AccessTy != LU.AccessTy)
1867 NewAccessTy = Type::getVoidTy(AccessTy->getContext());
Dan Gohmana10756e2010-01-21 02:09:26 +00001868
Dan Gohman572645c2010-02-12 10:34:29 +00001869 // Update the use.
1870 LU.MinOffset = NewMinOffset;
1871 LU.MaxOffset = NewMaxOffset;
1872 LU.AccessTy = NewAccessTy;
1873 if (NewOffset != LU.Offsets.back())
1874 LU.Offsets.push_back(NewOffset);
Dan Gohman8b0ade32010-01-21 22:42:49 +00001875 return true;
1876}
1877
Dan Gohman572645c2010-02-12 10:34:29 +00001878/// getUse - Return an LSRUse index and an offset value for a fixup which
1879/// needs the given expression, with the given kind and optional access type.
Dan Gohman3f46a3a2010-03-01 17:49:51 +00001880/// Either reuse an existing use or create a new one, as needed.
Dan Gohman572645c2010-02-12 10:34:29 +00001881std::pair<size_t, int64_t>
1882LSRInstance::getUse(const SCEV *&Expr,
1883 LSRUse::KindType Kind, const Type *AccessTy) {
1884 const SCEV *Copy = Expr;
1885 int64_t Offset = ExtractImmediate(Expr, SE);
Evan Cheng586f69a2009-11-12 07:35:05 +00001886
Dan Gohman572645c2010-02-12 10:34:29 +00001887 // Basic uses can't accept any offset, for example.
Dan Gohman454d26d2010-02-22 04:11:59 +00001888 if (!isAlwaysFoldable(Offset, 0, /*HasBaseReg=*/true, Kind, AccessTy, TLI)) {
Dan Gohman572645c2010-02-12 10:34:29 +00001889 Expr = Copy;
1890 Offset = 0;
1891 }
1892
1893 std::pair<UseMapTy::iterator, bool> P =
Dan Gohman1e3121c2010-06-19 21:29:59 +00001894 UseMap.insert(std::make_pair(std::make_pair(Expr, Kind), 0));
Dan Gohman572645c2010-02-12 10:34:29 +00001895 if (!P.second) {
1896 // A use already existed with this base.
1897 size_t LUIdx = P.first->second;
1898 LSRUse &LU = Uses[LUIdx];
Dan Gohmana2086b32010-05-19 23:43:12 +00001899 if (reconcileNewOffset(LU, Offset, /*HasBaseReg=*/true, Kind, AccessTy))
Dan Gohman572645c2010-02-12 10:34:29 +00001900 // Reuse this use.
1901 return std::make_pair(LUIdx, Offset);
1902 }
1903
1904 // Create a new use.
1905 size_t LUIdx = Uses.size();
1906 P.first->second = LUIdx;
1907 Uses.push_back(LSRUse(Kind, AccessTy));
1908 LSRUse &LU = Uses[LUIdx];
1909
1910 // We don't need to track redundant offsets, but we don't need to go out
1911 // of our way here to avoid them.
1912 if (LU.Offsets.empty() || Offset != LU.Offsets.back())
1913 LU.Offsets.push_back(Offset);
1914
1915 LU.MinOffset = Offset;
1916 LU.MaxOffset = Offset;
1917 return std::make_pair(LUIdx, Offset);
1918}
1919
Dan Gohman5ce6d052010-05-20 15:17:54 +00001920/// DeleteUse - Delete the given use from the Uses list.
1921void LSRInstance::DeleteUse(LSRUse &LU) {
1922 if (&LU != &Uses.back())
1923 std::swap(LU, Uses.back());
1924 Uses.pop_back();
1925}
1926
Dan Gohmana2086b32010-05-19 23:43:12 +00001927/// FindUseWithFormula - Look for a use distinct from OrigLU which is has
1928/// a formula that has the same registers as the given formula.
1929LSRUse *
1930LSRInstance::FindUseWithSimilarFormula(const Formula &OrigF,
1931 const LSRUse &OrigLU) {
1932 // Search all uses for the formula. This could be more clever. Ignore
1933 // ICmpZero uses because they may contain formulae generated by
1934 // GenerateICmpZeroScales, in which case adding fixup offsets may
1935 // be invalid.
1936 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
1937 LSRUse &LU = Uses[LUIdx];
1938 if (&LU != &OrigLU &&
1939 LU.Kind != LSRUse::ICmpZero &&
1940 LU.Kind == OrigLU.Kind && OrigLU.AccessTy == LU.AccessTy &&
Dan Gohmana9db1292010-07-15 20:24:58 +00001941 LU.WidestFixupType == OrigLU.WidestFixupType &&
Dan Gohmana2086b32010-05-19 23:43:12 +00001942 LU.HasFormulaWithSameRegs(OrigF)) {
Dan Gohman402d4352010-05-20 20:33:18 +00001943 for (SmallVectorImpl<Formula>::const_iterator I = LU.Formulae.begin(),
1944 E = LU.Formulae.end(); I != E; ++I) {
1945 const Formula &F = *I;
Dan Gohmana2086b32010-05-19 23:43:12 +00001946 if (F.BaseRegs == OrigF.BaseRegs &&
1947 F.ScaledReg == OrigF.ScaledReg &&
1948 F.AM.BaseGV == OrigF.AM.BaseGV &&
1949 F.AM.Scale == OrigF.AM.Scale &&
1950 LU.Kind) {
1951 if (F.AM.BaseOffs == 0)
1952 return &LU;
1953 break;
1954 }
1955 }
1956 }
1957 }
1958
1959 return 0;
1960}
1961
Dan Gohman572645c2010-02-12 10:34:29 +00001962void LSRInstance::CollectInterestingTypesAndFactors() {
1963 SmallSetVector<const SCEV *, 4> Strides;
1964
Dan Gohman1b7bf182010-02-19 00:05:23 +00001965 // Collect interesting types and strides.
Dan Gohman448db1c2010-04-07 22:27:08 +00001966 SmallVector<const SCEV *, 4> Worklist;
Dan Gohman572645c2010-02-12 10:34:29 +00001967 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI) {
Dan Gohmanc0564542010-04-19 21:48:58 +00001968 const SCEV *Expr = IU.getExpr(*UI);
Dan Gohman572645c2010-02-12 10:34:29 +00001969
1970 // Collect interesting types.
Dan Gohman448db1c2010-04-07 22:27:08 +00001971 Types.insert(SE.getEffectiveSCEVType(Expr->getType()));
Dan Gohman572645c2010-02-12 10:34:29 +00001972
Dan Gohman448db1c2010-04-07 22:27:08 +00001973 // Add strides for mentioned loops.
1974 Worklist.push_back(Expr);
1975 do {
1976 const SCEV *S = Worklist.pop_back_val();
1977 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
1978 Strides.insert(AR->getStepRecurrence(SE));
1979 Worklist.push_back(AR->getStart());
1980 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
Dan Gohman403a8cd2010-06-21 19:47:52 +00001981 Worklist.append(Add->op_begin(), Add->op_end());
Dan Gohman448db1c2010-04-07 22:27:08 +00001982 }
1983 } while (!Worklist.empty());
Dan Gohman1b7bf182010-02-19 00:05:23 +00001984 }
1985
1986 // Compute interesting factors from the set of interesting strides.
1987 for (SmallSetVector<const SCEV *, 4>::const_iterator
1988 I = Strides.begin(), E = Strides.end(); I != E; ++I)
Dan Gohman572645c2010-02-12 10:34:29 +00001989 for (SmallSetVector<const SCEV *, 4>::const_iterator NewStrideIter =
Dan Gohman1b7bf182010-02-19 00:05:23 +00001990 next(I); NewStrideIter != E; ++NewStrideIter) {
1991 const SCEV *OldStride = *I;
Dan Gohman572645c2010-02-12 10:34:29 +00001992 const SCEV *NewStride = *NewStrideIter;
Dan Gohman572645c2010-02-12 10:34:29 +00001993
1994 if (SE.getTypeSizeInBits(OldStride->getType()) !=
1995 SE.getTypeSizeInBits(NewStride->getType())) {
1996 if (SE.getTypeSizeInBits(OldStride->getType()) >
1997 SE.getTypeSizeInBits(NewStride->getType()))
1998 NewStride = SE.getSignExtendExpr(NewStride, OldStride->getType());
1999 else
2000 OldStride = SE.getSignExtendExpr(OldStride, NewStride->getType());
2001 }
2002 if (const SCEVConstant *Factor =
Dan Gohmanf09b7122010-02-19 19:35:48 +00002003 dyn_cast_or_null<SCEVConstant>(getExactSDiv(NewStride, OldStride,
2004 SE, true))) {
Dan Gohman572645c2010-02-12 10:34:29 +00002005 if (Factor->getValue()->getValue().getMinSignedBits() <= 64)
2006 Factors.insert(Factor->getValue()->getValue().getSExtValue());
2007 } else if (const SCEVConstant *Factor =
Dan Gohman454d26d2010-02-22 04:11:59 +00002008 dyn_cast_or_null<SCEVConstant>(getExactSDiv(OldStride,
2009 NewStride,
Dan Gohmanf09b7122010-02-19 19:35:48 +00002010 SE, true))) {
Dan Gohman572645c2010-02-12 10:34:29 +00002011 if (Factor->getValue()->getValue().getMinSignedBits() <= 64)
2012 Factors.insert(Factor->getValue()->getValue().getSExtValue());
2013 }
2014 }
Dan Gohman572645c2010-02-12 10:34:29 +00002015
2016 // If all uses use the same type, don't bother looking for truncation-based
2017 // reuse.
2018 if (Types.size() == 1)
2019 Types.clear();
2020
2021 DEBUG(print_factors_and_types(dbgs()));
2022}
2023
2024void LSRInstance::CollectFixupsAndInitialFormulae() {
2025 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI) {
2026 // Record the uses.
2027 LSRFixup &LF = getNewFixup();
2028 LF.UserInst = UI->getUser();
2029 LF.OperandValToReplace = UI->getOperandValToReplace();
Dan Gohman448db1c2010-04-07 22:27:08 +00002030 LF.PostIncLoops = UI->getPostIncLoops();
Dan Gohman572645c2010-02-12 10:34:29 +00002031
2032 LSRUse::KindType Kind = LSRUse::Basic;
2033 const Type *AccessTy = 0;
2034 if (isAddressUse(LF.UserInst, LF.OperandValToReplace)) {
2035 Kind = LSRUse::Address;
2036 AccessTy = getAccessType(LF.UserInst);
2037 }
2038
Dan Gohmanc0564542010-04-19 21:48:58 +00002039 const SCEV *S = IU.getExpr(*UI);
Dan Gohman572645c2010-02-12 10:34:29 +00002040
2041 // Equality (== and !=) ICmps are special. We can rewrite (i == N) as
2042 // (N - i == 0), and this allows (N - i) to be the expression that we work
2043 // with rather than just N or i, so we can consider the register
2044 // requirements for both N and i at the same time. Limiting this code to
2045 // equality icmps is not a problem because all interesting loops use
2046 // equality icmps, thanks to IndVarSimplify.
2047 if (ICmpInst *CI = dyn_cast<ICmpInst>(LF.UserInst))
2048 if (CI->isEquality()) {
2049 // Swap the operands if needed to put the OperandValToReplace on the
2050 // left, for consistency.
2051 Value *NV = CI->getOperand(1);
2052 if (NV == LF.OperandValToReplace) {
2053 CI->setOperand(1, CI->getOperand(0));
2054 CI->setOperand(0, NV);
Dan Gohmanf182b232010-05-20 19:26:52 +00002055 NV = CI->getOperand(1);
Dan Gohman9da1bf42010-05-20 19:16:03 +00002056 Changed = true;
Dan Gohman572645c2010-02-12 10:34:29 +00002057 }
2058
2059 // x == y --> x - y == 0
2060 const SCEV *N = SE.getSCEV(NV);
2061 if (N->isLoopInvariant(L)) {
2062 Kind = LSRUse::ICmpZero;
2063 S = SE.getMinusSCEV(N, S);
2064 }
2065
2066 // -1 and the negations of all interesting strides (except the negation
2067 // of -1) are now also interesting.
2068 for (size_t i = 0, e = Factors.size(); i != e; ++i)
2069 if (Factors[i] != -1)
2070 Factors.insert(-(uint64_t)Factors[i]);
2071 Factors.insert(-1);
2072 }
2073
2074 // Set up the initial formula for this use.
2075 std::pair<size_t, int64_t> P = getUse(S, Kind, AccessTy);
2076 LF.LUIdx = P.first;
2077 LF.Offset = P.second;
2078 LSRUse &LU = Uses[LF.LUIdx];
Dan Gohman448db1c2010-04-07 22:27:08 +00002079 LU.AllFixupsOutsideLoop &= LF.isUseFullyOutsideLoop(L);
Dan Gohmana9db1292010-07-15 20:24:58 +00002080 if (!LU.WidestFixupType ||
2081 SE.getTypeSizeInBits(LU.WidestFixupType) <
2082 SE.getTypeSizeInBits(LF.OperandValToReplace->getType()))
2083 LU.WidestFixupType = LF.OperandValToReplace->getType();
Dan Gohman572645c2010-02-12 10:34:29 +00002084
2085 // If this is the first use of this LSRUse, give it a formula.
2086 if (LU.Formulae.empty()) {
Dan Gohman454d26d2010-02-22 04:11:59 +00002087 InsertInitialFormula(S, LU, LF.LUIdx);
Dan Gohman572645c2010-02-12 10:34:29 +00002088 CountRegisters(LU.Formulae.back(), LF.LUIdx);
2089 }
2090 }
2091
2092 DEBUG(print_fixups(dbgs()));
2093}
2094
Dan Gohman76c315a2010-05-20 20:52:00 +00002095/// InsertInitialFormula - Insert a formula for the given expression into
2096/// the given use, separating out loop-variant portions from loop-invariant
2097/// and loop-computable portions.
Dan Gohman572645c2010-02-12 10:34:29 +00002098void
Dan Gohman454d26d2010-02-22 04:11:59 +00002099LSRInstance::InsertInitialFormula(const SCEV *S, LSRUse &LU, size_t LUIdx) {
Dan Gohman572645c2010-02-12 10:34:29 +00002100 Formula F;
2101 F.InitialMatch(S, L, SE, DT);
2102 bool Inserted = InsertFormula(LU, LUIdx, F);
2103 assert(Inserted && "Initial formula already exists!"); (void)Inserted;
2104}
2105
Dan Gohman76c315a2010-05-20 20:52:00 +00002106/// InsertSupplementalFormula - Insert a simple single-register formula for
2107/// the given expression into the given use.
Dan Gohman572645c2010-02-12 10:34:29 +00002108void
2109LSRInstance::InsertSupplementalFormula(const SCEV *S,
2110 LSRUse &LU, size_t LUIdx) {
2111 Formula F;
2112 F.BaseRegs.push_back(S);
2113 F.AM.HasBaseReg = true;
2114 bool Inserted = InsertFormula(LU, LUIdx, F);
2115 assert(Inserted && "Supplemental formula already exists!"); (void)Inserted;
2116}
2117
2118/// CountRegisters - Note which registers are used by the given formula,
2119/// updating RegUses.
2120void LSRInstance::CountRegisters(const Formula &F, size_t LUIdx) {
2121 if (F.ScaledReg)
2122 RegUses.CountRegister(F.ScaledReg, LUIdx);
2123 for (SmallVectorImpl<const SCEV *>::const_iterator I = F.BaseRegs.begin(),
2124 E = F.BaseRegs.end(); I != E; ++I)
2125 RegUses.CountRegister(*I, LUIdx);
2126}
2127
2128/// InsertFormula - If the given formula has not yet been inserted, add it to
2129/// the list, and return true. Return false otherwise.
2130bool LSRInstance::InsertFormula(LSRUse &LU, unsigned LUIdx, const Formula &F) {
Dan Gohman454d26d2010-02-22 04:11:59 +00002131 if (!LU.InsertFormula(F))
Dan Gohman572645c2010-02-12 10:34:29 +00002132 return false;
2133
2134 CountRegisters(F, LUIdx);
2135 return true;
2136}
2137
2138/// CollectLoopInvariantFixupsAndFormulae - Check for other uses of
2139/// loop-invariant values which we're tracking. These other uses will pin these
2140/// values in registers, making them less profitable for elimination.
2141/// TODO: This currently misses non-constant addrec step registers.
2142/// TODO: Should this give more weight to users inside the loop?
2143void
2144LSRInstance::CollectLoopInvariantFixupsAndFormulae() {
2145 SmallVector<const SCEV *, 8> Worklist(RegUses.begin(), RegUses.end());
2146 SmallPtrSet<const SCEV *, 8> Inserted;
2147
2148 while (!Worklist.empty()) {
2149 const SCEV *S = Worklist.pop_back_val();
2150
2151 if (const SCEVNAryExpr *N = dyn_cast<SCEVNAryExpr>(S))
Dan Gohman403a8cd2010-06-21 19:47:52 +00002152 Worklist.append(N->op_begin(), N->op_end());
Dan Gohman572645c2010-02-12 10:34:29 +00002153 else if (const SCEVCastExpr *C = dyn_cast<SCEVCastExpr>(S))
2154 Worklist.push_back(C->getOperand());
2155 else if (const SCEVUDivExpr *D = dyn_cast<SCEVUDivExpr>(S)) {
2156 Worklist.push_back(D->getLHS());
2157 Worklist.push_back(D->getRHS());
2158 } else if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(S)) {
2159 if (!Inserted.insert(U)) continue;
2160 const Value *V = U->getValue();
Dan Gohmana15ec5d2010-06-04 23:16:05 +00002161 if (const Instruction *Inst = dyn_cast<Instruction>(V)) {
2162 // Look for instructions defined outside the loop.
Dan Gohman572645c2010-02-12 10:34:29 +00002163 if (L->contains(Inst)) continue;
Dan Gohmana15ec5d2010-06-04 23:16:05 +00002164 } else if (isa<UndefValue>(V))
2165 // Undef doesn't have a live range, so it doesn't matter.
2166 continue;
Gabor Greif60ad7812010-03-25 23:06:16 +00002167 for (Value::const_use_iterator UI = V->use_begin(), UE = V->use_end();
Dan Gohman572645c2010-02-12 10:34:29 +00002168 UI != UE; ++UI) {
2169 const Instruction *UserInst = dyn_cast<Instruction>(*UI);
2170 // Ignore non-instructions.
2171 if (!UserInst)
Dan Gohman7979b722010-01-22 00:46:49 +00002172 continue;
Dan Gohman572645c2010-02-12 10:34:29 +00002173 // Ignore instructions in other functions (as can happen with
2174 // Constants).
2175 if (UserInst->getParent()->getParent() != L->getHeader()->getParent())
Dan Gohman7979b722010-01-22 00:46:49 +00002176 continue;
Dan Gohman572645c2010-02-12 10:34:29 +00002177 // Ignore instructions not dominated by the loop.
2178 const BasicBlock *UseBB = !isa<PHINode>(UserInst) ?
2179 UserInst->getParent() :
2180 cast<PHINode>(UserInst)->getIncomingBlock(
2181 PHINode::getIncomingValueNumForOperand(UI.getOperandNo()));
2182 if (!DT.dominates(L->getHeader(), UseBB))
2183 continue;
2184 // Ignore uses which are part of other SCEV expressions, to avoid
2185 // analyzing them multiple times.
Dan Gohman4a2a6832010-04-09 19:12:34 +00002186 if (SE.isSCEVable(UserInst->getType())) {
2187 const SCEV *UserS = SE.getSCEV(const_cast<Instruction *>(UserInst));
2188 // If the user is a no-op, look through to its uses.
2189 if (!isa<SCEVUnknown>(UserS))
2190 continue;
2191 if (UserS == U) {
2192 Worklist.push_back(
2193 SE.getUnknown(const_cast<Instruction *>(UserInst)));
2194 continue;
2195 }
2196 }
Dan Gohman572645c2010-02-12 10:34:29 +00002197 // Ignore icmp instructions which are already being analyzed.
2198 if (const ICmpInst *ICI = dyn_cast<ICmpInst>(UserInst)) {
2199 unsigned OtherIdx = !UI.getOperandNo();
2200 Value *OtherOp = const_cast<Value *>(ICI->getOperand(OtherIdx));
2201 if (SE.getSCEV(OtherOp)->hasComputableLoopEvolution(L))
2202 continue;
2203 }
2204
2205 LSRFixup &LF = getNewFixup();
2206 LF.UserInst = const_cast<Instruction *>(UserInst);
2207 LF.OperandValToReplace = UI.getUse();
2208 std::pair<size_t, int64_t> P = getUse(S, LSRUse::Basic, 0);
2209 LF.LUIdx = P.first;
2210 LF.Offset = P.second;
2211 LSRUse &LU = Uses[LF.LUIdx];
Dan Gohman448db1c2010-04-07 22:27:08 +00002212 LU.AllFixupsOutsideLoop &= LF.isUseFullyOutsideLoop(L);
Dan Gohmana9db1292010-07-15 20:24:58 +00002213 if (!LU.WidestFixupType ||
2214 SE.getTypeSizeInBits(LU.WidestFixupType) <
2215 SE.getTypeSizeInBits(LF.OperandValToReplace->getType()))
2216 LU.WidestFixupType = LF.OperandValToReplace->getType();
Dan Gohman572645c2010-02-12 10:34:29 +00002217 InsertSupplementalFormula(U, LU, LF.LUIdx);
2218 CountRegisters(LU.Formulae.back(), Uses.size() - 1);
2219 break;
2220 }
2221 }
2222 }
2223}
2224
2225/// CollectSubexprs - Split S into subexpressions which can be pulled out into
2226/// separate registers. If C is non-null, multiply each subexpression by C.
2227static void CollectSubexprs(const SCEV *S, const SCEVConstant *C,
2228 SmallVectorImpl<const SCEV *> &Ops,
Dan Gohman3e3f15b2010-06-25 22:32:18 +00002229 SmallVectorImpl<const SCEV *> &UninterestingOps,
2230 const Loop *L,
Dan Gohman572645c2010-02-12 10:34:29 +00002231 ScalarEvolution &SE) {
2232 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
2233 // Break out add operands.
2234 for (SCEVAddExpr::op_iterator I = Add->op_begin(), E = Add->op_end();
2235 I != E; ++I)
Dan Gohman3e3f15b2010-06-25 22:32:18 +00002236 CollectSubexprs(*I, C, Ops, UninterestingOps, L, SE);
Dan Gohman572645c2010-02-12 10:34:29 +00002237 return;
2238 } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
2239 // Split a non-zero base out of an addrec.
2240 if (!AR->getStart()->isZero()) {
Dan Gohmandeff6212010-05-03 22:09:21 +00002241 CollectSubexprs(SE.getAddRecExpr(SE.getConstant(AR->getType(), 0),
Dan Gohman572645c2010-02-12 10:34:29 +00002242 AR->getStepRecurrence(SE),
Dan Gohman3e3f15b2010-06-25 22:32:18 +00002243 AR->getLoop()),
2244 C, Ops, UninterestingOps, L, SE);
2245 CollectSubexprs(AR->getStart(), C, Ops, UninterestingOps, L, SE);
Dan Gohman572645c2010-02-12 10:34:29 +00002246 return;
2247 }
2248 } else if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S)) {
2249 // Break (C * (a + b + c)) into C*a + C*b + C*c.
2250 if (Mul->getNumOperands() == 2)
2251 if (const SCEVConstant *Op0 =
2252 dyn_cast<SCEVConstant>(Mul->getOperand(0))) {
2253 CollectSubexprs(Mul->getOperand(1),
2254 C ? cast<SCEVConstant>(SE.getMulExpr(C, Op0)) : Op0,
Dan Gohman3e3f15b2010-06-25 22:32:18 +00002255 Ops, UninterestingOps, L, SE);
Dan Gohman572645c2010-02-12 10:34:29 +00002256 return;
2257 }
2258 }
2259
Dan Gohman3e3f15b2010-06-25 22:32:18 +00002260 // Otherwise use the value itself. Loop-variant "unknown" values are
2261 // uninteresting; we won't be able to do anything meaningful with them.
2262 if (!C && isa<SCEVUnknown>(S) && !S->isLoopInvariant(L))
2263 UninterestingOps.push_back(S);
2264 else
2265 Ops.push_back(C ? SE.getMulExpr(C, S) : S);
Dan Gohman572645c2010-02-12 10:34:29 +00002266}
2267
2268/// GenerateReassociations - Split out subexpressions from adds and the bases of
2269/// addrecs.
2270void LSRInstance::GenerateReassociations(LSRUse &LU, unsigned LUIdx,
2271 Formula Base,
2272 unsigned Depth) {
2273 // Arbitrarily cap recursion to protect compile time.
2274 if (Depth >= 3) return;
2275
2276 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i) {
2277 const SCEV *BaseReg = Base.BaseRegs[i];
2278
Dan Gohman3e3f15b2010-06-25 22:32:18 +00002279 SmallVector<const SCEV *, 8> AddOps, UninterestingAddOps;
2280 CollectSubexprs(BaseReg, 0, AddOps, UninterestingAddOps, L, SE);
2281
2282 // Add any uninteresting values as one register, as we won't be able to
2283 // form any interesting reassociation opportunities with them. They'll
2284 // just have to be added inside the loop no matter what we do.
2285 if (!UninterestingAddOps.empty())
2286 AddOps.push_back(SE.getAddExpr(UninterestingAddOps));
2287
Dan Gohman572645c2010-02-12 10:34:29 +00002288 if (AddOps.size() == 1) continue;
2289
2290 for (SmallVectorImpl<const SCEV *>::const_iterator J = AddOps.begin(),
2291 JE = AddOps.end(); J != JE; ++J) {
2292 // Don't pull a constant into a register if the constant could be folded
2293 // into an immediate field.
2294 if (isAlwaysFoldable(*J, LU.MinOffset, LU.MaxOffset,
2295 Base.getNumRegs() > 1,
2296 LU.Kind, LU.AccessTy, TLI, SE))
2297 continue;
2298
2299 // Collect all operands except *J.
Dan Gohman403a8cd2010-06-21 19:47:52 +00002300 SmallVector<const SCEV *, 8> InnerAddOps
2301 ( ((const SmallVector<const SCEV *, 8> &)AddOps).begin(), J);
2302 InnerAddOps.append
2303 (next(J), ((const SmallVector<const SCEV *, 8> &)AddOps).end());
Dan Gohman572645c2010-02-12 10:34:29 +00002304
2305 // Don't leave just a constant behind in a register if the constant could
2306 // be folded into an immediate field.
2307 if (InnerAddOps.size() == 1 &&
2308 isAlwaysFoldable(InnerAddOps[0], LU.MinOffset, LU.MaxOffset,
2309 Base.getNumRegs() > 1,
2310 LU.Kind, LU.AccessTy, TLI, SE))
2311 continue;
2312
Dan Gohmanfafb8902010-04-23 01:55:05 +00002313 const SCEV *InnerSum = SE.getAddExpr(InnerAddOps);
2314 if (InnerSum->isZero())
2315 continue;
Dan Gohman572645c2010-02-12 10:34:29 +00002316 Formula F = Base;
Dan Gohmanfafb8902010-04-23 01:55:05 +00002317 F.BaseRegs[i] = InnerSum;
Dan Gohman572645c2010-02-12 10:34:29 +00002318 F.BaseRegs.push_back(*J);
2319 if (InsertFormula(LU, LUIdx, F))
2320 // If that formula hadn't been seen before, recurse to find more like
2321 // it.
2322 GenerateReassociations(LU, LUIdx, LU.Formulae.back(), Depth+1);
2323 }
2324 }
2325}
2326
2327/// GenerateCombinations - Generate a formula consisting of all of the
2328/// loop-dominating registers added into a single register.
2329void LSRInstance::GenerateCombinations(LSRUse &LU, unsigned LUIdx,
Dan Gohman441a3892010-02-14 18:51:39 +00002330 Formula Base) {
Dan Gohman3f46a3a2010-03-01 17:49:51 +00002331 // This method is only interesting on a plurality of registers.
Dan Gohman572645c2010-02-12 10:34:29 +00002332 if (Base.BaseRegs.size() <= 1) return;
2333
2334 Formula F = Base;
2335 F.BaseRegs.clear();
2336 SmallVector<const SCEV *, 4> Ops;
2337 for (SmallVectorImpl<const SCEV *>::const_iterator
2338 I = Base.BaseRegs.begin(), E = Base.BaseRegs.end(); I != E; ++I) {
2339 const SCEV *BaseReg = *I;
2340 if (BaseReg->properlyDominates(L->getHeader(), &DT) &&
2341 !BaseReg->hasComputableLoopEvolution(L))
2342 Ops.push_back(BaseReg);
2343 else
2344 F.BaseRegs.push_back(BaseReg);
2345 }
2346 if (Ops.size() > 1) {
Dan Gohmance947362010-02-14 18:50:49 +00002347 const SCEV *Sum = SE.getAddExpr(Ops);
2348 // TODO: If Sum is zero, it probably means ScalarEvolution missed an
2349 // opportunity to fold something. For now, just ignore such cases
Dan Gohman3f46a3a2010-03-01 17:49:51 +00002350 // rather than proceed with zero in a register.
Dan Gohmance947362010-02-14 18:50:49 +00002351 if (!Sum->isZero()) {
2352 F.BaseRegs.push_back(Sum);
2353 (void)InsertFormula(LU, LUIdx, F);
2354 }
Dan Gohman572645c2010-02-12 10:34:29 +00002355 }
2356}
2357
2358/// GenerateSymbolicOffsets - Generate reuse formulae using symbolic offsets.
2359void LSRInstance::GenerateSymbolicOffsets(LSRUse &LU, unsigned LUIdx,
2360 Formula Base) {
2361 // We can't add a symbolic offset if the address already contains one.
2362 if (Base.AM.BaseGV) return;
2363
2364 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i) {
2365 const SCEV *G = Base.BaseRegs[i];
2366 GlobalValue *GV = ExtractSymbol(G, SE);
2367 if (G->isZero() || !GV)
2368 continue;
2369 Formula F = Base;
2370 F.AM.BaseGV = GV;
2371 if (!isLegalUse(F.AM, LU.MinOffset, LU.MaxOffset,
2372 LU.Kind, LU.AccessTy, TLI))
2373 continue;
2374 F.BaseRegs[i] = G;
2375 (void)InsertFormula(LU, LUIdx, F);
2376 }
2377}
2378
2379/// GenerateConstantOffsets - Generate reuse formulae using symbolic offsets.
2380void LSRInstance::GenerateConstantOffsets(LSRUse &LU, unsigned LUIdx,
2381 Formula Base) {
2382 // TODO: For now, just add the min and max offset, because it usually isn't
2383 // worthwhile looking at everything inbetween.
Dan Gohmanc88c1a42010-07-15 15:14:45 +00002384 SmallVector<int64_t, 2> Worklist;
Dan Gohman572645c2010-02-12 10:34:29 +00002385 Worklist.push_back(LU.MinOffset);
2386 if (LU.MaxOffset != LU.MinOffset)
2387 Worklist.push_back(LU.MaxOffset);
2388
2389 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i) {
2390 const SCEV *G = Base.BaseRegs[i];
2391
2392 for (SmallVectorImpl<int64_t>::const_iterator I = Worklist.begin(),
2393 E = Worklist.end(); I != E; ++I) {
2394 Formula F = Base;
2395 F.AM.BaseOffs = (uint64_t)Base.AM.BaseOffs - *I;
2396 if (isLegalUse(F.AM, LU.MinOffset - *I, LU.MaxOffset - *I,
2397 LU.Kind, LU.AccessTy, TLI)) {
Dan Gohmanc88c1a42010-07-15 15:14:45 +00002398 // Add the offset to the base register.
2399 const SCEV *NewG = SE.getAddExpr(G, SE.getConstant(G->getType(), *I));
2400 // If it cancelled out, drop the base register, otherwise update it.
2401 if (NewG->isZero()) {
2402 std::swap(F.BaseRegs[i], F.BaseRegs.back());
2403 F.BaseRegs.pop_back();
2404 } else
2405 F.BaseRegs[i] = NewG;
Dan Gohman572645c2010-02-12 10:34:29 +00002406
2407 (void)InsertFormula(LU, LUIdx, F);
2408 }
2409 }
2410
2411 int64_t Imm = ExtractImmediate(G, SE);
2412 if (G->isZero() || Imm == 0)
2413 continue;
2414 Formula F = Base;
2415 F.AM.BaseOffs = (uint64_t)F.AM.BaseOffs + Imm;
2416 if (!isLegalUse(F.AM, LU.MinOffset, LU.MaxOffset,
2417 LU.Kind, LU.AccessTy, TLI))
2418 continue;
2419 F.BaseRegs[i] = G;
2420 (void)InsertFormula(LU, LUIdx, F);
2421 }
2422}
2423
2424/// GenerateICmpZeroScales - For ICmpZero, check to see if we can scale up
2425/// the comparison. For example, x == y -> x*c == y*c.
2426void LSRInstance::GenerateICmpZeroScales(LSRUse &LU, unsigned LUIdx,
2427 Formula Base) {
2428 if (LU.Kind != LSRUse::ICmpZero) return;
2429
2430 // Determine the integer type for the base formula.
2431 const Type *IntTy = Base.getType();
2432 if (!IntTy) return;
2433 if (SE.getTypeSizeInBits(IntTy) > 64) return;
2434
2435 // Don't do this if there is more than one offset.
2436 if (LU.MinOffset != LU.MaxOffset) return;
2437
2438 assert(!Base.AM.BaseGV && "ICmpZero use is not legal!");
2439
2440 // Check each interesting stride.
2441 for (SmallSetVector<int64_t, 8>::const_iterator
2442 I = Factors.begin(), E = Factors.end(); I != E; ++I) {
2443 int64_t Factor = *I;
Dan Gohman572645c2010-02-12 10:34:29 +00002444
2445 // Check that the multiplication doesn't overflow.
Dan Gohman2ea09e02010-06-24 16:57:52 +00002446 if (Base.AM.BaseOffs == INT64_MIN && Factor == -1)
Dan Gohman968cb932010-02-17 00:41:53 +00002447 continue;
Dan Gohman2ea09e02010-06-24 16:57:52 +00002448 int64_t NewBaseOffs = (uint64_t)Base.AM.BaseOffs * Factor;
2449 if (NewBaseOffs / Factor != Base.AM.BaseOffs)
Dan Gohman572645c2010-02-12 10:34:29 +00002450 continue;
2451
2452 // Check that multiplying with the use offset doesn't overflow.
2453 int64_t Offset = LU.MinOffset;
Dan Gohman968cb932010-02-17 00:41:53 +00002454 if (Offset == INT64_MIN && Factor == -1)
2455 continue;
Dan Gohman572645c2010-02-12 10:34:29 +00002456 Offset = (uint64_t)Offset * Factor;
Dan Gohman378c0b32010-02-17 00:42:19 +00002457 if (Offset / Factor != LU.MinOffset)
Dan Gohman572645c2010-02-12 10:34:29 +00002458 continue;
2459
Dan Gohman2ea09e02010-06-24 16:57:52 +00002460 Formula F = Base;
2461 F.AM.BaseOffs = NewBaseOffs;
2462
Dan Gohman572645c2010-02-12 10:34:29 +00002463 // Check that this scale is legal.
2464 if (!isLegalUse(F.AM, Offset, Offset, LU.Kind, LU.AccessTy, TLI))
2465 continue;
2466
2467 // Compensate for the use having MinOffset built into it.
2468 F.AM.BaseOffs = (uint64_t)F.AM.BaseOffs + Offset - LU.MinOffset;
2469
Dan Gohmandeff6212010-05-03 22:09:21 +00002470 const SCEV *FactorS = SE.getConstant(IntTy, Factor);
Dan Gohman572645c2010-02-12 10:34:29 +00002471
2472 // Check that multiplying with each base register doesn't overflow.
2473 for (size_t i = 0, e = F.BaseRegs.size(); i != e; ++i) {
2474 F.BaseRegs[i] = SE.getMulExpr(F.BaseRegs[i], FactorS);
Dan Gohmanf09b7122010-02-19 19:35:48 +00002475 if (getExactSDiv(F.BaseRegs[i], FactorS, SE) != Base.BaseRegs[i])
Dan Gohman572645c2010-02-12 10:34:29 +00002476 goto next;
2477 }
2478
2479 // Check that multiplying with the scaled register doesn't overflow.
2480 if (F.ScaledReg) {
2481 F.ScaledReg = SE.getMulExpr(F.ScaledReg, FactorS);
Dan Gohmanf09b7122010-02-19 19:35:48 +00002482 if (getExactSDiv(F.ScaledReg, FactorS, SE) != Base.ScaledReg)
Dan Gohman572645c2010-02-12 10:34:29 +00002483 continue;
2484 }
2485
2486 // If we make it here and it's legal, add it.
2487 (void)InsertFormula(LU, LUIdx, F);
2488 next:;
2489 }
2490}
2491
2492/// GenerateScales - Generate stride factor reuse formulae by making use of
2493/// scaled-offset address modes, for example.
Dan Gohmanea507f52010-05-20 19:44:23 +00002494void LSRInstance::GenerateScales(LSRUse &LU, unsigned LUIdx, Formula Base) {
Dan Gohman572645c2010-02-12 10:34:29 +00002495 // Determine the integer type for the base formula.
2496 const Type *IntTy = Base.getType();
2497 if (!IntTy) return;
2498
2499 // If this Formula already has a scaled register, we can't add another one.
2500 if (Base.AM.Scale != 0) return;
2501
2502 // Check each interesting stride.
2503 for (SmallSetVector<int64_t, 8>::const_iterator
2504 I = Factors.begin(), E = Factors.end(); I != E; ++I) {
2505 int64_t Factor = *I;
2506
2507 Base.AM.Scale = Factor;
2508 Base.AM.HasBaseReg = Base.BaseRegs.size() > 1;
2509 // Check whether this scale is going to be legal.
2510 if (!isLegalUse(Base.AM, LU.MinOffset, LU.MaxOffset,
2511 LU.Kind, LU.AccessTy, TLI)) {
2512 // As a special-case, handle special out-of-loop Basic users specially.
2513 // TODO: Reconsider this special case.
2514 if (LU.Kind == LSRUse::Basic &&
2515 isLegalUse(Base.AM, LU.MinOffset, LU.MaxOffset,
2516 LSRUse::Special, LU.AccessTy, TLI) &&
2517 LU.AllFixupsOutsideLoop)
2518 LU.Kind = LSRUse::Special;
2519 else
2520 continue;
2521 }
2522 // For an ICmpZero, negating a solitary base register won't lead to
2523 // new solutions.
2524 if (LU.Kind == LSRUse::ICmpZero &&
2525 !Base.AM.HasBaseReg && Base.AM.BaseOffs == 0 && !Base.AM.BaseGV)
2526 continue;
2527 // For each addrec base reg, apply the scale, if possible.
2528 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i)
2529 if (const SCEVAddRecExpr *AR =
2530 dyn_cast<SCEVAddRecExpr>(Base.BaseRegs[i])) {
Dan Gohmandeff6212010-05-03 22:09:21 +00002531 const SCEV *FactorS = SE.getConstant(IntTy, Factor);
Dan Gohman572645c2010-02-12 10:34:29 +00002532 if (FactorS->isZero())
2533 continue;
2534 // Divide out the factor, ignoring high bits, since we'll be
2535 // scaling the value back up in the end.
Dan Gohmanf09b7122010-02-19 19:35:48 +00002536 if (const SCEV *Quotient = getExactSDiv(AR, FactorS, SE, true)) {
Dan Gohman572645c2010-02-12 10:34:29 +00002537 // TODO: This could be optimized to avoid all the copying.
2538 Formula F = Base;
2539 F.ScaledReg = Quotient;
Dan Gohman5ce6d052010-05-20 15:17:54 +00002540 F.DeleteBaseReg(F.BaseRegs[i]);
Dan Gohman572645c2010-02-12 10:34:29 +00002541 (void)InsertFormula(LU, LUIdx, F);
2542 }
2543 }
2544 }
2545}
2546
2547/// GenerateTruncates - Generate reuse formulae from different IV types.
Dan Gohmanea507f52010-05-20 19:44:23 +00002548void LSRInstance::GenerateTruncates(LSRUse &LU, unsigned LUIdx, Formula Base) {
Dan Gohman572645c2010-02-12 10:34:29 +00002549 // This requires TargetLowering to tell us which truncates are free.
2550 if (!TLI) return;
2551
2552 // Don't bother truncating symbolic values.
2553 if (Base.AM.BaseGV) return;
2554
2555 // Determine the integer type for the base formula.
2556 const Type *DstTy = Base.getType();
2557 if (!DstTy) return;
2558 DstTy = SE.getEffectiveSCEVType(DstTy);
2559
2560 for (SmallSetVector<const Type *, 4>::const_iterator
2561 I = Types.begin(), E = Types.end(); I != E; ++I) {
2562 const Type *SrcTy = *I;
2563 if (SrcTy != DstTy && TLI->isTruncateFree(SrcTy, DstTy)) {
2564 Formula F = Base;
2565
2566 if (F.ScaledReg) F.ScaledReg = SE.getAnyExtendExpr(F.ScaledReg, *I);
2567 for (SmallVectorImpl<const SCEV *>::iterator J = F.BaseRegs.begin(),
2568 JE = F.BaseRegs.end(); J != JE; ++J)
2569 *J = SE.getAnyExtendExpr(*J, SrcTy);
2570
2571 // TODO: This assumes we've done basic processing on all uses and
2572 // have an idea what the register usage is.
2573 if (!F.hasRegsUsedByUsesOtherThan(LUIdx, RegUses))
2574 continue;
2575
2576 (void)InsertFormula(LU, LUIdx, F);
2577 }
2578 }
2579}
2580
2581namespace {
2582
Dan Gohman6020d852010-02-14 18:51:20 +00002583/// WorkItem - Helper class for GenerateCrossUseConstantOffsets. It's used to
Dan Gohman572645c2010-02-12 10:34:29 +00002584/// defer modifications so that the search phase doesn't have to worry about
2585/// the data structures moving underneath it.
2586struct WorkItem {
2587 size_t LUIdx;
2588 int64_t Imm;
2589 const SCEV *OrigReg;
2590
2591 WorkItem(size_t LI, int64_t I, const SCEV *R)
2592 : LUIdx(LI), Imm(I), OrigReg(R) {}
2593
2594 void print(raw_ostream &OS) const;
2595 void dump() const;
2596};
2597
2598}
2599
2600void WorkItem::print(raw_ostream &OS) const {
2601 OS << "in formulae referencing " << *OrigReg << " in use " << LUIdx
2602 << " , add offset " << Imm;
2603}
2604
2605void WorkItem::dump() const {
2606 print(errs()); errs() << '\n';
2607}
2608
2609/// GenerateCrossUseConstantOffsets - Look for registers which are a constant
2610/// distance apart and try to form reuse opportunities between them.
2611void LSRInstance::GenerateCrossUseConstantOffsets() {
2612 // Group the registers by their value without any added constant offset.
2613 typedef std::map<int64_t, const SCEV *> ImmMapTy;
2614 typedef DenseMap<const SCEV *, ImmMapTy> RegMapTy;
2615 RegMapTy Map;
2616 DenseMap<const SCEV *, SmallBitVector> UsedByIndicesMap;
2617 SmallVector<const SCEV *, 8> Sequence;
2618 for (RegUseTracker::const_iterator I = RegUses.begin(), E = RegUses.end();
2619 I != E; ++I) {
2620 const SCEV *Reg = *I;
2621 int64_t Imm = ExtractImmediate(Reg, SE);
2622 std::pair<RegMapTy::iterator, bool> Pair =
2623 Map.insert(std::make_pair(Reg, ImmMapTy()));
2624 if (Pair.second)
2625 Sequence.push_back(Reg);
2626 Pair.first->second.insert(std::make_pair(Imm, *I));
2627 UsedByIndicesMap[Reg] |= RegUses.getUsedByIndices(*I);
2628 }
2629
2630 // Now examine each set of registers with the same base value. Build up
2631 // a list of work to do and do the work in a separate step so that we're
2632 // not adding formulae and register counts while we're searching.
2633 SmallVector<WorkItem, 32> WorkItems;
2634 SmallSet<std::pair<size_t, int64_t>, 32> UniqueItems;
2635 for (SmallVectorImpl<const SCEV *>::const_iterator I = Sequence.begin(),
2636 E = Sequence.end(); I != E; ++I) {
2637 const SCEV *Reg = *I;
2638 const ImmMapTy &Imms = Map.find(Reg)->second;
2639
Dan Gohmancd045c02010-02-12 19:20:37 +00002640 // It's not worthwhile looking for reuse if there's only one offset.
2641 if (Imms.size() == 1)
2642 continue;
2643
Dan Gohman572645c2010-02-12 10:34:29 +00002644 DEBUG(dbgs() << "Generating cross-use offsets for " << *Reg << ':';
2645 for (ImmMapTy::const_iterator J = Imms.begin(), JE = Imms.end();
2646 J != JE; ++J)
2647 dbgs() << ' ' << J->first;
2648 dbgs() << '\n');
2649
2650 // Examine each offset.
2651 for (ImmMapTy::const_iterator J = Imms.begin(), JE = Imms.end();
2652 J != JE; ++J) {
2653 const SCEV *OrigReg = J->second;
2654
2655 int64_t JImm = J->first;
2656 const SmallBitVector &UsedByIndices = RegUses.getUsedByIndices(OrigReg);
2657
2658 if (!isa<SCEVConstant>(OrigReg) &&
2659 UsedByIndicesMap[Reg].count() == 1) {
2660 DEBUG(dbgs() << "Skipping cross-use reuse for " << *OrigReg << '\n');
2661 continue;
2662 }
2663
2664 // Conservatively examine offsets between this orig reg a few selected
2665 // other orig regs.
2666 ImmMapTy::const_iterator OtherImms[] = {
2667 Imms.begin(), prior(Imms.end()),
2668 Imms.upper_bound((Imms.begin()->first + prior(Imms.end())->first) / 2)
2669 };
2670 for (size_t i = 0, e = array_lengthof(OtherImms); i != e; ++i) {
2671 ImmMapTy::const_iterator M = OtherImms[i];
Dan Gohmancd045c02010-02-12 19:20:37 +00002672 if (M == J || M == JE) continue;
Dan Gohman572645c2010-02-12 10:34:29 +00002673
2674 // Compute the difference between the two.
2675 int64_t Imm = (uint64_t)JImm - M->first;
2676 for (int LUIdx = UsedByIndices.find_first(); LUIdx != -1;
2677 LUIdx = UsedByIndices.find_next(LUIdx))
2678 // Make a memo of this use, offset, and register tuple.
2679 if (UniqueItems.insert(std::make_pair(LUIdx, Imm)))
2680 WorkItems.push_back(WorkItem(LUIdx, Imm, OrigReg));
Evan Cheng586f69a2009-11-12 07:35:05 +00002681 }
2682 }
2683 }
2684
Dan Gohman572645c2010-02-12 10:34:29 +00002685 Map.clear();
2686 Sequence.clear();
2687 UsedByIndicesMap.clear();
2688 UniqueItems.clear();
2689
2690 // Now iterate through the worklist and add new formulae.
2691 for (SmallVectorImpl<WorkItem>::const_iterator I = WorkItems.begin(),
2692 E = WorkItems.end(); I != E; ++I) {
2693 const WorkItem &WI = *I;
2694 size_t LUIdx = WI.LUIdx;
2695 LSRUse &LU = Uses[LUIdx];
2696 int64_t Imm = WI.Imm;
2697 const SCEV *OrigReg = WI.OrigReg;
2698
2699 const Type *IntTy = SE.getEffectiveSCEVType(OrigReg->getType());
2700 const SCEV *NegImmS = SE.getSCEV(ConstantInt::get(IntTy, -(uint64_t)Imm));
2701 unsigned BitWidth = SE.getTypeSizeInBits(IntTy);
2702
Dan Gohman3f46a3a2010-03-01 17:49:51 +00002703 // TODO: Use a more targeted data structure.
Dan Gohman572645c2010-02-12 10:34:29 +00002704 for (size_t L = 0, LE = LU.Formulae.size(); L != LE; ++L) {
Dan Gohman9f383eb2010-05-20 22:25:20 +00002705 const Formula &F = LU.Formulae[L];
Dan Gohman572645c2010-02-12 10:34:29 +00002706 // Use the immediate in the scaled register.
2707 if (F.ScaledReg == OrigReg) {
2708 int64_t Offs = (uint64_t)F.AM.BaseOffs +
2709 Imm * (uint64_t)F.AM.Scale;
2710 // Don't create 50 + reg(-50).
2711 if (F.referencesReg(SE.getSCEV(
2712 ConstantInt::get(IntTy, -(uint64_t)Offs))))
2713 continue;
2714 Formula NewF = F;
2715 NewF.AM.BaseOffs = Offs;
2716 if (!isLegalUse(NewF.AM, LU.MinOffset, LU.MaxOffset,
2717 LU.Kind, LU.AccessTy, TLI))
2718 continue;
2719 NewF.ScaledReg = SE.getAddExpr(NegImmS, NewF.ScaledReg);
2720
2721 // If the new scale is a constant in a register, and adding the constant
2722 // value to the immediate would produce a value closer to zero than the
2723 // immediate itself, then the formula isn't worthwhile.
2724 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(NewF.ScaledReg))
2725 if (C->getValue()->getValue().isNegative() !=
2726 (NewF.AM.BaseOffs < 0) &&
2727 (C->getValue()->getValue().abs() * APInt(BitWidth, F.AM.Scale))
Dan Gohmane0567812010-04-08 23:03:40 +00002728 .ule(abs64(NewF.AM.BaseOffs)))
Dan Gohman572645c2010-02-12 10:34:29 +00002729 continue;
2730
2731 // OK, looks good.
2732 (void)InsertFormula(LU, LUIdx, NewF);
2733 } else {
2734 // Use the immediate in a base register.
2735 for (size_t N = 0, NE = F.BaseRegs.size(); N != NE; ++N) {
2736 const SCEV *BaseReg = F.BaseRegs[N];
2737 if (BaseReg != OrigReg)
2738 continue;
2739 Formula NewF = F;
2740 NewF.AM.BaseOffs = (uint64_t)NewF.AM.BaseOffs + Imm;
2741 if (!isLegalUse(NewF.AM, LU.MinOffset, LU.MaxOffset,
2742 LU.Kind, LU.AccessTy, TLI))
2743 continue;
2744 NewF.BaseRegs[N] = SE.getAddExpr(NegImmS, BaseReg);
2745
2746 // If the new formula has a constant in a register, and adding the
2747 // constant value to the immediate would produce a value closer to
2748 // zero than the immediate itself, then the formula isn't worthwhile.
2749 for (SmallVectorImpl<const SCEV *>::const_iterator
2750 J = NewF.BaseRegs.begin(), JE = NewF.BaseRegs.end();
2751 J != JE; ++J)
2752 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(*J))
Dan Gohman360026f2010-05-18 23:48:08 +00002753 if ((C->getValue()->getValue() + NewF.AM.BaseOffs).abs().slt(
2754 abs64(NewF.AM.BaseOffs)) &&
2755 (C->getValue()->getValue() +
2756 NewF.AM.BaseOffs).countTrailingZeros() >=
2757 CountTrailingZeros_64(NewF.AM.BaseOffs))
Dan Gohman572645c2010-02-12 10:34:29 +00002758 goto skip_formula;
2759
2760 // Ok, looks good.
2761 (void)InsertFormula(LU, LUIdx, NewF);
2762 break;
2763 skip_formula:;
2764 }
2765 }
2766 }
2767 }
Dale Johannesenc1acc3f2009-05-11 17:15:42 +00002768}
2769
Dan Gohman572645c2010-02-12 10:34:29 +00002770/// GenerateAllReuseFormulae - Generate formulae for each use.
2771void
2772LSRInstance::GenerateAllReuseFormulae() {
Dan Gohmanc2385a02010-02-16 01:42:53 +00002773 // This is split into multiple loops so that hasRegsUsedByUsesOtherThan
Dan Gohman572645c2010-02-12 10:34:29 +00002774 // queries are more precise.
2775 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
2776 LSRUse &LU = Uses[LUIdx];
2777 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2778 GenerateReassociations(LU, LUIdx, LU.Formulae[i]);
2779 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2780 GenerateCombinations(LU, LUIdx, LU.Formulae[i]);
2781 }
2782 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
2783 LSRUse &LU = Uses[LUIdx];
2784 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2785 GenerateSymbolicOffsets(LU, LUIdx, LU.Formulae[i]);
2786 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2787 GenerateConstantOffsets(LU, LUIdx, LU.Formulae[i]);
2788 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2789 GenerateICmpZeroScales(LU, LUIdx, LU.Formulae[i]);
2790 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2791 GenerateScales(LU, LUIdx, LU.Formulae[i]);
Dan Gohmanc2385a02010-02-16 01:42:53 +00002792 }
2793 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
2794 LSRUse &LU = Uses[LUIdx];
Dan Gohman572645c2010-02-12 10:34:29 +00002795 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
2796 GenerateTruncates(LU, LUIdx, LU.Formulae[i]);
2797 }
2798
2799 GenerateCrossUseConstantOffsets();
2800}
2801
2802/// If their are multiple formulae with the same set of registers used
2803/// by other uses, pick the best one and delete the others.
2804void LSRInstance::FilterOutUndesirableDedicatedRegisters() {
2805#ifndef NDEBUG
Dan Gohmanc6519f92010-05-20 20:05:31 +00002806 bool ChangedFormulae = false;
Dan Gohman572645c2010-02-12 10:34:29 +00002807#endif
2808
2809 // Collect the best formula for each unique set of shared registers. This
2810 // is reset for each use.
2811 typedef DenseMap<SmallVector<const SCEV *, 2>, size_t, UniquifierDenseMapInfo>
2812 BestFormulaeTy;
2813 BestFormulaeTy BestFormulae;
2814
2815 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
2816 LSRUse &LU = Uses[LUIdx];
2817 FormulaSorter Sorter(L, LU, SE, DT);
Dan Gohmanea507f52010-05-20 19:44:23 +00002818 DEBUG(dbgs() << "Filtering for use "; LU.print(dbgs()); dbgs() << '\n');
Dan Gohman572645c2010-02-12 10:34:29 +00002819
Dan Gohmanb2df4332010-05-18 23:42:37 +00002820 bool Any = false;
Dan Gohman572645c2010-02-12 10:34:29 +00002821 for (size_t FIdx = 0, NumForms = LU.Formulae.size();
2822 FIdx != NumForms; ++FIdx) {
2823 Formula &F = LU.Formulae[FIdx];
2824
2825 SmallVector<const SCEV *, 2> Key;
2826 for (SmallVectorImpl<const SCEV *>::const_iterator J = F.BaseRegs.begin(),
2827 JE = F.BaseRegs.end(); J != JE; ++J) {
2828 const SCEV *Reg = *J;
2829 if (RegUses.isRegUsedByUsesOtherThan(Reg, LUIdx))
2830 Key.push_back(Reg);
2831 }
2832 if (F.ScaledReg &&
2833 RegUses.isRegUsedByUsesOtherThan(F.ScaledReg, LUIdx))
2834 Key.push_back(F.ScaledReg);
2835 // Unstable sort by host order ok, because this is only used for
2836 // uniquifying.
2837 std::sort(Key.begin(), Key.end());
2838
2839 std::pair<BestFormulaeTy::const_iterator, bool> P =
2840 BestFormulae.insert(std::make_pair(Key, FIdx));
2841 if (!P.second) {
2842 Formula &Best = LU.Formulae[P.first->second];
2843 if (Sorter.operator()(F, Best))
2844 std::swap(F, Best);
Dan Gohman6458ff92010-05-18 22:37:37 +00002845 DEBUG(dbgs() << " Filtering out formula "; F.print(dbgs());
Dan Gohman572645c2010-02-12 10:34:29 +00002846 dbgs() << "\n"
Dan Gohman6458ff92010-05-18 22:37:37 +00002847 " in favor of formula "; Best.print(dbgs());
Dan Gohman572645c2010-02-12 10:34:29 +00002848 dbgs() << '\n');
2849#ifndef NDEBUG
Dan Gohmanc6519f92010-05-20 20:05:31 +00002850 ChangedFormulae = true;
Dan Gohman572645c2010-02-12 10:34:29 +00002851#endif
Dan Gohmand69d6282010-05-18 22:39:15 +00002852 LU.DeleteFormula(F);
Dan Gohman572645c2010-02-12 10:34:29 +00002853 --FIdx;
2854 --NumForms;
Dan Gohmanb2df4332010-05-18 23:42:37 +00002855 Any = true;
Dan Gohman572645c2010-02-12 10:34:29 +00002856 continue;
2857 }
Dan Gohman59dc6032010-05-07 23:36:59 +00002858 }
2859
Dan Gohman57aaa0b2010-05-18 23:55:57 +00002860 // Now that we've filtered out some formulae, recompute the Regs set.
Dan Gohmanb2df4332010-05-18 23:42:37 +00002861 if (Any)
2862 LU.RecomputeRegs(LUIdx, RegUses);
Dan Gohman59dc6032010-05-07 23:36:59 +00002863
2864 // Reset this to prepare for the next use.
Dan Gohman572645c2010-02-12 10:34:29 +00002865 BestFormulae.clear();
2866 }
2867
Dan Gohmanc6519f92010-05-20 20:05:31 +00002868 DEBUG(if (ChangedFormulae) {
Dan Gohman9214b822010-02-13 02:06:02 +00002869 dbgs() << "\n"
2870 "After filtering out undesirable candidates:\n";
Dan Gohman572645c2010-02-12 10:34:29 +00002871 print_uses(dbgs());
2872 });
2873}
2874
Dan Gohmand079c302010-05-18 22:51:59 +00002875// This is a rough guess that seems to work fairly well.
2876static const size_t ComplexityLimit = UINT16_MAX;
2877
2878/// EstimateSearchSpaceComplexity - Estimate the worst-case number of
2879/// solutions the solver might have to consider. It almost never considers
2880/// this many solutions because it prune the search space, but the pruning
2881/// isn't always sufficient.
2882size_t LSRInstance::EstimateSearchSpaceComplexity() const {
2883 uint32_t Power = 1;
2884 for (SmallVectorImpl<LSRUse>::const_iterator I = Uses.begin(),
2885 E = Uses.end(); I != E; ++I) {
2886 size_t FSize = I->Formulae.size();
2887 if (FSize >= ComplexityLimit) {
2888 Power = ComplexityLimit;
2889 break;
2890 }
2891 Power *= FSize;
2892 if (Power >= ComplexityLimit)
2893 break;
2894 }
2895 return Power;
2896}
2897
Dan Gohman3f46a3a2010-03-01 17:49:51 +00002898/// NarrowSearchSpaceUsingHeuristics - If there are an extraordinary number of
Dan Gohman572645c2010-02-12 10:34:29 +00002899/// formulae to choose from, use some rough heuristics to prune down the number
Dan Gohman3f46a3a2010-03-01 17:49:51 +00002900/// of formulae. This keeps the main solver from taking an extraordinary amount
Dan Gohman572645c2010-02-12 10:34:29 +00002901/// of time in some worst-case scenarios.
2902void LSRInstance::NarrowSearchSpaceUsingHeuristics() {
Dan Gohmana2086b32010-05-19 23:43:12 +00002903 if (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
2904 DEBUG(dbgs() << "The search space is too complex.\n");
2905
2906 DEBUG(dbgs() << "Narrowing the search space by eliminating formulae "
2907 "which use a superset of registers used by other "
2908 "formulae.\n");
2909
2910 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
2911 LSRUse &LU = Uses[LUIdx];
2912 bool Any = false;
2913 for (size_t i = 0, e = LU.Formulae.size(); i != e; ++i) {
2914 Formula &F = LU.Formulae[i];
Dan Gohmanf7ff37d2010-05-20 20:00:41 +00002915 // Look for a formula with a constant or GV in a register. If the use
2916 // also has a formula with that same value in an immediate field,
2917 // delete the one that uses a register.
Dan Gohmana2086b32010-05-19 23:43:12 +00002918 for (SmallVectorImpl<const SCEV *>::const_iterator
2919 I = F.BaseRegs.begin(), E = F.BaseRegs.end(); I != E; ++I) {
2920 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(*I)) {
2921 Formula NewF = F;
2922 NewF.AM.BaseOffs += C->getValue()->getSExtValue();
2923 NewF.BaseRegs.erase(NewF.BaseRegs.begin() +
2924 (I - F.BaseRegs.begin()));
2925 if (LU.HasFormulaWithSameRegs(NewF)) {
2926 DEBUG(dbgs() << " Deleting "; F.print(dbgs()); dbgs() << '\n');
2927 LU.DeleteFormula(F);
2928 --i;
2929 --e;
2930 Any = true;
2931 break;
2932 }
2933 } else if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(*I)) {
2934 if (GlobalValue *GV = dyn_cast<GlobalValue>(U->getValue()))
2935 if (!F.AM.BaseGV) {
2936 Formula NewF = F;
2937 NewF.AM.BaseGV = GV;
2938 NewF.BaseRegs.erase(NewF.BaseRegs.begin() +
2939 (I - F.BaseRegs.begin()));
2940 if (LU.HasFormulaWithSameRegs(NewF)) {
2941 DEBUG(dbgs() << " Deleting "; F.print(dbgs());
2942 dbgs() << '\n');
2943 LU.DeleteFormula(F);
2944 --i;
2945 --e;
2946 Any = true;
2947 break;
2948 }
2949 }
2950 }
2951 }
2952 }
2953 if (Any)
2954 LU.RecomputeRegs(LUIdx, RegUses);
2955 }
2956
2957 DEBUG(dbgs() << "After pre-selection:\n";
2958 print_uses(dbgs()));
2959 }
2960
2961 if (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
2962 DEBUG(dbgs() << "The search space is too complex.\n");
2963
2964 DEBUG(dbgs() << "Narrowing the search space by assuming that uses "
2965 "separated by a constant offset will use the same "
2966 "registers.\n");
2967
Dan Gohmanf7ff37d2010-05-20 20:00:41 +00002968 // This is especially useful for unrolled loops.
2969
Dan Gohmana2086b32010-05-19 23:43:12 +00002970 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
2971 LSRUse &LU = Uses[LUIdx];
Dan Gohman402d4352010-05-20 20:33:18 +00002972 for (SmallVectorImpl<Formula>::const_iterator I = LU.Formulae.begin(),
2973 E = LU.Formulae.end(); I != E; ++I) {
2974 const Formula &F = *I;
Dan Gohmana2086b32010-05-19 23:43:12 +00002975 if (F.AM.BaseOffs != 0 && F.AM.Scale == 0) {
2976 if (LSRUse *LUThatHas = FindUseWithSimilarFormula(F, LU)) {
2977 if (reconcileNewOffset(*LUThatHas, F.AM.BaseOffs,
2978 /*HasBaseReg=*/false,
2979 LU.Kind, LU.AccessTy)) {
2980 DEBUG(dbgs() << " Deleting use "; LU.print(dbgs());
2981 dbgs() << '\n');
2982
2983 LUThatHas->AllFixupsOutsideLoop &= LU.AllFixupsOutsideLoop;
2984
2985 // Delete formulae from the new use which are no longer legal.
2986 bool Any = false;
2987 for (size_t i = 0, e = LUThatHas->Formulae.size(); i != e; ++i) {
2988 Formula &F = LUThatHas->Formulae[i];
2989 if (!isLegalUse(F.AM,
2990 LUThatHas->MinOffset, LUThatHas->MaxOffset,
2991 LUThatHas->Kind, LUThatHas->AccessTy, TLI)) {
2992 DEBUG(dbgs() << " Deleting "; F.print(dbgs());
2993 dbgs() << '\n');
2994 LUThatHas->DeleteFormula(F);
2995 --i;
2996 --e;
2997 Any = true;
2998 }
2999 }
3000 if (Any)
3001 LUThatHas->RecomputeRegs(LUThatHas - &Uses.front(), RegUses);
3002
3003 // Update the relocs to reference the new use.
Dan Gohman402d4352010-05-20 20:33:18 +00003004 for (SmallVectorImpl<LSRFixup>::iterator I = Fixups.begin(),
3005 E = Fixups.end(); I != E; ++I) {
3006 LSRFixup &Fixup = *I;
3007 if (Fixup.LUIdx == LUIdx) {
3008 Fixup.LUIdx = LUThatHas - &Uses.front();
3009 Fixup.Offset += F.AM.BaseOffs;
Dan Gohmanef4308d2010-07-15 20:12:42 +00003010 DEBUG(dbgs() << "New fixup has offset "
Dan Gohman402d4352010-05-20 20:33:18 +00003011 << Fixup.Offset << '\n');
Dan Gohmana2086b32010-05-19 23:43:12 +00003012 }
Dan Gohman402d4352010-05-20 20:33:18 +00003013 if (Fixup.LUIdx == NumUses-1)
3014 Fixup.LUIdx = LUIdx;
Dan Gohmana2086b32010-05-19 23:43:12 +00003015 }
3016
3017 // Delete the old use.
Dan Gohman5ce6d052010-05-20 15:17:54 +00003018 DeleteUse(LU);
Dan Gohmana2086b32010-05-19 23:43:12 +00003019 --LUIdx;
3020 --NumUses;
3021 break;
3022 }
3023 }
3024 }
3025 }
3026 }
3027
3028 DEBUG(dbgs() << "After pre-selection:\n";
3029 print_uses(dbgs()));
3030 }
3031
Dan Gohman76c315a2010-05-20 20:52:00 +00003032 // With all other options exhausted, loop until the system is simple
3033 // enough to handle.
Dan Gohman572645c2010-02-12 10:34:29 +00003034 SmallPtrSet<const SCEV *, 4> Taken;
Dan Gohmand079c302010-05-18 22:51:59 +00003035 while (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
Dan Gohman572645c2010-02-12 10:34:29 +00003036 // Ok, we have too many of formulae on our hands to conveniently handle.
3037 // Use a rough heuristic to thin out the list.
Dan Gohman0da751b2010-05-18 22:41:32 +00003038 DEBUG(dbgs() << "The search space is too complex.\n");
Dan Gohman572645c2010-02-12 10:34:29 +00003039
3040 // Pick the register which is used by the most LSRUses, which is likely
3041 // to be a good reuse register candidate.
3042 const SCEV *Best = 0;
3043 unsigned BestNum = 0;
3044 for (RegUseTracker::const_iterator I = RegUses.begin(), E = RegUses.end();
3045 I != E; ++I) {
3046 const SCEV *Reg = *I;
3047 if (Taken.count(Reg))
3048 continue;
3049 if (!Best)
3050 Best = Reg;
3051 else {
3052 unsigned Count = RegUses.getUsedByIndices(Reg).count();
3053 if (Count > BestNum) {
3054 Best = Reg;
3055 BestNum = Count;
3056 }
3057 }
3058 }
3059
3060 DEBUG(dbgs() << "Narrowing the search space by assuming " << *Best
Dan Gohman3f46a3a2010-03-01 17:49:51 +00003061 << " will yield profitable reuse.\n");
Dan Gohman572645c2010-02-12 10:34:29 +00003062 Taken.insert(Best);
3063
3064 // In any use with formulae which references this register, delete formulae
3065 // which don't reference it.
Dan Gohmanb2df4332010-05-18 23:42:37 +00003066 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
3067 LSRUse &LU = Uses[LUIdx];
Dan Gohman572645c2010-02-12 10:34:29 +00003068 if (!LU.Regs.count(Best)) continue;
3069
Dan Gohmanb2df4332010-05-18 23:42:37 +00003070 bool Any = false;
Dan Gohman572645c2010-02-12 10:34:29 +00003071 for (size_t i = 0, e = LU.Formulae.size(); i != e; ++i) {
3072 Formula &F = LU.Formulae[i];
3073 if (!F.referencesReg(Best)) {
3074 DEBUG(dbgs() << " Deleting "; F.print(dbgs()); dbgs() << '\n');
Dan Gohmand69d6282010-05-18 22:39:15 +00003075 LU.DeleteFormula(F);
Dan Gohman572645c2010-02-12 10:34:29 +00003076 --e;
3077 --i;
Dan Gohmanb2df4332010-05-18 23:42:37 +00003078 Any = true;
Dan Gohman59dc6032010-05-07 23:36:59 +00003079 assert(e != 0 && "Use has no formulae left! Is Regs inconsistent?");
Dan Gohman572645c2010-02-12 10:34:29 +00003080 continue;
3081 }
Dan Gohman572645c2010-02-12 10:34:29 +00003082 }
Dan Gohmanb2df4332010-05-18 23:42:37 +00003083
3084 if (Any)
3085 LU.RecomputeRegs(LUIdx, RegUses);
Dan Gohman572645c2010-02-12 10:34:29 +00003086 }
3087
3088 DEBUG(dbgs() << "After pre-selection:\n";
3089 print_uses(dbgs()));
3090 }
3091}
3092
3093/// SolveRecurse - This is the recursive solver.
3094void LSRInstance::SolveRecurse(SmallVectorImpl<const Formula *> &Solution,
3095 Cost &SolutionCost,
3096 SmallVectorImpl<const Formula *> &Workspace,
3097 const Cost &CurCost,
3098 const SmallPtrSet<const SCEV *, 16> &CurRegs,
3099 DenseSet<const SCEV *> &VisitedRegs) const {
3100 // Some ideas:
3101 // - prune more:
3102 // - use more aggressive filtering
3103 // - sort the formula so that the most profitable solutions are found first
3104 // - sort the uses too
3105 // - search faster:
Dan Gohman3f46a3a2010-03-01 17:49:51 +00003106 // - don't compute a cost, and then compare. compare while computing a cost
Dan Gohman572645c2010-02-12 10:34:29 +00003107 // and bail early.
3108 // - track register sets with SmallBitVector
3109
3110 const LSRUse &LU = Uses[Workspace.size()];
3111
3112 // If this use references any register that's already a part of the
3113 // in-progress solution, consider it a requirement that a formula must
3114 // reference that register in order to be considered. This prunes out
3115 // unprofitable searching.
3116 SmallSetVector<const SCEV *, 4> ReqRegs;
3117 for (SmallPtrSet<const SCEV *, 16>::const_iterator I = CurRegs.begin(),
3118 E = CurRegs.end(); I != E; ++I)
Dan Gohman9214b822010-02-13 02:06:02 +00003119 if (LU.Regs.count(*I))
Dan Gohman572645c2010-02-12 10:34:29 +00003120 ReqRegs.insert(*I);
Dan Gohman572645c2010-02-12 10:34:29 +00003121
Dan Gohman9214b822010-02-13 02:06:02 +00003122 bool AnySatisfiedReqRegs = false;
Dan Gohman572645c2010-02-12 10:34:29 +00003123 SmallPtrSet<const SCEV *, 16> NewRegs;
3124 Cost NewCost;
Dan Gohman9214b822010-02-13 02:06:02 +00003125retry:
Dan Gohman572645c2010-02-12 10:34:29 +00003126 for (SmallVectorImpl<Formula>::const_iterator I = LU.Formulae.begin(),
3127 E = LU.Formulae.end(); I != E; ++I) {
3128 const Formula &F = *I;
3129
3130 // Ignore formulae which do not use any of the required registers.
3131 for (SmallSetVector<const SCEV *, 4>::const_iterator J = ReqRegs.begin(),
3132 JE = ReqRegs.end(); J != JE; ++J) {
3133 const SCEV *Reg = *J;
3134 if ((!F.ScaledReg || F.ScaledReg != Reg) &&
3135 std::find(F.BaseRegs.begin(), F.BaseRegs.end(), Reg) ==
3136 F.BaseRegs.end())
3137 goto skip;
3138 }
Dan Gohman9214b822010-02-13 02:06:02 +00003139 AnySatisfiedReqRegs = true;
Dan Gohman572645c2010-02-12 10:34:29 +00003140
3141 // Evaluate the cost of the current formula. If it's already worse than
3142 // the current best, prune the search at that point.
3143 NewCost = CurCost;
3144 NewRegs = CurRegs;
3145 NewCost.RateFormula(F, NewRegs, VisitedRegs, L, LU.Offsets, SE, DT);
3146 if (NewCost < SolutionCost) {
3147 Workspace.push_back(&F);
3148 if (Workspace.size() != Uses.size()) {
3149 SolveRecurse(Solution, SolutionCost, Workspace, NewCost,
3150 NewRegs, VisitedRegs);
3151 if (F.getNumRegs() == 1 && Workspace.size() == 1)
3152 VisitedRegs.insert(F.ScaledReg ? F.ScaledReg : F.BaseRegs[0]);
3153 } else {
3154 DEBUG(dbgs() << "New best at "; NewCost.print(dbgs());
3155 dbgs() << ". Regs:";
3156 for (SmallPtrSet<const SCEV *, 16>::const_iterator
3157 I = NewRegs.begin(), E = NewRegs.end(); I != E; ++I)
3158 dbgs() << ' ' << **I;
3159 dbgs() << '\n');
3160
3161 SolutionCost = NewCost;
3162 Solution = Workspace;
3163 }
3164 Workspace.pop_back();
3165 }
3166 skip:;
3167 }
Dan Gohman9214b822010-02-13 02:06:02 +00003168
3169 // If none of the formulae had all of the required registers, relax the
3170 // constraint so that we don't exclude all formulae.
3171 if (!AnySatisfiedReqRegs) {
Dan Gohman59dc6032010-05-07 23:36:59 +00003172 assert(!ReqRegs.empty() && "Solver failed even without required registers");
Dan Gohman9214b822010-02-13 02:06:02 +00003173 ReqRegs.clear();
3174 goto retry;
3175 }
Dan Gohman572645c2010-02-12 10:34:29 +00003176}
3177
Dan Gohman76c315a2010-05-20 20:52:00 +00003178/// Solve - Choose one formula from each use. Return the results in the given
3179/// Solution vector.
Dan Gohman572645c2010-02-12 10:34:29 +00003180void LSRInstance::Solve(SmallVectorImpl<const Formula *> &Solution) const {
3181 SmallVector<const Formula *, 8> Workspace;
3182 Cost SolutionCost;
3183 SolutionCost.Loose();
3184 Cost CurCost;
3185 SmallPtrSet<const SCEV *, 16> CurRegs;
3186 DenseSet<const SCEV *> VisitedRegs;
3187 Workspace.reserve(Uses.size());
3188
Dan Gohmanf7ff37d2010-05-20 20:00:41 +00003189 // SolveRecurse does all the work.
Dan Gohman572645c2010-02-12 10:34:29 +00003190 SolveRecurse(Solution, SolutionCost, Workspace, CurCost,
3191 CurRegs, VisitedRegs);
3192
3193 // Ok, we've now made all our decisions.
3194 DEBUG(dbgs() << "\n"
3195 "The chosen solution requires "; SolutionCost.print(dbgs());
3196 dbgs() << ":\n";
3197 for (size_t i = 0, e = Uses.size(); i != e; ++i) {
3198 dbgs() << " ";
3199 Uses[i].print(dbgs());
3200 dbgs() << "\n"
3201 " ";
3202 Solution[i]->print(dbgs());
3203 dbgs() << '\n';
3204 });
Dan Gohmana5528782010-05-20 20:59:23 +00003205
3206 assert(Solution.size() == Uses.size() && "Malformed solution!");
Dan Gohman572645c2010-02-12 10:34:29 +00003207}
3208
Dan Gohmane5f76872010-04-09 22:07:05 +00003209/// HoistInsertPosition - Helper for AdjustInsertPositionForExpand. Climb up
3210/// the dominator tree far as we can go while still being dominated by the
3211/// input positions. This helps canonicalize the insert position, which
3212/// encourages sharing.
3213BasicBlock::iterator
3214LSRInstance::HoistInsertPosition(BasicBlock::iterator IP,
3215 const SmallVectorImpl<Instruction *> &Inputs)
3216 const {
3217 for (;;) {
3218 const Loop *IPLoop = LI.getLoopFor(IP->getParent());
3219 unsigned IPLoopDepth = IPLoop ? IPLoop->getLoopDepth() : 0;
3220
3221 BasicBlock *IDom;
Dan Gohmand974a0e2010-05-20 20:00:25 +00003222 for (DomTreeNode *Rung = DT.getNode(IP->getParent()); ; ) {
Dan Gohman0fe46d92010-05-20 22:46:54 +00003223 if (!Rung) return IP;
Dan Gohmand974a0e2010-05-20 20:00:25 +00003224 Rung = Rung->getIDom();
3225 if (!Rung) return IP;
3226 IDom = Rung->getBlock();
Dan Gohmane5f76872010-04-09 22:07:05 +00003227
3228 // Don't climb into a loop though.
3229 const Loop *IDomLoop = LI.getLoopFor(IDom);
3230 unsigned IDomDepth = IDomLoop ? IDomLoop->getLoopDepth() : 0;
3231 if (IDomDepth <= IPLoopDepth &&
3232 (IDomDepth != IPLoopDepth || IDomLoop == IPLoop))
3233 break;
3234 }
3235
3236 bool AllDominate = true;
3237 Instruction *BetterPos = 0;
3238 Instruction *Tentative = IDom->getTerminator();
3239 for (SmallVectorImpl<Instruction *>::const_iterator I = Inputs.begin(),
3240 E = Inputs.end(); I != E; ++I) {
3241 Instruction *Inst = *I;
3242 if (Inst == Tentative || !DT.dominates(Inst, Tentative)) {
3243 AllDominate = false;
3244 break;
3245 }
3246 // Attempt to find an insert position in the middle of the block,
3247 // instead of at the end, so that it can be used for other expansions.
3248 if (IDom == Inst->getParent() &&
3249 (!BetterPos || DT.dominates(BetterPos, Inst)))
Douglas Gregor7d9663c2010-05-11 06:17:44 +00003250 BetterPos = llvm::next(BasicBlock::iterator(Inst));
Dan Gohmane5f76872010-04-09 22:07:05 +00003251 }
3252 if (!AllDominate)
3253 break;
3254 if (BetterPos)
3255 IP = BetterPos;
3256 else
3257 IP = Tentative;
3258 }
3259
3260 return IP;
3261}
3262
3263/// AdjustInsertPositionForExpand - Determine an input position which will be
Dan Gohmand96eae82010-04-09 02:00:38 +00003264/// dominated by the operands and which will dominate the result.
3265BasicBlock::iterator
Dan Gohmane5f76872010-04-09 22:07:05 +00003266LSRInstance::AdjustInsertPositionForExpand(BasicBlock::iterator IP,
3267 const LSRFixup &LF,
3268 const LSRUse &LU) const {
Dan Gohmand96eae82010-04-09 02:00:38 +00003269 // Collect some instructions which must be dominated by the
Dan Gohman448db1c2010-04-07 22:27:08 +00003270 // expanding replacement. These must be dominated by any operands that
Dan Gohman572645c2010-02-12 10:34:29 +00003271 // will be required in the expansion.
3272 SmallVector<Instruction *, 4> Inputs;
3273 if (Instruction *I = dyn_cast<Instruction>(LF.OperandValToReplace))
3274 Inputs.push_back(I);
3275 if (LU.Kind == LSRUse::ICmpZero)
3276 if (Instruction *I =
3277 dyn_cast<Instruction>(cast<ICmpInst>(LF.UserInst)->getOperand(1)))
3278 Inputs.push_back(I);
Dan Gohman448db1c2010-04-07 22:27:08 +00003279 if (LF.PostIncLoops.count(L)) {
3280 if (LF.isUseFullyOutsideLoop(L))
Dan Gohman069d6f32010-03-02 01:59:21 +00003281 Inputs.push_back(L->getLoopLatch()->getTerminator());
3282 else
3283 Inputs.push_back(IVIncInsertPos);
3284 }
Dan Gohman701a4ae2010-04-08 05:57:57 +00003285 // The expansion must also be dominated by the increment positions of any
3286 // loops it for which it is using post-inc mode.
3287 for (PostIncLoopSet::const_iterator I = LF.PostIncLoops.begin(),
3288 E = LF.PostIncLoops.end(); I != E; ++I) {
3289 const Loop *PIL = *I;
3290 if (PIL == L) continue;
3291
Dan Gohmane5f76872010-04-09 22:07:05 +00003292 // Be dominated by the loop exit.
Dan Gohman701a4ae2010-04-08 05:57:57 +00003293 SmallVector<BasicBlock *, 4> ExitingBlocks;
3294 PIL->getExitingBlocks(ExitingBlocks);
3295 if (!ExitingBlocks.empty()) {
3296 BasicBlock *BB = ExitingBlocks[0];
3297 for (unsigned i = 1, e = ExitingBlocks.size(); i != e; ++i)
3298 BB = DT.findNearestCommonDominator(BB, ExitingBlocks[i]);
3299 Inputs.push_back(BB->getTerminator());
3300 }
3301 }
Dan Gohman572645c2010-02-12 10:34:29 +00003302
3303 // Then, climb up the immediate dominator tree as far as we can go while
3304 // still being dominated by the input positions.
Dan Gohmane5f76872010-04-09 22:07:05 +00003305 IP = HoistInsertPosition(IP, Inputs);
Dan Gohmand96eae82010-04-09 02:00:38 +00003306
3307 // Don't insert instructions before PHI nodes.
Dan Gohman572645c2010-02-12 10:34:29 +00003308 while (isa<PHINode>(IP)) ++IP;
Dan Gohmand96eae82010-04-09 02:00:38 +00003309
3310 // Ignore debug intrinsics.
Dan Gohman449f31c2010-03-26 00:33:27 +00003311 while (isa<DbgInfoIntrinsic>(IP)) ++IP;
Dan Gohman572645c2010-02-12 10:34:29 +00003312
Dan Gohmand96eae82010-04-09 02:00:38 +00003313 return IP;
3314}
3315
Dan Gohman76c315a2010-05-20 20:52:00 +00003316/// Expand - Emit instructions for the leading candidate expression for this
3317/// LSRUse (this is called "expanding").
Dan Gohmand96eae82010-04-09 02:00:38 +00003318Value *LSRInstance::Expand(const LSRFixup &LF,
3319 const Formula &F,
3320 BasicBlock::iterator IP,
3321 SCEVExpander &Rewriter,
3322 SmallVectorImpl<WeakVH> &DeadInsts) const {
3323 const LSRUse &LU = Uses[LF.LUIdx];
3324
3325 // Determine an input position which will be dominated by the operands and
3326 // which will dominate the result.
Dan Gohmane5f76872010-04-09 22:07:05 +00003327 IP = AdjustInsertPositionForExpand(IP, LF, LU);
Dan Gohmand96eae82010-04-09 02:00:38 +00003328
Dan Gohman572645c2010-02-12 10:34:29 +00003329 // Inform the Rewriter if we have a post-increment use, so that it can
3330 // perform an advantageous expansion.
Dan Gohman448db1c2010-04-07 22:27:08 +00003331 Rewriter.setPostInc(LF.PostIncLoops);
Dan Gohman572645c2010-02-12 10:34:29 +00003332
3333 // This is the type that the user actually needs.
3334 const Type *OpTy = LF.OperandValToReplace->getType();
3335 // This will be the type that we'll initially expand to.
3336 const Type *Ty = F.getType();
3337 if (!Ty)
3338 // No type known; just expand directly to the ultimate type.
3339 Ty = OpTy;
3340 else if (SE.getEffectiveSCEVType(Ty) == SE.getEffectiveSCEVType(OpTy))
3341 // Expand directly to the ultimate type if it's the right size.
3342 Ty = OpTy;
3343 // This is the type to do integer arithmetic in.
3344 const Type *IntTy = SE.getEffectiveSCEVType(Ty);
3345
3346 // Build up a list of operands to add together to form the full base.
3347 SmallVector<const SCEV *, 8> Ops;
3348
3349 // Expand the BaseRegs portion.
3350 for (SmallVectorImpl<const SCEV *>::const_iterator I = F.BaseRegs.begin(),
3351 E = F.BaseRegs.end(); I != E; ++I) {
3352 const SCEV *Reg = *I;
3353 assert(!Reg->isZero() && "Zero allocated in a base register!");
3354
Dan Gohman448db1c2010-04-07 22:27:08 +00003355 // If we're expanding for a post-inc user, make the post-inc adjustment.
3356 PostIncLoopSet &Loops = const_cast<PostIncLoopSet &>(LF.PostIncLoops);
3357 Reg = TransformForPostIncUse(Denormalize, Reg,
3358 LF.UserInst, LF.OperandValToReplace,
3359 Loops, SE, DT);
Dan Gohman572645c2010-02-12 10:34:29 +00003360
3361 Ops.push_back(SE.getUnknown(Rewriter.expandCodeFor(Reg, 0, IP)));
3362 }
3363
Dan Gohman087bd1e2010-03-03 05:29:13 +00003364 // Flush the operand list to suppress SCEVExpander hoisting.
3365 if (!Ops.empty()) {
3366 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty, IP);
3367 Ops.clear();
3368 Ops.push_back(SE.getUnknown(FullV));
3369 }
3370
Dan Gohman572645c2010-02-12 10:34:29 +00003371 // Expand the ScaledReg portion.
3372 Value *ICmpScaledV = 0;
3373 if (F.AM.Scale != 0) {
3374 const SCEV *ScaledS = F.ScaledReg;
3375
Dan Gohman448db1c2010-04-07 22:27:08 +00003376 // If we're expanding for a post-inc user, make the post-inc adjustment.
3377 PostIncLoopSet &Loops = const_cast<PostIncLoopSet &>(LF.PostIncLoops);
3378 ScaledS = TransformForPostIncUse(Denormalize, ScaledS,
3379 LF.UserInst, LF.OperandValToReplace,
3380 Loops, SE, DT);
Dan Gohman572645c2010-02-12 10:34:29 +00003381
3382 if (LU.Kind == LSRUse::ICmpZero) {
3383 // An interesting way of "folding" with an icmp is to use a negated
3384 // scale, which we'll implement by inserting it into the other operand
3385 // of the icmp.
3386 assert(F.AM.Scale == -1 &&
3387 "The only scale supported by ICmpZero uses is -1!");
3388 ICmpScaledV = Rewriter.expandCodeFor(ScaledS, 0, IP);
3389 } else {
3390 // Otherwise just expand the scaled register and an explicit scale,
3391 // which is expected to be matched as part of the address.
3392 ScaledS = SE.getUnknown(Rewriter.expandCodeFor(ScaledS, 0, IP));
3393 ScaledS = SE.getMulExpr(ScaledS,
Dan Gohmandeff6212010-05-03 22:09:21 +00003394 SE.getConstant(ScaledS->getType(), F.AM.Scale));
Dan Gohman572645c2010-02-12 10:34:29 +00003395 Ops.push_back(ScaledS);
Dan Gohman087bd1e2010-03-03 05:29:13 +00003396
3397 // Flush the operand list to suppress SCEVExpander hoisting.
3398 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty, IP);
3399 Ops.clear();
3400 Ops.push_back(SE.getUnknown(FullV));
Dan Gohman572645c2010-02-12 10:34:29 +00003401 }
3402 }
3403
Dan Gohman087bd1e2010-03-03 05:29:13 +00003404 // Expand the GV portion.
3405 if (F.AM.BaseGV) {
3406 Ops.push_back(SE.getUnknown(F.AM.BaseGV));
3407
3408 // Flush the operand list to suppress SCEVExpander hoisting.
3409 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty, IP);
3410 Ops.clear();
3411 Ops.push_back(SE.getUnknown(FullV));
3412 }
3413
3414 // Expand the immediate portion.
Dan Gohman572645c2010-02-12 10:34:29 +00003415 int64_t Offset = (uint64_t)F.AM.BaseOffs + LF.Offset;
3416 if (Offset != 0) {
3417 if (LU.Kind == LSRUse::ICmpZero) {
3418 // The other interesting way of "folding" with an ICmpZero is to use a
3419 // negated immediate.
3420 if (!ICmpScaledV)
3421 ICmpScaledV = ConstantInt::get(IntTy, -Offset);
3422 else {
3423 Ops.push_back(SE.getUnknown(ICmpScaledV));
3424 ICmpScaledV = ConstantInt::get(IntTy, Offset);
3425 }
3426 } else {
3427 // Just add the immediate values. These again are expected to be matched
3428 // as part of the address.
Dan Gohman087bd1e2010-03-03 05:29:13 +00003429 Ops.push_back(SE.getUnknown(ConstantInt::getSigned(IntTy, Offset)));
Dan Gohman572645c2010-02-12 10:34:29 +00003430 }
3431 }
3432
3433 // Emit instructions summing all the operands.
3434 const SCEV *FullS = Ops.empty() ?
Dan Gohmandeff6212010-05-03 22:09:21 +00003435 SE.getConstant(IntTy, 0) :
Dan Gohman572645c2010-02-12 10:34:29 +00003436 SE.getAddExpr(Ops);
3437 Value *FullV = Rewriter.expandCodeFor(FullS, Ty, IP);
3438
3439 // We're done expanding now, so reset the rewriter.
Dan Gohman448db1c2010-04-07 22:27:08 +00003440 Rewriter.clearPostInc();
Dan Gohman572645c2010-02-12 10:34:29 +00003441
3442 // An ICmpZero Formula represents an ICmp which we're handling as a
3443 // comparison against zero. Now that we've expanded an expression for that
3444 // form, update the ICmp's other operand.
3445 if (LU.Kind == LSRUse::ICmpZero) {
3446 ICmpInst *CI = cast<ICmpInst>(LF.UserInst);
3447 DeadInsts.push_back(CI->getOperand(1));
3448 assert(!F.AM.BaseGV && "ICmp does not support folding a global value and "
3449 "a scale at the same time!");
3450 if (F.AM.Scale == -1) {
3451 if (ICmpScaledV->getType() != OpTy) {
3452 Instruction *Cast =
3453 CastInst::Create(CastInst::getCastOpcode(ICmpScaledV, false,
3454 OpTy, false),
3455 ICmpScaledV, OpTy, "tmp", CI);
3456 ICmpScaledV = Cast;
3457 }
3458 CI->setOperand(1, ICmpScaledV);
3459 } else {
3460 assert(F.AM.Scale == 0 &&
3461 "ICmp does not support folding a global value and "
3462 "a scale at the same time!");
3463 Constant *C = ConstantInt::getSigned(SE.getEffectiveSCEVType(OpTy),
3464 -(uint64_t)Offset);
3465 if (C->getType() != OpTy)
3466 C = ConstantExpr::getCast(CastInst::getCastOpcode(C, false,
3467 OpTy, false),
3468 C, OpTy);
3469
3470 CI->setOperand(1, C);
3471 }
3472 }
3473
3474 return FullV;
3475}
3476
Dan Gohman3a02cbc2010-02-16 20:25:07 +00003477/// RewriteForPHI - Helper for Rewrite. PHI nodes are special because the use
3478/// of their operands effectively happens in their predecessor blocks, so the
3479/// expression may need to be expanded in multiple places.
3480void LSRInstance::RewriteForPHI(PHINode *PN,
3481 const LSRFixup &LF,
3482 const Formula &F,
Dan Gohman3a02cbc2010-02-16 20:25:07 +00003483 SCEVExpander &Rewriter,
3484 SmallVectorImpl<WeakVH> &DeadInsts,
Dan Gohman3a02cbc2010-02-16 20:25:07 +00003485 Pass *P) const {
3486 DenseMap<BasicBlock *, Value *> Inserted;
3487 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
3488 if (PN->getIncomingValue(i) == LF.OperandValToReplace) {
3489 BasicBlock *BB = PN->getIncomingBlock(i);
3490
3491 // If this is a critical edge, split the edge so that we do not insert
3492 // the code on all predecessor/successor paths. We do this unless this
3493 // is the canonical backedge for this loop, which complicates post-inc
3494 // users.
3495 if (e != 1 && BB->getTerminator()->getNumSuccessors() > 1 &&
3496 !isa<IndirectBrInst>(BB->getTerminator()) &&
3497 (PN->getParent() != L->getHeader() || !L->contains(BB))) {
3498 // Split the critical edge.
3499 BasicBlock *NewBB = SplitCriticalEdge(BB, PN->getParent(), P);
3500
3501 // If PN is outside of the loop and BB is in the loop, we want to
3502 // move the block to be immediately before the PHI block, not
3503 // immediately after BB.
3504 if (L->contains(BB) && !L->contains(PN))
3505 NewBB->moveBefore(PN->getParent());
3506
3507 // Splitting the edge can reduce the number of PHI entries we have.
3508 e = PN->getNumIncomingValues();
3509 BB = NewBB;
3510 i = PN->getBasicBlockIndex(BB);
3511 }
3512
3513 std::pair<DenseMap<BasicBlock *, Value *>::iterator, bool> Pair =
3514 Inserted.insert(std::make_pair(BB, static_cast<Value *>(0)));
3515 if (!Pair.second)
3516 PN->setIncomingValue(i, Pair.first->second);
3517 else {
Dan Gohman454d26d2010-02-22 04:11:59 +00003518 Value *FullV = Expand(LF, F, BB->getTerminator(), Rewriter, DeadInsts);
Dan Gohman3a02cbc2010-02-16 20:25:07 +00003519
3520 // If this is reuse-by-noop-cast, insert the noop cast.
3521 const Type *OpTy = LF.OperandValToReplace->getType();
3522 if (FullV->getType() != OpTy)
3523 FullV =
3524 CastInst::Create(CastInst::getCastOpcode(FullV, false,
3525 OpTy, false),
3526 FullV, LF.OperandValToReplace->getType(),
3527 "tmp", BB->getTerminator());
3528
3529 PN->setIncomingValue(i, FullV);
3530 Pair.first->second = FullV;
3531 }
3532 }
3533}
3534
Dan Gohman572645c2010-02-12 10:34:29 +00003535/// Rewrite - Emit instructions for the leading candidate expression for this
3536/// LSRUse (this is called "expanding"), and update the UserInst to reference
3537/// the newly expanded value.
3538void LSRInstance::Rewrite(const LSRFixup &LF,
3539 const Formula &F,
Dan Gohman572645c2010-02-12 10:34:29 +00003540 SCEVExpander &Rewriter,
3541 SmallVectorImpl<WeakVH> &DeadInsts,
Dan Gohman572645c2010-02-12 10:34:29 +00003542 Pass *P) const {
Dan Gohman572645c2010-02-12 10:34:29 +00003543 // First, find an insertion point that dominates UserInst. For PHI nodes,
3544 // find the nearest block which dominates all the relevant uses.
3545 if (PHINode *PN = dyn_cast<PHINode>(LF.UserInst)) {
Dan Gohman454d26d2010-02-22 04:11:59 +00003546 RewriteForPHI(PN, LF, F, Rewriter, DeadInsts, P);
Dan Gohman572645c2010-02-12 10:34:29 +00003547 } else {
Dan Gohman454d26d2010-02-22 04:11:59 +00003548 Value *FullV = Expand(LF, F, LF.UserInst, Rewriter, DeadInsts);
Dan Gohman572645c2010-02-12 10:34:29 +00003549
3550 // If this is reuse-by-noop-cast, insert the noop cast.
Dan Gohman3a02cbc2010-02-16 20:25:07 +00003551 const Type *OpTy = LF.OperandValToReplace->getType();
Dan Gohman572645c2010-02-12 10:34:29 +00003552 if (FullV->getType() != OpTy) {
3553 Instruction *Cast =
3554 CastInst::Create(CastInst::getCastOpcode(FullV, false, OpTy, false),
3555 FullV, OpTy, "tmp", LF.UserInst);
3556 FullV = Cast;
3557 }
3558
3559 // Update the user. ICmpZero is handled specially here (for now) because
3560 // Expand may have updated one of the operands of the icmp already, and
3561 // its new value may happen to be equal to LF.OperandValToReplace, in
3562 // which case doing replaceUsesOfWith leads to replacing both operands
3563 // with the same value. TODO: Reorganize this.
3564 if (Uses[LF.LUIdx].Kind == LSRUse::ICmpZero)
3565 LF.UserInst->setOperand(0, FullV);
3566 else
3567 LF.UserInst->replaceUsesOfWith(LF.OperandValToReplace, FullV);
3568 }
3569
3570 DeadInsts.push_back(LF.OperandValToReplace);
3571}
3572
Dan Gohman76c315a2010-05-20 20:52:00 +00003573/// ImplementSolution - Rewrite all the fixup locations with new values,
3574/// following the chosen solution.
Dan Gohman572645c2010-02-12 10:34:29 +00003575void
3576LSRInstance::ImplementSolution(const SmallVectorImpl<const Formula *> &Solution,
3577 Pass *P) {
3578 // Keep track of instructions we may have made dead, so that
3579 // we can remove them after we are done working.
3580 SmallVector<WeakVH, 16> DeadInsts;
3581
3582 SCEVExpander Rewriter(SE);
3583 Rewriter.disableCanonicalMode();
3584 Rewriter.setIVIncInsertPos(L, IVIncInsertPos);
3585
3586 // Expand the new value definitions and update the users.
Dan Gohman402d4352010-05-20 20:33:18 +00003587 for (SmallVectorImpl<LSRFixup>::const_iterator I = Fixups.begin(),
3588 E = Fixups.end(); I != E; ++I) {
3589 const LSRFixup &Fixup = *I;
Dan Gohman572645c2010-02-12 10:34:29 +00003590
Dan Gohman402d4352010-05-20 20:33:18 +00003591 Rewrite(Fixup, *Solution[Fixup.LUIdx], Rewriter, DeadInsts, P);
Dan Gohman572645c2010-02-12 10:34:29 +00003592
3593 Changed = true;
3594 }
3595
3596 // Clean up after ourselves. This must be done before deleting any
3597 // instructions.
3598 Rewriter.clear();
3599
3600 Changed |= DeleteTriviallyDeadInstructions(DeadInsts);
3601}
3602
3603LSRInstance::LSRInstance(const TargetLowering *tli, Loop *l, Pass *P)
3604 : IU(P->getAnalysis<IVUsers>()),
3605 SE(P->getAnalysis<ScalarEvolution>()),
3606 DT(P->getAnalysis<DominatorTree>()),
Dan Gohmane5f76872010-04-09 22:07:05 +00003607 LI(P->getAnalysis<LoopInfo>()),
Dan Gohman572645c2010-02-12 10:34:29 +00003608 TLI(tli), L(l), Changed(false), IVIncInsertPos(0) {
Devang Patel0f54dcb2007-03-06 21:14:09 +00003609
Dan Gohman03e896b2009-11-05 21:11:53 +00003610 // If LoopSimplify form is not available, stay out of trouble.
Dan Gohman572645c2010-02-12 10:34:29 +00003611 if (!L->isLoopSimplifyForm()) return;
Dan Gohman03e896b2009-11-05 21:11:53 +00003612
Dan Gohman572645c2010-02-12 10:34:29 +00003613 // If there's no interesting work to be done, bail early.
3614 if (IU.empty()) return;
Dan Gohman80b0f8c2009-03-09 20:34:59 +00003615
Dan Gohman572645c2010-02-12 10:34:29 +00003616 DEBUG(dbgs() << "\nLSR on loop ";
3617 WriteAsOperand(dbgs(), L->getHeader(), /*PrintType=*/false);
3618 dbgs() << ":\n");
Dan Gohmanf7912df2009-03-09 20:46:50 +00003619
Dan Gohman402d4352010-05-20 20:33:18 +00003620 // First, perform some low-level loop optimizations.
Dan Gohman572645c2010-02-12 10:34:29 +00003621 OptimizeShadowIV();
Dan Gohmanc6519f92010-05-20 20:05:31 +00003622 OptimizeLoopTermCond();
Evan Cheng5792f512009-05-11 22:33:01 +00003623
Dan Gohman402d4352010-05-20 20:33:18 +00003624 // Start collecting data and preparing for the solver.
Dan Gohman572645c2010-02-12 10:34:29 +00003625 CollectInterestingTypesAndFactors();
3626 CollectFixupsAndInitialFormulae();
3627 CollectLoopInvariantFixupsAndFormulae();
Chris Lattner010de252005-08-08 05:28:22 +00003628
Dan Gohman572645c2010-02-12 10:34:29 +00003629 DEBUG(dbgs() << "LSR found " << Uses.size() << " uses:\n";
3630 print_uses(dbgs()));
Misha Brukmanfd939082005-04-21 23:48:37 +00003631
Dan Gohman572645c2010-02-12 10:34:29 +00003632 // Now use the reuse data to generate a bunch of interesting ways
3633 // to formulate the values needed for the uses.
3634 GenerateAllReuseFormulae();
Evan Chengd1d6b5c2006-03-16 21:53:05 +00003635
Dan Gohman572645c2010-02-12 10:34:29 +00003636 DEBUG(dbgs() << "\n"
3637 "After generating reuse formulae:\n";
3638 print_uses(dbgs()));
Nate Begemaneaa13852004-10-18 21:08:22 +00003639
Dan Gohman572645c2010-02-12 10:34:29 +00003640 FilterOutUndesirableDedicatedRegisters();
3641 NarrowSearchSpaceUsingHeuristics();
Dan Gohman6bec5bb2009-12-18 00:06:20 +00003642
Dan Gohman572645c2010-02-12 10:34:29 +00003643 SmallVector<const Formula *, 8> Solution;
3644 Solve(Solution);
Dan Gohman6bec5bb2009-12-18 00:06:20 +00003645
Dan Gohman572645c2010-02-12 10:34:29 +00003646 // Release memory that is no longer needed.
3647 Factors.clear();
3648 Types.clear();
3649 RegUses.clear();
3650
3651#ifndef NDEBUG
3652 // Formulae should be legal.
3653 for (SmallVectorImpl<LSRUse>::const_iterator I = Uses.begin(),
3654 E = Uses.end(); I != E; ++I) {
3655 const LSRUse &LU = *I;
3656 for (SmallVectorImpl<Formula>::const_iterator J = LU.Formulae.begin(),
3657 JE = LU.Formulae.end(); J != JE; ++J)
3658 assert(isLegalUse(J->AM, LU.MinOffset, LU.MaxOffset,
3659 LU.Kind, LU.AccessTy, TLI) &&
3660 "Illegal formula generated!");
3661 };
3662#endif
3663
3664 // Now that we've decided what we want, make it so.
3665 ImplementSolution(Solution, P);
3666}
3667
3668void LSRInstance::print_factors_and_types(raw_ostream &OS) const {
3669 if (Factors.empty() && Types.empty()) return;
3670
3671 OS << "LSR has identified the following interesting factors and types: ";
3672 bool First = true;
3673
3674 for (SmallSetVector<int64_t, 8>::const_iterator
3675 I = Factors.begin(), E = Factors.end(); I != E; ++I) {
3676 if (!First) OS << ", ";
3677 First = false;
3678 OS << '*' << *I;
Evan Cheng81ebdcf2009-11-10 21:14:05 +00003679 }
Dale Johannesenc1acc3f2009-05-11 17:15:42 +00003680
Dan Gohman572645c2010-02-12 10:34:29 +00003681 for (SmallSetVector<const Type *, 4>::const_iterator
3682 I = Types.begin(), E = Types.end(); I != E; ++I) {
3683 if (!First) OS << ", ";
3684 First = false;
3685 OS << '(' << **I << ')';
3686 }
3687 OS << '\n';
3688}
3689
3690void LSRInstance::print_fixups(raw_ostream &OS) const {
3691 OS << "LSR is examining the following fixup sites:\n";
3692 for (SmallVectorImpl<LSRFixup>::const_iterator I = Fixups.begin(),
3693 E = Fixups.end(); I != E; ++I) {
Dan Gohman572645c2010-02-12 10:34:29 +00003694 dbgs() << " ";
Dan Gohman9f383eb2010-05-20 22:25:20 +00003695 I->print(OS);
Dan Gohman572645c2010-02-12 10:34:29 +00003696 OS << '\n';
3697 }
3698}
3699
3700void LSRInstance::print_uses(raw_ostream &OS) const {
3701 OS << "LSR is examining the following uses:\n";
3702 for (SmallVectorImpl<LSRUse>::const_iterator I = Uses.begin(),
3703 E = Uses.end(); I != E; ++I) {
3704 const LSRUse &LU = *I;
3705 dbgs() << " ";
3706 LU.print(OS);
3707 OS << '\n';
3708 for (SmallVectorImpl<Formula>::const_iterator J = LU.Formulae.begin(),
3709 JE = LU.Formulae.end(); J != JE; ++J) {
3710 OS << " ";
3711 J->print(OS);
3712 OS << '\n';
3713 }
3714 }
3715}
3716
3717void LSRInstance::print(raw_ostream &OS) const {
3718 print_factors_and_types(OS);
3719 print_fixups(OS);
3720 print_uses(OS);
3721}
3722
3723void LSRInstance::dump() const {
3724 print(errs()); errs() << '\n';
3725}
3726
3727namespace {
3728
3729class LoopStrengthReduce : public LoopPass {
3730 /// TLI - Keep a pointer of a TargetLowering to consult for determining
3731 /// transformation profitability.
3732 const TargetLowering *const TLI;
3733
3734public:
3735 static char ID; // Pass ID, replacement for typeid
3736 explicit LoopStrengthReduce(const TargetLowering *tli = 0);
3737
3738private:
3739 bool runOnLoop(Loop *L, LPPassManager &LPM);
3740 void getAnalysisUsage(AnalysisUsage &AU) const;
3741};
3742
3743}
3744
3745char LoopStrengthReduce::ID = 0;
Owen Andersond13db2c2010-07-21 22:09:45 +00003746INITIALIZE_PASS(LoopStrengthReduce, "loop-reduce",
3747 "Loop Strength Reduction", false, false);
Dan Gohman572645c2010-02-12 10:34:29 +00003748
3749Pass *llvm::createLoopStrengthReducePass(const TargetLowering *TLI) {
3750 return new LoopStrengthReduce(TLI);
3751}
3752
3753LoopStrengthReduce::LoopStrengthReduce(const TargetLowering *tli)
3754 : LoopPass(&ID), TLI(tli) {}
3755
3756void LoopStrengthReduce::getAnalysisUsage(AnalysisUsage &AU) const {
3757 // We split critical edges, so we change the CFG. However, we do update
3758 // many analyses if they are around.
3759 AU.addPreservedID(LoopSimplifyID);
Dan Gohman572645c2010-02-12 10:34:29 +00003760 AU.addPreserved("domfrontier");
3761
Dan Gohmane5f76872010-04-09 22:07:05 +00003762 AU.addRequired<LoopInfo>();
3763 AU.addPreserved<LoopInfo>();
Dan Gohman572645c2010-02-12 10:34:29 +00003764 AU.addRequiredID(LoopSimplifyID);
3765 AU.addRequired<DominatorTree>();
3766 AU.addPreserved<DominatorTree>();
3767 AU.addRequired<ScalarEvolution>();
3768 AU.addPreserved<ScalarEvolution>();
3769 AU.addRequired<IVUsers>();
3770 AU.addPreserved<IVUsers>();
3771}
3772
3773bool LoopStrengthReduce::runOnLoop(Loop *L, LPPassManager & /*LPM*/) {
3774 bool Changed = false;
3775
3776 // Run the main LSR transformation.
3777 Changed |= LSRInstance(TLI, L, this).getChanged();
3778
Dan Gohmanafc36a92009-05-02 18:29:22 +00003779 // At this point, it is worth checking to see if any recurrence PHIs are also
Dan Gohman35738ac2009-05-04 22:30:44 +00003780 // dead, so that we can remove them as well.
Dan Gohman9fff2182010-01-05 16:31:45 +00003781 Changed |= DeleteDeadPHIs(L->getHeader());
Dan Gohmanafc36a92009-05-02 18:29:22 +00003782
Evan Cheng1ce75dc2008-07-07 19:51:32 +00003783 return Changed;
Nate Begemaneaa13852004-10-18 21:08:22 +00003784}