blob: eaa0f6a266dff2f2d71a4ded3486b458b9938898 [file] [log] [blame]
Dan Gohman0a40ad92009-04-16 03:18:22 +00001//===- LoopStrengthReduce.cpp - Strength Reduce IVs in Loops --------------===//
Misha Brukmanb1c93172005-04-21 23:48:37 +00002//
Nate Begemanb18121e2004-10-18 21:08:22 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-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 Brukmanb1c93172005-04-21 23:48:37 +00007//
Nate Begemanb18121e2004-10-18 21:08:22 +00008//===----------------------------------------------------------------------===//
9//
Dan Gohman97f70ad2009-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 Begemanb18121e2004-10-18 21:08:22 +000014// This pass performs a strength reduction on array references inside loops that
Dan Gohman97f70ad2009-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 Begemanb18121e2004-10-18 21:08:22 +000019//
Dan Gohman45774ce2010-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
Sanjoy Das7041fb12015-03-27 06:01:56 +000031// the value of the register before the add and some using it after. In this
Dan Gohman45774ce2010-02-12 10:34:29 +000032// 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//
Chandler Carruth26c59fa2013-01-07 14:41:08 +000040// TODO: Should the addressing mode BaseGV be changed to a ConstantExpr instead
41// of a GlobalValue?
Dan Gohman45774ce2010-02-12 10:34:29 +000042//
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 Begemanb18121e2004-10-18 21:08:22 +000054//===----------------------------------------------------------------------===//
55
Dehao Chen6132ee82016-07-18 21:41:50 +000056#include "llvm/Transforms/Scalar/LoopStrengthReduce.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000057#include "llvm/ADT/APInt.h"
58#include "llvm/ADT/DenseMap.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000059#include "llvm/ADT/DenseSet.h"
Benjamin Kramer62fb0cf2014-03-15 17:17:48 +000060#include "llvm/ADT/Hashing.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000061#include "llvm/ADT/PointerIntPair.h"
Chandler Carruth3bab7e12017-01-11 09:43:56 +000062#include "llvm/ADT/STLExtras.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000063#include "llvm/ADT/SetVector.h"
64#include "llvm/ADT/SmallBitVector.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000065#include "llvm/ADT/SmallPtrSet.h"
66#include "llvm/ADT/SmallSet.h"
67#include "llvm/ADT/SmallVector.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000068#include "llvm/Analysis/IVUsers.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000069#include "llvm/Analysis/LoopInfo.h"
Devang Patelb0743b52007-03-06 21:14:09 +000070#include "llvm/Analysis/LoopPass.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000071#include "llvm/Analysis/ScalarEvolution.h"
Nate Begemane68bcd12005-07-30 00:15:07 +000072#include "llvm/Analysis/ScalarEvolutionExpander.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000073#include "llvm/Analysis/ScalarEvolutionExpressions.h"
74#include "llvm/Analysis/ScalarEvolutionNormalization.h"
Chandler Carruth26c59fa2013-01-07 14:41:08 +000075#include "llvm/Analysis/TargetTransformInfo.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000076#include "llvm/IR/BasicBlock.h"
77#include "llvm/IR/Constant.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000078#include "llvm/IR/Constants.h"
79#include "llvm/IR/DerivedTypes.h"
Chandler Carruth5ad5f152014-01-13 09:26:24 +000080#include "llvm/IR/Dominators.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000081#include "llvm/IR/GlobalValue.h"
Chandler Carruth3bab7e12017-01-11 09:43:56 +000082#include "llvm/IR/IRBuilder.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000083#include "llvm/IR/Instruction.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000084#include "llvm/IR/Instructions.h"
85#include "llvm/IR/IntrinsicInst.h"
Chandler Carruth3bab7e12017-01-11 09:43:56 +000086#include "llvm/IR/Module.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000087#include "llvm/IR/OperandTraits.h"
88#include "llvm/IR/Operator.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000089#include "llvm/IR/Type.h"
90#include "llvm/IR/Value.h"
Chandler Carruth4220e9c2014-03-04 11:17:44 +000091#include "llvm/IR/ValueHandle.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000092#include "llvm/Pass.h"
93#include "llvm/Support/Casting.h"
Andrew Trick58124392011-09-27 00:44:14 +000094#include "llvm/Support/CommandLine.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000095#include "llvm/Support/Compiler.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000096#include "llvm/Support/Debug.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000097#include "llvm/Support/ErrorHandling.h"
98#include "llvm/Support/MathExtras.h"
Daniel Dunbar6115b392009-07-26 09:48:23 +000099#include "llvm/Support/raw_ostream.h"
Dehao Chen6132ee82016-07-18 21:41:50 +0000100#include "llvm/Transforms/Scalar.h"
Chandler Carruth3bab7e12017-01-11 09:43:56 +0000101#include "llvm/Transforms/Scalar/LoopPassManager.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +0000102#include "llvm/Transforms/Utils/BasicBlockUtils.h"
103#include "llvm/Transforms/Utils/Local.h"
Jeff Cohenc5009912005-07-30 18:22:27 +0000104#include <algorithm>
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000105#include <cassert>
106#include <cstddef>
107#include <cstdint>
108#include <cstdlib>
109#include <iterator>
110#include <map>
111#include <tuple>
112#include <utility>
113
Nate Begemanb18121e2004-10-18 21:08:22 +0000114using namespace llvm;
115
Chandler Carruth964daaa2014-04-22 02:55:47 +0000116#define DEBUG_TYPE "loop-reduce"
117
Andrew Trick19f80c12012-04-18 04:00:10 +0000118/// MaxIVUsers is an arbitrary threshold that provides an early opportunitiy for
119/// bail out. This threshold is far beyond the number of users that LSR can
120/// conceivably solve, so it should not affect generated code, but catches the
121/// worst cases before LSR burns too much compile time and stack space.
122static const unsigned MaxIVUsers = 200;
123
Andrew Trickecbe22b2011-10-11 02:30:45 +0000124// Temporary flag to cleanup congruent phis after LSR phi expansion.
125// It's currently disabled until we can determine whether it's truly useful or
126// not. The flag should be removed after the v3.0 release.
Andrew Trick06f6c052012-01-07 07:08:17 +0000127// This is now needed for ivchains.
Benjamin Kramer7ba71be2011-11-26 23:01:57 +0000128static cl::opt<bool> EnablePhiElim(
Andrew Trick06f6c052012-01-07 07:08:17 +0000129 "enable-lsr-phielim", cl::Hidden, cl::init(true),
130 cl::desc("Enable LSR phi elimination"));
Andrew Trick58124392011-09-27 00:44:14 +0000131
Andrew Trick248d4102012-01-09 21:18:52 +0000132#ifndef NDEBUG
133// Stress test IV chain generation.
134static cl::opt<bool> StressIVChain(
135 "stress-ivchain", cl::Hidden, cl::init(false),
136 cl::desc("Stress test LSR IV chains"));
137#else
138static bool StressIVChain = false;
139#endif
140
Dan Gohman45774ce2010-02-12 10:34:29 +0000141namespace {
Nate Begemanb18121e2004-10-18 21:08:22 +0000142
Matt Arsenault427a0fd2015-08-15 00:53:06 +0000143struct MemAccessTy {
144 /// Used in situations where the accessed memory type is unknown.
145 static const unsigned UnknownAddressSpace = ~0u;
146
147 Type *MemTy;
148 unsigned AddrSpace;
149
150 MemAccessTy() : MemTy(nullptr), AddrSpace(UnknownAddressSpace) {}
151
152 MemAccessTy(Type *Ty, unsigned AS) :
153 MemTy(Ty), AddrSpace(AS) {}
154
155 bool operator==(MemAccessTy Other) const {
156 return MemTy == Other.MemTy && AddrSpace == Other.AddrSpace;
157 }
158
159 bool operator!=(MemAccessTy Other) const { return !(*this == Other); }
160
Matt Arsenault1f2ca662017-01-30 19:50:17 +0000161 static MemAccessTy getUnknown(LLVMContext &Ctx,
162 unsigned AS = UnknownAddressSpace) {
163 return MemAccessTy(Type::getVoidTy(Ctx), AS);
Matt Arsenault427a0fd2015-08-15 00:53:06 +0000164 }
165};
166
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000167/// This class holds data which is used to order reuse candidates.
Dan Gohman45774ce2010-02-12 10:34:29 +0000168class RegSortData {
169public:
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000170 /// This represents the set of LSRUse indices which reference
Dan Gohman45774ce2010-02-12 10:34:29 +0000171 /// a particular register.
172 SmallBitVector UsedByIndices;
173
Dan Gohman45774ce2010-02-12 10:34:29 +0000174 void print(raw_ostream &OS) const;
175 void dump() const;
176};
177
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000178} // end anonymous namespace
Dan Gohman45774ce2010-02-12 10:34:29 +0000179
180void RegSortData::print(raw_ostream &OS) const {
181 OS << "[NumUses=" << UsedByIndices.count() << ']';
182}
183
Matthias Braun8c209aa2017-01-28 02:02:38 +0000184#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
185LLVM_DUMP_METHOD void RegSortData::dump() const {
Dan Gohman45774ce2010-02-12 10:34:29 +0000186 print(errs()); errs() << '\n';
187}
Matthias Braun8c209aa2017-01-28 02:02:38 +0000188#endif
Dan Gohman2a12ae72009-02-20 04:17:46 +0000189
Chris Lattner79a42ac2006-12-19 21:40:18 +0000190namespace {
Dale Johannesene3a02be2007-03-20 00:47:50 +0000191
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000192/// Map register candidates to information about how they are used.
Dan Gohman45774ce2010-02-12 10:34:29 +0000193class RegUseTracker {
194 typedef DenseMap<const SCEV *, RegSortData> RegUsesTy;
Dale Johannesene3a02be2007-03-20 00:47:50 +0000195
Dan Gohman248c41d2010-05-18 22:33:00 +0000196 RegUsesTy RegUsesMap;
Dan Gohman45774ce2010-02-12 10:34:29 +0000197 SmallVector<const SCEV *, 16> RegSequence;
Evan Cheng3df447d2006-03-16 21:53:05 +0000198
Dan Gohman45774ce2010-02-12 10:34:29 +0000199public:
Sanjoy Das302bfd02015-08-16 18:22:43 +0000200 void countRegister(const SCEV *Reg, size_t LUIdx);
201 void dropRegister(const SCEV *Reg, size_t LUIdx);
202 void swapAndDropUse(size_t LUIdx, size_t LastLUIdx);
Dan Gohman51ad99d2010-01-21 02:09:26 +0000203
Dan Gohman45774ce2010-02-12 10:34:29 +0000204 bool isRegUsedByUsesOtherThan(const SCEV *Reg, size_t LUIdx) const;
Dan Gohman51ad99d2010-01-21 02:09:26 +0000205
Dan Gohman45774ce2010-02-12 10:34:29 +0000206 const SmallBitVector &getUsedByIndices(const SCEV *Reg) const;
Dan Gohman51ad99d2010-01-21 02:09:26 +0000207
Dan Gohman45774ce2010-02-12 10:34:29 +0000208 void clear();
Dan Gohman51ad99d2010-01-21 02:09:26 +0000209
Dan Gohman45774ce2010-02-12 10:34:29 +0000210 typedef SmallVectorImpl<const SCEV *>::iterator iterator;
211 typedef SmallVectorImpl<const SCEV *>::const_iterator const_iterator;
212 iterator begin() { return RegSequence.begin(); }
213 iterator end() { return RegSequence.end(); }
214 const_iterator begin() const { return RegSequence.begin(); }
215 const_iterator end() const { return RegSequence.end(); }
216};
Dan Gohman51ad99d2010-01-21 02:09:26 +0000217
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000218} // end anonymous namespace
Dan Gohman51ad99d2010-01-21 02:09:26 +0000219
Dan Gohman45774ce2010-02-12 10:34:29 +0000220void
Sanjoy Das302bfd02015-08-16 18:22:43 +0000221RegUseTracker::countRegister(const SCEV *Reg, size_t LUIdx) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000222 std::pair<RegUsesTy::iterator, bool> Pair =
Dan Gohman248c41d2010-05-18 22:33:00 +0000223 RegUsesMap.insert(std::make_pair(Reg, RegSortData()));
Dan Gohman45774ce2010-02-12 10:34:29 +0000224 RegSortData &RSD = Pair.first->second;
225 if (Pair.second)
226 RegSequence.push_back(Reg);
227 RSD.UsedByIndices.resize(std::max(RSD.UsedByIndices.size(), LUIdx + 1));
228 RSD.UsedByIndices.set(LUIdx);
Dan Gohman51ad99d2010-01-21 02:09:26 +0000229}
230
Dan Gohman4cf99b52010-05-18 23:42:37 +0000231void
Sanjoy Das302bfd02015-08-16 18:22:43 +0000232RegUseTracker::dropRegister(const SCEV *Reg, size_t LUIdx) {
Dan Gohman4cf99b52010-05-18 23:42:37 +0000233 RegUsesTy::iterator It = RegUsesMap.find(Reg);
234 assert(It != RegUsesMap.end());
235 RegSortData &RSD = It->second;
236 assert(RSD.UsedByIndices.size() > LUIdx);
237 RSD.UsedByIndices.reset(LUIdx);
238}
239
Dan Gohman20fab452010-05-19 23:43:12 +0000240void
Sanjoy Das302bfd02015-08-16 18:22:43 +0000241RegUseTracker::swapAndDropUse(size_t LUIdx, size_t LastLUIdx) {
Dan Gohmana7b68d62010-10-07 23:33:43 +0000242 assert(LUIdx <= LastLUIdx);
243
244 // Update RegUses. The data structure is not optimized for this purpose;
245 // we must iterate through it and update each of the bit vectors.
Craig Topper10949ae2015-05-23 08:45:10 +0000246 for (auto &Pair : RegUsesMap) {
247 SmallBitVector &UsedByIndices = Pair.second.UsedByIndices;
Dan Gohmana7b68d62010-10-07 23:33:43 +0000248 if (LUIdx < UsedByIndices.size())
249 UsedByIndices[LUIdx] =
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000250 LastLUIdx < UsedByIndices.size() ? UsedByIndices[LastLUIdx] : false;
Dan Gohmana7b68d62010-10-07 23:33:43 +0000251 UsedByIndices.resize(std::min(UsedByIndices.size(), LastLUIdx));
252 }
Dan Gohman20fab452010-05-19 23:43:12 +0000253}
254
Dan Gohman45774ce2010-02-12 10:34:29 +0000255bool
256RegUseTracker::isRegUsedByUsesOtherThan(const SCEV *Reg, size_t LUIdx) const {
Dan Gohman4f13bbf2010-08-29 15:18:49 +0000257 RegUsesTy::const_iterator I = RegUsesMap.find(Reg);
258 if (I == RegUsesMap.end())
259 return false;
260 const SmallBitVector &UsedByIndices = I->second.UsedByIndices;
Dan Gohman45774ce2010-02-12 10:34:29 +0000261 int i = UsedByIndices.find_first();
262 if (i == -1) return false;
263 if ((size_t)i != LUIdx) return true;
264 return UsedByIndices.find_next(i) != -1;
265}
Dan Gohman51ad99d2010-01-21 02:09:26 +0000266
Dan Gohman45774ce2010-02-12 10:34:29 +0000267const SmallBitVector &RegUseTracker::getUsedByIndices(const SCEV *Reg) const {
Dan Gohman248c41d2010-05-18 22:33:00 +0000268 RegUsesTy::const_iterator I = RegUsesMap.find(Reg);
269 assert(I != RegUsesMap.end() && "Unknown register!");
Dan Gohman45774ce2010-02-12 10:34:29 +0000270 return I->second.UsedByIndices;
271}
Dan Gohman51ad99d2010-01-21 02:09:26 +0000272
Dan Gohman45774ce2010-02-12 10:34:29 +0000273void RegUseTracker::clear() {
Dan Gohman248c41d2010-05-18 22:33:00 +0000274 RegUsesMap.clear();
Dan Gohman45774ce2010-02-12 10:34:29 +0000275 RegSequence.clear();
276}
Dan Gohman51ad99d2010-01-21 02:09:26 +0000277
Dan Gohman45774ce2010-02-12 10:34:29 +0000278namespace {
279
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000280/// This class holds information that describes a formula for computing
281/// satisfying a use. It may include broken-out immediates and scaled registers.
Dan Gohman45774ce2010-02-12 10:34:29 +0000282struct Formula {
Chandler Carruth6e479322013-01-07 15:04:40 +0000283 /// Global base address used for complex addressing.
284 GlobalValue *BaseGV;
285
286 /// Base offset for complex addressing.
287 int64_t BaseOffset;
288
289 /// Whether any complex addressing has a base register.
290 bool HasBaseReg;
291
292 /// The scale of any complex addressing.
293 int64_t Scale;
Dan Gohman45774ce2010-02-12 10:34:29 +0000294
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000295 /// The list of "base" registers for this use. When this is non-empty. The
296 /// canonical representation of a formula is
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000297 /// 1. BaseRegs.size > 1 implies ScaledReg != NULL and
298 /// 2. ScaledReg != NULL implies Scale != 1 || !BaseRegs.empty().
299 /// #1 enforces that the scaled register is always used when at least two
300 /// registers are needed by the formula: e.g., reg1 + reg2 is reg1 + 1 * reg2.
301 /// #2 enforces that 1 * reg is reg.
302 /// This invariant can be temporarly broken while building a formula.
303 /// However, every formula inserted into the LSRInstance must be in canonical
304 /// form.
Preston Gurd25c3b6a2013-02-01 20:41:27 +0000305 SmallVector<const SCEV *, 4> BaseRegs;
Dan Gohman45774ce2010-02-12 10:34:29 +0000306
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000307 /// The 'scaled' register for this use. This should be non-null when Scale is
308 /// not zero.
Dan Gohman45774ce2010-02-12 10:34:29 +0000309 const SCEV *ScaledReg;
310
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000311 /// An additional constant offset which added near the use. This requires a
312 /// temporary register, but the offset itself can live in an add immediate
313 /// field rather than a register.
Dan Gohman6136e942011-05-03 00:46:49 +0000314 int64_t UnfoldedOffset;
315
Chandler Carruth6e479322013-01-07 15:04:40 +0000316 Formula()
Craig Topperf40110f2014-04-25 05:29:35 +0000317 : BaseGV(nullptr), BaseOffset(0), HasBaseReg(false), Scale(0),
Sanjoy Das215df9e2015-08-04 01:52:05 +0000318 ScaledReg(nullptr), UnfoldedOffset(0) {}
Dan Gohman45774ce2010-02-12 10:34:29 +0000319
Sanjoy Das302bfd02015-08-16 18:22:43 +0000320 void initialMatch(const SCEV *S, Loop *L, ScalarEvolution &SE);
Dan Gohman45774ce2010-02-12 10:34:29 +0000321
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000322 bool isCanonical() const;
323
Sanjoy Das302bfd02015-08-16 18:22:43 +0000324 void canonicalize();
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000325
Sanjoy Das302bfd02015-08-16 18:22:43 +0000326 bool unscale();
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000327
Adam Nemetdeab6f92014-04-29 18:25:28 +0000328 size_t getNumRegs() const;
Chris Lattner229907c2011-07-18 04:54:35 +0000329 Type *getType() const;
Dan Gohman45774ce2010-02-12 10:34:29 +0000330
Sanjoy Das302bfd02015-08-16 18:22:43 +0000331 void deleteBaseReg(const SCEV *&S);
Dan Gohman80a96082010-05-20 15:17:54 +0000332
Dan Gohman45774ce2010-02-12 10:34:29 +0000333 bool referencesReg(const SCEV *S) const;
334 bool hasRegsUsedByUsesOtherThan(size_t LUIdx,
335 const RegUseTracker &RegUses) const;
336
337 void print(raw_ostream &OS) const;
338 void dump() const;
339};
340
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000341} // end anonymous namespace
Dan Gohman45774ce2010-02-12 10:34:29 +0000342
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000343/// Recursion helper for initialMatch.
Dan Gohman45774ce2010-02-12 10:34:29 +0000344static void DoInitialMatch(const SCEV *S, Loop *L,
345 SmallVectorImpl<const SCEV *> &Good,
346 SmallVectorImpl<const SCEV *> &Bad,
Dan Gohman20d9ce22010-11-17 21:41:58 +0000347 ScalarEvolution &SE) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000348 // Collect expressions which properly dominate the loop header.
Dan Gohman20d9ce22010-11-17 21:41:58 +0000349 if (SE.properlyDominates(S, L->getHeader())) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000350 Good.push_back(S);
351 return;
Dan Gohman51ad99d2010-01-21 02:09:26 +0000352 }
Dan Gohman45774ce2010-02-12 10:34:29 +0000353
354 // Look at add operands.
355 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
Craig Topper77b99412015-05-23 08:01:41 +0000356 for (const SCEV *S : Add->operands())
357 DoInitialMatch(S, L, Good, Bad, SE);
Dan Gohman45774ce2010-02-12 10:34:29 +0000358 return;
359 }
360
361 // Look at addrec operands.
362 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S))
Alexandros Lamprineas0ee3ec22016-11-09 08:53:07 +0000363 if (!AR->getStart()->isZero() && AR->isAffine()) {
Dan Gohman20d9ce22010-11-17 21:41:58 +0000364 DoInitialMatch(AR->getStart(), L, Good, Bad, SE);
Dan Gohman1d2ded72010-05-03 22:09:21 +0000365 DoInitialMatch(SE.getAddRecExpr(SE.getConstant(AR->getType(), 0),
Dan Gohman45774ce2010-02-12 10:34:29 +0000366 AR->getStepRecurrence(SE),
Andrew Trick8b55b732011-03-14 16:50:06 +0000367 // FIXME: AR->getNoWrapFlags()
368 AR->getLoop(), SCEV::FlagAnyWrap),
Dan Gohman20d9ce22010-11-17 21:41:58 +0000369 L, Good, Bad, SE);
Dan Gohman45774ce2010-02-12 10:34:29 +0000370 return;
371 }
372
373 // Handle a multiplication by -1 (negation) if it didn't fold.
374 if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S))
375 if (Mul->getOperand(0)->isAllOnesValue()) {
376 SmallVector<const SCEV *, 4> Ops(Mul->op_begin()+1, Mul->op_end());
377 const SCEV *NewMul = SE.getMulExpr(Ops);
378
379 SmallVector<const SCEV *, 4> MyGood;
380 SmallVector<const SCEV *, 4> MyBad;
Dan Gohman20d9ce22010-11-17 21:41:58 +0000381 DoInitialMatch(NewMul, L, MyGood, MyBad, SE);
Dan Gohman45774ce2010-02-12 10:34:29 +0000382 const SCEV *NegOne = SE.getSCEV(ConstantInt::getAllOnesValue(
383 SE.getEffectiveSCEVType(NewMul->getType())));
Craig Topper042a3922015-05-25 20:01:18 +0000384 for (const SCEV *S : MyGood)
385 Good.push_back(SE.getMulExpr(NegOne, S));
386 for (const SCEV *S : MyBad)
387 Bad.push_back(SE.getMulExpr(NegOne, S));
Dan Gohman45774ce2010-02-12 10:34:29 +0000388 return;
389 }
390
391 // Ok, we can't do anything interesting. Just stuff the whole thing into a
392 // register and hope for the best.
393 Bad.push_back(S);
394}
395
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000396/// Incorporate loop-variant parts of S into this Formula, attempting to keep
397/// all loop-invariant and loop-computable values in a single base register.
Sanjoy Das302bfd02015-08-16 18:22:43 +0000398void Formula::initialMatch(const SCEV *S, Loop *L, ScalarEvolution &SE) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000399 SmallVector<const SCEV *, 4> Good;
400 SmallVector<const SCEV *, 4> Bad;
Dan Gohman20d9ce22010-11-17 21:41:58 +0000401 DoInitialMatch(S, L, Good, Bad, SE);
Dan Gohman45774ce2010-02-12 10:34:29 +0000402 if (!Good.empty()) {
Dan Gohman9b5d0bb72010-04-08 23:36:27 +0000403 const SCEV *Sum = SE.getAddExpr(Good);
404 if (!Sum->isZero())
405 BaseRegs.push_back(Sum);
Chandler Carruth6e479322013-01-07 15:04:40 +0000406 HasBaseReg = true;
Dan Gohman45774ce2010-02-12 10:34:29 +0000407 }
408 if (!Bad.empty()) {
Dan Gohman9b5d0bb72010-04-08 23:36:27 +0000409 const SCEV *Sum = SE.getAddExpr(Bad);
410 if (!Sum->isZero())
411 BaseRegs.push_back(Sum);
Chandler Carruth6e479322013-01-07 15:04:40 +0000412 HasBaseReg = true;
Dan Gohman45774ce2010-02-12 10:34:29 +0000413 }
Sanjoy Das302bfd02015-08-16 18:22:43 +0000414 canonicalize();
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000415}
416
417/// \brief Check whether or not this formula statisfies the canonical
418/// representation.
419/// \see Formula::BaseRegs.
420bool Formula::isCanonical() const {
421 if (ScaledReg)
422 return Scale != 1 || !BaseRegs.empty();
423 return BaseRegs.size() <= 1;
424}
425
426/// \brief Helper method to morph a formula into its canonical representation.
427/// \see Formula::BaseRegs.
428/// Every formula having more than one base register, must use the ScaledReg
429/// field. Otherwise, we would have to do special cases everywhere in LSR
430/// to treat reg1 + reg2 + ... the same way as reg1 + 1*reg2 + ...
431/// On the other hand, 1*reg should be canonicalized into reg.
Sanjoy Das302bfd02015-08-16 18:22:43 +0000432void Formula::canonicalize() {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000433 if (isCanonical())
434 return;
435 // So far we did not need this case. This is easy to implement but it is
436 // useless to maintain dead code. Beside it could hurt compile time.
437 assert(!BaseRegs.empty() && "1*reg => reg, should not be needed.");
438 // Keep the invariant sum in BaseRegs and one of the variant sum in ScaledReg.
439 ScaledReg = BaseRegs.back();
440 BaseRegs.pop_back();
441 Scale = 1;
442 size_t BaseRegsSize = BaseRegs.size();
443 size_t Try = 0;
444 // If ScaledReg is an invariant, try to find a variant expression.
445 while (Try < BaseRegsSize && !isa<SCEVAddRecExpr>(ScaledReg))
446 std::swap(ScaledReg, BaseRegs[Try++]);
447}
448
449/// \brief Get rid of the scale in the formula.
450/// In other words, this method morphes reg1 + 1*reg2 into reg1 + reg2.
451/// \return true if it was possible to get rid of the scale, false otherwise.
452/// \note After this operation the formula may not be in the canonical form.
Sanjoy Das302bfd02015-08-16 18:22:43 +0000453bool Formula::unscale() {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000454 if (Scale != 1)
455 return false;
456 Scale = 0;
457 BaseRegs.push_back(ScaledReg);
458 ScaledReg = nullptr;
459 return true;
Dan Gohman45774ce2010-02-12 10:34:29 +0000460}
461
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000462/// Return the total number of register operands used by this formula. This does
463/// not include register uses implied by non-constant addrec strides.
Adam Nemetdeab6f92014-04-29 18:25:28 +0000464size_t Formula::getNumRegs() const {
Dan Gohman45774ce2010-02-12 10:34:29 +0000465 return !!ScaledReg + BaseRegs.size();
466}
467
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000468/// Return the type of this formula, if it has one, or null otherwise. This type
469/// is meaningless except for the bit size.
Chris Lattner229907c2011-07-18 04:54:35 +0000470Type *Formula::getType() const {
Sanjoy Das215df9e2015-08-04 01:52:05 +0000471 return !BaseRegs.empty() ? BaseRegs.front()->getType() :
472 ScaledReg ? ScaledReg->getType() :
473 BaseGV ? BaseGV->getType() :
474 nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +0000475}
476
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000477/// Delete the given base reg from the BaseRegs list.
Sanjoy Das302bfd02015-08-16 18:22:43 +0000478void Formula::deleteBaseReg(const SCEV *&S) {
Dan Gohman80a96082010-05-20 15:17:54 +0000479 if (&S != &BaseRegs.back())
480 std::swap(S, BaseRegs.back());
481 BaseRegs.pop_back();
482}
483
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000484/// Test if this formula references the given register.
Dan Gohman45774ce2010-02-12 10:34:29 +0000485bool Formula::referencesReg(const SCEV *S) const {
David Majnemer0d955d02016-08-11 22:21:41 +0000486 return S == ScaledReg || is_contained(BaseRegs, S);
Dan Gohman45774ce2010-02-12 10:34:29 +0000487}
488
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000489/// Test whether this formula uses registers which are used by uses other than
490/// the use with the given index.
Dan Gohman45774ce2010-02-12 10:34:29 +0000491bool Formula::hasRegsUsedByUsesOtherThan(size_t LUIdx,
492 const RegUseTracker &RegUses) const {
493 if (ScaledReg)
494 if (RegUses.isRegUsedByUsesOtherThan(ScaledReg, LUIdx))
495 return true;
Craig Topper042a3922015-05-25 20:01:18 +0000496 for (const SCEV *BaseReg : BaseRegs)
497 if (RegUses.isRegUsedByUsesOtherThan(BaseReg, LUIdx))
Dan Gohman45774ce2010-02-12 10:34:29 +0000498 return true;
499 return false;
500}
501
502void Formula::print(raw_ostream &OS) const {
503 bool First = true;
Chandler Carruth6e479322013-01-07 15:04:40 +0000504 if (BaseGV) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000505 if (!First) OS << " + "; else First = false;
Chandler Carruthd48cdbf2014-01-09 02:29:41 +0000506 BaseGV->printAsOperand(OS, /*PrintType=*/false);
Dan Gohman45774ce2010-02-12 10:34:29 +0000507 }
Chandler Carruth6e479322013-01-07 15:04:40 +0000508 if (BaseOffset != 0) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000509 if (!First) OS << " + "; else First = false;
Chandler Carruth6e479322013-01-07 15:04:40 +0000510 OS << BaseOffset;
Dan Gohman45774ce2010-02-12 10:34:29 +0000511 }
Craig Topper042a3922015-05-25 20:01:18 +0000512 for (const SCEV *BaseReg : BaseRegs) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000513 if (!First) OS << " + "; else First = false;
Sanjoy Das215df9e2015-08-04 01:52:05 +0000514 OS << "reg(" << *BaseReg << ')';
Dan Gohman45774ce2010-02-12 10:34:29 +0000515 }
Chandler Carruth6e479322013-01-07 15:04:40 +0000516 if (HasBaseReg && BaseRegs.empty()) {
Dan Gohman06ab08f2010-05-18 22:35:55 +0000517 if (!First) OS << " + "; else First = false;
518 OS << "**error: HasBaseReg**";
Chandler Carruth6e479322013-01-07 15:04:40 +0000519 } else if (!HasBaseReg && !BaseRegs.empty()) {
Dan Gohman06ab08f2010-05-18 22:35:55 +0000520 if (!First) OS << " + "; else First = false;
521 OS << "**error: !HasBaseReg**";
522 }
Chandler Carruth6e479322013-01-07 15:04:40 +0000523 if (Scale != 0) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000524 if (!First) OS << " + "; else First = false;
Chandler Carruth6e479322013-01-07 15:04:40 +0000525 OS << Scale << "*reg(";
Sanjoy Das215df9e2015-08-04 01:52:05 +0000526 if (ScaledReg)
527 OS << *ScaledReg;
528 else
Dan Gohman45774ce2010-02-12 10:34:29 +0000529 OS << "<unknown>";
530 OS << ')';
531 }
Dan Gohman6136e942011-05-03 00:46:49 +0000532 if (UnfoldedOffset != 0) {
Arnaud A. de Grandmaison75c9e6d2014-03-15 22:13:15 +0000533 if (!First) OS << " + ";
Dan Gohman6136e942011-05-03 00:46:49 +0000534 OS << "imm(" << UnfoldedOffset << ')';
535 }
Dan Gohman45774ce2010-02-12 10:34:29 +0000536}
537
Matthias Braun8c209aa2017-01-28 02:02:38 +0000538#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
539LLVM_DUMP_METHOD void Formula::dump() const {
Dan Gohman45774ce2010-02-12 10:34:29 +0000540 print(errs()); errs() << '\n';
541}
Matthias Braun8c209aa2017-01-28 02:02:38 +0000542#endif
Dan Gohman45774ce2010-02-12 10:34:29 +0000543
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000544/// Return true if the given addrec can be sign-extended without changing its
545/// value.
Dan Gohman85af2562010-02-19 19:32:49 +0000546static bool isAddRecSExtable(const SCEVAddRecExpr *AR, ScalarEvolution &SE) {
Chris Lattner229907c2011-07-18 04:54:35 +0000547 Type *WideTy =
Dan Gohmanab5fb7f2010-05-20 19:44:23 +0000548 IntegerType::get(SE.getContext(), SE.getTypeSizeInBits(AR->getType()) + 1);
Dan Gohman85af2562010-02-19 19:32:49 +0000549 return isa<SCEVAddRecExpr>(SE.getSignExtendExpr(AR, WideTy));
550}
551
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000552/// Return true if the given add can be sign-extended without changing its
553/// value.
Dan Gohman85af2562010-02-19 19:32:49 +0000554static bool isAddSExtable(const SCEVAddExpr *A, ScalarEvolution &SE) {
Chris Lattner229907c2011-07-18 04:54:35 +0000555 Type *WideTy =
Dan Gohmanab5fb7f2010-05-20 19:44:23 +0000556 IntegerType::get(SE.getContext(), SE.getTypeSizeInBits(A->getType()) + 1);
Dan Gohman85af2562010-02-19 19:32:49 +0000557 return isa<SCEVAddExpr>(SE.getSignExtendExpr(A, WideTy));
558}
559
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000560/// Return true if the given mul can be sign-extended without changing its
561/// value.
Dan Gohmanab542222010-06-24 16:45:11 +0000562static bool isMulSExtable(const SCEVMulExpr *M, ScalarEvolution &SE) {
Chris Lattner229907c2011-07-18 04:54:35 +0000563 Type *WideTy =
Dan Gohmanab542222010-06-24 16:45:11 +0000564 IntegerType::get(SE.getContext(),
565 SE.getTypeSizeInBits(M->getType()) * M->getNumOperands());
566 return isa<SCEVMulExpr>(SE.getSignExtendExpr(M, WideTy));
Dan Gohman85af2562010-02-19 19:32:49 +0000567}
568
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000569/// Return an expression for LHS /s RHS, if it can be determined and if the
570/// remainder is known to be zero, or null otherwise. If IgnoreSignificantBits
571/// is true, expressions like (X * Y) /s Y are simplified to Y, ignoring that
572/// the multiplication may overflow, which is useful when the result will be
573/// used in a context where the most significant bits are ignored.
Dan Gohman4eebb942010-02-19 19:35:48 +0000574static const SCEV *getExactSDiv(const SCEV *LHS, const SCEV *RHS,
575 ScalarEvolution &SE,
576 bool IgnoreSignificantBits = false) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000577 // Handle the trivial case, which works for any SCEV type.
578 if (LHS == RHS)
Dan Gohman1d2ded72010-05-03 22:09:21 +0000579 return SE.getConstant(LHS->getType(), 1);
Dan Gohman45774ce2010-02-12 10:34:29 +0000580
Dan Gohman47ddf762010-06-24 16:51:25 +0000581 // Handle a few RHS special cases.
582 const SCEVConstant *RC = dyn_cast<SCEVConstant>(RHS);
583 if (RC) {
Sanjoy Das0de2fec2015-12-17 20:28:46 +0000584 const APInt &RA = RC->getAPInt();
Dan Gohman47ddf762010-06-24 16:51:25 +0000585 // Handle x /s -1 as x * -1, to give ScalarEvolution a chance to do
586 // some folding.
587 if (RA.isAllOnesValue())
588 return SE.getMulExpr(LHS, RC);
589 // Handle x /s 1 as x.
590 if (RA == 1)
591 return LHS;
592 }
Dan Gohman45774ce2010-02-12 10:34:29 +0000593
594 // Check for a division of a constant by a constant.
595 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(LHS)) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000596 if (!RC)
Craig Topperf40110f2014-04-25 05:29:35 +0000597 return nullptr;
Sanjoy Das0de2fec2015-12-17 20:28:46 +0000598 const APInt &LA = C->getAPInt();
599 const APInt &RA = RC->getAPInt();
Dan Gohman47ddf762010-06-24 16:51:25 +0000600 if (LA.srem(RA) != 0)
Craig Topperf40110f2014-04-25 05:29:35 +0000601 return nullptr;
Dan Gohman47ddf762010-06-24 16:51:25 +0000602 return SE.getConstant(LA.sdiv(RA));
Dan Gohman45774ce2010-02-12 10:34:29 +0000603 }
604
Dan Gohman85af2562010-02-19 19:32:49 +0000605 // Distribute the sdiv over addrec operands, if the addrec doesn't overflow.
Dan Gohman45774ce2010-02-12 10:34:29 +0000606 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(LHS)) {
Alexandros Lamprineas0ee3ec22016-11-09 08:53:07 +0000607 if ((IgnoreSignificantBits || isAddRecSExtable(AR, SE)) && AR->isAffine()) {
Dan Gohman4eebb942010-02-19 19:35:48 +0000608 const SCEV *Step = getExactSDiv(AR->getStepRecurrence(SE), RHS, SE,
609 IgnoreSignificantBits);
Craig Topperf40110f2014-04-25 05:29:35 +0000610 if (!Step) return nullptr;
Dan Gohman129a8162010-08-19 01:02:31 +0000611 const SCEV *Start = getExactSDiv(AR->getStart(), RHS, SE,
612 IgnoreSignificantBits);
Craig Topperf40110f2014-04-25 05:29:35 +0000613 if (!Start) return nullptr;
Andrew Trick8b55b732011-03-14 16:50:06 +0000614 // FlagNW is independent of the start value, step direction, and is
615 // preserved with smaller magnitude steps.
616 // FIXME: AR->getNoWrapFlags(SCEV::FlagNW)
617 return SE.getAddRecExpr(Start, Step, AR->getLoop(), SCEV::FlagAnyWrap);
Dan Gohman85af2562010-02-19 19:32:49 +0000618 }
Craig Topperf40110f2014-04-25 05:29:35 +0000619 return nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +0000620 }
621
Dan Gohman85af2562010-02-19 19:32:49 +0000622 // Distribute the sdiv over add operands, if the add doesn't overflow.
Dan Gohman45774ce2010-02-12 10:34:29 +0000623 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(LHS)) {
Dan Gohman85af2562010-02-19 19:32:49 +0000624 if (IgnoreSignificantBits || isAddSExtable(Add, SE)) {
625 SmallVector<const SCEV *, 8> Ops;
Craig Topper042a3922015-05-25 20:01:18 +0000626 for (const SCEV *S : Add->operands()) {
627 const SCEV *Op = getExactSDiv(S, RHS, SE, IgnoreSignificantBits);
Craig Topperf40110f2014-04-25 05:29:35 +0000628 if (!Op) return nullptr;
Dan Gohman85af2562010-02-19 19:32:49 +0000629 Ops.push_back(Op);
630 }
631 return SE.getAddExpr(Ops);
Dan Gohman45774ce2010-02-12 10:34:29 +0000632 }
Craig Topperf40110f2014-04-25 05:29:35 +0000633 return nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +0000634 }
635
636 // Check for a multiply operand that we can pull RHS out of.
Dan Gohman963b1c12010-06-24 16:57:52 +0000637 if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(LHS)) {
Dan Gohman85af2562010-02-19 19:32:49 +0000638 if (IgnoreSignificantBits || isMulSExtable(Mul, SE)) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000639 SmallVector<const SCEV *, 4> Ops;
640 bool Found = false;
Craig Topper042a3922015-05-25 20:01:18 +0000641 for (const SCEV *S : Mul->operands()) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000642 if (!Found)
Dan Gohman6b733fc2010-05-20 16:23:28 +0000643 if (const SCEV *Q = getExactSDiv(S, RHS, SE,
Dan Gohman4eebb942010-02-19 19:35:48 +0000644 IgnoreSignificantBits)) {
Dan Gohman6b733fc2010-05-20 16:23:28 +0000645 S = Q;
Dan Gohman45774ce2010-02-12 10:34:29 +0000646 Found = true;
Dan Gohman45774ce2010-02-12 10:34:29 +0000647 }
Dan Gohman6b733fc2010-05-20 16:23:28 +0000648 Ops.push_back(S);
Dan Gohman45774ce2010-02-12 10:34:29 +0000649 }
Craig Topperf40110f2014-04-25 05:29:35 +0000650 return Found ? SE.getMulExpr(Ops) : nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +0000651 }
Craig Topperf40110f2014-04-25 05:29:35 +0000652 return nullptr;
Dan Gohman963b1c12010-06-24 16:57:52 +0000653 }
Dan Gohman45774ce2010-02-12 10:34:29 +0000654
655 // Otherwise we don't know.
Craig Topperf40110f2014-04-25 05:29:35 +0000656 return nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +0000657}
658
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000659/// If S involves the addition of a constant integer value, return that integer
660/// value, and mutate S to point to a new SCEV with that value excluded.
Dan Gohman45774ce2010-02-12 10:34:29 +0000661static int64_t ExtractImmediate(const SCEV *&S, ScalarEvolution &SE) {
662 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(S)) {
Sanjoy Das0de2fec2015-12-17 20:28:46 +0000663 if (C->getAPInt().getMinSignedBits() <= 64) {
Dan Gohman1d2ded72010-05-03 22:09:21 +0000664 S = SE.getConstant(C->getType(), 0);
Dan Gohman45774ce2010-02-12 10:34:29 +0000665 return C->getValue()->getSExtValue();
666 }
667 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
668 SmallVector<const SCEV *, 8> NewOps(Add->op_begin(), Add->op_end());
669 int64_t Result = ExtractImmediate(NewOps.front(), SE);
Dan Gohman081ffcd2010-08-13 21:17:19 +0000670 if (Result != 0)
671 S = SE.getAddExpr(NewOps);
Dan Gohman45774ce2010-02-12 10:34:29 +0000672 return Result;
673 } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
674 SmallVector<const SCEV *, 8> NewOps(AR->op_begin(), AR->op_end());
675 int64_t Result = ExtractImmediate(NewOps.front(), SE);
Dan Gohman081ffcd2010-08-13 21:17:19 +0000676 if (Result != 0)
Andrew Trick8b55b732011-03-14 16:50:06 +0000677 S = SE.getAddRecExpr(NewOps, AR->getLoop(),
678 // FIXME: AR->getNoWrapFlags(SCEV::FlagNW)
679 SCEV::FlagAnyWrap);
Dan Gohman45774ce2010-02-12 10:34:29 +0000680 return Result;
681 }
682 return 0;
683}
684
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000685/// If S involves the addition of a GlobalValue address, return that symbol, and
686/// mutate S to point to a new SCEV with that value excluded.
Dan Gohman45774ce2010-02-12 10:34:29 +0000687static GlobalValue *ExtractSymbol(const SCEV *&S, ScalarEvolution &SE) {
688 if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(S)) {
689 if (GlobalValue *GV = dyn_cast<GlobalValue>(U->getValue())) {
Dan Gohman1d2ded72010-05-03 22:09:21 +0000690 S = SE.getConstant(GV->getType(), 0);
Dan Gohman45774ce2010-02-12 10:34:29 +0000691 return GV;
692 }
693 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
694 SmallVector<const SCEV *, 8> NewOps(Add->op_begin(), Add->op_end());
695 GlobalValue *Result = ExtractSymbol(NewOps.back(), SE);
Dan Gohman081ffcd2010-08-13 21:17:19 +0000696 if (Result)
697 S = SE.getAddExpr(NewOps);
Dan Gohman45774ce2010-02-12 10:34:29 +0000698 return Result;
699 } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
700 SmallVector<const SCEV *, 8> NewOps(AR->op_begin(), AR->op_end());
701 GlobalValue *Result = ExtractSymbol(NewOps.front(), SE);
Dan Gohman081ffcd2010-08-13 21:17:19 +0000702 if (Result)
Andrew Trick8b55b732011-03-14 16:50:06 +0000703 S = SE.getAddRecExpr(NewOps, AR->getLoop(),
704 // FIXME: AR->getNoWrapFlags(SCEV::FlagNW)
705 SCEV::FlagAnyWrap);
Dan Gohman45774ce2010-02-12 10:34:29 +0000706 return Result;
707 }
Craig Topperf40110f2014-04-25 05:29:35 +0000708 return nullptr;
Nate Begemanb18121e2004-10-18 21:08:22 +0000709}
710
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000711/// Returns true if the specified instruction is using the specified value as an
712/// address.
Dale Johannesen9efd2ce2008-12-05 21:47:27 +0000713static bool isAddressUse(Instruction *Inst, Value *OperandVal) {
714 bool isAddress = isa<LoadInst>(Inst);
715 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
Matt Arsenaultcb3fa372017-02-08 06:44:58 +0000716 if (SI->getPointerOperand() == OperandVal)
Dale Johannesen9efd2ce2008-12-05 21:47:27 +0000717 isAddress = true;
718 } else if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst)) {
719 // Addressing modes can also be folded into prefetches and a variety
720 // of intrinsics.
721 switch (II->getIntrinsicID()) {
722 default: break;
723 case Intrinsic::prefetch:
Gabor Greif8ae30952010-06-30 09:15:28 +0000724 if (II->getArgOperand(0) == OperandVal)
Dale Johannesen9efd2ce2008-12-05 21:47:27 +0000725 isAddress = true;
726 break;
727 }
Matt Arsenaultcb3fa372017-02-08 06:44:58 +0000728 } else if (AtomicRMWInst *RMW = dyn_cast<AtomicRMWInst>(Inst)) {
729 if (RMW->getPointerOperand() == OperandVal)
730 isAddress = true;
731 } else if (AtomicCmpXchgInst *CmpX = dyn_cast<AtomicCmpXchgInst>(Inst)) {
732 if (CmpX->getPointerOperand() == OperandVal)
733 isAddress = true;
Dale Johannesen9efd2ce2008-12-05 21:47:27 +0000734 }
735 return isAddress;
736}
Chris Lattnere4ed42a2005-10-03 01:04:44 +0000737
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000738/// Return the type of the memory being accessed.
Matt Arsenault427a0fd2015-08-15 00:53:06 +0000739static MemAccessTy getAccessType(const Instruction *Inst) {
740 MemAccessTy AccessTy(Inst->getType(), MemAccessTy::UnknownAddressSpace);
741 if (const StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
742 AccessTy.MemTy = SI->getOperand(0)->getType();
743 AccessTy.AddrSpace = SI->getPointerAddressSpace();
744 } else if (const LoadInst *LI = dyn_cast<LoadInst>(Inst)) {
745 AccessTy.AddrSpace = LI->getPointerAddressSpace();
Matt Arsenaultcb3fa372017-02-08 06:44:58 +0000746 } else if (const AtomicRMWInst *RMW = dyn_cast<AtomicRMWInst>(Inst)) {
747 AccessTy.AddrSpace = RMW->getPointerAddressSpace();
748 } else if (const AtomicCmpXchgInst *CmpX = dyn_cast<AtomicCmpXchgInst>(Inst)) {
749 AccessTy.AddrSpace = CmpX->getPointerAddressSpace();
Dan Gohman917ffe42009-03-09 21:01:17 +0000750 }
Dan Gohman45774ce2010-02-12 10:34:29 +0000751
752 // All pointers have the same requirements, so canonicalize them to an
753 // arbitrary pointer type to minimize variation.
Matt Arsenault427a0fd2015-08-15 00:53:06 +0000754 if (PointerType *PTy = dyn_cast<PointerType>(AccessTy.MemTy))
755 AccessTy.MemTy = PointerType::get(IntegerType::get(PTy->getContext(), 1),
756 PTy->getAddressSpace());
Dan Gohman45774ce2010-02-12 10:34:29 +0000757
Dan Gohman14d13392009-05-18 16:45:28 +0000758 return AccessTy;
Dan Gohman917ffe42009-03-09 21:01:17 +0000759}
760
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000761/// Return true if this AddRec is already a phi in its loop.
Andrew Trick5df90962011-12-06 03:13:31 +0000762static bool isExistingPhi(const SCEVAddRecExpr *AR, ScalarEvolution &SE) {
763 for (BasicBlock::iterator I = AR->getLoop()->getHeader()->begin();
764 PHINode *PN = dyn_cast<PHINode>(I); ++I) {
765 if (SE.isSCEVable(PN->getType()) &&
766 (SE.getEffectiveSCEVType(PN->getType()) ==
767 SE.getEffectiveSCEVType(AR->getType())) &&
768 SE.getSCEV(PN) == AR)
769 return true;
770 }
771 return false;
772}
773
Andrew Trickd5d2db92012-01-10 01:45:08 +0000774/// Check if expanding this expression is likely to incur significant cost. This
775/// is tricky because SCEV doesn't track which expressions are actually computed
776/// by the current IR.
777///
778/// We currently allow expansion of IV increments that involve adds,
779/// multiplication by constants, and AddRecs from existing phis.
780///
781/// TODO: Allow UDivExpr if we can find an existing IV increment that is an
782/// obvious multiple of the UDivExpr.
783static bool isHighCostExpansion(const SCEV *S,
Craig Topper71b7b682014-08-21 05:55:13 +0000784 SmallPtrSetImpl<const SCEV*> &Processed,
Andrew Trickd5d2db92012-01-10 01:45:08 +0000785 ScalarEvolution &SE) {
786 // Zero/One operand expressions
787 switch (S->getSCEVType()) {
788 case scUnknown:
789 case scConstant:
790 return false;
791 case scTruncate:
792 return isHighCostExpansion(cast<SCEVTruncateExpr>(S)->getOperand(),
793 Processed, SE);
794 case scZeroExtend:
795 return isHighCostExpansion(cast<SCEVZeroExtendExpr>(S)->getOperand(),
796 Processed, SE);
797 case scSignExtend:
798 return isHighCostExpansion(cast<SCEVSignExtendExpr>(S)->getOperand(),
799 Processed, SE);
800 }
801
David Blaikie70573dc2014-11-19 07:49:26 +0000802 if (!Processed.insert(S).second)
Andrew Trickd5d2db92012-01-10 01:45:08 +0000803 return false;
804
805 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
Craig Topper042a3922015-05-25 20:01:18 +0000806 for (const SCEV *S : Add->operands()) {
807 if (isHighCostExpansion(S, Processed, SE))
Andrew Trickd5d2db92012-01-10 01:45:08 +0000808 return true;
809 }
810 return false;
811 }
812
813 if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S)) {
814 if (Mul->getNumOperands() == 2) {
815 // Multiplication by a constant is ok
816 if (isa<SCEVConstant>(Mul->getOperand(0)))
817 return isHighCostExpansion(Mul->getOperand(1), Processed, SE);
818
819 // If we have the value of one operand, check if an existing
820 // multiplication already generates this expression.
821 if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(Mul->getOperand(1))) {
822 Value *UVal = U->getValue();
Chandler Carruthcdf47882014-03-09 03:16:01 +0000823 for (User *UR : UVal->users()) {
Andrew Trick14779cc2012-03-26 20:28:37 +0000824 // If U is a constant, it may be used by a ConstantExpr.
Chandler Carruthcdf47882014-03-09 03:16:01 +0000825 Instruction *UI = dyn_cast<Instruction>(UR);
826 if (UI && UI->getOpcode() == Instruction::Mul &&
827 SE.isSCEVable(UI->getType())) {
828 return SE.getSCEV(UI) == Mul;
Andrew Trickd5d2db92012-01-10 01:45:08 +0000829 }
830 }
831 }
832 }
833 }
834
835 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
836 if (isExistingPhi(AR, SE))
837 return false;
838 }
839
840 // Fow now, consider any other type of expression (div/mul/min/max) high cost.
841 return true;
842}
843
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000844/// If any of the instructions is the specified set are trivially dead, delete
845/// them and see if this makes any of their operands subsequently dead.
Dan Gohman45774ce2010-02-12 10:34:29 +0000846static bool
847DeleteTriviallyDeadInstructions(SmallVectorImpl<WeakVH> &DeadInsts) {
848 bool Changed = false;
849
850 while (!DeadInsts.empty()) {
Richard Smithad9c8e82012-08-21 20:35:14 +0000851 Value *V = DeadInsts.pop_back_val();
852 Instruction *I = dyn_cast_or_null<Instruction>(V);
Dan Gohman45774ce2010-02-12 10:34:29 +0000853
Craig Topperf40110f2014-04-25 05:29:35 +0000854 if (!I || !isInstructionTriviallyDead(I))
Dan Gohman45774ce2010-02-12 10:34:29 +0000855 continue;
856
Craig Topper042a3922015-05-25 20:01:18 +0000857 for (Use &O : I->operands())
858 if (Instruction *U = dyn_cast<Instruction>(O)) {
859 O = nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +0000860 if (U->use_empty())
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +0000861 DeadInsts.emplace_back(U);
Dan Gohman45774ce2010-02-12 10:34:29 +0000862 }
863
864 I->eraseFromParent();
865 Changed = true;
866 }
867
868 return Changed;
869}
870
Dan Gohman045f8192010-01-22 00:46:49 +0000871namespace {
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000872
Quentin Colombet8aa7abe2013-05-31 17:20:29 +0000873class LSRUse;
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000874
875} // end anonymous namespace
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000876
877/// \brief Check if the addressing mode defined by \p F is completely
878/// folded in \p LU at isel time.
879/// This includes address-mode folding and special icmp tricks.
880/// This function returns true if \p LU can accommodate what \p F
881/// defines and up to 1 base + 1 scaled + offset.
882/// In other words, if \p F has several base registers, this function may
883/// still return true. Therefore, users still need to account for
884/// additional base registers and/or unfolded offsets to derive an
885/// accurate cost model.
886static bool isAMCompletelyFolded(const TargetTransformInfo &TTI,
887 const LSRUse &LU, const Formula &F);
Quentin Colombetbf490d42013-05-31 21:29:03 +0000888// Get the cost of the scaling factor used in F for LU.
889static unsigned getScalingFactorCost(const TargetTransformInfo &TTI,
890 const LSRUse &LU, const Formula &F);
Quentin Colombet8aa7abe2013-05-31 17:20:29 +0000891
892namespace {
Jim Grosbach60f48542009-11-17 17:53:56 +0000893
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000894/// This class is used to measure and compare candidate formulae.
Dan Gohman45774ce2010-02-12 10:34:29 +0000895class Cost {
896 /// TODO: Some of these could be merged. Also, a lexical ordering
897 /// isn't always optimal.
898 unsigned NumRegs;
899 unsigned AddRecCost;
900 unsigned NumIVMuls;
901 unsigned NumBaseAdds;
902 unsigned ImmCost;
903 unsigned SetupCost;
Quentin Colombetbf490d42013-05-31 21:29:03 +0000904 unsigned ScaleCost;
Nate Begemane68bcd12005-07-30 00:15:07 +0000905
Dan Gohman45774ce2010-02-12 10:34:29 +0000906public:
907 Cost()
908 : NumRegs(0), AddRecCost(0), NumIVMuls(0), NumBaseAdds(0), ImmCost(0),
Quentin Colombetbf490d42013-05-31 21:29:03 +0000909 SetupCost(0), ScaleCost(0) {}
Jim Grosbach60f48542009-11-17 17:53:56 +0000910
Dan Gohman45774ce2010-02-12 10:34:29 +0000911 bool operator<(const Cost &Other) const;
Dan Gohman045f8192010-01-22 00:46:49 +0000912
Tim Northoverbc6659c2014-01-22 13:27:00 +0000913 void Lose();
Dan Gohman045f8192010-01-22 00:46:49 +0000914
Andrew Trick784729d2011-09-26 23:11:04 +0000915#ifndef NDEBUG
916 // Once any of the metrics loses, they must all remain losers.
917 bool isValid() {
918 return ((NumRegs | AddRecCost | NumIVMuls | NumBaseAdds
Quentin Colombetbf490d42013-05-31 21:29:03 +0000919 | ImmCost | SetupCost | ScaleCost) != ~0u)
Andrew Trick784729d2011-09-26 23:11:04 +0000920 || ((NumRegs & AddRecCost & NumIVMuls & NumBaseAdds
Quentin Colombetbf490d42013-05-31 21:29:03 +0000921 & ImmCost & SetupCost & ScaleCost) == ~0u);
Andrew Trick784729d2011-09-26 23:11:04 +0000922 }
923#endif
924
925 bool isLoser() {
926 assert(isValid() && "invalid cost");
927 return NumRegs == ~0u;
928 }
929
Quentin Colombet8aa7abe2013-05-31 17:20:29 +0000930 void RateFormula(const TargetTransformInfo &TTI,
931 const Formula &F,
Craig Topper71b7b682014-08-21 05:55:13 +0000932 SmallPtrSetImpl<const SCEV *> &Regs,
Dan Gohman45774ce2010-02-12 10:34:29 +0000933 const DenseSet<const SCEV *> &VisitedRegs,
934 const Loop *L,
Andrew Trick5df90962011-12-06 03:13:31 +0000935 ScalarEvolution &SE, DominatorTree &DT,
Quentin Colombet8aa7abe2013-05-31 17:20:29 +0000936 const LSRUse &LU,
Craig Topper71b7b682014-08-21 05:55:13 +0000937 SmallPtrSetImpl<const SCEV *> *LoserRegs = nullptr);
Dan Gohman045f8192010-01-22 00:46:49 +0000938
Dan Gohman45774ce2010-02-12 10:34:29 +0000939 void print(raw_ostream &OS) const;
940 void dump() const;
Dan Gohman045f8192010-01-22 00:46:49 +0000941
Dan Gohman45774ce2010-02-12 10:34:29 +0000942private:
943 void RateRegister(const SCEV *Reg,
Craig Topper71b7b682014-08-21 05:55:13 +0000944 SmallPtrSetImpl<const SCEV *> &Regs,
Dan Gohman45774ce2010-02-12 10:34:29 +0000945 const Loop *L,
946 ScalarEvolution &SE, DominatorTree &DT);
Dan Gohman5b18f032010-02-13 02:06:02 +0000947 void RatePrimaryRegister(const SCEV *Reg,
Craig Topper71b7b682014-08-21 05:55:13 +0000948 SmallPtrSetImpl<const SCEV *> &Regs,
Dan Gohman5b18f032010-02-13 02:06:02 +0000949 const Loop *L,
Andrew Trick5df90962011-12-06 03:13:31 +0000950 ScalarEvolution &SE, DominatorTree &DT,
Craig Topper71b7b682014-08-21 05:55:13 +0000951 SmallPtrSetImpl<const SCEV *> *LoserRegs);
Dan Gohman45774ce2010-02-12 10:34:29 +0000952};
Jonas Paulsson7a794222016-08-17 13:24:19 +0000953
954/// An operand value in an instruction which is to be replaced with some
955/// equivalent, possibly strength-reduced, replacement.
956struct LSRFixup {
957 /// The instruction which will be updated.
958 Instruction *UserInst;
959
960 /// The operand of the instruction which will be replaced. The operand may be
961 /// used more than once; every instance will be replaced.
962 Value *OperandValToReplace;
963
964 /// If this user is to use the post-incremented value of an induction
965 /// variable, this variable is non-null and holds the loop associated with the
966 /// induction variable.
967 PostIncLoopSet PostIncLoops;
968
969 /// A constant offset to be added to the LSRUse expression. This allows
970 /// multiple fixups to share the same LSRUse with different offsets, for
971 /// example in an unrolled loop.
972 int64_t Offset;
973
974 bool isUseFullyOutsideLoop(const Loop *L) const;
975
976 LSRFixup();
977
978 void print(raw_ostream &OS) const;
979 void dump() const;
980};
981
Jonas Paulsson7a794222016-08-17 13:24:19 +0000982/// A DenseMapInfo implementation for holding DenseMaps and DenseSets of sorted
983/// SmallVectors of const SCEV*.
984struct UniquifierDenseMapInfo {
985 static SmallVector<const SCEV *, 4> getEmptyKey() {
986 SmallVector<const SCEV *, 4> V;
987 V.push_back(reinterpret_cast<const SCEV *>(-1));
988 return V;
989 }
990
991 static SmallVector<const SCEV *, 4> getTombstoneKey() {
992 SmallVector<const SCEV *, 4> V;
993 V.push_back(reinterpret_cast<const SCEV *>(-2));
994 return V;
995 }
996
997 static unsigned getHashValue(const SmallVector<const SCEV *, 4> &V) {
998 return static_cast<unsigned>(hash_combine_range(V.begin(), V.end()));
999 }
1000
1001 static bool isEqual(const SmallVector<const SCEV *, 4> &LHS,
1002 const SmallVector<const SCEV *, 4> &RHS) {
1003 return LHS == RHS;
1004 }
1005};
1006
1007/// This class holds the state that LSR keeps for each use in IVUsers, as well
1008/// as uses invented by LSR itself. It includes information about what kinds of
1009/// things can be folded into the user, information about the user itself, and
1010/// information about how the use may be satisfied. TODO: Represent multiple
1011/// users of the same expression in common?
1012class LSRUse {
1013 DenseSet<SmallVector<const SCEV *, 4>, UniquifierDenseMapInfo> Uniquifier;
1014
1015public:
1016 /// An enum for a kind of use, indicating what types of scaled and immediate
1017 /// operands it might support.
1018 enum KindType {
1019 Basic, ///< A normal use, with no folding.
1020 Special, ///< A special case of basic, allowing -1 scales.
1021 Address, ///< An address use; folding according to TargetLowering
1022 ICmpZero ///< An equality icmp with both operands folded into one.
1023 // TODO: Add a generic icmp too?
1024 };
1025
1026 typedef PointerIntPair<const SCEV *, 2, KindType> SCEVUseKindPair;
1027
1028 KindType Kind;
1029 MemAccessTy AccessTy;
1030
1031 /// The list of operands which are to be replaced.
1032 SmallVector<LSRFixup, 8> Fixups;
1033
1034 /// Keep track of the min and max offsets of the fixups.
1035 int64_t MinOffset;
1036 int64_t MaxOffset;
1037
1038 /// This records whether all of the fixups using this LSRUse are outside of
1039 /// the loop, in which case some special-case heuristics may be used.
1040 bool AllFixupsOutsideLoop;
1041
1042 /// RigidFormula is set to true to guarantee that this use will be associated
1043 /// with a single formula--the one that initially matched. Some SCEV
1044 /// expressions cannot be expanded. This allows LSR to consider the registers
1045 /// used by those expressions without the need to expand them later after
1046 /// changing the formula.
1047 bool RigidFormula;
1048
1049 /// This records the widest use type for any fixup using this
1050 /// LSRUse. FindUseWithSimilarFormula can't consider uses with different max
1051 /// fixup widths to be equivalent, because the narrower one may be relying on
1052 /// the implicit truncation to truncate away bogus bits.
1053 Type *WidestFixupType;
1054
1055 /// A list of ways to build a value that can satisfy this user. After the
1056 /// list is populated, one of these is selected heuristically and used to
1057 /// formulate a replacement for OperandValToReplace in UserInst.
1058 SmallVector<Formula, 12> Formulae;
1059
1060 /// The set of register candidates used by all formulae in this LSRUse.
1061 SmallPtrSet<const SCEV *, 4> Regs;
1062
1063 LSRUse(KindType K, MemAccessTy AT)
1064 : Kind(K), AccessTy(AT), MinOffset(INT64_MAX), MaxOffset(INT64_MIN),
1065 AllFixupsOutsideLoop(true), RigidFormula(false),
1066 WidestFixupType(nullptr) {}
1067
1068 LSRFixup &getNewFixup() {
1069 Fixups.push_back(LSRFixup());
1070 return Fixups.back();
1071 }
1072
1073 void pushFixup(LSRFixup &f) {
1074 Fixups.push_back(f);
1075 if (f.Offset > MaxOffset)
1076 MaxOffset = f.Offset;
1077 if (f.Offset < MinOffset)
1078 MinOffset = f.Offset;
1079 }
1080
1081 bool HasFormulaWithSameRegs(const Formula &F) const;
1082 bool InsertFormula(const Formula &F);
1083 void DeleteFormula(Formula &F);
1084 void RecomputeRegs(size_t LUIdx, RegUseTracker &Reguses);
1085
1086 void print(raw_ostream &OS) const;
1087 void dump() const;
1088};
Dan Gohman45774ce2010-02-12 10:34:29 +00001089
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +00001090} // end anonymous namespace
Dan Gohman45774ce2010-02-12 10:34:29 +00001091
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001092/// Tally up interesting quantities from the given register.
Dan Gohman45774ce2010-02-12 10:34:29 +00001093void Cost::RateRegister(const SCEV *Reg,
Craig Topper71b7b682014-08-21 05:55:13 +00001094 SmallPtrSetImpl<const SCEV *> &Regs,
Dan Gohman45774ce2010-02-12 10:34:29 +00001095 const Loop *L,
1096 ScalarEvolution &SE, DominatorTree &DT) {
Dan Gohman5b18f032010-02-13 02:06:02 +00001097 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(Reg)) {
Wei Mi8f20e632017-02-11 00:50:23 +00001098 // If this is an addrec for another loop, it should be an invariant
1099 // with respect to L since L is the innermost loop (at least
1100 // for now LSR only handles innermost loops).
Andrew Trickd97b83e2012-03-22 22:42:45 +00001101 if (AR->getLoop() != L) {
1102 // If the AddRec exists, consider it's register free and leave it alone.
Andrew Trick5df90962011-12-06 03:13:31 +00001103 if (isExistingPhi(AR, SE))
1104 return;
1105
Wei Mi8f20e632017-02-11 00:50:23 +00001106 // Otherwise, it will be an invariant with respect to Loop L.
1107 ++NumRegs;
Andrew Trickd97b83e2012-03-22 22:42:45 +00001108 return;
Dan Gohman45774ce2010-02-12 10:34:29 +00001109 }
Andrew Trickd97b83e2012-03-22 22:42:45 +00001110 AddRecCost += 1; /// TODO: This should be a function of the stride.
Dan Gohman45774ce2010-02-12 10:34:29 +00001111
Dan Gohman5b18f032010-02-13 02:06:02 +00001112 // Add the step value register, if it needs one.
1113 // TODO: The non-affine case isn't precisely modeled here.
Andrew Trick8868fae2011-09-26 23:35:25 +00001114 if (!AR->isAffine() || !isa<SCEVConstant>(AR->getOperand(1))) {
1115 if (!Regs.count(AR->getOperand(1))) {
Dan Gohman5b18f032010-02-13 02:06:02 +00001116 RateRegister(AR->getOperand(1), Regs, L, SE, DT);
Andrew Trick8868fae2011-09-26 23:35:25 +00001117 if (isLoser())
1118 return;
1119 }
1120 }
Dan Gohman45774ce2010-02-12 10:34:29 +00001121 }
Dan Gohman5b18f032010-02-13 02:06:02 +00001122 ++NumRegs;
1123
1124 // Rough heuristic; favor registers which don't require extra setup
1125 // instructions in the preheader.
1126 if (!isa<SCEVUnknown>(Reg) &&
1127 !isa<SCEVConstant>(Reg) &&
1128 !(isa<SCEVAddRecExpr>(Reg) &&
1129 (isa<SCEVUnknown>(cast<SCEVAddRecExpr>(Reg)->getStart()) ||
1130 isa<SCEVConstant>(cast<SCEVAddRecExpr>(Reg)->getStart()))))
1131 ++SetupCost;
Dan Gohman34f37e02010-10-07 23:41:58 +00001132
Davide Italiano709d4182016-07-07 17:44:38 +00001133 NumIVMuls += isa<SCEVMulExpr>(Reg) &&
1134 SE.hasComputableLoopEvolution(Reg, L);
Dan Gohman5b18f032010-02-13 02:06:02 +00001135}
1136
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001137/// Record this register in the set. If we haven't seen it before, rate
1138/// it. Optional LoserRegs provides a way to declare any formula that refers to
1139/// one of those regs an instant loser.
Dan Gohman5b18f032010-02-13 02:06:02 +00001140void Cost::RatePrimaryRegister(const SCEV *Reg,
Craig Topper71b7b682014-08-21 05:55:13 +00001141 SmallPtrSetImpl<const SCEV *> &Regs,
Dan Gohman0849ed52010-02-16 19:42:34 +00001142 const Loop *L,
Andrew Trick5df90962011-12-06 03:13:31 +00001143 ScalarEvolution &SE, DominatorTree &DT,
Craig Topper71b7b682014-08-21 05:55:13 +00001144 SmallPtrSetImpl<const SCEV *> *LoserRegs) {
Andrew Trick5df90962011-12-06 03:13:31 +00001145 if (LoserRegs && LoserRegs->count(Reg)) {
Tim Northoverbc6659c2014-01-22 13:27:00 +00001146 Lose();
Andrew Trick5df90962011-12-06 03:13:31 +00001147 return;
1148 }
David Blaikie70573dc2014-11-19 07:49:26 +00001149 if (Regs.insert(Reg).second) {
Dan Gohman5b18f032010-02-13 02:06:02 +00001150 RateRegister(Reg, Regs, L, SE, DT);
Andrew Tricka1c01ba2013-03-19 04:14:57 +00001151 if (LoserRegs && isLoser())
Andrew Trick5df90962011-12-06 03:13:31 +00001152 LoserRegs->insert(Reg);
1153 }
Dan Gohman45774ce2010-02-12 10:34:29 +00001154}
1155
Quentin Colombet8aa7abe2013-05-31 17:20:29 +00001156void Cost::RateFormula(const TargetTransformInfo &TTI,
1157 const Formula &F,
Craig Topper71b7b682014-08-21 05:55:13 +00001158 SmallPtrSetImpl<const SCEV *> &Regs,
Dan Gohman45774ce2010-02-12 10:34:29 +00001159 const DenseSet<const SCEV *> &VisitedRegs,
1160 const Loop *L,
Andrew Trick5df90962011-12-06 03:13:31 +00001161 ScalarEvolution &SE, DominatorTree &DT,
Quentin Colombet8aa7abe2013-05-31 17:20:29 +00001162 const LSRUse &LU,
Craig Topper71b7b682014-08-21 05:55:13 +00001163 SmallPtrSetImpl<const SCEV *> *LoserRegs) {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001164 assert(F.isCanonical() && "Cost is accurate only for canonical formula");
Dan Gohman45774ce2010-02-12 10:34:29 +00001165 // Tally up the registers.
1166 if (const SCEV *ScaledReg = F.ScaledReg) {
1167 if (VisitedRegs.count(ScaledReg)) {
Tim Northoverbc6659c2014-01-22 13:27:00 +00001168 Lose();
Dan Gohman45774ce2010-02-12 10:34:29 +00001169 return;
1170 }
Andrew Trick5df90962011-12-06 03:13:31 +00001171 RatePrimaryRegister(ScaledReg, Regs, L, SE, DT, LoserRegs);
Andrew Trick784729d2011-09-26 23:11:04 +00001172 if (isLoser())
1173 return;
Dan Gohman45774ce2010-02-12 10:34:29 +00001174 }
Craig Topper042a3922015-05-25 20:01:18 +00001175 for (const SCEV *BaseReg : F.BaseRegs) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001176 if (VisitedRegs.count(BaseReg)) {
Tim Northoverbc6659c2014-01-22 13:27:00 +00001177 Lose();
Dan Gohman45774ce2010-02-12 10:34:29 +00001178 return;
1179 }
Andrew Trick5df90962011-12-06 03:13:31 +00001180 RatePrimaryRegister(BaseReg, Regs, L, SE, DT, LoserRegs);
Andrew Trick784729d2011-09-26 23:11:04 +00001181 if (isLoser())
1182 return;
Dan Gohman45774ce2010-02-12 10:34:29 +00001183 }
1184
Dan Gohman6136e942011-05-03 00:46:49 +00001185 // Determine how many (unfolded) adds we'll need inside the loop.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001186 size_t NumBaseParts = F.getNumRegs();
Dan Gohman6136e942011-05-03 00:46:49 +00001187 if (NumBaseParts > 1)
Quentin Colombet8aa7abe2013-05-31 17:20:29 +00001188 // Do not count the base and a possible second register if the target
1189 // allows to fold 2 registers.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001190 NumBaseAdds +=
1191 NumBaseParts - (1 + (F.Scale && isAMCompletelyFolded(TTI, LU, F)));
1192 NumBaseAdds += (F.UnfoldedOffset != 0);
Dan Gohman45774ce2010-02-12 10:34:29 +00001193
Quentin Colombetbf490d42013-05-31 21:29:03 +00001194 // Accumulate non-free scaling amounts.
1195 ScaleCost += getScalingFactorCost(TTI, LU, F);
1196
Dan Gohman45774ce2010-02-12 10:34:29 +00001197 // Tally up the non-zero immediates.
Jonas Paulsson7a794222016-08-17 13:24:19 +00001198 for (const LSRFixup &Fixup : LU.Fixups) {
1199 int64_t O = Fixup.Offset;
Craig Topper042a3922015-05-25 20:01:18 +00001200 int64_t Offset = (uint64_t)O + F.BaseOffset;
Chandler Carruth6e479322013-01-07 15:04:40 +00001201 if (F.BaseGV)
Dan Gohman45774ce2010-02-12 10:34:29 +00001202 ImmCost += 64; // Handle symbolic values conservatively.
1203 // TODO: This should probably be the pointer size.
1204 else if (Offset != 0)
1205 ImmCost += APInt(64, Offset, true).getMinSignedBits();
Jonas Paulsson7a794222016-08-17 13:24:19 +00001206
1207 // Check with target if this offset with this instruction is
1208 // specifically not supported.
1209 if ((isa<LoadInst>(Fixup.UserInst) || isa<StoreInst>(Fixup.UserInst)) &&
1210 !TTI.isFoldableMemAccessOffset(Fixup.UserInst, Offset))
1211 NumBaseAdds++;
Dan Gohman45774ce2010-02-12 10:34:29 +00001212 }
Andrew Trick784729d2011-09-26 23:11:04 +00001213 assert(isValid() && "invalid cost");
Dan Gohman45774ce2010-02-12 10:34:29 +00001214}
1215
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001216/// Set this cost to a losing value.
Tim Northoverbc6659c2014-01-22 13:27:00 +00001217void Cost::Lose() {
Dan Gohman45774ce2010-02-12 10:34:29 +00001218 NumRegs = ~0u;
1219 AddRecCost = ~0u;
1220 NumIVMuls = ~0u;
1221 NumBaseAdds = ~0u;
1222 ImmCost = ~0u;
1223 SetupCost = ~0u;
Quentin Colombetbf490d42013-05-31 21:29:03 +00001224 ScaleCost = ~0u;
Dan Gohman45774ce2010-02-12 10:34:29 +00001225}
1226
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001227/// Choose the lower cost.
Dan Gohman45774ce2010-02-12 10:34:29 +00001228bool Cost::operator<(const Cost &Other) const {
Benjamin Kramerb2f034b2014-03-03 19:58:30 +00001229 return std::tie(NumRegs, AddRecCost, NumIVMuls, NumBaseAdds, ScaleCost,
1230 ImmCost, SetupCost) <
1231 std::tie(Other.NumRegs, Other.AddRecCost, Other.NumIVMuls,
1232 Other.NumBaseAdds, Other.ScaleCost, Other.ImmCost,
1233 Other.SetupCost);
Dan Gohman45774ce2010-02-12 10:34:29 +00001234}
1235
1236void Cost::print(raw_ostream &OS) const {
1237 OS << NumRegs << " reg" << (NumRegs == 1 ? "" : "s");
1238 if (AddRecCost != 0)
1239 OS << ", with addrec cost " << AddRecCost;
1240 if (NumIVMuls != 0)
1241 OS << ", plus " << NumIVMuls << " IV mul" << (NumIVMuls == 1 ? "" : "s");
1242 if (NumBaseAdds != 0)
1243 OS << ", plus " << NumBaseAdds << " base add"
1244 << (NumBaseAdds == 1 ? "" : "s");
Quentin Colombetbf490d42013-05-31 21:29:03 +00001245 if (ScaleCost != 0)
1246 OS << ", plus " << ScaleCost << " scale cost";
Dan Gohman45774ce2010-02-12 10:34:29 +00001247 if (ImmCost != 0)
1248 OS << ", plus " << ImmCost << " imm cost";
1249 if (SetupCost != 0)
1250 OS << ", plus " << SetupCost << " setup cost";
1251}
1252
Matthias Braun8c209aa2017-01-28 02:02:38 +00001253#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1254LLVM_DUMP_METHOD void Cost::dump() const {
Dan Gohman45774ce2010-02-12 10:34:29 +00001255 print(errs()); errs() << '\n';
1256}
Matthias Braun8c209aa2017-01-28 02:02:38 +00001257#endif
Dan Gohman45774ce2010-02-12 10:34:29 +00001258
Dan Gohman45774ce2010-02-12 10:34:29 +00001259LSRFixup::LSRFixup()
Jonas Paulsson7a794222016-08-17 13:24:19 +00001260 : UserInst(nullptr), OperandValToReplace(nullptr),
Craig Topperf40110f2014-04-25 05:29:35 +00001261 Offset(0) {}
Dan Gohman45774ce2010-02-12 10:34:29 +00001262
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001263/// Test whether this fixup always uses its value outside of the given loop.
Dan Gohmand006ab92010-04-07 22:27:08 +00001264bool LSRFixup::isUseFullyOutsideLoop(const Loop *L) const {
1265 // PHI nodes use their value in their incoming blocks.
1266 if (const PHINode *PN = dyn_cast<PHINode>(UserInst)) {
1267 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
1268 if (PN->getIncomingValue(i) == OperandValToReplace &&
1269 L->contains(PN->getIncomingBlock(i)))
1270 return false;
1271 return true;
1272 }
1273
1274 return !L->contains(UserInst);
1275}
1276
Dan Gohman45774ce2010-02-12 10:34:29 +00001277void LSRFixup::print(raw_ostream &OS) const {
1278 OS << "UserInst=";
1279 // Store is common and interesting enough to be worth special-casing.
1280 if (StoreInst *Store = dyn_cast<StoreInst>(UserInst)) {
1281 OS << "store ";
Chandler Carruthd48cdbf2014-01-09 02:29:41 +00001282 Store->getOperand(0)->printAsOperand(OS, /*PrintType=*/false);
Dan Gohman45774ce2010-02-12 10:34:29 +00001283 } else if (UserInst->getType()->isVoidTy())
1284 OS << UserInst->getOpcodeName();
1285 else
Chandler Carruthd48cdbf2014-01-09 02:29:41 +00001286 UserInst->printAsOperand(OS, /*PrintType=*/false);
Dan Gohman45774ce2010-02-12 10:34:29 +00001287
1288 OS << ", OperandValToReplace=";
Chandler Carruthd48cdbf2014-01-09 02:29:41 +00001289 OperandValToReplace->printAsOperand(OS, /*PrintType=*/false);
Dan Gohman45774ce2010-02-12 10:34:29 +00001290
Craig Topper042a3922015-05-25 20:01:18 +00001291 for (const Loop *PIL : PostIncLoops) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001292 OS << ", PostIncLoop=";
Craig Topper042a3922015-05-25 20:01:18 +00001293 PIL->getHeader()->printAsOperand(OS, /*PrintType=*/false);
Dan Gohman45774ce2010-02-12 10:34:29 +00001294 }
1295
Dan Gohman45774ce2010-02-12 10:34:29 +00001296 if (Offset != 0)
1297 OS << ", Offset=" << Offset;
1298}
1299
Matthias Braun8c209aa2017-01-28 02:02:38 +00001300#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1301LLVM_DUMP_METHOD void LSRFixup::dump() const {
Dan Gohman45774ce2010-02-12 10:34:29 +00001302 print(errs()); errs() << '\n';
1303}
Matthias Braun8c209aa2017-01-28 02:02:38 +00001304#endif
Dan Gohman45774ce2010-02-12 10:34:29 +00001305
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001306/// Test whether this use as a formula which has the same registers as the given
1307/// formula.
Dan Gohman20fab452010-05-19 23:43:12 +00001308bool LSRUse::HasFormulaWithSameRegs(const Formula &F) const {
Preston Gurd25c3b6a2013-02-01 20:41:27 +00001309 SmallVector<const SCEV *, 4> Key = F.BaseRegs;
Dan Gohman20fab452010-05-19 23:43:12 +00001310 if (F.ScaledReg) Key.push_back(F.ScaledReg);
1311 // Unstable sort by host order ok, because this is only used for uniquifying.
1312 std::sort(Key.begin(), Key.end());
1313 return Uniquifier.count(Key);
1314}
1315
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001316/// If the given formula has not yet been inserted, add it to the list, and
1317/// return true. Return false otherwise. The formula must be in canonical form.
Dan Gohman8c16b382010-02-22 04:11:59 +00001318bool LSRUse::InsertFormula(const Formula &F) {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001319 assert(F.isCanonical() && "Invalid canonical representation");
1320
Andrew Trick57243da2013-10-25 21:35:56 +00001321 if (!Formulae.empty() && RigidFormula)
1322 return false;
1323
Preston Gurd25c3b6a2013-02-01 20:41:27 +00001324 SmallVector<const SCEV *, 4> Key = F.BaseRegs;
Dan Gohman45774ce2010-02-12 10:34:29 +00001325 if (F.ScaledReg) Key.push_back(F.ScaledReg);
1326 // Unstable sort by host order ok, because this is only used for uniquifying.
1327 std::sort(Key.begin(), Key.end());
1328
1329 if (!Uniquifier.insert(Key).second)
1330 return false;
1331
1332 // Using a register to hold the value of 0 is not profitable.
1333 assert((!F.ScaledReg || !F.ScaledReg->isZero()) &&
1334 "Zero allocated in a scaled register!");
1335#ifndef NDEBUG
Craig Topper042a3922015-05-25 20:01:18 +00001336 for (const SCEV *BaseReg : F.BaseRegs)
1337 assert(!BaseReg->isZero() && "Zero allocated in a base register!");
Dan Gohman45774ce2010-02-12 10:34:29 +00001338#endif
1339
1340 // Add the formula to the list.
1341 Formulae.push_back(F);
1342
1343 // Record registers now being used by this use.
Dan Gohman45774ce2010-02-12 10:34:29 +00001344 Regs.insert(F.BaseRegs.begin(), F.BaseRegs.end());
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001345 if (F.ScaledReg)
1346 Regs.insert(F.ScaledReg);
Dan Gohman45774ce2010-02-12 10:34:29 +00001347
1348 return true;
Dan Gohman045f8192010-01-22 00:46:49 +00001349}
1350
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001351/// Remove the given formula from this use's list.
Dan Gohmanf1c7b1b2010-05-18 22:39:15 +00001352void LSRUse::DeleteFormula(Formula &F) {
Dan Gohman80a96082010-05-20 15:17:54 +00001353 if (&F != &Formulae.back())
1354 std::swap(F, Formulae.back());
Dan Gohmanf1c7b1b2010-05-18 22:39:15 +00001355 Formulae.pop_back();
1356}
1357
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001358/// Recompute the Regs field, and update RegUses.
Dan Gohman4cf99b52010-05-18 23:42:37 +00001359void LSRUse::RecomputeRegs(size_t LUIdx, RegUseTracker &RegUses) {
1360 // Now that we've filtered out some formulae, recompute the Regs set.
Benjamin Kramer1c2beed2015-02-19 17:19:43 +00001361 SmallPtrSet<const SCEV *, 4> OldRegs = std::move(Regs);
Dan Gohman4cf99b52010-05-18 23:42:37 +00001362 Regs.clear();
Benjamin Kramer1c2beed2015-02-19 17:19:43 +00001363 for (const Formula &F : Formulae) {
Dan Gohman4cf99b52010-05-18 23:42:37 +00001364 if (F.ScaledReg) Regs.insert(F.ScaledReg);
1365 Regs.insert(F.BaseRegs.begin(), F.BaseRegs.end());
1366 }
1367
1368 // Update the RegTracker.
Craig Topper46276792014-08-24 23:23:06 +00001369 for (const SCEV *S : OldRegs)
1370 if (!Regs.count(S))
Sanjoy Das302bfd02015-08-16 18:22:43 +00001371 RegUses.dropRegister(S, LUIdx);
Dan Gohman4cf99b52010-05-18 23:42:37 +00001372}
1373
Dan Gohman45774ce2010-02-12 10:34:29 +00001374void LSRUse::print(raw_ostream &OS) const {
1375 OS << "LSR Use: Kind=";
1376 switch (Kind) {
1377 case Basic: OS << "Basic"; break;
1378 case Special: OS << "Special"; break;
1379 case ICmpZero: OS << "ICmpZero"; break;
1380 case Address:
1381 OS << "Address of ";
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001382 if (AccessTy.MemTy->isPointerTy())
Dan Gohman45774ce2010-02-12 10:34:29 +00001383 OS << "pointer"; // the full pointer type could be really verbose
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001384 else {
1385 OS << *AccessTy.MemTy;
1386 }
1387
1388 OS << " in addrspace(" << AccessTy.AddrSpace << ')';
Evan Cheng133694d2007-10-25 09:11:16 +00001389 }
1390
Dan Gohman45774ce2010-02-12 10:34:29 +00001391 OS << ", Offsets={";
Craig Topper042a3922015-05-25 20:01:18 +00001392 bool NeedComma = false;
Jonas Paulsson7a794222016-08-17 13:24:19 +00001393 for (const LSRFixup &Fixup : Fixups) {
Craig Topper042a3922015-05-25 20:01:18 +00001394 if (NeedComma) OS << ',';
Jonas Paulsson7a794222016-08-17 13:24:19 +00001395 OS << Fixup.Offset;
Craig Topper042a3922015-05-25 20:01:18 +00001396 NeedComma = true;
Dan Gohman045f8192010-01-22 00:46:49 +00001397 }
Dan Gohman45774ce2010-02-12 10:34:29 +00001398 OS << '}';
Dan Gohman045f8192010-01-22 00:46:49 +00001399
Dan Gohman45774ce2010-02-12 10:34:29 +00001400 if (AllFixupsOutsideLoop)
1401 OS << ", all-fixups-outside-loop";
Dan Gohman14152082010-07-15 20:24:58 +00001402
1403 if (WidestFixupType)
1404 OS << ", widest fixup type: " << *WidestFixupType;
Dan Gohman045f8192010-01-22 00:46:49 +00001405}
1406
Matthias Braun8c209aa2017-01-28 02:02:38 +00001407#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1408LLVM_DUMP_METHOD void LSRUse::dump() const {
Dan Gohman45774ce2010-02-12 10:34:29 +00001409 print(errs()); errs() << '\n';
1410}
Matthias Braun8c209aa2017-01-28 02:02:38 +00001411#endif
Dan Gohman045f8192010-01-22 00:46:49 +00001412
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001413static bool isAMCompletelyFolded(const TargetTransformInfo &TTI,
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001414 LSRUse::KindType Kind, MemAccessTy AccessTy,
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001415 GlobalValue *BaseGV, int64_t BaseOffset,
1416 bool HasBaseReg, int64_t Scale) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001417 switch (Kind) {
1418 case LSRUse::Address:
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001419 return TTI.isLegalAddressingMode(AccessTy.MemTy, BaseGV, BaseOffset,
1420 HasBaseReg, Scale, AccessTy.AddrSpace);
Dan Gohman45774ce2010-02-12 10:34:29 +00001421
Dan Gohman45774ce2010-02-12 10:34:29 +00001422 case LSRUse::ICmpZero:
1423 // There's not even a target hook for querying whether it would be legal to
1424 // fold a GV into an ICmp.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001425 if (BaseGV)
Dan Gohman45774ce2010-02-12 10:34:29 +00001426 return false;
1427
1428 // ICmp only has two operands; don't allow more than two non-trivial parts.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001429 if (Scale != 0 && HasBaseReg && BaseOffset != 0)
Dan Gohman45774ce2010-02-12 10:34:29 +00001430 return false;
1431
1432 // ICmp only supports no scale or a -1 scale, as we can "fold" a -1 scale by
1433 // putting the scaled register in the other operand of the icmp.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001434 if (Scale != 0 && Scale != -1)
Dan Gohman45774ce2010-02-12 10:34:29 +00001435 return false;
1436
1437 // If we have low-level target information, ask the target if it can fold an
1438 // integer immediate on an icmp.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001439 if (BaseOffset != 0) {
Jakob Stoklund Olesenf2390e82012-04-05 03:10:56 +00001440 // We have one of:
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001441 // ICmpZero BaseReg + BaseOffset => ICmp BaseReg, -BaseOffset
1442 // ICmpZero -1*ScaleReg + BaseOffset => ICmp ScaleReg, BaseOffset
Jakob Stoklund Olesenf2390e82012-04-05 03:10:56 +00001443 // Offs is the ICmp immediate.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001444 if (Scale == 0)
1445 // The cast does the right thing with INT64_MIN.
1446 BaseOffset = -(uint64_t)BaseOffset;
1447 return TTI.isLegalICmpImmediate(BaseOffset);
Dan Gohman045f8192010-01-22 00:46:49 +00001448 }
Dan Gohman45774ce2010-02-12 10:34:29 +00001449
Jakob Stoklund Olesenf2390e82012-04-05 03:10:56 +00001450 // ICmpZero BaseReg + -1*ScaleReg => ICmp BaseReg, ScaleReg
Dan Gohman45774ce2010-02-12 10:34:29 +00001451 return true;
1452
1453 case LSRUse::Basic:
1454 // Only handle single-register values.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001455 return !BaseGV && Scale == 0 && BaseOffset == 0;
Dan Gohman45774ce2010-02-12 10:34:29 +00001456
1457 case LSRUse::Special:
Andrew Trickaca8fb32012-06-15 20:07:26 +00001458 // Special case Basic to handle -1 scales.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001459 return !BaseGV && (Scale == 0 || Scale == -1) && BaseOffset == 0;
Dan Gohman045f8192010-01-22 00:46:49 +00001460 }
1461
David Blaikie46a9f012012-01-20 21:51:11 +00001462 llvm_unreachable("Invalid LSRUse Kind!");
Dan Gohman045f8192010-01-22 00:46:49 +00001463}
1464
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001465static bool isAMCompletelyFolded(const TargetTransformInfo &TTI,
1466 int64_t MinOffset, int64_t MaxOffset,
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001467 LSRUse::KindType Kind, MemAccessTy AccessTy,
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001468 GlobalValue *BaseGV, int64_t BaseOffset,
1469 bool HasBaseReg, int64_t Scale) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001470 // Check for overflow.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001471 if (((int64_t)((uint64_t)BaseOffset + MinOffset) > BaseOffset) !=
Dan Gohman45774ce2010-02-12 10:34:29 +00001472 (MinOffset > 0))
1473 return false;
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001474 MinOffset = (uint64_t)BaseOffset + MinOffset;
1475 if (((int64_t)((uint64_t)BaseOffset + MaxOffset) > BaseOffset) !=
1476 (MaxOffset > 0))
1477 return false;
1478 MaxOffset = (uint64_t)BaseOffset + MaxOffset;
1479
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001480 return isAMCompletelyFolded(TTI, Kind, AccessTy, BaseGV, MinOffset,
1481 HasBaseReg, Scale) &&
1482 isAMCompletelyFolded(TTI, Kind, AccessTy, BaseGV, MaxOffset,
1483 HasBaseReg, Scale);
1484}
1485
1486static bool isAMCompletelyFolded(const TargetTransformInfo &TTI,
1487 int64_t MinOffset, int64_t MaxOffset,
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001488 LSRUse::KindType Kind, MemAccessTy AccessTy,
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001489 const Formula &F) {
1490 // For the purpose of isAMCompletelyFolded either having a canonical formula
1491 // or a scale not equal to zero is correct.
1492 // Problems may arise from non canonical formulae having a scale == 0.
1493 // Strictly speaking it would best to just rely on canonical formulae.
1494 // However, when we generate the scaled formulae, we first check that the
1495 // scaling factor is profitable before computing the actual ScaledReg for
1496 // compile time sake.
1497 assert((F.isCanonical() || F.Scale != 0));
1498 return isAMCompletelyFolded(TTI, MinOffset, MaxOffset, Kind, AccessTy,
1499 F.BaseGV, F.BaseOffset, F.HasBaseReg, F.Scale);
1500}
1501
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001502/// Test whether we know how to expand the current formula.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001503static bool isLegalUse(const TargetTransformInfo &TTI, int64_t MinOffset,
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001504 int64_t MaxOffset, LSRUse::KindType Kind,
1505 MemAccessTy AccessTy, GlobalValue *BaseGV,
1506 int64_t BaseOffset, bool HasBaseReg, int64_t Scale) {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001507 // We know how to expand completely foldable formulae.
1508 return isAMCompletelyFolded(TTI, MinOffset, MaxOffset, Kind, AccessTy, BaseGV,
1509 BaseOffset, HasBaseReg, Scale) ||
1510 // Or formulae that use a base register produced by a sum of base
1511 // registers.
1512 (Scale == 1 &&
1513 isAMCompletelyFolded(TTI, MinOffset, MaxOffset, Kind, AccessTy,
1514 BaseGV, BaseOffset, true, 0));
Dan Gohman045f8192010-01-22 00:46:49 +00001515}
1516
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001517static bool isLegalUse(const TargetTransformInfo &TTI, int64_t MinOffset,
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001518 int64_t MaxOffset, LSRUse::KindType Kind,
1519 MemAccessTy AccessTy, const Formula &F) {
Chandler Carruth6e479322013-01-07 15:04:40 +00001520 return isLegalUse(TTI, MinOffset, MaxOffset, Kind, AccessTy, F.BaseGV,
1521 F.BaseOffset, F.HasBaseReg, F.Scale);
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001522}
1523
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001524static bool isAMCompletelyFolded(const TargetTransformInfo &TTI,
1525 const LSRUse &LU, const Formula &F) {
1526 return isAMCompletelyFolded(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind,
1527 LU.AccessTy, F.BaseGV, F.BaseOffset, F.HasBaseReg,
1528 F.Scale);
1529}
Quentin Colombet8aa7abe2013-05-31 17:20:29 +00001530
Quentin Colombetbf490d42013-05-31 21:29:03 +00001531static unsigned getScalingFactorCost(const TargetTransformInfo &TTI,
1532 const LSRUse &LU, const Formula &F) {
1533 if (!F.Scale)
1534 return 0;
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001535
1536 // If the use is not completely folded in that instruction, we will have to
1537 // pay an extra cost only for scale != 1.
1538 if (!isAMCompletelyFolded(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind,
1539 LU.AccessTy, F))
1540 return F.Scale != 1;
Quentin Colombetbf490d42013-05-31 21:29:03 +00001541
1542 switch (LU.Kind) {
1543 case LSRUse::Address: {
Quentin Colombet145eb972013-06-19 19:59:41 +00001544 // Check the scaling factor cost with both the min and max offsets.
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001545 int ScaleCostMinOffset = TTI.getScalingFactorCost(
1546 LU.AccessTy.MemTy, F.BaseGV, F.BaseOffset + LU.MinOffset, F.HasBaseReg,
1547 F.Scale, LU.AccessTy.AddrSpace);
1548 int ScaleCostMaxOffset = TTI.getScalingFactorCost(
1549 LU.AccessTy.MemTy, F.BaseGV, F.BaseOffset + LU.MaxOffset, F.HasBaseReg,
1550 F.Scale, LU.AccessTy.AddrSpace);
Quentin Colombet145eb972013-06-19 19:59:41 +00001551
1552 assert(ScaleCostMinOffset >= 0 && ScaleCostMaxOffset >= 0 &&
1553 "Legal addressing mode has an illegal cost!");
1554 return std::max(ScaleCostMinOffset, ScaleCostMaxOffset);
Quentin Colombetbf490d42013-05-31 21:29:03 +00001555 }
1556 case LSRUse::ICmpZero:
Quentin Colombetbf490d42013-05-31 21:29:03 +00001557 case LSRUse::Basic:
1558 case LSRUse::Special:
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001559 // The use is completely folded, i.e., everything is folded into the
1560 // instruction.
Quentin Colombetbf490d42013-05-31 21:29:03 +00001561 return 0;
1562 }
1563
1564 llvm_unreachable("Invalid LSRUse Kind!");
1565}
1566
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001567static bool isAlwaysFoldable(const TargetTransformInfo &TTI,
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001568 LSRUse::KindType Kind, MemAccessTy AccessTy,
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001569 GlobalValue *BaseGV, int64_t BaseOffset,
1570 bool HasBaseReg) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001571 // Fast-path: zero is always foldable.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001572 if (BaseOffset == 0 && !BaseGV) return true;
Dan Gohman045f8192010-01-22 00:46:49 +00001573
Dan Gohman45774ce2010-02-12 10:34:29 +00001574 // Conservatively, create an address with an immediate and a
1575 // base and a scale.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001576 int64_t Scale = Kind == LSRUse::ICmpZero ? -1 : 1;
Dan Gohman045f8192010-01-22 00:46:49 +00001577
Dan Gohman20fab452010-05-19 23:43:12 +00001578 // Canonicalize a scale of 1 to a base register if the formula doesn't
1579 // already have a base register.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001580 if (!HasBaseReg && Scale == 1) {
1581 Scale = 0;
1582 HasBaseReg = true;
Dan Gohman20fab452010-05-19 23:43:12 +00001583 }
1584
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001585 return isAMCompletelyFolded(TTI, Kind, AccessTy, BaseGV, BaseOffset,
1586 HasBaseReg, Scale);
Dan Gohman045f8192010-01-22 00:46:49 +00001587}
1588
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001589static bool isAlwaysFoldable(const TargetTransformInfo &TTI,
1590 ScalarEvolution &SE, int64_t MinOffset,
1591 int64_t MaxOffset, LSRUse::KindType Kind,
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001592 MemAccessTy AccessTy, const SCEV *S,
1593 bool HasBaseReg) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001594 // Fast-path: zero is always foldable.
1595 if (S->isZero()) return true;
1596
1597 // Conservatively, create an address with an immediate and a
1598 // base and a scale.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001599 int64_t BaseOffset = ExtractImmediate(S, SE);
Dan Gohman45774ce2010-02-12 10:34:29 +00001600 GlobalValue *BaseGV = ExtractSymbol(S, SE);
1601
1602 // If there's anything else involved, it's not foldable.
1603 if (!S->isZero()) return false;
1604
1605 // Fast-path: zero is always foldable.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001606 if (BaseOffset == 0 && !BaseGV) return true;
Dan Gohman45774ce2010-02-12 10:34:29 +00001607
1608 // Conservatively, create an address with an immediate and a
1609 // base and a scale.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001610 int64_t Scale = Kind == LSRUse::ICmpZero ? -1 : 1;
Dan Gohman45774ce2010-02-12 10:34:29 +00001611
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001612 return isAMCompletelyFolded(TTI, MinOffset, MaxOffset, Kind, AccessTy, BaseGV,
1613 BaseOffset, HasBaseReg, Scale);
Dan Gohman045f8192010-01-22 00:46:49 +00001614}
1615
Dan Gohman297fb8b2010-06-19 21:21:39 +00001616namespace {
1617
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001618/// An individual increment in a Chain of IV increments. Relate an IV user to
1619/// an expression that computes the IV it uses from the IV used by the previous
1620/// link in the Chain.
Andrew Trick29fe5f02012-01-09 19:50:34 +00001621///
1622/// For the head of a chain, IncExpr holds the absolute SCEV expression for the
1623/// original IVOperand. The head of the chain's IVOperand is only valid during
1624/// chain collection, before LSR replaces IV users. During chain generation,
1625/// IncExpr can be used to find the new IVOperand that computes the same
1626/// expression.
1627struct IVInc {
1628 Instruction *UserInst;
1629 Value* IVOperand;
1630 const SCEV *IncExpr;
1631
1632 IVInc(Instruction *U, Value *O, const SCEV *E):
1633 UserInst(U), IVOperand(O), IncExpr(E) {}
1634};
1635
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001636// The list of IV increments in program order. We typically add the head of a
1637// chain without finding subsequent links.
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001638struct IVChain {
1639 SmallVector<IVInc,1> Incs;
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00001640 const SCEV *ExprBase;
1641
Craig Topperf40110f2014-04-25 05:29:35 +00001642 IVChain() : ExprBase(nullptr) {}
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00001643
1644 IVChain(const IVInc &Head, const SCEV *Base)
1645 : Incs(1, Head), ExprBase(Base) {}
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001646
1647 typedef SmallVectorImpl<IVInc>::const_iterator const_iterator;
1648
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001649 // Return the first increment in the chain.
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001650 const_iterator begin() const {
1651 assert(!Incs.empty());
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001652 return std::next(Incs.begin());
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001653 }
1654 const_iterator end() const {
1655 return Incs.end();
1656 }
1657
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001658 // Returns true if this chain contains any increments.
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001659 bool hasIncs() const { return Incs.size() >= 2; }
1660
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001661 // Add an IVInc to the end of this chain.
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001662 void add(const IVInc &X) { Incs.push_back(X); }
1663
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001664 // Returns the last UserInst in the chain.
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001665 Instruction *tailUserInst() const { return Incs.back().UserInst; }
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00001666
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001667 // Returns true if IncExpr can be profitably added to this chain.
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00001668 bool isProfitableIncrement(const SCEV *OperExpr,
1669 const SCEV *IncExpr,
1670 ScalarEvolution&);
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001671};
Andrew Trick29fe5f02012-01-09 19:50:34 +00001672
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001673/// Helper for CollectChains to track multiple IV increment uses. Distinguish
1674/// between FarUsers that definitely cross IV increments and NearUsers that may
1675/// be used between IV increments.
Andrew Trick29fe5f02012-01-09 19:50:34 +00001676struct ChainUsers {
1677 SmallPtrSet<Instruction*, 4> FarUsers;
1678 SmallPtrSet<Instruction*, 4> NearUsers;
1679};
1680
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001681/// This class holds state for the main loop strength reduction logic.
Dan Gohman45774ce2010-02-12 10:34:29 +00001682class LSRInstance {
1683 IVUsers &IU;
1684 ScalarEvolution &SE;
1685 DominatorTree &DT;
Dan Gohman607e02b2010-04-09 22:07:05 +00001686 LoopInfo &LI;
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001687 const TargetTransformInfo &TTI;
Dan Gohman45774ce2010-02-12 10:34:29 +00001688 Loop *const L;
1689 bool Changed;
1690
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001691 /// This is the insert position that the current loop's induction variable
1692 /// increment should be placed. In simple loops, this is the latch block's
1693 /// terminator. But in more complicated cases, this is a position which will
1694 /// dominate all the in-loop post-increment users.
Dan Gohman45774ce2010-02-12 10:34:29 +00001695 Instruction *IVIncInsertPos;
1696
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001697 /// Interesting factors between use strides.
Justin Lebar54b0be02016-11-05 16:47:25 +00001698 ///
1699 /// We explicitly use a SetVector which contains a SmallSet, instead of the
1700 /// default, a SmallDenseSet, because we need to use the full range of
1701 /// int64_ts, and there's currently no good way of doing that with
1702 /// SmallDenseSet.
1703 SetVector<int64_t, SmallVector<int64_t, 8>, SmallSet<int64_t, 8>> Factors;
Dan Gohman45774ce2010-02-12 10:34:29 +00001704
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001705 /// Interesting use types, to facilitate truncation reuse.
Chris Lattner229907c2011-07-18 04:54:35 +00001706 SmallSetVector<Type *, 4> Types;
Dan Gohman45774ce2010-02-12 10:34:29 +00001707
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001708 /// The list of interesting uses.
Dan Gohman45774ce2010-02-12 10:34:29 +00001709 SmallVector<LSRUse, 16> Uses;
1710
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001711 /// Track which uses use which register candidates.
Dan Gohman45774ce2010-02-12 10:34:29 +00001712 RegUseTracker RegUses;
1713
Andrew Trick29fe5f02012-01-09 19:50:34 +00001714 // Limit the number of chains to avoid quadratic behavior. We don't expect to
1715 // have more than a few IV increment chains in a loop. Missing a Chain falls
1716 // back to normal LSR behavior for those uses.
1717 static const unsigned MaxChains = 8;
1718
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001719 /// IV users can form a chain of IV increments.
Andrew Trick29fe5f02012-01-09 19:50:34 +00001720 SmallVector<IVChain, MaxChains> IVChainVec;
1721
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001722 /// IV users that belong to profitable IVChains.
Andrew Trick248d4102012-01-09 21:18:52 +00001723 SmallPtrSet<Use*, MaxChains> IVIncSet;
1724
Dan Gohman45774ce2010-02-12 10:34:29 +00001725 void OptimizeShadowIV();
1726 bool FindIVUserForCond(ICmpInst *Cond, IVStrideUse *&CondUse);
1727 ICmpInst *OptimizeMax(ICmpInst *Cond, IVStrideUse* &CondUse);
Dan Gohman4c4043c2010-05-20 20:05:31 +00001728 void OptimizeLoopTermCond();
Dan Gohman45774ce2010-02-12 10:34:29 +00001729
Andrew Trick29fe5f02012-01-09 19:50:34 +00001730 void ChainInstruction(Instruction *UserInst, Instruction *IVOper,
1731 SmallVectorImpl<ChainUsers> &ChainUsersVec);
Andrew Trick248d4102012-01-09 21:18:52 +00001732 void FinalizeChain(IVChain &Chain);
Andrew Trick29fe5f02012-01-09 19:50:34 +00001733 void CollectChains();
Andrew Trick248d4102012-01-09 21:18:52 +00001734 void GenerateIVChain(const IVChain &Chain, SCEVExpander &Rewriter,
1735 SmallVectorImpl<WeakVH> &DeadInsts);
Andrew Trick29fe5f02012-01-09 19:50:34 +00001736
Dan Gohman45774ce2010-02-12 10:34:29 +00001737 void CollectInterestingTypesAndFactors();
1738 void CollectFixupsAndInitialFormulae();
1739
Dan Gohman45774ce2010-02-12 10:34:29 +00001740 // Support for sharing of LSRUses between LSRFixups.
Benjamin Kramer62fb0cf2014-03-15 17:17:48 +00001741 typedef DenseMap<LSRUse::SCEVUseKindPair, size_t> UseMapTy;
Dan Gohman45774ce2010-02-12 10:34:29 +00001742 UseMapTy UseMap;
1743
Dan Gohman110ed642010-09-01 01:45:53 +00001744 bool reconcileNewOffset(LSRUse &LU, int64_t NewOffset, bool HasBaseReg,
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001745 LSRUse::KindType Kind, MemAccessTy AccessTy);
Dan Gohman45774ce2010-02-12 10:34:29 +00001746
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001747 std::pair<size_t, int64_t> getUse(const SCEV *&Expr, LSRUse::KindType Kind,
1748 MemAccessTy AccessTy);
Dan Gohman45774ce2010-02-12 10:34:29 +00001749
Dan Gohmana7b68d62010-10-07 23:33:43 +00001750 void DeleteUse(LSRUse &LU, size_t LUIdx);
Dan Gohman80a96082010-05-20 15:17:54 +00001751
Dan Gohman110ed642010-09-01 01:45:53 +00001752 LSRUse *FindUseWithSimilarFormula(const Formula &F, const LSRUse &OrigLU);
Dan Gohman20fab452010-05-19 23:43:12 +00001753
Dan Gohman8c16b382010-02-22 04:11:59 +00001754 void InsertInitialFormula(const SCEV *S, LSRUse &LU, size_t LUIdx);
Dan Gohman45774ce2010-02-12 10:34:29 +00001755 void InsertSupplementalFormula(const SCEV *S, LSRUse &LU, size_t LUIdx);
1756 void CountRegisters(const Formula &F, size_t LUIdx);
1757 bool InsertFormula(LSRUse &LU, unsigned LUIdx, const Formula &F);
1758
1759 void CollectLoopInvariantFixupsAndFormulae();
1760
1761 void GenerateReassociations(LSRUse &LU, unsigned LUIdx, Formula Base,
1762 unsigned Depth = 0);
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001763
1764 void GenerateReassociationsImpl(LSRUse &LU, unsigned LUIdx,
1765 const Formula &Base, unsigned Depth,
1766 size_t Idx, bool IsScaledReg = false);
Dan Gohman45774ce2010-02-12 10:34:29 +00001767 void GenerateCombinations(LSRUse &LU, unsigned LUIdx, Formula Base);
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001768 void GenerateSymbolicOffsetsImpl(LSRUse &LU, unsigned LUIdx,
1769 const Formula &Base, size_t Idx,
1770 bool IsScaledReg = false);
Dan Gohman45774ce2010-02-12 10:34:29 +00001771 void GenerateSymbolicOffsets(LSRUse &LU, unsigned LUIdx, Formula Base);
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001772 void GenerateConstantOffsetsImpl(LSRUse &LU, unsigned LUIdx,
1773 const Formula &Base,
1774 const SmallVectorImpl<int64_t> &Worklist,
1775 size_t Idx, bool IsScaledReg = false);
Dan Gohman45774ce2010-02-12 10:34:29 +00001776 void GenerateConstantOffsets(LSRUse &LU, unsigned LUIdx, Formula Base);
1777 void GenerateICmpZeroScales(LSRUse &LU, unsigned LUIdx, Formula Base);
1778 void GenerateScales(LSRUse &LU, unsigned LUIdx, Formula Base);
1779 void GenerateTruncates(LSRUse &LU, unsigned LUIdx, Formula Base);
1780 void GenerateCrossUseConstantOffsets();
1781 void GenerateAllReuseFormulae();
1782
1783 void FilterOutUndesirableDedicatedRegisters();
Dan Gohmana4eca052010-05-18 22:51:59 +00001784
1785 size_t EstimateSearchSpaceComplexity() const;
Dan Gohmane9e08732010-08-29 16:09:42 +00001786 void NarrowSearchSpaceByDetectingSupersets();
1787 void NarrowSearchSpaceByCollapsingUnrolledCode();
Dan Gohman002ff892010-08-29 16:39:22 +00001788 void NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters();
Dan Gohmane9e08732010-08-29 16:09:42 +00001789 void NarrowSearchSpaceByPickingWinnerRegs();
Dan Gohman45774ce2010-02-12 10:34:29 +00001790 void NarrowSearchSpaceUsingHeuristics();
1791
1792 void SolveRecurse(SmallVectorImpl<const Formula *> &Solution,
1793 Cost &SolutionCost,
1794 SmallVectorImpl<const Formula *> &Workspace,
1795 const Cost &CurCost,
1796 const SmallPtrSet<const SCEV *, 16> &CurRegs,
1797 DenseSet<const SCEV *> &VisitedRegs) const;
1798 void Solve(SmallVectorImpl<const Formula *> &Solution) const;
1799
Dan Gohman607e02b2010-04-09 22:07:05 +00001800 BasicBlock::iterator
1801 HoistInsertPosition(BasicBlock::iterator IP,
1802 const SmallVectorImpl<Instruction *> &Inputs) const;
Andrew Trickc908b432012-01-20 07:41:13 +00001803 BasicBlock::iterator
1804 AdjustInsertPositionForExpand(BasicBlock::iterator IP,
1805 const LSRFixup &LF,
1806 const LSRUse &LU,
1807 SCEVExpander &Rewriter) const;
Dan Gohmand2df6432010-04-09 02:00:38 +00001808
Jonas Paulsson7a794222016-08-17 13:24:19 +00001809 Value *Expand(const LSRUse &LU, const LSRFixup &LF,
Dan Gohman45774ce2010-02-12 10:34:29 +00001810 const Formula &F,
Dan Gohman8c16b382010-02-22 04:11:59 +00001811 BasicBlock::iterator IP,
Dan Gohman45774ce2010-02-12 10:34:29 +00001812 SCEVExpander &Rewriter,
Dan Gohman8c16b382010-02-22 04:11:59 +00001813 SmallVectorImpl<WeakVH> &DeadInsts) const;
Jonas Paulsson7a794222016-08-17 13:24:19 +00001814 void RewriteForPHI(PHINode *PN, const LSRUse &LU, const LSRFixup &LF,
Dan Gohman6deab962010-02-16 20:25:07 +00001815 const Formula &F,
Dan Gohman6deab962010-02-16 20:25:07 +00001816 SCEVExpander &Rewriter,
Justin Bogner843fb202015-12-15 19:40:57 +00001817 SmallVectorImpl<WeakVH> &DeadInsts) const;
Jonas Paulsson7a794222016-08-17 13:24:19 +00001818 void Rewrite(const LSRUse &LU, const LSRFixup &LF,
Dan Gohman45774ce2010-02-12 10:34:29 +00001819 const Formula &F,
Dan Gohman45774ce2010-02-12 10:34:29 +00001820 SCEVExpander &Rewriter,
Justin Bogner843fb202015-12-15 19:40:57 +00001821 SmallVectorImpl<WeakVH> &DeadInsts) const;
1822 void ImplementSolution(const SmallVectorImpl<const Formula *> &Solution);
Dan Gohman45774ce2010-02-12 10:34:29 +00001823
Andrew Trickdc18e382011-12-13 00:55:33 +00001824public:
Justin Bogner843fb202015-12-15 19:40:57 +00001825 LSRInstance(Loop *L, IVUsers &IU, ScalarEvolution &SE, DominatorTree &DT,
1826 LoopInfo &LI, const TargetTransformInfo &TTI);
Dan Gohman45774ce2010-02-12 10:34:29 +00001827
1828 bool getChanged() const { return Changed; }
1829
1830 void print_factors_and_types(raw_ostream &OS) const;
1831 void print_fixups(raw_ostream &OS) const;
1832 void print_uses(raw_ostream &OS) const;
1833 void print(raw_ostream &OS) const;
1834 void dump() const;
1835};
1836
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +00001837} // end anonymous namespace
Dan Gohman45774ce2010-02-12 10:34:29 +00001838
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001839/// If IV is used in a int-to-float cast inside the loop then try to eliminate
1840/// the cast operation.
Dan Gohman45774ce2010-02-12 10:34:29 +00001841void LSRInstance::OptimizeShadowIV() {
1842 const SCEV *BackedgeTakenCount = SE.getBackedgeTakenCount(L);
1843 if (isa<SCEVCouldNotCompute>(BackedgeTakenCount))
1844 return;
1845
1846 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end();
1847 UI != E; /* empty */) {
1848 IVUsers::const_iterator CandidateUI = UI;
1849 ++UI;
1850 Instruction *ShadowUse = CandidateUI->getUser();
Craig Topperf40110f2014-04-25 05:29:35 +00001851 Type *DestTy = nullptr;
Andrew Trick858e9f02011-07-21 01:05:01 +00001852 bool IsSigned = false;
Dan Gohman45774ce2010-02-12 10:34:29 +00001853
1854 /* If shadow use is a int->float cast then insert a second IV
1855 to eliminate this cast.
1856
1857 for (unsigned i = 0; i < n; ++i)
1858 foo((double)i);
1859
1860 is transformed into
1861
1862 double d = 0.0;
1863 for (unsigned i = 0; i < n; ++i, ++d)
1864 foo(d);
1865 */
Andrew Trick858e9f02011-07-21 01:05:01 +00001866 if (UIToFPInst *UCast = dyn_cast<UIToFPInst>(CandidateUI->getUser())) {
1867 IsSigned = false;
Dan Gohman45774ce2010-02-12 10:34:29 +00001868 DestTy = UCast->getDestTy();
Andrew Trick858e9f02011-07-21 01:05:01 +00001869 }
1870 else if (SIToFPInst *SCast = dyn_cast<SIToFPInst>(CandidateUI->getUser())) {
1871 IsSigned = true;
Dan Gohman45774ce2010-02-12 10:34:29 +00001872 DestTy = SCast->getDestTy();
Andrew Trick858e9f02011-07-21 01:05:01 +00001873 }
Dan Gohman45774ce2010-02-12 10:34:29 +00001874 if (!DestTy) continue;
1875
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001876 // If target does not support DestTy natively then do not apply
1877 // this transformation.
1878 if (!TTI.isTypeLegal(DestTy)) continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00001879
1880 PHINode *PH = dyn_cast<PHINode>(ShadowUse->getOperand(0));
1881 if (!PH) continue;
1882 if (PH->getNumIncomingValues() != 2) continue;
1883
Chris Lattner229907c2011-07-18 04:54:35 +00001884 Type *SrcTy = PH->getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00001885 int Mantissa = DestTy->getFPMantissaWidth();
1886 if (Mantissa == -1) continue;
1887 if ((int)SE.getTypeSizeInBits(SrcTy) > Mantissa)
1888 continue;
1889
1890 unsigned Entry, Latch;
1891 if (PH->getIncomingBlock(0) == L->getLoopPreheader()) {
1892 Entry = 0;
1893 Latch = 1;
Dan Gohman045f8192010-01-22 00:46:49 +00001894 } else {
Dan Gohman45774ce2010-02-12 10:34:29 +00001895 Entry = 1;
1896 Latch = 0;
Dan Gohman045f8192010-01-22 00:46:49 +00001897 }
Dan Gohman045f8192010-01-22 00:46:49 +00001898
Dan Gohman45774ce2010-02-12 10:34:29 +00001899 ConstantInt *Init = dyn_cast<ConstantInt>(PH->getIncomingValue(Entry));
1900 if (!Init) continue;
Andrew Trick858e9f02011-07-21 01:05:01 +00001901 Constant *NewInit = ConstantFP::get(DestTy, IsSigned ?
Andrew Trickbd243d02011-07-21 01:45:54 +00001902 (double)Init->getSExtValue() :
1903 (double)Init->getZExtValue());
Dan Gohman045f8192010-01-22 00:46:49 +00001904
Dan Gohman45774ce2010-02-12 10:34:29 +00001905 BinaryOperator *Incr =
1906 dyn_cast<BinaryOperator>(PH->getIncomingValue(Latch));
1907 if (!Incr) continue;
1908 if (Incr->getOpcode() != Instruction::Add
1909 && Incr->getOpcode() != Instruction::Sub)
Dan Gohman045f8192010-01-22 00:46:49 +00001910 continue;
Dan Gohman045f8192010-01-22 00:46:49 +00001911
Dan Gohman45774ce2010-02-12 10:34:29 +00001912 /* Initialize new IV, double d = 0.0 in above example. */
Craig Topperf40110f2014-04-25 05:29:35 +00001913 ConstantInt *C = nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +00001914 if (Incr->getOperand(0) == PH)
1915 C = dyn_cast<ConstantInt>(Incr->getOperand(1));
1916 else if (Incr->getOperand(1) == PH)
1917 C = dyn_cast<ConstantInt>(Incr->getOperand(0));
Dan Gohman045f8192010-01-22 00:46:49 +00001918 else
Dan Gohman045f8192010-01-22 00:46:49 +00001919 continue;
1920
Dan Gohman45774ce2010-02-12 10:34:29 +00001921 if (!C) continue;
Dan Gohman045f8192010-01-22 00:46:49 +00001922
Dan Gohman45774ce2010-02-12 10:34:29 +00001923 // Ignore negative constants, as the code below doesn't handle them
1924 // correctly. TODO: Remove this restriction.
1925 if (!C->getValue().isStrictlyPositive()) continue;
Dan Gohman045f8192010-01-22 00:46:49 +00001926
Dan Gohman45774ce2010-02-12 10:34:29 +00001927 /* Add new PHINode. */
Jay Foad52131342011-03-30 11:28:46 +00001928 PHINode *NewPH = PHINode::Create(DestTy, 2, "IV.S.", PH);
Dan Gohman045f8192010-01-22 00:46:49 +00001929
Dan Gohman45774ce2010-02-12 10:34:29 +00001930 /* create new increment. '++d' in above example. */
1931 Constant *CFP = ConstantFP::get(DestTy, C->getZExtValue());
1932 BinaryOperator *NewIncr =
1933 BinaryOperator::Create(Incr->getOpcode() == Instruction::Add ?
1934 Instruction::FAdd : Instruction::FSub,
1935 NewPH, CFP, "IV.S.next.", Incr);
Dan Gohman045f8192010-01-22 00:46:49 +00001936
Dan Gohman45774ce2010-02-12 10:34:29 +00001937 NewPH->addIncoming(NewInit, PH->getIncomingBlock(Entry));
1938 NewPH->addIncoming(NewIncr, PH->getIncomingBlock(Latch));
Dan Gohman045f8192010-01-22 00:46:49 +00001939
Dan Gohman45774ce2010-02-12 10:34:29 +00001940 /* Remove cast operation */
1941 ShadowUse->replaceAllUsesWith(NewPH);
1942 ShadowUse->eraseFromParent();
Dan Gohman4c4043c2010-05-20 20:05:31 +00001943 Changed = true;
Dan Gohman45774ce2010-02-12 10:34:29 +00001944 break;
Dan Gohman045f8192010-01-22 00:46:49 +00001945 }
1946}
1947
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001948/// If Cond has an operand that is an expression of an IV, set the IV user and
1949/// stride information and return true, otherwise return false.
Dan Gohmanab5fb7f2010-05-20 19:44:23 +00001950bool LSRInstance::FindIVUserForCond(ICmpInst *Cond, IVStrideUse *&CondUse) {
Craig Topper042a3922015-05-25 20:01:18 +00001951 for (IVStrideUse &U : IU)
1952 if (U.getUser() == Cond) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001953 // NOTE: we could handle setcc instructions with multiple uses here, but
1954 // InstCombine does it as well for simple uses, it's not clear that it
1955 // occurs enough in real life to handle.
Craig Topper042a3922015-05-25 20:01:18 +00001956 CondUse = &U;
Dan Gohman45774ce2010-02-12 10:34:29 +00001957 return true;
1958 }
Dan Gohman045f8192010-01-22 00:46:49 +00001959 return false;
Evan Cheng133694d2007-10-25 09:11:16 +00001960}
1961
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001962/// Rewrite the loop's terminating condition if it uses a max computation.
Dan Gohman045f8192010-01-22 00:46:49 +00001963///
1964/// This is a narrow solution to a specific, but acute, problem. For loops
1965/// like this:
1966///
1967/// i = 0;
1968/// do {
1969/// p[i] = 0.0;
1970/// } while (++i < n);
1971///
1972/// the trip count isn't just 'n', because 'n' might not be positive. And
1973/// unfortunately this can come up even for loops where the user didn't use
1974/// a C do-while loop. For example, seemingly well-behaved top-test loops
1975/// will commonly be lowered like this:
1976//
1977/// if (n > 0) {
1978/// i = 0;
1979/// do {
1980/// p[i] = 0.0;
1981/// } while (++i < n);
1982/// }
1983///
1984/// and then it's possible for subsequent optimization to obscure the if
1985/// test in such a way that indvars can't find it.
1986///
1987/// When indvars can't find the if test in loops like this, it creates a
1988/// max expression, which allows it to give the loop a canonical
1989/// induction variable:
1990///
1991/// i = 0;
1992/// max = n < 1 ? 1 : n;
1993/// do {
1994/// p[i] = 0.0;
1995/// } while (++i != max);
1996///
1997/// Canonical induction variables are necessary because the loop passes
1998/// are designed around them. The most obvious example of this is the
1999/// LoopInfo analysis, which doesn't remember trip count values. It
2000/// expects to be able to rediscover the trip count each time it is
Dan Gohman45774ce2010-02-12 10:34:29 +00002001/// needed, and it does this using a simple analysis that only succeeds if
Dan Gohman045f8192010-01-22 00:46:49 +00002002/// the loop has a canonical induction variable.
2003///
2004/// However, when it comes time to generate code, the maximum operation
2005/// can be quite costly, especially if it's inside of an outer loop.
2006///
2007/// This function solves this problem by detecting this type of loop and
2008/// rewriting their conditions from ICMP_NE back to ICMP_SLT, and deleting
2009/// the instructions for the maximum computation.
2010///
Dan Gohman45774ce2010-02-12 10:34:29 +00002011ICmpInst *LSRInstance::OptimizeMax(ICmpInst *Cond, IVStrideUse* &CondUse) {
Dan Gohman045f8192010-01-22 00:46:49 +00002012 // Check that the loop matches the pattern we're looking for.
2013 if (Cond->getPredicate() != CmpInst::ICMP_EQ &&
2014 Cond->getPredicate() != CmpInst::ICMP_NE)
2015 return Cond;
Dan Gohman51ad99d2010-01-21 02:09:26 +00002016
Dan Gohman045f8192010-01-22 00:46:49 +00002017 SelectInst *Sel = dyn_cast<SelectInst>(Cond->getOperand(1));
2018 if (!Sel || !Sel->hasOneUse()) return Cond;
Dan Gohman51ad99d2010-01-21 02:09:26 +00002019
Dan Gohman45774ce2010-02-12 10:34:29 +00002020 const SCEV *BackedgeTakenCount = SE.getBackedgeTakenCount(L);
Dan Gohman045f8192010-01-22 00:46:49 +00002021 if (isa<SCEVCouldNotCompute>(BackedgeTakenCount))
2022 return Cond;
Dan Gohman1d2ded72010-05-03 22:09:21 +00002023 const SCEV *One = SE.getConstant(BackedgeTakenCount->getType(), 1);
Dan Gohman51ad99d2010-01-21 02:09:26 +00002024
Dan Gohman045f8192010-01-22 00:46:49 +00002025 // Add one to the backedge-taken count to get the trip count.
Dan Gohman9b7632d2010-08-16 15:39:27 +00002026 const SCEV *IterationCount = SE.getAddExpr(One, BackedgeTakenCount);
Dan Gohman534ba372010-04-24 03:13:44 +00002027 if (IterationCount != SE.getSCEV(Sel)) return Cond;
Dan Gohman045f8192010-01-22 00:46:49 +00002028
Dan Gohman534ba372010-04-24 03:13:44 +00002029 // Check for a max calculation that matches the pattern. There's no check
2030 // for ICMP_ULE here because the comparison would be with zero, which
2031 // isn't interesting.
2032 CmpInst::Predicate Pred = ICmpInst::BAD_ICMP_PREDICATE;
Craig Topperf40110f2014-04-25 05:29:35 +00002033 const SCEVNAryExpr *Max = nullptr;
Dan Gohman534ba372010-04-24 03:13:44 +00002034 if (const SCEVSMaxExpr *S = dyn_cast<SCEVSMaxExpr>(BackedgeTakenCount)) {
2035 Pred = ICmpInst::ICMP_SLE;
2036 Max = S;
2037 } else if (const SCEVSMaxExpr *S = dyn_cast<SCEVSMaxExpr>(IterationCount)) {
2038 Pred = ICmpInst::ICMP_SLT;
2039 Max = S;
2040 } else if (const SCEVUMaxExpr *U = dyn_cast<SCEVUMaxExpr>(IterationCount)) {
2041 Pred = ICmpInst::ICMP_ULT;
2042 Max = U;
2043 } else {
2044 // No match; bail.
Dan Gohman045f8192010-01-22 00:46:49 +00002045 return Cond;
Dan Gohman534ba372010-04-24 03:13:44 +00002046 }
Dan Gohman045f8192010-01-22 00:46:49 +00002047
2048 // To handle a max with more than two operands, this optimization would
2049 // require additional checking and setup.
2050 if (Max->getNumOperands() != 2)
2051 return Cond;
2052
2053 const SCEV *MaxLHS = Max->getOperand(0);
2054 const SCEV *MaxRHS = Max->getOperand(1);
Dan Gohman534ba372010-04-24 03:13:44 +00002055
2056 // ScalarEvolution canonicalizes constants to the left. For < and >, look
2057 // for a comparison with 1. For <= and >=, a comparison with zero.
2058 if (!MaxLHS ||
2059 (ICmpInst::isTrueWhenEqual(Pred) ? !MaxLHS->isZero() : (MaxLHS != One)))
2060 return Cond;
2061
Dan Gohman045f8192010-01-22 00:46:49 +00002062 // Check the relevant induction variable for conformance to
2063 // the pattern.
Dan Gohman45774ce2010-02-12 10:34:29 +00002064 const SCEV *IV = SE.getSCEV(Cond->getOperand(0));
Dan Gohman045f8192010-01-22 00:46:49 +00002065 const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(IV);
2066 if (!AR || !AR->isAffine() ||
2067 AR->getStart() != One ||
Dan Gohman45774ce2010-02-12 10:34:29 +00002068 AR->getStepRecurrence(SE) != One)
Dan Gohman045f8192010-01-22 00:46:49 +00002069 return Cond;
2070
2071 assert(AR->getLoop() == L &&
2072 "Loop condition operand is an addrec in a different loop!");
2073
2074 // Check the right operand of the select, and remember it, as it will
2075 // be used in the new comparison instruction.
Craig Topperf40110f2014-04-25 05:29:35 +00002076 Value *NewRHS = nullptr;
Dan Gohman534ba372010-04-24 03:13:44 +00002077 if (ICmpInst::isTrueWhenEqual(Pred)) {
2078 // Look for n+1, and grab n.
2079 if (AddOperator *BO = dyn_cast<AddOperator>(Sel->getOperand(1)))
Jakub Staszakf6df1e32013-03-24 09:25:47 +00002080 if (ConstantInt *BO1 = dyn_cast<ConstantInt>(BO->getOperand(1)))
2081 if (BO1->isOne() && SE.getSCEV(BO->getOperand(0)) == MaxRHS)
2082 NewRHS = BO->getOperand(0);
Dan Gohman534ba372010-04-24 03:13:44 +00002083 if (AddOperator *BO = dyn_cast<AddOperator>(Sel->getOperand(2)))
Jakub Staszakf6df1e32013-03-24 09:25:47 +00002084 if (ConstantInt *BO1 = dyn_cast<ConstantInt>(BO->getOperand(1)))
2085 if (BO1->isOne() && SE.getSCEV(BO->getOperand(0)) == MaxRHS)
2086 NewRHS = BO->getOperand(0);
Dan Gohman534ba372010-04-24 03:13:44 +00002087 if (!NewRHS)
2088 return Cond;
2089 } else if (SE.getSCEV(Sel->getOperand(1)) == MaxRHS)
Dan Gohman045f8192010-01-22 00:46:49 +00002090 NewRHS = Sel->getOperand(1);
Dan Gohman45774ce2010-02-12 10:34:29 +00002091 else if (SE.getSCEV(Sel->getOperand(2)) == MaxRHS)
Dan Gohman045f8192010-01-22 00:46:49 +00002092 NewRHS = Sel->getOperand(2);
Dan Gohman1081f1a2010-06-22 23:07:13 +00002093 else if (const SCEVUnknown *SU = dyn_cast<SCEVUnknown>(MaxRHS))
2094 NewRHS = SU->getValue();
Dan Gohman534ba372010-04-24 03:13:44 +00002095 else
Dan Gohman1081f1a2010-06-22 23:07:13 +00002096 // Max doesn't match expected pattern.
2097 return Cond;
Dan Gohman045f8192010-01-22 00:46:49 +00002098
2099 // Determine the new comparison opcode. It may be signed or unsigned,
2100 // and the original comparison may be either equality or inequality.
Dan Gohman045f8192010-01-22 00:46:49 +00002101 if (Cond->getPredicate() == CmpInst::ICMP_EQ)
2102 Pred = CmpInst::getInversePredicate(Pred);
2103
2104 // Ok, everything looks ok to change the condition into an SLT or SGE and
2105 // delete the max calculation.
2106 ICmpInst *NewCond =
2107 new ICmpInst(Cond, Pred, Cond->getOperand(0), NewRHS, "scmp");
2108
2109 // Delete the max calculation instructions.
2110 Cond->replaceAllUsesWith(NewCond);
2111 CondUse->setUser(NewCond);
2112 Instruction *Cmp = cast<Instruction>(Sel->getOperand(0));
2113 Cond->eraseFromParent();
2114 Sel->eraseFromParent();
2115 if (Cmp->use_empty())
2116 Cmp->eraseFromParent();
2117 return NewCond;
Dan Gohman68e77352008-09-15 21:22:06 +00002118}
2119
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002120/// Change loop terminating condition to use the postinc iv when possible.
Dan Gohman4c4043c2010-05-20 20:05:31 +00002121void
Dan Gohman45774ce2010-02-12 10:34:29 +00002122LSRInstance::OptimizeLoopTermCond() {
2123 SmallPtrSet<Instruction *, 4> PostIncs;
2124
James Molloy196ad082016-08-15 07:53:03 +00002125 // We need a different set of heuristics for rotated and non-rotated loops.
2126 // If a loop is rotated then the latch is also the backedge, so inserting
2127 // post-inc expressions just before the latch is ideal. To reduce live ranges
2128 // it also makes sense to rewrite terminating conditions to use post-inc
2129 // expressions.
2130 //
2131 // If the loop is not rotated then the latch is not a backedge; the latch
2132 // check is done in the loop head. Adding post-inc expressions before the
2133 // latch will cause overlapping live-ranges of pre-inc and post-inc expressions
2134 // in the loop body. In this case we do *not* want to use post-inc expressions
2135 // in the latch check, and we want to insert post-inc expressions before
2136 // the backedge.
Evan Cheng85a9f432009-11-12 07:35:05 +00002137 BasicBlock *LatchBlock = L->getLoopLatch();
Evan Chengba4e5da72009-11-17 18:10:11 +00002138 SmallVector<BasicBlock*, 8> ExitingBlocks;
2139 L->getExitingBlocks(ExitingBlocks);
James Molloy196ad082016-08-15 07:53:03 +00002140 if (llvm::all_of(ExitingBlocks, [&LatchBlock](const BasicBlock *BB) {
2141 return LatchBlock != BB;
2142 })) {
2143 // The backedge doesn't exit the loop; treat this as a head-tested loop.
2144 IVIncInsertPos = LatchBlock->getTerminator();
2145 return;
2146 }
Jim Grosbach60f48542009-11-17 17:53:56 +00002147
James Molloy196ad082016-08-15 07:53:03 +00002148 // Otherwise treat this as a rotated loop.
Craig Topper042a3922015-05-25 20:01:18 +00002149 for (BasicBlock *ExitingBlock : ExitingBlocks) {
Evan Cheng85a9f432009-11-12 07:35:05 +00002150
Dan Gohman45774ce2010-02-12 10:34:29 +00002151 // Get the terminating condition for the loop if possible. If we
Evan Chengba4e5da72009-11-17 18:10:11 +00002152 // can, we want to change it to use a post-incremented version of its
2153 // induction variable, to allow coalescing the live ranges for the IV into
2154 // one register value.
Evan Cheng85a9f432009-11-12 07:35:05 +00002155
Evan Chengba4e5da72009-11-17 18:10:11 +00002156 BranchInst *TermBr = dyn_cast<BranchInst>(ExitingBlock->getTerminator());
2157 if (!TermBr)
2158 continue;
2159 // FIXME: Overly conservative, termination condition could be an 'or' etc..
2160 if (TermBr->isUnconditional() || !isa<ICmpInst>(TermBr->getCondition()))
2161 continue;
Evan Cheng85a9f432009-11-12 07:35:05 +00002162
Evan Chengba4e5da72009-11-17 18:10:11 +00002163 // Search IVUsesByStride to find Cond's IVUse if there is one.
Craig Topperf40110f2014-04-25 05:29:35 +00002164 IVStrideUse *CondUse = nullptr;
Evan Chengba4e5da72009-11-17 18:10:11 +00002165 ICmpInst *Cond = cast<ICmpInst>(TermBr->getCondition());
Dan Gohman45774ce2010-02-12 10:34:29 +00002166 if (!FindIVUserForCond(Cond, CondUse))
Evan Chengba4e5da72009-11-17 18:10:11 +00002167 continue;
2168
Evan Chengba4e5da72009-11-17 18:10:11 +00002169 // If the trip count is computed in terms of a max (due to ScalarEvolution
2170 // being unable to find a sufficient guard, for example), change the loop
2171 // comparison to use SLT or ULT instead of NE.
Dan Gohman45774ce2010-02-12 10:34:29 +00002172 // One consequence of doing this now is that it disrupts the count-down
2173 // optimization. That's not always a bad thing though, because in such
2174 // cases it may still be worthwhile to avoid a max.
2175 Cond = OptimizeMax(Cond, CondUse);
Evan Chengba4e5da72009-11-17 18:10:11 +00002176
Dan Gohman45774ce2010-02-12 10:34:29 +00002177 // If this exiting block dominates the latch block, it may also use
2178 // the post-inc value if it won't be shared with other uses.
2179 // Check for dominance.
2180 if (!DT.dominates(ExitingBlock, LatchBlock))
Dan Gohman045f8192010-01-22 00:46:49 +00002181 continue;
Evan Chengba4e5da72009-11-17 18:10:11 +00002182
Dan Gohman45774ce2010-02-12 10:34:29 +00002183 // Conservatively avoid trying to use the post-inc value in non-latch
2184 // exits if there may be pre-inc users in intervening blocks.
Dan Gohman2d0f96d2010-02-14 03:21:49 +00002185 if (LatchBlock != ExitingBlock)
Dan Gohman45774ce2010-02-12 10:34:29 +00002186 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI)
2187 // Test if the use is reachable from the exiting block. This dominator
2188 // query is a conservative approximation of reachability.
2189 if (&*UI != CondUse &&
2190 !DT.properlyDominates(UI->getUser()->getParent(), ExitingBlock)) {
2191 // Conservatively assume there may be reuse if the quotient of their
2192 // strides could be a legal scale.
Dan Gohmane637ff52010-04-19 21:48:58 +00002193 const SCEV *A = IU.getStride(*CondUse, L);
2194 const SCEV *B = IU.getStride(*UI, L);
Dan Gohmand006ab92010-04-07 22:27:08 +00002195 if (!A || !B) continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00002196 if (SE.getTypeSizeInBits(A->getType()) !=
2197 SE.getTypeSizeInBits(B->getType())) {
2198 if (SE.getTypeSizeInBits(A->getType()) >
2199 SE.getTypeSizeInBits(B->getType()))
2200 B = SE.getSignExtendExpr(B, A->getType());
2201 else
2202 A = SE.getSignExtendExpr(A, B->getType());
2203 }
2204 if (const SCEVConstant *D =
Dan Gohman4eebb942010-02-19 19:35:48 +00002205 dyn_cast_or_null<SCEVConstant>(getExactSDiv(B, A, SE))) {
Dan Gohman86110fa2010-05-20 22:25:20 +00002206 const ConstantInt *C = D->getValue();
Dan Gohman45774ce2010-02-12 10:34:29 +00002207 // Stride of one or negative one can have reuse with non-addresses.
Dan Gohman86110fa2010-05-20 22:25:20 +00002208 if (C->isOne() || C->isAllOnesValue())
Dan Gohman45774ce2010-02-12 10:34:29 +00002209 goto decline_post_inc;
2210 // Avoid weird situations.
Dan Gohman86110fa2010-05-20 22:25:20 +00002211 if (C->getValue().getMinSignedBits() >= 64 ||
2212 C->getValue().isMinSignedValue())
Dan Gohman45774ce2010-02-12 10:34:29 +00002213 goto decline_post_inc;
2214 // Check for possible scaled-address reuse.
Matt Arsenault427a0fd2015-08-15 00:53:06 +00002215 MemAccessTy AccessTy = getAccessType(UI->getUser());
Chandler Carruth26c59fa2013-01-07 14:41:08 +00002216 int64_t Scale = C->getSExtValue();
Matt Arsenault427a0fd2015-08-15 00:53:06 +00002217 if (TTI.isLegalAddressingMode(AccessTy.MemTy, /*BaseGV=*/nullptr,
2218 /*BaseOffset=*/0,
2219 /*HasBaseReg=*/false, Scale,
2220 AccessTy.AddrSpace))
Dan Gohman45774ce2010-02-12 10:34:29 +00002221 goto decline_post_inc;
Chandler Carruth26c59fa2013-01-07 14:41:08 +00002222 Scale = -Scale;
Matt Arsenault427a0fd2015-08-15 00:53:06 +00002223 if (TTI.isLegalAddressingMode(AccessTy.MemTy, /*BaseGV=*/nullptr,
2224 /*BaseOffset=*/0,
2225 /*HasBaseReg=*/false, Scale,
2226 AccessTy.AddrSpace))
Dan Gohman45774ce2010-02-12 10:34:29 +00002227 goto decline_post_inc;
2228 }
2229 }
2230
David Greene2330f782009-12-23 22:58:38 +00002231 DEBUG(dbgs() << " Change loop exiting icmp to use postinc iv: "
Dan Gohman45774ce2010-02-12 10:34:29 +00002232 << *Cond << '\n');
Evan Chengba4e5da72009-11-17 18:10:11 +00002233
2234 // It's possible for the setcc instruction to be anywhere in the loop, and
2235 // possible for it to have multiple users. If it is not immediately before
2236 // the exiting block branch, move it.
Dan Gohman45774ce2010-02-12 10:34:29 +00002237 if (&*++BasicBlock::iterator(Cond) != TermBr) {
2238 if (Cond->hasOneUse()) {
Evan Chengba4e5da72009-11-17 18:10:11 +00002239 Cond->moveBefore(TermBr);
2240 } else {
Dan Gohman45774ce2010-02-12 10:34:29 +00002241 // Clone the terminating condition and insert into the loopend.
2242 ICmpInst *OldCond = Cond;
Evan Chengba4e5da72009-11-17 18:10:11 +00002243 Cond = cast<ICmpInst>(Cond->clone());
2244 Cond->setName(L->getHeader()->getName() + ".termcond");
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +00002245 ExitingBlock->getInstList().insert(TermBr->getIterator(), Cond);
Evan Chengba4e5da72009-11-17 18:10:11 +00002246
2247 // Clone the IVUse, as the old use still exists!
Andrew Trickfc4ccb22011-06-21 15:43:52 +00002248 CondUse = &IU.AddUser(Cond, CondUse->getOperandValToReplace());
Dan Gohman45774ce2010-02-12 10:34:29 +00002249 TermBr->replaceUsesOfWith(OldCond, Cond);
Evan Chengba4e5da72009-11-17 18:10:11 +00002250 }
Evan Cheng85a9f432009-11-12 07:35:05 +00002251 }
2252
Evan Chengba4e5da72009-11-17 18:10:11 +00002253 // If we get to here, we know that we can transform the setcc instruction to
2254 // use the post-incremented version of the IV, allowing us to coalesce the
2255 // live ranges for the IV correctly.
Dan Gohmand006ab92010-04-07 22:27:08 +00002256 CondUse->transformToPostInc(L);
Evan Chengba4e5da72009-11-17 18:10:11 +00002257 Changed = true;
2258
Dan Gohman45774ce2010-02-12 10:34:29 +00002259 PostIncs.insert(Cond);
2260 decline_post_inc:;
Dan Gohman51ad99d2010-01-21 02:09:26 +00002261 }
Dan Gohman45774ce2010-02-12 10:34:29 +00002262
2263 // Determine an insertion point for the loop induction variable increment. It
2264 // must dominate all the post-inc comparisons we just set up, and it must
2265 // dominate the loop latch edge.
2266 IVIncInsertPos = L->getLoopLatch()->getTerminator();
Craig Topper46276792014-08-24 23:23:06 +00002267 for (Instruction *Inst : PostIncs) {
Dan Gohman45774ce2010-02-12 10:34:29 +00002268 BasicBlock *BB =
2269 DT.findNearestCommonDominator(IVIncInsertPos->getParent(),
Craig Topper46276792014-08-24 23:23:06 +00002270 Inst->getParent());
2271 if (BB == Inst->getParent())
2272 IVIncInsertPos = Inst;
Dan Gohman45774ce2010-02-12 10:34:29 +00002273 else if (BB != IVIncInsertPos->getParent())
2274 IVIncInsertPos = BB->getTerminator();
2275 }
Dan Gohman51ad99d2010-01-21 02:09:26 +00002276}
2277
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002278/// Determine if the given use can accommodate a fixup at the given offset and
2279/// other details. If so, update the use and return true.
Matt Arsenault427a0fd2015-08-15 00:53:06 +00002280bool LSRInstance::reconcileNewOffset(LSRUse &LU, int64_t NewOffset,
2281 bool HasBaseReg, LSRUse::KindType Kind,
2282 MemAccessTy AccessTy) {
Dan Gohman110ed642010-09-01 01:45:53 +00002283 int64_t NewMinOffset = LU.MinOffset;
2284 int64_t NewMaxOffset = LU.MaxOffset;
Matt Arsenault427a0fd2015-08-15 00:53:06 +00002285 MemAccessTy NewAccessTy = AccessTy;
Dan Gohman045f8192010-01-22 00:46:49 +00002286
Dan Gohman45774ce2010-02-12 10:34:29 +00002287 // Check for a mismatched kind. It's tempting to collapse mismatched kinds to
2288 // something conservative, however this can pessimize in the case that one of
2289 // the uses will have all its uses outside the loop, for example.
2290 if (LU.Kind != Kind)
Dan Gohman045f8192010-01-22 00:46:49 +00002291 return false;
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00002292
Dan Gohman45774ce2010-02-12 10:34:29 +00002293 // Check for a mismatched access type, and fall back conservatively as needed.
Dan Gohman32655902010-06-19 21:30:18 +00002294 // TODO: Be less conservative when the type is similar and can use the same
2295 // addressing modes.
Matt Arsenault427a0fd2015-08-15 00:53:06 +00002296 if (Kind == LSRUse::Address) {
Matt Arsenault1f2ca662017-01-30 19:50:17 +00002297 if (AccessTy.MemTy != LU.AccessTy.MemTy) {
2298 NewAccessTy = MemAccessTy::getUnknown(AccessTy.MemTy->getContext(),
2299 AccessTy.AddrSpace);
2300 }
Matt Arsenault427a0fd2015-08-15 00:53:06 +00002301 }
Dan Gohman51ad99d2010-01-21 02:09:26 +00002302
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00002303 // Conservatively assume HasBaseReg is true for now.
2304 if (NewOffset < LU.MinOffset) {
2305 if (!isAlwaysFoldable(TTI, Kind, NewAccessTy, /*BaseGV=*/nullptr,
2306 LU.MaxOffset - NewOffset, HasBaseReg))
2307 return false;
2308 NewMinOffset = NewOffset;
2309 } else if (NewOffset > LU.MaxOffset) {
2310 if (!isAlwaysFoldable(TTI, Kind, NewAccessTy, /*BaseGV=*/nullptr,
2311 NewOffset - LU.MinOffset, HasBaseReg))
2312 return false;
2313 NewMaxOffset = NewOffset;
2314 }
2315
Dan Gohman45774ce2010-02-12 10:34:29 +00002316 // Update the use.
Dan Gohman110ed642010-09-01 01:45:53 +00002317 LU.MinOffset = NewMinOffset;
2318 LU.MaxOffset = NewMaxOffset;
2319 LU.AccessTy = NewAccessTy;
Dan Gohman29916e02010-01-21 22:42:49 +00002320 return true;
2321}
2322
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002323/// Return an LSRUse index and an offset value for a fixup which needs the given
2324/// expression, with the given kind and optional access type. Either reuse an
2325/// existing use or create a new one, as needed.
Matt Arsenault427a0fd2015-08-15 00:53:06 +00002326std::pair<size_t, int64_t> LSRInstance::getUse(const SCEV *&Expr,
2327 LSRUse::KindType Kind,
2328 MemAccessTy AccessTy) {
Dan Gohman45774ce2010-02-12 10:34:29 +00002329 const SCEV *Copy = Expr;
2330 int64_t Offset = ExtractImmediate(Expr, SE);
Evan Cheng85a9f432009-11-12 07:35:05 +00002331
Dan Gohman45774ce2010-02-12 10:34:29 +00002332 // Basic uses can't accept any offset, for example.
Craig Topperf40110f2014-04-25 05:29:35 +00002333 if (!isAlwaysFoldable(TTI, Kind, AccessTy, /*BaseGV=*/ nullptr,
Chandler Carruth26c59fa2013-01-07 14:41:08 +00002334 Offset, /*HasBaseReg=*/ true)) {
Dan Gohman45774ce2010-02-12 10:34:29 +00002335 Expr = Copy;
2336 Offset = 0;
2337 }
2338
2339 std::pair<UseMapTy::iterator, bool> P =
Benjamin Kramer62fb0cf2014-03-15 17:17:48 +00002340 UseMap.insert(std::make_pair(LSRUse::SCEVUseKindPair(Expr, Kind), 0));
Dan Gohman45774ce2010-02-12 10:34:29 +00002341 if (!P.second) {
2342 // A use already existed with this base.
2343 size_t LUIdx = P.first->second;
2344 LSRUse &LU = Uses[LUIdx];
Dan Gohman110ed642010-09-01 01:45:53 +00002345 if (reconcileNewOffset(LU, Offset, /*HasBaseReg=*/true, Kind, AccessTy))
Dan Gohman45774ce2010-02-12 10:34:29 +00002346 // Reuse this use.
2347 return std::make_pair(LUIdx, Offset);
2348 }
2349
2350 // Create a new use.
2351 size_t LUIdx = Uses.size();
2352 P.first->second = LUIdx;
2353 Uses.push_back(LSRUse(Kind, AccessTy));
2354 LSRUse &LU = Uses[LUIdx];
2355
Dan Gohman45774ce2010-02-12 10:34:29 +00002356 LU.MinOffset = Offset;
2357 LU.MaxOffset = Offset;
2358 return std::make_pair(LUIdx, Offset);
2359}
2360
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002361/// Delete the given use from the Uses list.
Dan Gohmana7b68d62010-10-07 23:33:43 +00002362void LSRInstance::DeleteUse(LSRUse &LU, size_t LUIdx) {
Dan Gohman110ed642010-09-01 01:45:53 +00002363 if (&LU != &Uses.back())
Dan Gohman80a96082010-05-20 15:17:54 +00002364 std::swap(LU, Uses.back());
2365 Uses.pop_back();
Dan Gohmana7b68d62010-10-07 23:33:43 +00002366
2367 // Update RegUses.
Sanjoy Das302bfd02015-08-16 18:22:43 +00002368 RegUses.swapAndDropUse(LUIdx, Uses.size());
Dan Gohman80a96082010-05-20 15:17:54 +00002369}
2370
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002371/// Look for a use distinct from OrigLU which is has a formula that has the same
2372/// registers as the given formula.
Dan Gohman20fab452010-05-19 23:43:12 +00002373LSRUse *
2374LSRInstance::FindUseWithSimilarFormula(const Formula &OrigF,
Dan Gohman110ed642010-09-01 01:45:53 +00002375 const LSRUse &OrigLU) {
2376 // Search all uses for the formula. This could be more clever.
Dan Gohman20fab452010-05-19 23:43:12 +00002377 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
2378 LSRUse &LU = Uses[LUIdx];
Dan Gohmanb6a520d2010-08-29 15:27:08 +00002379 // Check whether this use is close enough to OrigLU, to see whether it's
2380 // worthwhile looking through its formulae.
2381 // Ignore ICmpZero uses because they may contain formulae generated by
2382 // GenerateICmpZeroScales, in which case adding fixup offsets may
2383 // be invalid.
Dan Gohman20fab452010-05-19 23:43:12 +00002384 if (&LU != &OrigLU &&
2385 LU.Kind != LSRUse::ICmpZero &&
2386 LU.Kind == OrigLU.Kind && OrigLU.AccessTy == LU.AccessTy &&
Dan Gohman14152082010-07-15 20:24:58 +00002387 LU.WidestFixupType == OrigLU.WidestFixupType &&
Dan Gohman20fab452010-05-19 23:43:12 +00002388 LU.HasFormulaWithSameRegs(OrigF)) {
Dan Gohmanb6a520d2010-08-29 15:27:08 +00002389 // Scan through this use's formulae.
Craig Topper042a3922015-05-25 20:01:18 +00002390 for (const Formula &F : LU.Formulae) {
Dan Gohmanb6a520d2010-08-29 15:27:08 +00002391 // Check to see if this formula has the same registers and symbols
2392 // as OrigF.
Dan Gohman20fab452010-05-19 23:43:12 +00002393 if (F.BaseRegs == OrigF.BaseRegs &&
2394 F.ScaledReg == OrigF.ScaledReg &&
Chandler Carruth6e479322013-01-07 15:04:40 +00002395 F.BaseGV == OrigF.BaseGV &&
2396 F.Scale == OrigF.Scale &&
Dan Gohman6136e942011-05-03 00:46:49 +00002397 F.UnfoldedOffset == OrigF.UnfoldedOffset) {
Chandler Carruth6e479322013-01-07 15:04:40 +00002398 if (F.BaseOffset == 0)
Dan Gohman20fab452010-05-19 23:43:12 +00002399 return &LU;
Dan Gohmanb6a520d2010-08-29 15:27:08 +00002400 // This is the formula where all the registers and symbols matched;
2401 // there aren't going to be any others. Since we declined it, we
Benjamin Kramerbde91762012-06-02 10:20:22 +00002402 // can skip the rest of the formulae and proceed to the next LSRUse.
Dan Gohman20fab452010-05-19 23:43:12 +00002403 break;
2404 }
2405 }
2406 }
2407 }
2408
Dan Gohmanb6a520d2010-08-29 15:27:08 +00002409 // Nothing looked good.
Craig Topperf40110f2014-04-25 05:29:35 +00002410 return nullptr;
Dan Gohman20fab452010-05-19 23:43:12 +00002411}
2412
Dan Gohman45774ce2010-02-12 10:34:29 +00002413void LSRInstance::CollectInterestingTypesAndFactors() {
2414 SmallSetVector<const SCEV *, 4> Strides;
2415
Dan Gohman2446f572010-02-19 00:05:23 +00002416 // Collect interesting types and strides.
Dan Gohmand006ab92010-04-07 22:27:08 +00002417 SmallVector<const SCEV *, 4> Worklist;
Craig Topper042a3922015-05-25 20:01:18 +00002418 for (const IVStrideUse &U : IU) {
2419 const SCEV *Expr = IU.getExpr(U);
Dan Gohman45774ce2010-02-12 10:34:29 +00002420
2421 // Collect interesting types.
Dan Gohmand006ab92010-04-07 22:27:08 +00002422 Types.insert(SE.getEffectiveSCEVType(Expr->getType()));
Dan Gohman45774ce2010-02-12 10:34:29 +00002423
Dan Gohmand006ab92010-04-07 22:27:08 +00002424 // Add strides for mentioned loops.
2425 Worklist.push_back(Expr);
2426 do {
2427 const SCEV *S = Worklist.pop_back_val();
2428 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
Andrew Trickd97b83e2012-03-22 22:42:45 +00002429 if (AR->getLoop() == L)
Andrew Tricke8b4f402011-12-10 00:25:00 +00002430 Strides.insert(AR->getStepRecurrence(SE));
Dan Gohmand006ab92010-04-07 22:27:08 +00002431 Worklist.push_back(AR->getStart());
2432 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
Dan Gohmandd41bba2010-06-21 19:47:52 +00002433 Worklist.append(Add->op_begin(), Add->op_end());
Dan Gohmand006ab92010-04-07 22:27:08 +00002434 }
2435 } while (!Worklist.empty());
Dan Gohman2446f572010-02-19 00:05:23 +00002436 }
2437
2438 // Compute interesting factors from the set of interesting strides.
2439 for (SmallSetVector<const SCEV *, 4>::const_iterator
2440 I = Strides.begin(), E = Strides.end(); I != E; ++I)
Dan Gohman45774ce2010-02-12 10:34:29 +00002441 for (SmallSetVector<const SCEV *, 4>::const_iterator NewStrideIter =
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00002442 std::next(I); NewStrideIter != E; ++NewStrideIter) {
Dan Gohman2446f572010-02-19 00:05:23 +00002443 const SCEV *OldStride = *I;
Dan Gohman45774ce2010-02-12 10:34:29 +00002444 const SCEV *NewStride = *NewStrideIter;
Dan Gohman45774ce2010-02-12 10:34:29 +00002445
2446 if (SE.getTypeSizeInBits(OldStride->getType()) !=
2447 SE.getTypeSizeInBits(NewStride->getType())) {
2448 if (SE.getTypeSizeInBits(OldStride->getType()) >
2449 SE.getTypeSizeInBits(NewStride->getType()))
2450 NewStride = SE.getSignExtendExpr(NewStride, OldStride->getType());
2451 else
2452 OldStride = SE.getSignExtendExpr(OldStride, NewStride->getType());
2453 }
2454 if (const SCEVConstant *Factor =
Dan Gohman4eebb942010-02-19 19:35:48 +00002455 dyn_cast_or_null<SCEVConstant>(getExactSDiv(NewStride, OldStride,
2456 SE, true))) {
Sanjoy Das0de2fec2015-12-17 20:28:46 +00002457 if (Factor->getAPInt().getMinSignedBits() <= 64)
2458 Factors.insert(Factor->getAPInt().getSExtValue());
Dan Gohman45774ce2010-02-12 10:34:29 +00002459 } else if (const SCEVConstant *Factor =
Dan Gohman8c16b382010-02-22 04:11:59 +00002460 dyn_cast_or_null<SCEVConstant>(getExactSDiv(OldStride,
2461 NewStride,
Dan Gohman4eebb942010-02-19 19:35:48 +00002462 SE, true))) {
Sanjoy Das0de2fec2015-12-17 20:28:46 +00002463 if (Factor->getAPInt().getMinSignedBits() <= 64)
2464 Factors.insert(Factor->getAPInt().getSExtValue());
Dan Gohman45774ce2010-02-12 10:34:29 +00002465 }
2466 }
Dan Gohman45774ce2010-02-12 10:34:29 +00002467
2468 // If all uses use the same type, don't bother looking for truncation-based
2469 // reuse.
2470 if (Types.size() == 1)
2471 Types.clear();
2472
2473 DEBUG(print_factors_and_types(dbgs()));
2474}
2475
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002476/// Helper for CollectChains that finds an IV operand (computed by an AddRec in
2477/// this loop) within [OI,OE) or returns OE. If IVUsers mapped Instructions to
2478/// IVStrideUses, we could partially skip this.
Andrew Trick29fe5f02012-01-09 19:50:34 +00002479static User::op_iterator
2480findIVOperand(User::op_iterator OI, User::op_iterator OE,
2481 Loop *L, ScalarEvolution &SE) {
2482 for(; OI != OE; ++OI) {
2483 if (Instruction *Oper = dyn_cast<Instruction>(*OI)) {
2484 if (!SE.isSCEVable(Oper->getType()))
2485 continue;
2486
2487 if (const SCEVAddRecExpr *AR =
2488 dyn_cast<SCEVAddRecExpr>(SE.getSCEV(Oper))) {
2489 if (AR->getLoop() == L)
2490 break;
2491 }
2492 }
2493 }
2494 return OI;
2495}
2496
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002497/// IVChain logic must consistenctly peek base TruncInst operands, so wrap it in
2498/// a convenient helper.
Andrew Trick29fe5f02012-01-09 19:50:34 +00002499static Value *getWideOperand(Value *Oper) {
2500 if (TruncInst *Trunc = dyn_cast<TruncInst>(Oper))
2501 return Trunc->getOperand(0);
2502 return Oper;
2503}
2504
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002505/// Return true if we allow an IV chain to include both types.
Andrew Trick29fe5f02012-01-09 19:50:34 +00002506static bool isCompatibleIVType(Value *LVal, Value *RVal) {
2507 Type *LType = LVal->getType();
2508 Type *RType = RVal->getType();
2509 return (LType == RType) || (LType->isPointerTy() && RType->isPointerTy());
2510}
2511
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002512/// Return an approximation of this SCEV expression's "base", or NULL for any
2513/// constant. Returning the expression itself is conservative. Returning a
2514/// deeper subexpression is more precise and valid as long as it isn't less
2515/// complex than another subexpression. For expressions involving multiple
2516/// unscaled values, we need to return the pointer-type SCEVUnknown. This avoids
2517/// forming chains across objects, such as: PrevOper==a[i], IVOper==b[i],
2518/// IVInc==b-a.
Andrew Trickd5d2db92012-01-10 01:45:08 +00002519///
2520/// Since SCEVUnknown is the rightmost type, and pointers are the rightmost
2521/// SCEVUnknown, we simply return the rightmost SCEV operand.
2522static const SCEV *getExprBase(const SCEV *S) {
2523 switch (S->getSCEVType()) {
2524 default: // uncluding scUnknown.
2525 return S;
2526 case scConstant:
Craig Topperf40110f2014-04-25 05:29:35 +00002527 return nullptr;
Andrew Trickd5d2db92012-01-10 01:45:08 +00002528 case scTruncate:
2529 return getExprBase(cast<SCEVTruncateExpr>(S)->getOperand());
2530 case scZeroExtend:
2531 return getExprBase(cast<SCEVZeroExtendExpr>(S)->getOperand());
2532 case scSignExtend:
2533 return getExprBase(cast<SCEVSignExtendExpr>(S)->getOperand());
2534 case scAddExpr: {
2535 // Skip over scaled operands (scMulExpr) to follow add operands as long as
2536 // there's nothing more complex.
2537 // FIXME: not sure if we want to recognize negation.
2538 const SCEVAddExpr *Add = cast<SCEVAddExpr>(S);
2539 for (std::reverse_iterator<SCEVAddExpr::op_iterator> I(Add->op_end()),
2540 E(Add->op_begin()); I != E; ++I) {
2541 const SCEV *SubExpr = *I;
2542 if (SubExpr->getSCEVType() == scAddExpr)
2543 return getExprBase(SubExpr);
2544
2545 if (SubExpr->getSCEVType() != scMulExpr)
2546 return SubExpr;
2547 }
2548 return S; // all operands are scaled, be conservative.
2549 }
2550 case scAddRecExpr:
2551 return getExprBase(cast<SCEVAddRecExpr>(S)->getStart());
2552 }
2553}
2554
Andrew Trick248d4102012-01-09 21:18:52 +00002555/// Return true if the chain increment is profitable to expand into a loop
2556/// invariant value, which may require its own register. A profitable chain
2557/// increment will be an offset relative to the same base. We allow such offsets
2558/// to potentially be used as chain increment as long as it's not obviously
2559/// expensive to expand using real instructions.
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002560bool IVChain::isProfitableIncrement(const SCEV *OperExpr,
2561 const SCEV *IncExpr,
2562 ScalarEvolution &SE) {
2563 // Aggressively form chains when -stress-ivchain.
Andrew Trick248d4102012-01-09 21:18:52 +00002564 if (StressIVChain)
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002565 return true;
Andrew Trick248d4102012-01-09 21:18:52 +00002566
Andrew Trickd5d2db92012-01-10 01:45:08 +00002567 // Do not replace a constant offset from IV head with a nonconstant IV
2568 // increment.
2569 if (!isa<SCEVConstant>(IncExpr)) {
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002570 const SCEV *HeadExpr = SE.getSCEV(getWideOperand(Incs[0].IVOperand));
Andrew Trickd5d2db92012-01-10 01:45:08 +00002571 if (isa<SCEVConstant>(SE.getMinusSCEV(OperExpr, HeadExpr)))
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +00002572 return false;
Andrew Trickd5d2db92012-01-10 01:45:08 +00002573 }
2574
2575 SmallPtrSet<const SCEV*, 8> Processed;
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002576 return !isHighCostExpansion(IncExpr, Processed, SE);
Andrew Trick248d4102012-01-09 21:18:52 +00002577}
2578
2579/// Return true if the number of registers needed for the chain is estimated to
2580/// be less than the number required for the individual IV users. First prohibit
2581/// any IV users that keep the IV live across increments (the Users set should
2582/// be empty). Next count the number and type of increments in the chain.
2583///
2584/// Chaining IVs can lead to considerable code bloat if ISEL doesn't
2585/// effectively use postinc addressing modes. Only consider it profitable it the
2586/// increments can be computed in fewer registers when chained.
2587///
2588/// TODO: Consider IVInc free if it's already used in another chains.
2589static bool
Craig Topper71b7b682014-08-21 05:55:13 +00002590isProfitableChain(IVChain &Chain, SmallPtrSetImpl<Instruction*> &Users,
Chandler Carruth26c59fa2013-01-07 14:41:08 +00002591 ScalarEvolution &SE, const TargetTransformInfo &TTI) {
Andrew Trick248d4102012-01-09 21:18:52 +00002592 if (StressIVChain)
2593 return true;
2594
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002595 if (!Chain.hasIncs())
Andrew Trickd5d2db92012-01-10 01:45:08 +00002596 return false;
2597
2598 if (!Users.empty()) {
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002599 DEBUG(dbgs() << "Chain: " << *Chain.Incs[0].UserInst << " users:\n";
Craig Topper46276792014-08-24 23:23:06 +00002600 for (Instruction *Inst : Users) {
2601 dbgs() << " " << *Inst << "\n";
Andrew Trickd5d2db92012-01-10 01:45:08 +00002602 });
2603 return false;
2604 }
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002605 assert(!Chain.Incs.empty() && "empty IV chains are not allowed");
Andrew Trickd5d2db92012-01-10 01:45:08 +00002606
2607 // The chain itself may require a register, so intialize cost to 1.
2608 int cost = 1;
2609
2610 // A complete chain likely eliminates the need for keeping the original IV in
2611 // a register. LSR does not currently know how to form a complete chain unless
2612 // the header phi already exists.
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002613 if (isa<PHINode>(Chain.tailUserInst())
2614 && SE.getSCEV(Chain.tailUserInst()) == Chain.Incs[0].IncExpr) {
Andrew Trickd5d2db92012-01-10 01:45:08 +00002615 --cost;
2616 }
Craig Topperf40110f2014-04-25 05:29:35 +00002617 const SCEV *LastIncExpr = nullptr;
Andrew Trickd5d2db92012-01-10 01:45:08 +00002618 unsigned NumConstIncrements = 0;
2619 unsigned NumVarIncrements = 0;
2620 unsigned NumReusedIncrements = 0;
Craig Topper042a3922015-05-25 20:01:18 +00002621 for (const IVInc &Inc : Chain) {
2622 if (Inc.IncExpr->isZero())
Andrew Trickd5d2db92012-01-10 01:45:08 +00002623 continue;
2624
2625 // Incrementing by zero or some constant is neutral. We assume constants can
2626 // be folded into an addressing mode or an add's immediate operand.
Craig Topper042a3922015-05-25 20:01:18 +00002627 if (isa<SCEVConstant>(Inc.IncExpr)) {
Andrew Trickd5d2db92012-01-10 01:45:08 +00002628 ++NumConstIncrements;
2629 continue;
2630 }
2631
Craig Topper042a3922015-05-25 20:01:18 +00002632 if (Inc.IncExpr == LastIncExpr)
Andrew Trickd5d2db92012-01-10 01:45:08 +00002633 ++NumReusedIncrements;
2634 else
2635 ++NumVarIncrements;
2636
Craig Topper042a3922015-05-25 20:01:18 +00002637 LastIncExpr = Inc.IncExpr;
Andrew Trickd5d2db92012-01-10 01:45:08 +00002638 }
2639 // An IV chain with a single increment is handled by LSR's postinc
2640 // uses. However, a chain with multiple increments requires keeping the IV's
2641 // value live longer than it needs to be if chained.
2642 if (NumConstIncrements > 1)
2643 --cost;
2644
2645 // Materializing increment expressions in the preheader that didn't exist in
2646 // the original code may cost a register. For example, sign-extended array
2647 // indices can produce ridiculous increments like this:
2648 // IV + ((sext i32 (2 * %s) to i64) + (-1 * (sext i32 %s to i64)))
2649 cost += NumVarIncrements;
2650
2651 // Reusing variable increments likely saves a register to hold the multiple of
2652 // the stride.
2653 cost -= NumReusedIncrements;
2654
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002655 DEBUG(dbgs() << "Chain: " << *Chain.Incs[0].UserInst << " Cost: " << cost
2656 << "\n");
Andrew Trickd5d2db92012-01-10 01:45:08 +00002657
2658 return cost < 0;
Andrew Trick248d4102012-01-09 21:18:52 +00002659}
2660
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002661/// Add this IV user to an existing chain or make it the head of a new chain.
Andrew Trick29fe5f02012-01-09 19:50:34 +00002662void LSRInstance::ChainInstruction(Instruction *UserInst, Instruction *IVOper,
2663 SmallVectorImpl<ChainUsers> &ChainUsersVec) {
2664 // When IVs are used as types of varying widths, they are generally converted
2665 // to a wider type with some uses remaining narrow under a (free) trunc.
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002666 Value *const NextIV = getWideOperand(IVOper);
2667 const SCEV *const OperExpr = SE.getSCEV(NextIV);
2668 const SCEV *const OperExprBase = getExprBase(OperExpr);
Andrew Trick29fe5f02012-01-09 19:50:34 +00002669
2670 // Visit all existing chains. Check if its IVOper can be computed as a
2671 // profitable loop invariant increment from the last link in the Chain.
2672 unsigned ChainIdx = 0, NChains = IVChainVec.size();
Craig Topperf40110f2014-04-25 05:29:35 +00002673 const SCEV *LastIncExpr = nullptr;
Andrew Trick29fe5f02012-01-09 19:50:34 +00002674 for (; ChainIdx < NChains; ++ChainIdx) {
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002675 IVChain &Chain = IVChainVec[ChainIdx];
2676
2677 // Prune the solution space aggressively by checking that both IV operands
2678 // are expressions that operate on the same unscaled SCEVUnknown. This
2679 // "base" will be canceled by the subsequent getMinusSCEV call. Checking
2680 // first avoids creating extra SCEV expressions.
2681 if (!StressIVChain && Chain.ExprBase != OperExprBase)
2682 continue;
2683
2684 Value *PrevIV = getWideOperand(Chain.Incs.back().IVOperand);
Andrew Trick29fe5f02012-01-09 19:50:34 +00002685 if (!isCompatibleIVType(PrevIV, NextIV))
2686 continue;
2687
Andrew Trick356a8962012-03-26 20:28:35 +00002688 // A phi node terminates a chain.
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002689 if (isa<PHINode>(UserInst) && isa<PHINode>(Chain.tailUserInst()))
Andrew Trick29fe5f02012-01-09 19:50:34 +00002690 continue;
2691
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002692 // The increment must be loop-invariant so it can be kept in a register.
2693 const SCEV *PrevExpr = SE.getSCEV(PrevIV);
2694 const SCEV *IncExpr = SE.getMinusSCEV(OperExpr, PrevExpr);
2695 if (!SE.isLoopInvariant(IncExpr, L))
2696 continue;
2697
2698 if (Chain.isProfitableIncrement(OperExpr, IncExpr, SE)) {
Andrew Trick29fe5f02012-01-09 19:50:34 +00002699 LastIncExpr = IncExpr;
2700 break;
2701 }
2702 }
2703 // If we haven't found a chain, create a new one, unless we hit the max. Don't
2704 // bother for phi nodes, because they must be last in the chain.
2705 if (ChainIdx == NChains) {
2706 if (isa<PHINode>(UserInst))
2707 return;
Andrew Trick248d4102012-01-09 21:18:52 +00002708 if (NChains >= MaxChains && !StressIVChain) {
Andrew Trick29fe5f02012-01-09 19:50:34 +00002709 DEBUG(dbgs() << "IV Chain Limit\n");
2710 return;
2711 }
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002712 LastIncExpr = OperExpr;
Andrew Trickb9c822a2012-01-20 21:23:40 +00002713 // IVUsers may have skipped over sign/zero extensions. We don't currently
2714 // attempt to form chains involving extensions unless they can be hoisted
2715 // into this loop's AddRec.
2716 if (!isa<SCEVAddRecExpr>(LastIncExpr))
2717 return;
Andrew Trick29fe5f02012-01-09 19:50:34 +00002718 ++NChains;
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002719 IVChainVec.push_back(IVChain(IVInc(UserInst, IVOper, LastIncExpr),
2720 OperExprBase));
Andrew Trick29fe5f02012-01-09 19:50:34 +00002721 ChainUsersVec.resize(NChains);
Jakob Stoklund Olesen293673d2012-04-25 18:01:32 +00002722 DEBUG(dbgs() << "IV Chain#" << ChainIdx << " Head: (" << *UserInst
2723 << ") IV=" << *LastIncExpr << "\n");
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002724 } else {
Jakob Stoklund Olesen293673d2012-04-25 18:01:32 +00002725 DEBUG(dbgs() << "IV Chain#" << ChainIdx << " Inc: (" << *UserInst
2726 << ") IV+" << *LastIncExpr << "\n");
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002727 // Add this IV user to the end of the chain.
2728 IVChainVec[ChainIdx].add(IVInc(UserInst, IVOper, LastIncExpr));
2729 }
Andrew Trickbc705902013-02-09 01:11:01 +00002730 IVChain &Chain = IVChainVec[ChainIdx];
Andrew Trick29fe5f02012-01-09 19:50:34 +00002731
2732 SmallPtrSet<Instruction*,4> &NearUsers = ChainUsersVec[ChainIdx].NearUsers;
2733 // This chain's NearUsers become FarUsers.
2734 if (!LastIncExpr->isZero()) {
2735 ChainUsersVec[ChainIdx].FarUsers.insert(NearUsers.begin(),
2736 NearUsers.end());
2737 NearUsers.clear();
2738 }
2739
2740 // All other uses of IVOperand become near uses of the chain.
2741 // We currently ignore intermediate values within SCEV expressions, assuming
2742 // they will eventually be used be the current chain, or can be computed
2743 // from one of the chain increments. To be more precise we could
2744 // transitively follow its user and only add leaf IV users to the set.
Chandler Carruthcdf47882014-03-09 03:16:01 +00002745 for (User *U : IVOper->users()) {
2746 Instruction *OtherUse = dyn_cast<Instruction>(U);
Andrew Trickbc705902013-02-09 01:11:01 +00002747 if (!OtherUse)
Andrew Tricke51feea2012-03-26 18:03:16 +00002748 continue;
Andrew Trickbc705902013-02-09 01:11:01 +00002749 // Uses in the chain will no longer be uses if the chain is formed.
2750 // Include the head of the chain in this iteration (not Chain.begin()).
2751 IVChain::const_iterator IncIter = Chain.Incs.begin();
2752 IVChain::const_iterator IncEnd = Chain.Incs.end();
2753 for( ; IncIter != IncEnd; ++IncIter) {
2754 if (IncIter->UserInst == OtherUse)
2755 break;
2756 }
2757 if (IncIter != IncEnd)
2758 continue;
2759
Andrew Trick29fe5f02012-01-09 19:50:34 +00002760 if (SE.isSCEVable(OtherUse->getType())
2761 && !isa<SCEVUnknown>(SE.getSCEV(OtherUse))
2762 && IU.isIVUserOrOperand(OtherUse)) {
2763 continue;
2764 }
Andrew Tricke51feea2012-03-26 18:03:16 +00002765 NearUsers.insert(OtherUse);
Andrew Trick29fe5f02012-01-09 19:50:34 +00002766 }
2767
2768 // Since this user is part of the chain, it's no longer considered a use
2769 // of the chain.
2770 ChainUsersVec[ChainIdx].FarUsers.erase(UserInst);
2771}
2772
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002773/// Populate the vector of Chains.
Andrew Trick29fe5f02012-01-09 19:50:34 +00002774///
2775/// This decreases ILP at the architecture level. Targets with ample registers,
2776/// multiple memory ports, and no register renaming probably don't want
2777/// this. However, such targets should probably disable LSR altogether.
2778///
2779/// The job of LSR is to make a reasonable choice of induction variables across
2780/// the loop. Subsequent passes can easily "unchain" computation exposing more
2781/// ILP *within the loop* if the target wants it.
2782///
2783/// Finding the best IV chain is potentially a scheduling problem. Since LSR
2784/// will not reorder memory operations, it will recognize this as a chain, but
2785/// will generate redundant IV increments. Ideally this would be corrected later
2786/// by a smart scheduler:
2787/// = A[i]
2788/// = A[i+x]
2789/// A[i] =
2790/// A[i+x] =
2791///
2792/// TODO: Walk the entire domtree within this loop, not just the path to the
2793/// loop latch. This will discover chains on side paths, but requires
2794/// maintaining multiple copies of the Chains state.
2795void LSRInstance::CollectChains() {
Jakob Stoklund Olesen293673d2012-04-25 18:01:32 +00002796 DEBUG(dbgs() << "Collecting IV Chains.\n");
Andrew Trick29fe5f02012-01-09 19:50:34 +00002797 SmallVector<ChainUsers, 8> ChainUsersVec;
2798
2799 SmallVector<BasicBlock *,8> LatchPath;
2800 BasicBlock *LoopHeader = L->getHeader();
2801 for (DomTreeNode *Rung = DT.getNode(L->getLoopLatch());
2802 Rung->getBlock() != LoopHeader; Rung = Rung->getIDom()) {
2803 LatchPath.push_back(Rung->getBlock());
2804 }
2805 LatchPath.push_back(LoopHeader);
2806
2807 // Walk the instruction stream from the loop header to the loop latch.
David Majnemerd7708772016-06-24 04:05:21 +00002808 for (BasicBlock *BB : reverse(LatchPath)) {
2809 for (Instruction &I : *BB) {
Andrew Trick29fe5f02012-01-09 19:50:34 +00002810 // Skip instructions that weren't seen by IVUsers analysis.
David Majnemerd7708772016-06-24 04:05:21 +00002811 if (isa<PHINode>(I) || !IU.isIVUserOrOperand(&I))
Andrew Trick29fe5f02012-01-09 19:50:34 +00002812 continue;
2813
2814 // Ignore users that are part of a SCEV expression. This way we only
2815 // consider leaf IV Users. This effectively rediscovers a portion of
2816 // IVUsers analysis but in program order this time.
David Majnemerd7708772016-06-24 04:05:21 +00002817 if (SE.isSCEVable(I.getType()) && !isa<SCEVUnknown>(SE.getSCEV(&I)))
Andrew Trick29fe5f02012-01-09 19:50:34 +00002818 continue;
2819
2820 // Remove this instruction from any NearUsers set it may be in.
2821 for (unsigned ChainIdx = 0, NChains = IVChainVec.size();
2822 ChainIdx < NChains; ++ChainIdx) {
David Majnemerd7708772016-06-24 04:05:21 +00002823 ChainUsersVec[ChainIdx].NearUsers.erase(&I);
Andrew Trick29fe5f02012-01-09 19:50:34 +00002824 }
2825 // Search for operands that can be chained.
2826 SmallPtrSet<Instruction*, 4> UniqueOperands;
David Majnemerd7708772016-06-24 04:05:21 +00002827 User::op_iterator IVOpEnd = I.op_end();
2828 User::op_iterator IVOpIter = findIVOperand(I.op_begin(), IVOpEnd, L, SE);
Andrew Trick29fe5f02012-01-09 19:50:34 +00002829 while (IVOpIter != IVOpEnd) {
2830 Instruction *IVOpInst = cast<Instruction>(*IVOpIter);
David Blaikie70573dc2014-11-19 07:49:26 +00002831 if (UniqueOperands.insert(IVOpInst).second)
David Majnemerd7708772016-06-24 04:05:21 +00002832 ChainInstruction(&I, IVOpInst, ChainUsersVec);
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00002833 IVOpIter = findIVOperand(std::next(IVOpIter), IVOpEnd, L, SE);
Andrew Trick29fe5f02012-01-09 19:50:34 +00002834 }
2835 } // Continue walking down the instructions.
2836 } // Continue walking down the domtree.
2837 // Visit phi backedges to determine if the chain can generate the IV postinc.
2838 for (BasicBlock::iterator I = L->getHeader()->begin();
2839 PHINode *PN = dyn_cast<PHINode>(I); ++I) {
2840 if (!SE.isSCEVable(PN->getType()))
2841 continue;
2842
2843 Instruction *IncV =
2844 dyn_cast<Instruction>(PN->getIncomingValueForBlock(L->getLoopLatch()));
2845 if (IncV)
2846 ChainInstruction(PN, IncV, ChainUsersVec);
2847 }
Andrew Trick248d4102012-01-09 21:18:52 +00002848 // Remove any unprofitable chains.
2849 unsigned ChainIdx = 0;
2850 for (unsigned UsersIdx = 0, NChains = IVChainVec.size();
2851 UsersIdx < NChains; ++UsersIdx) {
2852 if (!isProfitableChain(IVChainVec[UsersIdx],
Chandler Carruth26c59fa2013-01-07 14:41:08 +00002853 ChainUsersVec[UsersIdx].FarUsers, SE, TTI))
Andrew Trick248d4102012-01-09 21:18:52 +00002854 continue;
2855 // Preserve the chain at UsesIdx.
2856 if (ChainIdx != UsersIdx)
2857 IVChainVec[ChainIdx] = IVChainVec[UsersIdx];
2858 FinalizeChain(IVChainVec[ChainIdx]);
2859 ++ChainIdx;
2860 }
2861 IVChainVec.resize(ChainIdx);
2862}
2863
2864void LSRInstance::FinalizeChain(IVChain &Chain) {
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002865 assert(!Chain.Incs.empty() && "empty IV chains are not allowed");
2866 DEBUG(dbgs() << "Final Chain: " << *Chain.Incs[0].UserInst << "\n");
Andrew Trick248d4102012-01-09 21:18:52 +00002867
Craig Topper042a3922015-05-25 20:01:18 +00002868 for (const IVInc &Inc : Chain) {
Evgeny Stupachenko8efbe6a2016-11-21 21:55:03 +00002869 DEBUG(dbgs() << " Inc: " << *Inc.UserInst << "\n");
David Majnemer42531262016-08-12 03:55:06 +00002870 auto UseI = find(Inc.UserInst->operands(), Inc.IVOperand);
Craig Topper042a3922015-05-25 20:01:18 +00002871 assert(UseI != Inc.UserInst->op_end() && "cannot find IV operand");
Andrew Trick248d4102012-01-09 21:18:52 +00002872 IVIncSet.insert(UseI);
2873 }
2874}
2875
2876/// Return true if the IVInc can be folded into an addressing mode.
2877static bool canFoldIVIncExpr(const SCEV *IncExpr, Instruction *UserInst,
Chandler Carruth26c59fa2013-01-07 14:41:08 +00002878 Value *Operand, const TargetTransformInfo &TTI) {
Andrew Trick248d4102012-01-09 21:18:52 +00002879 const SCEVConstant *IncConst = dyn_cast<SCEVConstant>(IncExpr);
2880 if (!IncConst || !isAddressUse(UserInst, Operand))
2881 return false;
2882
Sanjoy Das0de2fec2015-12-17 20:28:46 +00002883 if (IncConst->getAPInt().getMinSignedBits() > 64)
Andrew Trick248d4102012-01-09 21:18:52 +00002884 return false;
2885
Matt Arsenault427a0fd2015-08-15 00:53:06 +00002886 MemAccessTy AccessTy = getAccessType(UserInst);
Andrew Trick248d4102012-01-09 21:18:52 +00002887 int64_t IncOffset = IncConst->getValue()->getSExtValue();
Matt Arsenault427a0fd2015-08-15 00:53:06 +00002888 if (!isAlwaysFoldable(TTI, LSRUse::Address, AccessTy, /*BaseGV=*/nullptr,
2889 IncOffset, /*HaseBaseReg=*/false))
Andrew Trick248d4102012-01-09 21:18:52 +00002890 return false;
2891
2892 return true;
2893}
2894
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002895/// Generate an add or subtract for each IVInc in a chain to materialize the IV
2896/// user's operand from the previous IV user's operand.
Andrew Trick248d4102012-01-09 21:18:52 +00002897void LSRInstance::GenerateIVChain(const IVChain &Chain, SCEVExpander &Rewriter,
2898 SmallVectorImpl<WeakVH> &DeadInsts) {
2899 // Find the new IVOperand for the head of the chain. It may have been replaced
2900 // by LSR.
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002901 const IVInc &Head = Chain.Incs[0];
Andrew Trick248d4102012-01-09 21:18:52 +00002902 User::op_iterator IVOpEnd = Head.UserInst->op_end();
Andrew Trickf3a25442013-03-19 05:10:27 +00002903 // findIVOperand returns IVOpEnd if it can no longer find a valid IV user.
Andrew Trick248d4102012-01-09 21:18:52 +00002904 User::op_iterator IVOpIter = findIVOperand(Head.UserInst->op_begin(),
2905 IVOpEnd, L, SE);
Craig Topperf40110f2014-04-25 05:29:35 +00002906 Value *IVSrc = nullptr;
Andrew Trickf3a25442013-03-19 05:10:27 +00002907 while (IVOpIter != IVOpEnd) {
Andrew Trick248d4102012-01-09 21:18:52 +00002908 IVSrc = getWideOperand(*IVOpIter);
2909
2910 // If this operand computes the expression that the chain needs, we may use
2911 // it. (Check this after setting IVSrc which is used below.)
2912 //
2913 // Note that if Head.IncExpr is wider than IVSrc, then this phi is too
2914 // narrow for the chain, so we can no longer use it. We do allow using a
2915 // wider phi, assuming the LSR checked for free truncation. In that case we
2916 // should already have a truncate on this operand such that
2917 // getSCEV(IVSrc) == IncExpr.
2918 if (SE.getSCEV(*IVOpIter) == Head.IncExpr
2919 || SE.getSCEV(IVSrc) == Head.IncExpr) {
2920 break;
2921 }
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00002922 IVOpIter = findIVOperand(std::next(IVOpIter), IVOpEnd, L, SE);
Andrew Trickf3a25442013-03-19 05:10:27 +00002923 }
Andrew Trick248d4102012-01-09 21:18:52 +00002924 if (IVOpIter == IVOpEnd) {
2925 // Gracefully give up on this chain.
2926 DEBUG(dbgs() << "Concealed chain head: " << *Head.UserInst << "\n");
2927 return;
2928 }
2929
2930 DEBUG(dbgs() << "Generate chain at: " << *IVSrc << "\n");
2931 Type *IVTy = IVSrc->getType();
2932 Type *IntTy = SE.getEffectiveSCEVType(IVTy);
Craig Topperf40110f2014-04-25 05:29:35 +00002933 const SCEV *LeftOverExpr = nullptr;
Craig Topper042a3922015-05-25 20:01:18 +00002934 for (const IVInc &Inc : Chain) {
2935 Instruction *InsertPt = Inc.UserInst;
Andrew Trick248d4102012-01-09 21:18:52 +00002936 if (isa<PHINode>(InsertPt))
2937 InsertPt = L->getLoopLatch()->getTerminator();
2938
2939 // IVOper will replace the current IV User's operand. IVSrc is the IV
2940 // value currently held in a register.
2941 Value *IVOper = IVSrc;
Craig Topper042a3922015-05-25 20:01:18 +00002942 if (!Inc.IncExpr->isZero()) {
Andrew Trick248d4102012-01-09 21:18:52 +00002943 // IncExpr was the result of subtraction of two narrow values, so must
2944 // be signed.
Craig Topper042a3922015-05-25 20:01:18 +00002945 const SCEV *IncExpr = SE.getNoopOrSignExtend(Inc.IncExpr, IntTy);
Andrew Trick248d4102012-01-09 21:18:52 +00002946 LeftOverExpr = LeftOverExpr ?
2947 SE.getAddExpr(LeftOverExpr, IncExpr) : IncExpr;
2948 }
2949 if (LeftOverExpr && !LeftOverExpr->isZero()) {
2950 // Expand the IV increment.
2951 Rewriter.clearPostInc();
2952 Value *IncV = Rewriter.expandCodeFor(LeftOverExpr, IntTy, InsertPt);
2953 const SCEV *IVOperExpr = SE.getAddExpr(SE.getUnknown(IVSrc),
2954 SE.getUnknown(IncV));
2955 IVOper = Rewriter.expandCodeFor(IVOperExpr, IVTy, InsertPt);
2956
2957 // If an IV increment can't be folded, use it as the next IV value.
Craig Topper042a3922015-05-25 20:01:18 +00002958 if (!canFoldIVIncExpr(LeftOverExpr, Inc.UserInst, Inc.IVOperand, TTI)) {
Andrew Trick248d4102012-01-09 21:18:52 +00002959 assert(IVTy == IVOper->getType() && "inconsistent IV increment type");
2960 IVSrc = IVOper;
Craig Topperf40110f2014-04-25 05:29:35 +00002961 LeftOverExpr = nullptr;
Andrew Trick248d4102012-01-09 21:18:52 +00002962 }
2963 }
Craig Topper042a3922015-05-25 20:01:18 +00002964 Type *OperTy = Inc.IVOperand->getType();
Andrew Trick248d4102012-01-09 21:18:52 +00002965 if (IVTy != OperTy) {
2966 assert(SE.getTypeSizeInBits(IVTy) >= SE.getTypeSizeInBits(OperTy) &&
2967 "cannot extend a chained IV");
2968 IRBuilder<> Builder(InsertPt);
2969 IVOper = Builder.CreateTruncOrBitCast(IVOper, OperTy, "lsr.chain");
2970 }
Craig Topper042a3922015-05-25 20:01:18 +00002971 Inc.UserInst->replaceUsesOfWith(Inc.IVOperand, IVOper);
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +00002972 DeadInsts.emplace_back(Inc.IVOperand);
Andrew Trick248d4102012-01-09 21:18:52 +00002973 }
2974 // If LSR created a new, wider phi, we may also replace its postinc. We only
2975 // do this if we also found a wide value for the head of the chain.
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002976 if (isa<PHINode>(Chain.tailUserInst())) {
Andrew Trick248d4102012-01-09 21:18:52 +00002977 for (BasicBlock::iterator I = L->getHeader()->begin();
2978 PHINode *Phi = dyn_cast<PHINode>(I); ++I) {
2979 if (!isCompatibleIVType(Phi, IVSrc))
2980 continue;
2981 Instruction *PostIncV = dyn_cast<Instruction>(
2982 Phi->getIncomingValueForBlock(L->getLoopLatch()));
2983 if (!PostIncV || (SE.getSCEV(PostIncV) != SE.getSCEV(IVSrc)))
2984 continue;
2985 Value *IVOper = IVSrc;
2986 Type *PostIncTy = PostIncV->getType();
2987 if (IVTy != PostIncTy) {
2988 assert(PostIncTy->isPointerTy() && "mixing int/ptr IV types");
2989 IRBuilder<> Builder(L->getLoopLatch()->getTerminator());
2990 Builder.SetCurrentDebugLocation(PostIncV->getDebugLoc());
2991 IVOper = Builder.CreatePointerCast(IVSrc, PostIncTy, "lsr.chain");
2992 }
2993 Phi->replaceUsesOfWith(PostIncV, IVOper);
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +00002994 DeadInsts.emplace_back(PostIncV);
Andrew Trick248d4102012-01-09 21:18:52 +00002995 }
2996 }
Andrew Trick29fe5f02012-01-09 19:50:34 +00002997}
2998
Dan Gohman45774ce2010-02-12 10:34:29 +00002999void LSRInstance::CollectFixupsAndInitialFormulae() {
Craig Topper042a3922015-05-25 20:01:18 +00003000 for (const IVStrideUse &U : IU) {
3001 Instruction *UserInst = U.getUser();
Andrew Trick248d4102012-01-09 21:18:52 +00003002 // Skip IV users that are part of profitable IV Chains.
David Majnemer42531262016-08-12 03:55:06 +00003003 User::op_iterator UseI =
3004 find(UserInst->operands(), U.getOperandValToReplace());
Andrew Trick248d4102012-01-09 21:18:52 +00003005 assert(UseI != UserInst->op_end() && "cannot find IV operand");
Quentin Colombet35109902017-01-28 01:05:27 +00003006 if (IVIncSet.count(UseI)) {
3007 DEBUG(dbgs() << "Use is in profitable chain: " << **UseI << '\n');
Andrew Trick248d4102012-01-09 21:18:52 +00003008 continue;
Quentin Colombet35109902017-01-28 01:05:27 +00003009 }
Andrew Trick248d4102012-01-09 21:18:52 +00003010
Dan Gohman45774ce2010-02-12 10:34:29 +00003011 LSRUse::KindType Kind = LSRUse::Basic;
Matt Arsenault427a0fd2015-08-15 00:53:06 +00003012 MemAccessTy AccessTy;
Jonas Paulsson7a794222016-08-17 13:24:19 +00003013 if (isAddressUse(UserInst, U.getOperandValToReplace())) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003014 Kind = LSRUse::Address;
Jonas Paulsson7a794222016-08-17 13:24:19 +00003015 AccessTy = getAccessType(UserInst);
Dan Gohman45774ce2010-02-12 10:34:29 +00003016 }
3017
Craig Topper042a3922015-05-25 20:01:18 +00003018 const SCEV *S = IU.getExpr(U);
Jonas Paulsson7a794222016-08-17 13:24:19 +00003019 PostIncLoopSet TmpPostIncLoops = U.getPostIncLoops();
3020
Dan Gohman45774ce2010-02-12 10:34:29 +00003021 // Equality (== and !=) ICmps are special. We can rewrite (i == N) as
3022 // (N - i == 0), and this allows (N - i) to be the expression that we work
3023 // with rather than just N or i, so we can consider the register
3024 // requirements for both N and i at the same time. Limiting this code to
3025 // equality icmps is not a problem because all interesting loops use
3026 // equality icmps, thanks to IndVarSimplify.
Jonas Paulsson7a794222016-08-17 13:24:19 +00003027 if (ICmpInst *CI = dyn_cast<ICmpInst>(UserInst))
Dan Gohman45774ce2010-02-12 10:34:29 +00003028 if (CI->isEquality()) {
3029 // Swap the operands if needed to put the OperandValToReplace on the
3030 // left, for consistency.
3031 Value *NV = CI->getOperand(1);
Jonas Paulsson7a794222016-08-17 13:24:19 +00003032 if (NV == U.getOperandValToReplace()) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003033 CI->setOperand(1, CI->getOperand(0));
3034 CI->setOperand(0, NV);
Dan Gohmanee2fea32010-05-20 19:26:52 +00003035 NV = CI->getOperand(1);
Dan Gohmanfdf98742010-05-20 19:16:03 +00003036 Changed = true;
Dan Gohman45774ce2010-02-12 10:34:29 +00003037 }
3038
3039 // x == y --> x - y == 0
3040 const SCEV *N = SE.getSCEV(NV);
Andrew Trick57243da2013-10-25 21:35:56 +00003041 if (SE.isLoopInvariant(N, L) && isSafeToExpand(N, SE)) {
Dan Gohman3268e4d2011-05-18 21:02:18 +00003042 // S is normalized, so normalize N before folding it into S
3043 // to keep the result normalized.
Craig Topperf40110f2014-04-25 05:29:35 +00003044 N = TransformForPostIncUse(Normalize, N, CI, nullptr,
Jonas Paulsson7a794222016-08-17 13:24:19 +00003045 TmpPostIncLoops, SE, DT);
Dan Gohman45774ce2010-02-12 10:34:29 +00003046 Kind = LSRUse::ICmpZero;
3047 S = SE.getMinusSCEV(N, S);
3048 }
3049
3050 // -1 and the negations of all interesting strides (except the negation
3051 // of -1) are now also interesting.
3052 for (size_t i = 0, e = Factors.size(); i != e; ++i)
3053 if (Factors[i] != -1)
3054 Factors.insert(-(uint64_t)Factors[i]);
3055 Factors.insert(-1);
3056 }
3057
Jonas Paulsson7a794222016-08-17 13:24:19 +00003058 // Get or create an LSRUse.
Dan Gohman45774ce2010-02-12 10:34:29 +00003059 std::pair<size_t, int64_t> P = getUse(S, Kind, AccessTy);
Jonas Paulsson7a794222016-08-17 13:24:19 +00003060 size_t LUIdx = P.first;
3061 int64_t Offset = P.second;
3062 LSRUse &LU = Uses[LUIdx];
3063
3064 // Record the fixup.
3065 LSRFixup &LF = LU.getNewFixup();
3066 LF.UserInst = UserInst;
3067 LF.OperandValToReplace = U.getOperandValToReplace();
3068 LF.PostIncLoops = TmpPostIncLoops;
3069 LF.Offset = Offset;
Dan Gohmand006ab92010-04-07 22:27:08 +00003070 LU.AllFixupsOutsideLoop &= LF.isUseFullyOutsideLoop(L);
Jonas Paulsson7a794222016-08-17 13:24:19 +00003071
Dan Gohman14152082010-07-15 20:24:58 +00003072 if (!LU.WidestFixupType ||
3073 SE.getTypeSizeInBits(LU.WidestFixupType) <
3074 SE.getTypeSizeInBits(LF.OperandValToReplace->getType()))
3075 LU.WidestFixupType = LF.OperandValToReplace->getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00003076
3077 // If this is the first use of this LSRUse, give it a formula.
3078 if (LU.Formulae.empty()) {
Jonas Paulsson7a794222016-08-17 13:24:19 +00003079 InsertInitialFormula(S, LU, LUIdx);
3080 CountRegisters(LU.Formulae.back(), LUIdx);
Dan Gohman45774ce2010-02-12 10:34:29 +00003081 }
3082 }
3083
3084 DEBUG(print_fixups(dbgs()));
3085}
3086
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003087/// Insert a formula for the given expression into the given use, separating out
3088/// loop-variant portions from loop-invariant and loop-computable portions.
Dan Gohman45774ce2010-02-12 10:34:29 +00003089void
Dan Gohman8c16b382010-02-22 04:11:59 +00003090LSRInstance::InsertInitialFormula(const SCEV *S, LSRUse &LU, size_t LUIdx) {
Andrew Trick57243da2013-10-25 21:35:56 +00003091 // Mark uses whose expressions cannot be expanded.
3092 if (!isSafeToExpand(S, SE))
3093 LU.RigidFormula = true;
3094
Dan Gohman45774ce2010-02-12 10:34:29 +00003095 Formula F;
Sanjoy Das302bfd02015-08-16 18:22:43 +00003096 F.initialMatch(S, L, SE);
Dan Gohman45774ce2010-02-12 10:34:29 +00003097 bool Inserted = InsertFormula(LU, LUIdx, F);
3098 assert(Inserted && "Initial formula already exists!"); (void)Inserted;
3099}
3100
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003101/// Insert a simple single-register formula for the given expression into the
3102/// given use.
Dan Gohman45774ce2010-02-12 10:34:29 +00003103void
3104LSRInstance::InsertSupplementalFormula(const SCEV *S,
3105 LSRUse &LU, size_t LUIdx) {
3106 Formula F;
3107 F.BaseRegs.push_back(S);
Chandler Carruth7e31c8f2013-01-12 23:46:04 +00003108 F.HasBaseReg = true;
Dan Gohman45774ce2010-02-12 10:34:29 +00003109 bool Inserted = InsertFormula(LU, LUIdx, F);
3110 assert(Inserted && "Supplemental formula already exists!"); (void)Inserted;
3111}
3112
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003113/// Note which registers are used by the given formula, updating RegUses.
Dan Gohman45774ce2010-02-12 10:34:29 +00003114void LSRInstance::CountRegisters(const Formula &F, size_t LUIdx) {
3115 if (F.ScaledReg)
Sanjoy Das302bfd02015-08-16 18:22:43 +00003116 RegUses.countRegister(F.ScaledReg, LUIdx);
Craig Topper042a3922015-05-25 20:01:18 +00003117 for (const SCEV *BaseReg : F.BaseRegs)
Sanjoy Das302bfd02015-08-16 18:22:43 +00003118 RegUses.countRegister(BaseReg, LUIdx);
Dan Gohman45774ce2010-02-12 10:34:29 +00003119}
3120
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003121/// If the given formula has not yet been inserted, add it to the list, and
3122/// return true. Return false otherwise.
Dan Gohman45774ce2010-02-12 10:34:29 +00003123bool LSRInstance::InsertFormula(LSRUse &LU, unsigned LUIdx, const Formula &F) {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003124 // Do not insert formula that we will not be able to expand.
3125 assert(isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy, F) &&
3126 "Formula is illegal");
Dan Gohman8c16b382010-02-22 04:11:59 +00003127 if (!LU.InsertFormula(F))
Dan Gohman45774ce2010-02-12 10:34:29 +00003128 return false;
3129
3130 CountRegisters(F, LUIdx);
3131 return true;
3132}
3133
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003134/// Check for other uses of loop-invariant values which we're tracking. These
3135/// other uses will pin these values in registers, making them less profitable
3136/// for elimination.
Dan Gohman45774ce2010-02-12 10:34:29 +00003137/// TODO: This currently misses non-constant addrec step registers.
3138/// TODO: Should this give more weight to users inside the loop?
3139void
3140LSRInstance::CollectLoopInvariantFixupsAndFormulae() {
3141 SmallVector<const SCEV *, 8> Worklist(RegUses.begin(), RegUses.end());
Andrew Trickdd925ad2014-10-25 19:59:30 +00003142 SmallPtrSet<const SCEV *, 32> Visited;
Dan Gohman45774ce2010-02-12 10:34:29 +00003143
3144 while (!Worklist.empty()) {
3145 const SCEV *S = Worklist.pop_back_val();
3146
Andrew Trick9ccbed52014-10-25 19:42:07 +00003147 // Don't process the same SCEV twice
David Blaikie70573dc2014-11-19 07:49:26 +00003148 if (!Visited.insert(S).second)
Andrew Trick9ccbed52014-10-25 19:42:07 +00003149 continue;
3150
Dan Gohman45774ce2010-02-12 10:34:29 +00003151 if (const SCEVNAryExpr *N = dyn_cast<SCEVNAryExpr>(S))
Dan Gohmandd41bba2010-06-21 19:47:52 +00003152 Worklist.append(N->op_begin(), N->op_end());
Dan Gohman45774ce2010-02-12 10:34:29 +00003153 else if (const SCEVCastExpr *C = dyn_cast<SCEVCastExpr>(S))
3154 Worklist.push_back(C->getOperand());
3155 else if (const SCEVUDivExpr *D = dyn_cast<SCEVUDivExpr>(S)) {
3156 Worklist.push_back(D->getLHS());
3157 Worklist.push_back(D->getRHS());
Chandler Carruthcdf47882014-03-09 03:16:01 +00003158 } else if (const SCEVUnknown *US = dyn_cast<SCEVUnknown>(S)) {
Chandler Carruthcdf47882014-03-09 03:16:01 +00003159 const Value *V = US->getValue();
Dan Gohman67b44032010-06-04 23:16:05 +00003160 if (const Instruction *Inst = dyn_cast<Instruction>(V)) {
3161 // Look for instructions defined outside the loop.
Dan Gohman45774ce2010-02-12 10:34:29 +00003162 if (L->contains(Inst)) continue;
Dan Gohman67b44032010-06-04 23:16:05 +00003163 } else if (isa<UndefValue>(V))
3164 // Undef doesn't have a live range, so it doesn't matter.
3165 continue;
Chandler Carruthcdf47882014-03-09 03:16:01 +00003166 for (const Use &U : V->uses()) {
3167 const Instruction *UserInst = dyn_cast<Instruction>(U.getUser());
Dan Gohman45774ce2010-02-12 10:34:29 +00003168 // Ignore non-instructions.
3169 if (!UserInst)
Dan Gohman045f8192010-01-22 00:46:49 +00003170 continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003171 // Ignore instructions in other functions (as can happen with
3172 // Constants).
3173 if (UserInst->getParent()->getParent() != L->getHeader()->getParent())
Dan Gohman045f8192010-01-22 00:46:49 +00003174 continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003175 // Ignore instructions not dominated by the loop.
3176 const BasicBlock *UseBB = !isa<PHINode>(UserInst) ?
3177 UserInst->getParent() :
3178 cast<PHINode>(UserInst)->getIncomingBlock(
Chandler Carruthcdf47882014-03-09 03:16:01 +00003179 PHINode::getIncomingValueNumForOperand(U.getOperandNo()));
Dan Gohman45774ce2010-02-12 10:34:29 +00003180 if (!DT.dominates(L->getHeader(), UseBB))
3181 continue;
David Majnemerb2221842015-11-08 05:04:07 +00003182 // Don't bother if the instruction is in a BB which ends in an EHPad.
3183 if (UseBB->getTerminator()->isEHPad())
3184 continue;
David Majnemerbba17392017-01-13 22:24:27 +00003185 // Don't bother rewriting PHIs in catchswitch blocks.
3186 if (isa<CatchSwitchInst>(UserInst->getParent()->getTerminator()))
3187 continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003188 // Ignore uses which are part of other SCEV expressions, to avoid
3189 // analyzing them multiple times.
Dan Gohman42ec4eb2010-04-09 19:12:34 +00003190 if (SE.isSCEVable(UserInst->getType())) {
3191 const SCEV *UserS = SE.getSCEV(const_cast<Instruction *>(UserInst));
3192 // If the user is a no-op, look through to its uses.
3193 if (!isa<SCEVUnknown>(UserS))
3194 continue;
Chandler Carruthcdf47882014-03-09 03:16:01 +00003195 if (UserS == US) {
Dan Gohman42ec4eb2010-04-09 19:12:34 +00003196 Worklist.push_back(
3197 SE.getUnknown(const_cast<Instruction *>(UserInst)));
3198 continue;
3199 }
3200 }
Dan Gohman45774ce2010-02-12 10:34:29 +00003201 // Ignore icmp instructions which are already being analyzed.
3202 if (const ICmpInst *ICI = dyn_cast<ICmpInst>(UserInst)) {
Chandler Carruthcdf47882014-03-09 03:16:01 +00003203 unsigned OtherIdx = !U.getOperandNo();
Dan Gohman45774ce2010-02-12 10:34:29 +00003204 Value *OtherOp = const_cast<Value *>(ICI->getOperand(OtherIdx));
Dan Gohmanafd6db92010-11-17 21:23:15 +00003205 if (SE.hasComputableLoopEvolution(SE.getSCEV(OtherOp), L))
Dan Gohman45774ce2010-02-12 10:34:29 +00003206 continue;
3207 }
3208
Matt Arsenault427a0fd2015-08-15 00:53:06 +00003209 std::pair<size_t, int64_t> P = getUse(
3210 S, LSRUse::Basic, MemAccessTy());
Jonas Paulsson7a794222016-08-17 13:24:19 +00003211 size_t LUIdx = P.first;
3212 int64_t Offset = P.second;
3213 LSRUse &LU = Uses[LUIdx];
3214 LSRFixup &LF = LU.getNewFixup();
3215 LF.UserInst = const_cast<Instruction *>(UserInst);
3216 LF.OperandValToReplace = U;
3217 LF.Offset = Offset;
Dan Gohmand006ab92010-04-07 22:27:08 +00003218 LU.AllFixupsOutsideLoop &= LF.isUseFullyOutsideLoop(L);
Dan Gohman14152082010-07-15 20:24:58 +00003219 if (!LU.WidestFixupType ||
3220 SE.getTypeSizeInBits(LU.WidestFixupType) <
3221 SE.getTypeSizeInBits(LF.OperandValToReplace->getType()))
3222 LU.WidestFixupType = LF.OperandValToReplace->getType();
Jonas Paulsson7a794222016-08-17 13:24:19 +00003223 InsertSupplementalFormula(US, LU, LUIdx);
Dan Gohman45774ce2010-02-12 10:34:29 +00003224 CountRegisters(LU.Formulae.back(), Uses.size() - 1);
3225 break;
3226 }
3227 }
3228 }
3229}
3230
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003231/// Split S into subexpressions which can be pulled out into separate
3232/// registers. If C is non-null, multiply each subexpression by C.
Andrew Trickc8037062012-07-17 05:30:37 +00003233///
3234/// Return remainder expression after factoring the subexpressions captured by
3235/// Ops. If Ops is complete, return NULL.
3236static const SCEV *CollectSubexprs(const SCEV *S, const SCEVConstant *C,
3237 SmallVectorImpl<const SCEV *> &Ops,
3238 const Loop *L,
3239 ScalarEvolution &SE,
3240 unsigned Depth = 0) {
3241 // Arbitrarily cap recursion to protect compile time.
3242 if (Depth >= 3)
3243 return S;
3244
Dan Gohman45774ce2010-02-12 10:34:29 +00003245 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
3246 // Break out add operands.
Craig Topper042a3922015-05-25 20:01:18 +00003247 for (const SCEV *S : Add->operands()) {
3248 const SCEV *Remainder = CollectSubexprs(S, C, Ops, L, SE, Depth+1);
Andrew Trickc8037062012-07-17 05:30:37 +00003249 if (Remainder)
3250 Ops.push_back(C ? SE.getMulExpr(C, Remainder) : Remainder);
3251 }
Craig Topperf40110f2014-04-25 05:29:35 +00003252 return nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +00003253 } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
3254 // Split a non-zero base out of an addrec.
Alexandros Lamprineas0ee3ec22016-11-09 08:53:07 +00003255 if (AR->getStart()->isZero() || !AR->isAffine())
Andrew Trickc8037062012-07-17 05:30:37 +00003256 return S;
3257
3258 const SCEV *Remainder = CollectSubexprs(AR->getStart(),
3259 C, Ops, L, SE, Depth+1);
3260 // Split the non-zero AddRec unless it is part of a nested recurrence that
3261 // does not pertain to this loop.
3262 if (Remainder && (AR->getLoop() == L || !isa<SCEVAddRecExpr>(Remainder))) {
3263 Ops.push_back(C ? SE.getMulExpr(C, Remainder) : Remainder);
Craig Topperf40110f2014-04-25 05:29:35 +00003264 Remainder = nullptr;
Andrew Trickc8037062012-07-17 05:30:37 +00003265 }
3266 if (Remainder != AR->getStart()) {
3267 if (!Remainder)
3268 Remainder = SE.getConstant(AR->getType(), 0);
3269 return SE.getAddRecExpr(Remainder,
3270 AR->getStepRecurrence(SE),
3271 AR->getLoop(),
3272 //FIXME: AR->getNoWrapFlags(SCEV::FlagNW)
3273 SCEV::FlagAnyWrap);
Dan Gohman45774ce2010-02-12 10:34:29 +00003274 }
3275 } else if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S)) {
3276 // Break (C * (a + b + c)) into C*a + C*b + C*c.
Andrew Trickc8037062012-07-17 05:30:37 +00003277 if (Mul->getNumOperands() != 2)
3278 return S;
3279 if (const SCEVConstant *Op0 =
3280 dyn_cast<SCEVConstant>(Mul->getOperand(0))) {
3281 C = C ? cast<SCEVConstant>(SE.getMulExpr(C, Op0)) : Op0;
3282 const SCEV *Remainder =
3283 CollectSubexprs(Mul->getOperand(1), C, Ops, L, SE, Depth+1);
3284 if (Remainder)
3285 Ops.push_back(SE.getMulExpr(C, Remainder));
Craig Topperf40110f2014-04-25 05:29:35 +00003286 return nullptr;
Andrew Trickc8037062012-07-17 05:30:37 +00003287 }
Dan Gohman45774ce2010-02-12 10:34:29 +00003288 }
Andrew Trickc8037062012-07-17 05:30:37 +00003289 return S;
Dan Gohman45774ce2010-02-12 10:34:29 +00003290}
3291
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003292/// \brief Helper function for LSRInstance::GenerateReassociations.
3293void LSRInstance::GenerateReassociationsImpl(LSRUse &LU, unsigned LUIdx,
3294 const Formula &Base,
3295 unsigned Depth, size_t Idx,
3296 bool IsScaledReg) {
3297 const SCEV *BaseReg = IsScaledReg ? Base.ScaledReg : Base.BaseRegs[Idx];
3298 SmallVector<const SCEV *, 8> AddOps;
3299 const SCEV *Remainder = CollectSubexprs(BaseReg, nullptr, AddOps, L, SE);
3300 if (Remainder)
3301 AddOps.push_back(Remainder);
3302
3303 if (AddOps.size() == 1)
3304 return;
3305
3306 for (SmallVectorImpl<const SCEV *>::const_iterator J = AddOps.begin(),
3307 JE = AddOps.end();
3308 J != JE; ++J) {
3309
3310 // Loop-variant "unknown" values are uninteresting; we won't be able to
3311 // do anything meaningful with them.
3312 if (isa<SCEVUnknown>(*J) && !SE.isLoopInvariant(*J, L))
3313 continue;
3314
3315 // Don't pull a constant into a register if the constant could be folded
3316 // into an immediate field.
3317 if (isAlwaysFoldable(TTI, SE, LU.MinOffset, LU.MaxOffset, LU.Kind,
3318 LU.AccessTy, *J, Base.getNumRegs() > 1))
3319 continue;
3320
3321 // Collect all operands except *J.
3322 SmallVector<const SCEV *, 8> InnerAddOps(
3323 ((const SmallVector<const SCEV *, 8> &)AddOps).begin(), J);
3324 InnerAddOps.append(std::next(J),
3325 ((const SmallVector<const SCEV *, 8> &)AddOps).end());
3326
3327 // Don't leave just a constant behind in a register if the constant could
3328 // be folded into an immediate field.
3329 if (InnerAddOps.size() == 1 &&
3330 isAlwaysFoldable(TTI, SE, LU.MinOffset, LU.MaxOffset, LU.Kind,
3331 LU.AccessTy, InnerAddOps[0], Base.getNumRegs() > 1))
3332 continue;
3333
3334 const SCEV *InnerSum = SE.getAddExpr(InnerAddOps);
3335 if (InnerSum->isZero())
3336 continue;
3337 Formula F = Base;
3338
3339 // Add the remaining pieces of the add back into the new formula.
3340 const SCEVConstant *InnerSumSC = dyn_cast<SCEVConstant>(InnerSum);
3341 if (InnerSumSC && SE.getTypeSizeInBits(InnerSumSC->getType()) <= 64 &&
3342 TTI.isLegalAddImmediate((uint64_t)F.UnfoldedOffset +
3343 InnerSumSC->getValue()->getZExtValue())) {
3344 F.UnfoldedOffset =
3345 (uint64_t)F.UnfoldedOffset + InnerSumSC->getValue()->getZExtValue();
3346 if (IsScaledReg)
3347 F.ScaledReg = nullptr;
3348 else
3349 F.BaseRegs.erase(F.BaseRegs.begin() + Idx);
3350 } else if (IsScaledReg)
3351 F.ScaledReg = InnerSum;
3352 else
3353 F.BaseRegs[Idx] = InnerSum;
3354
3355 // Add J as its own register, or an unfolded immediate.
3356 const SCEVConstant *SC = dyn_cast<SCEVConstant>(*J);
3357 if (SC && SE.getTypeSizeInBits(SC->getType()) <= 64 &&
3358 TTI.isLegalAddImmediate((uint64_t)F.UnfoldedOffset +
3359 SC->getValue()->getZExtValue()))
3360 F.UnfoldedOffset =
3361 (uint64_t)F.UnfoldedOffset + SC->getValue()->getZExtValue();
3362 else
3363 F.BaseRegs.push_back(*J);
3364 // We may have changed the number of register in base regs, adjust the
3365 // formula accordingly.
Sanjoy Das302bfd02015-08-16 18:22:43 +00003366 F.canonicalize();
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003367
3368 if (InsertFormula(LU, LUIdx, F))
3369 // If that formula hadn't been seen before, recurse to find more like
3370 // it.
3371 GenerateReassociations(LU, LUIdx, LU.Formulae.back(), Depth + 1);
3372 }
3373}
3374
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003375/// Split out subexpressions from adds and the bases of addrecs.
Dan Gohman45774ce2010-02-12 10:34:29 +00003376void LSRInstance::GenerateReassociations(LSRUse &LU, unsigned LUIdx,
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003377 Formula Base, unsigned Depth) {
3378 assert(Base.isCanonical() && "Input must be in the canonical form");
Dan Gohman45774ce2010-02-12 10:34:29 +00003379 // Arbitrarily cap recursion to protect compile time.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003380 if (Depth >= 3)
3381 return;
Dan Gohman45774ce2010-02-12 10:34:29 +00003382
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003383 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i)
3384 GenerateReassociationsImpl(LU, LUIdx, Base, Depth, i);
Dan Gohman45774ce2010-02-12 10:34:29 +00003385
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003386 if (Base.Scale == 1)
3387 GenerateReassociationsImpl(LU, LUIdx, Base, Depth,
3388 /* Idx */ -1, /* IsScaledReg */ true);
Dan Gohman45774ce2010-02-12 10:34:29 +00003389}
3390
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003391/// Generate a formula consisting of all of the loop-dominating registers added
3392/// into a single register.
Dan Gohman45774ce2010-02-12 10:34:29 +00003393void LSRInstance::GenerateCombinations(LSRUse &LU, unsigned LUIdx,
Dan Gohmane4e51a62010-02-14 18:51:39 +00003394 Formula Base) {
Dan Gohman8b0a4192010-03-01 17:49:51 +00003395 // This method is only interesting on a plurality of registers.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003396 if (Base.BaseRegs.size() + (Base.Scale == 1) <= 1)
3397 return;
Dan Gohman45774ce2010-02-12 10:34:29 +00003398
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003399 // Flatten the representation, i.e., reg1 + 1*reg2 => reg1 + reg2, before
3400 // processing the formula.
Sanjoy Das302bfd02015-08-16 18:22:43 +00003401 Base.unscale();
Dan Gohman45774ce2010-02-12 10:34:29 +00003402 Formula F = Base;
3403 F.BaseRegs.clear();
3404 SmallVector<const SCEV *, 4> Ops;
Craig Topper042a3922015-05-25 20:01:18 +00003405 for (const SCEV *BaseReg : Base.BaseRegs) {
Dan Gohman20d9ce22010-11-17 21:41:58 +00003406 if (SE.properlyDominates(BaseReg, L->getHeader()) &&
Dan Gohmanafd6db92010-11-17 21:23:15 +00003407 !SE.hasComputableLoopEvolution(BaseReg, L))
Dan Gohman45774ce2010-02-12 10:34:29 +00003408 Ops.push_back(BaseReg);
3409 else
3410 F.BaseRegs.push_back(BaseReg);
3411 }
3412 if (Ops.size() > 1) {
Dan Gohmanbb7d5222010-02-14 18:50:49 +00003413 const SCEV *Sum = SE.getAddExpr(Ops);
3414 // TODO: If Sum is zero, it probably means ScalarEvolution missed an
3415 // opportunity to fold something. For now, just ignore such cases
Dan Gohman8b0a4192010-03-01 17:49:51 +00003416 // rather than proceed with zero in a register.
Dan Gohmanbb7d5222010-02-14 18:50:49 +00003417 if (!Sum->isZero()) {
3418 F.BaseRegs.push_back(Sum);
Sanjoy Das302bfd02015-08-16 18:22:43 +00003419 F.canonicalize();
Dan Gohmanbb7d5222010-02-14 18:50:49 +00003420 (void)InsertFormula(LU, LUIdx, F);
3421 }
Dan Gohman45774ce2010-02-12 10:34:29 +00003422 }
3423}
3424
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003425/// \brief Helper function for LSRInstance::GenerateSymbolicOffsets.
3426void LSRInstance::GenerateSymbolicOffsetsImpl(LSRUse &LU, unsigned LUIdx,
3427 const Formula &Base, size_t Idx,
3428 bool IsScaledReg) {
3429 const SCEV *G = IsScaledReg ? Base.ScaledReg : Base.BaseRegs[Idx];
3430 GlobalValue *GV = ExtractSymbol(G, SE);
3431 if (G->isZero() || !GV)
3432 return;
3433 Formula F = Base;
3434 F.BaseGV = GV;
3435 if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy, F))
3436 return;
3437 if (IsScaledReg)
3438 F.ScaledReg = G;
3439 else
3440 F.BaseRegs[Idx] = G;
3441 (void)InsertFormula(LU, LUIdx, F);
3442}
3443
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003444/// Generate reuse formulae using symbolic offsets.
Dan Gohman45774ce2010-02-12 10:34:29 +00003445void LSRInstance::GenerateSymbolicOffsets(LSRUse &LU, unsigned LUIdx,
3446 Formula Base) {
3447 // We can't add a symbolic offset if the address already contains one.
Chandler Carruth6e479322013-01-07 15:04:40 +00003448 if (Base.BaseGV) return;
Dan Gohman45774ce2010-02-12 10:34:29 +00003449
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003450 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i)
3451 GenerateSymbolicOffsetsImpl(LU, LUIdx, Base, i);
3452 if (Base.Scale == 1)
3453 GenerateSymbolicOffsetsImpl(LU, LUIdx, Base, /* Idx */ -1,
3454 /* IsScaledReg */ true);
3455}
3456
3457/// \brief Helper function for LSRInstance::GenerateConstantOffsets.
3458void LSRInstance::GenerateConstantOffsetsImpl(
3459 LSRUse &LU, unsigned LUIdx, const Formula &Base,
3460 const SmallVectorImpl<int64_t> &Worklist, size_t Idx, bool IsScaledReg) {
3461 const SCEV *G = IsScaledReg ? Base.ScaledReg : Base.BaseRegs[Idx];
Craig Topper042a3922015-05-25 20:01:18 +00003462 for (int64_t Offset : Worklist) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003463 Formula F = Base;
Craig Topper042a3922015-05-25 20:01:18 +00003464 F.BaseOffset = (uint64_t)Base.BaseOffset - Offset;
3465 if (isLegalUse(TTI, LU.MinOffset - Offset, LU.MaxOffset - Offset, LU.Kind,
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003466 LU.AccessTy, F)) {
3467 // Add the offset to the base register.
Craig Topper042a3922015-05-25 20:01:18 +00003468 const SCEV *NewG = SE.getAddExpr(SE.getConstant(G->getType(), Offset), G);
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003469 // If it cancelled out, drop the base register, otherwise update it.
3470 if (NewG->isZero()) {
3471 if (IsScaledReg) {
3472 F.Scale = 0;
3473 F.ScaledReg = nullptr;
3474 } else
Sanjoy Das302bfd02015-08-16 18:22:43 +00003475 F.deleteBaseReg(F.BaseRegs[Idx]);
3476 F.canonicalize();
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003477 } else if (IsScaledReg)
3478 F.ScaledReg = NewG;
3479 else
3480 F.BaseRegs[Idx] = NewG;
3481
3482 (void)InsertFormula(LU, LUIdx, F);
3483 }
Dan Gohman45774ce2010-02-12 10:34:29 +00003484 }
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003485
3486 int64_t Imm = ExtractImmediate(G, SE);
3487 if (G->isZero() || Imm == 0)
3488 return;
3489 Formula F = Base;
3490 F.BaseOffset = (uint64_t)F.BaseOffset + Imm;
3491 if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy, F))
3492 return;
3493 if (IsScaledReg)
3494 F.ScaledReg = G;
3495 else
3496 F.BaseRegs[Idx] = G;
3497 (void)InsertFormula(LU, LUIdx, F);
Dan Gohman45774ce2010-02-12 10:34:29 +00003498}
3499
3500/// GenerateConstantOffsets - Generate reuse formulae using symbolic offsets.
3501void LSRInstance::GenerateConstantOffsets(LSRUse &LU, unsigned LUIdx,
3502 Formula Base) {
3503 // TODO: For now, just add the min and max offset, because it usually isn't
3504 // worthwhile looking at everything inbetween.
Dan Gohman4afd4122010-07-15 15:14:45 +00003505 SmallVector<int64_t, 2> Worklist;
Dan Gohman45774ce2010-02-12 10:34:29 +00003506 Worklist.push_back(LU.MinOffset);
3507 if (LU.MaxOffset != LU.MinOffset)
3508 Worklist.push_back(LU.MaxOffset);
3509
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003510 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i)
3511 GenerateConstantOffsetsImpl(LU, LUIdx, Base, Worklist, i);
3512 if (Base.Scale == 1)
3513 GenerateConstantOffsetsImpl(LU, LUIdx, Base, Worklist, /* Idx */ -1,
3514 /* IsScaledReg */ true);
Dan Gohman45774ce2010-02-12 10:34:29 +00003515}
3516
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003517/// For ICmpZero, check to see if we can scale up the comparison. For example, x
3518/// == y -> x*c == y*c.
Dan Gohman45774ce2010-02-12 10:34:29 +00003519void LSRInstance::GenerateICmpZeroScales(LSRUse &LU, unsigned LUIdx,
3520 Formula Base) {
3521 if (LU.Kind != LSRUse::ICmpZero) return;
3522
3523 // Determine the integer type for the base formula.
Chris Lattner229907c2011-07-18 04:54:35 +00003524 Type *IntTy = Base.getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00003525 if (!IntTy) return;
3526 if (SE.getTypeSizeInBits(IntTy) > 64) return;
3527
3528 // Don't do this if there is more than one offset.
3529 if (LU.MinOffset != LU.MaxOffset) return;
3530
Chandler Carruth6e479322013-01-07 15:04:40 +00003531 assert(!Base.BaseGV && "ICmpZero use is not legal!");
Dan Gohman45774ce2010-02-12 10:34:29 +00003532
3533 // Check each interesting stride.
Craig Topper042a3922015-05-25 20:01:18 +00003534 for (int64_t Factor : Factors) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003535 // Check that the multiplication doesn't overflow.
Chandler Carruth6e479322013-01-07 15:04:40 +00003536 if (Base.BaseOffset == INT64_MIN && Factor == -1)
Dan Gohman5f10d6c2010-02-17 00:41:53 +00003537 continue;
Chandler Carruth6e479322013-01-07 15:04:40 +00003538 int64_t NewBaseOffset = (uint64_t)Base.BaseOffset * Factor;
3539 if (NewBaseOffset / Factor != Base.BaseOffset)
Dan Gohman45774ce2010-02-12 10:34:29 +00003540 continue;
Andrew Trick429e9ed2014-02-26 16:31:56 +00003541 // If the offset will be truncated at this use, check that it is in bounds.
3542 if (!IntTy->isPointerTy() &&
3543 !ConstantInt::isValueValidForType(IntTy, NewBaseOffset))
3544 continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003545
3546 // Check that multiplying with the use offset doesn't overflow.
3547 int64_t Offset = LU.MinOffset;
Dan Gohman5f10d6c2010-02-17 00:41:53 +00003548 if (Offset == INT64_MIN && Factor == -1)
3549 continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003550 Offset = (uint64_t)Offset * Factor;
Dan Gohman13ac3b22010-02-17 00:42:19 +00003551 if (Offset / Factor != LU.MinOffset)
Dan Gohman45774ce2010-02-12 10:34:29 +00003552 continue;
Andrew Trick429e9ed2014-02-26 16:31:56 +00003553 // If the offset will be truncated at this use, check that it is in bounds.
3554 if (!IntTy->isPointerTy() &&
3555 !ConstantInt::isValueValidForType(IntTy, Offset))
3556 continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003557
Dan Gohman963b1c12010-06-24 16:57:52 +00003558 Formula F = Base;
Chandler Carruth6e479322013-01-07 15:04:40 +00003559 F.BaseOffset = NewBaseOffset;
Dan Gohman963b1c12010-06-24 16:57:52 +00003560
Dan Gohman45774ce2010-02-12 10:34:29 +00003561 // Check that this scale is legal.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003562 if (!isLegalUse(TTI, Offset, Offset, LU.Kind, LU.AccessTy, F))
Dan Gohman45774ce2010-02-12 10:34:29 +00003563 continue;
3564
3565 // Compensate for the use having MinOffset built into it.
Chandler Carruth6e479322013-01-07 15:04:40 +00003566 F.BaseOffset = (uint64_t)F.BaseOffset + Offset - LU.MinOffset;
Dan Gohman45774ce2010-02-12 10:34:29 +00003567
Dan Gohman1d2ded72010-05-03 22:09:21 +00003568 const SCEV *FactorS = SE.getConstant(IntTy, Factor);
Dan Gohman45774ce2010-02-12 10:34:29 +00003569
3570 // Check that multiplying with each base register doesn't overflow.
3571 for (size_t i = 0, e = F.BaseRegs.size(); i != e; ++i) {
3572 F.BaseRegs[i] = SE.getMulExpr(F.BaseRegs[i], FactorS);
Dan Gohman4eebb942010-02-19 19:35:48 +00003573 if (getExactSDiv(F.BaseRegs[i], FactorS, SE) != Base.BaseRegs[i])
Dan Gohman45774ce2010-02-12 10:34:29 +00003574 goto next;
3575 }
3576
3577 // Check that multiplying with the scaled register doesn't overflow.
3578 if (F.ScaledReg) {
3579 F.ScaledReg = SE.getMulExpr(F.ScaledReg, FactorS);
Dan Gohman4eebb942010-02-19 19:35:48 +00003580 if (getExactSDiv(F.ScaledReg, FactorS, SE) != Base.ScaledReg)
Dan Gohman45774ce2010-02-12 10:34:29 +00003581 continue;
3582 }
3583
Dan Gohman6136e942011-05-03 00:46:49 +00003584 // Check that multiplying with the unfolded offset doesn't overflow.
3585 if (F.UnfoldedOffset != 0) {
Dan Gohman6c4a3192011-05-23 21:07:39 +00003586 if (F.UnfoldedOffset == INT64_MIN && Factor == -1)
3587 continue;
Dan Gohman6136e942011-05-03 00:46:49 +00003588 F.UnfoldedOffset = (uint64_t)F.UnfoldedOffset * Factor;
3589 if (F.UnfoldedOffset / Factor != Base.UnfoldedOffset)
3590 continue;
Andrew Trick429e9ed2014-02-26 16:31:56 +00003591 // If the offset will be truncated, check that it is in bounds.
3592 if (!IntTy->isPointerTy() &&
3593 !ConstantInt::isValueValidForType(IntTy, F.UnfoldedOffset))
3594 continue;
Dan Gohman6136e942011-05-03 00:46:49 +00003595 }
3596
Dan Gohman45774ce2010-02-12 10:34:29 +00003597 // If we make it here and it's legal, add it.
3598 (void)InsertFormula(LU, LUIdx, F);
3599 next:;
3600 }
3601}
3602
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003603/// Generate stride factor reuse formulae by making use of scaled-offset address
3604/// modes, for example.
Dan Gohmanab5fb7f2010-05-20 19:44:23 +00003605void LSRInstance::GenerateScales(LSRUse &LU, unsigned LUIdx, Formula Base) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003606 // Determine the integer type for the base formula.
Chris Lattner229907c2011-07-18 04:54:35 +00003607 Type *IntTy = Base.getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00003608 if (!IntTy) return;
3609
3610 // If this Formula already has a scaled register, we can't add another one.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003611 // Try to unscale the formula to generate a better scale.
Sanjoy Das302bfd02015-08-16 18:22:43 +00003612 if (Base.Scale != 0 && !Base.unscale())
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003613 return;
3614
Sanjoy Das302bfd02015-08-16 18:22:43 +00003615 assert(Base.Scale == 0 && "unscale did not did its job!");
Dan Gohman45774ce2010-02-12 10:34:29 +00003616
3617 // Check each interesting stride.
Craig Topper042a3922015-05-25 20:01:18 +00003618 for (int64_t Factor : Factors) {
Chandler Carruth6e479322013-01-07 15:04:40 +00003619 Base.Scale = Factor;
3620 Base.HasBaseReg = Base.BaseRegs.size() > 1;
Dan Gohman45774ce2010-02-12 10:34:29 +00003621 // Check whether this scale is going to be legal.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003622 if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy,
3623 Base)) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003624 // As a special-case, handle special out-of-loop Basic users specially.
3625 // TODO: Reconsider this special case.
3626 if (LU.Kind == LSRUse::Basic &&
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003627 isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LSRUse::Special,
3628 LU.AccessTy, Base) &&
Dan Gohman45774ce2010-02-12 10:34:29 +00003629 LU.AllFixupsOutsideLoop)
3630 LU.Kind = LSRUse::Special;
3631 else
3632 continue;
3633 }
3634 // For an ICmpZero, negating a solitary base register won't lead to
3635 // new solutions.
3636 if (LU.Kind == LSRUse::ICmpZero &&
Chandler Carruth6e479322013-01-07 15:04:40 +00003637 !Base.HasBaseReg && Base.BaseOffset == 0 && !Base.BaseGV)
Dan Gohman45774ce2010-02-12 10:34:29 +00003638 continue;
3639 // For each addrec base reg, apply the scale, if possible.
3640 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i)
3641 if (const SCEVAddRecExpr *AR =
3642 dyn_cast<SCEVAddRecExpr>(Base.BaseRegs[i])) {
Dan Gohman1d2ded72010-05-03 22:09:21 +00003643 const SCEV *FactorS = SE.getConstant(IntTy, Factor);
Dan Gohman45774ce2010-02-12 10:34:29 +00003644 if (FactorS->isZero())
3645 continue;
3646 // Divide out the factor, ignoring high bits, since we'll be
3647 // scaling the value back up in the end.
Dan Gohman4eebb942010-02-19 19:35:48 +00003648 if (const SCEV *Quotient = getExactSDiv(AR, FactorS, SE, true)) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003649 // TODO: This could be optimized to avoid all the copying.
3650 Formula F = Base;
3651 F.ScaledReg = Quotient;
Sanjoy Das302bfd02015-08-16 18:22:43 +00003652 F.deleteBaseReg(F.BaseRegs[i]);
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003653 // The canonical representation of 1*reg is reg, which is already in
3654 // Base. In that case, do not try to insert the formula, it will be
3655 // rejected anyway.
3656 if (F.Scale == 1 && F.BaseRegs.empty())
3657 continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003658 (void)InsertFormula(LU, LUIdx, F);
3659 }
3660 }
3661 }
3662}
3663
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003664/// Generate reuse formulae from different IV types.
Dan Gohmanab5fb7f2010-05-20 19:44:23 +00003665void LSRInstance::GenerateTruncates(LSRUse &LU, unsigned LUIdx, Formula Base) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003666 // Don't bother truncating symbolic values.
Chandler Carruth6e479322013-01-07 15:04:40 +00003667 if (Base.BaseGV) return;
Dan Gohman45774ce2010-02-12 10:34:29 +00003668
3669 // Determine the integer type for the base formula.
Chris Lattner229907c2011-07-18 04:54:35 +00003670 Type *DstTy = Base.getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00003671 if (!DstTy) return;
3672 DstTy = SE.getEffectiveSCEVType(DstTy);
3673
Craig Topper042a3922015-05-25 20:01:18 +00003674 for (Type *SrcTy : Types) {
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003675 if (SrcTy != DstTy && TTI.isTruncateFree(SrcTy, DstTy)) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003676 Formula F = Base;
3677
Craig Topper042a3922015-05-25 20:01:18 +00003678 if (F.ScaledReg) F.ScaledReg = SE.getAnyExtendExpr(F.ScaledReg, SrcTy);
3679 for (const SCEV *&BaseReg : F.BaseRegs)
3680 BaseReg = SE.getAnyExtendExpr(BaseReg, SrcTy);
Dan Gohman45774ce2010-02-12 10:34:29 +00003681
3682 // TODO: This assumes we've done basic processing on all uses and
3683 // have an idea what the register usage is.
3684 if (!F.hasRegsUsedByUsesOtherThan(LUIdx, RegUses))
3685 continue;
3686
3687 (void)InsertFormula(LU, LUIdx, F);
3688 }
3689 }
3690}
3691
3692namespace {
3693
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003694/// Helper class for GenerateCrossUseConstantOffsets. It's used to defer
3695/// modifications so that the search phase doesn't have to worry about the data
3696/// structures moving underneath it.
Dan Gohman45774ce2010-02-12 10:34:29 +00003697struct WorkItem {
3698 size_t LUIdx;
3699 int64_t Imm;
3700 const SCEV *OrigReg;
3701
3702 WorkItem(size_t LI, int64_t I, const SCEV *R)
3703 : LUIdx(LI), Imm(I), OrigReg(R) {}
3704
3705 void print(raw_ostream &OS) const;
3706 void dump() const;
3707};
3708
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +00003709} // end anonymous namespace
Dan Gohman45774ce2010-02-12 10:34:29 +00003710
3711void WorkItem::print(raw_ostream &OS) const {
3712 OS << "in formulae referencing " << *OrigReg << " in use " << LUIdx
3713 << " , add offset " << Imm;
3714}
3715
Matthias Braun8c209aa2017-01-28 02:02:38 +00003716#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
3717LLVM_DUMP_METHOD void WorkItem::dump() const {
Dan Gohman45774ce2010-02-12 10:34:29 +00003718 print(errs()); errs() << '\n';
3719}
Matthias Braun8c209aa2017-01-28 02:02:38 +00003720#endif
Dan Gohman45774ce2010-02-12 10:34:29 +00003721
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003722/// Look for registers which are a constant distance apart and try to form reuse
3723/// opportunities between them.
Dan Gohman45774ce2010-02-12 10:34:29 +00003724void LSRInstance::GenerateCrossUseConstantOffsets() {
3725 // Group the registers by their value without any added constant offset.
3726 typedef std::map<int64_t, const SCEV *> ImmMapTy;
Craig Topper042a3922015-05-25 20:01:18 +00003727 DenseMap<const SCEV *, ImmMapTy> Map;
Dan Gohman45774ce2010-02-12 10:34:29 +00003728 DenseMap<const SCEV *, SmallBitVector> UsedByIndicesMap;
3729 SmallVector<const SCEV *, 8> Sequence;
Craig Topper042a3922015-05-25 20:01:18 +00003730 for (const SCEV *Use : RegUses) {
3731 const SCEV *Reg = Use; // Make a copy for ExtractImmediate to modify.
Dan Gohman45774ce2010-02-12 10:34:29 +00003732 int64_t Imm = ExtractImmediate(Reg, SE);
Craig Topper042a3922015-05-25 20:01:18 +00003733 auto Pair = Map.insert(std::make_pair(Reg, ImmMapTy()));
Dan Gohman45774ce2010-02-12 10:34:29 +00003734 if (Pair.second)
3735 Sequence.push_back(Reg);
Craig Topper042a3922015-05-25 20:01:18 +00003736 Pair.first->second.insert(std::make_pair(Imm, Use));
3737 UsedByIndicesMap[Reg] |= RegUses.getUsedByIndices(Use);
Dan Gohman45774ce2010-02-12 10:34:29 +00003738 }
3739
3740 // Now examine each set of registers with the same base value. Build up
3741 // a list of work to do and do the work in a separate step so that we're
3742 // not adding formulae and register counts while we're searching.
Dan Gohman110ed642010-09-01 01:45:53 +00003743 SmallVector<WorkItem, 32> WorkItems;
3744 SmallSet<std::pair<size_t, int64_t>, 32> UniqueItems;
Craig Topper042a3922015-05-25 20:01:18 +00003745 for (const SCEV *Reg : Sequence) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003746 const ImmMapTy &Imms = Map.find(Reg)->second;
3747
Dan Gohman363f8472010-02-12 19:20:37 +00003748 // It's not worthwhile looking for reuse if there's only one offset.
3749 if (Imms.size() == 1)
3750 continue;
3751
Dan Gohman45774ce2010-02-12 10:34:29 +00003752 DEBUG(dbgs() << "Generating cross-use offsets for " << *Reg << ':';
Craig Topper042a3922015-05-25 20:01:18 +00003753 for (const auto &Entry : Imms)
3754 dbgs() << ' ' << Entry.first;
Dan Gohman45774ce2010-02-12 10:34:29 +00003755 dbgs() << '\n');
3756
3757 // Examine each offset.
3758 for (ImmMapTy::const_iterator J = Imms.begin(), JE = Imms.end();
3759 J != JE; ++J) {
3760 const SCEV *OrigReg = J->second;
3761
3762 int64_t JImm = J->first;
3763 const SmallBitVector &UsedByIndices = RegUses.getUsedByIndices(OrigReg);
3764
3765 if (!isa<SCEVConstant>(OrigReg) &&
3766 UsedByIndicesMap[Reg].count() == 1) {
3767 DEBUG(dbgs() << "Skipping cross-use reuse for " << *OrigReg << '\n');
3768 continue;
3769 }
3770
3771 // Conservatively examine offsets between this orig reg a few selected
3772 // other orig regs.
3773 ImmMapTy::const_iterator OtherImms[] = {
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00003774 Imms.begin(), std::prev(Imms.end()),
3775 Imms.lower_bound((Imms.begin()->first + std::prev(Imms.end())->first) /
3776 2)
Dan Gohman45774ce2010-02-12 10:34:29 +00003777 };
3778 for (size_t i = 0, e = array_lengthof(OtherImms); i != e; ++i) {
3779 ImmMapTy::const_iterator M = OtherImms[i];
Dan Gohman363f8472010-02-12 19:20:37 +00003780 if (M == J || M == JE) continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003781
3782 // Compute the difference between the two.
3783 int64_t Imm = (uint64_t)JImm - M->first;
3784 for (int LUIdx = UsedByIndices.find_first(); LUIdx != -1;
Dan Gohman110ed642010-09-01 01:45:53 +00003785 LUIdx = UsedByIndices.find_next(LUIdx))
Dan Gohman45774ce2010-02-12 10:34:29 +00003786 // Make a memo of this use, offset, and register tuple.
David Blaikie70573dc2014-11-19 07:49:26 +00003787 if (UniqueItems.insert(std::make_pair(LUIdx, Imm)).second)
Dan Gohman110ed642010-09-01 01:45:53 +00003788 WorkItems.push_back(WorkItem(LUIdx, Imm, OrigReg));
Evan Cheng85a9f432009-11-12 07:35:05 +00003789 }
3790 }
3791 }
3792
Dan Gohman45774ce2010-02-12 10:34:29 +00003793 Map.clear();
3794 Sequence.clear();
3795 UsedByIndicesMap.clear();
Dan Gohman110ed642010-09-01 01:45:53 +00003796 UniqueItems.clear();
Dan Gohman45774ce2010-02-12 10:34:29 +00003797
3798 // Now iterate through the worklist and add new formulae.
Craig Topper042a3922015-05-25 20:01:18 +00003799 for (const WorkItem &WI : WorkItems) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003800 size_t LUIdx = WI.LUIdx;
3801 LSRUse &LU = Uses[LUIdx];
3802 int64_t Imm = WI.Imm;
3803 const SCEV *OrigReg = WI.OrigReg;
3804
Chris Lattner229907c2011-07-18 04:54:35 +00003805 Type *IntTy = SE.getEffectiveSCEVType(OrigReg->getType());
Dan Gohman45774ce2010-02-12 10:34:29 +00003806 const SCEV *NegImmS = SE.getSCEV(ConstantInt::get(IntTy, -(uint64_t)Imm));
3807 unsigned BitWidth = SE.getTypeSizeInBits(IntTy);
3808
Dan Gohman8b0a4192010-03-01 17:49:51 +00003809 // TODO: Use a more targeted data structure.
Dan Gohman45774ce2010-02-12 10:34:29 +00003810 for (size_t L = 0, LE = LU.Formulae.size(); L != LE; ++L) {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003811 Formula F = LU.Formulae[L];
3812 // FIXME: The code for the scaled and unscaled registers looks
3813 // very similar but slightly different. Investigate if they
3814 // could be merged. That way, we would not have to unscale the
3815 // Formula.
Sanjoy Das302bfd02015-08-16 18:22:43 +00003816 F.unscale();
Dan Gohman45774ce2010-02-12 10:34:29 +00003817 // Use the immediate in the scaled register.
3818 if (F.ScaledReg == OrigReg) {
Chandler Carruth6e479322013-01-07 15:04:40 +00003819 int64_t Offset = (uint64_t)F.BaseOffset + Imm * (uint64_t)F.Scale;
Dan Gohman45774ce2010-02-12 10:34:29 +00003820 // Don't create 50 + reg(-50).
3821 if (F.referencesReg(SE.getSCEV(
Chandler Carruth6e479322013-01-07 15:04:40 +00003822 ConstantInt::get(IntTy, -(uint64_t)Offset))))
Dan Gohman45774ce2010-02-12 10:34:29 +00003823 continue;
3824 Formula NewF = F;
Chandler Carruth6e479322013-01-07 15:04:40 +00003825 NewF.BaseOffset = Offset;
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003826 if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy,
3827 NewF))
Dan Gohman45774ce2010-02-12 10:34:29 +00003828 continue;
3829 NewF.ScaledReg = SE.getAddExpr(NegImmS, NewF.ScaledReg);
3830
3831 // If the new scale is a constant in a register, and adding the constant
3832 // value to the immediate would produce a value closer to zero than the
3833 // immediate itself, then the formula isn't worthwhile.
3834 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(NewF.ScaledReg))
Sanjoy Das0de2fec2015-12-17 20:28:46 +00003835 if (C->getValue()->isNegative() != (NewF.BaseOffset < 0) &&
3836 (C->getAPInt().abs() * APInt(BitWidth, F.Scale))
3837 .ule(std::abs(NewF.BaseOffset)))
Dan Gohman45774ce2010-02-12 10:34:29 +00003838 continue;
3839
3840 // OK, looks good.
Sanjoy Das302bfd02015-08-16 18:22:43 +00003841 NewF.canonicalize();
Dan Gohman45774ce2010-02-12 10:34:29 +00003842 (void)InsertFormula(LU, LUIdx, NewF);
3843 } else {
3844 // Use the immediate in a base register.
3845 for (size_t N = 0, NE = F.BaseRegs.size(); N != NE; ++N) {
3846 const SCEV *BaseReg = F.BaseRegs[N];
3847 if (BaseReg != OrigReg)
3848 continue;
3849 Formula NewF = F;
Chandler Carruth6e479322013-01-07 15:04:40 +00003850 NewF.BaseOffset = (uint64_t)NewF.BaseOffset + Imm;
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003851 if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset,
3852 LU.Kind, LU.AccessTy, NewF)) {
3853 if (!TTI.isLegalAddImmediate((uint64_t)NewF.UnfoldedOffset + Imm))
Dan Gohman6136e942011-05-03 00:46:49 +00003854 continue;
3855 NewF = F;
3856 NewF.UnfoldedOffset = (uint64_t)NewF.UnfoldedOffset + Imm;
3857 }
Dan Gohman45774ce2010-02-12 10:34:29 +00003858 NewF.BaseRegs[N] = SE.getAddExpr(NegImmS, BaseReg);
3859
3860 // If the new formula has a constant in a register, and adding the
3861 // constant value to the immediate would produce a value closer to
3862 // zero than the immediate itself, then the formula isn't worthwhile.
Craig Topper10949ae2015-05-23 08:45:10 +00003863 for (const SCEV *NewReg : NewF.BaseRegs)
3864 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(NewReg))
Sanjoy Das0de2fec2015-12-17 20:28:46 +00003865 if ((C->getAPInt() + NewF.BaseOffset)
3866 .abs()
3867 .slt(std::abs(NewF.BaseOffset)) &&
3868 (C->getAPInt() + NewF.BaseOffset).countTrailingZeros() >=
3869 countTrailingZeros<uint64_t>(NewF.BaseOffset))
Dan Gohman45774ce2010-02-12 10:34:29 +00003870 goto skip_formula;
3871
3872 // Ok, looks good.
Sanjoy Das302bfd02015-08-16 18:22:43 +00003873 NewF.canonicalize();
Dan Gohman45774ce2010-02-12 10:34:29 +00003874 (void)InsertFormula(LU, LUIdx, NewF);
3875 break;
3876 skip_formula:;
3877 }
3878 }
3879 }
3880 }
Dale Johannesen02cb2bf2009-05-11 17:15:42 +00003881}
3882
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003883/// Generate formulae for each use.
Dan Gohman45774ce2010-02-12 10:34:29 +00003884void
3885LSRInstance::GenerateAllReuseFormulae() {
Dan Gohman521efe62010-02-16 01:42:53 +00003886 // This is split into multiple loops so that hasRegsUsedByUsesOtherThan
Dan Gohman45774ce2010-02-12 10:34:29 +00003887 // queries are more precise.
3888 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
3889 LSRUse &LU = Uses[LUIdx];
3890 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3891 GenerateReassociations(LU, LUIdx, LU.Formulae[i]);
3892 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3893 GenerateCombinations(LU, LUIdx, LU.Formulae[i]);
3894 }
3895 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
3896 LSRUse &LU = Uses[LUIdx];
3897 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3898 GenerateSymbolicOffsets(LU, LUIdx, LU.Formulae[i]);
3899 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3900 GenerateConstantOffsets(LU, LUIdx, LU.Formulae[i]);
3901 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3902 GenerateICmpZeroScales(LU, LUIdx, LU.Formulae[i]);
3903 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3904 GenerateScales(LU, LUIdx, LU.Formulae[i]);
Dan Gohman521efe62010-02-16 01:42:53 +00003905 }
3906 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
3907 LSRUse &LU = Uses[LUIdx];
Dan Gohman45774ce2010-02-12 10:34:29 +00003908 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
3909 GenerateTruncates(LU, LUIdx, LU.Formulae[i]);
3910 }
3911
3912 GenerateCrossUseConstantOffsets();
Dan Gohmanbf673e02010-08-29 15:21:38 +00003913
3914 DEBUG(dbgs() << "\n"
3915 "After generating reuse formulae:\n";
3916 print_uses(dbgs()));
Dan Gohman45774ce2010-02-12 10:34:29 +00003917}
3918
Dan Gohman1b61fd92010-10-07 23:43:09 +00003919/// If there are multiple formulae with the same set of registers used
Dan Gohman45774ce2010-02-12 10:34:29 +00003920/// by other uses, pick the best one and delete the others.
3921void LSRInstance::FilterOutUndesirableDedicatedRegisters() {
Dan Gohman5947e162010-10-07 23:52:18 +00003922 DenseSet<const SCEV *> VisitedRegs;
3923 SmallPtrSet<const SCEV *, 16> Regs;
Andrew Trick5df90962011-12-06 03:13:31 +00003924 SmallPtrSet<const SCEV *, 16> LoserRegs;
Dan Gohman45774ce2010-02-12 10:34:29 +00003925#ifndef NDEBUG
Dan Gohman4c4043c2010-05-20 20:05:31 +00003926 bool ChangedFormulae = false;
Dan Gohman45774ce2010-02-12 10:34:29 +00003927#endif
3928
3929 // Collect the best formula for each unique set of shared registers. This
3930 // is reset for each use.
Preston Gurd25c3b6a2013-02-01 20:41:27 +00003931 typedef DenseMap<SmallVector<const SCEV *, 4>, size_t, UniquifierDenseMapInfo>
Dan Gohman45774ce2010-02-12 10:34:29 +00003932 BestFormulaeTy;
3933 BestFormulaeTy BestFormulae;
3934
3935 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
3936 LSRUse &LU = Uses[LUIdx];
Dan Gohmanab5fb7f2010-05-20 19:44:23 +00003937 DEBUG(dbgs() << "Filtering for use "; LU.print(dbgs()); dbgs() << '\n');
Dan Gohman45774ce2010-02-12 10:34:29 +00003938
Dan Gohman4cf99b52010-05-18 23:42:37 +00003939 bool Any = false;
Dan Gohman45774ce2010-02-12 10:34:29 +00003940 for (size_t FIdx = 0, NumForms = LU.Formulae.size();
3941 FIdx != NumForms; ++FIdx) {
3942 Formula &F = LU.Formulae[FIdx];
3943
Andrew Trick5df90962011-12-06 03:13:31 +00003944 // Some formulas are instant losers. For example, they may depend on
3945 // nonexistent AddRecs from other loops. These need to be filtered
3946 // immediately, otherwise heuristics could choose them over others leading
3947 // to an unsatisfactory solution. Passing LoserRegs into RateFormula here
3948 // avoids the need to recompute this information across formulae using the
3949 // same bad AddRec. Passing LoserRegs is also essential unless we remove
3950 // the corresponding bad register from the Regs set.
3951 Cost CostF;
3952 Regs.clear();
Jonas Paulsson7a794222016-08-17 13:24:19 +00003953 CostF.RateFormula(TTI, F, Regs, VisitedRegs, L, SE, DT, LU, &LoserRegs);
Andrew Trick5df90962011-12-06 03:13:31 +00003954 if (CostF.isLoser()) {
3955 // During initial formula generation, undesirable formulae are generated
3956 // by uses within other loops that have some non-trivial address mode or
3957 // use the postinc form of the IV. LSR needs to provide these formulae
3958 // as the basis of rediscovering the desired formula that uses an AddRec
3959 // corresponding to the existing phi. Once all formulae have been
3960 // generated, these initial losers may be pruned.
3961 DEBUG(dbgs() << " Filtering loser "; F.print(dbgs());
3962 dbgs() << "\n");
Dan Gohman45774ce2010-02-12 10:34:29 +00003963 }
Andrew Trick5df90962011-12-06 03:13:31 +00003964 else {
Preston Gurd25c3b6a2013-02-01 20:41:27 +00003965 SmallVector<const SCEV *, 4> Key;
Craig Topper77b99412015-05-23 08:01:41 +00003966 for (const SCEV *Reg : F.BaseRegs) {
Andrew Trick5df90962011-12-06 03:13:31 +00003967 if (RegUses.isRegUsedByUsesOtherThan(Reg, LUIdx))
3968 Key.push_back(Reg);
3969 }
3970 if (F.ScaledReg &&
3971 RegUses.isRegUsedByUsesOtherThan(F.ScaledReg, LUIdx))
3972 Key.push_back(F.ScaledReg);
3973 // Unstable sort by host order ok, because this is only used for
3974 // uniquifying.
3975 std::sort(Key.begin(), Key.end());
Dan Gohman45774ce2010-02-12 10:34:29 +00003976
Andrew Trick5df90962011-12-06 03:13:31 +00003977 std::pair<BestFormulaeTy::const_iterator, bool> P =
3978 BestFormulae.insert(std::make_pair(Key, FIdx));
3979 if (P.second)
3980 continue;
3981
Dan Gohman45774ce2010-02-12 10:34:29 +00003982 Formula &Best = LU.Formulae[P.first->second];
Dan Gohman5947e162010-10-07 23:52:18 +00003983
Dan Gohman5947e162010-10-07 23:52:18 +00003984 Cost CostBest;
Dan Gohman5947e162010-10-07 23:52:18 +00003985 Regs.clear();
Jonas Paulsson7a794222016-08-17 13:24:19 +00003986 CostBest.RateFormula(TTI, Best, Regs, VisitedRegs, L, SE, DT, LU);
Dan Gohman5947e162010-10-07 23:52:18 +00003987 if (CostF < CostBest)
Dan Gohman45774ce2010-02-12 10:34:29 +00003988 std::swap(F, Best);
Dan Gohman8aca7ef2010-05-18 22:37:37 +00003989 DEBUG(dbgs() << " Filtering out formula "; F.print(dbgs());
Dan Gohman45774ce2010-02-12 10:34:29 +00003990 dbgs() << "\n"
Dan Gohman8aca7ef2010-05-18 22:37:37 +00003991 " in favor of formula "; Best.print(dbgs());
Dan Gohman45774ce2010-02-12 10:34:29 +00003992 dbgs() << '\n');
Dan Gohman45774ce2010-02-12 10:34:29 +00003993 }
Andrew Trick5df90962011-12-06 03:13:31 +00003994#ifndef NDEBUG
3995 ChangedFormulae = true;
3996#endif
3997 LU.DeleteFormula(F);
3998 --FIdx;
3999 --NumForms;
4000 Any = true;
Dan Gohmand0800242010-05-07 23:36:59 +00004001 }
4002
Dan Gohmanbeebef42010-05-18 23:55:57 +00004003 // Now that we've filtered out some formulae, recompute the Regs set.
Dan Gohman4cf99b52010-05-18 23:42:37 +00004004 if (Any)
4005 LU.RecomputeRegs(LUIdx, RegUses);
Dan Gohmand0800242010-05-07 23:36:59 +00004006
4007 // Reset this to prepare for the next use.
Dan Gohman45774ce2010-02-12 10:34:29 +00004008 BestFormulae.clear();
4009 }
4010
Dan Gohman4c4043c2010-05-20 20:05:31 +00004011 DEBUG(if (ChangedFormulae) {
Dan Gohman5b18f032010-02-13 02:06:02 +00004012 dbgs() << "\n"
4013 "After filtering out undesirable candidates:\n";
Dan Gohman45774ce2010-02-12 10:34:29 +00004014 print_uses(dbgs());
4015 });
4016}
4017
Dan Gohmana4eca052010-05-18 22:51:59 +00004018// This is a rough guess that seems to work fairly well.
4019static const size_t ComplexityLimit = UINT16_MAX;
4020
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004021/// Estimate the worst-case number of solutions the solver might have to
4022/// consider. It almost never considers this many solutions because it prune the
4023/// search space, but the pruning isn't always sufficient.
Dan Gohmana4eca052010-05-18 22:51:59 +00004024size_t LSRInstance::EstimateSearchSpaceComplexity() const {
Dan Gohman49d638b2010-10-07 23:37:58 +00004025 size_t Power = 1;
Craig Topper10949ae2015-05-23 08:45:10 +00004026 for (const LSRUse &LU : Uses) {
4027 size_t FSize = LU.Formulae.size();
Dan Gohmana4eca052010-05-18 22:51:59 +00004028 if (FSize >= ComplexityLimit) {
4029 Power = ComplexityLimit;
4030 break;
4031 }
4032 Power *= FSize;
4033 if (Power >= ComplexityLimit)
4034 break;
4035 }
4036 return Power;
4037}
4038
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004039/// When one formula uses a superset of the registers of another formula, it
4040/// won't help reduce register pressure (though it may not necessarily hurt
4041/// register pressure); remove it to simplify the system.
Dan Gohmane9e08732010-08-29 16:09:42 +00004042void LSRInstance::NarrowSearchSpaceByDetectingSupersets() {
Dan Gohman20fab452010-05-19 23:43:12 +00004043 if (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
4044 DEBUG(dbgs() << "The search space is too complex.\n");
4045
4046 DEBUG(dbgs() << "Narrowing the search space by eliminating formulae "
4047 "which use a superset of registers used by other "
4048 "formulae.\n");
4049
4050 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
4051 LSRUse &LU = Uses[LUIdx];
4052 bool Any = false;
4053 for (size_t i = 0, e = LU.Formulae.size(); i != e; ++i) {
4054 Formula &F = LU.Formulae[i];
Dan Gohman8ec018c2010-05-20 20:00:41 +00004055 // Look for a formula with a constant or GV in a register. If the use
4056 // also has a formula with that same value in an immediate field,
4057 // delete the one that uses a register.
Dan Gohman20fab452010-05-19 23:43:12 +00004058 for (SmallVectorImpl<const SCEV *>::const_iterator
4059 I = F.BaseRegs.begin(), E = F.BaseRegs.end(); I != E; ++I) {
4060 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(*I)) {
4061 Formula NewF = F;
Chandler Carruth6e479322013-01-07 15:04:40 +00004062 NewF.BaseOffset += C->getValue()->getSExtValue();
Dan Gohman20fab452010-05-19 23:43:12 +00004063 NewF.BaseRegs.erase(NewF.BaseRegs.begin() +
4064 (I - F.BaseRegs.begin()));
4065 if (LU.HasFormulaWithSameRegs(NewF)) {
4066 DEBUG(dbgs() << " Deleting "; F.print(dbgs()); dbgs() << '\n');
4067 LU.DeleteFormula(F);
4068 --i;
4069 --e;
4070 Any = true;
4071 break;
4072 }
4073 } else if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(*I)) {
4074 if (GlobalValue *GV = dyn_cast<GlobalValue>(U->getValue()))
Chandler Carruth6e479322013-01-07 15:04:40 +00004075 if (!F.BaseGV) {
Dan Gohman20fab452010-05-19 23:43:12 +00004076 Formula NewF = F;
Chandler Carruth6e479322013-01-07 15:04:40 +00004077 NewF.BaseGV = GV;
Dan Gohman20fab452010-05-19 23:43:12 +00004078 NewF.BaseRegs.erase(NewF.BaseRegs.begin() +
4079 (I - F.BaseRegs.begin()));
4080 if (LU.HasFormulaWithSameRegs(NewF)) {
4081 DEBUG(dbgs() << " Deleting "; F.print(dbgs());
4082 dbgs() << '\n');
4083 LU.DeleteFormula(F);
4084 --i;
4085 --e;
4086 Any = true;
4087 break;
4088 }
4089 }
4090 }
4091 }
4092 }
4093 if (Any)
4094 LU.RecomputeRegs(LUIdx, RegUses);
4095 }
4096
4097 DEBUG(dbgs() << "After pre-selection:\n";
4098 print_uses(dbgs()));
4099 }
Dan Gohmane9e08732010-08-29 16:09:42 +00004100}
Dan Gohman20fab452010-05-19 23:43:12 +00004101
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004102/// When there are many registers for expressions like A, A+1, A+2, etc.,
4103/// allocate a single register for them.
Dan Gohmane9e08732010-08-29 16:09:42 +00004104void LSRInstance::NarrowSearchSpaceByCollapsingUnrolledCode() {
Jakub Staszak11bd8352013-02-16 16:08:15 +00004105 if (EstimateSearchSpaceComplexity() < ComplexityLimit)
4106 return;
Dan Gohman20fab452010-05-19 23:43:12 +00004107
Jakub Staszak11bd8352013-02-16 16:08:15 +00004108 DEBUG(dbgs() << "The search space is too complex.\n"
4109 "Narrowing the search space by assuming that uses separated "
4110 "by a constant offset will use the same registers.\n");
Dan Gohman20fab452010-05-19 23:43:12 +00004111
Jakub Staszak11bd8352013-02-16 16:08:15 +00004112 // This is especially useful for unrolled loops.
Dan Gohman8ec018c2010-05-20 20:00:41 +00004113
Jakub Staszak11bd8352013-02-16 16:08:15 +00004114 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
4115 LSRUse &LU = Uses[LUIdx];
Craig Topper77b99412015-05-23 08:01:41 +00004116 for (const Formula &F : LU.Formulae) {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00004117 if (F.BaseOffset == 0 || (F.Scale != 0 && F.Scale != 1))
Jakub Staszak11bd8352013-02-16 16:08:15 +00004118 continue;
Dan Gohman20fab452010-05-19 23:43:12 +00004119
Jakub Staszak11bd8352013-02-16 16:08:15 +00004120 LSRUse *LUThatHas = FindUseWithSimilarFormula(F, LU);
4121 if (!LUThatHas)
4122 continue;
Dan Gohman20fab452010-05-19 23:43:12 +00004123
Jakub Staszak11bd8352013-02-16 16:08:15 +00004124 if (!reconcileNewOffset(*LUThatHas, F.BaseOffset, /*HasBaseReg=*/ false,
4125 LU.Kind, LU.AccessTy))
4126 continue;
Dan Gohman110ed642010-09-01 01:45:53 +00004127
Jakub Staszak11bd8352013-02-16 16:08:15 +00004128 DEBUG(dbgs() << " Deleting use "; LU.print(dbgs()); dbgs() << '\n');
Dan Gohman2fd85d72010-10-08 19:33:26 +00004129
Jakub Staszak11bd8352013-02-16 16:08:15 +00004130 LUThatHas->AllFixupsOutsideLoop &= LU.AllFixupsOutsideLoop;
4131
Jonas Paulsson7a794222016-08-17 13:24:19 +00004132 // Transfer the fixups of LU to LUThatHas.
4133 for (LSRFixup &Fixup : LU.Fixups) {
4134 Fixup.Offset += F.BaseOffset;
4135 LUThatHas->pushFixup(Fixup);
4136 DEBUG(dbgs() << "New fixup has offset " << Fixup.Offset << '\n');
Jakub Staszak11bd8352013-02-16 16:08:15 +00004137 }
Jonas Paulsson7a794222016-08-17 13:24:19 +00004138
Jakub Staszak11bd8352013-02-16 16:08:15 +00004139 // Delete formulae from the new use which are no longer legal.
4140 bool Any = false;
4141 for (size_t i = 0, e = LUThatHas->Formulae.size(); i != e; ++i) {
4142 Formula &F = LUThatHas->Formulae[i];
4143 if (!isLegalUse(TTI, LUThatHas->MinOffset, LUThatHas->MaxOffset,
4144 LUThatHas->Kind, LUThatHas->AccessTy, F)) {
4145 DEBUG(dbgs() << " Deleting "; F.print(dbgs());
4146 dbgs() << '\n');
4147 LUThatHas->DeleteFormula(F);
4148 --i;
4149 --e;
4150 Any = true;
Dan Gohman20fab452010-05-19 23:43:12 +00004151 }
4152 }
Dan Gohman20fab452010-05-19 23:43:12 +00004153
Jakub Staszak11bd8352013-02-16 16:08:15 +00004154 if (Any)
4155 LUThatHas->RecomputeRegs(LUThatHas - &Uses.front(), RegUses);
4156
4157 // Delete the old use.
4158 DeleteUse(LU, LUIdx);
4159 --LUIdx;
4160 --NumUses;
4161 break;
4162 }
Dan Gohman20fab452010-05-19 23:43:12 +00004163 }
Jakub Staszak11bd8352013-02-16 16:08:15 +00004164
4165 DEBUG(dbgs() << "After pre-selection:\n"; print_uses(dbgs()));
Dan Gohmane9e08732010-08-29 16:09:42 +00004166}
Dan Gohman20fab452010-05-19 23:43:12 +00004167
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004168/// Call FilterOutUndesirableDedicatedRegisters again, if necessary, now that
Dan Gohman002ff892010-08-29 16:39:22 +00004169/// we've done more filtering, as it may be able to find more formulae to
4170/// eliminate.
4171void LSRInstance::NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters(){
4172 if (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
4173 DEBUG(dbgs() << "The search space is too complex.\n");
4174
4175 DEBUG(dbgs() << "Narrowing the search space by re-filtering out "
4176 "undesirable dedicated registers.\n");
4177
4178 FilterOutUndesirableDedicatedRegisters();
4179
4180 DEBUG(dbgs() << "After pre-selection:\n";
4181 print_uses(dbgs()));
4182 }
4183}
4184
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004185/// Pick a register which seems likely to be profitable, and then in any use
4186/// which has any reference to that register, delete all formulae which do not
4187/// reference that register.
Dan Gohmane9e08732010-08-29 16:09:42 +00004188void LSRInstance::NarrowSearchSpaceByPickingWinnerRegs() {
Dan Gohmana4ca28a2010-05-20 20:52:00 +00004189 // With all other options exhausted, loop until the system is simple
4190 // enough to handle.
Dan Gohman45774ce2010-02-12 10:34:29 +00004191 SmallPtrSet<const SCEV *, 4> Taken;
Dan Gohmana4eca052010-05-18 22:51:59 +00004192 while (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004193 // Ok, we have too many of formulae on our hands to conveniently handle.
4194 // Use a rough heuristic to thin out the list.
Dan Gohman63e90152010-05-18 22:41:32 +00004195 DEBUG(dbgs() << "The search space is too complex.\n");
Dan Gohman45774ce2010-02-12 10:34:29 +00004196
4197 // Pick the register which is used by the most LSRUses, which is likely
4198 // to be a good reuse register candidate.
Craig Topperf40110f2014-04-25 05:29:35 +00004199 const SCEV *Best = nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +00004200 unsigned BestNum = 0;
Craig Topper77b99412015-05-23 08:01:41 +00004201 for (const SCEV *Reg : RegUses) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004202 if (Taken.count(Reg))
4203 continue;
Evgeny Stupachenko0c4300f2016-11-30 22:23:51 +00004204 if (!Best) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004205 Best = Reg;
Evgeny Stupachenko0c4300f2016-11-30 22:23:51 +00004206 BestNum = RegUses.getUsedByIndices(Reg).count();
4207 } else {
Dan Gohman45774ce2010-02-12 10:34:29 +00004208 unsigned Count = RegUses.getUsedByIndices(Reg).count();
4209 if (Count > BestNum) {
4210 Best = Reg;
4211 BestNum = Count;
4212 }
4213 }
4214 }
4215
4216 DEBUG(dbgs() << "Narrowing the search space by assuming " << *Best
Dan Gohman8b0a4192010-03-01 17:49:51 +00004217 << " will yield profitable reuse.\n");
Dan Gohman45774ce2010-02-12 10:34:29 +00004218 Taken.insert(Best);
4219
4220 // In any use with formulae which references this register, delete formulae
4221 // which don't reference it.
Dan Gohman4cf99b52010-05-18 23:42:37 +00004222 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
4223 LSRUse &LU = Uses[LUIdx];
Dan Gohman45774ce2010-02-12 10:34:29 +00004224 if (!LU.Regs.count(Best)) continue;
4225
Dan Gohman4cf99b52010-05-18 23:42:37 +00004226 bool Any = false;
Dan Gohman45774ce2010-02-12 10:34:29 +00004227 for (size_t i = 0, e = LU.Formulae.size(); i != e; ++i) {
4228 Formula &F = LU.Formulae[i];
4229 if (!F.referencesReg(Best)) {
4230 DEBUG(dbgs() << " Deleting "; F.print(dbgs()); dbgs() << '\n');
Dan Gohmanf1c7b1b2010-05-18 22:39:15 +00004231 LU.DeleteFormula(F);
Dan Gohman45774ce2010-02-12 10:34:29 +00004232 --e;
4233 --i;
Dan Gohman4cf99b52010-05-18 23:42:37 +00004234 Any = true;
Dan Gohmand0800242010-05-07 23:36:59 +00004235 assert(e != 0 && "Use has no formulae left! Is Regs inconsistent?");
Dan Gohman45774ce2010-02-12 10:34:29 +00004236 continue;
4237 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004238 }
Dan Gohman4cf99b52010-05-18 23:42:37 +00004239
4240 if (Any)
4241 LU.RecomputeRegs(LUIdx, RegUses);
Dan Gohman45774ce2010-02-12 10:34:29 +00004242 }
4243
4244 DEBUG(dbgs() << "After pre-selection:\n";
4245 print_uses(dbgs()));
4246 }
4247}
4248
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004249/// If there are an extraordinary number of formulae to choose from, use some
4250/// rough heuristics to prune down the number of formulae. This keeps the main
4251/// solver from taking an extraordinary amount of time in some worst-case
4252/// scenarios.
Dan Gohmane9e08732010-08-29 16:09:42 +00004253void LSRInstance::NarrowSearchSpaceUsingHeuristics() {
4254 NarrowSearchSpaceByDetectingSupersets();
4255 NarrowSearchSpaceByCollapsingUnrolledCode();
Dan Gohman002ff892010-08-29 16:39:22 +00004256 NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters();
Dan Gohmane9e08732010-08-29 16:09:42 +00004257 NarrowSearchSpaceByPickingWinnerRegs();
4258}
4259
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004260/// This is the recursive solver.
Dan Gohman45774ce2010-02-12 10:34:29 +00004261void LSRInstance::SolveRecurse(SmallVectorImpl<const Formula *> &Solution,
4262 Cost &SolutionCost,
4263 SmallVectorImpl<const Formula *> &Workspace,
4264 const Cost &CurCost,
4265 const SmallPtrSet<const SCEV *, 16> &CurRegs,
4266 DenseSet<const SCEV *> &VisitedRegs) const {
4267 // Some ideas:
4268 // - prune more:
4269 // - use more aggressive filtering
4270 // - sort the formula so that the most profitable solutions are found first
4271 // - sort the uses too
4272 // - search faster:
Dan Gohman8b0a4192010-03-01 17:49:51 +00004273 // - don't compute a cost, and then compare. compare while computing a cost
Dan Gohman45774ce2010-02-12 10:34:29 +00004274 // and bail early.
4275 // - track register sets with SmallBitVector
4276
4277 const LSRUse &LU = Uses[Workspace.size()];
4278
4279 // If this use references any register that's already a part of the
4280 // in-progress solution, consider it a requirement that a formula must
4281 // reference that register in order to be considered. This prunes out
4282 // unprofitable searching.
4283 SmallSetVector<const SCEV *, 4> ReqRegs;
Craig Topper46276792014-08-24 23:23:06 +00004284 for (const SCEV *S : CurRegs)
4285 if (LU.Regs.count(S))
4286 ReqRegs.insert(S);
Dan Gohman45774ce2010-02-12 10:34:29 +00004287
4288 SmallPtrSet<const SCEV *, 16> NewRegs;
4289 Cost NewCost;
Craig Topper77b99412015-05-23 08:01:41 +00004290 for (const Formula &F : LU.Formulae) {
Adam Nemetdeab6f92014-04-29 18:25:28 +00004291 // Ignore formulae which may not be ideal in terms of register reuse of
4292 // ReqRegs. The formula should use all required registers before
4293 // introducing new ones.
4294 int NumReqRegsToFind = std::min(F.getNumRegs(), ReqRegs.size());
Craig Topper77b99412015-05-23 08:01:41 +00004295 for (const SCEV *Reg : ReqRegs) {
Adam Nemetdeab6f92014-04-29 18:25:28 +00004296 if ((F.ScaledReg && F.ScaledReg == Reg) ||
David Majnemer0d955d02016-08-11 22:21:41 +00004297 is_contained(F.BaseRegs, Reg)) {
Adam Nemetdeab6f92014-04-29 18:25:28 +00004298 --NumReqRegsToFind;
4299 if (NumReqRegsToFind == 0)
4300 break;
Andrew Tricke3502cb2012-03-22 22:42:51 +00004301 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004302 }
Adam Nemetdeab6f92014-04-29 18:25:28 +00004303 if (NumReqRegsToFind != 0) {
Andrew Tricke3502cb2012-03-22 22:42:51 +00004304 // If none of the formulae satisfied the required registers, then we could
4305 // clear ReqRegs and try again. Currently, we simply give up in this case.
4306 continue;
4307 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004308
4309 // Evaluate the cost of the current formula. If it's already worse than
4310 // the current best, prune the search at that point.
4311 NewCost = CurCost;
4312 NewRegs = CurRegs;
Jonas Paulsson7a794222016-08-17 13:24:19 +00004313 NewCost.RateFormula(TTI, F, NewRegs, VisitedRegs, L, SE, DT, LU);
Dan Gohman45774ce2010-02-12 10:34:29 +00004314 if (NewCost < SolutionCost) {
4315 Workspace.push_back(&F);
4316 if (Workspace.size() != Uses.size()) {
4317 SolveRecurse(Solution, SolutionCost, Workspace, NewCost,
4318 NewRegs, VisitedRegs);
4319 if (F.getNumRegs() == 1 && Workspace.size() == 1)
4320 VisitedRegs.insert(F.ScaledReg ? F.ScaledReg : F.BaseRegs[0]);
4321 } else {
4322 DEBUG(dbgs() << "New best at "; NewCost.print(dbgs());
Andrew Trick4dc3eff2012-01-09 18:58:16 +00004323 dbgs() << ".\n Regs:";
Craig Topper46276792014-08-24 23:23:06 +00004324 for (const SCEV *S : NewRegs)
4325 dbgs() << ' ' << *S;
Dan Gohman45774ce2010-02-12 10:34:29 +00004326 dbgs() << '\n');
4327
4328 SolutionCost = NewCost;
4329 Solution = Workspace;
4330 }
4331 Workspace.pop_back();
4332 }
Dan Gohman5b18f032010-02-13 02:06:02 +00004333 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004334}
4335
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004336/// Choose one formula from each use. Return the results in the given Solution
4337/// vector.
Dan Gohman45774ce2010-02-12 10:34:29 +00004338void LSRInstance::Solve(SmallVectorImpl<const Formula *> &Solution) const {
4339 SmallVector<const Formula *, 8> Workspace;
4340 Cost SolutionCost;
Tim Northoverbc6659c2014-01-22 13:27:00 +00004341 SolutionCost.Lose();
Dan Gohman45774ce2010-02-12 10:34:29 +00004342 Cost CurCost;
4343 SmallPtrSet<const SCEV *, 16> CurRegs;
4344 DenseSet<const SCEV *> VisitedRegs;
4345 Workspace.reserve(Uses.size());
4346
Dan Gohman8ec018c2010-05-20 20:00:41 +00004347 // SolveRecurse does all the work.
Dan Gohman45774ce2010-02-12 10:34:29 +00004348 SolveRecurse(Solution, SolutionCost, Workspace, CurCost,
4349 CurRegs, VisitedRegs);
Andrew Trick58124392011-09-27 00:44:14 +00004350 if (Solution.empty()) {
4351 DEBUG(dbgs() << "\nNo Satisfactory Solution\n");
4352 return;
4353 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004354
4355 // Ok, we've now made all our decisions.
4356 DEBUG(dbgs() << "\n"
4357 "The chosen solution requires "; SolutionCost.print(dbgs());
4358 dbgs() << ":\n";
4359 for (size_t i = 0, e = Uses.size(); i != e; ++i) {
4360 dbgs() << " ";
4361 Uses[i].print(dbgs());
4362 dbgs() << "\n"
4363 " ";
4364 Solution[i]->print(dbgs());
4365 dbgs() << '\n';
4366 });
Dan Gohman6295f2e2010-05-20 20:59:23 +00004367
4368 assert(Solution.size() == Uses.size() && "Malformed solution!");
Dan Gohman45774ce2010-02-12 10:34:29 +00004369}
4370
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004371/// Helper for AdjustInsertPositionForExpand. Climb up the dominator tree far as
4372/// we can go while still being dominated by the input positions. This helps
4373/// canonicalize the insert position, which encourages sharing.
Dan Gohman607e02b2010-04-09 22:07:05 +00004374BasicBlock::iterator
4375LSRInstance::HoistInsertPosition(BasicBlock::iterator IP,
4376 const SmallVectorImpl<Instruction *> &Inputs)
4377 const {
Geoff Berry43e51602016-06-06 19:10:46 +00004378 Instruction *Tentative = &*IP;
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +00004379 while (true) {
Geoff Berry43e51602016-06-06 19:10:46 +00004380 bool AllDominate = true;
4381 Instruction *BetterPos = nullptr;
4382 // Don't bother attempting to insert before a catchswitch, their basic block
4383 // cannot have other non-PHI instructions.
4384 if (isa<CatchSwitchInst>(Tentative))
4385 return IP;
4386
4387 for (Instruction *Inst : Inputs) {
4388 if (Inst == Tentative || !DT.dominates(Inst, Tentative)) {
4389 AllDominate = false;
4390 break;
4391 }
4392 // Attempt to find an insert position in the middle of the block,
4393 // instead of at the end, so that it can be used for other expansions.
4394 if (Tentative->getParent() == Inst->getParent() &&
4395 (!BetterPos || !DT.dominates(Inst, BetterPos)))
4396 BetterPos = &*std::next(BasicBlock::iterator(Inst));
4397 }
4398 if (!AllDominate)
4399 break;
4400 if (BetterPos)
4401 IP = BetterPos->getIterator();
4402 else
4403 IP = Tentative->getIterator();
4404
Dan Gohman607e02b2010-04-09 22:07:05 +00004405 const Loop *IPLoop = LI.getLoopFor(IP->getParent());
4406 unsigned IPLoopDepth = IPLoop ? IPLoop->getLoopDepth() : 0;
4407
4408 BasicBlock *IDom;
Dan Gohman8ce95cc2010-05-20 20:00:25 +00004409 for (DomTreeNode *Rung = DT.getNode(IP->getParent()); ; ) {
Dan Gohman9b48b852010-05-20 22:46:54 +00004410 if (!Rung) return IP;
Dan Gohman8ce95cc2010-05-20 20:00:25 +00004411 Rung = Rung->getIDom();
4412 if (!Rung) return IP;
4413 IDom = Rung->getBlock();
Dan Gohman607e02b2010-04-09 22:07:05 +00004414
4415 // Don't climb into a loop though.
4416 const Loop *IDomLoop = LI.getLoopFor(IDom);
4417 unsigned IDomDepth = IDomLoop ? IDomLoop->getLoopDepth() : 0;
4418 if (IDomDepth <= IPLoopDepth &&
4419 (IDomDepth != IPLoopDepth || IDomLoop == IPLoop))
4420 break;
4421 }
4422
Geoff Berry43e51602016-06-06 19:10:46 +00004423 Tentative = IDom->getTerminator();
Dan Gohman607e02b2010-04-09 22:07:05 +00004424 }
4425
4426 return IP;
4427}
4428
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004429/// Determine an input position which will be dominated by the operands and
4430/// which will dominate the result.
Dan Gohmand2df6432010-04-09 02:00:38 +00004431BasicBlock::iterator
Andrew Trickc908b432012-01-20 07:41:13 +00004432LSRInstance::AdjustInsertPositionForExpand(BasicBlock::iterator LowestIP,
Dan Gohman607e02b2010-04-09 22:07:05 +00004433 const LSRFixup &LF,
Andrew Trickc908b432012-01-20 07:41:13 +00004434 const LSRUse &LU,
4435 SCEVExpander &Rewriter) const {
Dan Gohmand2df6432010-04-09 02:00:38 +00004436 // Collect some instructions which must be dominated by the
Dan Gohmand006ab92010-04-07 22:27:08 +00004437 // expanding replacement. These must be dominated by any operands that
Dan Gohman45774ce2010-02-12 10:34:29 +00004438 // will be required in the expansion.
4439 SmallVector<Instruction *, 4> Inputs;
4440 if (Instruction *I = dyn_cast<Instruction>(LF.OperandValToReplace))
4441 Inputs.push_back(I);
4442 if (LU.Kind == LSRUse::ICmpZero)
4443 if (Instruction *I =
4444 dyn_cast<Instruction>(cast<ICmpInst>(LF.UserInst)->getOperand(1)))
4445 Inputs.push_back(I);
Dan Gohmand006ab92010-04-07 22:27:08 +00004446 if (LF.PostIncLoops.count(L)) {
4447 if (LF.isUseFullyOutsideLoop(L))
Dan Gohman52f55632010-03-02 01:59:21 +00004448 Inputs.push_back(L->getLoopLatch()->getTerminator());
4449 else
4450 Inputs.push_back(IVIncInsertPos);
4451 }
Dan Gohman45065392010-04-08 05:57:57 +00004452 // The expansion must also be dominated by the increment positions of any
4453 // loops it for which it is using post-inc mode.
Craig Topper77b99412015-05-23 08:01:41 +00004454 for (const Loop *PIL : LF.PostIncLoops) {
Dan Gohman45065392010-04-08 05:57:57 +00004455 if (PIL == L) continue;
4456
Dan Gohman607e02b2010-04-09 22:07:05 +00004457 // Be dominated by the loop exit.
Dan Gohman45065392010-04-08 05:57:57 +00004458 SmallVector<BasicBlock *, 4> ExitingBlocks;
4459 PIL->getExitingBlocks(ExitingBlocks);
4460 if (!ExitingBlocks.empty()) {
4461 BasicBlock *BB = ExitingBlocks[0];
4462 for (unsigned i = 1, e = ExitingBlocks.size(); i != e; ++i)
4463 BB = DT.findNearestCommonDominator(BB, ExitingBlocks[i]);
4464 Inputs.push_back(BB->getTerminator());
4465 }
4466 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004467
David Majnemerba275f92015-08-19 19:54:02 +00004468 assert(!isa<PHINode>(LowestIP) && !LowestIP->isEHPad()
Andrew Trickc908b432012-01-20 07:41:13 +00004469 && !isa<DbgInfoIntrinsic>(LowestIP) &&
4470 "Insertion point must be a normal instruction");
4471
Dan Gohman45774ce2010-02-12 10:34:29 +00004472 // Then, climb up the immediate dominator tree as far as we can go while
4473 // still being dominated by the input positions.
Andrew Trickc908b432012-01-20 07:41:13 +00004474 BasicBlock::iterator IP = HoistInsertPosition(LowestIP, Inputs);
Dan Gohmand2df6432010-04-09 02:00:38 +00004475
4476 // Don't insert instructions before PHI nodes.
Dan Gohman45774ce2010-02-12 10:34:29 +00004477 while (isa<PHINode>(IP)) ++IP;
Dan Gohmand2df6432010-04-09 02:00:38 +00004478
Bill Wendling86c5cbe2011-08-24 21:06:46 +00004479 // Ignore landingpad instructions.
David Majnemere09d0352016-03-24 21:40:22 +00004480 while (IP->isEHPad()) ++IP;
Bill Wendling86c5cbe2011-08-24 21:06:46 +00004481
Dan Gohmand2df6432010-04-09 02:00:38 +00004482 // Ignore debug intrinsics.
Dan Gohmand42e09d2010-03-26 00:33:27 +00004483 while (isa<DbgInfoIntrinsic>(IP)) ++IP;
Dan Gohman45774ce2010-02-12 10:34:29 +00004484
Andrew Trickc908b432012-01-20 07:41:13 +00004485 // Set IP below instructions recently inserted by SCEVExpander. This keeps the
4486 // IP consistent across expansions and allows the previously inserted
4487 // instructions to be reused by subsequent expansion.
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +00004488 while (Rewriter.isInsertedInstruction(&*IP) && IP != LowestIP)
4489 ++IP;
Andrew Trickc908b432012-01-20 07:41:13 +00004490
Dan Gohmand2df6432010-04-09 02:00:38 +00004491 return IP;
4492}
4493
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004494/// Emit instructions for the leading candidate expression for this LSRUse (this
4495/// is called "expanding").
Jonas Paulsson7a794222016-08-17 13:24:19 +00004496Value *LSRInstance::Expand(const LSRUse &LU,
4497 const LSRFixup &LF,
Dan Gohmand2df6432010-04-09 02:00:38 +00004498 const Formula &F,
4499 BasicBlock::iterator IP,
4500 SCEVExpander &Rewriter,
4501 SmallVectorImpl<WeakVH> &DeadInsts) const {
Andrew Trick57243da2013-10-25 21:35:56 +00004502 if (LU.RigidFormula)
4503 return LF.OperandValToReplace;
Dan Gohmand2df6432010-04-09 02:00:38 +00004504
4505 // Determine an input position which will be dominated by the operands and
4506 // which will dominate the result.
Andrew Trickc908b432012-01-20 07:41:13 +00004507 IP = AdjustInsertPositionForExpand(IP, LF, LU, Rewriter);
Geoff Berryd0182802016-08-11 21:05:17 +00004508 Rewriter.setInsertPoint(&*IP);
Dan Gohmand2df6432010-04-09 02:00:38 +00004509
Dan Gohman45774ce2010-02-12 10:34:29 +00004510 // Inform the Rewriter if we have a post-increment use, so that it can
4511 // perform an advantageous expansion.
Dan Gohmand006ab92010-04-07 22:27:08 +00004512 Rewriter.setPostInc(LF.PostIncLoops);
Dan Gohman45774ce2010-02-12 10:34:29 +00004513
4514 // This is the type that the user actually needs.
Chris Lattner229907c2011-07-18 04:54:35 +00004515 Type *OpTy = LF.OperandValToReplace->getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00004516 // This will be the type that we'll initially expand to.
Chris Lattner229907c2011-07-18 04:54:35 +00004517 Type *Ty = F.getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00004518 if (!Ty)
4519 // No type known; just expand directly to the ultimate type.
4520 Ty = OpTy;
4521 else if (SE.getEffectiveSCEVType(Ty) == SE.getEffectiveSCEVType(OpTy))
4522 // Expand directly to the ultimate type if it's the right size.
4523 Ty = OpTy;
4524 // This is the type to do integer arithmetic in.
Chris Lattner229907c2011-07-18 04:54:35 +00004525 Type *IntTy = SE.getEffectiveSCEVType(Ty);
Dan Gohman45774ce2010-02-12 10:34:29 +00004526
4527 // Build up a list of operands to add together to form the full base.
4528 SmallVector<const SCEV *, 8> Ops;
4529
4530 // Expand the BaseRegs portion.
Craig Topper77b99412015-05-23 08:01:41 +00004531 for (const SCEV *Reg : F.BaseRegs) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004532 assert(!Reg->isZero() && "Zero allocated in a base register!");
4533
Dan Gohmand006ab92010-04-07 22:27:08 +00004534 // If we're expanding for a post-inc user, make the post-inc adjustment.
4535 PostIncLoopSet &Loops = const_cast<PostIncLoopSet &>(LF.PostIncLoops);
Sanjoy Das215df9e2015-08-04 01:52:05 +00004536 Reg = TransformForPostIncUse(Denormalize, Reg,
4537 LF.UserInst, LF.OperandValToReplace,
4538 Loops, SE, DT);
Dan Gohman45774ce2010-02-12 10:34:29 +00004539
Geoff Berryd0182802016-08-11 21:05:17 +00004540 Ops.push_back(SE.getUnknown(Rewriter.expandCodeFor(Reg, nullptr)));
Dan Gohman45774ce2010-02-12 10:34:29 +00004541 }
4542
4543 // Expand the ScaledReg portion.
Craig Topperf40110f2014-04-25 05:29:35 +00004544 Value *ICmpScaledV = nullptr;
Chandler Carruth6e479322013-01-07 15:04:40 +00004545 if (F.Scale != 0) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004546 const SCEV *ScaledS = F.ScaledReg;
4547
Dan Gohmand006ab92010-04-07 22:27:08 +00004548 // If we're expanding for a post-inc user, make the post-inc adjustment.
4549 PostIncLoopSet &Loops = const_cast<PostIncLoopSet &>(LF.PostIncLoops);
Sanjoy Das215df9e2015-08-04 01:52:05 +00004550 ScaledS = TransformForPostIncUse(Denormalize, ScaledS,
4551 LF.UserInst, LF.OperandValToReplace,
4552 Loops, SE, DT);
Dan Gohman45774ce2010-02-12 10:34:29 +00004553
4554 if (LU.Kind == LSRUse::ICmpZero) {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00004555 // Expand ScaleReg as if it was part of the base regs.
4556 if (F.Scale == 1)
Sanjoy Das215df9e2015-08-04 01:52:05 +00004557 Ops.push_back(
Geoff Berryd0182802016-08-11 21:05:17 +00004558 SE.getUnknown(Rewriter.expandCodeFor(ScaledS, nullptr)));
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00004559 else {
4560 // An interesting way of "folding" with an icmp is to use a negated
4561 // scale, which we'll implement by inserting it into the other operand
4562 // of the icmp.
4563 assert(F.Scale == -1 &&
4564 "The only scale supported by ICmpZero uses is -1!");
Geoff Berryd0182802016-08-11 21:05:17 +00004565 ICmpScaledV = Rewriter.expandCodeFor(ScaledS, nullptr);
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00004566 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004567 } else {
4568 // Otherwise just expand the scaled register and an explicit scale,
4569 // which is expected to be matched as part of the address.
Andrew Trick8370c7c2012-06-15 20:07:29 +00004570
4571 // Flush the operand list to suppress SCEVExpander hoisting address modes.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00004572 // Unless the addressing mode will not be folded.
4573 if (!Ops.empty() && LU.Kind == LSRUse::Address &&
4574 isAMCompletelyFolded(TTI, LU, F)) {
Geoff Berryd0182802016-08-11 21:05:17 +00004575 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty);
Andrew Trick8370c7c2012-06-15 20:07:29 +00004576 Ops.clear();
4577 Ops.push_back(SE.getUnknown(FullV));
4578 }
Geoff Berryd0182802016-08-11 21:05:17 +00004579 ScaledS = SE.getUnknown(Rewriter.expandCodeFor(ScaledS, nullptr));
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00004580 if (F.Scale != 1)
4581 ScaledS =
4582 SE.getMulExpr(ScaledS, SE.getConstant(ScaledS->getType(), F.Scale));
Dan Gohman45774ce2010-02-12 10:34:29 +00004583 Ops.push_back(ScaledS);
4584 }
4585 }
4586
Dan Gohman29707de2010-03-03 05:29:13 +00004587 // Expand the GV portion.
Chandler Carruth6e479322013-01-07 15:04:40 +00004588 if (F.BaseGV) {
Dan Gohman29707de2010-03-03 05:29:13 +00004589 // Flush the operand list to suppress SCEVExpander hoisting.
Andrew Trick8370c7c2012-06-15 20:07:29 +00004590 if (!Ops.empty()) {
Geoff Berryd0182802016-08-11 21:05:17 +00004591 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty);
Andrew Trick8370c7c2012-06-15 20:07:29 +00004592 Ops.clear();
4593 Ops.push_back(SE.getUnknown(FullV));
4594 }
Chandler Carruth6e479322013-01-07 15:04:40 +00004595 Ops.push_back(SE.getUnknown(F.BaseGV));
Andrew Trick8370c7c2012-06-15 20:07:29 +00004596 }
4597
4598 // Flush the operand list to suppress SCEVExpander hoisting of both folded and
4599 // unfolded offsets. LSR assumes they both live next to their uses.
4600 if (!Ops.empty()) {
Geoff Berryd0182802016-08-11 21:05:17 +00004601 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty);
Dan Gohman29707de2010-03-03 05:29:13 +00004602 Ops.clear();
4603 Ops.push_back(SE.getUnknown(FullV));
4604 }
4605
4606 // Expand the immediate portion.
Chandler Carruth6e479322013-01-07 15:04:40 +00004607 int64_t Offset = (uint64_t)F.BaseOffset + LF.Offset;
Dan Gohman45774ce2010-02-12 10:34:29 +00004608 if (Offset != 0) {
4609 if (LU.Kind == LSRUse::ICmpZero) {
4610 // The other interesting way of "folding" with an ICmpZero is to use a
4611 // negated immediate.
4612 if (!ICmpScaledV)
Eli Friedmanb46345d2011-10-13 23:48:33 +00004613 ICmpScaledV = ConstantInt::get(IntTy, -(uint64_t)Offset);
Dan Gohman45774ce2010-02-12 10:34:29 +00004614 else {
4615 Ops.push_back(SE.getUnknown(ICmpScaledV));
4616 ICmpScaledV = ConstantInt::get(IntTy, Offset);
4617 }
4618 } else {
4619 // Just add the immediate values. These again are expected to be matched
4620 // as part of the address.
Dan Gohman29707de2010-03-03 05:29:13 +00004621 Ops.push_back(SE.getUnknown(ConstantInt::getSigned(IntTy, Offset)));
Dan Gohman45774ce2010-02-12 10:34:29 +00004622 }
4623 }
4624
Dan Gohman6136e942011-05-03 00:46:49 +00004625 // Expand the unfolded offset portion.
4626 int64_t UnfoldedOffset = F.UnfoldedOffset;
4627 if (UnfoldedOffset != 0) {
4628 // Just add the immediate values.
4629 Ops.push_back(SE.getUnknown(ConstantInt::getSigned(IntTy,
4630 UnfoldedOffset)));
4631 }
4632
Dan Gohman45774ce2010-02-12 10:34:29 +00004633 // Emit instructions summing all the operands.
4634 const SCEV *FullS = Ops.empty() ?
Dan Gohman1d2ded72010-05-03 22:09:21 +00004635 SE.getConstant(IntTy, 0) :
Dan Gohman45774ce2010-02-12 10:34:29 +00004636 SE.getAddExpr(Ops);
Geoff Berryd0182802016-08-11 21:05:17 +00004637 Value *FullV = Rewriter.expandCodeFor(FullS, Ty);
Dan Gohman45774ce2010-02-12 10:34:29 +00004638
4639 // We're done expanding now, so reset the rewriter.
Dan Gohmand006ab92010-04-07 22:27:08 +00004640 Rewriter.clearPostInc();
Dan Gohman45774ce2010-02-12 10:34:29 +00004641
4642 // An ICmpZero Formula represents an ICmp which we're handling as a
4643 // comparison against zero. Now that we've expanded an expression for that
4644 // form, update the ICmp's other operand.
4645 if (LU.Kind == LSRUse::ICmpZero) {
4646 ICmpInst *CI = cast<ICmpInst>(LF.UserInst);
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +00004647 DeadInsts.emplace_back(CI->getOperand(1));
Chandler Carruth6e479322013-01-07 15:04:40 +00004648 assert(!F.BaseGV && "ICmp does not support folding a global value and "
Dan Gohman45774ce2010-02-12 10:34:29 +00004649 "a scale at the same time!");
Chandler Carruth6e479322013-01-07 15:04:40 +00004650 if (F.Scale == -1) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004651 if (ICmpScaledV->getType() != OpTy) {
4652 Instruction *Cast =
4653 CastInst::Create(CastInst::getCastOpcode(ICmpScaledV, false,
4654 OpTy, false),
4655 ICmpScaledV, OpTy, "tmp", CI);
4656 ICmpScaledV = Cast;
4657 }
4658 CI->setOperand(1, ICmpScaledV);
4659 } else {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00004660 // A scale of 1 means that the scale has been expanded as part of the
4661 // base regs.
4662 assert((F.Scale == 0 || F.Scale == 1) &&
Dan Gohman45774ce2010-02-12 10:34:29 +00004663 "ICmp does not support folding a global value and "
4664 "a scale at the same time!");
4665 Constant *C = ConstantInt::getSigned(SE.getEffectiveSCEVType(OpTy),
4666 -(uint64_t)Offset);
4667 if (C->getType() != OpTy)
4668 C = ConstantExpr::getCast(CastInst::getCastOpcode(C, false,
4669 OpTy, false),
4670 C, OpTy);
4671
4672 CI->setOperand(1, C);
4673 }
4674 }
4675
4676 return FullV;
4677}
4678
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004679/// Helper for Rewrite. PHI nodes are special because the use of their operands
4680/// effectively happens in their predecessor blocks, so the expression may need
4681/// to be expanded in multiple places.
Dan Gohman6deab962010-02-16 20:25:07 +00004682void LSRInstance::RewriteForPHI(PHINode *PN,
Jonas Paulsson7a794222016-08-17 13:24:19 +00004683 const LSRUse &LU,
Dan Gohman6deab962010-02-16 20:25:07 +00004684 const LSRFixup &LF,
4685 const Formula &F,
Dan Gohman6deab962010-02-16 20:25:07 +00004686 SCEVExpander &Rewriter,
Justin Bogner843fb202015-12-15 19:40:57 +00004687 SmallVectorImpl<WeakVH> &DeadInsts) const {
Dan Gohman6deab962010-02-16 20:25:07 +00004688 DenseMap<BasicBlock *, Value *> Inserted;
4689 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
4690 if (PN->getIncomingValue(i) == LF.OperandValToReplace) {
4691 BasicBlock *BB = PN->getIncomingBlock(i);
4692
4693 // If this is a critical edge, split the edge so that we do not insert
4694 // the code on all predecessor/successor paths. We do this unless this
4695 // is the canonical backedge for this loop, which complicates post-inc
4696 // users.
4697 if (e != 1 && BB->getTerminator()->getNumSuccessors() > 1 &&
David Majnemerbba17392017-01-13 22:24:27 +00004698 !isa<IndirectBrInst>(BB->getTerminator()) &&
4699 !isa<CatchSwitchInst>(BB->getTerminator())) {
Bill Wendling07efd6f2011-08-25 01:08:34 +00004700 BasicBlock *Parent = PN->getParent();
4701 Loop *PNLoop = LI.getLoopFor(Parent);
4702 if (!PNLoop || Parent != PNLoop->getHeader()) {
Dan Gohmande7f6992011-02-08 00:55:13 +00004703 // Split the critical edge.
Craig Topperf40110f2014-04-25 05:29:35 +00004704 BasicBlock *NewBB = nullptr;
Bill Wendling3fb137f2011-08-25 05:55:40 +00004705 if (!Parent->isLandingPad()) {
Chandler Carruth37df2cf2015-01-19 12:09:11 +00004706 NewBB = SplitCriticalEdge(BB, Parent,
4707 CriticalEdgeSplittingOptions(&DT, &LI)
4708 .setMergeIdenticalEdges()
4709 .setDontDeleteUselessPHIs());
Bill Wendling3fb137f2011-08-25 05:55:40 +00004710 } else {
4711 SmallVector<BasicBlock*, 2> NewBBs;
Chandler Carruth96ada252015-07-22 09:52:54 +00004712 SplitLandingPadPredecessors(Parent, BB, "", "", NewBBs, &DT, &LI);
Bill Wendling3fb137f2011-08-25 05:55:40 +00004713 NewBB = NewBBs[0];
4714 }
Andrew Trick402edbb2012-09-18 17:51:33 +00004715 // If NewBB==NULL, then SplitCriticalEdge refused to split because all
4716 // phi predecessors are identical. The simple thing to do is skip
4717 // splitting in this case rather than complicate the API.
4718 if (NewBB) {
4719 // If PN is outside of the loop and BB is in the loop, we want to
4720 // move the block to be immediately before the PHI block, not
4721 // immediately after BB.
4722 if (L->contains(BB) && !L->contains(PN))
4723 NewBB->moveBefore(PN->getParent());
Dan Gohman6deab962010-02-16 20:25:07 +00004724
Andrew Trick402edbb2012-09-18 17:51:33 +00004725 // Splitting the edge can reduce the number of PHI entries we have.
4726 e = PN->getNumIncomingValues();
4727 BB = NewBB;
4728 i = PN->getBasicBlockIndex(BB);
4729 }
Dan Gohmande7f6992011-02-08 00:55:13 +00004730 }
Dan Gohman6deab962010-02-16 20:25:07 +00004731 }
4732
4733 std::pair<DenseMap<BasicBlock *, Value *>::iterator, bool> Pair =
Craig Topperf40110f2014-04-25 05:29:35 +00004734 Inserted.insert(std::make_pair(BB, static_cast<Value *>(nullptr)));
Dan Gohman6deab962010-02-16 20:25:07 +00004735 if (!Pair.second)
4736 PN->setIncomingValue(i, Pair.first->second);
4737 else {
Jonas Paulsson7a794222016-08-17 13:24:19 +00004738 Value *FullV = Expand(LU, LF, F, BB->getTerminator()->getIterator(),
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +00004739 Rewriter, DeadInsts);
Dan Gohman6deab962010-02-16 20:25:07 +00004740
4741 // If this is reuse-by-noop-cast, insert the noop cast.
Chris Lattner229907c2011-07-18 04:54:35 +00004742 Type *OpTy = LF.OperandValToReplace->getType();
Dan Gohman6deab962010-02-16 20:25:07 +00004743 if (FullV->getType() != OpTy)
4744 FullV =
4745 CastInst::Create(CastInst::getCastOpcode(FullV, false,
4746 OpTy, false),
4747 FullV, LF.OperandValToReplace->getType(),
4748 "tmp", BB->getTerminator());
4749
4750 PN->setIncomingValue(i, FullV);
4751 Pair.first->second = FullV;
4752 }
4753 }
4754}
4755
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004756/// Emit instructions for the leading candidate expression for this LSRUse (this
4757/// is called "expanding"), and update the UserInst to reference the newly
4758/// expanded value.
Jonas Paulsson7a794222016-08-17 13:24:19 +00004759void LSRInstance::Rewrite(const LSRUse &LU,
4760 const LSRFixup &LF,
Dan Gohman45774ce2010-02-12 10:34:29 +00004761 const Formula &F,
Dan Gohman45774ce2010-02-12 10:34:29 +00004762 SCEVExpander &Rewriter,
Justin Bogner843fb202015-12-15 19:40:57 +00004763 SmallVectorImpl<WeakVH> &DeadInsts) const {
Dan Gohman45774ce2010-02-12 10:34:29 +00004764 // First, find an insertion point that dominates UserInst. For PHI nodes,
4765 // find the nearest block which dominates all the relevant uses.
4766 if (PHINode *PN = dyn_cast<PHINode>(LF.UserInst)) {
Jonas Paulsson7a794222016-08-17 13:24:19 +00004767 RewriteForPHI(PN, LU, LF, F, Rewriter, DeadInsts);
Dan Gohman45774ce2010-02-12 10:34:29 +00004768 } else {
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +00004769 Value *FullV =
Jonas Paulsson7a794222016-08-17 13:24:19 +00004770 Expand(LU, LF, F, LF.UserInst->getIterator(), Rewriter, DeadInsts);
Dan Gohman45774ce2010-02-12 10:34:29 +00004771
4772 // If this is reuse-by-noop-cast, insert the noop cast.
Chris Lattner229907c2011-07-18 04:54:35 +00004773 Type *OpTy = LF.OperandValToReplace->getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00004774 if (FullV->getType() != OpTy) {
4775 Instruction *Cast =
4776 CastInst::Create(CastInst::getCastOpcode(FullV, false, OpTy, false),
4777 FullV, OpTy, "tmp", LF.UserInst);
4778 FullV = Cast;
4779 }
4780
4781 // Update the user. ICmpZero is handled specially here (for now) because
4782 // Expand may have updated one of the operands of the icmp already, and
4783 // its new value may happen to be equal to LF.OperandValToReplace, in
4784 // which case doing replaceUsesOfWith leads to replacing both operands
4785 // with the same value. TODO: Reorganize this.
Jonas Paulsson7a794222016-08-17 13:24:19 +00004786 if (LU.Kind == LSRUse::ICmpZero)
Dan Gohman45774ce2010-02-12 10:34:29 +00004787 LF.UserInst->setOperand(0, FullV);
4788 else
4789 LF.UserInst->replaceUsesOfWith(LF.OperandValToReplace, FullV);
4790 }
4791
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +00004792 DeadInsts.emplace_back(LF.OperandValToReplace);
Dan Gohman45774ce2010-02-12 10:34:29 +00004793}
4794
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004795/// Rewrite all the fixup locations with new values, following the chosen
4796/// solution.
Justin Bogner843fb202015-12-15 19:40:57 +00004797void LSRInstance::ImplementSolution(
4798 const SmallVectorImpl<const Formula *> &Solution) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004799 // Keep track of instructions we may have made dead, so that
4800 // we can remove them after we are done working.
4801 SmallVector<WeakVH, 16> DeadInsts;
4802
Mehdi Aminia28d91d2015-03-10 02:37:25 +00004803 SCEVExpander Rewriter(SE, L->getHeader()->getModule()->getDataLayout(),
4804 "lsr");
Andrew Trick4dc3eff2012-01-09 18:58:16 +00004805#ifndef NDEBUG
4806 Rewriter.setDebugType(DEBUG_TYPE);
4807#endif
Dan Gohman45774ce2010-02-12 10:34:29 +00004808 Rewriter.disableCanonicalMode();
Andrew Trick7fb669a2011-10-07 23:46:21 +00004809 Rewriter.enableLSRMode();
Dan Gohman45774ce2010-02-12 10:34:29 +00004810 Rewriter.setIVIncInsertPos(L, IVIncInsertPos);
4811
Andrew Trickd5d2db92012-01-10 01:45:08 +00004812 // Mark phi nodes that terminate chains so the expander tries to reuse them.
Craig Topper77b99412015-05-23 08:01:41 +00004813 for (const IVChain &Chain : IVChainVec) {
4814 if (PHINode *PN = dyn_cast<PHINode>(Chain.tailUserInst()))
Andrew Trickd5d2db92012-01-10 01:45:08 +00004815 Rewriter.setChainedPhi(PN);
4816 }
4817
Dan Gohman45774ce2010-02-12 10:34:29 +00004818 // Expand the new value definitions and update the users.
Jonas Paulsson7a794222016-08-17 13:24:19 +00004819 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx)
4820 for (const LSRFixup &Fixup : Uses[LUIdx].Fixups) {
4821 Rewrite(Uses[LUIdx], Fixup, *Solution[LUIdx], Rewriter, DeadInsts);
4822 Changed = true;
4823 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004824
Craig Topper77b99412015-05-23 08:01:41 +00004825 for (const IVChain &Chain : IVChainVec) {
4826 GenerateIVChain(Chain, Rewriter, DeadInsts);
Andrew Trick248d4102012-01-09 21:18:52 +00004827 Changed = true;
4828 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004829 // Clean up after ourselves. This must be done before deleting any
4830 // instructions.
4831 Rewriter.clear();
4832
4833 Changed |= DeleteTriviallyDeadInstructions(DeadInsts);
4834}
4835
Justin Bogner843fb202015-12-15 19:40:57 +00004836LSRInstance::LSRInstance(Loop *L, IVUsers &IU, ScalarEvolution &SE,
4837 DominatorTree &DT, LoopInfo &LI,
4838 const TargetTransformInfo &TTI)
4839 : IU(IU), SE(SE), DT(DT), LI(LI), TTI(TTI), L(L), Changed(false),
4840 IVIncInsertPos(nullptr) {
Dan Gohmana83ac2d2009-11-05 21:11:53 +00004841 // If LoopSimplify form is not available, stay out of trouble.
Andrew Trick732ad802012-01-07 03:16:50 +00004842 if (!L->isLoopSimplifyForm())
4843 return;
Dan Gohmana83ac2d2009-11-05 21:11:53 +00004844
Andrew Trick070e5402012-03-16 03:16:56 +00004845 // If there's no interesting work to be done, bail early.
4846 if (IU.empty()) return;
4847
Andrew Trick19f80c12012-04-18 04:00:10 +00004848 // If there's too much analysis to be done, bail early. We won't be able to
4849 // model the problem anyway.
4850 unsigned NumUsers = 0;
Craig Topper77b99412015-05-23 08:01:41 +00004851 for (const IVStrideUse &U : IU) {
Andrew Trick19f80c12012-04-18 04:00:10 +00004852 if (++NumUsers > MaxIVUsers) {
Craig Topper37d0d862015-05-23 08:20:33 +00004853 (void)U;
Craig Topper77b99412015-05-23 08:01:41 +00004854 DEBUG(dbgs() << "LSR skipping loop, too many IV Users in " << U << "\n");
Andrew Trick19f80c12012-04-18 04:00:10 +00004855 return;
4856 }
David Majnemera53b5bb2016-02-03 21:30:34 +00004857 // Bail out if we have a PHI on an EHPad that gets a value from a
4858 // CatchSwitchInst. Because the CatchSwitchInst cannot be split, there is
4859 // no good place to stick any instructions.
4860 if (auto *PN = dyn_cast<PHINode>(U.getUser())) {
4861 auto *FirstNonPHI = PN->getParent()->getFirstNonPHI();
4862 if (isa<FuncletPadInst>(FirstNonPHI) ||
4863 isa<CatchSwitchInst>(FirstNonPHI))
4864 for (BasicBlock *PredBB : PN->blocks())
4865 if (isa<CatchSwitchInst>(PredBB->getFirstNonPHI()))
4866 return;
4867 }
Andrew Trick19f80c12012-04-18 04:00:10 +00004868 }
4869
Andrew Trick070e5402012-03-16 03:16:56 +00004870#ifndef NDEBUG
Andrew Trick12728f02012-01-17 06:45:52 +00004871 // All dominating loops must have preheaders, or SCEVExpander may not be able
4872 // to materialize an AddRecExpr whose Start is an outer AddRecExpr.
4873 //
Andrew Trick070e5402012-03-16 03:16:56 +00004874 // IVUsers analysis should only create users that are dominated by simple loop
4875 // headers. Since this loop should dominate all of its users, its user list
4876 // should be empty if this loop itself is not within a simple loop nest.
Andrew Trick12728f02012-01-17 06:45:52 +00004877 for (DomTreeNode *Rung = DT.getNode(L->getLoopPreheader());
4878 Rung; Rung = Rung->getIDom()) {
4879 BasicBlock *BB = Rung->getBlock();
4880 const Loop *DomLoop = LI.getLoopFor(BB);
4881 if (DomLoop && DomLoop->getHeader() == BB) {
Andrew Trick070e5402012-03-16 03:16:56 +00004882 assert(DomLoop->getLoopPreheader() && "LSR needs a simplified loop nest");
Andrew Trick12728f02012-01-17 06:45:52 +00004883 }
Andrew Trick732ad802012-01-07 03:16:50 +00004884 }
Andrew Trick070e5402012-03-16 03:16:56 +00004885#endif // DEBUG
Dan Gohman85875f72009-03-09 20:34:59 +00004886
Dan Gohman45774ce2010-02-12 10:34:29 +00004887 DEBUG(dbgs() << "\nLSR on loop ";
Chandler Carruthd48cdbf2014-01-09 02:29:41 +00004888 L->getHeader()->printAsOperand(dbgs(), /*PrintType=*/false);
Dan Gohman45774ce2010-02-12 10:34:29 +00004889 dbgs() << ":\n");
Dan Gohmane201f8f2009-03-09 20:46:50 +00004890
Dan Gohman927bcaa2010-05-20 20:33:18 +00004891 // First, perform some low-level loop optimizations.
Dan Gohman45774ce2010-02-12 10:34:29 +00004892 OptimizeShadowIV();
Dan Gohman4c4043c2010-05-20 20:05:31 +00004893 OptimizeLoopTermCond();
Evan Cheng78a4eb82009-05-11 22:33:01 +00004894
Andrew Trick8acb4342011-07-21 00:40:04 +00004895 // If loop preparation eliminates all interesting IV users, bail.
4896 if (IU.empty()) return;
4897
Andrew Trick168dfff2011-09-29 01:53:08 +00004898 // Skip nested loops until we can model them better with formulae.
Andrew Trickd97b83e2012-03-22 22:42:45 +00004899 if (!L->empty()) {
Andrew Trickbc6de902011-09-29 01:33:38 +00004900 DEBUG(dbgs() << "LSR skipping outer loop " << *L << "\n");
Andrew Trick168dfff2011-09-29 01:53:08 +00004901 return;
Andrew Trickbc6de902011-09-29 01:33:38 +00004902 }
4903
Dan Gohman927bcaa2010-05-20 20:33:18 +00004904 // Start collecting data and preparing for the solver.
Andrew Trick29fe5f02012-01-09 19:50:34 +00004905 CollectChains();
Dan Gohman45774ce2010-02-12 10:34:29 +00004906 CollectInterestingTypesAndFactors();
4907 CollectFixupsAndInitialFormulae();
4908 CollectLoopInvariantFixupsAndFormulae();
Chris Lattner9bfa6f82005-08-08 05:28:22 +00004909
Andrew Trick248d4102012-01-09 21:18:52 +00004910 assert(!Uses.empty() && "IVUsers reported at least one use");
Dan Gohman45774ce2010-02-12 10:34:29 +00004911 DEBUG(dbgs() << "LSR found " << Uses.size() << " uses:\n";
4912 print_uses(dbgs()));
Misha Brukmanb1c93172005-04-21 23:48:37 +00004913
Dan Gohman45774ce2010-02-12 10:34:29 +00004914 // Now use the reuse data to generate a bunch of interesting ways
4915 // to formulate the values needed for the uses.
4916 GenerateAllReuseFormulae();
Evan Cheng3df447d2006-03-16 21:53:05 +00004917
Dan Gohman45774ce2010-02-12 10:34:29 +00004918 FilterOutUndesirableDedicatedRegisters();
4919 NarrowSearchSpaceUsingHeuristics();
Dan Gohman92c36962009-12-18 00:06:20 +00004920
Dan Gohman45774ce2010-02-12 10:34:29 +00004921 SmallVector<const Formula *, 8> Solution;
4922 Solve(Solution);
Dan Gohman92c36962009-12-18 00:06:20 +00004923
Dan Gohman45774ce2010-02-12 10:34:29 +00004924 // Release memory that is no longer needed.
4925 Factors.clear();
4926 Types.clear();
4927 RegUses.clear();
4928
Andrew Trick58124392011-09-27 00:44:14 +00004929 if (Solution.empty())
4930 return;
4931
Dan Gohman45774ce2010-02-12 10:34:29 +00004932#ifndef NDEBUG
4933 // Formulae should be legal.
Craig Topper77b99412015-05-23 08:01:41 +00004934 for (const LSRUse &LU : Uses) {
4935 for (const Formula &F : LU.Formulae)
Chandler Carruth26c59fa2013-01-07 14:41:08 +00004936 assert(isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy,
Craig Topper77b99412015-05-23 08:01:41 +00004937 F) && "Illegal formula generated!");
Dan Gohman45774ce2010-02-12 10:34:29 +00004938 };
4939#endif
4940
4941 // Now that we've decided what we want, make it so.
Justin Bogner843fb202015-12-15 19:40:57 +00004942 ImplementSolution(Solution);
Dan Gohman45774ce2010-02-12 10:34:29 +00004943}
4944
4945void LSRInstance::print_factors_and_types(raw_ostream &OS) const {
4946 if (Factors.empty() && Types.empty()) return;
4947
4948 OS << "LSR has identified the following interesting factors and types: ";
4949 bool First = true;
4950
Craig Topper10949ae2015-05-23 08:45:10 +00004951 for (int64_t Factor : Factors) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004952 if (!First) OS << ", ";
4953 First = false;
Craig Topper10949ae2015-05-23 08:45:10 +00004954 OS << '*' << Factor;
Evan Cheng87fe40b2009-11-10 21:14:05 +00004955 }
Dale Johannesen02cb2bf2009-05-11 17:15:42 +00004956
Craig Topper10949ae2015-05-23 08:45:10 +00004957 for (Type *Ty : Types) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004958 if (!First) OS << ", ";
4959 First = false;
Craig Topper10949ae2015-05-23 08:45:10 +00004960 OS << '(' << *Ty << ')';
Dan Gohman45774ce2010-02-12 10:34:29 +00004961 }
4962 OS << '\n';
4963}
4964
4965void LSRInstance::print_fixups(raw_ostream &OS) const {
4966 OS << "LSR is examining the following fixup sites:\n";
Jonas Paulsson7a794222016-08-17 13:24:19 +00004967 for (const LSRUse &LU : Uses)
4968 for (const LSRFixup &LF : LU.Fixups) {
4969 dbgs() << " ";
4970 LF.print(OS);
4971 OS << '\n';
4972 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004973}
4974
4975void LSRInstance::print_uses(raw_ostream &OS) const {
4976 OS << "LSR is examining the following uses:\n";
Craig Topper77b99412015-05-23 08:01:41 +00004977 for (const LSRUse &LU : Uses) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004978 dbgs() << " ";
4979 LU.print(OS);
4980 OS << '\n';
Craig Topper77b99412015-05-23 08:01:41 +00004981 for (const Formula &F : LU.Formulae) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004982 OS << " ";
Craig Topper77b99412015-05-23 08:01:41 +00004983 F.print(OS);
Dan Gohman45774ce2010-02-12 10:34:29 +00004984 OS << '\n';
4985 }
4986 }
4987}
4988
4989void LSRInstance::print(raw_ostream &OS) const {
4990 print_factors_and_types(OS);
4991 print_fixups(OS);
4992 print_uses(OS);
4993}
4994
Matthias Braun8c209aa2017-01-28 02:02:38 +00004995#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
4996LLVM_DUMP_METHOD void LSRInstance::dump() const {
Dan Gohman45774ce2010-02-12 10:34:29 +00004997 print(errs()); errs() << '\n';
4998}
Matthias Braun8c209aa2017-01-28 02:02:38 +00004999#endif
Dan Gohman45774ce2010-02-12 10:34:29 +00005000
5001namespace {
5002
5003class LoopStrengthReduce : public LoopPass {
Dan Gohman45774ce2010-02-12 10:34:29 +00005004public:
5005 static char ID; // Pass ID, replacement for typeid
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +00005006
Chandler Carruth26c59fa2013-01-07 14:41:08 +00005007 LoopStrengthReduce();
Dan Gohman45774ce2010-02-12 10:34:29 +00005008
5009private:
Craig Topper3e4c6972014-03-05 09:10:37 +00005010 bool runOnLoop(Loop *L, LPPassManager &LPM) override;
5011 void getAnalysisUsage(AnalysisUsage &AU) const override;
Dan Gohman45774ce2010-02-12 10:34:29 +00005012};
Dan Gohman45774ce2010-02-12 10:34:29 +00005013
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +00005014} // end anonymous namespace
Dan Gohman45774ce2010-02-12 10:34:29 +00005015
Chandler Carruth26c59fa2013-01-07 14:41:08 +00005016LoopStrengthReduce::LoopStrengthReduce() : LoopPass(ID) {
5017 initializeLoopStrengthReducePass(*PassRegistry::getPassRegistry());
5018}
Dan Gohman45774ce2010-02-12 10:34:29 +00005019
5020void LoopStrengthReduce::getAnalysisUsage(AnalysisUsage &AU) const {
5021 // We split critical edges, so we change the CFG. However, we do update
5022 // many analyses if they are around.
Eric Christopherda6bd452011-02-10 01:48:24 +00005023 AU.addPreservedID(LoopSimplifyID);
Dan Gohman45774ce2010-02-12 10:34:29 +00005024
Chandler Carruth4f8f3072015-01-17 14:16:18 +00005025 AU.addRequired<LoopInfoWrapperPass>();
5026 AU.addPreserved<LoopInfoWrapperPass>();
Eric Christopherda6bd452011-02-10 01:48:24 +00005027 AU.addRequiredID(LoopSimplifyID);
Chandler Carruth73523022014-01-13 13:07:17 +00005028 AU.addRequired<DominatorTreeWrapperPass>();
5029 AU.addPreserved<DominatorTreeWrapperPass>();
Chandler Carruth2f1fd162015-08-17 02:08:17 +00005030 AU.addRequired<ScalarEvolutionWrapperPass>();
5031 AU.addPreserved<ScalarEvolutionWrapperPass>();
Cameron Zwarich97dae4d2011-02-10 23:53:14 +00005032 // Requiring LoopSimplify a second time here prevents IVUsers from running
5033 // twice, since LoopSimplify was invalidated by running ScalarEvolution.
5034 AU.addRequiredID(LoopSimplifyID);
Dehao Chen1a444522016-07-16 22:51:33 +00005035 AU.addRequired<IVUsersWrapperPass>();
5036 AU.addPreserved<IVUsersWrapperPass>();
Chandler Carruth705b1852015-01-31 03:43:40 +00005037 AU.addRequired<TargetTransformInfoWrapperPass>();
Dan Gohman45774ce2010-02-12 10:34:29 +00005038}
5039
Dehao Chen6132ee82016-07-18 21:41:50 +00005040static bool ReduceLoopStrength(Loop *L, IVUsers &IU, ScalarEvolution &SE,
5041 DominatorTree &DT, LoopInfo &LI,
5042 const TargetTransformInfo &TTI) {
Dan Gohman45774ce2010-02-12 10:34:29 +00005043 bool Changed = false;
5044
5045 // Run the main LSR transformation.
Justin Bogner843fb202015-12-15 19:40:57 +00005046 Changed |= LSRInstance(L, IU, SE, DT, LI, TTI).getChanged();
Dan Gohman45774ce2010-02-12 10:34:29 +00005047
Andrew Trick2ec61a82012-01-07 01:36:44 +00005048 // Remove any extra phis created by processing inner loops.
Dan Gohmanb5358002010-01-05 16:31:45 +00005049 Changed |= DeleteDeadPHIs(L->getHeader());
Andrew Trickf950ce82013-01-06 05:59:39 +00005050 if (EnablePhiElim && L->isLoopSimplifyForm()) {
Andrew Trick2ec61a82012-01-07 01:36:44 +00005051 SmallVector<WeakVH, 16> DeadInsts;
Mehdi Aminia28d91d2015-03-10 02:37:25 +00005052 const DataLayout &DL = L->getHeader()->getModule()->getDataLayout();
Dehao Chen6132ee82016-07-18 21:41:50 +00005053 SCEVExpander Rewriter(SE, DL, "lsr");
Andrew Trick2ec61a82012-01-07 01:36:44 +00005054#ifndef NDEBUG
5055 Rewriter.setDebugType(DEBUG_TYPE);
5056#endif
Dehao Chen6132ee82016-07-18 21:41:50 +00005057 unsigned numFolded = Rewriter.replaceCongruentIVs(L, &DT, DeadInsts, &TTI);
Andrew Trick2ec61a82012-01-07 01:36:44 +00005058 if (numFolded) {
5059 Changed = true;
5060 DeleteTriviallyDeadInstructions(DeadInsts);
5061 DeleteDeadPHIs(L->getHeader());
5062 }
5063 }
Evan Cheng03001cb2008-07-07 19:51:32 +00005064 return Changed;
Nate Begemanb18121e2004-10-18 21:08:22 +00005065}
Dehao Chen6132ee82016-07-18 21:41:50 +00005066
5067bool LoopStrengthReduce::runOnLoop(Loop *L, LPPassManager & /*LPM*/) {
5068 if (skipLoop(L))
5069 return false;
5070
5071 auto &IU = getAnalysis<IVUsersWrapperPass>().getIU();
5072 auto &SE = getAnalysis<ScalarEvolutionWrapperPass>().getSE();
5073 auto &DT = getAnalysis<DominatorTreeWrapperPass>().getDomTree();
5074 auto &LI = getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
5075 const auto &TTI = getAnalysis<TargetTransformInfoWrapperPass>().getTTI(
5076 *L->getHeader()->getParent());
5077 return ReduceLoopStrength(L, IU, SE, DT, LI, TTI);
5078}
5079
Chandler Carruth410eaeb2017-01-11 06:23:21 +00005080PreservedAnalyses LoopStrengthReducePass::run(Loop &L, LoopAnalysisManager &AM,
5081 LoopStandardAnalysisResults &AR,
5082 LPMUpdater &) {
5083 if (!ReduceLoopStrength(&L, AM.getResult<IVUsersAnalysis>(L, AR), AR.SE,
5084 AR.DT, AR.LI, AR.TTI))
Dehao Chen6132ee82016-07-18 21:41:50 +00005085 return PreservedAnalyses::all();
5086
5087 return getLoopPassPreservedAnalyses();
5088}
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +00005089
5090char LoopStrengthReduce::ID = 0;
5091INITIALIZE_PASS_BEGIN(LoopStrengthReduce, "loop-reduce",
5092 "Loop Strength Reduction", false, false)
5093INITIALIZE_PASS_DEPENDENCY(TargetTransformInfoWrapperPass)
5094INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
5095INITIALIZE_PASS_DEPENDENCY(ScalarEvolutionWrapperPass)
5096INITIALIZE_PASS_DEPENDENCY(IVUsersWrapperPass)
5097INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass)
5098INITIALIZE_PASS_DEPENDENCY(LoopSimplify)
5099INITIALIZE_PASS_END(LoopStrengthReduce, "loop-reduce",
5100 "Loop Strength Reduction", false, false)
5101
5102Pass *llvm::createLoopStrengthReducePass() { return new LoopStrengthReduce(); }