blob: fdf98a62f8ceab4a764d04a4c0f4cd299259f872 [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//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Misha Brukmanb1c93172005-04-21 23:48:37 +00006//
Nate Begemanb18121e2004-10-18 21:08:22 +00007//===----------------------------------------------------------------------===//
8//
Dan Gohman97f70ad2009-05-19 20:37:36 +00009// This transformation analyzes and transforms the induction variables (and
10// computations derived from them) into forms suitable for efficient execution
11// on the target.
12//
Nate Begemanb18121e2004-10-18 21:08:22 +000013// This pass performs a strength reduction on array references inside loops that
Dan Gohman97f70ad2009-05-19 20:37:36 +000014// have as one or more of their components the loop induction variable, it
15// rewrites expressions to take advantage of scaled-index addressing modes
16// available on the target, and it performs a variety of other optimizations
17// related to loop induction variables.
Nate Begemanb18121e2004-10-18 21:08:22 +000018//
Dan Gohman45774ce2010-02-12 10:34:29 +000019// Terminology note: this code has a lot of handling for "post-increment" or
20// "post-inc" users. This is not talking about post-increment addressing modes;
21// it is instead talking about code like this:
22//
23// %i = phi [ 0, %entry ], [ %i.next, %latch ]
24// ...
25// %i.next = add %i, 1
26// %c = icmp eq %i.next, %n
27//
28// The SCEV for %i is {0,+,1}<%L>. The SCEV for %i.next is {1,+,1}<%L>, however
29// it's useful to think about these as the same register, with some uses using
Sanjoy Das7041fb12015-03-27 06:01:56 +000030// the value of the register before the add and some using it after. In this
Dan Gohman45774ce2010-02-12 10:34:29 +000031// example, the icmp is a post-increment user, since it uses %i.next, which is
32// the value of the induction variable after the increment. The other common
33// case of post-increment users is users outside the loop.
34//
35// TODO: More sophistication in the way Formulae are generated and filtered.
36//
37// TODO: Handle multiple loops at a time.
38//
Chandler Carruth26c59fa2013-01-07 14:41:08 +000039// TODO: Should the addressing mode BaseGV be changed to a ConstantExpr instead
40// of a GlobalValue?
Dan Gohman45774ce2010-02-12 10:34:29 +000041//
42// TODO: When truncation is free, truncate ICmp users' operands to make it a
43// smaller encoding (on x86 at least).
44//
45// TODO: When a negated register is used by an add (such as in a list of
46// multiple base registers, or as the increment expression in an addrec),
47// we may not actually need both reg and (-1 * reg) in registers; the
48// negation can be implemented by using a sub instead of an add. The
49// lack of support for taking this into consideration when making
50// register pressure decisions is partly worked around by the "Special"
51// use kind.
52//
Nate Begemanb18121e2004-10-18 21:08:22 +000053//===----------------------------------------------------------------------===//
54
Dehao Chen6132ee82016-07-18 21:41:50 +000055#include "llvm/Transforms/Scalar/LoopStrengthReduce.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000056#include "llvm/ADT/APInt.h"
57#include "llvm/ADT/DenseMap.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000058#include "llvm/ADT/DenseSet.h"
Benjamin Kramer62fb0cf2014-03-15 17:17:48 +000059#include "llvm/ADT/Hashing.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000060#include "llvm/ADT/PointerIntPair.h"
Chandler Carruth3bab7e12017-01-11 09:43:56 +000061#include "llvm/ADT/STLExtras.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000062#include "llvm/ADT/SetVector.h"
63#include "llvm/ADT/SmallBitVector.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000064#include "llvm/ADT/SmallPtrSet.h"
65#include "llvm/ADT/SmallSet.h"
66#include "llvm/ADT/SmallVector.h"
Eugene Zelenko306d2992017-10-18 21:46:47 +000067#include "llvm/ADT/iterator_range.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000068#include "llvm/Analysis/IVUsers.h"
Eugene Zelenko306d2992017-10-18 21:46:47 +000069#include "llvm/Analysis/LoopAnalysisManager.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000070#include "llvm/Analysis/LoopInfo.h"
Devang Patelb0743b52007-03-06 21:14:09 +000071#include "llvm/Analysis/LoopPass.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000072#include "llvm/Analysis/ScalarEvolution.h"
Nate Begemane68bcd12005-07-30 00:15:07 +000073#include "llvm/Analysis/ScalarEvolutionExpander.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000074#include "llvm/Analysis/ScalarEvolutionExpressions.h"
75#include "llvm/Analysis/ScalarEvolutionNormalization.h"
Chandler Carruth26c59fa2013-01-07 14:41:08 +000076#include "llvm/Analysis/TargetTransformInfo.h"
David Blaikie31b98d22018-06-04 21:23:21 +000077#include "llvm/Transforms/Utils/Local.h"
Nico Weber432a3882018-04-30 14:59:11 +000078#include "llvm/Config/llvm-config.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000079#include "llvm/IR/BasicBlock.h"
80#include "llvm/IR/Constant.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000081#include "llvm/IR/Constants.h"
82#include "llvm/IR/DerivedTypes.h"
Chandler Carruth5ad5f152014-01-13 09:26:24 +000083#include "llvm/IR/Dominators.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000084#include "llvm/IR/GlobalValue.h"
Chandler Carruth3bab7e12017-01-11 09:43:56 +000085#include "llvm/IR/IRBuilder.h"
Eugene Zelenko306d2992017-10-18 21:46:47 +000086#include "llvm/IR/InstrTypes.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000087#include "llvm/IR/Instruction.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000088#include "llvm/IR/Instructions.h"
89#include "llvm/IR/IntrinsicInst.h"
Eugene Zelenko306d2992017-10-18 21:46:47 +000090#include "llvm/IR/Intrinsics.h"
Chandler Carruth3bab7e12017-01-11 09:43:56 +000091#include "llvm/IR/Module.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000092#include "llvm/IR/OperandTraits.h"
93#include "llvm/IR/Operator.h"
Eugene Zelenko306d2992017-10-18 21:46:47 +000094#include "llvm/IR/PassManager.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000095#include "llvm/IR/Type.h"
Eugene Zelenko306d2992017-10-18 21:46:47 +000096#include "llvm/IR/Use.h"
97#include "llvm/IR/User.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +000098#include "llvm/IR/Value.h"
Chandler Carruth4220e9c2014-03-04 11:17:44 +000099#include "llvm/IR/ValueHandle.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000100#include "llvm/Pass.h"
101#include "llvm/Support/Casting.h"
Andrew Trick58124392011-09-27 00:44:14 +0000102#include "llvm/Support/CommandLine.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000103#include "llvm/Support/Compiler.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +0000104#include "llvm/Support/Debug.h"
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000105#include "llvm/Support/ErrorHandling.h"
106#include "llvm/Support/MathExtras.h"
Daniel Dunbar6115b392009-07-26 09:48:23 +0000107#include "llvm/Support/raw_ostream.h"
Dehao Chen6132ee82016-07-18 21:41:50 +0000108#include "llvm/Transforms/Scalar.h"
David Blaikiea373d182018-03-28 17:44:36 +0000109#include "llvm/Transforms/Utils.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +0000110#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Jeff Cohenc5009912005-07-30 18:22:27 +0000111#include <algorithm>
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000112#include <cassert>
113#include <cstddef>
114#include <cstdint>
115#include <cstdlib>
116#include <iterator>
Eugene Zelenko306d2992017-10-18 21:46:47 +0000117#include <limits>
David Greenffc922ec2019-03-07 13:44:40 +0000118#include <numeric>
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000119#include <map>
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000120#include <utility>
121
Nate Begemanb18121e2004-10-18 21:08:22 +0000122using namespace llvm;
123
Chandler Carruth964daaa2014-04-22 02:55:47 +0000124#define DEBUG_TYPE "loop-reduce"
125
Hiroshi Inouef2096492018-06-14 05:41:49 +0000126/// MaxIVUsers is an arbitrary threshold that provides an early opportunity for
Andrew Trick19f80c12012-04-18 04:00:10 +0000127/// bail out. This threshold is far beyond the number of users that LSR can
128/// conceivably solve, so it should not affect generated code, but catches the
129/// worst cases before LSR burns too much compile time and stack space.
130static const unsigned MaxIVUsers = 200;
131
Andrew Trickecbe22b2011-10-11 02:30:45 +0000132// Temporary flag to cleanup congruent phis after LSR phi expansion.
133// It's currently disabled until we can determine whether it's truly useful or
134// not. The flag should be removed after the v3.0 release.
Andrew Trick06f6c052012-01-07 07:08:17 +0000135// This is now needed for ivchains.
Benjamin Kramer7ba71be2011-11-26 23:01:57 +0000136static cl::opt<bool> EnablePhiElim(
Andrew Trick06f6c052012-01-07 07:08:17 +0000137 "enable-lsr-phielim", cl::Hidden, cl::init(true),
138 cl::desc("Enable LSR phi elimination"));
Andrew Trick58124392011-09-27 00:44:14 +0000139
Evgeny Stupachenkofe6f5482017-02-11 02:57:43 +0000140// The flag adds instruction count to solutions cost comparision.
141static cl::opt<bool> InsnsCost(
Evgeny Stupachenkoc6752902017-08-07 19:56:34 +0000142 "lsr-insns-cost", cl::Hidden, cl::init(true),
Evgeny Stupachenkofe6f5482017-02-11 02:57:43 +0000143 cl::desc("Add instruction count to a LSR cost model"));
144
Evgeny Stupachenko9909872e302017-02-21 07:34:40 +0000145// Flag to choose how to narrow complex lsr solution
146static cl::opt<bool> LSRExpNarrow(
Evgeny Stupachenkod6aa0d02017-03-04 03:14:05 +0000147 "lsr-exp-narrow", cl::Hidden, cl::init(false),
Evgeny Stupachenko9909872e302017-02-21 07:34:40 +0000148 cl::desc("Narrow LSR complex solution using"
149 " expectation of registers number"));
150
Wei Mi90707392017-07-06 15:52:14 +0000151// Flag to narrow search space by filtering non-optimal formulae with
152// the same ScaledReg and Scale.
153static cl::opt<bool> FilterSameScaledReg(
154 "lsr-filter-same-scaled-reg", cl::Hidden, cl::init(true),
155 cl::desc("Narrow LSR search space by filtering non-optimal formulae"
156 " with the same ScaledReg and Scale"));
157
Sam Parker67756c02019-02-07 13:32:54 +0000158static cl::opt<bool> EnableBackedgeIndexing(
159 "lsr-backedge-indexing", cl::Hidden, cl::init(true),
160 cl::desc("Enable the generation of cross iteration indexed memops"));
161
Sam Parkerd6ebf012018-11-29 08:34:22 +0000162static cl::opt<unsigned> ComplexityLimit(
163 "lsr-complexity-limit", cl::Hidden,
164 cl::init(std::numeric_limits<uint16_t>::max()),
165 cl::desc("LSR search space complexity limit"));
166
David Greenffc922ec2019-03-07 13:44:40 +0000167static cl::opt<bool> EnableRecursiveSetupCost(
168 "lsr-recursive-setupcost", cl::Hidden, cl::init(true),
169 cl::desc("Enable more thorough lsr setup cost calculation"));
170
Andrew Trick248d4102012-01-09 21:18:52 +0000171#ifndef NDEBUG
172// Stress test IV chain generation.
173static cl::opt<bool> StressIVChain(
174 "stress-ivchain", cl::Hidden, cl::init(false),
175 cl::desc("Stress test LSR IV chains"));
176#else
177static bool StressIVChain = false;
178#endif
179
Dan Gohman45774ce2010-02-12 10:34:29 +0000180namespace {
Nate Begemanb18121e2004-10-18 21:08:22 +0000181
Matt Arsenault427a0fd2015-08-15 00:53:06 +0000182struct MemAccessTy {
183 /// Used in situations where the accessed memory type is unknown.
Eugene Zelenko306d2992017-10-18 21:46:47 +0000184 static const unsigned UnknownAddressSpace =
185 std::numeric_limits<unsigned>::max();
Matt Arsenault427a0fd2015-08-15 00:53:06 +0000186
Eugene Zelenko306d2992017-10-18 21:46:47 +0000187 Type *MemTy = nullptr;
188 unsigned AddrSpace = UnknownAddressSpace;
Matt Arsenault427a0fd2015-08-15 00:53:06 +0000189
Eugene Zelenko306d2992017-10-18 21:46:47 +0000190 MemAccessTy() = default;
191 MemAccessTy(Type *Ty, unsigned AS) : MemTy(Ty), AddrSpace(AS) {}
Matt Arsenault427a0fd2015-08-15 00:53:06 +0000192
193 bool operator==(MemAccessTy Other) const {
194 return MemTy == Other.MemTy && AddrSpace == Other.AddrSpace;
195 }
196
197 bool operator!=(MemAccessTy Other) const { return !(*this == Other); }
198
Matt Arsenault1f2ca662017-01-30 19:50:17 +0000199 static MemAccessTy getUnknown(LLVMContext &Ctx,
200 unsigned AS = UnknownAddressSpace) {
201 return MemAccessTy(Type::getVoidTy(Ctx), AS);
Matt Arsenault427a0fd2015-08-15 00:53:06 +0000202 }
Krzysztof Parzyszek0b377e02018-03-26 13:10:09 +0000203
204 Type *getType() { return MemTy; }
Matt Arsenault427a0fd2015-08-15 00:53:06 +0000205};
206
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000207/// This class holds data which is used to order reuse candidates.
Dan Gohman45774ce2010-02-12 10:34:29 +0000208class RegSortData {
209public:
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000210 /// This represents the set of LSRUse indices which reference
Dan Gohman45774ce2010-02-12 10:34:29 +0000211 /// a particular register.
212 SmallBitVector UsedByIndices;
213
Dan Gohman45774ce2010-02-12 10:34:29 +0000214 void print(raw_ostream &OS) const;
215 void dump() const;
216};
217
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000218} // end anonymous namespace
Dan Gohman45774ce2010-02-12 10:34:29 +0000219
Aaron Ballman615eb472017-10-15 14:32:27 +0000220#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohman45774ce2010-02-12 10:34:29 +0000221void RegSortData::print(raw_ostream &OS) const {
222 OS << "[NumUses=" << UsedByIndices.count() << ']';
223}
224
Matthias Braun8c209aa2017-01-28 02:02:38 +0000225LLVM_DUMP_METHOD void RegSortData::dump() const {
Dan Gohman45774ce2010-02-12 10:34:29 +0000226 print(errs()); errs() << '\n';
227}
Matthias Braun8c209aa2017-01-28 02:02:38 +0000228#endif
Dan Gohman2a12ae72009-02-20 04:17:46 +0000229
Chris Lattner79a42ac2006-12-19 21:40:18 +0000230namespace {
Dale Johannesene3a02be2007-03-20 00:47:50 +0000231
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000232/// Map register candidates to information about how they are used.
Dan Gohman45774ce2010-02-12 10:34:29 +0000233class RegUseTracker {
Eugene Zelenko306d2992017-10-18 21:46:47 +0000234 using RegUsesTy = DenseMap<const SCEV *, RegSortData>;
Dale Johannesene3a02be2007-03-20 00:47:50 +0000235
Dan Gohman248c41d2010-05-18 22:33:00 +0000236 RegUsesTy RegUsesMap;
Dan Gohman45774ce2010-02-12 10:34:29 +0000237 SmallVector<const SCEV *, 16> RegSequence;
Evan Cheng3df447d2006-03-16 21:53:05 +0000238
Dan Gohman45774ce2010-02-12 10:34:29 +0000239public:
Sanjoy Das302bfd02015-08-16 18:22:43 +0000240 void countRegister(const SCEV *Reg, size_t LUIdx);
241 void dropRegister(const SCEV *Reg, size_t LUIdx);
242 void swapAndDropUse(size_t LUIdx, size_t LastLUIdx);
Dan Gohman51ad99d2010-01-21 02:09:26 +0000243
Dan Gohman45774ce2010-02-12 10:34:29 +0000244 bool isRegUsedByUsesOtherThan(const SCEV *Reg, size_t LUIdx) const;
Dan Gohman51ad99d2010-01-21 02:09:26 +0000245
Dan Gohman45774ce2010-02-12 10:34:29 +0000246 const SmallBitVector &getUsedByIndices(const SCEV *Reg) const;
Dan Gohman51ad99d2010-01-21 02:09:26 +0000247
Dan Gohman45774ce2010-02-12 10:34:29 +0000248 void clear();
Dan Gohman51ad99d2010-01-21 02:09:26 +0000249
Eugene Zelenko306d2992017-10-18 21:46:47 +0000250 using iterator = SmallVectorImpl<const SCEV *>::iterator;
251 using const_iterator = SmallVectorImpl<const SCEV *>::const_iterator;
252
Dan Gohman45774ce2010-02-12 10:34:29 +0000253 iterator begin() { return RegSequence.begin(); }
254 iterator end() { return RegSequence.end(); }
255 const_iterator begin() const { return RegSequence.begin(); }
256 const_iterator end() const { return RegSequence.end(); }
257};
Dan Gohman51ad99d2010-01-21 02:09:26 +0000258
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000259} // end anonymous namespace
Dan Gohman51ad99d2010-01-21 02:09:26 +0000260
Dan Gohman45774ce2010-02-12 10:34:29 +0000261void
Sanjoy Das302bfd02015-08-16 18:22:43 +0000262RegUseTracker::countRegister(const SCEV *Reg, size_t LUIdx) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000263 std::pair<RegUsesTy::iterator, bool> Pair =
Dan Gohman248c41d2010-05-18 22:33:00 +0000264 RegUsesMap.insert(std::make_pair(Reg, RegSortData()));
Dan Gohman45774ce2010-02-12 10:34:29 +0000265 RegSortData &RSD = Pair.first->second;
266 if (Pair.second)
267 RegSequence.push_back(Reg);
268 RSD.UsedByIndices.resize(std::max(RSD.UsedByIndices.size(), LUIdx + 1));
269 RSD.UsedByIndices.set(LUIdx);
Dan Gohman51ad99d2010-01-21 02:09:26 +0000270}
271
Dan Gohman4cf99b52010-05-18 23:42:37 +0000272void
Sanjoy Das302bfd02015-08-16 18:22:43 +0000273RegUseTracker::dropRegister(const SCEV *Reg, size_t LUIdx) {
Dan Gohman4cf99b52010-05-18 23:42:37 +0000274 RegUsesTy::iterator It = RegUsesMap.find(Reg);
275 assert(It != RegUsesMap.end());
276 RegSortData &RSD = It->second;
277 assert(RSD.UsedByIndices.size() > LUIdx);
278 RSD.UsedByIndices.reset(LUIdx);
279}
280
Dan Gohman20fab452010-05-19 23:43:12 +0000281void
Sanjoy Das302bfd02015-08-16 18:22:43 +0000282RegUseTracker::swapAndDropUse(size_t LUIdx, size_t LastLUIdx) {
Dan Gohmana7b68d62010-10-07 23:33:43 +0000283 assert(LUIdx <= LastLUIdx);
284
285 // Update RegUses. The data structure is not optimized for this purpose;
286 // we must iterate through it and update each of the bit vectors.
Craig Topper10949ae2015-05-23 08:45:10 +0000287 for (auto &Pair : RegUsesMap) {
288 SmallBitVector &UsedByIndices = Pair.second.UsedByIndices;
Dan Gohmana7b68d62010-10-07 23:33:43 +0000289 if (LUIdx < UsedByIndices.size())
290 UsedByIndices[LUIdx] =
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000291 LastLUIdx < UsedByIndices.size() ? UsedByIndices[LastLUIdx] : false;
Dan Gohmana7b68d62010-10-07 23:33:43 +0000292 UsedByIndices.resize(std::min(UsedByIndices.size(), LastLUIdx));
293 }
Dan Gohman20fab452010-05-19 23:43:12 +0000294}
295
Dan Gohman45774ce2010-02-12 10:34:29 +0000296bool
297RegUseTracker::isRegUsedByUsesOtherThan(const SCEV *Reg, size_t LUIdx) const {
Dan Gohman4f13bbf2010-08-29 15:18:49 +0000298 RegUsesTy::const_iterator I = RegUsesMap.find(Reg);
299 if (I == RegUsesMap.end())
300 return false;
301 const SmallBitVector &UsedByIndices = I->second.UsedByIndices;
Dan Gohman45774ce2010-02-12 10:34:29 +0000302 int i = UsedByIndices.find_first();
303 if (i == -1) return false;
304 if ((size_t)i != LUIdx) return true;
305 return UsedByIndices.find_next(i) != -1;
306}
Dan Gohman51ad99d2010-01-21 02:09:26 +0000307
Dan Gohman45774ce2010-02-12 10:34:29 +0000308const SmallBitVector &RegUseTracker::getUsedByIndices(const SCEV *Reg) const {
Dan Gohman248c41d2010-05-18 22:33:00 +0000309 RegUsesTy::const_iterator I = RegUsesMap.find(Reg);
310 assert(I != RegUsesMap.end() && "Unknown register!");
Dan Gohman45774ce2010-02-12 10:34:29 +0000311 return I->second.UsedByIndices;
312}
Dan Gohman51ad99d2010-01-21 02:09:26 +0000313
Dan Gohman45774ce2010-02-12 10:34:29 +0000314void RegUseTracker::clear() {
Dan Gohman248c41d2010-05-18 22:33:00 +0000315 RegUsesMap.clear();
Dan Gohman45774ce2010-02-12 10:34:29 +0000316 RegSequence.clear();
317}
Dan Gohman51ad99d2010-01-21 02:09:26 +0000318
Dan Gohman45774ce2010-02-12 10:34:29 +0000319namespace {
320
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000321/// This class holds information that describes a formula for computing
322/// satisfying a use. It may include broken-out immediates and scaled registers.
Dan Gohman45774ce2010-02-12 10:34:29 +0000323struct Formula {
Chandler Carruth6e479322013-01-07 15:04:40 +0000324 /// Global base address used for complex addressing.
Eugene Zelenko306d2992017-10-18 21:46:47 +0000325 GlobalValue *BaseGV = nullptr;
Chandler Carruth6e479322013-01-07 15:04:40 +0000326
327 /// Base offset for complex addressing.
Eugene Zelenko306d2992017-10-18 21:46:47 +0000328 int64_t BaseOffset = 0;
Chandler Carruth6e479322013-01-07 15:04:40 +0000329
330 /// Whether any complex addressing has a base register.
Eugene Zelenko306d2992017-10-18 21:46:47 +0000331 bool HasBaseReg = false;
Chandler Carruth6e479322013-01-07 15:04:40 +0000332
333 /// The scale of any complex addressing.
Eugene Zelenko306d2992017-10-18 21:46:47 +0000334 int64_t Scale = 0;
Dan Gohman45774ce2010-02-12 10:34:29 +0000335
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000336 /// The list of "base" registers for this use. When this is non-empty. The
337 /// canonical representation of a formula is
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000338 /// 1. BaseRegs.size > 1 implies ScaledReg != NULL and
339 /// 2. ScaledReg != NULL implies Scale != 1 || !BaseRegs.empty().
Wei Mi74d5a902017-02-22 21:47:08 +0000340 /// 3. The reg containing recurrent expr related with currect loop in the
341 /// formula should be put in the ScaledReg.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000342 /// #1 enforces that the scaled register is always used when at least two
343 /// registers are needed by the formula: e.g., reg1 + reg2 is reg1 + 1 * reg2.
344 /// #2 enforces that 1 * reg is reg.
Wei Mi74d5a902017-02-22 21:47:08 +0000345 /// #3 ensures invariant regs with respect to current loop can be combined
346 /// together in LSR codegen.
Hiroshi Inouef2096492018-06-14 05:41:49 +0000347 /// This invariant can be temporarily broken while building a formula.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000348 /// However, every formula inserted into the LSRInstance must be in canonical
349 /// form.
Preston Gurd25c3b6a2013-02-01 20:41:27 +0000350 SmallVector<const SCEV *, 4> BaseRegs;
Dan Gohman45774ce2010-02-12 10:34:29 +0000351
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000352 /// The 'scaled' register for this use. This should be non-null when Scale is
353 /// not zero.
Eugene Zelenko306d2992017-10-18 21:46:47 +0000354 const SCEV *ScaledReg = nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +0000355
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000356 /// An additional constant offset which added near the use. This requires a
357 /// temporary register, but the offset itself can live in an add immediate
358 /// field rather than a register.
Eugene Zelenko306d2992017-10-18 21:46:47 +0000359 int64_t UnfoldedOffset = 0;
Dan Gohman6136e942011-05-03 00:46:49 +0000360
Eugene Zelenko306d2992017-10-18 21:46:47 +0000361 Formula() = default;
Dan Gohman45774ce2010-02-12 10:34:29 +0000362
Sanjoy Das302bfd02015-08-16 18:22:43 +0000363 void initialMatch(const SCEV *S, Loop *L, ScalarEvolution &SE);
Dan Gohman45774ce2010-02-12 10:34:29 +0000364
Wei Mi74d5a902017-02-22 21:47:08 +0000365 bool isCanonical(const Loop &L) const;
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000366
Wei Mi74d5a902017-02-22 21:47:08 +0000367 void canonicalize(const Loop &L);
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000368
Sanjoy Das302bfd02015-08-16 18:22:43 +0000369 bool unscale();
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000370
Evgeny Stupachenkofe6f5482017-02-11 02:57:43 +0000371 bool hasZeroEnd() const;
372
Adam Nemetdeab6f92014-04-29 18:25:28 +0000373 size_t getNumRegs() const;
Chris Lattner229907c2011-07-18 04:54:35 +0000374 Type *getType() const;
Dan Gohman45774ce2010-02-12 10:34:29 +0000375
Sanjoy Das302bfd02015-08-16 18:22:43 +0000376 void deleteBaseReg(const SCEV *&S);
Dan Gohman80a96082010-05-20 15:17:54 +0000377
Dan Gohman45774ce2010-02-12 10:34:29 +0000378 bool referencesReg(const SCEV *S) const;
379 bool hasRegsUsedByUsesOtherThan(size_t LUIdx,
380 const RegUseTracker &RegUses) const;
381
382 void print(raw_ostream &OS) const;
383 void dump() const;
384};
385
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000386} // end anonymous namespace
Dan Gohman45774ce2010-02-12 10:34:29 +0000387
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000388/// Recursion helper for initialMatch.
Dan Gohman45774ce2010-02-12 10:34:29 +0000389static void DoInitialMatch(const SCEV *S, Loop *L,
390 SmallVectorImpl<const SCEV *> &Good,
391 SmallVectorImpl<const SCEV *> &Bad,
Dan Gohman20d9ce22010-11-17 21:41:58 +0000392 ScalarEvolution &SE) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000393 // Collect expressions which properly dominate the loop header.
Dan Gohman20d9ce22010-11-17 21:41:58 +0000394 if (SE.properlyDominates(S, L->getHeader())) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000395 Good.push_back(S);
396 return;
Dan Gohman51ad99d2010-01-21 02:09:26 +0000397 }
Dan Gohman45774ce2010-02-12 10:34:29 +0000398
399 // Look at add operands.
400 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
Craig Topper77b99412015-05-23 08:01:41 +0000401 for (const SCEV *S : Add->operands())
402 DoInitialMatch(S, L, Good, Bad, SE);
Dan Gohman45774ce2010-02-12 10:34:29 +0000403 return;
404 }
405
406 // Look at addrec operands.
407 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S))
Alexandros Lamprineas0ee3ec22016-11-09 08:53:07 +0000408 if (!AR->getStart()->isZero() && AR->isAffine()) {
Dan Gohman20d9ce22010-11-17 21:41:58 +0000409 DoInitialMatch(AR->getStart(), L, Good, Bad, SE);
Dan Gohman1d2ded72010-05-03 22:09:21 +0000410 DoInitialMatch(SE.getAddRecExpr(SE.getConstant(AR->getType(), 0),
Dan Gohman45774ce2010-02-12 10:34:29 +0000411 AR->getStepRecurrence(SE),
Andrew Trick8b55b732011-03-14 16:50:06 +0000412 // FIXME: AR->getNoWrapFlags()
413 AR->getLoop(), SCEV::FlagAnyWrap),
Dan Gohman20d9ce22010-11-17 21:41:58 +0000414 L, Good, Bad, SE);
Dan Gohman45774ce2010-02-12 10:34:29 +0000415 return;
416 }
417
418 // Handle a multiplication by -1 (negation) if it didn't fold.
419 if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S))
420 if (Mul->getOperand(0)->isAllOnesValue()) {
421 SmallVector<const SCEV *, 4> Ops(Mul->op_begin()+1, Mul->op_end());
422 const SCEV *NewMul = SE.getMulExpr(Ops);
423
424 SmallVector<const SCEV *, 4> MyGood;
425 SmallVector<const SCEV *, 4> MyBad;
Dan Gohman20d9ce22010-11-17 21:41:58 +0000426 DoInitialMatch(NewMul, L, MyGood, MyBad, SE);
Dan Gohman45774ce2010-02-12 10:34:29 +0000427 const SCEV *NegOne = SE.getSCEV(ConstantInt::getAllOnesValue(
428 SE.getEffectiveSCEVType(NewMul->getType())));
Craig Topper042a3922015-05-25 20:01:18 +0000429 for (const SCEV *S : MyGood)
430 Good.push_back(SE.getMulExpr(NegOne, S));
431 for (const SCEV *S : MyBad)
432 Bad.push_back(SE.getMulExpr(NegOne, S));
Dan Gohman45774ce2010-02-12 10:34:29 +0000433 return;
434 }
435
436 // Ok, we can't do anything interesting. Just stuff the whole thing into a
437 // register and hope for the best.
438 Bad.push_back(S);
439}
440
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000441/// Incorporate loop-variant parts of S into this Formula, attempting to keep
442/// all loop-invariant and loop-computable values in a single base register.
Sanjoy Das302bfd02015-08-16 18:22:43 +0000443void Formula::initialMatch(const SCEV *S, Loop *L, ScalarEvolution &SE) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000444 SmallVector<const SCEV *, 4> Good;
445 SmallVector<const SCEV *, 4> Bad;
Dan Gohman20d9ce22010-11-17 21:41:58 +0000446 DoInitialMatch(S, L, Good, Bad, SE);
Dan Gohman45774ce2010-02-12 10:34:29 +0000447 if (!Good.empty()) {
Dan Gohman9b5d0bb72010-04-08 23:36:27 +0000448 const SCEV *Sum = SE.getAddExpr(Good);
449 if (!Sum->isZero())
450 BaseRegs.push_back(Sum);
Chandler Carruth6e479322013-01-07 15:04:40 +0000451 HasBaseReg = true;
Dan Gohman45774ce2010-02-12 10:34:29 +0000452 }
453 if (!Bad.empty()) {
Dan Gohman9b5d0bb72010-04-08 23:36:27 +0000454 const SCEV *Sum = SE.getAddExpr(Bad);
455 if (!Sum->isZero())
456 BaseRegs.push_back(Sum);
Chandler Carruth6e479322013-01-07 15:04:40 +0000457 HasBaseReg = true;
Dan Gohman45774ce2010-02-12 10:34:29 +0000458 }
Wei Mi74d5a902017-02-22 21:47:08 +0000459 canonicalize(*L);
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000460}
461
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000462/// Check whether or not this formula satisfies the canonical
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000463/// representation.
464/// \see Formula::BaseRegs.
Wei Mi74d5a902017-02-22 21:47:08 +0000465bool Formula::isCanonical(const Loop &L) const {
466 if (!ScaledReg)
467 return BaseRegs.size() <= 1;
468
469 if (Scale != 1)
470 return true;
471
472 if (Scale == 1 && BaseRegs.empty())
473 return false;
474
475 const SCEVAddRecExpr *SAR = dyn_cast<const SCEVAddRecExpr>(ScaledReg);
476 if (SAR && SAR->getLoop() == &L)
477 return true;
478
479 // If ScaledReg is not a recurrent expr, or it is but its loop is not current
480 // loop, meanwhile BaseRegs contains a recurrent expr reg related with current
481 // loop, we want to swap the reg in BaseRegs with ScaledReg.
482 auto I =
483 find_if(make_range(BaseRegs.begin(), BaseRegs.end()), [&](const SCEV *S) {
484 return isa<const SCEVAddRecExpr>(S) &&
485 (cast<SCEVAddRecExpr>(S)->getLoop() == &L);
486 });
487 return I == BaseRegs.end();
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000488}
489
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000490/// Helper method to morph a formula into its canonical representation.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000491/// \see Formula::BaseRegs.
492/// Every formula having more than one base register, must use the ScaledReg
493/// field. Otherwise, we would have to do special cases everywhere in LSR
494/// to treat reg1 + reg2 + ... the same way as reg1 + 1*reg2 + ...
495/// On the other hand, 1*reg should be canonicalized into reg.
Wei Mi74d5a902017-02-22 21:47:08 +0000496void Formula::canonicalize(const Loop &L) {
497 if (isCanonical(L))
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000498 return;
499 // So far we did not need this case. This is easy to implement but it is
500 // useless to maintain dead code. Beside it could hurt compile time.
501 assert(!BaseRegs.empty() && "1*reg => reg, should not be needed.");
Wei Mi74d5a902017-02-22 21:47:08 +0000502
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000503 // Keep the invariant sum in BaseRegs and one of the variant sum in ScaledReg.
Wei Mi74d5a902017-02-22 21:47:08 +0000504 if (!ScaledReg) {
505 ScaledReg = BaseRegs.back();
506 BaseRegs.pop_back();
507 Scale = 1;
508 }
509
510 // If ScaledReg is an invariant with respect to L, find the reg from
511 // BaseRegs containing the recurrent expr related with Loop L. Swap the
512 // reg with ScaledReg.
513 const SCEVAddRecExpr *SAR = dyn_cast<const SCEVAddRecExpr>(ScaledReg);
514 if (!SAR || SAR->getLoop() != &L) {
515 auto I = find_if(make_range(BaseRegs.begin(), BaseRegs.end()),
516 [&](const SCEV *S) {
517 return isa<const SCEVAddRecExpr>(S) &&
518 (cast<SCEVAddRecExpr>(S)->getLoop() == &L);
519 });
520 if (I != BaseRegs.end())
521 std::swap(ScaledReg, *I);
522 }
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000523}
524
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000525/// Get rid of the scale in the formula.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000526/// In other words, this method morphes reg1 + 1*reg2 into reg1 + reg2.
527/// \return true if it was possible to get rid of the scale, false otherwise.
528/// \note After this operation the formula may not be in the canonical form.
Sanjoy Das302bfd02015-08-16 18:22:43 +0000529bool Formula::unscale() {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000530 if (Scale != 1)
531 return false;
532 Scale = 0;
533 BaseRegs.push_back(ScaledReg);
534 ScaledReg = nullptr;
535 return true;
Dan Gohman45774ce2010-02-12 10:34:29 +0000536}
537
Evgeny Stupachenkofe6f5482017-02-11 02:57:43 +0000538bool Formula::hasZeroEnd() const {
539 if (UnfoldedOffset || BaseOffset)
540 return false;
541 if (BaseRegs.size() != 1 || ScaledReg)
542 return false;
543 return true;
544}
545
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000546/// Return the total number of register operands used by this formula. This does
547/// not include register uses implied by non-constant addrec strides.
Adam Nemetdeab6f92014-04-29 18:25:28 +0000548size_t Formula::getNumRegs() const {
Dan Gohman45774ce2010-02-12 10:34:29 +0000549 return !!ScaledReg + BaseRegs.size();
550}
551
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000552/// Return the type of this formula, if it has one, or null otherwise. This type
553/// is meaningless except for the bit size.
Chris Lattner229907c2011-07-18 04:54:35 +0000554Type *Formula::getType() const {
Sanjoy Das215df9e2015-08-04 01:52:05 +0000555 return !BaseRegs.empty() ? BaseRegs.front()->getType() :
556 ScaledReg ? ScaledReg->getType() :
557 BaseGV ? BaseGV->getType() :
558 nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +0000559}
560
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000561/// Delete the given base reg from the BaseRegs list.
Sanjoy Das302bfd02015-08-16 18:22:43 +0000562void Formula::deleteBaseReg(const SCEV *&S) {
Dan Gohman80a96082010-05-20 15:17:54 +0000563 if (&S != &BaseRegs.back())
564 std::swap(S, BaseRegs.back());
565 BaseRegs.pop_back();
566}
567
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000568/// Test if this formula references the given register.
Dan Gohman45774ce2010-02-12 10:34:29 +0000569bool Formula::referencesReg(const SCEV *S) const {
David Majnemer0d955d02016-08-11 22:21:41 +0000570 return S == ScaledReg || is_contained(BaseRegs, S);
Dan Gohman45774ce2010-02-12 10:34:29 +0000571}
572
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000573/// Test whether this formula uses registers which are used by uses other than
574/// the use with the given index.
Dan Gohman45774ce2010-02-12 10:34:29 +0000575bool Formula::hasRegsUsedByUsesOtherThan(size_t LUIdx,
576 const RegUseTracker &RegUses) const {
577 if (ScaledReg)
578 if (RegUses.isRegUsedByUsesOtherThan(ScaledReg, LUIdx))
579 return true;
Craig Topper042a3922015-05-25 20:01:18 +0000580 for (const SCEV *BaseReg : BaseRegs)
581 if (RegUses.isRegUsedByUsesOtherThan(BaseReg, LUIdx))
Dan Gohman45774ce2010-02-12 10:34:29 +0000582 return true;
583 return false;
584}
585
Aaron Ballman615eb472017-10-15 14:32:27 +0000586#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohman45774ce2010-02-12 10:34:29 +0000587void Formula::print(raw_ostream &OS) const {
588 bool First = true;
Chandler Carruth6e479322013-01-07 15:04:40 +0000589 if (BaseGV) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000590 if (!First) OS << " + "; else First = false;
Chandler Carruthd48cdbf2014-01-09 02:29:41 +0000591 BaseGV->printAsOperand(OS, /*PrintType=*/false);
Dan Gohman45774ce2010-02-12 10:34:29 +0000592 }
Chandler Carruth6e479322013-01-07 15:04:40 +0000593 if (BaseOffset != 0) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000594 if (!First) OS << " + "; else First = false;
Chandler Carruth6e479322013-01-07 15:04:40 +0000595 OS << BaseOffset;
Dan Gohman45774ce2010-02-12 10:34:29 +0000596 }
Craig Topper042a3922015-05-25 20:01:18 +0000597 for (const SCEV *BaseReg : BaseRegs) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000598 if (!First) OS << " + "; else First = false;
Sanjoy Das215df9e2015-08-04 01:52:05 +0000599 OS << "reg(" << *BaseReg << ')';
Dan Gohman45774ce2010-02-12 10:34:29 +0000600 }
Chandler Carruth6e479322013-01-07 15:04:40 +0000601 if (HasBaseReg && BaseRegs.empty()) {
Dan Gohman06ab08f2010-05-18 22:35:55 +0000602 if (!First) OS << " + "; else First = false;
603 OS << "**error: HasBaseReg**";
Chandler Carruth6e479322013-01-07 15:04:40 +0000604 } else if (!HasBaseReg && !BaseRegs.empty()) {
Dan Gohman06ab08f2010-05-18 22:35:55 +0000605 if (!First) OS << " + "; else First = false;
606 OS << "**error: !HasBaseReg**";
607 }
Chandler Carruth6e479322013-01-07 15:04:40 +0000608 if (Scale != 0) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000609 if (!First) OS << " + "; else First = false;
Chandler Carruth6e479322013-01-07 15:04:40 +0000610 OS << Scale << "*reg(";
Sanjoy Das215df9e2015-08-04 01:52:05 +0000611 if (ScaledReg)
612 OS << *ScaledReg;
613 else
Dan Gohman45774ce2010-02-12 10:34:29 +0000614 OS << "<unknown>";
615 OS << ')';
616 }
Dan Gohman6136e942011-05-03 00:46:49 +0000617 if (UnfoldedOffset != 0) {
Arnaud A. de Grandmaison75c9e6d2014-03-15 22:13:15 +0000618 if (!First) OS << " + ";
Dan Gohman6136e942011-05-03 00:46:49 +0000619 OS << "imm(" << UnfoldedOffset << ')';
620 }
Dan Gohman45774ce2010-02-12 10:34:29 +0000621}
622
Matthias Braun8c209aa2017-01-28 02:02:38 +0000623LLVM_DUMP_METHOD void Formula::dump() const {
Dan Gohman45774ce2010-02-12 10:34:29 +0000624 print(errs()); errs() << '\n';
625}
Matthias Braun8c209aa2017-01-28 02:02:38 +0000626#endif
Dan Gohman45774ce2010-02-12 10:34:29 +0000627
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000628/// Return true if the given addrec can be sign-extended without changing its
629/// value.
Dan Gohman85af2562010-02-19 19:32:49 +0000630static bool isAddRecSExtable(const SCEVAddRecExpr *AR, ScalarEvolution &SE) {
Chris Lattner229907c2011-07-18 04:54:35 +0000631 Type *WideTy =
Dan Gohmanab5fb7f2010-05-20 19:44:23 +0000632 IntegerType::get(SE.getContext(), SE.getTypeSizeInBits(AR->getType()) + 1);
Dan Gohman85af2562010-02-19 19:32:49 +0000633 return isa<SCEVAddRecExpr>(SE.getSignExtendExpr(AR, WideTy));
634}
635
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000636/// Return true if the given add can be sign-extended without changing its
637/// value.
Dan Gohman85af2562010-02-19 19:32:49 +0000638static bool isAddSExtable(const SCEVAddExpr *A, ScalarEvolution &SE) {
Chris Lattner229907c2011-07-18 04:54:35 +0000639 Type *WideTy =
Dan Gohmanab5fb7f2010-05-20 19:44:23 +0000640 IntegerType::get(SE.getContext(), SE.getTypeSizeInBits(A->getType()) + 1);
Dan Gohman85af2562010-02-19 19:32:49 +0000641 return isa<SCEVAddExpr>(SE.getSignExtendExpr(A, WideTy));
642}
643
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000644/// Return true if the given mul can be sign-extended without changing its
645/// value.
Dan Gohmanab542222010-06-24 16:45:11 +0000646static bool isMulSExtable(const SCEVMulExpr *M, ScalarEvolution &SE) {
Chris Lattner229907c2011-07-18 04:54:35 +0000647 Type *WideTy =
Dan Gohmanab542222010-06-24 16:45:11 +0000648 IntegerType::get(SE.getContext(),
649 SE.getTypeSizeInBits(M->getType()) * M->getNumOperands());
650 return isa<SCEVMulExpr>(SE.getSignExtendExpr(M, WideTy));
Dan Gohman85af2562010-02-19 19:32:49 +0000651}
652
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000653/// Return an expression for LHS /s RHS, if it can be determined and if the
654/// remainder is known to be zero, or null otherwise. If IgnoreSignificantBits
655/// is true, expressions like (X * Y) /s Y are simplified to Y, ignoring that
656/// the multiplication may overflow, which is useful when the result will be
657/// used in a context where the most significant bits are ignored.
Dan Gohman4eebb942010-02-19 19:35:48 +0000658static const SCEV *getExactSDiv(const SCEV *LHS, const SCEV *RHS,
659 ScalarEvolution &SE,
660 bool IgnoreSignificantBits = false) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000661 // Handle the trivial case, which works for any SCEV type.
662 if (LHS == RHS)
Dan Gohman1d2ded72010-05-03 22:09:21 +0000663 return SE.getConstant(LHS->getType(), 1);
Dan Gohman45774ce2010-02-12 10:34:29 +0000664
Dan Gohman47ddf762010-06-24 16:51:25 +0000665 // Handle a few RHS special cases.
666 const SCEVConstant *RC = dyn_cast<SCEVConstant>(RHS);
667 if (RC) {
Sanjoy Das0de2fec2015-12-17 20:28:46 +0000668 const APInt &RA = RC->getAPInt();
Dan Gohman47ddf762010-06-24 16:51:25 +0000669 // Handle x /s -1 as x * -1, to give ScalarEvolution a chance to do
670 // some folding.
671 if (RA.isAllOnesValue())
672 return SE.getMulExpr(LHS, RC);
673 // Handle x /s 1 as x.
674 if (RA == 1)
675 return LHS;
676 }
Dan Gohman45774ce2010-02-12 10:34:29 +0000677
678 // Check for a division of a constant by a constant.
679 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(LHS)) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000680 if (!RC)
Craig Topperf40110f2014-04-25 05:29:35 +0000681 return nullptr;
Sanjoy Das0de2fec2015-12-17 20:28:46 +0000682 const APInt &LA = C->getAPInt();
683 const APInt &RA = RC->getAPInt();
Dan Gohman47ddf762010-06-24 16:51:25 +0000684 if (LA.srem(RA) != 0)
Craig Topperf40110f2014-04-25 05:29:35 +0000685 return nullptr;
Dan Gohman47ddf762010-06-24 16:51:25 +0000686 return SE.getConstant(LA.sdiv(RA));
Dan Gohman45774ce2010-02-12 10:34:29 +0000687 }
688
Dan Gohman85af2562010-02-19 19:32:49 +0000689 // Distribute the sdiv over addrec operands, if the addrec doesn't overflow.
Dan Gohman45774ce2010-02-12 10:34:29 +0000690 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(LHS)) {
Alexandros Lamprineas0ee3ec22016-11-09 08:53:07 +0000691 if ((IgnoreSignificantBits || isAddRecSExtable(AR, SE)) && AR->isAffine()) {
Dan Gohman4eebb942010-02-19 19:35:48 +0000692 const SCEV *Step = getExactSDiv(AR->getStepRecurrence(SE), RHS, SE,
693 IgnoreSignificantBits);
Craig Topperf40110f2014-04-25 05:29:35 +0000694 if (!Step) return nullptr;
Dan Gohman129a8162010-08-19 01:02:31 +0000695 const SCEV *Start = getExactSDiv(AR->getStart(), RHS, SE,
696 IgnoreSignificantBits);
Craig Topperf40110f2014-04-25 05:29:35 +0000697 if (!Start) return nullptr;
Andrew Trick8b55b732011-03-14 16:50:06 +0000698 // FlagNW is independent of the start value, step direction, and is
699 // preserved with smaller magnitude steps.
700 // FIXME: AR->getNoWrapFlags(SCEV::FlagNW)
701 return SE.getAddRecExpr(Start, Step, AR->getLoop(), SCEV::FlagAnyWrap);
Dan Gohman85af2562010-02-19 19:32:49 +0000702 }
Craig Topperf40110f2014-04-25 05:29:35 +0000703 return nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +0000704 }
705
Dan Gohman85af2562010-02-19 19:32:49 +0000706 // Distribute the sdiv over add operands, if the add doesn't overflow.
Dan Gohman45774ce2010-02-12 10:34:29 +0000707 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(LHS)) {
Dan Gohman85af2562010-02-19 19:32:49 +0000708 if (IgnoreSignificantBits || isAddSExtable(Add, SE)) {
709 SmallVector<const SCEV *, 8> Ops;
Craig Topper042a3922015-05-25 20:01:18 +0000710 for (const SCEV *S : Add->operands()) {
711 const SCEV *Op = getExactSDiv(S, RHS, SE, IgnoreSignificantBits);
Craig Topperf40110f2014-04-25 05:29:35 +0000712 if (!Op) return nullptr;
Dan Gohman85af2562010-02-19 19:32:49 +0000713 Ops.push_back(Op);
714 }
715 return SE.getAddExpr(Ops);
Dan Gohman45774ce2010-02-12 10:34:29 +0000716 }
Craig Topperf40110f2014-04-25 05:29:35 +0000717 return nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +0000718 }
719
720 // Check for a multiply operand that we can pull RHS out of.
Dan Gohman963b1c12010-06-24 16:57:52 +0000721 if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(LHS)) {
Dan Gohman85af2562010-02-19 19:32:49 +0000722 if (IgnoreSignificantBits || isMulSExtable(Mul, SE)) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000723 SmallVector<const SCEV *, 4> Ops;
724 bool Found = false;
Craig Topper042a3922015-05-25 20:01:18 +0000725 for (const SCEV *S : Mul->operands()) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000726 if (!Found)
Dan Gohman6b733fc2010-05-20 16:23:28 +0000727 if (const SCEV *Q = getExactSDiv(S, RHS, SE,
Dan Gohman4eebb942010-02-19 19:35:48 +0000728 IgnoreSignificantBits)) {
Dan Gohman6b733fc2010-05-20 16:23:28 +0000729 S = Q;
Dan Gohman45774ce2010-02-12 10:34:29 +0000730 Found = true;
Dan Gohman45774ce2010-02-12 10:34:29 +0000731 }
Dan Gohman6b733fc2010-05-20 16:23:28 +0000732 Ops.push_back(S);
Dan Gohman45774ce2010-02-12 10:34:29 +0000733 }
Craig Topperf40110f2014-04-25 05:29:35 +0000734 return Found ? SE.getMulExpr(Ops) : nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +0000735 }
Craig Topperf40110f2014-04-25 05:29:35 +0000736 return nullptr;
Dan Gohman963b1c12010-06-24 16:57:52 +0000737 }
Dan Gohman45774ce2010-02-12 10:34:29 +0000738
739 // Otherwise we don't know.
Craig Topperf40110f2014-04-25 05:29:35 +0000740 return nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +0000741}
742
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000743/// If S involves the addition of a constant integer value, return that integer
744/// value, and mutate S to point to a new SCEV with that value excluded.
Dan Gohman45774ce2010-02-12 10:34:29 +0000745static int64_t ExtractImmediate(const SCEV *&S, ScalarEvolution &SE) {
746 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(S)) {
Sanjoy Das0de2fec2015-12-17 20:28:46 +0000747 if (C->getAPInt().getMinSignedBits() <= 64) {
Dan Gohman1d2ded72010-05-03 22:09:21 +0000748 S = SE.getConstant(C->getType(), 0);
Dan Gohman45774ce2010-02-12 10:34:29 +0000749 return C->getValue()->getSExtValue();
750 }
751 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
752 SmallVector<const SCEV *, 8> NewOps(Add->op_begin(), Add->op_end());
753 int64_t Result = ExtractImmediate(NewOps.front(), SE);
Dan Gohman081ffcd2010-08-13 21:17:19 +0000754 if (Result != 0)
755 S = SE.getAddExpr(NewOps);
Dan Gohman45774ce2010-02-12 10:34:29 +0000756 return Result;
757 } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
758 SmallVector<const SCEV *, 8> NewOps(AR->op_begin(), AR->op_end());
759 int64_t Result = ExtractImmediate(NewOps.front(), SE);
Dan Gohman081ffcd2010-08-13 21:17:19 +0000760 if (Result != 0)
Andrew Trick8b55b732011-03-14 16:50:06 +0000761 S = SE.getAddRecExpr(NewOps, AR->getLoop(),
762 // FIXME: AR->getNoWrapFlags(SCEV::FlagNW)
763 SCEV::FlagAnyWrap);
Dan Gohman45774ce2010-02-12 10:34:29 +0000764 return Result;
765 }
766 return 0;
767}
768
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000769/// If S involves the addition of a GlobalValue address, return that symbol, and
770/// mutate S to point to a new SCEV with that value excluded.
Dan Gohman45774ce2010-02-12 10:34:29 +0000771static GlobalValue *ExtractSymbol(const SCEV *&S, ScalarEvolution &SE) {
772 if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(S)) {
773 if (GlobalValue *GV = dyn_cast<GlobalValue>(U->getValue())) {
Dan Gohman1d2ded72010-05-03 22:09:21 +0000774 S = SE.getConstant(GV->getType(), 0);
Dan Gohman45774ce2010-02-12 10:34:29 +0000775 return GV;
776 }
777 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
778 SmallVector<const SCEV *, 8> NewOps(Add->op_begin(), Add->op_end());
779 GlobalValue *Result = ExtractSymbol(NewOps.back(), SE);
Dan Gohman081ffcd2010-08-13 21:17:19 +0000780 if (Result)
781 S = SE.getAddExpr(NewOps);
Dan Gohman45774ce2010-02-12 10:34:29 +0000782 return Result;
783 } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
784 SmallVector<const SCEV *, 8> NewOps(AR->op_begin(), AR->op_end());
785 GlobalValue *Result = ExtractSymbol(NewOps.front(), SE);
Dan Gohman081ffcd2010-08-13 21:17:19 +0000786 if (Result)
Andrew Trick8b55b732011-03-14 16:50:06 +0000787 S = SE.getAddRecExpr(NewOps, AR->getLoop(),
788 // FIXME: AR->getNoWrapFlags(SCEV::FlagNW)
789 SCEV::FlagAnyWrap);
Dan Gohman45774ce2010-02-12 10:34:29 +0000790 return Result;
791 }
Craig Topperf40110f2014-04-25 05:29:35 +0000792 return nullptr;
Nate Begemanb18121e2004-10-18 21:08:22 +0000793}
794
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000795/// Returns true if the specified instruction is using the specified value as an
796/// address.
Matt Arsenault3e268cc2017-12-11 21:38:43 +0000797static bool isAddressUse(const TargetTransformInfo &TTI,
798 Instruction *Inst, Value *OperandVal) {
Dale Johannesen9efd2ce2008-12-05 21:47:27 +0000799 bool isAddress = isa<LoadInst>(Inst);
800 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
Matt Arsenaultcb3fa372017-02-08 06:44:58 +0000801 if (SI->getPointerOperand() == OperandVal)
Dale Johannesen9efd2ce2008-12-05 21:47:27 +0000802 isAddress = true;
803 } else if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst)) {
804 // Addressing modes can also be folded into prefetches and a variety
805 // of intrinsics.
806 switch (II->getIntrinsicID()) {
Matt Arsenault3e268cc2017-12-11 21:38:43 +0000807 case Intrinsic::memset:
808 case Intrinsic::prefetch:
809 if (II->getArgOperand(0) == OperandVal)
810 isAddress = true;
811 break;
812 case Intrinsic::memmove:
813 case Intrinsic::memcpy:
814 if (II->getArgOperand(0) == OperandVal ||
815 II->getArgOperand(1) == OperandVal)
816 isAddress = true;
817 break;
818 default: {
819 MemIntrinsicInfo IntrInfo;
820 if (TTI.getTgtMemIntrinsic(II, IntrInfo)) {
821 if (IntrInfo.PtrVal == OperandVal)
Dale Johannesen9efd2ce2008-12-05 21:47:27 +0000822 isAddress = true;
Matt Arsenault3e268cc2017-12-11 21:38:43 +0000823 }
824 }
Dale Johannesen9efd2ce2008-12-05 21:47:27 +0000825 }
Matt Arsenaultcb3fa372017-02-08 06:44:58 +0000826 } else if (AtomicRMWInst *RMW = dyn_cast<AtomicRMWInst>(Inst)) {
827 if (RMW->getPointerOperand() == OperandVal)
828 isAddress = true;
829 } else if (AtomicCmpXchgInst *CmpX = dyn_cast<AtomicCmpXchgInst>(Inst)) {
830 if (CmpX->getPointerOperand() == OperandVal)
831 isAddress = true;
Dale Johannesen9efd2ce2008-12-05 21:47:27 +0000832 }
833 return isAddress;
834}
Chris Lattnere4ed42a2005-10-03 01:04:44 +0000835
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000836/// Return the type of the memory being accessed.
Matt Arsenault3e268cc2017-12-11 21:38:43 +0000837static MemAccessTy getAccessType(const TargetTransformInfo &TTI,
Daniil Fukalov37433dc2018-06-08 16:22:52 +0000838 Instruction *Inst, Value *OperandVal) {
Matt Arsenault427a0fd2015-08-15 00:53:06 +0000839 MemAccessTy AccessTy(Inst->getType(), MemAccessTy::UnknownAddressSpace);
840 if (const StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
841 AccessTy.MemTy = SI->getOperand(0)->getType();
842 AccessTy.AddrSpace = SI->getPointerAddressSpace();
843 } else if (const LoadInst *LI = dyn_cast<LoadInst>(Inst)) {
844 AccessTy.AddrSpace = LI->getPointerAddressSpace();
Matt Arsenaultcb3fa372017-02-08 06:44:58 +0000845 } else if (const AtomicRMWInst *RMW = dyn_cast<AtomicRMWInst>(Inst)) {
846 AccessTy.AddrSpace = RMW->getPointerAddressSpace();
847 } else if (const AtomicCmpXchgInst *CmpX = dyn_cast<AtomicCmpXchgInst>(Inst)) {
848 AccessTy.AddrSpace = CmpX->getPointerAddressSpace();
Matt Arsenault3e268cc2017-12-11 21:38:43 +0000849 } else if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst)) {
850 switch (II->getIntrinsicID()) {
851 case Intrinsic::prefetch:
Daniil Fukalov37433dc2018-06-08 16:22:52 +0000852 case Intrinsic::memset:
Matt Arsenault3e268cc2017-12-11 21:38:43 +0000853 AccessTy.AddrSpace = II->getArgOperand(0)->getType()->getPointerAddressSpace();
Daniil Fukalov37433dc2018-06-08 16:22:52 +0000854 AccessTy.MemTy = OperandVal->getType();
855 break;
856 case Intrinsic::memmove:
857 case Intrinsic::memcpy:
858 AccessTy.AddrSpace = OperandVal->getType()->getPointerAddressSpace();
859 AccessTy.MemTy = OperandVal->getType();
Matt Arsenault3e268cc2017-12-11 21:38:43 +0000860 break;
861 default: {
862 MemIntrinsicInfo IntrInfo;
863 if (TTI.getTgtMemIntrinsic(II, IntrInfo) && IntrInfo.PtrVal) {
864 AccessTy.AddrSpace
865 = IntrInfo.PtrVal->getType()->getPointerAddressSpace();
866 }
867
868 break;
869 }
870 }
Dan Gohman917ffe42009-03-09 21:01:17 +0000871 }
Dan Gohman45774ce2010-02-12 10:34:29 +0000872
873 // All pointers have the same requirements, so canonicalize them to an
874 // arbitrary pointer type to minimize variation.
Matt Arsenault427a0fd2015-08-15 00:53:06 +0000875 if (PointerType *PTy = dyn_cast<PointerType>(AccessTy.MemTy))
876 AccessTy.MemTy = PointerType::get(IntegerType::get(PTy->getContext(), 1),
877 PTy->getAddressSpace());
Dan Gohman45774ce2010-02-12 10:34:29 +0000878
Dan Gohman14d13392009-05-18 16:45:28 +0000879 return AccessTy;
Dan Gohman917ffe42009-03-09 21:01:17 +0000880}
881
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000882/// Return true if this AddRec is already a phi in its loop.
Andrew Trick5df90962011-12-06 03:13:31 +0000883static bool isExistingPhi(const SCEVAddRecExpr *AR, ScalarEvolution &SE) {
Benjamin Kramerc7fc81e2017-12-30 15:27:33 +0000884 for (PHINode &PN : AR->getLoop()->getHeader()->phis()) {
885 if (SE.isSCEVable(PN.getType()) &&
886 (SE.getEffectiveSCEVType(PN.getType()) ==
Andrew Trick5df90962011-12-06 03:13:31 +0000887 SE.getEffectiveSCEVType(AR->getType())) &&
Benjamin Kramerc7fc81e2017-12-30 15:27:33 +0000888 SE.getSCEV(&PN) == AR)
Andrew Trick5df90962011-12-06 03:13:31 +0000889 return true;
890 }
891 return false;
892}
893
Andrew Trickd5d2db92012-01-10 01:45:08 +0000894/// Check if expanding this expression is likely to incur significant cost. This
895/// is tricky because SCEV doesn't track which expressions are actually computed
896/// by the current IR.
897///
898/// We currently allow expansion of IV increments that involve adds,
899/// multiplication by constants, and AddRecs from existing phis.
900///
901/// TODO: Allow UDivExpr if we can find an existing IV increment that is an
902/// obvious multiple of the UDivExpr.
903static bool isHighCostExpansion(const SCEV *S,
Craig Topper71b7b682014-08-21 05:55:13 +0000904 SmallPtrSetImpl<const SCEV*> &Processed,
Andrew Trickd5d2db92012-01-10 01:45:08 +0000905 ScalarEvolution &SE) {
906 // Zero/One operand expressions
907 switch (S->getSCEVType()) {
908 case scUnknown:
909 case scConstant:
910 return false;
911 case scTruncate:
912 return isHighCostExpansion(cast<SCEVTruncateExpr>(S)->getOperand(),
913 Processed, SE);
914 case scZeroExtend:
915 return isHighCostExpansion(cast<SCEVZeroExtendExpr>(S)->getOperand(),
916 Processed, SE);
917 case scSignExtend:
918 return isHighCostExpansion(cast<SCEVSignExtendExpr>(S)->getOperand(),
919 Processed, SE);
920 }
921
David Blaikie70573dc2014-11-19 07:49:26 +0000922 if (!Processed.insert(S).second)
Andrew Trickd5d2db92012-01-10 01:45:08 +0000923 return false;
924
925 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
Craig Topper042a3922015-05-25 20:01:18 +0000926 for (const SCEV *S : Add->operands()) {
927 if (isHighCostExpansion(S, Processed, SE))
Andrew Trickd5d2db92012-01-10 01:45:08 +0000928 return true;
929 }
930 return false;
931 }
932
933 if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S)) {
934 if (Mul->getNumOperands() == 2) {
935 // Multiplication by a constant is ok
936 if (isa<SCEVConstant>(Mul->getOperand(0)))
937 return isHighCostExpansion(Mul->getOperand(1), Processed, SE);
938
939 // If we have the value of one operand, check if an existing
940 // multiplication already generates this expression.
941 if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(Mul->getOperand(1))) {
942 Value *UVal = U->getValue();
Chandler Carruthcdf47882014-03-09 03:16:01 +0000943 for (User *UR : UVal->users()) {
Andrew Trick14779cc2012-03-26 20:28:37 +0000944 // If U is a constant, it may be used by a ConstantExpr.
Chandler Carruthcdf47882014-03-09 03:16:01 +0000945 Instruction *UI = dyn_cast<Instruction>(UR);
946 if (UI && UI->getOpcode() == Instruction::Mul &&
947 SE.isSCEVable(UI->getType())) {
948 return SE.getSCEV(UI) == Mul;
Andrew Trickd5d2db92012-01-10 01:45:08 +0000949 }
950 }
951 }
952 }
953 }
954
955 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
956 if (isExistingPhi(AR, SE))
957 return false;
958 }
959
960 // Fow now, consider any other type of expression (div/mul/min/max) high cost.
961 return true;
962}
963
Javed Absar1e281942018-01-17 21:58:35 +0000964/// If any of the instructions in the specified set are trivially dead, delete
Sanjoy Das94c4aec2015-08-16 18:22:46 +0000965/// them and see if this makes any of their operands subsequently dead.
Dan Gohman45774ce2010-02-12 10:34:29 +0000966static bool
Sanjoy Dase6bca0e2017-05-01 17:07:49 +0000967DeleteTriviallyDeadInstructions(SmallVectorImpl<WeakTrackingVH> &DeadInsts) {
Dan Gohman45774ce2010-02-12 10:34:29 +0000968 bool Changed = false;
969
970 while (!DeadInsts.empty()) {
Richard Smithad9c8e82012-08-21 20:35:14 +0000971 Value *V = DeadInsts.pop_back_val();
972 Instruction *I = dyn_cast_or_null<Instruction>(V);
Dan Gohman45774ce2010-02-12 10:34:29 +0000973
Craig Topperf40110f2014-04-25 05:29:35 +0000974 if (!I || !isInstructionTriviallyDead(I))
Dan Gohman45774ce2010-02-12 10:34:29 +0000975 continue;
976
Craig Topper042a3922015-05-25 20:01:18 +0000977 for (Use &O : I->operands())
978 if (Instruction *U = dyn_cast<Instruction>(O)) {
979 O = nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +0000980 if (U->use_empty())
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +0000981 DeadInsts.emplace_back(U);
Dan Gohman45774ce2010-02-12 10:34:29 +0000982 }
983
984 I->eraseFromParent();
985 Changed = true;
986 }
987
988 return Changed;
989}
990
Dan Gohman045f8192010-01-22 00:46:49 +0000991namespace {
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000992
Quentin Colombet8aa7abe2013-05-31 17:20:29 +0000993class LSRUse;
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +0000994
995} // end anonymous namespace
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000996
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000997/// Check if the addressing mode defined by \p F is completely
Quentin Colombetc88baa5c2014-05-20 19:25:04 +0000998/// folded in \p LU at isel time.
999/// This includes address-mode folding and special icmp tricks.
1000/// This function returns true if \p LU can accommodate what \p F
1001/// defines and up to 1 base + 1 scaled + offset.
1002/// In other words, if \p F has several base registers, this function may
1003/// still return true. Therefore, users still need to account for
1004/// additional base registers and/or unfolded offsets to derive an
1005/// accurate cost model.
1006static bool isAMCompletelyFolded(const TargetTransformInfo &TTI,
1007 const LSRUse &LU, const Formula &F);
Eugene Zelenko306d2992017-10-18 21:46:47 +00001008
Quentin Colombetbf490d42013-05-31 21:29:03 +00001009// Get the cost of the scaling factor used in F for LU.
1010static unsigned getScalingFactorCost(const TargetTransformInfo &TTI,
Wei Mi74d5a902017-02-22 21:47:08 +00001011 const LSRUse &LU, const Formula &F,
1012 const Loop &L);
Quentin Colombet8aa7abe2013-05-31 17:20:29 +00001013
1014namespace {
Jim Grosbach60f48542009-11-17 17:53:56 +00001015
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001016/// This class is used to measure and compare candidate formulae.
Dan Gohman45774ce2010-02-12 10:34:29 +00001017class Cost {
Sam Parkereb0b8012019-03-14 11:05:07 +00001018 const Loop *L = nullptr;
1019 ScalarEvolution *SE = nullptr;
1020 DominatorTree *DT = nullptr;
1021 const TargetTransformInfo *TTI = nullptr;
Evgeny Stupachenkof2b3b462017-06-05 23:37:00 +00001022 TargetTransformInfo::LSRCost C;
Nate Begemane68bcd12005-07-30 00:15:07 +00001023
Dan Gohman45774ce2010-02-12 10:34:29 +00001024public:
Sam Parkereb0b8012019-03-14 11:05:07 +00001025 Cost() = delete;
1026 Cost(const Loop *L, ScalarEvolution &SE, DominatorTree &DT,
1027 const TargetTransformInfo &TTI) :
1028 L(L), SE(&SE), DT(&DT), TTI(&TTI) {
Evgeny Stupachenkof2b3b462017-06-05 23:37:00 +00001029 C.Insns = 0;
1030 C.NumRegs = 0;
1031 C.AddRecCost = 0;
1032 C.NumIVMuls = 0;
1033 C.NumBaseAdds = 0;
1034 C.ImmCost = 0;
1035 C.SetupCost = 0;
1036 C.ScaleCost = 0;
1037 }
Jim Grosbach60f48542009-11-17 17:53:56 +00001038
Sam Parkereb0b8012019-03-14 11:05:07 +00001039 bool isLess(Cost &Other);
Dan Gohman045f8192010-01-22 00:46:49 +00001040
Tim Northoverbc6659c2014-01-22 13:27:00 +00001041 void Lose();
Dan Gohman045f8192010-01-22 00:46:49 +00001042
Andrew Trick784729d2011-09-26 23:11:04 +00001043#ifndef NDEBUG
1044 // Once any of the metrics loses, they must all remain losers.
1045 bool isValid() {
Evgeny Stupachenkof2b3b462017-06-05 23:37:00 +00001046 return ((C.Insns | C.NumRegs | C.AddRecCost | C.NumIVMuls | C.NumBaseAdds
1047 | C.ImmCost | C.SetupCost | C.ScaleCost) != ~0u)
1048 || ((C.Insns & C.NumRegs & C.AddRecCost & C.NumIVMuls & C.NumBaseAdds
1049 & C.ImmCost & C.SetupCost & C.ScaleCost) == ~0u);
Andrew Trick784729d2011-09-26 23:11:04 +00001050 }
1051#endif
1052
1053 bool isLoser() {
1054 assert(isValid() && "invalid cost");
Evgeny Stupachenkof2b3b462017-06-05 23:37:00 +00001055 return C.NumRegs == ~0u;
Andrew Trick784729d2011-09-26 23:11:04 +00001056 }
1057
Sam Parkereb0b8012019-03-14 11:05:07 +00001058 void RateFormula(const Formula &F,
Craig Topper71b7b682014-08-21 05:55:13 +00001059 SmallPtrSetImpl<const SCEV *> &Regs,
Dan Gohman45774ce2010-02-12 10:34:29 +00001060 const DenseSet<const SCEV *> &VisitedRegs,
Quentin Colombet8aa7abe2013-05-31 17:20:29 +00001061 const LSRUse &LU,
Craig Topper71b7b682014-08-21 05:55:13 +00001062 SmallPtrSetImpl<const SCEV *> *LoserRegs = nullptr);
Dan Gohman045f8192010-01-22 00:46:49 +00001063
Dan Gohman45774ce2010-02-12 10:34:29 +00001064 void print(raw_ostream &OS) const;
1065 void dump() const;
Dan Gohman045f8192010-01-22 00:46:49 +00001066
Dan Gohman45774ce2010-02-12 10:34:29 +00001067private:
Sam Parker67756c02019-02-07 13:32:54 +00001068 void RateRegister(const Formula &F, const SCEV *Reg,
Sam Parkereb0b8012019-03-14 11:05:07 +00001069 SmallPtrSetImpl<const SCEV *> &Regs);
Sam Parker67756c02019-02-07 13:32:54 +00001070 void RatePrimaryRegister(const Formula &F, const SCEV *Reg,
Craig Topper71b7b682014-08-21 05:55:13 +00001071 SmallPtrSetImpl<const SCEV *> &Regs,
Sam Parkereb0b8012019-03-14 11:05:07 +00001072 SmallPtrSetImpl<const SCEV *> *LoserRegs);
Dan Gohman45774ce2010-02-12 10:34:29 +00001073};
Matt Arsenault3e268cc2017-12-11 21:38:43 +00001074
Jonas Paulsson7a794222016-08-17 13:24:19 +00001075/// An operand value in an instruction which is to be replaced with some
1076/// equivalent, possibly strength-reduced, replacement.
1077struct LSRFixup {
1078 /// The instruction which will be updated.
Eugene Zelenko306d2992017-10-18 21:46:47 +00001079 Instruction *UserInst = nullptr;
Jonas Paulsson7a794222016-08-17 13:24:19 +00001080
1081 /// The operand of the instruction which will be replaced. The operand may be
1082 /// used more than once; every instance will be replaced.
Eugene Zelenko306d2992017-10-18 21:46:47 +00001083 Value *OperandValToReplace = nullptr;
Jonas Paulsson7a794222016-08-17 13:24:19 +00001084
1085 /// If this user is to use the post-incremented value of an induction
Vedant Kumar9196ed12017-11-03 01:01:28 +00001086 /// variable, this set is non-empty and holds the loops associated with the
Jonas Paulsson7a794222016-08-17 13:24:19 +00001087 /// induction variable.
1088 PostIncLoopSet PostIncLoops;
1089
1090 /// A constant offset to be added to the LSRUse expression. This allows
1091 /// multiple fixups to share the same LSRUse with different offsets, for
1092 /// example in an unrolled loop.
Eugene Zelenko306d2992017-10-18 21:46:47 +00001093 int64_t Offset = 0;
1094
1095 LSRFixup() = default;
Jonas Paulsson7a794222016-08-17 13:24:19 +00001096
1097 bool isUseFullyOutsideLoop(const Loop *L) const;
1098
Jonas Paulsson7a794222016-08-17 13:24:19 +00001099 void print(raw_ostream &OS) const;
1100 void dump() const;
1101};
1102
Jonas Paulsson7a794222016-08-17 13:24:19 +00001103/// A DenseMapInfo implementation for holding DenseMaps and DenseSets of sorted
1104/// SmallVectors of const SCEV*.
1105struct UniquifierDenseMapInfo {
1106 static SmallVector<const SCEV *, 4> getEmptyKey() {
1107 SmallVector<const SCEV *, 4> V;
1108 V.push_back(reinterpret_cast<const SCEV *>(-1));
1109 return V;
1110 }
1111
1112 static SmallVector<const SCEV *, 4> getTombstoneKey() {
1113 SmallVector<const SCEV *, 4> V;
1114 V.push_back(reinterpret_cast<const SCEV *>(-2));
1115 return V;
1116 }
1117
1118 static unsigned getHashValue(const SmallVector<const SCEV *, 4> &V) {
1119 return static_cast<unsigned>(hash_combine_range(V.begin(), V.end()));
1120 }
1121
1122 static bool isEqual(const SmallVector<const SCEV *, 4> &LHS,
1123 const SmallVector<const SCEV *, 4> &RHS) {
1124 return LHS == RHS;
1125 }
1126};
1127
1128/// This class holds the state that LSR keeps for each use in IVUsers, as well
1129/// as uses invented by LSR itself. It includes information about what kinds of
1130/// things can be folded into the user, information about the user itself, and
1131/// information about how the use may be satisfied. TODO: Represent multiple
1132/// users of the same expression in common?
1133class LSRUse {
1134 DenseSet<SmallVector<const SCEV *, 4>, UniquifierDenseMapInfo> Uniquifier;
1135
1136public:
1137 /// An enum for a kind of use, indicating what types of scaled and immediate
1138 /// operands it might support.
1139 enum KindType {
1140 Basic, ///< A normal use, with no folding.
1141 Special, ///< A special case of basic, allowing -1 scales.
1142 Address, ///< An address use; folding according to TargetLowering
1143 ICmpZero ///< An equality icmp with both operands folded into one.
1144 // TODO: Add a generic icmp too?
1145 };
1146
Eugene Zelenko306d2992017-10-18 21:46:47 +00001147 using SCEVUseKindPair = PointerIntPair<const SCEV *, 2, KindType>;
Jonas Paulsson7a794222016-08-17 13:24:19 +00001148
1149 KindType Kind;
1150 MemAccessTy AccessTy;
1151
1152 /// The list of operands which are to be replaced.
1153 SmallVector<LSRFixup, 8> Fixups;
1154
1155 /// Keep track of the min and max offsets of the fixups.
Eugene Zelenko306d2992017-10-18 21:46:47 +00001156 int64_t MinOffset = std::numeric_limits<int64_t>::max();
1157 int64_t MaxOffset = std::numeric_limits<int64_t>::min();
Jonas Paulsson7a794222016-08-17 13:24:19 +00001158
1159 /// This records whether all of the fixups using this LSRUse are outside of
1160 /// the loop, in which case some special-case heuristics may be used.
Eugene Zelenko306d2992017-10-18 21:46:47 +00001161 bool AllFixupsOutsideLoop = true;
Jonas Paulsson7a794222016-08-17 13:24:19 +00001162
1163 /// RigidFormula is set to true to guarantee that this use will be associated
1164 /// with a single formula--the one that initially matched. Some SCEV
1165 /// expressions cannot be expanded. This allows LSR to consider the registers
1166 /// used by those expressions without the need to expand them later after
1167 /// changing the formula.
Eugene Zelenko306d2992017-10-18 21:46:47 +00001168 bool RigidFormula = false;
Jonas Paulsson7a794222016-08-17 13:24:19 +00001169
1170 /// This records the widest use type for any fixup using this
1171 /// LSRUse. FindUseWithSimilarFormula can't consider uses with different max
1172 /// fixup widths to be equivalent, because the narrower one may be relying on
1173 /// the implicit truncation to truncate away bogus bits.
Eugene Zelenko306d2992017-10-18 21:46:47 +00001174 Type *WidestFixupType = nullptr;
Jonas Paulsson7a794222016-08-17 13:24:19 +00001175
1176 /// A list of ways to build a value that can satisfy this user. After the
1177 /// list is populated, one of these is selected heuristically and used to
1178 /// formulate a replacement for OperandValToReplace in UserInst.
1179 SmallVector<Formula, 12> Formulae;
1180
1181 /// The set of register candidates used by all formulae in this LSRUse.
1182 SmallPtrSet<const SCEV *, 4> Regs;
1183
Eugene Zelenko306d2992017-10-18 21:46:47 +00001184 LSRUse(KindType K, MemAccessTy AT) : Kind(K), AccessTy(AT) {}
Jonas Paulsson7a794222016-08-17 13:24:19 +00001185
1186 LSRFixup &getNewFixup() {
1187 Fixups.push_back(LSRFixup());
1188 return Fixups.back();
1189 }
1190
1191 void pushFixup(LSRFixup &f) {
1192 Fixups.push_back(f);
1193 if (f.Offset > MaxOffset)
1194 MaxOffset = f.Offset;
1195 if (f.Offset < MinOffset)
1196 MinOffset = f.Offset;
1197 }
Matt Arsenault3e268cc2017-12-11 21:38:43 +00001198
Jonas Paulsson7a794222016-08-17 13:24:19 +00001199 bool HasFormulaWithSameRegs(const Formula &F) const;
Evgeny Stupachenko9909872e302017-02-21 07:34:40 +00001200 float getNotSelectedProbability(const SCEV *Reg) const;
Wei Mi74d5a902017-02-22 21:47:08 +00001201 bool InsertFormula(const Formula &F, const Loop &L);
Jonas Paulsson7a794222016-08-17 13:24:19 +00001202 void DeleteFormula(Formula &F);
1203 void RecomputeRegs(size_t LUIdx, RegUseTracker &Reguses);
1204
1205 void print(raw_ostream &OS) const;
1206 void dump() const;
1207};
Dan Gohman45774ce2010-02-12 10:34:29 +00001208
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +00001209} // end anonymous namespace
Dan Gohman45774ce2010-02-12 10:34:29 +00001210
Jonas Paulsson6228aed2017-08-09 11:28:01 +00001211static bool isAMCompletelyFolded(const TargetTransformInfo &TTI,
1212 LSRUse::KindType Kind, MemAccessTy AccessTy,
1213 GlobalValue *BaseGV, int64_t BaseOffset,
1214 bool HasBaseReg, int64_t Scale,
1215 Instruction *Fixup = nullptr);
1216
David Greenffc922ec2019-03-07 13:44:40 +00001217static unsigned getSetupCost(const SCEV *Reg) {
1218 if (isa<SCEVUnknown>(Reg) || isa<SCEVConstant>(Reg))
1219 return 1;
1220 if (!EnableRecursiveSetupCost)
1221 return 0;
1222 if (const auto *S = dyn_cast<SCEVAddRecExpr>(Reg))
1223 return getSetupCost(S->getStart());
1224 if (auto S = dyn_cast<SCEVCastExpr>(Reg))
1225 return getSetupCost(S->getOperand());
1226 if (auto S = dyn_cast<SCEVNAryExpr>(Reg))
1227 return std::accumulate(S->op_begin(), S->op_end(), 0,
1228 [](unsigned i, const SCEV *Reg) {
1229 return i + getSetupCost(Reg);
1230 });
1231 if (auto S = dyn_cast<SCEVUDivExpr>(Reg))
1232 return getSetupCost(S->getLHS()) + getSetupCost(S->getRHS());
1233 return 0;
1234}
1235
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001236/// Tally up interesting quantities from the given register.
Sam Parker67756c02019-02-07 13:32:54 +00001237void Cost::RateRegister(const Formula &F, const SCEV *Reg,
Sam Parkereb0b8012019-03-14 11:05:07 +00001238 SmallPtrSetImpl<const SCEV *> &Regs) {
Dan Gohman5b18f032010-02-13 02:06:02 +00001239 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(Reg)) {
Wei Mi8f20e632017-02-11 00:50:23 +00001240 // If this is an addrec for another loop, it should be an invariant
1241 // with respect to L since L is the innermost loop (at least
1242 // for now LSR only handles innermost loops).
Andrew Trickd97b83e2012-03-22 22:42:45 +00001243 if (AR->getLoop() != L) {
1244 // If the AddRec exists, consider it's register free and leave it alone.
Sam Parkereb0b8012019-03-14 11:05:07 +00001245 if (isExistingPhi(AR, *SE))
Andrew Trick5df90962011-12-06 03:13:31 +00001246 return;
1247
Wei Mi493fb262017-02-16 21:27:31 +00001248 // It is bad to allow LSR for current loop to add induction variables
1249 // for its sibling loops.
1250 if (!AR->getLoop()->contains(L)) {
1251 Lose();
1252 return;
1253 }
1254
Wei Mi8f20e632017-02-11 00:50:23 +00001255 // Otherwise, it will be an invariant with respect to Loop L.
Evgeny Stupachenkof2b3b462017-06-05 23:37:00 +00001256 ++C.NumRegs;
Andrew Trickd97b83e2012-03-22 22:42:45 +00001257 return;
Dan Gohman45774ce2010-02-12 10:34:29 +00001258 }
Krzysztof Parzyszek0b377e02018-03-26 13:10:09 +00001259
1260 unsigned LoopCost = 1;
Sam Parkereb0b8012019-03-14 11:05:07 +00001261 if (TTI->isIndexedLoadLegal(TTI->MIM_PostInc, AR->getType()) ||
1262 TTI->isIndexedStoreLegal(TTI->MIM_PostInc, AR->getType())) {
Sam Parker67756c02019-02-07 13:32:54 +00001263
1264 // If the step size matches the base offset, we could use pre-indexed
1265 // addressing.
Sam Parkereb0b8012019-03-14 11:05:07 +00001266 if (TTI->shouldFavorBackedgeIndex(L)) {
1267 if (auto *Step = dyn_cast<SCEVConstant>(AR->getStepRecurrence(*SE)))
Sam Parker67756c02019-02-07 13:32:54 +00001268 if (Step->getAPInt() == F.BaseOffset)
1269 LoopCost = 0;
1270 }
1271
Sam Parkereb0b8012019-03-14 11:05:07 +00001272 if (TTI->shouldFavorPostInc()) {
1273 const SCEV *LoopStep = AR->getStepRecurrence(*SE);
Sam Parker67756c02019-02-07 13:32:54 +00001274 if (isa<SCEVConstant>(LoopStep)) {
Krzysztof Parzyszek0b377e02018-03-26 13:10:09 +00001275 const SCEV *LoopStart = AR->getStart();
1276 if (!isa<SCEVConstant>(LoopStart) &&
Sam Parkereb0b8012019-03-14 11:05:07 +00001277 SE->isLoopInvariant(LoopStart, L))
Sam Parker67756c02019-02-07 13:32:54 +00001278 LoopCost = 0;
Krzysztof Parzyszek0b377e02018-03-26 13:10:09 +00001279 }
1280 }
1281 }
1282 C.AddRecCost += LoopCost;
Dan Gohman45774ce2010-02-12 10:34:29 +00001283
Dan Gohman5b18f032010-02-13 02:06:02 +00001284 // Add the step value register, if it needs one.
1285 // TODO: The non-affine case isn't precisely modeled here.
Andrew Trick8868fae2011-09-26 23:35:25 +00001286 if (!AR->isAffine() || !isa<SCEVConstant>(AR->getOperand(1))) {
1287 if (!Regs.count(AR->getOperand(1))) {
Sam Parkereb0b8012019-03-14 11:05:07 +00001288 RateRegister(F, AR->getOperand(1), Regs);
Andrew Trick8868fae2011-09-26 23:35:25 +00001289 if (isLoser())
1290 return;
1291 }
1292 }
Dan Gohman45774ce2010-02-12 10:34:29 +00001293 }
Evgeny Stupachenkof2b3b462017-06-05 23:37:00 +00001294 ++C.NumRegs;
Dan Gohman5b18f032010-02-13 02:06:02 +00001295
1296 // Rough heuristic; favor registers which don't require extra setup
1297 // instructions in the preheader.
David Greenffc922ec2019-03-07 13:44:40 +00001298 C.SetupCost += getSetupCost(Reg);
Dan Gohman34f37e02010-10-07 23:41:58 +00001299
Evgeny Stupachenkof2b3b462017-06-05 23:37:00 +00001300 C.NumIVMuls += isa<SCEVMulExpr>(Reg) &&
Sam Parkereb0b8012019-03-14 11:05:07 +00001301 SE->hasComputableLoopEvolution(Reg, L);
Dan Gohman5b18f032010-02-13 02:06:02 +00001302}
1303
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001304/// Record this register in the set. If we haven't seen it before, rate
1305/// it. Optional LoserRegs provides a way to declare any formula that refers to
1306/// one of those regs an instant loser.
Sam Parker67756c02019-02-07 13:32:54 +00001307void Cost::RatePrimaryRegister(const Formula &F, const SCEV *Reg,
Craig Topper71b7b682014-08-21 05:55:13 +00001308 SmallPtrSetImpl<const SCEV *> &Regs,
Sam Parkereb0b8012019-03-14 11:05:07 +00001309 SmallPtrSetImpl<const SCEV *> *LoserRegs) {
Andrew Trick5df90962011-12-06 03:13:31 +00001310 if (LoserRegs && LoserRegs->count(Reg)) {
Tim Northoverbc6659c2014-01-22 13:27:00 +00001311 Lose();
Andrew Trick5df90962011-12-06 03:13:31 +00001312 return;
1313 }
David Blaikie70573dc2014-11-19 07:49:26 +00001314 if (Regs.insert(Reg).second) {
Sam Parkereb0b8012019-03-14 11:05:07 +00001315 RateRegister(F, Reg, Regs);
Andrew Tricka1c01ba2013-03-19 04:14:57 +00001316 if (LoserRegs && isLoser())
Andrew Trick5df90962011-12-06 03:13:31 +00001317 LoserRegs->insert(Reg);
1318 }
Dan Gohman45774ce2010-02-12 10:34:29 +00001319}
1320
Sam Parkereb0b8012019-03-14 11:05:07 +00001321void Cost::RateFormula(const Formula &F,
Craig Topper71b7b682014-08-21 05:55:13 +00001322 SmallPtrSetImpl<const SCEV *> &Regs,
Dan Gohman45774ce2010-02-12 10:34:29 +00001323 const DenseSet<const SCEV *> &VisitedRegs,
Quentin Colombet8aa7abe2013-05-31 17:20:29 +00001324 const LSRUse &LU,
Craig Topper71b7b682014-08-21 05:55:13 +00001325 SmallPtrSetImpl<const SCEV *> *LoserRegs) {
Wei Mi74d5a902017-02-22 21:47:08 +00001326 assert(F.isCanonical(*L) && "Cost is accurate only for canonical formula");
Dan Gohman45774ce2010-02-12 10:34:29 +00001327 // Tally up the registers.
Evgeny Stupachenkof2b3b462017-06-05 23:37:00 +00001328 unsigned PrevAddRecCost = C.AddRecCost;
1329 unsigned PrevNumRegs = C.NumRegs;
1330 unsigned PrevNumBaseAdds = C.NumBaseAdds;
Dan Gohman45774ce2010-02-12 10:34:29 +00001331 if (const SCEV *ScaledReg = F.ScaledReg) {
1332 if (VisitedRegs.count(ScaledReg)) {
Tim Northoverbc6659c2014-01-22 13:27:00 +00001333 Lose();
Dan Gohman45774ce2010-02-12 10:34:29 +00001334 return;
1335 }
Sam Parkereb0b8012019-03-14 11:05:07 +00001336 RatePrimaryRegister(F, ScaledReg, Regs, LoserRegs);
Andrew Trick784729d2011-09-26 23:11:04 +00001337 if (isLoser())
1338 return;
Dan Gohman45774ce2010-02-12 10:34:29 +00001339 }
Craig Topper042a3922015-05-25 20:01:18 +00001340 for (const SCEV *BaseReg : F.BaseRegs) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001341 if (VisitedRegs.count(BaseReg)) {
Tim Northoverbc6659c2014-01-22 13:27:00 +00001342 Lose();
Dan Gohman45774ce2010-02-12 10:34:29 +00001343 return;
1344 }
Sam Parkereb0b8012019-03-14 11:05:07 +00001345 RatePrimaryRegister(F, BaseReg, Regs, LoserRegs);
Andrew Trick784729d2011-09-26 23:11:04 +00001346 if (isLoser())
1347 return;
Dan Gohman45774ce2010-02-12 10:34:29 +00001348 }
1349
Dan Gohman6136e942011-05-03 00:46:49 +00001350 // Determine how many (unfolded) adds we'll need inside the loop.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001351 size_t NumBaseParts = F.getNumRegs();
Dan Gohman6136e942011-05-03 00:46:49 +00001352 if (NumBaseParts > 1)
Quentin Colombet8aa7abe2013-05-31 17:20:29 +00001353 // Do not count the base and a possible second register if the target
1354 // allows to fold 2 registers.
Evgeny Stupachenkof2b3b462017-06-05 23:37:00 +00001355 C.NumBaseAdds +=
Sam Parkereb0b8012019-03-14 11:05:07 +00001356 NumBaseParts - (1 + (F.Scale && isAMCompletelyFolded(*TTI, LU, F)));
Evgeny Stupachenkof2b3b462017-06-05 23:37:00 +00001357 C.NumBaseAdds += (F.UnfoldedOffset != 0);
Dan Gohman45774ce2010-02-12 10:34:29 +00001358
Quentin Colombetbf490d42013-05-31 21:29:03 +00001359 // Accumulate non-free scaling amounts.
Sam Parkereb0b8012019-03-14 11:05:07 +00001360 C.ScaleCost += getScalingFactorCost(*TTI, LU, F, *L);
Quentin Colombetbf490d42013-05-31 21:29:03 +00001361
Dan Gohman45774ce2010-02-12 10:34:29 +00001362 // Tally up the non-zero immediates.
Jonas Paulsson7a794222016-08-17 13:24:19 +00001363 for (const LSRFixup &Fixup : LU.Fixups) {
1364 int64_t O = Fixup.Offset;
Craig Topper042a3922015-05-25 20:01:18 +00001365 int64_t Offset = (uint64_t)O + F.BaseOffset;
Chandler Carruth6e479322013-01-07 15:04:40 +00001366 if (F.BaseGV)
Evgeny Stupachenkof2b3b462017-06-05 23:37:00 +00001367 C.ImmCost += 64; // Handle symbolic values conservatively.
Dan Gohman45774ce2010-02-12 10:34:29 +00001368 // TODO: This should probably be the pointer size.
1369 else if (Offset != 0)
Evgeny Stupachenkof2b3b462017-06-05 23:37:00 +00001370 C.ImmCost += APInt(64, Offset, true).getMinSignedBits();
Jonas Paulsson7a794222016-08-17 13:24:19 +00001371
1372 // Check with target if this offset with this instruction is
1373 // specifically not supported.
Jonas Paulsson024e3192017-07-21 11:59:37 +00001374 if (LU.Kind == LSRUse::Address && Offset != 0 &&
Sam Parkereb0b8012019-03-14 11:05:07 +00001375 !isAMCompletelyFolded(*TTI, LSRUse::Address, LU.AccessTy, F.BaseGV,
Jonas Paulsson6228aed2017-08-09 11:28:01 +00001376 Offset, F.HasBaseReg, F.Scale, Fixup.UserInst))
Evgeny Stupachenkof2b3b462017-06-05 23:37:00 +00001377 C.NumBaseAdds++;
Dan Gohman45774ce2010-02-12 10:34:29 +00001378 }
Evgeny Stupachenkofe6f5482017-02-11 02:57:43 +00001379
Evgeny Stupachenko4d94e992017-06-05 22:44:18 +00001380 // If we don't count instruction cost exit here.
1381 if (!InsnsCost) {
1382 assert(isValid() && "invalid cost");
1383 return;
1384 }
1385
1386 // Treat every new register that exceeds TTI.getNumberOfRegisters() - 1 as
1387 // additional instruction (at least fill).
Sam Parkereb0b8012019-03-14 11:05:07 +00001388 unsigned TTIRegNum = TTI->getNumberOfRegisters(false) - 1;
Evgeny Stupachenkof2b3b462017-06-05 23:37:00 +00001389 if (C.NumRegs > TTIRegNum) {
Evgeny Stupachenko4d94e992017-06-05 22:44:18 +00001390 // Cost already exceeded TTIRegNum, then only newly added register can add
1391 // new instructions.
1392 if (PrevNumRegs > TTIRegNum)
Evgeny Stupachenkof2b3b462017-06-05 23:37:00 +00001393 C.Insns += (C.NumRegs - PrevNumRegs);
Evgeny Stupachenko4d94e992017-06-05 22:44:18 +00001394 else
Evgeny Stupachenkof2b3b462017-06-05 23:37:00 +00001395 C.Insns += (C.NumRegs - TTIRegNum);
Evgeny Stupachenko4d94e992017-06-05 22:44:18 +00001396 }
1397
Evgeny Stupachenkofe6f5482017-02-11 02:57:43 +00001398 // If ICmpZero formula ends with not 0, it could not be replaced by
1399 // just add or sub. We'll need to compare final result of AddRec.
Sanjay Pateld7c702b2018-02-05 23:43:05 +00001400 // That means we'll need an additional instruction. But if the target can
1401 // macro-fuse a compare with a branch, don't count this extra instruction.
Evgeny Stupachenkofe6f5482017-02-11 02:57:43 +00001402 // For -10 + {0, +, 1}:
1403 // i = i + 1;
1404 // cmp i, 10
1405 //
1406 // For {-10, +, 1}:
1407 // i = i + 1;
Sam Parkereb0b8012019-03-14 11:05:07 +00001408 if (LU.Kind == LSRUse::ICmpZero && !F.hasZeroEnd() &&
1409 !TTI->canMacroFuseCmp())
Evgeny Stupachenkof2b3b462017-06-05 23:37:00 +00001410 C.Insns++;
Evgeny Stupachenkofe6f5482017-02-11 02:57:43 +00001411 // Each new AddRec adds 1 instruction to calculation.
Evgeny Stupachenkof2b3b462017-06-05 23:37:00 +00001412 C.Insns += (C.AddRecCost - PrevAddRecCost);
Evgeny Stupachenkofe6f5482017-02-11 02:57:43 +00001413
1414 // BaseAdds adds instructions for unfolded registers.
1415 if (LU.Kind != LSRUse::ICmpZero)
Evgeny Stupachenkof2b3b462017-06-05 23:37:00 +00001416 C.Insns += C.NumBaseAdds - PrevNumBaseAdds;
Andrew Trick784729d2011-09-26 23:11:04 +00001417 assert(isValid() && "invalid cost");
Dan Gohman45774ce2010-02-12 10:34:29 +00001418}
1419
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001420/// Set this cost to a losing value.
Tim Northoverbc6659c2014-01-22 13:27:00 +00001421void Cost::Lose() {
Eugene Zelenko306d2992017-10-18 21:46:47 +00001422 C.Insns = std::numeric_limits<unsigned>::max();
1423 C.NumRegs = std::numeric_limits<unsigned>::max();
1424 C.AddRecCost = std::numeric_limits<unsigned>::max();
1425 C.NumIVMuls = std::numeric_limits<unsigned>::max();
1426 C.NumBaseAdds = std::numeric_limits<unsigned>::max();
1427 C.ImmCost = std::numeric_limits<unsigned>::max();
1428 C.SetupCost = std::numeric_limits<unsigned>::max();
1429 C.ScaleCost = std::numeric_limits<unsigned>::max();
Dan Gohman45774ce2010-02-12 10:34:29 +00001430}
1431
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001432/// Choose the lower cost.
Sam Parkereb0b8012019-03-14 11:05:07 +00001433bool Cost::isLess(Cost &Other) {
Evgeny Stupachenkof2b3b462017-06-05 23:37:00 +00001434 if (InsnsCost.getNumOccurrences() > 0 && InsnsCost &&
1435 C.Insns != Other.C.Insns)
1436 return C.Insns < Other.C.Insns;
Sam Parkereb0b8012019-03-14 11:05:07 +00001437 return TTI->isLSRCostLess(C, Other.C);
Dan Gohman45774ce2010-02-12 10:34:29 +00001438}
1439
Aaron Ballman615eb472017-10-15 14:32:27 +00001440#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohman45774ce2010-02-12 10:34:29 +00001441void Cost::print(raw_ostream &OS) const {
Evgeny Stupachenko4d94e992017-06-05 22:44:18 +00001442 if (InsnsCost)
Evgeny Stupachenkof2b3b462017-06-05 23:37:00 +00001443 OS << C.Insns << " instruction" << (C.Insns == 1 ? " " : "s ");
1444 OS << C.NumRegs << " reg" << (C.NumRegs == 1 ? "" : "s");
1445 if (C.AddRecCost != 0)
1446 OS << ", with addrec cost " << C.AddRecCost;
1447 if (C.NumIVMuls != 0)
1448 OS << ", plus " << C.NumIVMuls << " IV mul"
1449 << (C.NumIVMuls == 1 ? "" : "s");
1450 if (C.NumBaseAdds != 0)
1451 OS << ", plus " << C.NumBaseAdds << " base add"
1452 << (C.NumBaseAdds == 1 ? "" : "s");
1453 if (C.ScaleCost != 0)
1454 OS << ", plus " << C.ScaleCost << " scale cost";
1455 if (C.ImmCost != 0)
1456 OS << ", plus " << C.ImmCost << " imm cost";
1457 if (C.SetupCost != 0)
1458 OS << ", plus " << C.SetupCost << " setup cost";
Dan Gohman45774ce2010-02-12 10:34:29 +00001459}
1460
Matthias Braun8c209aa2017-01-28 02:02:38 +00001461LLVM_DUMP_METHOD void Cost::dump() const {
Dan Gohman45774ce2010-02-12 10:34:29 +00001462 print(errs()); errs() << '\n';
1463}
Matthias Braun8c209aa2017-01-28 02:02:38 +00001464#endif
Dan Gohman45774ce2010-02-12 10:34:29 +00001465
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001466/// Test whether this fixup always uses its value outside of the given loop.
Dan Gohmand006ab92010-04-07 22:27:08 +00001467bool LSRFixup::isUseFullyOutsideLoop(const Loop *L) const {
1468 // PHI nodes use their value in their incoming blocks.
1469 if (const PHINode *PN = dyn_cast<PHINode>(UserInst)) {
1470 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
1471 if (PN->getIncomingValue(i) == OperandValToReplace &&
1472 L->contains(PN->getIncomingBlock(i)))
1473 return false;
1474 return true;
1475 }
1476
1477 return !L->contains(UserInst);
1478}
1479
Aaron Ballman615eb472017-10-15 14:32:27 +00001480#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohman45774ce2010-02-12 10:34:29 +00001481void LSRFixup::print(raw_ostream &OS) const {
1482 OS << "UserInst=";
1483 // Store is common and interesting enough to be worth special-casing.
1484 if (StoreInst *Store = dyn_cast<StoreInst>(UserInst)) {
1485 OS << "store ";
Chandler Carruthd48cdbf2014-01-09 02:29:41 +00001486 Store->getOperand(0)->printAsOperand(OS, /*PrintType=*/false);
Dan Gohman45774ce2010-02-12 10:34:29 +00001487 } else if (UserInst->getType()->isVoidTy())
1488 OS << UserInst->getOpcodeName();
1489 else
Chandler Carruthd48cdbf2014-01-09 02:29:41 +00001490 UserInst->printAsOperand(OS, /*PrintType=*/false);
Dan Gohman45774ce2010-02-12 10:34:29 +00001491
1492 OS << ", OperandValToReplace=";
Chandler Carruthd48cdbf2014-01-09 02:29:41 +00001493 OperandValToReplace->printAsOperand(OS, /*PrintType=*/false);
Dan Gohman45774ce2010-02-12 10:34:29 +00001494
Craig Topper042a3922015-05-25 20:01:18 +00001495 for (const Loop *PIL : PostIncLoops) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001496 OS << ", PostIncLoop=";
Craig Topper042a3922015-05-25 20:01:18 +00001497 PIL->getHeader()->printAsOperand(OS, /*PrintType=*/false);
Dan Gohman45774ce2010-02-12 10:34:29 +00001498 }
1499
Dan Gohman45774ce2010-02-12 10:34:29 +00001500 if (Offset != 0)
1501 OS << ", Offset=" << Offset;
1502}
1503
Matthias Braun8c209aa2017-01-28 02:02:38 +00001504LLVM_DUMP_METHOD void LSRFixup::dump() const {
Dan Gohman45774ce2010-02-12 10:34:29 +00001505 print(errs()); errs() << '\n';
1506}
Matthias Braun8c209aa2017-01-28 02:02:38 +00001507#endif
Dan Gohman45774ce2010-02-12 10:34:29 +00001508
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001509/// Test whether this use as a formula which has the same registers as the given
1510/// formula.
Dan Gohman20fab452010-05-19 23:43:12 +00001511bool LSRUse::HasFormulaWithSameRegs(const Formula &F) const {
Preston Gurd25c3b6a2013-02-01 20:41:27 +00001512 SmallVector<const SCEV *, 4> Key = F.BaseRegs;
Dan Gohman20fab452010-05-19 23:43:12 +00001513 if (F.ScaledReg) Key.push_back(F.ScaledReg);
1514 // Unstable sort by host order ok, because this is only used for uniquifying.
Fangrui Song0cac7262018-09-27 02:13:45 +00001515 llvm::sort(Key);
Dan Gohman20fab452010-05-19 23:43:12 +00001516 return Uniquifier.count(Key);
1517}
1518
Evgeny Stupachenko9909872e302017-02-21 07:34:40 +00001519/// The function returns a probability of selecting formula without Reg.
1520float LSRUse::getNotSelectedProbability(const SCEV *Reg) const {
1521 unsigned FNum = 0;
1522 for (const Formula &F : Formulae)
1523 if (F.referencesReg(Reg))
1524 FNum++;
1525 return ((float)(Formulae.size() - FNum)) / Formulae.size();
1526}
1527
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001528/// If the given formula has not yet been inserted, add it to the list, and
1529/// return true. Return false otherwise. The formula must be in canonical form.
Wei Mi74d5a902017-02-22 21:47:08 +00001530bool LSRUse::InsertFormula(const Formula &F, const Loop &L) {
1531 assert(F.isCanonical(L) && "Invalid canonical representation");
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001532
Andrew Trick57243da2013-10-25 21:35:56 +00001533 if (!Formulae.empty() && RigidFormula)
1534 return false;
1535
Preston Gurd25c3b6a2013-02-01 20:41:27 +00001536 SmallVector<const SCEV *, 4> Key = F.BaseRegs;
Dan Gohman45774ce2010-02-12 10:34:29 +00001537 if (F.ScaledReg) Key.push_back(F.ScaledReg);
1538 // Unstable sort by host order ok, because this is only used for uniquifying.
Fangrui Song0cac7262018-09-27 02:13:45 +00001539 llvm::sort(Key);
Dan Gohman45774ce2010-02-12 10:34:29 +00001540
1541 if (!Uniquifier.insert(Key).second)
1542 return false;
1543
1544 // Using a register to hold the value of 0 is not profitable.
1545 assert((!F.ScaledReg || !F.ScaledReg->isZero()) &&
1546 "Zero allocated in a scaled register!");
1547#ifndef NDEBUG
Craig Topper042a3922015-05-25 20:01:18 +00001548 for (const SCEV *BaseReg : F.BaseRegs)
1549 assert(!BaseReg->isZero() && "Zero allocated in a base register!");
Dan Gohman45774ce2010-02-12 10:34:29 +00001550#endif
1551
1552 // Add the formula to the list.
1553 Formulae.push_back(F);
1554
1555 // Record registers now being used by this use.
Dan Gohman45774ce2010-02-12 10:34:29 +00001556 Regs.insert(F.BaseRegs.begin(), F.BaseRegs.end());
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001557 if (F.ScaledReg)
1558 Regs.insert(F.ScaledReg);
Dan Gohman45774ce2010-02-12 10:34:29 +00001559
1560 return true;
Dan Gohman045f8192010-01-22 00:46:49 +00001561}
1562
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001563/// Remove the given formula from this use's list.
Dan Gohmanf1c7b1b2010-05-18 22:39:15 +00001564void LSRUse::DeleteFormula(Formula &F) {
Dan Gohman80a96082010-05-20 15:17:54 +00001565 if (&F != &Formulae.back())
1566 std::swap(F, Formulae.back());
Dan Gohmanf1c7b1b2010-05-18 22:39:15 +00001567 Formulae.pop_back();
1568}
1569
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001570/// Recompute the Regs field, and update RegUses.
Dan Gohman4cf99b52010-05-18 23:42:37 +00001571void LSRUse::RecomputeRegs(size_t LUIdx, RegUseTracker &RegUses) {
1572 // Now that we've filtered out some formulae, recompute the Regs set.
Benjamin Kramer1c2beed2015-02-19 17:19:43 +00001573 SmallPtrSet<const SCEV *, 4> OldRegs = std::move(Regs);
Dan Gohman4cf99b52010-05-18 23:42:37 +00001574 Regs.clear();
Benjamin Kramer1c2beed2015-02-19 17:19:43 +00001575 for (const Formula &F : Formulae) {
Dan Gohman4cf99b52010-05-18 23:42:37 +00001576 if (F.ScaledReg) Regs.insert(F.ScaledReg);
1577 Regs.insert(F.BaseRegs.begin(), F.BaseRegs.end());
1578 }
1579
1580 // Update the RegTracker.
Craig Topper46276792014-08-24 23:23:06 +00001581 for (const SCEV *S : OldRegs)
1582 if (!Regs.count(S))
Sanjoy Das302bfd02015-08-16 18:22:43 +00001583 RegUses.dropRegister(S, LUIdx);
Dan Gohman4cf99b52010-05-18 23:42:37 +00001584}
1585
Aaron Ballman615eb472017-10-15 14:32:27 +00001586#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohman45774ce2010-02-12 10:34:29 +00001587void LSRUse::print(raw_ostream &OS) const {
1588 OS << "LSR Use: Kind=";
1589 switch (Kind) {
1590 case Basic: OS << "Basic"; break;
1591 case Special: OS << "Special"; break;
1592 case ICmpZero: OS << "ICmpZero"; break;
1593 case Address:
1594 OS << "Address of ";
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001595 if (AccessTy.MemTy->isPointerTy())
Dan Gohman45774ce2010-02-12 10:34:29 +00001596 OS << "pointer"; // the full pointer type could be really verbose
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001597 else {
1598 OS << *AccessTy.MemTy;
1599 }
1600
1601 OS << " in addrspace(" << AccessTy.AddrSpace << ')';
Evan Cheng133694d2007-10-25 09:11:16 +00001602 }
1603
Dan Gohman45774ce2010-02-12 10:34:29 +00001604 OS << ", Offsets={";
Craig Topper042a3922015-05-25 20:01:18 +00001605 bool NeedComma = false;
Jonas Paulsson7a794222016-08-17 13:24:19 +00001606 for (const LSRFixup &Fixup : Fixups) {
Craig Topper042a3922015-05-25 20:01:18 +00001607 if (NeedComma) OS << ',';
Jonas Paulsson7a794222016-08-17 13:24:19 +00001608 OS << Fixup.Offset;
Craig Topper042a3922015-05-25 20:01:18 +00001609 NeedComma = true;
Dan Gohman045f8192010-01-22 00:46:49 +00001610 }
Dan Gohman45774ce2010-02-12 10:34:29 +00001611 OS << '}';
Dan Gohman045f8192010-01-22 00:46:49 +00001612
Dan Gohman45774ce2010-02-12 10:34:29 +00001613 if (AllFixupsOutsideLoop)
1614 OS << ", all-fixups-outside-loop";
Dan Gohman14152082010-07-15 20:24:58 +00001615
1616 if (WidestFixupType)
1617 OS << ", widest fixup type: " << *WidestFixupType;
Dan Gohman045f8192010-01-22 00:46:49 +00001618}
1619
Matthias Braun8c209aa2017-01-28 02:02:38 +00001620LLVM_DUMP_METHOD void LSRUse::dump() const {
Dan Gohman45774ce2010-02-12 10:34:29 +00001621 print(errs()); errs() << '\n';
1622}
Matthias Braun8c209aa2017-01-28 02:02:38 +00001623#endif
Dan Gohman045f8192010-01-22 00:46:49 +00001624
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001625static bool isAMCompletelyFolded(const TargetTransformInfo &TTI,
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001626 LSRUse::KindType Kind, MemAccessTy AccessTy,
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001627 GlobalValue *BaseGV, int64_t BaseOffset,
Jonas Paulsson024e3192017-07-21 11:59:37 +00001628 bool HasBaseReg, int64_t Scale,
Jonas Paulsson6228aed2017-08-09 11:28:01 +00001629 Instruction *Fixup/*= nullptr*/) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001630 switch (Kind) {
1631 case LSRUse::Address:
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001632 return TTI.isLegalAddressingMode(AccessTy.MemTy, BaseGV, BaseOffset,
Jonas Paulsson024e3192017-07-21 11:59:37 +00001633 HasBaseReg, Scale, AccessTy.AddrSpace, Fixup);
Dan Gohman45774ce2010-02-12 10:34:29 +00001634
Dan Gohman45774ce2010-02-12 10:34:29 +00001635 case LSRUse::ICmpZero:
1636 // There's not even a target hook for querying whether it would be legal to
1637 // fold a GV into an ICmp.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001638 if (BaseGV)
Dan Gohman45774ce2010-02-12 10:34:29 +00001639 return false;
1640
1641 // ICmp only has two operands; don't allow more than two non-trivial parts.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001642 if (Scale != 0 && HasBaseReg && BaseOffset != 0)
Dan Gohman45774ce2010-02-12 10:34:29 +00001643 return false;
1644
1645 // ICmp only supports no scale or a -1 scale, as we can "fold" a -1 scale by
1646 // putting the scaled register in the other operand of the icmp.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001647 if (Scale != 0 && Scale != -1)
Dan Gohman45774ce2010-02-12 10:34:29 +00001648 return false;
1649
1650 // If we have low-level target information, ask the target if it can fold an
1651 // integer immediate on an icmp.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001652 if (BaseOffset != 0) {
Jakob Stoklund Olesenf2390e82012-04-05 03:10:56 +00001653 // We have one of:
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001654 // ICmpZero BaseReg + BaseOffset => ICmp BaseReg, -BaseOffset
1655 // ICmpZero -1*ScaleReg + BaseOffset => ICmp ScaleReg, BaseOffset
Jakob Stoklund Olesenf2390e82012-04-05 03:10:56 +00001656 // Offs is the ICmp immediate.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001657 if (Scale == 0)
Eugene Zelenko306d2992017-10-18 21:46:47 +00001658 // The cast does the right thing with
1659 // std::numeric_limits<int64_t>::min().
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001660 BaseOffset = -(uint64_t)BaseOffset;
1661 return TTI.isLegalICmpImmediate(BaseOffset);
Dan Gohman045f8192010-01-22 00:46:49 +00001662 }
Dan Gohman45774ce2010-02-12 10:34:29 +00001663
Jakob Stoklund Olesenf2390e82012-04-05 03:10:56 +00001664 // ICmpZero BaseReg + -1*ScaleReg => ICmp BaseReg, ScaleReg
Dan Gohman45774ce2010-02-12 10:34:29 +00001665 return true;
1666
1667 case LSRUse::Basic:
1668 // Only handle single-register values.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001669 return !BaseGV && Scale == 0 && BaseOffset == 0;
Dan Gohman45774ce2010-02-12 10:34:29 +00001670
1671 case LSRUse::Special:
Andrew Trickaca8fb32012-06-15 20:07:26 +00001672 // Special case Basic to handle -1 scales.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001673 return !BaseGV && (Scale == 0 || Scale == -1) && BaseOffset == 0;
Dan Gohman045f8192010-01-22 00:46:49 +00001674 }
1675
David Blaikie46a9f012012-01-20 21:51:11 +00001676 llvm_unreachable("Invalid LSRUse Kind!");
Dan Gohman045f8192010-01-22 00:46:49 +00001677}
1678
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001679static bool isAMCompletelyFolded(const TargetTransformInfo &TTI,
1680 int64_t MinOffset, int64_t MaxOffset,
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001681 LSRUse::KindType Kind, MemAccessTy AccessTy,
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001682 GlobalValue *BaseGV, int64_t BaseOffset,
1683 bool HasBaseReg, int64_t Scale) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001684 // Check for overflow.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001685 if (((int64_t)((uint64_t)BaseOffset + MinOffset) > BaseOffset) !=
Dan Gohman45774ce2010-02-12 10:34:29 +00001686 (MinOffset > 0))
1687 return false;
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001688 MinOffset = (uint64_t)BaseOffset + MinOffset;
1689 if (((int64_t)((uint64_t)BaseOffset + MaxOffset) > BaseOffset) !=
1690 (MaxOffset > 0))
1691 return false;
1692 MaxOffset = (uint64_t)BaseOffset + MaxOffset;
1693
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001694 return isAMCompletelyFolded(TTI, Kind, AccessTy, BaseGV, MinOffset,
1695 HasBaseReg, Scale) &&
1696 isAMCompletelyFolded(TTI, Kind, AccessTy, BaseGV, MaxOffset,
1697 HasBaseReg, Scale);
1698}
1699
1700static bool isAMCompletelyFolded(const TargetTransformInfo &TTI,
1701 int64_t MinOffset, int64_t MaxOffset,
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001702 LSRUse::KindType Kind, MemAccessTy AccessTy,
Wei Mi74d5a902017-02-22 21:47:08 +00001703 const Formula &F, const Loop &L) {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001704 // For the purpose of isAMCompletelyFolded either having a canonical formula
1705 // or a scale not equal to zero is correct.
1706 // Problems may arise from non canonical formulae having a scale == 0.
1707 // Strictly speaking it would best to just rely on canonical formulae.
1708 // However, when we generate the scaled formulae, we first check that the
1709 // scaling factor is profitable before computing the actual ScaledReg for
1710 // compile time sake.
Wei Mi74d5a902017-02-22 21:47:08 +00001711 assert((F.isCanonical(L) || F.Scale != 0));
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001712 return isAMCompletelyFolded(TTI, MinOffset, MaxOffset, Kind, AccessTy,
1713 F.BaseGV, F.BaseOffset, F.HasBaseReg, F.Scale);
1714}
1715
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001716/// Test whether we know how to expand the current formula.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001717static bool isLegalUse(const TargetTransformInfo &TTI, int64_t MinOffset,
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001718 int64_t MaxOffset, LSRUse::KindType Kind,
1719 MemAccessTy AccessTy, GlobalValue *BaseGV,
1720 int64_t BaseOffset, bool HasBaseReg, int64_t Scale) {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001721 // We know how to expand completely foldable formulae.
1722 return isAMCompletelyFolded(TTI, MinOffset, MaxOffset, Kind, AccessTy, BaseGV,
1723 BaseOffset, HasBaseReg, Scale) ||
1724 // Or formulae that use a base register produced by a sum of base
1725 // registers.
1726 (Scale == 1 &&
1727 isAMCompletelyFolded(TTI, MinOffset, MaxOffset, Kind, AccessTy,
1728 BaseGV, BaseOffset, true, 0));
Dan Gohman045f8192010-01-22 00:46:49 +00001729}
1730
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001731static bool isLegalUse(const TargetTransformInfo &TTI, int64_t MinOffset,
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001732 int64_t MaxOffset, LSRUse::KindType Kind,
1733 MemAccessTy AccessTy, const Formula &F) {
Chandler Carruth6e479322013-01-07 15:04:40 +00001734 return isLegalUse(TTI, MinOffset, MaxOffset, Kind, AccessTy, F.BaseGV,
1735 F.BaseOffset, F.HasBaseReg, F.Scale);
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001736}
1737
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001738static bool isAMCompletelyFolded(const TargetTransformInfo &TTI,
1739 const LSRUse &LU, const Formula &F) {
Jonas Paulsson024e3192017-07-21 11:59:37 +00001740 // Target may want to look at the user instructions.
1741 if (LU.Kind == LSRUse::Address && TTI.LSRWithInstrQueries()) {
1742 for (const LSRFixup &Fixup : LU.Fixups)
1743 if (!isAMCompletelyFolded(TTI, LSRUse::Address, LU.AccessTy, F.BaseGV,
Jonas Paulsson50527712017-08-09 11:27:46 +00001744 (F.BaseOffset + Fixup.Offset), F.HasBaseReg,
1745 F.Scale, Fixup.UserInst))
Jonas Paulsson024e3192017-07-21 11:59:37 +00001746 return false;
1747 return true;
1748 }
1749
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001750 return isAMCompletelyFolded(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind,
1751 LU.AccessTy, F.BaseGV, F.BaseOffset, F.HasBaseReg,
1752 F.Scale);
1753}
Quentin Colombet8aa7abe2013-05-31 17:20:29 +00001754
Quentin Colombetbf490d42013-05-31 21:29:03 +00001755static unsigned getScalingFactorCost(const TargetTransformInfo &TTI,
Wei Mi74d5a902017-02-22 21:47:08 +00001756 const LSRUse &LU, const Formula &F,
1757 const Loop &L) {
Quentin Colombetbf490d42013-05-31 21:29:03 +00001758 if (!F.Scale)
1759 return 0;
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001760
1761 // If the use is not completely folded in that instruction, we will have to
1762 // pay an extra cost only for scale != 1.
1763 if (!isAMCompletelyFolded(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind,
Wei Mi74d5a902017-02-22 21:47:08 +00001764 LU.AccessTy, F, L))
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001765 return F.Scale != 1;
Quentin Colombetbf490d42013-05-31 21:29:03 +00001766
1767 switch (LU.Kind) {
1768 case LSRUse::Address: {
Quentin Colombet145eb972013-06-19 19:59:41 +00001769 // Check the scaling factor cost with both the min and max offsets.
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001770 int ScaleCostMinOffset = TTI.getScalingFactorCost(
1771 LU.AccessTy.MemTy, F.BaseGV, F.BaseOffset + LU.MinOffset, F.HasBaseReg,
1772 F.Scale, LU.AccessTy.AddrSpace);
1773 int ScaleCostMaxOffset = TTI.getScalingFactorCost(
1774 LU.AccessTy.MemTy, F.BaseGV, F.BaseOffset + LU.MaxOffset, F.HasBaseReg,
1775 F.Scale, LU.AccessTy.AddrSpace);
Quentin Colombet145eb972013-06-19 19:59:41 +00001776
1777 assert(ScaleCostMinOffset >= 0 && ScaleCostMaxOffset >= 0 &&
1778 "Legal addressing mode has an illegal cost!");
1779 return std::max(ScaleCostMinOffset, ScaleCostMaxOffset);
Quentin Colombetbf490d42013-05-31 21:29:03 +00001780 }
1781 case LSRUse::ICmpZero:
Quentin Colombetbf490d42013-05-31 21:29:03 +00001782 case LSRUse::Basic:
1783 case LSRUse::Special:
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001784 // The use is completely folded, i.e., everything is folded into the
1785 // instruction.
Quentin Colombetbf490d42013-05-31 21:29:03 +00001786 return 0;
1787 }
1788
1789 llvm_unreachable("Invalid LSRUse Kind!");
1790}
1791
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001792static bool isAlwaysFoldable(const TargetTransformInfo &TTI,
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001793 LSRUse::KindType Kind, MemAccessTy AccessTy,
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001794 GlobalValue *BaseGV, int64_t BaseOffset,
1795 bool HasBaseReg) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001796 // Fast-path: zero is always foldable.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001797 if (BaseOffset == 0 && !BaseGV) return true;
Dan Gohman045f8192010-01-22 00:46:49 +00001798
Dan Gohman45774ce2010-02-12 10:34:29 +00001799 // Conservatively, create an address with an immediate and a
1800 // base and a scale.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001801 int64_t Scale = Kind == LSRUse::ICmpZero ? -1 : 1;
Dan Gohman045f8192010-01-22 00:46:49 +00001802
Dan Gohman20fab452010-05-19 23:43:12 +00001803 // Canonicalize a scale of 1 to a base register if the formula doesn't
1804 // already have a base register.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001805 if (!HasBaseReg && Scale == 1) {
1806 Scale = 0;
1807 HasBaseReg = true;
Dan Gohman20fab452010-05-19 23:43:12 +00001808 }
1809
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001810 return isAMCompletelyFolded(TTI, Kind, AccessTy, BaseGV, BaseOffset,
1811 HasBaseReg, Scale);
Dan Gohman045f8192010-01-22 00:46:49 +00001812}
1813
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001814static bool isAlwaysFoldable(const TargetTransformInfo &TTI,
1815 ScalarEvolution &SE, int64_t MinOffset,
1816 int64_t MaxOffset, LSRUse::KindType Kind,
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001817 MemAccessTy AccessTy, const SCEV *S,
1818 bool HasBaseReg) {
Dan Gohman45774ce2010-02-12 10:34:29 +00001819 // Fast-path: zero is always foldable.
1820 if (S->isZero()) return true;
1821
1822 // Conservatively, create an address with an immediate and a
1823 // base and a scale.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001824 int64_t BaseOffset = ExtractImmediate(S, SE);
Dan Gohman45774ce2010-02-12 10:34:29 +00001825 GlobalValue *BaseGV = ExtractSymbol(S, SE);
1826
1827 // If there's anything else involved, it's not foldable.
1828 if (!S->isZero()) return false;
1829
1830 // Fast-path: zero is always foldable.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001831 if (BaseOffset == 0 && !BaseGV) return true;
Dan Gohman45774ce2010-02-12 10:34:29 +00001832
1833 // Conservatively, create an address with an immediate and a
1834 // base and a scale.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001835 int64_t Scale = Kind == LSRUse::ICmpZero ? -1 : 1;
Dan Gohman45774ce2010-02-12 10:34:29 +00001836
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001837 return isAMCompletelyFolded(TTI, MinOffset, MaxOffset, Kind, AccessTy, BaseGV,
1838 BaseOffset, HasBaseReg, Scale);
Dan Gohman045f8192010-01-22 00:46:49 +00001839}
1840
Dan Gohman297fb8b2010-06-19 21:21:39 +00001841namespace {
1842
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001843/// An individual increment in a Chain of IV increments. Relate an IV user to
1844/// an expression that computes the IV it uses from the IV used by the previous
1845/// link in the Chain.
Andrew Trick29fe5f02012-01-09 19:50:34 +00001846///
1847/// For the head of a chain, IncExpr holds the absolute SCEV expression for the
1848/// original IVOperand. The head of the chain's IVOperand is only valid during
1849/// chain collection, before LSR replaces IV users. During chain generation,
1850/// IncExpr can be used to find the new IVOperand that computes the same
1851/// expression.
1852struct IVInc {
1853 Instruction *UserInst;
1854 Value* IVOperand;
1855 const SCEV *IncExpr;
1856
Eugene Zelenko306d2992017-10-18 21:46:47 +00001857 IVInc(Instruction *U, Value *O, const SCEV *E)
1858 : UserInst(U), IVOperand(O), IncExpr(E) {}
Andrew Trick29fe5f02012-01-09 19:50:34 +00001859};
1860
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001861// The list of IV increments in program order. We typically add the head of a
1862// chain without finding subsequent links.
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001863struct IVChain {
Eugene Zelenko306d2992017-10-18 21:46:47 +00001864 SmallVector<IVInc, 1> Incs;
1865 const SCEV *ExprBase = nullptr;
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00001866
Eugene Zelenko306d2992017-10-18 21:46:47 +00001867 IVChain() = default;
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00001868 IVChain(const IVInc &Head, const SCEV *Base)
Eugene Zelenko306d2992017-10-18 21:46:47 +00001869 : Incs(1, Head), ExprBase(Base) {}
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001870
Eugene Zelenko306d2992017-10-18 21:46:47 +00001871 using const_iterator = SmallVectorImpl<IVInc>::const_iterator;
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001872
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001873 // Return the first increment in the chain.
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001874 const_iterator begin() const {
1875 assert(!Incs.empty());
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00001876 return std::next(Incs.begin());
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001877 }
1878 const_iterator end() const {
1879 return Incs.end();
1880 }
1881
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001882 // Returns true if this chain contains any increments.
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001883 bool hasIncs() const { return Incs.size() >= 2; }
1884
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001885 // Add an IVInc to the end of this chain.
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001886 void add(const IVInc &X) { Incs.push_back(X); }
1887
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001888 // Returns the last UserInst in the chain.
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001889 Instruction *tailUserInst() const { return Incs.back().UserInst; }
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00001890
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001891 // Returns true if IncExpr can be profitably added to this chain.
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00001892 bool isProfitableIncrement(const SCEV *OperExpr,
1893 const SCEV *IncExpr,
1894 ScalarEvolution&);
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00001895};
Andrew Trick29fe5f02012-01-09 19:50:34 +00001896
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001897/// Helper for CollectChains to track multiple IV increment uses. Distinguish
1898/// between FarUsers that definitely cross IV increments and NearUsers that may
1899/// be used between IV increments.
Andrew Trick29fe5f02012-01-09 19:50:34 +00001900struct ChainUsers {
1901 SmallPtrSet<Instruction*, 4> FarUsers;
1902 SmallPtrSet<Instruction*, 4> NearUsers;
1903};
1904
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001905/// This class holds state for the main loop strength reduction logic.
Dan Gohman45774ce2010-02-12 10:34:29 +00001906class LSRInstance {
1907 IVUsers &IU;
1908 ScalarEvolution &SE;
1909 DominatorTree &DT;
Dan Gohman607e02b2010-04-09 22:07:05 +00001910 LoopInfo &LI;
Chandler Carruth26c59fa2013-01-07 14:41:08 +00001911 const TargetTransformInfo &TTI;
Dan Gohman45774ce2010-02-12 10:34:29 +00001912 Loop *const L;
Sam Parker67756c02019-02-07 13:32:54 +00001913 bool FavorBackedgeIndex = false;
Eugene Zelenko306d2992017-10-18 21:46:47 +00001914 bool Changed = false;
Dan Gohman45774ce2010-02-12 10:34:29 +00001915
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001916 /// This is the insert position that the current loop's induction variable
1917 /// increment should be placed. In simple loops, this is the latch block's
1918 /// terminator. But in more complicated cases, this is a position which will
1919 /// dominate all the in-loop post-increment users.
Eugene Zelenko306d2992017-10-18 21:46:47 +00001920 Instruction *IVIncInsertPos = nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +00001921
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001922 /// Interesting factors between use strides.
Justin Lebar54b0be02016-11-05 16:47:25 +00001923 ///
1924 /// We explicitly use a SetVector which contains a SmallSet, instead of the
1925 /// default, a SmallDenseSet, because we need to use the full range of
1926 /// int64_ts, and there's currently no good way of doing that with
1927 /// SmallDenseSet.
1928 SetVector<int64_t, SmallVector<int64_t, 8>, SmallSet<int64_t, 8>> Factors;
Dan Gohman45774ce2010-02-12 10:34:29 +00001929
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001930 /// Interesting use types, to facilitate truncation reuse.
Chris Lattner229907c2011-07-18 04:54:35 +00001931 SmallSetVector<Type *, 4> Types;
Dan Gohman45774ce2010-02-12 10:34:29 +00001932
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001933 /// The list of interesting uses.
Dan Gohman45774ce2010-02-12 10:34:29 +00001934 SmallVector<LSRUse, 16> Uses;
1935
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001936 /// Track which uses use which register candidates.
Dan Gohman45774ce2010-02-12 10:34:29 +00001937 RegUseTracker RegUses;
1938
Andrew Trick29fe5f02012-01-09 19:50:34 +00001939 // Limit the number of chains to avoid quadratic behavior. We don't expect to
1940 // have more than a few IV increment chains in a loop. Missing a Chain falls
1941 // back to normal LSR behavior for those uses.
1942 static const unsigned MaxChains = 8;
1943
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001944 /// IV users can form a chain of IV increments.
Andrew Trick29fe5f02012-01-09 19:50:34 +00001945 SmallVector<IVChain, MaxChains> IVChainVec;
1946
Sanjoy Das94c4aec2015-08-16 18:22:46 +00001947 /// IV users that belong to profitable IVChains.
Andrew Trick248d4102012-01-09 21:18:52 +00001948 SmallPtrSet<Use*, MaxChains> IVIncSet;
1949
Dan Gohman45774ce2010-02-12 10:34:29 +00001950 void OptimizeShadowIV();
1951 bool FindIVUserForCond(ICmpInst *Cond, IVStrideUse *&CondUse);
1952 ICmpInst *OptimizeMax(ICmpInst *Cond, IVStrideUse* &CondUse);
Dan Gohman4c4043c2010-05-20 20:05:31 +00001953 void OptimizeLoopTermCond();
Dan Gohman45774ce2010-02-12 10:34:29 +00001954
Andrew Trick29fe5f02012-01-09 19:50:34 +00001955 void ChainInstruction(Instruction *UserInst, Instruction *IVOper,
1956 SmallVectorImpl<ChainUsers> &ChainUsersVec);
Andrew Trick248d4102012-01-09 21:18:52 +00001957 void FinalizeChain(IVChain &Chain);
Andrew Trick29fe5f02012-01-09 19:50:34 +00001958 void CollectChains();
Andrew Trick248d4102012-01-09 21:18:52 +00001959 void GenerateIVChain(const IVChain &Chain, SCEVExpander &Rewriter,
Sanjoy Dase6bca0e2017-05-01 17:07:49 +00001960 SmallVectorImpl<WeakTrackingVH> &DeadInsts);
Andrew Trick29fe5f02012-01-09 19:50:34 +00001961
Dan Gohman45774ce2010-02-12 10:34:29 +00001962 void CollectInterestingTypesAndFactors();
1963 void CollectFixupsAndInitialFormulae();
1964
Dan Gohman45774ce2010-02-12 10:34:29 +00001965 // Support for sharing of LSRUses between LSRFixups.
Eugene Zelenko306d2992017-10-18 21:46:47 +00001966 using UseMapTy = DenseMap<LSRUse::SCEVUseKindPair, size_t>;
Dan Gohman45774ce2010-02-12 10:34:29 +00001967 UseMapTy UseMap;
1968
Dan Gohman110ed642010-09-01 01:45:53 +00001969 bool reconcileNewOffset(LSRUse &LU, int64_t NewOffset, bool HasBaseReg,
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001970 LSRUse::KindType Kind, MemAccessTy AccessTy);
Dan Gohman45774ce2010-02-12 10:34:29 +00001971
Matt Arsenault427a0fd2015-08-15 00:53:06 +00001972 std::pair<size_t, int64_t> getUse(const SCEV *&Expr, LSRUse::KindType Kind,
1973 MemAccessTy AccessTy);
Dan Gohman45774ce2010-02-12 10:34:29 +00001974
Dan Gohmana7b68d62010-10-07 23:33:43 +00001975 void DeleteUse(LSRUse &LU, size_t LUIdx);
Dan Gohman80a96082010-05-20 15:17:54 +00001976
Dan Gohman110ed642010-09-01 01:45:53 +00001977 LSRUse *FindUseWithSimilarFormula(const Formula &F, const LSRUse &OrigLU);
Dan Gohman20fab452010-05-19 23:43:12 +00001978
Dan Gohman8c16b382010-02-22 04:11:59 +00001979 void InsertInitialFormula(const SCEV *S, LSRUse &LU, size_t LUIdx);
Dan Gohman45774ce2010-02-12 10:34:29 +00001980 void InsertSupplementalFormula(const SCEV *S, LSRUse &LU, size_t LUIdx);
1981 void CountRegisters(const Formula &F, size_t LUIdx);
1982 bool InsertFormula(LSRUse &LU, unsigned LUIdx, const Formula &F);
1983
1984 void CollectLoopInvariantFixupsAndFormulae();
1985
1986 void GenerateReassociations(LSRUse &LU, unsigned LUIdx, Formula Base,
1987 unsigned Depth = 0);
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001988
1989 void GenerateReassociationsImpl(LSRUse &LU, unsigned LUIdx,
1990 const Formula &Base, unsigned Depth,
1991 size_t Idx, bool IsScaledReg = false);
Dan Gohman45774ce2010-02-12 10:34:29 +00001992 void GenerateCombinations(LSRUse &LU, unsigned LUIdx, Formula Base);
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001993 void GenerateSymbolicOffsetsImpl(LSRUse &LU, unsigned LUIdx,
1994 const Formula &Base, size_t Idx,
1995 bool IsScaledReg = false);
Dan Gohman45774ce2010-02-12 10:34:29 +00001996 void GenerateSymbolicOffsets(LSRUse &LU, unsigned LUIdx, Formula Base);
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00001997 void GenerateConstantOffsetsImpl(LSRUse &LU, unsigned LUIdx,
1998 const Formula &Base,
1999 const SmallVectorImpl<int64_t> &Worklist,
2000 size_t Idx, bool IsScaledReg = false);
Dan Gohman45774ce2010-02-12 10:34:29 +00002001 void GenerateConstantOffsets(LSRUse &LU, unsigned LUIdx, Formula Base);
2002 void GenerateICmpZeroScales(LSRUse &LU, unsigned LUIdx, Formula Base);
2003 void GenerateScales(LSRUse &LU, unsigned LUIdx, Formula Base);
2004 void GenerateTruncates(LSRUse &LU, unsigned LUIdx, Formula Base);
2005 void GenerateCrossUseConstantOffsets();
2006 void GenerateAllReuseFormulae();
2007
2008 void FilterOutUndesirableDedicatedRegisters();
Dan Gohmana4eca052010-05-18 22:51:59 +00002009
2010 size_t EstimateSearchSpaceComplexity() const;
Dan Gohmane9e08732010-08-29 16:09:42 +00002011 void NarrowSearchSpaceByDetectingSupersets();
2012 void NarrowSearchSpaceByCollapsingUnrolledCode();
Dan Gohman002ff892010-08-29 16:39:22 +00002013 void NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters();
Wei Mi90707392017-07-06 15:52:14 +00002014 void NarrowSearchSpaceByFilterFormulaWithSameScaledReg();
Evgeny Stupachenko9909872e302017-02-21 07:34:40 +00002015 void NarrowSearchSpaceByDeletingCostlyFormulas();
Dan Gohmane9e08732010-08-29 16:09:42 +00002016 void NarrowSearchSpaceByPickingWinnerRegs();
Dan Gohman45774ce2010-02-12 10:34:29 +00002017 void NarrowSearchSpaceUsingHeuristics();
2018
2019 void SolveRecurse(SmallVectorImpl<const Formula *> &Solution,
2020 Cost &SolutionCost,
2021 SmallVectorImpl<const Formula *> &Workspace,
2022 const Cost &CurCost,
2023 const SmallPtrSet<const SCEV *, 16> &CurRegs,
2024 DenseSet<const SCEV *> &VisitedRegs) const;
2025 void Solve(SmallVectorImpl<const Formula *> &Solution) const;
2026
Dan Gohman607e02b2010-04-09 22:07:05 +00002027 BasicBlock::iterator
2028 HoistInsertPosition(BasicBlock::iterator IP,
2029 const SmallVectorImpl<Instruction *> &Inputs) const;
Andrew Trickc908b432012-01-20 07:41:13 +00002030 BasicBlock::iterator
2031 AdjustInsertPositionForExpand(BasicBlock::iterator IP,
2032 const LSRFixup &LF,
2033 const LSRUse &LU,
2034 SCEVExpander &Rewriter) const;
Dan Gohmand2df6432010-04-09 02:00:38 +00002035
Sanjoy Dase6bca0e2017-05-01 17:07:49 +00002036 Value *Expand(const LSRUse &LU, const LSRFixup &LF, const Formula &F,
2037 BasicBlock::iterator IP, SCEVExpander &Rewriter,
2038 SmallVectorImpl<WeakTrackingVH> &DeadInsts) const;
Jonas Paulsson7a794222016-08-17 13:24:19 +00002039 void RewriteForPHI(PHINode *PN, const LSRUse &LU, const LSRFixup &LF,
Sanjoy Dase6bca0e2017-05-01 17:07:49 +00002040 const Formula &F, SCEVExpander &Rewriter,
2041 SmallVectorImpl<WeakTrackingVH> &DeadInsts) const;
2042 void Rewrite(const LSRUse &LU, const LSRFixup &LF, const Formula &F,
Dan Gohman45774ce2010-02-12 10:34:29 +00002043 SCEVExpander &Rewriter,
Sanjoy Dase6bca0e2017-05-01 17:07:49 +00002044 SmallVectorImpl<WeakTrackingVH> &DeadInsts) const;
Justin Bogner843fb202015-12-15 19:40:57 +00002045 void ImplementSolution(const SmallVectorImpl<const Formula *> &Solution);
Dan Gohman45774ce2010-02-12 10:34:29 +00002046
Andrew Trickdc18e382011-12-13 00:55:33 +00002047public:
Justin Bogner843fb202015-12-15 19:40:57 +00002048 LSRInstance(Loop *L, IVUsers &IU, ScalarEvolution &SE, DominatorTree &DT,
2049 LoopInfo &LI, const TargetTransformInfo &TTI);
Dan Gohman45774ce2010-02-12 10:34:29 +00002050
2051 bool getChanged() const { return Changed; }
2052
2053 void print_factors_and_types(raw_ostream &OS) const;
2054 void print_fixups(raw_ostream &OS) const;
2055 void print_uses(raw_ostream &OS) const;
2056 void print(raw_ostream &OS) const;
2057 void dump() const;
2058};
2059
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +00002060} // end anonymous namespace
Dan Gohman45774ce2010-02-12 10:34:29 +00002061
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002062/// If IV is used in a int-to-float cast inside the loop then try to eliminate
2063/// the cast operation.
Dan Gohman45774ce2010-02-12 10:34:29 +00002064void LSRInstance::OptimizeShadowIV() {
2065 const SCEV *BackedgeTakenCount = SE.getBackedgeTakenCount(L);
2066 if (isa<SCEVCouldNotCompute>(BackedgeTakenCount))
2067 return;
2068
2069 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end();
2070 UI != E; /* empty */) {
2071 IVUsers::const_iterator CandidateUI = UI;
2072 ++UI;
2073 Instruction *ShadowUse = CandidateUI->getUser();
Craig Topperf40110f2014-04-25 05:29:35 +00002074 Type *DestTy = nullptr;
Andrew Trick858e9f02011-07-21 01:05:01 +00002075 bool IsSigned = false;
Dan Gohman45774ce2010-02-12 10:34:29 +00002076
2077 /* If shadow use is a int->float cast then insert a second IV
2078 to eliminate this cast.
2079
2080 for (unsigned i = 0; i < n; ++i)
2081 foo((double)i);
2082
2083 is transformed into
2084
2085 double d = 0.0;
2086 for (unsigned i = 0; i < n; ++i, ++d)
2087 foo(d);
2088 */
Andrew Trick858e9f02011-07-21 01:05:01 +00002089 if (UIToFPInst *UCast = dyn_cast<UIToFPInst>(CandidateUI->getUser())) {
2090 IsSigned = false;
Dan Gohman45774ce2010-02-12 10:34:29 +00002091 DestTy = UCast->getDestTy();
Andrew Trick858e9f02011-07-21 01:05:01 +00002092 }
2093 else if (SIToFPInst *SCast = dyn_cast<SIToFPInst>(CandidateUI->getUser())) {
2094 IsSigned = true;
Dan Gohman45774ce2010-02-12 10:34:29 +00002095 DestTy = SCast->getDestTy();
Andrew Trick858e9f02011-07-21 01:05:01 +00002096 }
Dan Gohman45774ce2010-02-12 10:34:29 +00002097 if (!DestTy) continue;
2098
Chandler Carruth26c59fa2013-01-07 14:41:08 +00002099 // If target does not support DestTy natively then do not apply
2100 // this transformation.
2101 if (!TTI.isTypeLegal(DestTy)) continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00002102
2103 PHINode *PH = dyn_cast<PHINode>(ShadowUse->getOperand(0));
2104 if (!PH) continue;
2105 if (PH->getNumIncomingValues() != 2) continue;
2106
Max Kazantsevbb1d0102017-08-29 07:32:20 +00002107 // If the calculation in integers overflows, the result in FP type will
2108 // differ. So we only can do this transformation if we are guaranteed to not
2109 // deal with overflowing values
2110 const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(SE.getSCEV(PH));
2111 if (!AR) continue;
2112 if (IsSigned && !AR->hasNoSignedWrap()) continue;
2113 if (!IsSigned && !AR->hasNoUnsignedWrap()) continue;
2114
Chris Lattner229907c2011-07-18 04:54:35 +00002115 Type *SrcTy = PH->getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00002116 int Mantissa = DestTy->getFPMantissaWidth();
2117 if (Mantissa == -1) continue;
2118 if ((int)SE.getTypeSizeInBits(SrcTy) > Mantissa)
2119 continue;
2120
2121 unsigned Entry, Latch;
2122 if (PH->getIncomingBlock(0) == L->getLoopPreheader()) {
2123 Entry = 0;
2124 Latch = 1;
Dan Gohman045f8192010-01-22 00:46:49 +00002125 } else {
Dan Gohman45774ce2010-02-12 10:34:29 +00002126 Entry = 1;
2127 Latch = 0;
Dan Gohman045f8192010-01-22 00:46:49 +00002128 }
Dan Gohman045f8192010-01-22 00:46:49 +00002129
Dan Gohman45774ce2010-02-12 10:34:29 +00002130 ConstantInt *Init = dyn_cast<ConstantInt>(PH->getIncomingValue(Entry));
2131 if (!Init) continue;
Andrew Trick858e9f02011-07-21 01:05:01 +00002132 Constant *NewInit = ConstantFP::get(DestTy, IsSigned ?
Andrew Trickbd243d02011-07-21 01:45:54 +00002133 (double)Init->getSExtValue() :
2134 (double)Init->getZExtValue());
Dan Gohman045f8192010-01-22 00:46:49 +00002135
Dan Gohman45774ce2010-02-12 10:34:29 +00002136 BinaryOperator *Incr =
2137 dyn_cast<BinaryOperator>(PH->getIncomingValue(Latch));
2138 if (!Incr) continue;
2139 if (Incr->getOpcode() != Instruction::Add
2140 && Incr->getOpcode() != Instruction::Sub)
Dan Gohman045f8192010-01-22 00:46:49 +00002141 continue;
Dan Gohman045f8192010-01-22 00:46:49 +00002142
Dan Gohman45774ce2010-02-12 10:34:29 +00002143 /* Initialize new IV, double d = 0.0 in above example. */
Craig Topperf40110f2014-04-25 05:29:35 +00002144 ConstantInt *C = nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +00002145 if (Incr->getOperand(0) == PH)
2146 C = dyn_cast<ConstantInt>(Incr->getOperand(1));
2147 else if (Incr->getOperand(1) == PH)
2148 C = dyn_cast<ConstantInt>(Incr->getOperand(0));
Dan Gohman045f8192010-01-22 00:46:49 +00002149 else
Dan Gohman045f8192010-01-22 00:46:49 +00002150 continue;
2151
Dan Gohman45774ce2010-02-12 10:34:29 +00002152 if (!C) continue;
Dan Gohman045f8192010-01-22 00:46:49 +00002153
Dan Gohman45774ce2010-02-12 10:34:29 +00002154 // Ignore negative constants, as the code below doesn't handle them
2155 // correctly. TODO: Remove this restriction.
2156 if (!C->getValue().isStrictlyPositive()) continue;
Dan Gohman045f8192010-01-22 00:46:49 +00002157
Dan Gohman45774ce2010-02-12 10:34:29 +00002158 /* Add new PHINode. */
Jay Foad52131342011-03-30 11:28:46 +00002159 PHINode *NewPH = PHINode::Create(DestTy, 2, "IV.S.", PH);
Dan Gohman045f8192010-01-22 00:46:49 +00002160
Dan Gohman45774ce2010-02-12 10:34:29 +00002161 /* create new increment. '++d' in above example. */
2162 Constant *CFP = ConstantFP::get(DestTy, C->getZExtValue());
2163 BinaryOperator *NewIncr =
2164 BinaryOperator::Create(Incr->getOpcode() == Instruction::Add ?
2165 Instruction::FAdd : Instruction::FSub,
2166 NewPH, CFP, "IV.S.next.", Incr);
Dan Gohman045f8192010-01-22 00:46:49 +00002167
Dan Gohman45774ce2010-02-12 10:34:29 +00002168 NewPH->addIncoming(NewInit, PH->getIncomingBlock(Entry));
2169 NewPH->addIncoming(NewIncr, PH->getIncomingBlock(Latch));
Dan Gohman045f8192010-01-22 00:46:49 +00002170
Dan Gohman45774ce2010-02-12 10:34:29 +00002171 /* Remove cast operation */
2172 ShadowUse->replaceAllUsesWith(NewPH);
2173 ShadowUse->eraseFromParent();
Dan Gohman4c4043c2010-05-20 20:05:31 +00002174 Changed = true;
Dan Gohman45774ce2010-02-12 10:34:29 +00002175 break;
Dan Gohman045f8192010-01-22 00:46:49 +00002176 }
2177}
2178
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002179/// If Cond has an operand that is an expression of an IV, set the IV user and
2180/// stride information and return true, otherwise return false.
Dan Gohmanab5fb7f2010-05-20 19:44:23 +00002181bool LSRInstance::FindIVUserForCond(ICmpInst *Cond, IVStrideUse *&CondUse) {
Craig Topper042a3922015-05-25 20:01:18 +00002182 for (IVStrideUse &U : IU)
2183 if (U.getUser() == Cond) {
Dan Gohman45774ce2010-02-12 10:34:29 +00002184 // NOTE: we could handle setcc instructions with multiple uses here, but
2185 // InstCombine does it as well for simple uses, it's not clear that it
2186 // occurs enough in real life to handle.
Craig Topper042a3922015-05-25 20:01:18 +00002187 CondUse = &U;
Dan Gohman45774ce2010-02-12 10:34:29 +00002188 return true;
2189 }
Dan Gohman045f8192010-01-22 00:46:49 +00002190 return false;
Evan Cheng133694d2007-10-25 09:11:16 +00002191}
2192
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002193/// Rewrite the loop's terminating condition if it uses a max computation.
Dan Gohman045f8192010-01-22 00:46:49 +00002194///
2195/// This is a narrow solution to a specific, but acute, problem. For loops
2196/// like this:
2197///
2198/// i = 0;
2199/// do {
2200/// p[i] = 0.0;
2201/// } while (++i < n);
2202///
2203/// the trip count isn't just 'n', because 'n' might not be positive. And
2204/// unfortunately this can come up even for loops where the user didn't use
2205/// a C do-while loop. For example, seemingly well-behaved top-test loops
2206/// will commonly be lowered like this:
Eugene Zelenko306d2992017-10-18 21:46:47 +00002207///
Dan Gohman045f8192010-01-22 00:46:49 +00002208/// if (n > 0) {
2209/// i = 0;
2210/// do {
2211/// p[i] = 0.0;
2212/// } while (++i < n);
2213/// }
2214///
2215/// and then it's possible for subsequent optimization to obscure the if
2216/// test in such a way that indvars can't find it.
2217///
2218/// When indvars can't find the if test in loops like this, it creates a
2219/// max expression, which allows it to give the loop a canonical
2220/// induction variable:
2221///
2222/// i = 0;
2223/// max = n < 1 ? 1 : n;
2224/// do {
2225/// p[i] = 0.0;
2226/// } while (++i != max);
2227///
2228/// Canonical induction variables are necessary because the loop passes
2229/// are designed around them. The most obvious example of this is the
2230/// LoopInfo analysis, which doesn't remember trip count values. It
2231/// expects to be able to rediscover the trip count each time it is
Dan Gohman45774ce2010-02-12 10:34:29 +00002232/// needed, and it does this using a simple analysis that only succeeds if
Dan Gohman045f8192010-01-22 00:46:49 +00002233/// the loop has a canonical induction variable.
2234///
2235/// However, when it comes time to generate code, the maximum operation
2236/// can be quite costly, especially if it's inside of an outer loop.
2237///
2238/// This function solves this problem by detecting this type of loop and
2239/// rewriting their conditions from ICMP_NE back to ICMP_SLT, and deleting
2240/// the instructions for the maximum computation.
Dan Gohman45774ce2010-02-12 10:34:29 +00002241ICmpInst *LSRInstance::OptimizeMax(ICmpInst *Cond, IVStrideUse* &CondUse) {
Dan Gohman045f8192010-01-22 00:46:49 +00002242 // Check that the loop matches the pattern we're looking for.
2243 if (Cond->getPredicate() != CmpInst::ICMP_EQ &&
2244 Cond->getPredicate() != CmpInst::ICMP_NE)
2245 return Cond;
Dan Gohman51ad99d2010-01-21 02:09:26 +00002246
Dan Gohman045f8192010-01-22 00:46:49 +00002247 SelectInst *Sel = dyn_cast<SelectInst>(Cond->getOperand(1));
2248 if (!Sel || !Sel->hasOneUse()) return Cond;
Dan Gohman51ad99d2010-01-21 02:09:26 +00002249
Dan Gohman45774ce2010-02-12 10:34:29 +00002250 const SCEV *BackedgeTakenCount = SE.getBackedgeTakenCount(L);
Dan Gohman045f8192010-01-22 00:46:49 +00002251 if (isa<SCEVCouldNotCompute>(BackedgeTakenCount))
2252 return Cond;
Dan Gohman1d2ded72010-05-03 22:09:21 +00002253 const SCEV *One = SE.getConstant(BackedgeTakenCount->getType(), 1);
Dan Gohman51ad99d2010-01-21 02:09:26 +00002254
Dan Gohman045f8192010-01-22 00:46:49 +00002255 // Add one to the backedge-taken count to get the trip count.
Dan Gohman9b7632d2010-08-16 15:39:27 +00002256 const SCEV *IterationCount = SE.getAddExpr(One, BackedgeTakenCount);
Dan Gohman534ba372010-04-24 03:13:44 +00002257 if (IterationCount != SE.getSCEV(Sel)) return Cond;
Dan Gohman045f8192010-01-22 00:46:49 +00002258
Dan Gohman534ba372010-04-24 03:13:44 +00002259 // Check for a max calculation that matches the pattern. There's no check
2260 // for ICMP_ULE here because the comparison would be with zero, which
2261 // isn't interesting.
2262 CmpInst::Predicate Pred = ICmpInst::BAD_ICMP_PREDICATE;
Craig Topperf40110f2014-04-25 05:29:35 +00002263 const SCEVNAryExpr *Max = nullptr;
Dan Gohman534ba372010-04-24 03:13:44 +00002264 if (const SCEVSMaxExpr *S = dyn_cast<SCEVSMaxExpr>(BackedgeTakenCount)) {
2265 Pred = ICmpInst::ICMP_SLE;
2266 Max = S;
2267 } else if (const SCEVSMaxExpr *S = dyn_cast<SCEVSMaxExpr>(IterationCount)) {
2268 Pred = ICmpInst::ICMP_SLT;
2269 Max = S;
2270 } else if (const SCEVUMaxExpr *U = dyn_cast<SCEVUMaxExpr>(IterationCount)) {
2271 Pred = ICmpInst::ICMP_ULT;
2272 Max = U;
2273 } else {
2274 // No match; bail.
Dan Gohman045f8192010-01-22 00:46:49 +00002275 return Cond;
Dan Gohman534ba372010-04-24 03:13:44 +00002276 }
Dan Gohman045f8192010-01-22 00:46:49 +00002277
2278 // To handle a max with more than two operands, this optimization would
2279 // require additional checking and setup.
2280 if (Max->getNumOperands() != 2)
2281 return Cond;
2282
2283 const SCEV *MaxLHS = Max->getOperand(0);
2284 const SCEV *MaxRHS = Max->getOperand(1);
Dan Gohman534ba372010-04-24 03:13:44 +00002285
2286 // ScalarEvolution canonicalizes constants to the left. For < and >, look
2287 // for a comparison with 1. For <= and >=, a comparison with zero.
2288 if (!MaxLHS ||
2289 (ICmpInst::isTrueWhenEqual(Pred) ? !MaxLHS->isZero() : (MaxLHS != One)))
2290 return Cond;
2291
Dan Gohman045f8192010-01-22 00:46:49 +00002292 // Check the relevant induction variable for conformance to
2293 // the pattern.
Dan Gohman45774ce2010-02-12 10:34:29 +00002294 const SCEV *IV = SE.getSCEV(Cond->getOperand(0));
Dan Gohman045f8192010-01-22 00:46:49 +00002295 const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(IV);
2296 if (!AR || !AR->isAffine() ||
2297 AR->getStart() != One ||
Dan Gohman45774ce2010-02-12 10:34:29 +00002298 AR->getStepRecurrence(SE) != One)
Dan Gohman045f8192010-01-22 00:46:49 +00002299 return Cond;
2300
2301 assert(AR->getLoop() == L &&
2302 "Loop condition operand is an addrec in a different loop!");
2303
2304 // Check the right operand of the select, and remember it, as it will
2305 // be used in the new comparison instruction.
Craig Topperf40110f2014-04-25 05:29:35 +00002306 Value *NewRHS = nullptr;
Dan Gohman534ba372010-04-24 03:13:44 +00002307 if (ICmpInst::isTrueWhenEqual(Pred)) {
2308 // Look for n+1, and grab n.
2309 if (AddOperator *BO = dyn_cast<AddOperator>(Sel->getOperand(1)))
Jakub Staszakf6df1e32013-03-24 09:25:47 +00002310 if (ConstantInt *BO1 = dyn_cast<ConstantInt>(BO->getOperand(1)))
2311 if (BO1->isOne() && SE.getSCEV(BO->getOperand(0)) == MaxRHS)
2312 NewRHS = BO->getOperand(0);
Dan Gohman534ba372010-04-24 03:13:44 +00002313 if (AddOperator *BO = dyn_cast<AddOperator>(Sel->getOperand(2)))
Jakub Staszakf6df1e32013-03-24 09:25:47 +00002314 if (ConstantInt *BO1 = dyn_cast<ConstantInt>(BO->getOperand(1)))
2315 if (BO1->isOne() && SE.getSCEV(BO->getOperand(0)) == MaxRHS)
2316 NewRHS = BO->getOperand(0);
Dan Gohman534ba372010-04-24 03:13:44 +00002317 if (!NewRHS)
2318 return Cond;
2319 } else if (SE.getSCEV(Sel->getOperand(1)) == MaxRHS)
Dan Gohman045f8192010-01-22 00:46:49 +00002320 NewRHS = Sel->getOperand(1);
Dan Gohman45774ce2010-02-12 10:34:29 +00002321 else if (SE.getSCEV(Sel->getOperand(2)) == MaxRHS)
Dan Gohman045f8192010-01-22 00:46:49 +00002322 NewRHS = Sel->getOperand(2);
Dan Gohman1081f1a2010-06-22 23:07:13 +00002323 else if (const SCEVUnknown *SU = dyn_cast<SCEVUnknown>(MaxRHS))
2324 NewRHS = SU->getValue();
Dan Gohman534ba372010-04-24 03:13:44 +00002325 else
Dan Gohman1081f1a2010-06-22 23:07:13 +00002326 // Max doesn't match expected pattern.
2327 return Cond;
Dan Gohman045f8192010-01-22 00:46:49 +00002328
2329 // Determine the new comparison opcode. It may be signed or unsigned,
2330 // and the original comparison may be either equality or inequality.
Dan Gohman045f8192010-01-22 00:46:49 +00002331 if (Cond->getPredicate() == CmpInst::ICMP_EQ)
2332 Pred = CmpInst::getInversePredicate(Pred);
2333
2334 // Ok, everything looks ok to change the condition into an SLT or SGE and
2335 // delete the max calculation.
2336 ICmpInst *NewCond =
2337 new ICmpInst(Cond, Pred, Cond->getOperand(0), NewRHS, "scmp");
2338
2339 // Delete the max calculation instructions.
2340 Cond->replaceAllUsesWith(NewCond);
2341 CondUse->setUser(NewCond);
2342 Instruction *Cmp = cast<Instruction>(Sel->getOperand(0));
2343 Cond->eraseFromParent();
2344 Sel->eraseFromParent();
2345 if (Cmp->use_empty())
2346 Cmp->eraseFromParent();
2347 return NewCond;
Dan Gohman68e77352008-09-15 21:22:06 +00002348}
2349
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002350/// Change loop terminating condition to use the postinc iv when possible.
Dan Gohman4c4043c2010-05-20 20:05:31 +00002351void
Dan Gohman45774ce2010-02-12 10:34:29 +00002352LSRInstance::OptimizeLoopTermCond() {
2353 SmallPtrSet<Instruction *, 4> PostIncs;
2354
James Molloy196ad082016-08-15 07:53:03 +00002355 // We need a different set of heuristics for rotated and non-rotated loops.
2356 // If a loop is rotated then the latch is also the backedge, so inserting
2357 // post-inc expressions just before the latch is ideal. To reduce live ranges
2358 // it also makes sense to rewrite terminating conditions to use post-inc
2359 // expressions.
2360 //
2361 // If the loop is not rotated then the latch is not a backedge; the latch
2362 // check is done in the loop head. Adding post-inc expressions before the
2363 // latch will cause overlapping live-ranges of pre-inc and post-inc expressions
2364 // in the loop body. In this case we do *not* want to use post-inc expressions
2365 // in the latch check, and we want to insert post-inc expressions before
2366 // the backedge.
Evan Cheng85a9f432009-11-12 07:35:05 +00002367 BasicBlock *LatchBlock = L->getLoopLatch();
Evan Chengba4e5da72009-11-17 18:10:11 +00002368 SmallVector<BasicBlock*, 8> ExitingBlocks;
2369 L->getExitingBlocks(ExitingBlocks);
James Molloy196ad082016-08-15 07:53:03 +00002370 if (llvm::all_of(ExitingBlocks, [&LatchBlock](const BasicBlock *BB) {
2371 return LatchBlock != BB;
2372 })) {
2373 // The backedge doesn't exit the loop; treat this as a head-tested loop.
2374 IVIncInsertPos = LatchBlock->getTerminator();
2375 return;
2376 }
Jim Grosbach60f48542009-11-17 17:53:56 +00002377
James Molloy196ad082016-08-15 07:53:03 +00002378 // Otherwise treat this as a rotated loop.
Craig Topper042a3922015-05-25 20:01:18 +00002379 for (BasicBlock *ExitingBlock : ExitingBlocks) {
Dan Gohman45774ce2010-02-12 10:34:29 +00002380 // Get the terminating condition for the loop if possible. If we
Evan Chengba4e5da72009-11-17 18:10:11 +00002381 // can, we want to change it to use a post-incremented version of its
2382 // induction variable, to allow coalescing the live ranges for the IV into
2383 // one register value.
Evan Cheng85a9f432009-11-12 07:35:05 +00002384
Evan Chengba4e5da72009-11-17 18:10:11 +00002385 BranchInst *TermBr = dyn_cast<BranchInst>(ExitingBlock->getTerminator());
2386 if (!TermBr)
2387 continue;
2388 // FIXME: Overly conservative, termination condition could be an 'or' etc..
2389 if (TermBr->isUnconditional() || !isa<ICmpInst>(TermBr->getCondition()))
2390 continue;
Evan Cheng85a9f432009-11-12 07:35:05 +00002391
Evan Chengba4e5da72009-11-17 18:10:11 +00002392 // Search IVUsesByStride to find Cond's IVUse if there is one.
Craig Topperf40110f2014-04-25 05:29:35 +00002393 IVStrideUse *CondUse = nullptr;
Evan Chengba4e5da72009-11-17 18:10:11 +00002394 ICmpInst *Cond = cast<ICmpInst>(TermBr->getCondition());
Dan Gohman45774ce2010-02-12 10:34:29 +00002395 if (!FindIVUserForCond(Cond, CondUse))
Evan Chengba4e5da72009-11-17 18:10:11 +00002396 continue;
2397
Evan Chengba4e5da72009-11-17 18:10:11 +00002398 // If the trip count is computed in terms of a max (due to ScalarEvolution
2399 // being unable to find a sufficient guard, for example), change the loop
2400 // comparison to use SLT or ULT instead of NE.
Dan Gohman45774ce2010-02-12 10:34:29 +00002401 // One consequence of doing this now is that it disrupts the count-down
2402 // optimization. That's not always a bad thing though, because in such
2403 // cases it may still be worthwhile to avoid a max.
2404 Cond = OptimizeMax(Cond, CondUse);
Evan Chengba4e5da72009-11-17 18:10:11 +00002405
Dan Gohman45774ce2010-02-12 10:34:29 +00002406 // If this exiting block dominates the latch block, it may also use
2407 // the post-inc value if it won't be shared with other uses.
2408 // Check for dominance.
2409 if (!DT.dominates(ExitingBlock, LatchBlock))
Dan Gohman045f8192010-01-22 00:46:49 +00002410 continue;
Evan Chengba4e5da72009-11-17 18:10:11 +00002411
Dan Gohman45774ce2010-02-12 10:34:29 +00002412 // Conservatively avoid trying to use the post-inc value in non-latch
2413 // exits if there may be pre-inc users in intervening blocks.
Dan Gohman2d0f96d2010-02-14 03:21:49 +00002414 if (LatchBlock != ExitingBlock)
Dan Gohman45774ce2010-02-12 10:34:29 +00002415 for (IVUsers::const_iterator UI = IU.begin(), E = IU.end(); UI != E; ++UI)
2416 // Test if the use is reachable from the exiting block. This dominator
2417 // query is a conservative approximation of reachability.
2418 if (&*UI != CondUse &&
2419 !DT.properlyDominates(UI->getUser()->getParent(), ExitingBlock)) {
2420 // Conservatively assume there may be reuse if the quotient of their
2421 // strides could be a legal scale.
Dan Gohmane637ff52010-04-19 21:48:58 +00002422 const SCEV *A = IU.getStride(*CondUse, L);
2423 const SCEV *B = IU.getStride(*UI, L);
Dan Gohmand006ab92010-04-07 22:27:08 +00002424 if (!A || !B) continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00002425 if (SE.getTypeSizeInBits(A->getType()) !=
2426 SE.getTypeSizeInBits(B->getType())) {
2427 if (SE.getTypeSizeInBits(A->getType()) >
2428 SE.getTypeSizeInBits(B->getType()))
2429 B = SE.getSignExtendExpr(B, A->getType());
2430 else
2431 A = SE.getSignExtendExpr(A, B->getType());
2432 }
2433 if (const SCEVConstant *D =
Dan Gohman4eebb942010-02-19 19:35:48 +00002434 dyn_cast_or_null<SCEVConstant>(getExactSDiv(B, A, SE))) {
Dan Gohman86110fa2010-05-20 22:25:20 +00002435 const ConstantInt *C = D->getValue();
Dan Gohman45774ce2010-02-12 10:34:29 +00002436 // Stride of one or negative one can have reuse with non-addresses.
Craig Topper79ab6432017-07-06 18:39:47 +00002437 if (C->isOne() || C->isMinusOne())
Dan Gohman45774ce2010-02-12 10:34:29 +00002438 goto decline_post_inc;
2439 // Avoid weird situations.
Dan Gohman86110fa2010-05-20 22:25:20 +00002440 if (C->getValue().getMinSignedBits() >= 64 ||
2441 C->getValue().isMinSignedValue())
Dan Gohman45774ce2010-02-12 10:34:29 +00002442 goto decline_post_inc;
2443 // Check for possible scaled-address reuse.
Daniil Fukalov37433dc2018-06-08 16:22:52 +00002444 if (isAddressUse(TTI, UI->getUser(), UI->getOperandValToReplace())) {
2445 MemAccessTy AccessTy = getAccessType(
2446 TTI, UI->getUser(), UI->getOperandValToReplace());
2447 int64_t Scale = C->getSExtValue();
2448 if (TTI.isLegalAddressingMode(AccessTy.MemTy, /*BaseGV=*/nullptr,
2449 /*BaseOffset=*/0,
2450 /*HasBaseReg=*/false, Scale,
2451 AccessTy.AddrSpace))
2452 goto decline_post_inc;
2453 Scale = -Scale;
2454 if (TTI.isLegalAddressingMode(AccessTy.MemTy, /*BaseGV=*/nullptr,
2455 /*BaseOffset=*/0,
2456 /*HasBaseReg=*/false, Scale,
2457 AccessTy.AddrSpace))
2458 goto decline_post_inc;
2459 }
Dan Gohman45774ce2010-02-12 10:34:29 +00002460 }
2461 }
2462
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002463 LLVM_DEBUG(dbgs() << " Change loop exiting icmp to use postinc iv: "
2464 << *Cond << '\n');
Evan Chengba4e5da72009-11-17 18:10:11 +00002465
2466 // It's possible for the setcc instruction to be anywhere in the loop, and
2467 // possible for it to have multiple users. If it is not immediately before
2468 // the exiting block branch, move it.
Dan Gohman45774ce2010-02-12 10:34:29 +00002469 if (&*++BasicBlock::iterator(Cond) != TermBr) {
2470 if (Cond->hasOneUse()) {
Evan Chengba4e5da72009-11-17 18:10:11 +00002471 Cond->moveBefore(TermBr);
2472 } else {
Dan Gohman45774ce2010-02-12 10:34:29 +00002473 // Clone the terminating condition and insert into the loopend.
2474 ICmpInst *OldCond = Cond;
Evan Chengba4e5da72009-11-17 18:10:11 +00002475 Cond = cast<ICmpInst>(Cond->clone());
2476 Cond->setName(L->getHeader()->getName() + ".termcond");
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +00002477 ExitingBlock->getInstList().insert(TermBr->getIterator(), Cond);
Evan Chengba4e5da72009-11-17 18:10:11 +00002478
2479 // Clone the IVUse, as the old use still exists!
Andrew Trickfc4ccb22011-06-21 15:43:52 +00002480 CondUse = &IU.AddUser(Cond, CondUse->getOperandValToReplace());
Dan Gohman45774ce2010-02-12 10:34:29 +00002481 TermBr->replaceUsesOfWith(OldCond, Cond);
Evan Chengba4e5da72009-11-17 18:10:11 +00002482 }
Evan Cheng85a9f432009-11-12 07:35:05 +00002483 }
2484
Evan Chengba4e5da72009-11-17 18:10:11 +00002485 // If we get to here, we know that we can transform the setcc instruction to
2486 // use the post-incremented version of the IV, allowing us to coalesce the
2487 // live ranges for the IV correctly.
Dan Gohmand006ab92010-04-07 22:27:08 +00002488 CondUse->transformToPostInc(L);
Evan Chengba4e5da72009-11-17 18:10:11 +00002489 Changed = true;
2490
Dan Gohman45774ce2010-02-12 10:34:29 +00002491 PostIncs.insert(Cond);
2492 decline_post_inc:;
Dan Gohman51ad99d2010-01-21 02:09:26 +00002493 }
Dan Gohman45774ce2010-02-12 10:34:29 +00002494
2495 // Determine an insertion point for the loop induction variable increment. It
2496 // must dominate all the post-inc comparisons we just set up, and it must
2497 // dominate the loop latch edge.
2498 IVIncInsertPos = L->getLoopLatch()->getTerminator();
Craig Topper46276792014-08-24 23:23:06 +00002499 for (Instruction *Inst : PostIncs) {
Dan Gohman45774ce2010-02-12 10:34:29 +00002500 BasicBlock *BB =
2501 DT.findNearestCommonDominator(IVIncInsertPos->getParent(),
Craig Topper46276792014-08-24 23:23:06 +00002502 Inst->getParent());
2503 if (BB == Inst->getParent())
2504 IVIncInsertPos = Inst;
Dan Gohman45774ce2010-02-12 10:34:29 +00002505 else if (BB != IVIncInsertPos->getParent())
2506 IVIncInsertPos = BB->getTerminator();
2507 }
Dan Gohman51ad99d2010-01-21 02:09:26 +00002508}
2509
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002510/// Determine if the given use can accommodate a fixup at the given offset and
2511/// other details. If so, update the use and return true.
Matt Arsenault427a0fd2015-08-15 00:53:06 +00002512bool LSRInstance::reconcileNewOffset(LSRUse &LU, int64_t NewOffset,
2513 bool HasBaseReg, LSRUse::KindType Kind,
2514 MemAccessTy AccessTy) {
Dan Gohman110ed642010-09-01 01:45:53 +00002515 int64_t NewMinOffset = LU.MinOffset;
2516 int64_t NewMaxOffset = LU.MaxOffset;
Matt Arsenault427a0fd2015-08-15 00:53:06 +00002517 MemAccessTy NewAccessTy = AccessTy;
Dan Gohman045f8192010-01-22 00:46:49 +00002518
Dan Gohman45774ce2010-02-12 10:34:29 +00002519 // Check for a mismatched kind. It's tempting to collapse mismatched kinds to
2520 // something conservative, however this can pessimize in the case that one of
2521 // the uses will have all its uses outside the loop, for example.
2522 if (LU.Kind != Kind)
Dan Gohman045f8192010-01-22 00:46:49 +00002523 return false;
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00002524
Dan Gohman45774ce2010-02-12 10:34:29 +00002525 // Check for a mismatched access type, and fall back conservatively as needed.
Dan Gohman32655902010-06-19 21:30:18 +00002526 // TODO: Be less conservative when the type is similar and can use the same
2527 // addressing modes.
Matt Arsenault427a0fd2015-08-15 00:53:06 +00002528 if (Kind == LSRUse::Address) {
Matt Arsenault1f2ca662017-01-30 19:50:17 +00002529 if (AccessTy.MemTy != LU.AccessTy.MemTy) {
2530 NewAccessTy = MemAccessTy::getUnknown(AccessTy.MemTy->getContext(),
2531 AccessTy.AddrSpace);
2532 }
Matt Arsenault427a0fd2015-08-15 00:53:06 +00002533 }
Dan Gohman51ad99d2010-01-21 02:09:26 +00002534
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00002535 // Conservatively assume HasBaseReg is true for now.
2536 if (NewOffset < LU.MinOffset) {
2537 if (!isAlwaysFoldable(TTI, Kind, NewAccessTy, /*BaseGV=*/nullptr,
2538 LU.MaxOffset - NewOffset, HasBaseReg))
2539 return false;
2540 NewMinOffset = NewOffset;
2541 } else if (NewOffset > LU.MaxOffset) {
2542 if (!isAlwaysFoldable(TTI, Kind, NewAccessTy, /*BaseGV=*/nullptr,
2543 NewOffset - LU.MinOffset, HasBaseReg))
2544 return false;
2545 NewMaxOffset = NewOffset;
2546 }
2547
Dan Gohman45774ce2010-02-12 10:34:29 +00002548 // Update the use.
Dan Gohman110ed642010-09-01 01:45:53 +00002549 LU.MinOffset = NewMinOffset;
2550 LU.MaxOffset = NewMaxOffset;
2551 LU.AccessTy = NewAccessTy;
Dan Gohman29916e02010-01-21 22:42:49 +00002552 return true;
2553}
2554
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002555/// Return an LSRUse index and an offset value for a fixup which needs the given
2556/// expression, with the given kind and optional access type. Either reuse an
2557/// existing use or create a new one, as needed.
Matt Arsenault427a0fd2015-08-15 00:53:06 +00002558std::pair<size_t, int64_t> LSRInstance::getUse(const SCEV *&Expr,
2559 LSRUse::KindType Kind,
2560 MemAccessTy AccessTy) {
Dan Gohman45774ce2010-02-12 10:34:29 +00002561 const SCEV *Copy = Expr;
2562 int64_t Offset = ExtractImmediate(Expr, SE);
Evan Cheng85a9f432009-11-12 07:35:05 +00002563
Dan Gohman45774ce2010-02-12 10:34:29 +00002564 // Basic uses can't accept any offset, for example.
Craig Topperf40110f2014-04-25 05:29:35 +00002565 if (!isAlwaysFoldable(TTI, Kind, AccessTy, /*BaseGV=*/ nullptr,
Chandler Carruth26c59fa2013-01-07 14:41:08 +00002566 Offset, /*HasBaseReg=*/ true)) {
Dan Gohman45774ce2010-02-12 10:34:29 +00002567 Expr = Copy;
2568 Offset = 0;
2569 }
2570
2571 std::pair<UseMapTy::iterator, bool> P =
Benjamin Kramer62fb0cf2014-03-15 17:17:48 +00002572 UseMap.insert(std::make_pair(LSRUse::SCEVUseKindPair(Expr, Kind), 0));
Dan Gohman45774ce2010-02-12 10:34:29 +00002573 if (!P.second) {
2574 // A use already existed with this base.
2575 size_t LUIdx = P.first->second;
2576 LSRUse &LU = Uses[LUIdx];
Dan Gohman110ed642010-09-01 01:45:53 +00002577 if (reconcileNewOffset(LU, Offset, /*HasBaseReg=*/true, Kind, AccessTy))
Dan Gohman45774ce2010-02-12 10:34:29 +00002578 // Reuse this use.
2579 return std::make_pair(LUIdx, Offset);
2580 }
2581
2582 // Create a new use.
2583 size_t LUIdx = Uses.size();
2584 P.first->second = LUIdx;
2585 Uses.push_back(LSRUse(Kind, AccessTy));
2586 LSRUse &LU = Uses[LUIdx];
2587
Dan Gohman45774ce2010-02-12 10:34:29 +00002588 LU.MinOffset = Offset;
2589 LU.MaxOffset = Offset;
2590 return std::make_pair(LUIdx, Offset);
2591}
2592
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002593/// Delete the given use from the Uses list.
Dan Gohmana7b68d62010-10-07 23:33:43 +00002594void LSRInstance::DeleteUse(LSRUse &LU, size_t LUIdx) {
Dan Gohman110ed642010-09-01 01:45:53 +00002595 if (&LU != &Uses.back())
Dan Gohman80a96082010-05-20 15:17:54 +00002596 std::swap(LU, Uses.back());
2597 Uses.pop_back();
Dan Gohmana7b68d62010-10-07 23:33:43 +00002598
2599 // Update RegUses.
Sanjoy Das302bfd02015-08-16 18:22:43 +00002600 RegUses.swapAndDropUse(LUIdx, Uses.size());
Dan Gohman80a96082010-05-20 15:17:54 +00002601}
2602
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002603/// Look for a use distinct from OrigLU which is has a formula that has the same
2604/// registers as the given formula.
Dan Gohman20fab452010-05-19 23:43:12 +00002605LSRUse *
2606LSRInstance::FindUseWithSimilarFormula(const Formula &OrigF,
Dan Gohman110ed642010-09-01 01:45:53 +00002607 const LSRUse &OrigLU) {
2608 // Search all uses for the formula. This could be more clever.
Dan Gohman20fab452010-05-19 23:43:12 +00002609 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
2610 LSRUse &LU = Uses[LUIdx];
Dan Gohmanb6a520d2010-08-29 15:27:08 +00002611 // Check whether this use is close enough to OrigLU, to see whether it's
2612 // worthwhile looking through its formulae.
2613 // Ignore ICmpZero uses because they may contain formulae generated by
2614 // GenerateICmpZeroScales, in which case adding fixup offsets may
2615 // be invalid.
Dan Gohman20fab452010-05-19 23:43:12 +00002616 if (&LU != &OrigLU &&
2617 LU.Kind != LSRUse::ICmpZero &&
2618 LU.Kind == OrigLU.Kind && OrigLU.AccessTy == LU.AccessTy &&
Dan Gohman14152082010-07-15 20:24:58 +00002619 LU.WidestFixupType == OrigLU.WidestFixupType &&
Dan Gohman20fab452010-05-19 23:43:12 +00002620 LU.HasFormulaWithSameRegs(OrigF)) {
Dan Gohmanb6a520d2010-08-29 15:27:08 +00002621 // Scan through this use's formulae.
Craig Topper042a3922015-05-25 20:01:18 +00002622 for (const Formula &F : LU.Formulae) {
Dan Gohmanb6a520d2010-08-29 15:27:08 +00002623 // Check to see if this formula has the same registers and symbols
2624 // as OrigF.
Dan Gohman20fab452010-05-19 23:43:12 +00002625 if (F.BaseRegs == OrigF.BaseRegs &&
2626 F.ScaledReg == OrigF.ScaledReg &&
Chandler Carruth6e479322013-01-07 15:04:40 +00002627 F.BaseGV == OrigF.BaseGV &&
2628 F.Scale == OrigF.Scale &&
Dan Gohman6136e942011-05-03 00:46:49 +00002629 F.UnfoldedOffset == OrigF.UnfoldedOffset) {
Chandler Carruth6e479322013-01-07 15:04:40 +00002630 if (F.BaseOffset == 0)
Dan Gohman20fab452010-05-19 23:43:12 +00002631 return &LU;
Dan Gohmanb6a520d2010-08-29 15:27:08 +00002632 // This is the formula where all the registers and symbols matched;
2633 // there aren't going to be any others. Since we declined it, we
Benjamin Kramerbde91762012-06-02 10:20:22 +00002634 // can skip the rest of the formulae and proceed to the next LSRUse.
Dan Gohman20fab452010-05-19 23:43:12 +00002635 break;
2636 }
2637 }
2638 }
2639 }
2640
Dan Gohmanb6a520d2010-08-29 15:27:08 +00002641 // Nothing looked good.
Craig Topperf40110f2014-04-25 05:29:35 +00002642 return nullptr;
Dan Gohman20fab452010-05-19 23:43:12 +00002643}
2644
Dan Gohman45774ce2010-02-12 10:34:29 +00002645void LSRInstance::CollectInterestingTypesAndFactors() {
2646 SmallSetVector<const SCEV *, 4> Strides;
2647
Dan Gohman2446f572010-02-19 00:05:23 +00002648 // Collect interesting types and strides.
Dan Gohmand006ab92010-04-07 22:27:08 +00002649 SmallVector<const SCEV *, 4> Worklist;
Craig Topper042a3922015-05-25 20:01:18 +00002650 for (const IVStrideUse &U : IU) {
2651 const SCEV *Expr = IU.getExpr(U);
Dan Gohman45774ce2010-02-12 10:34:29 +00002652
2653 // Collect interesting types.
Dan Gohmand006ab92010-04-07 22:27:08 +00002654 Types.insert(SE.getEffectiveSCEVType(Expr->getType()));
Dan Gohman45774ce2010-02-12 10:34:29 +00002655
Dan Gohmand006ab92010-04-07 22:27:08 +00002656 // Add strides for mentioned loops.
2657 Worklist.push_back(Expr);
2658 do {
2659 const SCEV *S = Worklist.pop_back_val();
2660 if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
Andrew Trickd97b83e2012-03-22 22:42:45 +00002661 if (AR->getLoop() == L)
Andrew Tricke8b4f402011-12-10 00:25:00 +00002662 Strides.insert(AR->getStepRecurrence(SE));
Dan Gohmand006ab92010-04-07 22:27:08 +00002663 Worklist.push_back(AR->getStart());
2664 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
Dan Gohmandd41bba2010-06-21 19:47:52 +00002665 Worklist.append(Add->op_begin(), Add->op_end());
Dan Gohmand006ab92010-04-07 22:27:08 +00002666 }
2667 } while (!Worklist.empty());
Dan Gohman2446f572010-02-19 00:05:23 +00002668 }
2669
2670 // Compute interesting factors from the set of interesting strides.
2671 for (SmallSetVector<const SCEV *, 4>::const_iterator
2672 I = Strides.begin(), E = Strides.end(); I != E; ++I)
Dan Gohman45774ce2010-02-12 10:34:29 +00002673 for (SmallSetVector<const SCEV *, 4>::const_iterator NewStrideIter =
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00002674 std::next(I); NewStrideIter != E; ++NewStrideIter) {
Dan Gohman2446f572010-02-19 00:05:23 +00002675 const SCEV *OldStride = *I;
Dan Gohman45774ce2010-02-12 10:34:29 +00002676 const SCEV *NewStride = *NewStrideIter;
Dan Gohman45774ce2010-02-12 10:34:29 +00002677
2678 if (SE.getTypeSizeInBits(OldStride->getType()) !=
2679 SE.getTypeSizeInBits(NewStride->getType())) {
2680 if (SE.getTypeSizeInBits(OldStride->getType()) >
2681 SE.getTypeSizeInBits(NewStride->getType()))
2682 NewStride = SE.getSignExtendExpr(NewStride, OldStride->getType());
2683 else
2684 OldStride = SE.getSignExtendExpr(OldStride, NewStride->getType());
2685 }
2686 if (const SCEVConstant *Factor =
Dan Gohman4eebb942010-02-19 19:35:48 +00002687 dyn_cast_or_null<SCEVConstant>(getExactSDiv(NewStride, OldStride,
2688 SE, true))) {
Sanjoy Das0de2fec2015-12-17 20:28:46 +00002689 if (Factor->getAPInt().getMinSignedBits() <= 64)
2690 Factors.insert(Factor->getAPInt().getSExtValue());
Dan Gohman45774ce2010-02-12 10:34:29 +00002691 } else if (const SCEVConstant *Factor =
Dan Gohman8c16b382010-02-22 04:11:59 +00002692 dyn_cast_or_null<SCEVConstant>(getExactSDiv(OldStride,
2693 NewStride,
Dan Gohman4eebb942010-02-19 19:35:48 +00002694 SE, true))) {
Sanjoy Das0de2fec2015-12-17 20:28:46 +00002695 if (Factor->getAPInt().getMinSignedBits() <= 64)
2696 Factors.insert(Factor->getAPInt().getSExtValue());
Dan Gohman45774ce2010-02-12 10:34:29 +00002697 }
2698 }
Dan Gohman45774ce2010-02-12 10:34:29 +00002699
2700 // If all uses use the same type, don't bother looking for truncation-based
2701 // reuse.
2702 if (Types.size() == 1)
2703 Types.clear();
2704
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002705 LLVM_DEBUG(print_factors_and_types(dbgs()));
Dan Gohman45774ce2010-02-12 10:34:29 +00002706}
2707
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002708/// Helper for CollectChains that finds an IV operand (computed by an AddRec in
2709/// this loop) within [OI,OE) or returns OE. If IVUsers mapped Instructions to
2710/// IVStrideUses, we could partially skip this.
Andrew Trick29fe5f02012-01-09 19:50:34 +00002711static User::op_iterator
2712findIVOperand(User::op_iterator OI, User::op_iterator OE,
2713 Loop *L, ScalarEvolution &SE) {
2714 for(; OI != OE; ++OI) {
2715 if (Instruction *Oper = dyn_cast<Instruction>(*OI)) {
2716 if (!SE.isSCEVable(Oper->getType()))
2717 continue;
2718
2719 if (const SCEVAddRecExpr *AR =
2720 dyn_cast<SCEVAddRecExpr>(SE.getSCEV(Oper))) {
2721 if (AR->getLoop() == L)
2722 break;
2723 }
2724 }
2725 }
2726 return OI;
2727}
2728
Hiroshi Inouef2096492018-06-14 05:41:49 +00002729/// IVChain logic must consistently peek base TruncInst operands, so wrap it in
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002730/// a convenient helper.
Andrew Trick29fe5f02012-01-09 19:50:34 +00002731static Value *getWideOperand(Value *Oper) {
2732 if (TruncInst *Trunc = dyn_cast<TruncInst>(Oper))
2733 return Trunc->getOperand(0);
2734 return Oper;
2735}
2736
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002737/// Return true if we allow an IV chain to include both types.
Andrew Trick29fe5f02012-01-09 19:50:34 +00002738static bool isCompatibleIVType(Value *LVal, Value *RVal) {
2739 Type *LType = LVal->getType();
2740 Type *RType = RVal->getType();
Mikael Holmenece84cd2017-02-14 06:37:42 +00002741 return (LType == RType) || (LType->isPointerTy() && RType->isPointerTy() &&
2742 // Different address spaces means (possibly)
2743 // different types of the pointer implementation,
2744 // e.g. i16 vs i32 so disallow that.
2745 (LType->getPointerAddressSpace() ==
2746 RType->getPointerAddressSpace()));
Andrew Trick29fe5f02012-01-09 19:50:34 +00002747}
2748
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002749/// Return an approximation of this SCEV expression's "base", or NULL for any
2750/// constant. Returning the expression itself is conservative. Returning a
2751/// deeper subexpression is more precise and valid as long as it isn't less
2752/// complex than another subexpression. For expressions involving multiple
2753/// unscaled values, we need to return the pointer-type SCEVUnknown. This avoids
2754/// forming chains across objects, such as: PrevOper==a[i], IVOper==b[i],
2755/// IVInc==b-a.
Andrew Trickd5d2db92012-01-10 01:45:08 +00002756///
2757/// Since SCEVUnknown is the rightmost type, and pointers are the rightmost
2758/// SCEVUnknown, we simply return the rightmost SCEV operand.
2759static const SCEV *getExprBase(const SCEV *S) {
2760 switch (S->getSCEVType()) {
2761 default: // uncluding scUnknown.
2762 return S;
2763 case scConstant:
Craig Topperf40110f2014-04-25 05:29:35 +00002764 return nullptr;
Andrew Trickd5d2db92012-01-10 01:45:08 +00002765 case scTruncate:
2766 return getExprBase(cast<SCEVTruncateExpr>(S)->getOperand());
2767 case scZeroExtend:
2768 return getExprBase(cast<SCEVZeroExtendExpr>(S)->getOperand());
2769 case scSignExtend:
2770 return getExprBase(cast<SCEVSignExtendExpr>(S)->getOperand());
2771 case scAddExpr: {
2772 // Skip over scaled operands (scMulExpr) to follow add operands as long as
2773 // there's nothing more complex.
2774 // FIXME: not sure if we want to recognize negation.
2775 const SCEVAddExpr *Add = cast<SCEVAddExpr>(S);
2776 for (std::reverse_iterator<SCEVAddExpr::op_iterator> I(Add->op_end()),
2777 E(Add->op_begin()); I != E; ++I) {
2778 const SCEV *SubExpr = *I;
2779 if (SubExpr->getSCEVType() == scAddExpr)
2780 return getExprBase(SubExpr);
2781
2782 if (SubExpr->getSCEVType() != scMulExpr)
2783 return SubExpr;
2784 }
2785 return S; // all operands are scaled, be conservative.
2786 }
2787 case scAddRecExpr:
2788 return getExprBase(cast<SCEVAddRecExpr>(S)->getStart());
2789 }
2790}
2791
Andrew Trick248d4102012-01-09 21:18:52 +00002792/// Return true if the chain increment is profitable to expand into a loop
2793/// invariant value, which may require its own register. A profitable chain
2794/// increment will be an offset relative to the same base. We allow such offsets
2795/// to potentially be used as chain increment as long as it's not obviously
2796/// expensive to expand using real instructions.
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002797bool IVChain::isProfitableIncrement(const SCEV *OperExpr,
2798 const SCEV *IncExpr,
2799 ScalarEvolution &SE) {
2800 // Aggressively form chains when -stress-ivchain.
Andrew Trick248d4102012-01-09 21:18:52 +00002801 if (StressIVChain)
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002802 return true;
Andrew Trick248d4102012-01-09 21:18:52 +00002803
Andrew Trickd5d2db92012-01-10 01:45:08 +00002804 // Do not replace a constant offset from IV head with a nonconstant IV
2805 // increment.
2806 if (!isa<SCEVConstant>(IncExpr)) {
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002807 const SCEV *HeadExpr = SE.getSCEV(getWideOperand(Incs[0].IVOperand));
Andrew Trickd5d2db92012-01-10 01:45:08 +00002808 if (isa<SCEVConstant>(SE.getMinusSCEV(OperExpr, HeadExpr)))
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +00002809 return false;
Andrew Trickd5d2db92012-01-10 01:45:08 +00002810 }
2811
2812 SmallPtrSet<const SCEV*, 8> Processed;
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002813 return !isHighCostExpansion(IncExpr, Processed, SE);
Andrew Trick248d4102012-01-09 21:18:52 +00002814}
2815
2816/// Return true if the number of registers needed for the chain is estimated to
2817/// be less than the number required for the individual IV users. First prohibit
2818/// any IV users that keep the IV live across increments (the Users set should
2819/// be empty). Next count the number and type of increments in the chain.
2820///
2821/// Chaining IVs can lead to considerable code bloat if ISEL doesn't
2822/// effectively use postinc addressing modes. Only consider it profitable it the
2823/// increments can be computed in fewer registers when chained.
2824///
2825/// TODO: Consider IVInc free if it's already used in another chains.
2826static bool
Craig Topper71b7b682014-08-21 05:55:13 +00002827isProfitableChain(IVChain &Chain, SmallPtrSetImpl<Instruction*> &Users,
Sam Parker67756c02019-02-07 13:32:54 +00002828 ScalarEvolution &SE) {
Andrew Trick248d4102012-01-09 21:18:52 +00002829 if (StressIVChain)
2830 return true;
2831
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002832 if (!Chain.hasIncs())
Andrew Trickd5d2db92012-01-10 01:45:08 +00002833 return false;
2834
2835 if (!Users.empty()) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002836 LLVM_DEBUG(dbgs() << "Chain: " << *Chain.Incs[0].UserInst << " users:\n";
2837 for (Instruction *Inst
2838 : Users) { dbgs() << " " << *Inst << "\n"; });
Andrew Trickd5d2db92012-01-10 01:45:08 +00002839 return false;
2840 }
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002841 assert(!Chain.Incs.empty() && "empty IV chains are not allowed");
Andrew Trickd5d2db92012-01-10 01:45:08 +00002842
2843 // The chain itself may require a register, so intialize cost to 1.
2844 int cost = 1;
2845
2846 // A complete chain likely eliminates the need for keeping the original IV in
2847 // a register. LSR does not currently know how to form a complete chain unless
2848 // the header phi already exists.
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00002849 if (isa<PHINode>(Chain.tailUserInst())
2850 && SE.getSCEV(Chain.tailUserInst()) == Chain.Incs[0].IncExpr) {
Andrew Trickd5d2db92012-01-10 01:45:08 +00002851 --cost;
2852 }
Craig Topperf40110f2014-04-25 05:29:35 +00002853 const SCEV *LastIncExpr = nullptr;
Andrew Trickd5d2db92012-01-10 01:45:08 +00002854 unsigned NumConstIncrements = 0;
2855 unsigned NumVarIncrements = 0;
2856 unsigned NumReusedIncrements = 0;
Craig Topper042a3922015-05-25 20:01:18 +00002857 for (const IVInc &Inc : Chain) {
2858 if (Inc.IncExpr->isZero())
Andrew Trickd5d2db92012-01-10 01:45:08 +00002859 continue;
2860
2861 // Incrementing by zero or some constant is neutral. We assume constants can
2862 // be folded into an addressing mode or an add's immediate operand.
Craig Topper042a3922015-05-25 20:01:18 +00002863 if (isa<SCEVConstant>(Inc.IncExpr)) {
Andrew Trickd5d2db92012-01-10 01:45:08 +00002864 ++NumConstIncrements;
2865 continue;
2866 }
2867
Craig Topper042a3922015-05-25 20:01:18 +00002868 if (Inc.IncExpr == LastIncExpr)
Andrew Trickd5d2db92012-01-10 01:45:08 +00002869 ++NumReusedIncrements;
2870 else
2871 ++NumVarIncrements;
2872
Craig Topper042a3922015-05-25 20:01:18 +00002873 LastIncExpr = Inc.IncExpr;
Andrew Trickd5d2db92012-01-10 01:45:08 +00002874 }
2875 // An IV chain with a single increment is handled by LSR's postinc
2876 // uses. However, a chain with multiple increments requires keeping the IV's
2877 // value live longer than it needs to be if chained.
2878 if (NumConstIncrements > 1)
2879 --cost;
2880
2881 // Materializing increment expressions in the preheader that didn't exist in
2882 // the original code may cost a register. For example, sign-extended array
2883 // indices can produce ridiculous increments like this:
2884 // IV + ((sext i32 (2 * %s) to i64) + (-1 * (sext i32 %s to i64)))
2885 cost += NumVarIncrements;
2886
2887 // Reusing variable increments likely saves a register to hold the multiple of
2888 // the stride.
2889 cost -= NumReusedIncrements;
2890
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002891 LLVM_DEBUG(dbgs() << "Chain: " << *Chain.Incs[0].UserInst << " Cost: " << cost
2892 << "\n");
Andrew Trickd5d2db92012-01-10 01:45:08 +00002893
2894 return cost < 0;
Andrew Trick248d4102012-01-09 21:18:52 +00002895}
2896
Sanjoy Das94c4aec2015-08-16 18:22:46 +00002897/// Add this IV user to an existing chain or make it the head of a new chain.
Andrew Trick29fe5f02012-01-09 19:50:34 +00002898void LSRInstance::ChainInstruction(Instruction *UserInst, Instruction *IVOper,
2899 SmallVectorImpl<ChainUsers> &ChainUsersVec) {
2900 // When IVs are used as types of varying widths, they are generally converted
2901 // to a wider type with some uses remaining narrow under a (free) trunc.
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002902 Value *const NextIV = getWideOperand(IVOper);
2903 const SCEV *const OperExpr = SE.getSCEV(NextIV);
2904 const SCEV *const OperExprBase = getExprBase(OperExpr);
Andrew Trick29fe5f02012-01-09 19:50:34 +00002905
2906 // Visit all existing chains. Check if its IVOper can be computed as a
2907 // profitable loop invariant increment from the last link in the Chain.
2908 unsigned ChainIdx = 0, NChains = IVChainVec.size();
Craig Topperf40110f2014-04-25 05:29:35 +00002909 const SCEV *LastIncExpr = nullptr;
Andrew Trick29fe5f02012-01-09 19:50:34 +00002910 for (; ChainIdx < NChains; ++ChainIdx) {
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002911 IVChain &Chain = IVChainVec[ChainIdx];
2912
2913 // Prune the solution space aggressively by checking that both IV operands
2914 // are expressions that operate on the same unscaled SCEVUnknown. This
2915 // "base" will be canceled by the subsequent getMinusSCEV call. Checking
2916 // first avoids creating extra SCEV expressions.
2917 if (!StressIVChain && Chain.ExprBase != OperExprBase)
2918 continue;
2919
2920 Value *PrevIV = getWideOperand(Chain.Incs.back().IVOperand);
Andrew Trick29fe5f02012-01-09 19:50:34 +00002921 if (!isCompatibleIVType(PrevIV, NextIV))
2922 continue;
2923
Andrew Trick356a8962012-03-26 20:28:35 +00002924 // A phi node terminates a chain.
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002925 if (isa<PHINode>(UserInst) && isa<PHINode>(Chain.tailUserInst()))
Andrew Trick29fe5f02012-01-09 19:50:34 +00002926 continue;
2927
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002928 // The increment must be loop-invariant so it can be kept in a register.
2929 const SCEV *PrevExpr = SE.getSCEV(PrevIV);
2930 const SCEV *IncExpr = SE.getMinusSCEV(OperExpr, PrevExpr);
2931 if (!SE.isLoopInvariant(IncExpr, L))
2932 continue;
2933
2934 if (Chain.isProfitableIncrement(OperExpr, IncExpr, SE)) {
Andrew Trick29fe5f02012-01-09 19:50:34 +00002935 LastIncExpr = IncExpr;
2936 break;
2937 }
2938 }
2939 // If we haven't found a chain, create a new one, unless we hit the max. Don't
2940 // bother for phi nodes, because they must be last in the chain.
2941 if (ChainIdx == NChains) {
2942 if (isa<PHINode>(UserInst))
2943 return;
Andrew Trick248d4102012-01-09 21:18:52 +00002944 if (NChains >= MaxChains && !StressIVChain) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002945 LLVM_DEBUG(dbgs() << "IV Chain Limit\n");
Andrew Trick29fe5f02012-01-09 19:50:34 +00002946 return;
2947 }
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002948 LastIncExpr = OperExpr;
Andrew Trickb9c822a2012-01-20 21:23:40 +00002949 // IVUsers may have skipped over sign/zero extensions. We don't currently
2950 // attempt to form chains involving extensions unless they can be hoisted
2951 // into this loop's AddRec.
2952 if (!isa<SCEVAddRecExpr>(LastIncExpr))
2953 return;
Andrew Trick29fe5f02012-01-09 19:50:34 +00002954 ++NChains;
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002955 IVChainVec.push_back(IVChain(IVInc(UserInst, IVOper, LastIncExpr),
2956 OperExprBase));
Andrew Trick29fe5f02012-01-09 19:50:34 +00002957 ChainUsersVec.resize(NChains);
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002958 LLVM_DEBUG(dbgs() << "IV Chain#" << ChainIdx << " Head: (" << *UserInst
2959 << ") IV=" << *LastIncExpr << "\n");
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002960 } else {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002961 LLVM_DEBUG(dbgs() << "IV Chain#" << ChainIdx << " Inc: (" << *UserInst
2962 << ") IV+" << *LastIncExpr << "\n");
Jakob Stoklund Olesenc90abc82012-04-26 23:33:11 +00002963 // Add this IV user to the end of the chain.
2964 IVChainVec[ChainIdx].add(IVInc(UserInst, IVOper, LastIncExpr));
2965 }
Andrew Trickbc705902013-02-09 01:11:01 +00002966 IVChain &Chain = IVChainVec[ChainIdx];
Andrew Trick29fe5f02012-01-09 19:50:34 +00002967
2968 SmallPtrSet<Instruction*,4> &NearUsers = ChainUsersVec[ChainIdx].NearUsers;
2969 // This chain's NearUsers become FarUsers.
2970 if (!LastIncExpr->isZero()) {
2971 ChainUsersVec[ChainIdx].FarUsers.insert(NearUsers.begin(),
2972 NearUsers.end());
2973 NearUsers.clear();
2974 }
2975
2976 // All other uses of IVOperand become near uses of the chain.
2977 // We currently ignore intermediate values within SCEV expressions, assuming
2978 // they will eventually be used be the current chain, or can be computed
2979 // from one of the chain increments. To be more precise we could
2980 // transitively follow its user and only add leaf IV users to the set.
Chandler Carruthcdf47882014-03-09 03:16:01 +00002981 for (User *U : IVOper->users()) {
2982 Instruction *OtherUse = dyn_cast<Instruction>(U);
Andrew Trickbc705902013-02-09 01:11:01 +00002983 if (!OtherUse)
Andrew Tricke51feea2012-03-26 18:03:16 +00002984 continue;
Andrew Trickbc705902013-02-09 01:11:01 +00002985 // Uses in the chain will no longer be uses if the chain is formed.
2986 // Include the head of the chain in this iteration (not Chain.begin()).
2987 IVChain::const_iterator IncIter = Chain.Incs.begin();
2988 IVChain::const_iterator IncEnd = Chain.Incs.end();
2989 for( ; IncIter != IncEnd; ++IncIter) {
2990 if (IncIter->UserInst == OtherUse)
2991 break;
2992 }
2993 if (IncIter != IncEnd)
2994 continue;
2995
Andrew Trick29fe5f02012-01-09 19:50:34 +00002996 if (SE.isSCEVable(OtherUse->getType())
2997 && !isa<SCEVUnknown>(SE.getSCEV(OtherUse))
2998 && IU.isIVUserOrOperand(OtherUse)) {
2999 continue;
3000 }
Andrew Tricke51feea2012-03-26 18:03:16 +00003001 NearUsers.insert(OtherUse);
Andrew Trick29fe5f02012-01-09 19:50:34 +00003002 }
3003
3004 // Since this user is part of the chain, it's no longer considered a use
3005 // of the chain.
3006 ChainUsersVec[ChainIdx].FarUsers.erase(UserInst);
3007}
3008
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003009/// Populate the vector of Chains.
Andrew Trick29fe5f02012-01-09 19:50:34 +00003010///
3011/// This decreases ILP at the architecture level. Targets with ample registers,
3012/// multiple memory ports, and no register renaming probably don't want
3013/// this. However, such targets should probably disable LSR altogether.
3014///
3015/// The job of LSR is to make a reasonable choice of induction variables across
3016/// the loop. Subsequent passes can easily "unchain" computation exposing more
3017/// ILP *within the loop* if the target wants it.
3018///
3019/// Finding the best IV chain is potentially a scheduling problem. Since LSR
3020/// will not reorder memory operations, it will recognize this as a chain, but
3021/// will generate redundant IV increments. Ideally this would be corrected later
3022/// by a smart scheduler:
3023/// = A[i]
3024/// = A[i+x]
3025/// A[i] =
3026/// A[i+x] =
3027///
3028/// TODO: Walk the entire domtree within this loop, not just the path to the
3029/// loop latch. This will discover chains on side paths, but requires
3030/// maintaining multiple copies of the Chains state.
3031void LSRInstance::CollectChains() {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00003032 LLVM_DEBUG(dbgs() << "Collecting IV Chains.\n");
Andrew Trick29fe5f02012-01-09 19:50:34 +00003033 SmallVector<ChainUsers, 8> ChainUsersVec;
3034
3035 SmallVector<BasicBlock *,8> LatchPath;
3036 BasicBlock *LoopHeader = L->getHeader();
3037 for (DomTreeNode *Rung = DT.getNode(L->getLoopLatch());
3038 Rung->getBlock() != LoopHeader; Rung = Rung->getIDom()) {
3039 LatchPath.push_back(Rung->getBlock());
3040 }
3041 LatchPath.push_back(LoopHeader);
3042
3043 // Walk the instruction stream from the loop header to the loop latch.
David Majnemerd7708772016-06-24 04:05:21 +00003044 for (BasicBlock *BB : reverse(LatchPath)) {
3045 for (Instruction &I : *BB) {
Andrew Trick29fe5f02012-01-09 19:50:34 +00003046 // Skip instructions that weren't seen by IVUsers analysis.
David Majnemerd7708772016-06-24 04:05:21 +00003047 if (isa<PHINode>(I) || !IU.isIVUserOrOperand(&I))
Andrew Trick29fe5f02012-01-09 19:50:34 +00003048 continue;
3049
3050 // Ignore users that are part of a SCEV expression. This way we only
3051 // consider leaf IV Users. This effectively rediscovers a portion of
3052 // IVUsers analysis but in program order this time.
Sanjoy Das2f274562017-10-18 22:00:57 +00003053 if (SE.isSCEVable(I.getType()) && !isa<SCEVUnknown>(SE.getSCEV(&I)))
Jatin Bhatejac61ade12017-11-13 16:43:24 +00003054 continue;
Andrew Trick29fe5f02012-01-09 19:50:34 +00003055
3056 // Remove this instruction from any NearUsers set it may be in.
3057 for (unsigned ChainIdx = 0, NChains = IVChainVec.size();
3058 ChainIdx < NChains; ++ChainIdx) {
David Majnemerd7708772016-06-24 04:05:21 +00003059 ChainUsersVec[ChainIdx].NearUsers.erase(&I);
Andrew Trick29fe5f02012-01-09 19:50:34 +00003060 }
3061 // Search for operands that can be chained.
3062 SmallPtrSet<Instruction*, 4> UniqueOperands;
David Majnemerd7708772016-06-24 04:05:21 +00003063 User::op_iterator IVOpEnd = I.op_end();
3064 User::op_iterator IVOpIter = findIVOperand(I.op_begin(), IVOpEnd, L, SE);
Andrew Trick29fe5f02012-01-09 19:50:34 +00003065 while (IVOpIter != IVOpEnd) {
3066 Instruction *IVOpInst = cast<Instruction>(*IVOpIter);
David Blaikie70573dc2014-11-19 07:49:26 +00003067 if (UniqueOperands.insert(IVOpInst).second)
David Majnemerd7708772016-06-24 04:05:21 +00003068 ChainInstruction(&I, IVOpInst, ChainUsersVec);
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00003069 IVOpIter = findIVOperand(std::next(IVOpIter), IVOpEnd, L, SE);
Andrew Trick29fe5f02012-01-09 19:50:34 +00003070 }
3071 } // Continue walking down the instructions.
3072 } // Continue walking down the domtree.
3073 // Visit phi backedges to determine if the chain can generate the IV postinc.
Benjamin Kramerc7fc81e2017-12-30 15:27:33 +00003074 for (PHINode &PN : L->getHeader()->phis()) {
3075 if (!SE.isSCEVable(PN.getType()))
Andrew Trick29fe5f02012-01-09 19:50:34 +00003076 continue;
3077
3078 Instruction *IncV =
Benjamin Kramerc7fc81e2017-12-30 15:27:33 +00003079 dyn_cast<Instruction>(PN.getIncomingValueForBlock(L->getLoopLatch()));
Andrew Trick29fe5f02012-01-09 19:50:34 +00003080 if (IncV)
Benjamin Kramerc7fc81e2017-12-30 15:27:33 +00003081 ChainInstruction(&PN, IncV, ChainUsersVec);
Andrew Trick29fe5f02012-01-09 19:50:34 +00003082 }
Andrew Trick248d4102012-01-09 21:18:52 +00003083 // Remove any unprofitable chains.
3084 unsigned ChainIdx = 0;
3085 for (unsigned UsersIdx = 0, NChains = IVChainVec.size();
3086 UsersIdx < NChains; ++UsersIdx) {
3087 if (!isProfitableChain(IVChainVec[UsersIdx],
Sam Parker67756c02019-02-07 13:32:54 +00003088 ChainUsersVec[UsersIdx].FarUsers, SE))
Andrew Trick248d4102012-01-09 21:18:52 +00003089 continue;
3090 // Preserve the chain at UsesIdx.
3091 if (ChainIdx != UsersIdx)
3092 IVChainVec[ChainIdx] = IVChainVec[UsersIdx];
3093 FinalizeChain(IVChainVec[ChainIdx]);
3094 ++ChainIdx;
3095 }
3096 IVChainVec.resize(ChainIdx);
3097}
3098
3099void LSRInstance::FinalizeChain(IVChain &Chain) {
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00003100 assert(!Chain.Incs.empty() && "empty IV chains are not allowed");
Nicola Zaghend34e60c2018-05-14 12:53:11 +00003101 LLVM_DEBUG(dbgs() << "Final Chain: " << *Chain.Incs[0].UserInst << "\n");
Sam Parker67756c02019-02-07 13:32:54 +00003102
Craig Topper042a3922015-05-25 20:01:18 +00003103 for (const IVInc &Inc : Chain) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00003104 LLVM_DEBUG(dbgs() << " Inc: " << *Inc.UserInst << "\n");
David Majnemer42531262016-08-12 03:55:06 +00003105 auto UseI = find(Inc.UserInst->operands(), Inc.IVOperand);
Craig Topper042a3922015-05-25 20:01:18 +00003106 assert(UseI != Inc.UserInst->op_end() && "cannot find IV operand");
Andrew Trick248d4102012-01-09 21:18:52 +00003107 IVIncSet.insert(UseI);
3108 }
3109}
3110
3111/// Return true if the IVInc can be folded into an addressing mode.
3112static bool canFoldIVIncExpr(const SCEV *IncExpr, Instruction *UserInst,
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003113 Value *Operand, const TargetTransformInfo &TTI) {
Andrew Trick248d4102012-01-09 21:18:52 +00003114 const SCEVConstant *IncConst = dyn_cast<SCEVConstant>(IncExpr);
Matt Arsenault3e268cc2017-12-11 21:38:43 +00003115 if (!IncConst || !isAddressUse(TTI, UserInst, Operand))
Andrew Trick248d4102012-01-09 21:18:52 +00003116 return false;
3117
Sanjoy Das0de2fec2015-12-17 20:28:46 +00003118 if (IncConst->getAPInt().getMinSignedBits() > 64)
Andrew Trick248d4102012-01-09 21:18:52 +00003119 return false;
3120
Daniil Fukalov37433dc2018-06-08 16:22:52 +00003121 MemAccessTy AccessTy = getAccessType(TTI, UserInst, Operand);
Andrew Trick248d4102012-01-09 21:18:52 +00003122 int64_t IncOffset = IncConst->getValue()->getSExtValue();
Matt Arsenault427a0fd2015-08-15 00:53:06 +00003123 if (!isAlwaysFoldable(TTI, LSRUse::Address, AccessTy, /*BaseGV=*/nullptr,
3124 IncOffset, /*HaseBaseReg=*/false))
Andrew Trick248d4102012-01-09 21:18:52 +00003125 return false;
3126
3127 return true;
3128}
3129
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003130/// Generate an add or subtract for each IVInc in a chain to materialize the IV
3131/// user's operand from the previous IV user's operand.
Andrew Trick248d4102012-01-09 21:18:52 +00003132void LSRInstance::GenerateIVChain(const IVChain &Chain, SCEVExpander &Rewriter,
Sanjoy Dase6bca0e2017-05-01 17:07:49 +00003133 SmallVectorImpl<WeakTrackingVH> &DeadInsts) {
Andrew Trick248d4102012-01-09 21:18:52 +00003134 // Find the new IVOperand for the head of the chain. It may have been replaced
3135 // by LSR.
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00003136 const IVInc &Head = Chain.Incs[0];
Andrew Trick248d4102012-01-09 21:18:52 +00003137 User::op_iterator IVOpEnd = Head.UserInst->op_end();
Andrew Trickf3a25442013-03-19 05:10:27 +00003138 // findIVOperand returns IVOpEnd if it can no longer find a valid IV user.
Andrew Trick248d4102012-01-09 21:18:52 +00003139 User::op_iterator IVOpIter = findIVOperand(Head.UserInst->op_begin(),
3140 IVOpEnd, L, SE);
Craig Topperf40110f2014-04-25 05:29:35 +00003141 Value *IVSrc = nullptr;
Andrew Trickf3a25442013-03-19 05:10:27 +00003142 while (IVOpIter != IVOpEnd) {
Andrew Trick248d4102012-01-09 21:18:52 +00003143 IVSrc = getWideOperand(*IVOpIter);
3144
3145 // If this operand computes the expression that the chain needs, we may use
3146 // it. (Check this after setting IVSrc which is used below.)
3147 //
3148 // Note that if Head.IncExpr is wider than IVSrc, then this phi is too
3149 // narrow for the chain, so we can no longer use it. We do allow using a
3150 // wider phi, assuming the LSR checked for free truncation. In that case we
3151 // should already have a truncate on this operand such that
3152 // getSCEV(IVSrc) == IncExpr.
3153 if (SE.getSCEV(*IVOpIter) == Head.IncExpr
3154 || SE.getSCEV(IVSrc) == Head.IncExpr) {
3155 break;
3156 }
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00003157 IVOpIter = findIVOperand(std::next(IVOpIter), IVOpEnd, L, SE);
Andrew Trickf3a25442013-03-19 05:10:27 +00003158 }
Andrew Trick248d4102012-01-09 21:18:52 +00003159 if (IVOpIter == IVOpEnd) {
3160 // Gracefully give up on this chain.
Nicola Zaghend34e60c2018-05-14 12:53:11 +00003161 LLVM_DEBUG(dbgs() << "Concealed chain head: " << *Head.UserInst << "\n");
Andrew Trick248d4102012-01-09 21:18:52 +00003162 return;
3163 }
3164
Nicola Zaghend34e60c2018-05-14 12:53:11 +00003165 LLVM_DEBUG(dbgs() << "Generate chain at: " << *IVSrc << "\n");
Andrew Trick248d4102012-01-09 21:18:52 +00003166 Type *IVTy = IVSrc->getType();
3167 Type *IntTy = SE.getEffectiveSCEVType(IVTy);
Craig Topperf40110f2014-04-25 05:29:35 +00003168 const SCEV *LeftOverExpr = nullptr;
Craig Topper042a3922015-05-25 20:01:18 +00003169 for (const IVInc &Inc : Chain) {
3170 Instruction *InsertPt = Inc.UserInst;
Andrew Trick248d4102012-01-09 21:18:52 +00003171 if (isa<PHINode>(InsertPt))
3172 InsertPt = L->getLoopLatch()->getTerminator();
3173
3174 // IVOper will replace the current IV User's operand. IVSrc is the IV
3175 // value currently held in a register.
3176 Value *IVOper = IVSrc;
Craig Topper042a3922015-05-25 20:01:18 +00003177 if (!Inc.IncExpr->isZero()) {
Andrew Trick248d4102012-01-09 21:18:52 +00003178 // IncExpr was the result of subtraction of two narrow values, so must
3179 // be signed.
Craig Topper042a3922015-05-25 20:01:18 +00003180 const SCEV *IncExpr = SE.getNoopOrSignExtend(Inc.IncExpr, IntTy);
Andrew Trick248d4102012-01-09 21:18:52 +00003181 LeftOverExpr = LeftOverExpr ?
3182 SE.getAddExpr(LeftOverExpr, IncExpr) : IncExpr;
3183 }
3184 if (LeftOverExpr && !LeftOverExpr->isZero()) {
3185 // Expand the IV increment.
3186 Rewriter.clearPostInc();
3187 Value *IncV = Rewriter.expandCodeFor(LeftOverExpr, IntTy, InsertPt);
3188 const SCEV *IVOperExpr = SE.getAddExpr(SE.getUnknown(IVSrc),
3189 SE.getUnknown(IncV));
3190 IVOper = Rewriter.expandCodeFor(IVOperExpr, IVTy, InsertPt);
3191
3192 // If an IV increment can't be folded, use it as the next IV value.
Craig Topper042a3922015-05-25 20:01:18 +00003193 if (!canFoldIVIncExpr(LeftOverExpr, Inc.UserInst, Inc.IVOperand, TTI)) {
Andrew Trick248d4102012-01-09 21:18:52 +00003194 assert(IVTy == IVOper->getType() && "inconsistent IV increment type");
3195 IVSrc = IVOper;
Craig Topperf40110f2014-04-25 05:29:35 +00003196 LeftOverExpr = nullptr;
Andrew Trick248d4102012-01-09 21:18:52 +00003197 }
3198 }
Craig Topper042a3922015-05-25 20:01:18 +00003199 Type *OperTy = Inc.IVOperand->getType();
Andrew Trick248d4102012-01-09 21:18:52 +00003200 if (IVTy != OperTy) {
3201 assert(SE.getTypeSizeInBits(IVTy) >= SE.getTypeSizeInBits(OperTy) &&
3202 "cannot extend a chained IV");
3203 IRBuilder<> Builder(InsertPt);
3204 IVOper = Builder.CreateTruncOrBitCast(IVOper, OperTy, "lsr.chain");
3205 }
Craig Topper042a3922015-05-25 20:01:18 +00003206 Inc.UserInst->replaceUsesOfWith(Inc.IVOperand, IVOper);
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +00003207 DeadInsts.emplace_back(Inc.IVOperand);
Andrew Trick248d4102012-01-09 21:18:52 +00003208 }
3209 // If LSR created a new, wider phi, we may also replace its postinc. We only
3210 // do this if we also found a wide value for the head of the chain.
Jakob Stoklund Olesena0337d72012-04-26 23:33:09 +00003211 if (isa<PHINode>(Chain.tailUserInst())) {
Benjamin Kramerc7fc81e2017-12-30 15:27:33 +00003212 for (PHINode &Phi : L->getHeader()->phis()) {
3213 if (!isCompatibleIVType(&Phi, IVSrc))
Andrew Trick248d4102012-01-09 21:18:52 +00003214 continue;
3215 Instruction *PostIncV = dyn_cast<Instruction>(
Benjamin Kramerc7fc81e2017-12-30 15:27:33 +00003216 Phi.getIncomingValueForBlock(L->getLoopLatch()));
Andrew Trick248d4102012-01-09 21:18:52 +00003217 if (!PostIncV || (SE.getSCEV(PostIncV) != SE.getSCEV(IVSrc)))
3218 continue;
3219 Value *IVOper = IVSrc;
3220 Type *PostIncTy = PostIncV->getType();
3221 if (IVTy != PostIncTy) {
3222 assert(PostIncTy->isPointerTy() && "mixing int/ptr IV types");
3223 IRBuilder<> Builder(L->getLoopLatch()->getTerminator());
3224 Builder.SetCurrentDebugLocation(PostIncV->getDebugLoc());
3225 IVOper = Builder.CreatePointerCast(IVSrc, PostIncTy, "lsr.chain");
3226 }
Benjamin Kramerc7fc81e2017-12-30 15:27:33 +00003227 Phi.replaceUsesOfWith(PostIncV, IVOper);
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +00003228 DeadInsts.emplace_back(PostIncV);
Andrew Trick248d4102012-01-09 21:18:52 +00003229 }
3230 }
Andrew Trick29fe5f02012-01-09 19:50:34 +00003231}
3232
Dan Gohman45774ce2010-02-12 10:34:29 +00003233void LSRInstance::CollectFixupsAndInitialFormulae() {
Craig Topper042a3922015-05-25 20:01:18 +00003234 for (const IVStrideUse &U : IU) {
3235 Instruction *UserInst = U.getUser();
Andrew Trick248d4102012-01-09 21:18:52 +00003236 // Skip IV users that are part of profitable IV Chains.
David Majnemer42531262016-08-12 03:55:06 +00003237 User::op_iterator UseI =
3238 find(UserInst->operands(), U.getOperandValToReplace());
Andrew Trick248d4102012-01-09 21:18:52 +00003239 assert(UseI != UserInst->op_end() && "cannot find IV operand");
Quentin Colombet35109902017-01-28 01:05:27 +00003240 if (IVIncSet.count(UseI)) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00003241 LLVM_DEBUG(dbgs() << "Use is in profitable chain: " << **UseI << '\n');
Andrew Trick248d4102012-01-09 21:18:52 +00003242 continue;
Quentin Colombet35109902017-01-28 01:05:27 +00003243 }
Andrew Trick248d4102012-01-09 21:18:52 +00003244
Dan Gohman45774ce2010-02-12 10:34:29 +00003245 LSRUse::KindType Kind = LSRUse::Basic;
Matt Arsenault427a0fd2015-08-15 00:53:06 +00003246 MemAccessTy AccessTy;
Matt Arsenault3e268cc2017-12-11 21:38:43 +00003247 if (isAddressUse(TTI, UserInst, U.getOperandValToReplace())) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003248 Kind = LSRUse::Address;
Daniil Fukalov37433dc2018-06-08 16:22:52 +00003249 AccessTy = getAccessType(TTI, UserInst, U.getOperandValToReplace());
Dan Gohman45774ce2010-02-12 10:34:29 +00003250 }
3251
Craig Topper042a3922015-05-25 20:01:18 +00003252 const SCEV *S = IU.getExpr(U);
Jonas Paulsson7a794222016-08-17 13:24:19 +00003253 PostIncLoopSet TmpPostIncLoops = U.getPostIncLoops();
Matt Arsenault3e268cc2017-12-11 21:38:43 +00003254
Dan Gohman45774ce2010-02-12 10:34:29 +00003255 // Equality (== and !=) ICmps are special. We can rewrite (i == N) as
3256 // (N - i == 0), and this allows (N - i) to be the expression that we work
3257 // with rather than just N or i, so we can consider the register
3258 // requirements for both N and i at the same time. Limiting this code to
3259 // equality icmps is not a problem because all interesting loops use
3260 // equality icmps, thanks to IndVarSimplify.
Jonas Paulsson7a794222016-08-17 13:24:19 +00003261 if (ICmpInst *CI = dyn_cast<ICmpInst>(UserInst))
Dan Gohman45774ce2010-02-12 10:34:29 +00003262 if (CI->isEquality()) {
3263 // Swap the operands if needed to put the OperandValToReplace on the
3264 // left, for consistency.
3265 Value *NV = CI->getOperand(1);
Jonas Paulsson7a794222016-08-17 13:24:19 +00003266 if (NV == U.getOperandValToReplace()) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003267 CI->setOperand(1, CI->getOperand(0));
3268 CI->setOperand(0, NV);
Dan Gohmanee2fea32010-05-20 19:26:52 +00003269 NV = CI->getOperand(1);
Dan Gohmanfdf98742010-05-20 19:16:03 +00003270 Changed = true;
Dan Gohman45774ce2010-02-12 10:34:29 +00003271 }
3272
3273 // x == y --> x - y == 0
3274 const SCEV *N = SE.getSCEV(NV);
Andrew Trick57243da2013-10-25 21:35:56 +00003275 if (SE.isLoopInvariant(N, L) && isSafeToExpand(N, SE)) {
Dan Gohman3268e4d2011-05-18 21:02:18 +00003276 // S is normalized, so normalize N before folding it into S
3277 // to keep the result normalized.
Sanjoy Dase3a15e82017-04-14 15:49:59 +00003278 N = normalizeForPostIncUse(N, TmpPostIncLoops, SE);
Dan Gohman45774ce2010-02-12 10:34:29 +00003279 Kind = LSRUse::ICmpZero;
3280 S = SE.getMinusSCEV(N, S);
3281 }
3282
3283 // -1 and the negations of all interesting strides (except the negation
3284 // of -1) are now also interesting.
3285 for (size_t i = 0, e = Factors.size(); i != e; ++i)
3286 if (Factors[i] != -1)
3287 Factors.insert(-(uint64_t)Factors[i]);
3288 Factors.insert(-1);
3289 }
3290
Jonas Paulsson7a794222016-08-17 13:24:19 +00003291 // Get or create an LSRUse.
Dan Gohman45774ce2010-02-12 10:34:29 +00003292 std::pair<size_t, int64_t> P = getUse(S, Kind, AccessTy);
Jonas Paulsson7a794222016-08-17 13:24:19 +00003293 size_t LUIdx = P.first;
3294 int64_t Offset = P.second;
3295 LSRUse &LU = Uses[LUIdx];
3296
3297 // Record the fixup.
3298 LSRFixup &LF = LU.getNewFixup();
3299 LF.UserInst = UserInst;
3300 LF.OperandValToReplace = U.getOperandValToReplace();
3301 LF.PostIncLoops = TmpPostIncLoops;
3302 LF.Offset = Offset;
Dan Gohmand006ab92010-04-07 22:27:08 +00003303 LU.AllFixupsOutsideLoop &= LF.isUseFullyOutsideLoop(L);
Jonas Paulsson7a794222016-08-17 13:24:19 +00003304
Dan Gohman14152082010-07-15 20:24:58 +00003305 if (!LU.WidestFixupType ||
3306 SE.getTypeSizeInBits(LU.WidestFixupType) <
3307 SE.getTypeSizeInBits(LF.OperandValToReplace->getType()))
3308 LU.WidestFixupType = LF.OperandValToReplace->getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00003309
3310 // If this is the first use of this LSRUse, give it a formula.
3311 if (LU.Formulae.empty()) {
Jonas Paulsson7a794222016-08-17 13:24:19 +00003312 InsertInitialFormula(S, LU, LUIdx);
3313 CountRegisters(LU.Formulae.back(), LUIdx);
Dan Gohman45774ce2010-02-12 10:34:29 +00003314 }
3315 }
3316
Nicola Zaghend34e60c2018-05-14 12:53:11 +00003317 LLVM_DEBUG(print_fixups(dbgs()));
Dan Gohman45774ce2010-02-12 10:34:29 +00003318}
3319
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003320/// Insert a formula for the given expression into the given use, separating out
3321/// loop-variant portions from loop-invariant and loop-computable portions.
Dan Gohman45774ce2010-02-12 10:34:29 +00003322void
Dan Gohman8c16b382010-02-22 04:11:59 +00003323LSRInstance::InsertInitialFormula(const SCEV *S, LSRUse &LU, size_t LUIdx) {
Andrew Trick57243da2013-10-25 21:35:56 +00003324 // Mark uses whose expressions cannot be expanded.
3325 if (!isSafeToExpand(S, SE))
3326 LU.RigidFormula = true;
3327
Dan Gohman45774ce2010-02-12 10:34:29 +00003328 Formula F;
Sanjoy Das302bfd02015-08-16 18:22:43 +00003329 F.initialMatch(S, L, SE);
Dan Gohman45774ce2010-02-12 10:34:29 +00003330 bool Inserted = InsertFormula(LU, LUIdx, F);
3331 assert(Inserted && "Initial formula already exists!"); (void)Inserted;
3332}
3333
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003334/// Insert a simple single-register formula for the given expression into the
3335/// given use.
Dan Gohman45774ce2010-02-12 10:34:29 +00003336void
3337LSRInstance::InsertSupplementalFormula(const SCEV *S,
3338 LSRUse &LU, size_t LUIdx) {
3339 Formula F;
3340 F.BaseRegs.push_back(S);
Chandler Carruth7e31c8f2013-01-12 23:46:04 +00003341 F.HasBaseReg = true;
Dan Gohman45774ce2010-02-12 10:34:29 +00003342 bool Inserted = InsertFormula(LU, LUIdx, F);
3343 assert(Inserted && "Supplemental formula already exists!"); (void)Inserted;
3344}
3345
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003346/// Note which registers are used by the given formula, updating RegUses.
Dan Gohman45774ce2010-02-12 10:34:29 +00003347void LSRInstance::CountRegisters(const Formula &F, size_t LUIdx) {
3348 if (F.ScaledReg)
Sanjoy Das302bfd02015-08-16 18:22:43 +00003349 RegUses.countRegister(F.ScaledReg, LUIdx);
Craig Topper042a3922015-05-25 20:01:18 +00003350 for (const SCEV *BaseReg : F.BaseRegs)
Sanjoy Das302bfd02015-08-16 18:22:43 +00003351 RegUses.countRegister(BaseReg, LUIdx);
Dan Gohman45774ce2010-02-12 10:34:29 +00003352}
3353
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003354/// If the given formula has not yet been inserted, add it to the list, and
3355/// return true. Return false otherwise.
Dan Gohman45774ce2010-02-12 10:34:29 +00003356bool LSRInstance::InsertFormula(LSRUse &LU, unsigned LUIdx, const Formula &F) {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003357 // Do not insert formula that we will not be able to expand.
3358 assert(isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy, F) &&
3359 "Formula is illegal");
Wei Mi74d5a902017-02-22 21:47:08 +00003360
3361 if (!LU.InsertFormula(F, *L))
Dan Gohman45774ce2010-02-12 10:34:29 +00003362 return false;
3363
3364 CountRegisters(F, LUIdx);
3365 return true;
3366}
3367
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003368/// Check for other uses of loop-invariant values which we're tracking. These
3369/// other uses will pin these values in registers, making them less profitable
3370/// for elimination.
Dan Gohman45774ce2010-02-12 10:34:29 +00003371/// TODO: This currently misses non-constant addrec step registers.
3372/// TODO: Should this give more weight to users inside the loop?
3373void
3374LSRInstance::CollectLoopInvariantFixupsAndFormulae() {
3375 SmallVector<const SCEV *, 8> Worklist(RegUses.begin(), RegUses.end());
Andrew Trickdd925ad2014-10-25 19:59:30 +00003376 SmallPtrSet<const SCEV *, 32> Visited;
Dan Gohman45774ce2010-02-12 10:34:29 +00003377
3378 while (!Worklist.empty()) {
3379 const SCEV *S = Worklist.pop_back_val();
3380
Andrew Trick9ccbed52014-10-25 19:42:07 +00003381 // Don't process the same SCEV twice
David Blaikie70573dc2014-11-19 07:49:26 +00003382 if (!Visited.insert(S).second)
Andrew Trick9ccbed52014-10-25 19:42:07 +00003383 continue;
3384
Dan Gohman45774ce2010-02-12 10:34:29 +00003385 if (const SCEVNAryExpr *N = dyn_cast<SCEVNAryExpr>(S))
Dan Gohmandd41bba2010-06-21 19:47:52 +00003386 Worklist.append(N->op_begin(), N->op_end());
Dan Gohman45774ce2010-02-12 10:34:29 +00003387 else if (const SCEVCastExpr *C = dyn_cast<SCEVCastExpr>(S))
3388 Worklist.push_back(C->getOperand());
3389 else if (const SCEVUDivExpr *D = dyn_cast<SCEVUDivExpr>(S)) {
3390 Worklist.push_back(D->getLHS());
3391 Worklist.push_back(D->getRHS());
Chandler Carruthcdf47882014-03-09 03:16:01 +00003392 } else if (const SCEVUnknown *US = dyn_cast<SCEVUnknown>(S)) {
Chandler Carruthcdf47882014-03-09 03:16:01 +00003393 const Value *V = US->getValue();
Dan Gohman67b44032010-06-04 23:16:05 +00003394 if (const Instruction *Inst = dyn_cast<Instruction>(V)) {
3395 // Look for instructions defined outside the loop.
Dan Gohman45774ce2010-02-12 10:34:29 +00003396 if (L->contains(Inst)) continue;
Dan Gohman67b44032010-06-04 23:16:05 +00003397 } else if (isa<UndefValue>(V))
3398 // Undef doesn't have a live range, so it doesn't matter.
3399 continue;
Chandler Carruthcdf47882014-03-09 03:16:01 +00003400 for (const Use &U : V->uses()) {
3401 const Instruction *UserInst = dyn_cast<Instruction>(U.getUser());
Dan Gohman45774ce2010-02-12 10:34:29 +00003402 // Ignore non-instructions.
3403 if (!UserInst)
Dan Gohman045f8192010-01-22 00:46:49 +00003404 continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003405 // Ignore instructions in other functions (as can happen with
3406 // Constants).
3407 if (UserInst->getParent()->getParent() != L->getHeader()->getParent())
Dan Gohman045f8192010-01-22 00:46:49 +00003408 continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003409 // Ignore instructions not dominated by the loop.
3410 const BasicBlock *UseBB = !isa<PHINode>(UserInst) ?
3411 UserInst->getParent() :
3412 cast<PHINode>(UserInst)->getIncomingBlock(
Chandler Carruthcdf47882014-03-09 03:16:01 +00003413 PHINode::getIncomingValueNumForOperand(U.getOperandNo()));
Dan Gohman45774ce2010-02-12 10:34:29 +00003414 if (!DT.dominates(L->getHeader(), UseBB))
3415 continue;
David Majnemerb2221842015-11-08 05:04:07 +00003416 // Don't bother if the instruction is in a BB which ends in an EHPad.
3417 if (UseBB->getTerminator()->isEHPad())
3418 continue;
David Majnemerbba17392017-01-13 22:24:27 +00003419 // Don't bother rewriting PHIs in catchswitch blocks.
3420 if (isa<CatchSwitchInst>(UserInst->getParent()->getTerminator()))
3421 continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003422 // Ignore uses which are part of other SCEV expressions, to avoid
3423 // analyzing them multiple times.
Dan Gohman42ec4eb2010-04-09 19:12:34 +00003424 if (SE.isSCEVable(UserInst->getType())) {
3425 const SCEV *UserS = SE.getSCEV(const_cast<Instruction *>(UserInst));
3426 // If the user is a no-op, look through to its uses.
3427 if (!isa<SCEVUnknown>(UserS))
3428 continue;
Chandler Carruthcdf47882014-03-09 03:16:01 +00003429 if (UserS == US) {
Dan Gohman42ec4eb2010-04-09 19:12:34 +00003430 Worklist.push_back(
3431 SE.getUnknown(const_cast<Instruction *>(UserInst)));
3432 continue;
3433 }
3434 }
Dan Gohman45774ce2010-02-12 10:34:29 +00003435 // Ignore icmp instructions which are already being analyzed.
3436 if (const ICmpInst *ICI = dyn_cast<ICmpInst>(UserInst)) {
Chandler Carruthcdf47882014-03-09 03:16:01 +00003437 unsigned OtherIdx = !U.getOperandNo();
Dan Gohman45774ce2010-02-12 10:34:29 +00003438 Value *OtherOp = const_cast<Value *>(ICI->getOperand(OtherIdx));
Dan Gohmanafd6db92010-11-17 21:23:15 +00003439 if (SE.hasComputableLoopEvolution(SE.getSCEV(OtherOp), L))
Dan Gohman45774ce2010-02-12 10:34:29 +00003440 continue;
3441 }
3442
Matt Arsenault427a0fd2015-08-15 00:53:06 +00003443 std::pair<size_t, int64_t> P = getUse(
3444 S, LSRUse::Basic, MemAccessTy());
Jonas Paulsson7a794222016-08-17 13:24:19 +00003445 size_t LUIdx = P.first;
3446 int64_t Offset = P.second;
3447 LSRUse &LU = Uses[LUIdx];
3448 LSRFixup &LF = LU.getNewFixup();
3449 LF.UserInst = const_cast<Instruction *>(UserInst);
3450 LF.OperandValToReplace = U;
3451 LF.Offset = Offset;
Dan Gohmand006ab92010-04-07 22:27:08 +00003452 LU.AllFixupsOutsideLoop &= LF.isUseFullyOutsideLoop(L);
Dan Gohman14152082010-07-15 20:24:58 +00003453 if (!LU.WidestFixupType ||
3454 SE.getTypeSizeInBits(LU.WidestFixupType) <
3455 SE.getTypeSizeInBits(LF.OperandValToReplace->getType()))
3456 LU.WidestFixupType = LF.OperandValToReplace->getType();
Jonas Paulsson7a794222016-08-17 13:24:19 +00003457 InsertSupplementalFormula(US, LU, LUIdx);
Dan Gohman45774ce2010-02-12 10:34:29 +00003458 CountRegisters(LU.Formulae.back(), Uses.size() - 1);
3459 break;
3460 }
3461 }
3462 }
3463}
3464
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003465/// Split S into subexpressions which can be pulled out into separate
3466/// registers. If C is non-null, multiply each subexpression by C.
Andrew Trickc8037062012-07-17 05:30:37 +00003467///
3468/// Return remainder expression after factoring the subexpressions captured by
3469/// Ops. If Ops is complete, return NULL.
3470static const SCEV *CollectSubexprs(const SCEV *S, const SCEVConstant *C,
3471 SmallVectorImpl<const SCEV *> &Ops,
3472 const Loop *L,
3473 ScalarEvolution &SE,
3474 unsigned Depth = 0) {
3475 // Arbitrarily cap recursion to protect compile time.
3476 if (Depth >= 3)
3477 return S;
3478
Dan Gohman45774ce2010-02-12 10:34:29 +00003479 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
3480 // Break out add operands.
Craig Topper042a3922015-05-25 20:01:18 +00003481 for (const SCEV *S : Add->operands()) {
3482 const SCEV *Remainder = CollectSubexprs(S, C, Ops, L, SE, Depth+1);
Andrew Trickc8037062012-07-17 05:30:37 +00003483 if (Remainder)
3484 Ops.push_back(C ? SE.getMulExpr(C, Remainder) : Remainder);
3485 }
Craig Topperf40110f2014-04-25 05:29:35 +00003486 return nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +00003487 } else if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) {
3488 // Split a non-zero base out of an addrec.
Alexandros Lamprineas0ee3ec22016-11-09 08:53:07 +00003489 if (AR->getStart()->isZero() || !AR->isAffine())
Andrew Trickc8037062012-07-17 05:30:37 +00003490 return S;
3491
3492 const SCEV *Remainder = CollectSubexprs(AR->getStart(),
3493 C, Ops, L, SE, Depth+1);
3494 // Split the non-zero AddRec unless it is part of a nested recurrence that
3495 // does not pertain to this loop.
3496 if (Remainder && (AR->getLoop() == L || !isa<SCEVAddRecExpr>(Remainder))) {
3497 Ops.push_back(C ? SE.getMulExpr(C, Remainder) : Remainder);
Craig Topperf40110f2014-04-25 05:29:35 +00003498 Remainder = nullptr;
Andrew Trickc8037062012-07-17 05:30:37 +00003499 }
3500 if (Remainder != AR->getStart()) {
3501 if (!Remainder)
3502 Remainder = SE.getConstant(AR->getType(), 0);
3503 return SE.getAddRecExpr(Remainder,
3504 AR->getStepRecurrence(SE),
3505 AR->getLoop(),
3506 //FIXME: AR->getNoWrapFlags(SCEV::FlagNW)
3507 SCEV::FlagAnyWrap);
Dan Gohman45774ce2010-02-12 10:34:29 +00003508 }
3509 } else if (const SCEVMulExpr *Mul = dyn_cast<SCEVMulExpr>(S)) {
3510 // Break (C * (a + b + c)) into C*a + C*b + C*c.
Andrew Trickc8037062012-07-17 05:30:37 +00003511 if (Mul->getNumOperands() != 2)
3512 return S;
3513 if (const SCEVConstant *Op0 =
3514 dyn_cast<SCEVConstant>(Mul->getOperand(0))) {
3515 C = C ? cast<SCEVConstant>(SE.getMulExpr(C, Op0)) : Op0;
3516 const SCEV *Remainder =
3517 CollectSubexprs(Mul->getOperand(1), C, Ops, L, SE, Depth+1);
3518 if (Remainder)
3519 Ops.push_back(SE.getMulExpr(C, Remainder));
Craig Topperf40110f2014-04-25 05:29:35 +00003520 return nullptr;
Andrew Trickc8037062012-07-17 05:30:37 +00003521 }
Dan Gohman45774ce2010-02-12 10:34:29 +00003522 }
Andrew Trickc8037062012-07-17 05:30:37 +00003523 return S;
Dan Gohman45774ce2010-02-12 10:34:29 +00003524}
3525
Krzysztof Parzyszek0b377e02018-03-26 13:10:09 +00003526/// Return true if the SCEV represents a value that may end up as a
3527/// post-increment operation.
3528static bool mayUsePostIncMode(const TargetTransformInfo &TTI,
3529 LSRUse &LU, const SCEV *S, const Loop *L,
3530 ScalarEvolution &SE) {
3531 if (LU.Kind != LSRUse::Address ||
3532 !LU.AccessTy.getType()->isIntOrIntVectorTy())
3533 return false;
3534 const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S);
3535 if (!AR)
3536 return false;
3537 const SCEV *LoopStep = AR->getStepRecurrence(SE);
3538 if (!isa<SCEVConstant>(LoopStep))
3539 return false;
3540 if (LU.AccessTy.getType()->getScalarSizeInBits() !=
3541 LoopStep->getType()->getScalarSizeInBits())
3542 return false;
3543 // Check if a post-indexed load/store can be used.
3544 if (TTI.isIndexedLoadLegal(TTI.MIM_PostInc, AR->getType()) ||
3545 TTI.isIndexedStoreLegal(TTI.MIM_PostInc, AR->getType())) {
3546 const SCEV *LoopStart = AR->getStart();
3547 if (!isa<SCEVConstant>(LoopStart) && SE.isLoopInvariant(LoopStart, L))
3548 return true;
3549 }
3550 return false;
3551}
3552
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00003553/// Helper function for LSRInstance::GenerateReassociations.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003554void LSRInstance::GenerateReassociationsImpl(LSRUse &LU, unsigned LUIdx,
3555 const Formula &Base,
3556 unsigned Depth, size_t Idx,
3557 bool IsScaledReg) {
3558 const SCEV *BaseReg = IsScaledReg ? Base.ScaledReg : Base.BaseRegs[Idx];
Krzysztof Parzyszek0b377e02018-03-26 13:10:09 +00003559 // Don't generate reassociations for the base register of a value that
3560 // may generate a post-increment operator. The reason is that the
3561 // reassociations cause extra base+register formula to be created,
3562 // and possibly chosen, but the post-increment is more efficient.
3563 if (TTI.shouldFavorPostInc() && mayUsePostIncMode(TTI, LU, BaseReg, L, SE))
3564 return;
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003565 SmallVector<const SCEV *, 8> AddOps;
3566 const SCEV *Remainder = CollectSubexprs(BaseReg, nullptr, AddOps, L, SE);
3567 if (Remainder)
3568 AddOps.push_back(Remainder);
3569
3570 if (AddOps.size() == 1)
3571 return;
3572
3573 for (SmallVectorImpl<const SCEV *>::const_iterator J = AddOps.begin(),
3574 JE = AddOps.end();
3575 J != JE; ++J) {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003576 // Loop-variant "unknown" values are uninteresting; we won't be able to
3577 // do anything meaningful with them.
3578 if (isa<SCEVUnknown>(*J) && !SE.isLoopInvariant(*J, L))
3579 continue;
3580
3581 // Don't pull a constant into a register if the constant could be folded
3582 // into an immediate field.
3583 if (isAlwaysFoldable(TTI, SE, LU.MinOffset, LU.MaxOffset, LU.Kind,
3584 LU.AccessTy, *J, Base.getNumRegs() > 1))
3585 continue;
3586
3587 // Collect all operands except *J.
3588 SmallVector<const SCEV *, 8> InnerAddOps(
3589 ((const SmallVector<const SCEV *, 8> &)AddOps).begin(), J);
3590 InnerAddOps.append(std::next(J),
3591 ((const SmallVector<const SCEV *, 8> &)AddOps).end());
3592
3593 // Don't leave just a constant behind in a register if the constant could
3594 // be folded into an immediate field.
3595 if (InnerAddOps.size() == 1 &&
3596 isAlwaysFoldable(TTI, SE, LU.MinOffset, LU.MaxOffset, LU.Kind,
3597 LU.AccessTy, InnerAddOps[0], Base.getNumRegs() > 1))
3598 continue;
3599
3600 const SCEV *InnerSum = SE.getAddExpr(InnerAddOps);
3601 if (InnerSum->isZero())
3602 continue;
3603 Formula F = Base;
3604
3605 // Add the remaining pieces of the add back into the new formula.
3606 const SCEVConstant *InnerSumSC = dyn_cast<SCEVConstant>(InnerSum);
3607 if (InnerSumSC && SE.getTypeSizeInBits(InnerSumSC->getType()) <= 64 &&
3608 TTI.isLegalAddImmediate((uint64_t)F.UnfoldedOffset +
3609 InnerSumSC->getValue()->getZExtValue())) {
3610 F.UnfoldedOffset =
3611 (uint64_t)F.UnfoldedOffset + InnerSumSC->getValue()->getZExtValue();
3612 if (IsScaledReg)
3613 F.ScaledReg = nullptr;
3614 else
3615 F.BaseRegs.erase(F.BaseRegs.begin() + Idx);
3616 } else if (IsScaledReg)
3617 F.ScaledReg = InnerSum;
3618 else
3619 F.BaseRegs[Idx] = InnerSum;
3620
3621 // Add J as its own register, or an unfolded immediate.
3622 const SCEVConstant *SC = dyn_cast<SCEVConstant>(*J);
3623 if (SC && SE.getTypeSizeInBits(SC->getType()) <= 64 &&
3624 TTI.isLegalAddImmediate((uint64_t)F.UnfoldedOffset +
3625 SC->getValue()->getZExtValue()))
3626 F.UnfoldedOffset =
3627 (uint64_t)F.UnfoldedOffset + SC->getValue()->getZExtValue();
3628 else
3629 F.BaseRegs.push_back(*J);
3630 // We may have changed the number of register in base regs, adjust the
3631 // formula accordingly.
Wei Mi74d5a902017-02-22 21:47:08 +00003632 F.canonicalize(*L);
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003633
3634 if (InsertFormula(LU, LUIdx, F))
3635 // If that formula hadn't been seen before, recurse to find more like
3636 // it.
Evgeny Stupachenkobff93022018-05-16 02:48:50 +00003637 // Add check on Log16(AddOps.size()) - same as Log2_32(AddOps.size()) >> 2)
3638 // Because just Depth is not enough to bound compile time.
3639 // This means that every time AddOps.size() is greater 16^x we will add
3640 // x to Depth.
3641 GenerateReassociations(LU, LUIdx, LU.Formulae.back(),
3642 Depth + 1 + (Log2_32(AddOps.size()) >> 2));
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003643 }
3644}
3645
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003646/// Split out subexpressions from adds and the bases of addrecs.
Dan Gohman45774ce2010-02-12 10:34:29 +00003647void LSRInstance::GenerateReassociations(LSRUse &LU, unsigned LUIdx,
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003648 Formula Base, unsigned Depth) {
Wei Mi74d5a902017-02-22 21:47:08 +00003649 assert(Base.isCanonical(*L) && "Input must be in the canonical form");
Dan Gohman45774ce2010-02-12 10:34:29 +00003650 // Arbitrarily cap recursion to protect compile time.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003651 if (Depth >= 3)
3652 return;
Dan Gohman45774ce2010-02-12 10:34:29 +00003653
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003654 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i)
3655 GenerateReassociationsImpl(LU, LUIdx, Base, Depth, i);
Dan Gohman45774ce2010-02-12 10:34:29 +00003656
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003657 if (Base.Scale == 1)
3658 GenerateReassociationsImpl(LU, LUIdx, Base, Depth,
3659 /* Idx */ -1, /* IsScaledReg */ true);
Dan Gohman45774ce2010-02-12 10:34:29 +00003660}
3661
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003662/// Generate a formula consisting of all of the loop-dominating registers added
3663/// into a single register.
Dan Gohman45774ce2010-02-12 10:34:29 +00003664void LSRInstance::GenerateCombinations(LSRUse &LU, unsigned LUIdx,
Dan Gohmane4e51a62010-02-14 18:51:39 +00003665 Formula Base) {
Dan Gohman8b0a4192010-03-01 17:49:51 +00003666 // This method is only interesting on a plurality of registers.
Gil Rapaport7b88bab2018-11-08 09:01:19 +00003667 if (Base.BaseRegs.size() + (Base.Scale == 1) +
3668 (Base.UnfoldedOffset != 0) <= 1)
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003669 return;
Dan Gohman45774ce2010-02-12 10:34:29 +00003670
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003671 // Flatten the representation, i.e., reg1 + 1*reg2 => reg1 + reg2, before
3672 // processing the formula.
Sanjoy Das302bfd02015-08-16 18:22:43 +00003673 Base.unscale();
Dan Gohman45774ce2010-02-12 10:34:29 +00003674 SmallVector<const SCEV *, 4> Ops;
Gil Rapaport7b88bab2018-11-08 09:01:19 +00003675 Formula NewBase = Base;
3676 NewBase.BaseRegs.clear();
3677 Type *CombinedIntegerType = nullptr;
Craig Topper042a3922015-05-25 20:01:18 +00003678 for (const SCEV *BaseReg : Base.BaseRegs) {
Dan Gohman20d9ce22010-11-17 21:41:58 +00003679 if (SE.properlyDominates(BaseReg, L->getHeader()) &&
Gil Rapaport7b88bab2018-11-08 09:01:19 +00003680 !SE.hasComputableLoopEvolution(BaseReg, L)) {
3681 if (!CombinedIntegerType)
3682 CombinedIntegerType = SE.getEffectiveSCEVType(BaseReg->getType());
Dan Gohman45774ce2010-02-12 10:34:29 +00003683 Ops.push_back(BaseReg);
Gil Rapaport7b88bab2018-11-08 09:01:19 +00003684 }
Dan Gohman45774ce2010-02-12 10:34:29 +00003685 else
Gil Rapaport7b88bab2018-11-08 09:01:19 +00003686 NewBase.BaseRegs.push_back(BaseReg);
Dan Gohman45774ce2010-02-12 10:34:29 +00003687 }
Gil Rapaport7b88bab2018-11-08 09:01:19 +00003688
3689 // If no register is relevant, we're done.
3690 if (Ops.size() == 0)
3691 return;
3692
3693 // Utility function for generating the required variants of the combined
3694 // registers.
3695 auto GenerateFormula = [&](const SCEV *Sum) {
3696 Formula F = NewBase;
3697
Dan Gohmanbb7d5222010-02-14 18:50:49 +00003698 // TODO: If Sum is zero, it probably means ScalarEvolution missed an
3699 // opportunity to fold something. For now, just ignore such cases
Dan Gohman8b0a4192010-03-01 17:49:51 +00003700 // rather than proceed with zero in a register.
Gil Rapaport7b88bab2018-11-08 09:01:19 +00003701 if (Sum->isZero())
3702 return;
3703
3704 F.BaseRegs.push_back(Sum);
3705 F.canonicalize(*L);
3706 (void)InsertFormula(LU, LUIdx, F);
3707 };
3708
3709 // If we collected at least two registers, generate a formula combining them.
3710 if (Ops.size() > 1) {
3711 SmallVector<const SCEV *, 4> OpsCopy(Ops); // Don't let SE modify Ops.
3712 GenerateFormula(SE.getAddExpr(OpsCopy));
3713 }
3714
3715 // If we have an unfolded offset, generate a formula combining it with the
3716 // registers collected.
3717 if (NewBase.UnfoldedOffset) {
3718 assert(CombinedIntegerType && "Missing a type for the unfolded offset");
3719 Ops.push_back(SE.getConstant(CombinedIntegerType, NewBase.UnfoldedOffset,
3720 true));
3721 NewBase.UnfoldedOffset = 0;
3722 GenerateFormula(SE.getAddExpr(Ops));
Dan Gohman45774ce2010-02-12 10:34:29 +00003723 }
3724}
3725
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00003726/// Helper function for LSRInstance::GenerateSymbolicOffsets.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003727void LSRInstance::GenerateSymbolicOffsetsImpl(LSRUse &LU, unsigned LUIdx,
3728 const Formula &Base, size_t Idx,
3729 bool IsScaledReg) {
3730 const SCEV *G = IsScaledReg ? Base.ScaledReg : Base.BaseRegs[Idx];
3731 GlobalValue *GV = ExtractSymbol(G, SE);
3732 if (G->isZero() || !GV)
3733 return;
3734 Formula F = Base;
3735 F.BaseGV = GV;
3736 if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy, F))
3737 return;
3738 if (IsScaledReg)
3739 F.ScaledReg = G;
3740 else
3741 F.BaseRegs[Idx] = G;
3742 (void)InsertFormula(LU, LUIdx, F);
3743}
3744
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003745/// Generate reuse formulae using symbolic offsets.
Dan Gohman45774ce2010-02-12 10:34:29 +00003746void LSRInstance::GenerateSymbolicOffsets(LSRUse &LU, unsigned LUIdx,
3747 Formula Base) {
3748 // We can't add a symbolic offset if the address already contains one.
Chandler Carruth6e479322013-01-07 15:04:40 +00003749 if (Base.BaseGV) return;
Dan Gohman45774ce2010-02-12 10:34:29 +00003750
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003751 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i)
3752 GenerateSymbolicOffsetsImpl(LU, LUIdx, Base, i);
3753 if (Base.Scale == 1)
3754 GenerateSymbolicOffsetsImpl(LU, LUIdx, Base, /* Idx */ -1,
3755 /* IsScaledReg */ true);
3756}
3757
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00003758/// Helper function for LSRInstance::GenerateConstantOffsets.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003759void LSRInstance::GenerateConstantOffsetsImpl(
3760 LSRUse &LU, unsigned LUIdx, const Formula &Base,
3761 const SmallVectorImpl<int64_t> &Worklist, size_t Idx, bool IsScaledReg) {
Sam Parker67756c02019-02-07 13:32:54 +00003762
3763 auto GenerateOffset = [&](const SCEV *G, int64_t Offset) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003764 Formula F = Base;
Craig Topper042a3922015-05-25 20:01:18 +00003765 F.BaseOffset = (uint64_t)Base.BaseOffset - Offset;
Sam Parker67756c02019-02-07 13:32:54 +00003766
Craig Topper042a3922015-05-25 20:01:18 +00003767 if (isLegalUse(TTI, LU.MinOffset - Offset, LU.MaxOffset - Offset, LU.Kind,
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003768 LU.AccessTy, F)) {
3769 // Add the offset to the base register.
Craig Topper042a3922015-05-25 20:01:18 +00003770 const SCEV *NewG = SE.getAddExpr(SE.getConstant(G->getType(), Offset), G);
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003771 // If it cancelled out, drop the base register, otherwise update it.
3772 if (NewG->isZero()) {
3773 if (IsScaledReg) {
3774 F.Scale = 0;
3775 F.ScaledReg = nullptr;
3776 } else
Sanjoy Das302bfd02015-08-16 18:22:43 +00003777 F.deleteBaseReg(F.BaseRegs[Idx]);
Wei Mi74d5a902017-02-22 21:47:08 +00003778 F.canonicalize(*L);
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003779 } else if (IsScaledReg)
3780 F.ScaledReg = NewG;
3781 else
3782 F.BaseRegs[Idx] = NewG;
3783
3784 (void)InsertFormula(LU, LUIdx, F);
3785 }
Sam Parker67756c02019-02-07 13:32:54 +00003786 };
3787
3788 const SCEV *G = IsScaledReg ? Base.ScaledReg : Base.BaseRegs[Idx];
3789
3790 // With constant offsets and constant steps, we can generate pre-inc
3791 // accesses by having the offset equal the step. So, for access #0 with a
3792 // step of 8, we generate a G - 8 base which would require the first access
3793 // to be ((G - 8) + 8),+,8. The pre-indexed access then updates the pointer
3794 // for itself and hopefully becomes the base for other accesses. This means
3795 // means that a single pre-indexed access can be generated to become the new
3796 // base pointer for each iteration of the loop, resulting in no extra add/sub
3797 // instructions for pointer updating.
3798 if (FavorBackedgeIndex && LU.Kind == LSRUse::Address) {
3799 if (auto *GAR = dyn_cast<SCEVAddRecExpr>(G)) {
3800 if (auto *StepRec =
3801 dyn_cast<SCEVConstant>(GAR->getStepRecurrence(SE))) {
3802 const APInt &StepInt = StepRec->getAPInt();
3803 int64_t Step = StepInt.isNegative() ?
3804 StepInt.getSExtValue() : StepInt.getZExtValue();
3805
3806 for (int64_t Offset : Worklist) {
3807 Offset -= Step;
3808 GenerateOffset(G, Offset);
3809 }
3810 }
3811 }
Dan Gohman45774ce2010-02-12 10:34:29 +00003812 }
Sam Parker67756c02019-02-07 13:32:54 +00003813 for (int64_t Offset : Worklist)
3814 GenerateOffset(G, Offset);
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003815
3816 int64_t Imm = ExtractImmediate(G, SE);
3817 if (G->isZero() || Imm == 0)
3818 return;
3819 Formula F = Base;
3820 F.BaseOffset = (uint64_t)F.BaseOffset + Imm;
3821 if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy, F))
3822 return;
3823 if (IsScaledReg)
3824 F.ScaledReg = G;
3825 else
3826 F.BaseRegs[Idx] = G;
3827 (void)InsertFormula(LU, LUIdx, F);
Dan Gohman45774ce2010-02-12 10:34:29 +00003828}
3829
3830/// GenerateConstantOffsets - Generate reuse formulae using symbolic offsets.
3831void LSRInstance::GenerateConstantOffsets(LSRUse &LU, unsigned LUIdx,
3832 Formula Base) {
3833 // TODO: For now, just add the min and max offset, because it usually isn't
3834 // worthwhile looking at everything inbetween.
Dan Gohman4afd4122010-07-15 15:14:45 +00003835 SmallVector<int64_t, 2> Worklist;
Dan Gohman45774ce2010-02-12 10:34:29 +00003836 Worklist.push_back(LU.MinOffset);
3837 if (LU.MaxOffset != LU.MinOffset)
3838 Worklist.push_back(LU.MaxOffset);
3839
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003840 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i)
3841 GenerateConstantOffsetsImpl(LU, LUIdx, Base, Worklist, i);
3842 if (Base.Scale == 1)
3843 GenerateConstantOffsetsImpl(LU, LUIdx, Base, Worklist, /* Idx */ -1,
3844 /* IsScaledReg */ true);
Dan Gohman45774ce2010-02-12 10:34:29 +00003845}
3846
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003847/// For ICmpZero, check to see if we can scale up the comparison. For example, x
3848/// == y -> x*c == y*c.
Dan Gohman45774ce2010-02-12 10:34:29 +00003849void LSRInstance::GenerateICmpZeroScales(LSRUse &LU, unsigned LUIdx,
3850 Formula Base) {
3851 if (LU.Kind != LSRUse::ICmpZero) return;
3852
3853 // Determine the integer type for the base formula.
Chris Lattner229907c2011-07-18 04:54:35 +00003854 Type *IntTy = Base.getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00003855 if (!IntTy) return;
3856 if (SE.getTypeSizeInBits(IntTy) > 64) return;
3857
3858 // Don't do this if there is more than one offset.
3859 if (LU.MinOffset != LU.MaxOffset) return;
3860
Evgeny Stupachenko38197c62017-08-04 18:46:13 +00003861 // Check if transformation is valid. It is illegal to multiply pointer.
3862 if (Base.ScaledReg && Base.ScaledReg->getType()->isPointerTy())
3863 return;
3864 for (const SCEV *BaseReg : Base.BaseRegs)
3865 if (BaseReg->getType()->isPointerTy())
3866 return;
Chandler Carruth6e479322013-01-07 15:04:40 +00003867 assert(!Base.BaseGV && "ICmpZero use is not legal!");
Dan Gohman45774ce2010-02-12 10:34:29 +00003868
3869 // Check each interesting stride.
Craig Topper042a3922015-05-25 20:01:18 +00003870 for (int64_t Factor : Factors) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003871 // Check that the multiplication doesn't overflow.
Eugene Zelenko306d2992017-10-18 21:46:47 +00003872 if (Base.BaseOffset == std::numeric_limits<int64_t>::min() && Factor == -1)
Dan Gohman5f10d6c2010-02-17 00:41:53 +00003873 continue;
Chandler Carruth6e479322013-01-07 15:04:40 +00003874 int64_t NewBaseOffset = (uint64_t)Base.BaseOffset * Factor;
3875 if (NewBaseOffset / Factor != Base.BaseOffset)
Dan Gohman45774ce2010-02-12 10:34:29 +00003876 continue;
Andrew Trick429e9ed2014-02-26 16:31:56 +00003877 // If the offset will be truncated at this use, check that it is in bounds.
3878 if (!IntTy->isPointerTy() &&
3879 !ConstantInt::isValueValidForType(IntTy, NewBaseOffset))
3880 continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003881
3882 // Check that multiplying with the use offset doesn't overflow.
3883 int64_t Offset = LU.MinOffset;
Eugene Zelenko306d2992017-10-18 21:46:47 +00003884 if (Offset == std::numeric_limits<int64_t>::min() && Factor == -1)
Dan Gohman5f10d6c2010-02-17 00:41:53 +00003885 continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003886 Offset = (uint64_t)Offset * Factor;
Dan Gohman13ac3b22010-02-17 00:42:19 +00003887 if (Offset / Factor != LU.MinOffset)
Dan Gohman45774ce2010-02-12 10:34:29 +00003888 continue;
Andrew Trick429e9ed2014-02-26 16:31:56 +00003889 // If the offset will be truncated at this use, check that it is in bounds.
3890 if (!IntTy->isPointerTy() &&
3891 !ConstantInt::isValueValidForType(IntTy, Offset))
3892 continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00003893
Dan Gohman963b1c12010-06-24 16:57:52 +00003894 Formula F = Base;
Chandler Carruth6e479322013-01-07 15:04:40 +00003895 F.BaseOffset = NewBaseOffset;
Dan Gohman963b1c12010-06-24 16:57:52 +00003896
Dan Gohman45774ce2010-02-12 10:34:29 +00003897 // Check that this scale is legal.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003898 if (!isLegalUse(TTI, Offset, Offset, LU.Kind, LU.AccessTy, F))
Dan Gohman45774ce2010-02-12 10:34:29 +00003899 continue;
3900
3901 // Compensate for the use having MinOffset built into it.
Chandler Carruth6e479322013-01-07 15:04:40 +00003902 F.BaseOffset = (uint64_t)F.BaseOffset + Offset - LU.MinOffset;
Dan Gohman45774ce2010-02-12 10:34:29 +00003903
Dan Gohman1d2ded72010-05-03 22:09:21 +00003904 const SCEV *FactorS = SE.getConstant(IntTy, Factor);
Dan Gohman45774ce2010-02-12 10:34:29 +00003905
3906 // Check that multiplying with each base register doesn't overflow.
3907 for (size_t i = 0, e = F.BaseRegs.size(); i != e; ++i) {
3908 F.BaseRegs[i] = SE.getMulExpr(F.BaseRegs[i], FactorS);
Dan Gohman4eebb942010-02-19 19:35:48 +00003909 if (getExactSDiv(F.BaseRegs[i], FactorS, SE) != Base.BaseRegs[i])
Dan Gohman45774ce2010-02-12 10:34:29 +00003910 goto next;
3911 }
3912
3913 // Check that multiplying with the scaled register doesn't overflow.
3914 if (F.ScaledReg) {
3915 F.ScaledReg = SE.getMulExpr(F.ScaledReg, FactorS);
Dan Gohman4eebb942010-02-19 19:35:48 +00003916 if (getExactSDiv(F.ScaledReg, FactorS, SE) != Base.ScaledReg)
Dan Gohman45774ce2010-02-12 10:34:29 +00003917 continue;
3918 }
3919
Dan Gohman6136e942011-05-03 00:46:49 +00003920 // Check that multiplying with the unfolded offset doesn't overflow.
3921 if (F.UnfoldedOffset != 0) {
Eugene Zelenko306d2992017-10-18 21:46:47 +00003922 if (F.UnfoldedOffset == std::numeric_limits<int64_t>::min() &&
3923 Factor == -1)
Dan Gohman6c4a3192011-05-23 21:07:39 +00003924 continue;
Dan Gohman6136e942011-05-03 00:46:49 +00003925 F.UnfoldedOffset = (uint64_t)F.UnfoldedOffset * Factor;
3926 if (F.UnfoldedOffset / Factor != Base.UnfoldedOffset)
3927 continue;
Andrew Trick429e9ed2014-02-26 16:31:56 +00003928 // If the offset will be truncated, check that it is in bounds.
3929 if (!IntTy->isPointerTy() &&
3930 !ConstantInt::isValueValidForType(IntTy, F.UnfoldedOffset))
3931 continue;
Dan Gohman6136e942011-05-03 00:46:49 +00003932 }
3933
Dan Gohman45774ce2010-02-12 10:34:29 +00003934 // If we make it here and it's legal, add it.
3935 (void)InsertFormula(LU, LUIdx, F);
3936 next:;
3937 }
3938}
3939
Sanjoy Das94c4aec2015-08-16 18:22:46 +00003940/// Generate stride factor reuse formulae by making use of scaled-offset address
3941/// modes, for example.
Dan Gohmanab5fb7f2010-05-20 19:44:23 +00003942void LSRInstance::GenerateScales(LSRUse &LU, unsigned LUIdx, Formula Base) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003943 // Determine the integer type for the base formula.
Chris Lattner229907c2011-07-18 04:54:35 +00003944 Type *IntTy = Base.getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00003945 if (!IntTy) return;
3946
3947 // If this Formula already has a scaled register, we can't add another one.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003948 // Try to unscale the formula to generate a better scale.
Sanjoy Das302bfd02015-08-16 18:22:43 +00003949 if (Base.Scale != 0 && !Base.unscale())
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003950 return;
3951
Sanjoy Das302bfd02015-08-16 18:22:43 +00003952 assert(Base.Scale == 0 && "unscale did not did its job!");
Dan Gohman45774ce2010-02-12 10:34:29 +00003953
3954 // Check each interesting stride.
Craig Topper042a3922015-05-25 20:01:18 +00003955 for (int64_t Factor : Factors) {
Chandler Carruth6e479322013-01-07 15:04:40 +00003956 Base.Scale = Factor;
3957 Base.HasBaseReg = Base.BaseRegs.size() > 1;
Dan Gohman45774ce2010-02-12 10:34:29 +00003958 // Check whether this scale is going to be legal.
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003959 if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy,
3960 Base)) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003961 // As a special-case, handle special out-of-loop Basic users specially.
3962 // TODO: Reconsider this special case.
3963 if (LU.Kind == LSRUse::Basic &&
Chandler Carruth26c59fa2013-01-07 14:41:08 +00003964 isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LSRUse::Special,
3965 LU.AccessTy, Base) &&
Dan Gohman45774ce2010-02-12 10:34:29 +00003966 LU.AllFixupsOutsideLoop)
3967 LU.Kind = LSRUse::Special;
3968 else
3969 continue;
3970 }
3971 // For an ICmpZero, negating a solitary base register won't lead to
3972 // new solutions.
3973 if (LU.Kind == LSRUse::ICmpZero &&
Chandler Carruth6e479322013-01-07 15:04:40 +00003974 !Base.HasBaseReg && Base.BaseOffset == 0 && !Base.BaseGV)
Dan Gohman45774ce2010-02-12 10:34:29 +00003975 continue;
Wei Mi74d5a902017-02-22 21:47:08 +00003976 // For each addrec base reg, if its loop is current loop, apply the scale.
3977 for (size_t i = 0, e = Base.BaseRegs.size(); i != e; ++i) {
3978 const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(Base.BaseRegs[i]);
3979 if (AR && (AR->getLoop() == L || LU.AllFixupsOutsideLoop)) {
Dan Gohman1d2ded72010-05-03 22:09:21 +00003980 const SCEV *FactorS = SE.getConstant(IntTy, Factor);
Dan Gohman45774ce2010-02-12 10:34:29 +00003981 if (FactorS->isZero())
3982 continue;
3983 // Divide out the factor, ignoring high bits, since we'll be
3984 // scaling the value back up in the end.
Dan Gohman4eebb942010-02-19 19:35:48 +00003985 if (const SCEV *Quotient = getExactSDiv(AR, FactorS, SE, true)) {
Dan Gohman45774ce2010-02-12 10:34:29 +00003986 // TODO: This could be optimized to avoid all the copying.
3987 Formula F = Base;
3988 F.ScaledReg = Quotient;
Sanjoy Das302bfd02015-08-16 18:22:43 +00003989 F.deleteBaseReg(F.BaseRegs[i]);
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003990 // The canonical representation of 1*reg is reg, which is already in
3991 // Base. In that case, do not try to insert the formula, it will be
3992 // rejected anyway.
Wei Mi74d5a902017-02-22 21:47:08 +00003993 if (F.Scale == 1 && (F.BaseRegs.empty() ||
3994 (AR->getLoop() != L && LU.AllFixupsOutsideLoop)))
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00003995 continue;
Wei Mi74d5a902017-02-22 21:47:08 +00003996 // If AllFixupsOutsideLoop is true and F.Scale is 1, we may generate
3997 // non canonical Formula with ScaledReg's loop not being L.
3998 if (F.Scale == 1 && LU.AllFixupsOutsideLoop)
3999 F.canonicalize(*L);
Dan Gohman45774ce2010-02-12 10:34:29 +00004000 (void)InsertFormula(LU, LUIdx, F);
4001 }
4002 }
Wei Mi74d5a902017-02-22 21:47:08 +00004003 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004004 }
4005}
4006
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004007/// Generate reuse formulae from different IV types.
Dan Gohmanab5fb7f2010-05-20 19:44:23 +00004008void LSRInstance::GenerateTruncates(LSRUse &LU, unsigned LUIdx, Formula Base) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004009 // Don't bother truncating symbolic values.
Chandler Carruth6e479322013-01-07 15:04:40 +00004010 if (Base.BaseGV) return;
Dan Gohman45774ce2010-02-12 10:34:29 +00004011
4012 // Determine the integer type for the base formula.
Chris Lattner229907c2011-07-18 04:54:35 +00004013 Type *DstTy = Base.getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00004014 if (!DstTy) return;
4015 DstTy = SE.getEffectiveSCEVType(DstTy);
4016
Craig Topper042a3922015-05-25 20:01:18 +00004017 for (Type *SrcTy : Types) {
Chandler Carruth26c59fa2013-01-07 14:41:08 +00004018 if (SrcTy != DstTy && TTI.isTruncateFree(SrcTy, DstTy)) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004019 Formula F = Base;
4020
Max Kazantsevd5e595b2019-02-05 04:30:37 +00004021 // Sometimes SCEV is able to prove zero during ext transform. It may
4022 // happen if SCEV did not do all possible transforms while creating the
4023 // initial node (maybe due to depth limitations), but it can do them while
4024 // taking ext.
4025 if (F.ScaledReg) {
4026 const SCEV *NewScaledReg = SE.getAnyExtendExpr(F.ScaledReg, SrcTy);
4027 if (NewScaledReg->isZero())
4028 continue;
4029 F.ScaledReg = NewScaledReg;
4030 }
4031 bool HasZeroBaseReg = false;
4032 for (const SCEV *&BaseReg : F.BaseRegs) {
4033 const SCEV *NewBaseReg = SE.getAnyExtendExpr(BaseReg, SrcTy);
4034 if (NewBaseReg->isZero()) {
4035 HasZeroBaseReg = true;
4036 break;
4037 }
4038 BaseReg = NewBaseReg;
4039 }
4040 if (HasZeroBaseReg)
4041 continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00004042
4043 // TODO: This assumes we've done basic processing on all uses and
4044 // have an idea what the register usage is.
4045 if (!F.hasRegsUsedByUsesOtherThan(LUIdx, RegUses))
4046 continue;
4047
Wei Mi8848c1e2017-05-18 17:21:22 +00004048 F.canonicalize(*L);
Dan Gohman45774ce2010-02-12 10:34:29 +00004049 (void)InsertFormula(LU, LUIdx, F);
4050 }
4051 }
4052}
4053
4054namespace {
4055
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004056/// Helper class for GenerateCrossUseConstantOffsets. It's used to defer
4057/// modifications so that the search phase doesn't have to worry about the data
4058/// structures moving underneath it.
Dan Gohman45774ce2010-02-12 10:34:29 +00004059struct WorkItem {
4060 size_t LUIdx;
4061 int64_t Imm;
4062 const SCEV *OrigReg;
4063
4064 WorkItem(size_t LI, int64_t I, const SCEV *R)
Eugene Zelenko306d2992017-10-18 21:46:47 +00004065 : LUIdx(LI), Imm(I), OrigReg(R) {}
Dan Gohman45774ce2010-02-12 10:34:29 +00004066
4067 void print(raw_ostream &OS) const;
4068 void dump() const;
4069};
4070
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +00004071} // end anonymous namespace
Dan Gohman45774ce2010-02-12 10:34:29 +00004072
Aaron Ballman615eb472017-10-15 14:32:27 +00004073#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohman45774ce2010-02-12 10:34:29 +00004074void WorkItem::print(raw_ostream &OS) const {
4075 OS << "in formulae referencing " << *OrigReg << " in use " << LUIdx
4076 << " , add offset " << Imm;
4077}
4078
Matthias Braun8c209aa2017-01-28 02:02:38 +00004079LLVM_DUMP_METHOD void WorkItem::dump() const {
Dan Gohman45774ce2010-02-12 10:34:29 +00004080 print(errs()); errs() << '\n';
4081}
Matthias Braun8c209aa2017-01-28 02:02:38 +00004082#endif
Dan Gohman45774ce2010-02-12 10:34:29 +00004083
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004084/// Look for registers which are a constant distance apart and try to form reuse
4085/// opportunities between them.
Dan Gohman45774ce2010-02-12 10:34:29 +00004086void LSRInstance::GenerateCrossUseConstantOffsets() {
4087 // Group the registers by their value without any added constant offset.
Eugene Zelenko306d2992017-10-18 21:46:47 +00004088 using ImmMapTy = std::map<int64_t, const SCEV *>;
4089
Craig Topper042a3922015-05-25 20:01:18 +00004090 DenseMap<const SCEV *, ImmMapTy> Map;
Dan Gohman45774ce2010-02-12 10:34:29 +00004091 DenseMap<const SCEV *, SmallBitVector> UsedByIndicesMap;
4092 SmallVector<const SCEV *, 8> Sequence;
Craig Topper042a3922015-05-25 20:01:18 +00004093 for (const SCEV *Use : RegUses) {
4094 const SCEV *Reg = Use; // Make a copy for ExtractImmediate to modify.
Dan Gohman45774ce2010-02-12 10:34:29 +00004095 int64_t Imm = ExtractImmediate(Reg, SE);
Craig Topper042a3922015-05-25 20:01:18 +00004096 auto Pair = Map.insert(std::make_pair(Reg, ImmMapTy()));
Dan Gohman45774ce2010-02-12 10:34:29 +00004097 if (Pair.second)
4098 Sequence.push_back(Reg);
Craig Topper042a3922015-05-25 20:01:18 +00004099 Pair.first->second.insert(std::make_pair(Imm, Use));
4100 UsedByIndicesMap[Reg] |= RegUses.getUsedByIndices(Use);
Dan Gohman45774ce2010-02-12 10:34:29 +00004101 }
4102
4103 // Now examine each set of registers with the same base value. Build up
4104 // a list of work to do and do the work in a separate step so that we're
4105 // not adding formulae and register counts while we're searching.
Dan Gohman110ed642010-09-01 01:45:53 +00004106 SmallVector<WorkItem, 32> WorkItems;
4107 SmallSet<std::pair<size_t, int64_t>, 32> UniqueItems;
Craig Topper042a3922015-05-25 20:01:18 +00004108 for (const SCEV *Reg : Sequence) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004109 const ImmMapTy &Imms = Map.find(Reg)->second;
4110
Dan Gohman363f8472010-02-12 19:20:37 +00004111 // It's not worthwhile looking for reuse if there's only one offset.
4112 if (Imms.size() == 1)
4113 continue;
4114
Nicola Zaghend34e60c2018-05-14 12:53:11 +00004115 LLVM_DEBUG(dbgs() << "Generating cross-use offsets for " << *Reg << ':';
4116 for (const auto &Entry
4117 : Imms) dbgs()
4118 << ' ' << Entry.first;
4119 dbgs() << '\n');
Dan Gohman45774ce2010-02-12 10:34:29 +00004120
4121 // Examine each offset.
4122 for (ImmMapTy::const_iterator J = Imms.begin(), JE = Imms.end();
4123 J != JE; ++J) {
4124 const SCEV *OrigReg = J->second;
4125
4126 int64_t JImm = J->first;
4127 const SmallBitVector &UsedByIndices = RegUses.getUsedByIndices(OrigReg);
4128
4129 if (!isa<SCEVConstant>(OrigReg) &&
4130 UsedByIndicesMap[Reg].count() == 1) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00004131 LLVM_DEBUG(dbgs() << "Skipping cross-use reuse for " << *OrigReg
4132 << '\n');
Dan Gohman45774ce2010-02-12 10:34:29 +00004133 continue;
4134 }
4135
4136 // Conservatively examine offsets between this orig reg a few selected
4137 // other orig regs.
4138 ImmMapTy::const_iterator OtherImms[] = {
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00004139 Imms.begin(), std::prev(Imms.end()),
4140 Imms.lower_bound((Imms.begin()->first + std::prev(Imms.end())->first) /
4141 2)
Dan Gohman45774ce2010-02-12 10:34:29 +00004142 };
4143 for (size_t i = 0, e = array_lengthof(OtherImms); i != e; ++i) {
4144 ImmMapTy::const_iterator M = OtherImms[i];
Dan Gohman363f8472010-02-12 19:20:37 +00004145 if (M == J || M == JE) continue;
Dan Gohman45774ce2010-02-12 10:34:29 +00004146
4147 // Compute the difference between the two.
4148 int64_t Imm = (uint64_t)JImm - M->first;
Francis Visoiu Mistrihb52e0362017-05-17 01:07:53 +00004149 for (unsigned LUIdx : UsedByIndices.set_bits())
Dan Gohman45774ce2010-02-12 10:34:29 +00004150 // Make a memo of this use, offset, and register tuple.
David Blaikie70573dc2014-11-19 07:49:26 +00004151 if (UniqueItems.insert(std::make_pair(LUIdx, Imm)).second)
Dan Gohman110ed642010-09-01 01:45:53 +00004152 WorkItems.push_back(WorkItem(LUIdx, Imm, OrigReg));
Evan Cheng85a9f432009-11-12 07:35:05 +00004153 }
4154 }
4155 }
4156
Dan Gohman45774ce2010-02-12 10:34:29 +00004157 Map.clear();
4158 Sequence.clear();
4159 UsedByIndicesMap.clear();
Dan Gohman110ed642010-09-01 01:45:53 +00004160 UniqueItems.clear();
Dan Gohman45774ce2010-02-12 10:34:29 +00004161
4162 // Now iterate through the worklist and add new formulae.
Craig Topper042a3922015-05-25 20:01:18 +00004163 for (const WorkItem &WI : WorkItems) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004164 size_t LUIdx = WI.LUIdx;
4165 LSRUse &LU = Uses[LUIdx];
4166 int64_t Imm = WI.Imm;
4167 const SCEV *OrigReg = WI.OrigReg;
4168
Chris Lattner229907c2011-07-18 04:54:35 +00004169 Type *IntTy = SE.getEffectiveSCEVType(OrigReg->getType());
Dan Gohman45774ce2010-02-12 10:34:29 +00004170 const SCEV *NegImmS = SE.getSCEV(ConstantInt::get(IntTy, -(uint64_t)Imm));
4171 unsigned BitWidth = SE.getTypeSizeInBits(IntTy);
4172
Dan Gohman8b0a4192010-03-01 17:49:51 +00004173 // TODO: Use a more targeted data structure.
Dan Gohman45774ce2010-02-12 10:34:29 +00004174 for (size_t L = 0, LE = LU.Formulae.size(); L != LE; ++L) {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00004175 Formula F = LU.Formulae[L];
4176 // FIXME: The code for the scaled and unscaled registers looks
4177 // very similar but slightly different. Investigate if they
4178 // could be merged. That way, we would not have to unscale the
4179 // Formula.
Sanjoy Das302bfd02015-08-16 18:22:43 +00004180 F.unscale();
Dan Gohman45774ce2010-02-12 10:34:29 +00004181 // Use the immediate in the scaled register.
4182 if (F.ScaledReg == OrigReg) {
Chandler Carruth6e479322013-01-07 15:04:40 +00004183 int64_t Offset = (uint64_t)F.BaseOffset + Imm * (uint64_t)F.Scale;
Dan Gohman45774ce2010-02-12 10:34:29 +00004184 // Don't create 50 + reg(-50).
4185 if (F.referencesReg(SE.getSCEV(
Chandler Carruth6e479322013-01-07 15:04:40 +00004186 ConstantInt::get(IntTy, -(uint64_t)Offset))))
Dan Gohman45774ce2010-02-12 10:34:29 +00004187 continue;
4188 Formula NewF = F;
Chandler Carruth6e479322013-01-07 15:04:40 +00004189 NewF.BaseOffset = Offset;
Chandler Carruth26c59fa2013-01-07 14:41:08 +00004190 if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy,
4191 NewF))
Dan Gohman45774ce2010-02-12 10:34:29 +00004192 continue;
4193 NewF.ScaledReg = SE.getAddExpr(NegImmS, NewF.ScaledReg);
4194
4195 // If the new scale is a constant in a register, and adding the constant
4196 // value to the immediate would produce a value closer to zero than the
4197 // immediate itself, then the formula isn't worthwhile.
4198 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(NewF.ScaledReg))
Sanjoy Das0de2fec2015-12-17 20:28:46 +00004199 if (C->getValue()->isNegative() != (NewF.BaseOffset < 0) &&
4200 (C->getAPInt().abs() * APInt(BitWidth, F.Scale))
4201 .ule(std::abs(NewF.BaseOffset)))
Dan Gohman45774ce2010-02-12 10:34:29 +00004202 continue;
4203
4204 // OK, looks good.
Wei Mi74d5a902017-02-22 21:47:08 +00004205 NewF.canonicalize(*this->L);
Dan Gohman45774ce2010-02-12 10:34:29 +00004206 (void)InsertFormula(LU, LUIdx, NewF);
4207 } else {
4208 // Use the immediate in a base register.
4209 for (size_t N = 0, NE = F.BaseRegs.size(); N != NE; ++N) {
4210 const SCEV *BaseReg = F.BaseRegs[N];
4211 if (BaseReg != OrigReg)
4212 continue;
4213 Formula NewF = F;
Chandler Carruth6e479322013-01-07 15:04:40 +00004214 NewF.BaseOffset = (uint64_t)NewF.BaseOffset + Imm;
Chandler Carruth26c59fa2013-01-07 14:41:08 +00004215 if (!isLegalUse(TTI, LU.MinOffset, LU.MaxOffset,
4216 LU.Kind, LU.AccessTy, NewF)) {
Krzysztof Parzyszek0b377e02018-03-26 13:10:09 +00004217 if (TTI.shouldFavorPostInc() &&
4218 mayUsePostIncMode(TTI, LU, OrigReg, this->L, SE))
4219 continue;
Chandler Carruth26c59fa2013-01-07 14:41:08 +00004220 if (!TTI.isLegalAddImmediate((uint64_t)NewF.UnfoldedOffset + Imm))
Dan Gohman6136e942011-05-03 00:46:49 +00004221 continue;
4222 NewF = F;
4223 NewF.UnfoldedOffset = (uint64_t)NewF.UnfoldedOffset + Imm;
4224 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004225 NewF.BaseRegs[N] = SE.getAddExpr(NegImmS, BaseReg);
4226
4227 // If the new formula has a constant in a register, and adding the
4228 // constant value to the immediate would produce a value closer to
4229 // zero than the immediate itself, then the formula isn't worthwhile.
Craig Topper10949ae2015-05-23 08:45:10 +00004230 for (const SCEV *NewReg : NewF.BaseRegs)
4231 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(NewReg))
Sanjoy Das0de2fec2015-12-17 20:28:46 +00004232 if ((C->getAPInt() + NewF.BaseOffset)
4233 .abs()
4234 .slt(std::abs(NewF.BaseOffset)) &&
4235 (C->getAPInt() + NewF.BaseOffset).countTrailingZeros() >=
4236 countTrailingZeros<uint64_t>(NewF.BaseOffset))
Dan Gohman45774ce2010-02-12 10:34:29 +00004237 goto skip_formula;
4238
4239 // Ok, looks good.
Wei Mi74d5a902017-02-22 21:47:08 +00004240 NewF.canonicalize(*this->L);
Dan Gohman45774ce2010-02-12 10:34:29 +00004241 (void)InsertFormula(LU, LUIdx, NewF);
4242 break;
4243 skip_formula:;
4244 }
4245 }
4246 }
4247 }
Dale Johannesen02cb2bf2009-05-11 17:15:42 +00004248}
4249
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004250/// Generate formulae for each use.
Dan Gohman45774ce2010-02-12 10:34:29 +00004251void
4252LSRInstance::GenerateAllReuseFormulae() {
Dan Gohman521efe62010-02-16 01:42:53 +00004253 // This is split into multiple loops so that hasRegsUsedByUsesOtherThan
Dan Gohman45774ce2010-02-12 10:34:29 +00004254 // queries are more precise.
4255 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
4256 LSRUse &LU = Uses[LUIdx];
4257 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
4258 GenerateReassociations(LU, LUIdx, LU.Formulae[i]);
4259 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
4260 GenerateCombinations(LU, LUIdx, LU.Formulae[i]);
4261 }
4262 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
4263 LSRUse &LU = Uses[LUIdx];
4264 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
4265 GenerateSymbolicOffsets(LU, LUIdx, LU.Formulae[i]);
4266 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
4267 GenerateConstantOffsets(LU, LUIdx, LU.Formulae[i]);
4268 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
4269 GenerateICmpZeroScales(LU, LUIdx, LU.Formulae[i]);
4270 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
4271 GenerateScales(LU, LUIdx, LU.Formulae[i]);
Dan Gohman521efe62010-02-16 01:42:53 +00004272 }
4273 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
4274 LSRUse &LU = Uses[LUIdx];
Dan Gohman45774ce2010-02-12 10:34:29 +00004275 for (size_t i = 0, f = LU.Formulae.size(); i != f; ++i)
4276 GenerateTruncates(LU, LUIdx, LU.Formulae[i]);
4277 }
4278
4279 GenerateCrossUseConstantOffsets();
Dan Gohmanbf673e02010-08-29 15:21:38 +00004280
Nicola Zaghend34e60c2018-05-14 12:53:11 +00004281 LLVM_DEBUG(dbgs() << "\n"
4282 "After generating reuse formulae:\n";
4283 print_uses(dbgs()));
Dan Gohman45774ce2010-02-12 10:34:29 +00004284}
4285
Dan Gohman1b61fd92010-10-07 23:43:09 +00004286/// If there are multiple formulae with the same set of registers used
Dan Gohman45774ce2010-02-12 10:34:29 +00004287/// by other uses, pick the best one and delete the others.
4288void LSRInstance::FilterOutUndesirableDedicatedRegisters() {
Dan Gohman5947e162010-10-07 23:52:18 +00004289 DenseSet<const SCEV *> VisitedRegs;
4290 SmallPtrSet<const SCEV *, 16> Regs;
Andrew Trick5df90962011-12-06 03:13:31 +00004291 SmallPtrSet<const SCEV *, 16> LoserRegs;
Dan Gohman45774ce2010-02-12 10:34:29 +00004292#ifndef NDEBUG
Dan Gohman4c4043c2010-05-20 20:05:31 +00004293 bool ChangedFormulae = false;
Dan Gohman45774ce2010-02-12 10:34:29 +00004294#endif
4295
4296 // Collect the best formula for each unique set of shared registers. This
4297 // is reset for each use.
Eugene Zelenko306d2992017-10-18 21:46:47 +00004298 using BestFormulaeTy =
4299 DenseMap<SmallVector<const SCEV *, 4>, size_t, UniquifierDenseMapInfo>;
4300
Dan Gohman45774ce2010-02-12 10:34:29 +00004301 BestFormulaeTy BestFormulae;
4302
4303 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
4304 LSRUse &LU = Uses[LUIdx];
Nicola Zaghend34e60c2018-05-14 12:53:11 +00004305 LLVM_DEBUG(dbgs() << "Filtering for use "; LU.print(dbgs());
4306 dbgs() << '\n');
Dan Gohman45774ce2010-02-12 10:34:29 +00004307
Dan Gohman4cf99b52010-05-18 23:42:37 +00004308 bool Any = false;
Dan Gohman45774ce2010-02-12 10:34:29 +00004309 for (size_t FIdx = 0, NumForms = LU.Formulae.size();
4310 FIdx != NumForms; ++FIdx) {
4311 Formula &F = LU.Formulae[FIdx];
4312
Andrew Trick5df90962011-12-06 03:13:31 +00004313 // Some formulas are instant losers. For example, they may depend on
4314 // nonexistent AddRecs from other loops. These need to be filtered
4315 // immediately, otherwise heuristics could choose them over others leading
4316 // to an unsatisfactory solution. Passing LoserRegs into RateFormula here
4317 // avoids the need to recompute this information across formulae using the
4318 // same bad AddRec. Passing LoserRegs is also essential unless we remove
4319 // the corresponding bad register from the Regs set.
Sam Parkereb0b8012019-03-14 11:05:07 +00004320 Cost CostF(L, SE, DT, TTI);
Andrew Trick5df90962011-12-06 03:13:31 +00004321 Regs.clear();
Sam Parkereb0b8012019-03-14 11:05:07 +00004322 CostF.RateFormula(F, Regs, VisitedRegs, LU, &LoserRegs);
Andrew Trick5df90962011-12-06 03:13:31 +00004323 if (CostF.isLoser()) {
4324 // During initial formula generation, undesirable formulae are generated
4325 // by uses within other loops that have some non-trivial address mode or
4326 // use the postinc form of the IV. LSR needs to provide these formulae
4327 // as the basis of rediscovering the desired formula that uses an AddRec
4328 // corresponding to the existing phi. Once all formulae have been
4329 // generated, these initial losers may be pruned.
Nicola Zaghend34e60c2018-05-14 12:53:11 +00004330 LLVM_DEBUG(dbgs() << " Filtering loser "; F.print(dbgs());
4331 dbgs() << "\n");
Dan Gohman45774ce2010-02-12 10:34:29 +00004332 }
Andrew Trick5df90962011-12-06 03:13:31 +00004333 else {
Preston Gurd25c3b6a2013-02-01 20:41:27 +00004334 SmallVector<const SCEV *, 4> Key;
Craig Topper77b99412015-05-23 08:01:41 +00004335 for (const SCEV *Reg : F.BaseRegs) {
Andrew Trick5df90962011-12-06 03:13:31 +00004336 if (RegUses.isRegUsedByUsesOtherThan(Reg, LUIdx))
4337 Key.push_back(Reg);
4338 }
4339 if (F.ScaledReg &&
4340 RegUses.isRegUsedByUsesOtherThan(F.ScaledReg, LUIdx))
4341 Key.push_back(F.ScaledReg);
4342 // Unstable sort by host order ok, because this is only used for
4343 // uniquifying.
Fangrui Song0cac7262018-09-27 02:13:45 +00004344 llvm::sort(Key);
Dan Gohman45774ce2010-02-12 10:34:29 +00004345
Andrew Trick5df90962011-12-06 03:13:31 +00004346 std::pair<BestFormulaeTy::const_iterator, bool> P =
4347 BestFormulae.insert(std::make_pair(Key, FIdx));
4348 if (P.second)
4349 continue;
4350
Dan Gohman45774ce2010-02-12 10:34:29 +00004351 Formula &Best = LU.Formulae[P.first->second];
Dan Gohman5947e162010-10-07 23:52:18 +00004352
Sam Parkereb0b8012019-03-14 11:05:07 +00004353 Cost CostBest(L, SE, DT, TTI);
Dan Gohman5947e162010-10-07 23:52:18 +00004354 Regs.clear();
Sam Parkereb0b8012019-03-14 11:05:07 +00004355 CostBest.RateFormula(Best, Regs, VisitedRegs, LU);
4356 if (CostF.isLess(CostBest))
Dan Gohman45774ce2010-02-12 10:34:29 +00004357 std::swap(F, Best);
Nicola Zaghend34e60c2018-05-14 12:53:11 +00004358 LLVM_DEBUG(dbgs() << " Filtering out formula "; F.print(dbgs());
4359 dbgs() << "\n"
4360 " in favor of formula ";
4361 Best.print(dbgs()); dbgs() << '\n');
Dan Gohman45774ce2010-02-12 10:34:29 +00004362 }
Andrew Trick5df90962011-12-06 03:13:31 +00004363#ifndef NDEBUG
4364 ChangedFormulae = true;
4365#endif
4366 LU.DeleteFormula(F);
4367 --FIdx;
4368 --NumForms;
4369 Any = true;
Dan Gohmand0800242010-05-07 23:36:59 +00004370 }
4371
Dan Gohmanbeebef42010-05-18 23:55:57 +00004372 // Now that we've filtered out some formulae, recompute the Regs set.
Dan Gohman4cf99b52010-05-18 23:42:37 +00004373 if (Any)
4374 LU.RecomputeRegs(LUIdx, RegUses);
Dan Gohmand0800242010-05-07 23:36:59 +00004375
4376 // Reset this to prepare for the next use.
Dan Gohman45774ce2010-02-12 10:34:29 +00004377 BestFormulae.clear();
4378 }
4379
Nicola Zaghend34e60c2018-05-14 12:53:11 +00004380 LLVM_DEBUG(if (ChangedFormulae) {
4381 dbgs() << "\n"
4382 "After filtering out undesirable candidates:\n";
4383 print_uses(dbgs());
4384 });
Dan Gohman45774ce2010-02-12 10:34:29 +00004385}
4386
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004387/// Estimate the worst-case number of solutions the solver might have to
4388/// consider. It almost never considers this many solutions because it prune the
4389/// search space, but the pruning isn't always sufficient.
Dan Gohmana4eca052010-05-18 22:51:59 +00004390size_t LSRInstance::EstimateSearchSpaceComplexity() const {
Dan Gohman49d638b2010-10-07 23:37:58 +00004391 size_t Power = 1;
Craig Topper10949ae2015-05-23 08:45:10 +00004392 for (const LSRUse &LU : Uses) {
4393 size_t FSize = LU.Formulae.size();
Dan Gohmana4eca052010-05-18 22:51:59 +00004394 if (FSize >= ComplexityLimit) {
4395 Power = ComplexityLimit;
4396 break;
4397 }
4398 Power *= FSize;
4399 if (Power >= ComplexityLimit)
4400 break;
4401 }
4402 return Power;
4403}
4404
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004405/// When one formula uses a superset of the registers of another formula, it
4406/// won't help reduce register pressure (though it may not necessarily hurt
4407/// register pressure); remove it to simplify the system.
Dan Gohmane9e08732010-08-29 16:09:42 +00004408void LSRInstance::NarrowSearchSpaceByDetectingSupersets() {
Dan Gohman20fab452010-05-19 23:43:12 +00004409 if (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00004410 LLVM_DEBUG(dbgs() << "The search space is too complex.\n");
Dan Gohman20fab452010-05-19 23:43:12 +00004411
Nicola Zaghend34e60c2018-05-14 12:53:11 +00004412 LLVM_DEBUG(dbgs() << "Narrowing the search space by eliminating formulae "
4413 "which use a superset of registers used by other "
4414 "formulae.\n");
Dan Gohman20fab452010-05-19 23:43:12 +00004415
4416 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
4417 LSRUse &LU = Uses[LUIdx];
4418 bool Any = false;
4419 for (size_t i = 0, e = LU.Formulae.size(); i != e; ++i) {
4420 Formula &F = LU.Formulae[i];
Dan Gohman8ec018c2010-05-20 20:00:41 +00004421 // Look for a formula with a constant or GV in a register. If the use
4422 // also has a formula with that same value in an immediate field,
4423 // delete the one that uses a register.
Dan Gohman20fab452010-05-19 23:43:12 +00004424 for (SmallVectorImpl<const SCEV *>::const_iterator
4425 I = F.BaseRegs.begin(), E = F.BaseRegs.end(); I != E; ++I) {
4426 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(*I)) {
4427 Formula NewF = F;
Chandler Carruth6e479322013-01-07 15:04:40 +00004428 NewF.BaseOffset += C->getValue()->getSExtValue();
Dan Gohman20fab452010-05-19 23:43:12 +00004429 NewF.BaseRegs.erase(NewF.BaseRegs.begin() +
4430 (I - F.BaseRegs.begin()));
4431 if (LU.HasFormulaWithSameRegs(NewF)) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00004432 LLVM_DEBUG(dbgs() << " Deleting "; F.print(dbgs());
4433 dbgs() << '\n');
Dan Gohman20fab452010-05-19 23:43:12 +00004434 LU.DeleteFormula(F);
4435 --i;
4436 --e;
4437 Any = true;
4438 break;
4439 }
4440 } else if (const SCEVUnknown *U = dyn_cast<SCEVUnknown>(*I)) {
4441 if (GlobalValue *GV = dyn_cast<GlobalValue>(U->getValue()))
Chandler Carruth6e479322013-01-07 15:04:40 +00004442 if (!F.BaseGV) {
Dan Gohman20fab452010-05-19 23:43:12 +00004443 Formula NewF = F;
Chandler Carruth6e479322013-01-07 15:04:40 +00004444 NewF.BaseGV = GV;
Dan Gohman20fab452010-05-19 23:43:12 +00004445 NewF.BaseRegs.erase(NewF.BaseRegs.begin() +
4446 (I - F.BaseRegs.begin()));
4447 if (LU.HasFormulaWithSameRegs(NewF)) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00004448 LLVM_DEBUG(dbgs() << " Deleting "; F.print(dbgs());
4449 dbgs() << '\n');
Dan Gohman20fab452010-05-19 23:43:12 +00004450 LU.DeleteFormula(F);
4451 --i;
4452 --e;
4453 Any = true;
4454 break;
4455 }
4456 }
4457 }
4458 }
4459 }
4460 if (Any)
4461 LU.RecomputeRegs(LUIdx, RegUses);
4462 }
4463
Nicola Zaghend34e60c2018-05-14 12:53:11 +00004464 LLVM_DEBUG(dbgs() << "After pre-selection:\n"; print_uses(dbgs()));
Dan Gohman20fab452010-05-19 23:43:12 +00004465 }
Dan Gohmane9e08732010-08-29 16:09:42 +00004466}
Dan Gohman20fab452010-05-19 23:43:12 +00004467
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004468/// When there are many registers for expressions like A, A+1, A+2, etc.,
4469/// allocate a single register for them.
Dan Gohmane9e08732010-08-29 16:09:42 +00004470void LSRInstance::NarrowSearchSpaceByCollapsingUnrolledCode() {
Sam Parker67756c02019-02-07 13:32:54 +00004471 if (EstimateSearchSpaceComplexity() < ComplexityLimit)
Jakub Staszak11bd8352013-02-16 16:08:15 +00004472 return;
Dan Gohman20fab452010-05-19 23:43:12 +00004473
Nicola Zaghend34e60c2018-05-14 12:53:11 +00004474 LLVM_DEBUG(
4475 dbgs() << "The search space is too complex.\n"
4476 "Narrowing the search space by assuming that uses separated "
4477 "by a constant offset will use the same registers.\n");
Dan Gohman20fab452010-05-19 23:43:12 +00004478
Jakub Staszak11bd8352013-02-16 16:08:15 +00004479 // This is especially useful for unrolled loops.
Dan Gohman8ec018c2010-05-20 20:00:41 +00004480
Jakub Staszak11bd8352013-02-16 16:08:15 +00004481 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
4482 LSRUse &LU = Uses[LUIdx];
Craig Topper77b99412015-05-23 08:01:41 +00004483 for (const Formula &F : LU.Formulae) {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00004484 if (F.BaseOffset == 0 || (F.Scale != 0 && F.Scale != 1))
Jakub Staszak11bd8352013-02-16 16:08:15 +00004485 continue;
Dan Gohman20fab452010-05-19 23:43:12 +00004486
Jakub Staszak11bd8352013-02-16 16:08:15 +00004487 LSRUse *LUThatHas = FindUseWithSimilarFormula(F, LU);
4488 if (!LUThatHas)
4489 continue;
Dan Gohman20fab452010-05-19 23:43:12 +00004490
Jakub Staszak11bd8352013-02-16 16:08:15 +00004491 if (!reconcileNewOffset(*LUThatHas, F.BaseOffset, /*HasBaseReg=*/ false,
4492 LU.Kind, LU.AccessTy))
4493 continue;
Dan Gohman110ed642010-09-01 01:45:53 +00004494
Nicola Zaghend34e60c2018-05-14 12:53:11 +00004495 LLVM_DEBUG(dbgs() << " Deleting use "; LU.print(dbgs()); dbgs() << '\n');
Dan Gohman2fd85d72010-10-08 19:33:26 +00004496
Jakub Staszak11bd8352013-02-16 16:08:15 +00004497 LUThatHas->AllFixupsOutsideLoop &= LU.AllFixupsOutsideLoop;
4498
Jonas Paulsson7a794222016-08-17 13:24:19 +00004499 // Transfer the fixups of LU to LUThatHas.
4500 for (LSRFixup &Fixup : LU.Fixups) {
4501 Fixup.Offset += F.BaseOffset;
4502 LUThatHas->pushFixup(Fixup);
Nicola Zaghend34e60c2018-05-14 12:53:11 +00004503 LLVM_DEBUG(dbgs() << "New fixup has offset " << Fixup.Offset << '\n');
Jakub Staszak11bd8352013-02-16 16:08:15 +00004504 }
Matt Arsenault3e268cc2017-12-11 21:38:43 +00004505
Jakub Staszak11bd8352013-02-16 16:08:15 +00004506 // Delete formulae from the new use which are no longer legal.
4507 bool Any = false;
4508 for (size_t i = 0, e = LUThatHas->Formulae.size(); i != e; ++i) {
4509 Formula &F = LUThatHas->Formulae[i];
4510 if (!isLegalUse(TTI, LUThatHas->MinOffset, LUThatHas->MaxOffset,
4511 LUThatHas->Kind, LUThatHas->AccessTy, F)) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00004512 LLVM_DEBUG(dbgs() << " Deleting "; F.print(dbgs()); dbgs() << '\n');
Jakub Staszak11bd8352013-02-16 16:08:15 +00004513 LUThatHas->DeleteFormula(F);
4514 --i;
4515 --e;
4516 Any = true;
Dan Gohman20fab452010-05-19 23:43:12 +00004517 }
4518 }
Dan Gohman20fab452010-05-19 23:43:12 +00004519
Jakub Staszak11bd8352013-02-16 16:08:15 +00004520 if (Any)
4521 LUThatHas->RecomputeRegs(LUThatHas - &Uses.front(), RegUses);
4522
4523 // Delete the old use.
4524 DeleteUse(LU, LUIdx);
4525 --LUIdx;
4526 --NumUses;
4527 break;
4528 }
Dan Gohman20fab452010-05-19 23:43:12 +00004529 }
Jakub Staszak11bd8352013-02-16 16:08:15 +00004530
Nicola Zaghend34e60c2018-05-14 12:53:11 +00004531 LLVM_DEBUG(dbgs() << "After pre-selection:\n"; print_uses(dbgs()));
Dan Gohmane9e08732010-08-29 16:09:42 +00004532}
Dan Gohman20fab452010-05-19 23:43:12 +00004533
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004534/// Call FilterOutUndesirableDedicatedRegisters again, if necessary, now that
Dan Gohman002ff892010-08-29 16:39:22 +00004535/// we've done more filtering, as it may be able to find more formulae to
4536/// eliminate.
4537void LSRInstance::NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters(){
4538 if (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00004539 LLVM_DEBUG(dbgs() << "The search space is too complex.\n");
Dan Gohman002ff892010-08-29 16:39:22 +00004540
Nicola Zaghend34e60c2018-05-14 12:53:11 +00004541 LLVM_DEBUG(dbgs() << "Narrowing the search space by re-filtering out "
4542 "undesirable dedicated registers.\n");
Dan Gohman002ff892010-08-29 16:39:22 +00004543
4544 FilterOutUndesirableDedicatedRegisters();
4545
Nicola Zaghend34e60c2018-05-14 12:53:11 +00004546 LLVM_DEBUG(dbgs() << "After pre-selection:\n"; print_uses(dbgs()));
Dan Gohman002ff892010-08-29 16:39:22 +00004547 }
4548}
4549
Wei Mi90707392017-07-06 15:52:14 +00004550/// If a LSRUse has multiple formulae with the same ScaledReg and Scale.
4551/// Pick the best one and delete the others.
4552/// This narrowing heuristic is to keep as many formulae with different
4553/// Scale and ScaledReg pair as possible while narrowing the search space.
4554/// The benefit is that it is more likely to find out a better solution
4555/// from a formulae set with more Scale and ScaledReg variations than
4556/// a formulae set with the same Scale and ScaledReg. The picking winner
Hiroshi Inouef2096492018-06-14 05:41:49 +00004557/// reg heuristic will often keep the formulae with the same Scale and
Wei Mi90707392017-07-06 15:52:14 +00004558/// ScaledReg and filter others, and we want to avoid that if possible.
4559void LSRInstance::NarrowSearchSpaceByFilterFormulaWithSameScaledReg() {
4560 if (EstimateSearchSpaceComplexity() < ComplexityLimit)
4561 return;
4562
Nicola Zaghend34e60c2018-05-14 12:53:11 +00004563 LLVM_DEBUG(
4564 dbgs() << "The search space is too complex.\n"
4565 "Narrowing the search space by choosing the best Formula "
4566 "from the Formulae with the same Scale and ScaledReg.\n");
Wei Mi90707392017-07-06 15:52:14 +00004567
4568 // Map the "Scale * ScaledReg" pair to the best formula of current LSRUse.
Eugene Zelenko306d2992017-10-18 21:46:47 +00004569 using BestFormulaeTy = DenseMap<std::pair<const SCEV *, int64_t>, size_t>;
4570
Wei Mi90707392017-07-06 15:52:14 +00004571 BestFormulaeTy BestFormulae;
4572#ifndef NDEBUG
4573 bool ChangedFormulae = false;
4574#endif
4575 DenseSet<const SCEV *> VisitedRegs;
4576 SmallPtrSet<const SCEV *, 16> Regs;
4577
4578 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
4579 LSRUse &LU = Uses[LUIdx];
Nicola Zaghend34e60c2018-05-14 12:53:11 +00004580 LLVM_DEBUG(dbgs() << "Filtering for use "; LU.print(dbgs());
4581 dbgs() << '\n');
Wei Mi90707392017-07-06 15:52:14 +00004582
4583 // Return true if Formula FA is better than Formula FB.
4584 auto IsBetterThan = [&](Formula &FA, Formula &FB) {
4585 // First we will try to choose the Formula with fewer new registers.
4586 // For a register used by current Formula, the more the register is
4587 // shared among LSRUses, the less we increase the register number
4588 // counter of the formula.
4589 size_t FARegNum = 0;
4590 for (const SCEV *Reg : FA.BaseRegs) {
4591 const SmallBitVector &UsedByIndices = RegUses.getUsedByIndices(Reg);
4592 FARegNum += (NumUses - UsedByIndices.count() + 1);
4593 }
4594 size_t FBRegNum = 0;
4595 for (const SCEV *Reg : FB.BaseRegs) {
4596 const SmallBitVector &UsedByIndices = RegUses.getUsedByIndices(Reg);
4597 FBRegNum += (NumUses - UsedByIndices.count() + 1);
4598 }
4599 if (FARegNum != FBRegNum)
4600 return FARegNum < FBRegNum;
4601
4602 // If the new register numbers are the same, choose the Formula with
4603 // less Cost.
Sam Parkereb0b8012019-03-14 11:05:07 +00004604 Cost CostFA(L, SE, DT, TTI);
4605 Cost CostFB(L, SE, DT, TTI);
Wei Mi90707392017-07-06 15:52:14 +00004606 Regs.clear();
Sam Parkereb0b8012019-03-14 11:05:07 +00004607 CostFA.RateFormula(FA, Regs, VisitedRegs, LU);
Wei Mi90707392017-07-06 15:52:14 +00004608 Regs.clear();
Sam Parkereb0b8012019-03-14 11:05:07 +00004609 CostFB.RateFormula(FB, Regs, VisitedRegs, LU);
4610 return CostFA.isLess(CostFB);
Wei Mi90707392017-07-06 15:52:14 +00004611 };
4612
4613 bool Any = false;
4614 for (size_t FIdx = 0, NumForms = LU.Formulae.size(); FIdx != NumForms;
4615 ++FIdx) {
4616 Formula &F = LU.Formulae[FIdx];
4617 if (!F.ScaledReg)
4618 continue;
4619 auto P = BestFormulae.insert({{F.ScaledReg, F.Scale}, FIdx});
4620 if (P.second)
4621 continue;
4622
4623 Formula &Best = LU.Formulae[P.first->second];
4624 if (IsBetterThan(F, Best))
4625 std::swap(F, Best);
Nicola Zaghend34e60c2018-05-14 12:53:11 +00004626 LLVM_DEBUG(dbgs() << " Filtering out formula "; F.print(dbgs());
4627 dbgs() << "\n"
4628 " in favor of formula ";
4629 Best.print(dbgs()); dbgs() << '\n');
Wei Mi90707392017-07-06 15:52:14 +00004630#ifndef NDEBUG
4631 ChangedFormulae = true;
4632#endif
4633 LU.DeleteFormula(F);
4634 --FIdx;
4635 --NumForms;
4636 Any = true;
4637 }
4638 if (Any)
4639 LU.RecomputeRegs(LUIdx, RegUses);
4640
4641 // Reset this to prepare for the next use.
4642 BestFormulae.clear();
4643 }
4644
Nicola Zaghend34e60c2018-05-14 12:53:11 +00004645 LLVM_DEBUG(if (ChangedFormulae) {
Wei Mi90707392017-07-06 15:52:14 +00004646 dbgs() << "\n"
4647 "After filtering out undesirable candidates:\n";
4648 print_uses(dbgs());
4649 });
4650}
4651
Evgeny Stupachenko9909872e302017-02-21 07:34:40 +00004652/// The function delete formulas with high registers number expectation.
4653/// Assuming we don't know the value of each formula (already delete
4654/// all inefficient), generate probability of not selecting for each
4655/// register.
4656/// For example,
4657/// Use1:
4658/// reg(a) + reg({0,+,1})
4659/// reg(a) + reg({-1,+,1}) + 1
4660/// reg({a,+,1})
4661/// Use2:
4662/// reg(b) + reg({0,+,1})
4663/// reg(b) + reg({-1,+,1}) + 1
4664/// reg({b,+,1})
4665/// Use3:
4666/// reg(c) + reg(b) + reg({0,+,1})
4667/// reg(c) + reg({b,+,1})
4668///
4669/// Probability of not selecting
4670/// Use1 Use2 Use3
4671/// reg(a) (1/3) * 1 * 1
4672/// reg(b) 1 * (1/3) * (1/2)
4673/// reg({0,+,1}) (2/3) * (2/3) * (1/2)
4674/// reg({-1,+,1}) (2/3) * (2/3) * 1
4675/// reg({a,+,1}) (2/3) * 1 * 1
4676/// reg({b,+,1}) 1 * (2/3) * (2/3)
4677/// reg(c) 1 * 1 * 0
4678///
4679/// Now count registers number mathematical expectation for each formula:
4680/// Note that for each use we exclude probability if not selecting for the use.
4681/// For example for Use1 probability for reg(a) would be just 1 * 1 (excluding
4682/// probabilty 1/3 of not selecting for Use1).
4683/// Use1:
4684/// reg(a) + reg({0,+,1}) 1 + 1/3 -- to be deleted
4685/// reg(a) + reg({-1,+,1}) + 1 1 + 4/9 -- to be deleted
4686/// reg({a,+,1}) 1
4687/// Use2:
4688/// reg(b) + reg({0,+,1}) 1/2 + 1/3 -- to be deleted
4689/// reg(b) + reg({-1,+,1}) + 1 1/2 + 2/3 -- to be deleted
4690/// reg({b,+,1}) 2/3
4691/// Use3:
4692/// reg(c) + reg(b) + reg({0,+,1}) 1 + 1/3 + 4/9 -- to be deleted
4693/// reg(c) + reg({b,+,1}) 1 + 2/3
Evgeny Stupachenko9909872e302017-02-21 07:34:40 +00004694void LSRInstance::NarrowSearchSpaceByDeletingCostlyFormulas() {
4695 if (EstimateSearchSpaceComplexity() < ComplexityLimit)
4696 return;
4697 // Ok, we have too many of formulae on our hands to conveniently handle.
4698 // Use a rough heuristic to thin out the list.
4699
4700 // Set of Regs wich will be 100% used in final solution.
4701 // Used in each formula of a solution (in example above this is reg(c)).
4702 // We can skip them in calculations.
4703 SmallPtrSet<const SCEV *, 4> UniqRegs;
Nicola Zaghend34e60c2018-05-14 12:53:11 +00004704 LLVM_DEBUG(dbgs() << "The search space is too complex.\n");
Evgeny Stupachenko9909872e302017-02-21 07:34:40 +00004705
4706 // Map each register to probability of not selecting
4707 DenseMap <const SCEV *, float> RegNumMap;
4708 for (const SCEV *Reg : RegUses) {
4709 if (UniqRegs.count(Reg))
4710 continue;
4711 float PNotSel = 1;
4712 for (const LSRUse &LU : Uses) {
4713 if (!LU.Regs.count(Reg))
4714 continue;
4715 float P = LU.getNotSelectedProbability(Reg);
4716 if (P != 0.0)
4717 PNotSel *= P;
4718 else
4719 UniqRegs.insert(Reg);
4720 }
4721 RegNumMap.insert(std::make_pair(Reg, PNotSel));
4722 }
4723
Nicola Zaghend34e60c2018-05-14 12:53:11 +00004724 LLVM_DEBUG(
4725 dbgs() << "Narrowing the search space by deleting costly formulas\n");
Evgeny Stupachenko9909872e302017-02-21 07:34:40 +00004726
4727 // Delete formulas where registers number expectation is high.
4728 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
4729 LSRUse &LU = Uses[LUIdx];
4730 // If nothing to delete - continue.
4731 if (LU.Formulae.size() < 2)
4732 continue;
4733 // This is temporary solution to test performance. Float should be
4734 // replaced with round independent type (based on integers) to avoid
4735 // different results for different target builds.
4736 float FMinRegNum = LU.Formulae[0].getNumRegs();
4737 float FMinARegNum = LU.Formulae[0].getNumRegs();
4738 size_t MinIdx = 0;
4739 for (size_t i = 0, e = LU.Formulae.size(); i != e; ++i) {
4740 Formula &F = LU.Formulae[i];
4741 float FRegNum = 0;
4742 float FARegNum = 0;
4743 for (const SCEV *BaseReg : F.BaseRegs) {
4744 if (UniqRegs.count(BaseReg))
4745 continue;
4746 FRegNum += RegNumMap[BaseReg] / LU.getNotSelectedProbability(BaseReg);
4747 if (isa<SCEVAddRecExpr>(BaseReg))
4748 FARegNum +=
4749 RegNumMap[BaseReg] / LU.getNotSelectedProbability(BaseReg);
4750 }
4751 if (const SCEV *ScaledReg = F.ScaledReg) {
4752 if (!UniqRegs.count(ScaledReg)) {
4753 FRegNum +=
4754 RegNumMap[ScaledReg] / LU.getNotSelectedProbability(ScaledReg);
4755 if (isa<SCEVAddRecExpr>(ScaledReg))
4756 FARegNum +=
4757 RegNumMap[ScaledReg] / LU.getNotSelectedProbability(ScaledReg);
4758 }
4759 }
4760 if (FMinRegNum > FRegNum ||
4761 (FMinRegNum == FRegNum && FMinARegNum > FARegNum)) {
4762 FMinRegNum = FRegNum;
4763 FMinARegNum = FARegNum;
4764 MinIdx = i;
4765 }
4766 }
Nicola Zaghend34e60c2018-05-14 12:53:11 +00004767 LLVM_DEBUG(dbgs() << " The formula "; LU.Formulae[MinIdx].print(dbgs());
4768 dbgs() << " with min reg num " << FMinRegNum << '\n');
Evgeny Stupachenko9909872e302017-02-21 07:34:40 +00004769 if (MinIdx != 0)
4770 std::swap(LU.Formulae[MinIdx], LU.Formulae[0]);
4771 while (LU.Formulae.size() != 1) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00004772 LLVM_DEBUG(dbgs() << " Deleting "; LU.Formulae.back().print(dbgs());
4773 dbgs() << '\n');
Evgeny Stupachenko9909872e302017-02-21 07:34:40 +00004774 LU.Formulae.pop_back();
4775 }
4776 LU.RecomputeRegs(LUIdx, RegUses);
4777 assert(LU.Formulae.size() == 1 && "Should be exactly 1 min regs formula");
4778 Formula &F = LU.Formulae[0];
Nicola Zaghend34e60c2018-05-14 12:53:11 +00004779 LLVM_DEBUG(dbgs() << " Leaving only "; F.print(dbgs()); dbgs() << '\n');
Evgeny Stupachenko9909872e302017-02-21 07:34:40 +00004780 // When we choose the formula, the regs become unique.
4781 UniqRegs.insert(F.BaseRegs.begin(), F.BaseRegs.end());
4782 if (F.ScaledReg)
4783 UniqRegs.insert(F.ScaledReg);
4784 }
Nicola Zaghend34e60c2018-05-14 12:53:11 +00004785 LLVM_DEBUG(dbgs() << "After pre-selection:\n"; print_uses(dbgs()));
Evgeny Stupachenko9909872e302017-02-21 07:34:40 +00004786}
4787
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004788/// Pick a register which seems likely to be profitable, and then in any use
4789/// which has any reference to that register, delete all formulae which do not
4790/// reference that register.
Dan Gohmane9e08732010-08-29 16:09:42 +00004791void LSRInstance::NarrowSearchSpaceByPickingWinnerRegs() {
Dan Gohmana4ca28a2010-05-20 20:52:00 +00004792 // With all other options exhausted, loop until the system is simple
4793 // enough to handle.
Dan Gohman45774ce2010-02-12 10:34:29 +00004794 SmallPtrSet<const SCEV *, 4> Taken;
Dan Gohmana4eca052010-05-18 22:51:59 +00004795 while (EstimateSearchSpaceComplexity() >= ComplexityLimit) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004796 // Ok, we have too many of formulae on our hands to conveniently handle.
4797 // Use a rough heuristic to thin out the list.
Nicola Zaghend34e60c2018-05-14 12:53:11 +00004798 LLVM_DEBUG(dbgs() << "The search space is too complex.\n");
Dan Gohman45774ce2010-02-12 10:34:29 +00004799
4800 // Pick the register which is used by the most LSRUses, which is likely
4801 // to be a good reuse register candidate.
Craig Topperf40110f2014-04-25 05:29:35 +00004802 const SCEV *Best = nullptr;
Dan Gohman45774ce2010-02-12 10:34:29 +00004803 unsigned BestNum = 0;
Craig Topper77b99412015-05-23 08:01:41 +00004804 for (const SCEV *Reg : RegUses) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004805 if (Taken.count(Reg))
4806 continue;
Evgeny Stupachenko0c4300f2016-11-30 22:23:51 +00004807 if (!Best) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004808 Best = Reg;
Evgeny Stupachenko0c4300f2016-11-30 22:23:51 +00004809 BestNum = RegUses.getUsedByIndices(Reg).count();
4810 } else {
Dan Gohman45774ce2010-02-12 10:34:29 +00004811 unsigned Count = RegUses.getUsedByIndices(Reg).count();
4812 if (Count > BestNum) {
4813 Best = Reg;
4814 BestNum = Count;
4815 }
4816 }
4817 }
4818
Nicola Zaghend34e60c2018-05-14 12:53:11 +00004819 LLVM_DEBUG(dbgs() << "Narrowing the search space by assuming " << *Best
4820 << " will yield profitable reuse.\n");
Dan Gohman45774ce2010-02-12 10:34:29 +00004821 Taken.insert(Best);
4822
4823 // In any use with formulae which references this register, delete formulae
4824 // which don't reference it.
Dan Gohman4cf99b52010-05-18 23:42:37 +00004825 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx) {
4826 LSRUse &LU = Uses[LUIdx];
Dan Gohman45774ce2010-02-12 10:34:29 +00004827 if (!LU.Regs.count(Best)) continue;
4828
Dan Gohman4cf99b52010-05-18 23:42:37 +00004829 bool Any = false;
Dan Gohman45774ce2010-02-12 10:34:29 +00004830 for (size_t i = 0, e = LU.Formulae.size(); i != e; ++i) {
4831 Formula &F = LU.Formulae[i];
4832 if (!F.referencesReg(Best)) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00004833 LLVM_DEBUG(dbgs() << " Deleting "; F.print(dbgs()); dbgs() << '\n');
Dan Gohmanf1c7b1b2010-05-18 22:39:15 +00004834 LU.DeleteFormula(F);
Dan Gohman45774ce2010-02-12 10:34:29 +00004835 --e;
4836 --i;
Dan Gohman4cf99b52010-05-18 23:42:37 +00004837 Any = true;
Dan Gohmand0800242010-05-07 23:36:59 +00004838 assert(e != 0 && "Use has no formulae left! Is Regs inconsistent?");
Dan Gohman45774ce2010-02-12 10:34:29 +00004839 continue;
4840 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004841 }
Dan Gohman4cf99b52010-05-18 23:42:37 +00004842
4843 if (Any)
4844 LU.RecomputeRegs(LUIdx, RegUses);
Dan Gohman45774ce2010-02-12 10:34:29 +00004845 }
4846
Nicola Zaghend34e60c2018-05-14 12:53:11 +00004847 LLVM_DEBUG(dbgs() << "After pre-selection:\n"; print_uses(dbgs()));
Dan Gohman45774ce2010-02-12 10:34:29 +00004848 }
4849}
4850
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004851/// If there are an extraordinary number of formulae to choose from, use some
4852/// rough heuristics to prune down the number of formulae. This keeps the main
4853/// solver from taking an extraordinary amount of time in some worst-case
4854/// scenarios.
Dan Gohmane9e08732010-08-29 16:09:42 +00004855void LSRInstance::NarrowSearchSpaceUsingHeuristics() {
4856 NarrowSearchSpaceByDetectingSupersets();
4857 NarrowSearchSpaceByCollapsingUnrolledCode();
Dan Gohman002ff892010-08-29 16:39:22 +00004858 NarrowSearchSpaceByRefilteringUndesirableDedicatedRegisters();
Wei Mi90707392017-07-06 15:52:14 +00004859 if (FilterSameScaledReg)
4860 NarrowSearchSpaceByFilterFormulaWithSameScaledReg();
Evgeny Stupachenko9909872e302017-02-21 07:34:40 +00004861 if (LSRExpNarrow)
4862 NarrowSearchSpaceByDeletingCostlyFormulas();
4863 else
4864 NarrowSearchSpaceByPickingWinnerRegs();
Dan Gohmane9e08732010-08-29 16:09:42 +00004865}
4866
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004867/// This is the recursive solver.
Dan Gohman45774ce2010-02-12 10:34:29 +00004868void LSRInstance::SolveRecurse(SmallVectorImpl<const Formula *> &Solution,
4869 Cost &SolutionCost,
4870 SmallVectorImpl<const Formula *> &Workspace,
4871 const Cost &CurCost,
4872 const SmallPtrSet<const SCEV *, 16> &CurRegs,
4873 DenseSet<const SCEV *> &VisitedRegs) const {
4874 // Some ideas:
4875 // - prune more:
4876 // - use more aggressive filtering
4877 // - sort the formula so that the most profitable solutions are found first
4878 // - sort the uses too
4879 // - search faster:
Dan Gohman8b0a4192010-03-01 17:49:51 +00004880 // - don't compute a cost, and then compare. compare while computing a cost
Dan Gohman45774ce2010-02-12 10:34:29 +00004881 // and bail early.
4882 // - track register sets with SmallBitVector
4883
4884 const LSRUse &LU = Uses[Workspace.size()];
4885
4886 // If this use references any register that's already a part of the
4887 // in-progress solution, consider it a requirement that a formula must
4888 // reference that register in order to be considered. This prunes out
4889 // unprofitable searching.
4890 SmallSetVector<const SCEV *, 4> ReqRegs;
Craig Topper46276792014-08-24 23:23:06 +00004891 for (const SCEV *S : CurRegs)
4892 if (LU.Regs.count(S))
4893 ReqRegs.insert(S);
Dan Gohman45774ce2010-02-12 10:34:29 +00004894
4895 SmallPtrSet<const SCEV *, 16> NewRegs;
Sam Parkereb0b8012019-03-14 11:05:07 +00004896 Cost NewCost(L, SE, DT, TTI);
Craig Topper77b99412015-05-23 08:01:41 +00004897 for (const Formula &F : LU.Formulae) {
Adam Nemetdeab6f92014-04-29 18:25:28 +00004898 // Ignore formulae which may not be ideal in terms of register reuse of
4899 // ReqRegs. The formula should use all required registers before
4900 // introducing new ones.
4901 int NumReqRegsToFind = std::min(F.getNumRegs(), ReqRegs.size());
Craig Topper77b99412015-05-23 08:01:41 +00004902 for (const SCEV *Reg : ReqRegs) {
Adam Nemetdeab6f92014-04-29 18:25:28 +00004903 if ((F.ScaledReg && F.ScaledReg == Reg) ||
David Majnemer0d955d02016-08-11 22:21:41 +00004904 is_contained(F.BaseRegs, Reg)) {
Adam Nemetdeab6f92014-04-29 18:25:28 +00004905 --NumReqRegsToFind;
4906 if (NumReqRegsToFind == 0)
4907 break;
Andrew Tricke3502cb2012-03-22 22:42:51 +00004908 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004909 }
Adam Nemetdeab6f92014-04-29 18:25:28 +00004910 if (NumReqRegsToFind != 0) {
Andrew Tricke3502cb2012-03-22 22:42:51 +00004911 // If none of the formulae satisfied the required registers, then we could
4912 // clear ReqRegs and try again. Currently, we simply give up in this case.
4913 continue;
4914 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004915
4916 // Evaluate the cost of the current formula. If it's already worse than
4917 // the current best, prune the search at that point.
4918 NewCost = CurCost;
4919 NewRegs = CurRegs;
Sam Parkereb0b8012019-03-14 11:05:07 +00004920 NewCost.RateFormula(F, NewRegs, VisitedRegs, LU);
4921 if (NewCost.isLess(SolutionCost)) {
Dan Gohman45774ce2010-02-12 10:34:29 +00004922 Workspace.push_back(&F);
4923 if (Workspace.size() != Uses.size()) {
4924 SolveRecurse(Solution, SolutionCost, Workspace, NewCost,
4925 NewRegs, VisitedRegs);
4926 if (F.getNumRegs() == 1 && Workspace.size() == 1)
4927 VisitedRegs.insert(F.ScaledReg ? F.ScaledReg : F.BaseRegs[0]);
4928 } else {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00004929 LLVM_DEBUG(dbgs() << "New best at "; NewCost.print(dbgs());
Sam Parkereb0b8012019-03-14 11:05:07 +00004930 dbgs() << ".\nRegs:\n";
4931 for (const SCEV *S : NewRegs) dbgs()
4932 << "- " << *S << "\n";
Nicola Zaghend34e60c2018-05-14 12:53:11 +00004933 dbgs() << '\n');
Dan Gohman45774ce2010-02-12 10:34:29 +00004934
4935 SolutionCost = NewCost;
4936 Solution = Workspace;
4937 }
4938 Workspace.pop_back();
4939 }
Dan Gohman5b18f032010-02-13 02:06:02 +00004940 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004941}
4942
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004943/// Choose one formula from each use. Return the results in the given Solution
4944/// vector.
Dan Gohman45774ce2010-02-12 10:34:29 +00004945void LSRInstance::Solve(SmallVectorImpl<const Formula *> &Solution) const {
4946 SmallVector<const Formula *, 8> Workspace;
Sam Parkereb0b8012019-03-14 11:05:07 +00004947 Cost SolutionCost(L, SE, DT, TTI);
Tim Northoverbc6659c2014-01-22 13:27:00 +00004948 SolutionCost.Lose();
Sam Parkereb0b8012019-03-14 11:05:07 +00004949 Cost CurCost(L, SE, DT, TTI);
Dan Gohman45774ce2010-02-12 10:34:29 +00004950 SmallPtrSet<const SCEV *, 16> CurRegs;
4951 DenseSet<const SCEV *> VisitedRegs;
4952 Workspace.reserve(Uses.size());
4953
Dan Gohman8ec018c2010-05-20 20:00:41 +00004954 // SolveRecurse does all the work.
Dan Gohman45774ce2010-02-12 10:34:29 +00004955 SolveRecurse(Solution, SolutionCost, Workspace, CurCost,
4956 CurRegs, VisitedRegs);
Andrew Trick58124392011-09-27 00:44:14 +00004957 if (Solution.empty()) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00004958 LLVM_DEBUG(dbgs() << "\nNo Satisfactory Solution\n");
Andrew Trick58124392011-09-27 00:44:14 +00004959 return;
4960 }
Dan Gohman45774ce2010-02-12 10:34:29 +00004961
4962 // Ok, we've now made all our decisions.
Nicola Zaghend34e60c2018-05-14 12:53:11 +00004963 LLVM_DEBUG(dbgs() << "\n"
4964 "The chosen solution requires ";
4965 SolutionCost.print(dbgs()); dbgs() << ":\n";
4966 for (size_t i = 0, e = Uses.size(); i != e; ++i) {
4967 dbgs() << " ";
4968 Uses[i].print(dbgs());
4969 dbgs() << "\n"
4970 " ";
4971 Solution[i]->print(dbgs());
4972 dbgs() << '\n';
4973 });
Dan Gohman6295f2e2010-05-20 20:59:23 +00004974
4975 assert(Solution.size() == Uses.size() && "Malformed solution!");
Dan Gohman45774ce2010-02-12 10:34:29 +00004976}
4977
Sanjoy Das94c4aec2015-08-16 18:22:46 +00004978/// Helper for AdjustInsertPositionForExpand. Climb up the dominator tree far as
4979/// we can go while still being dominated by the input positions. This helps
4980/// canonicalize the insert position, which encourages sharing.
Dan Gohman607e02b2010-04-09 22:07:05 +00004981BasicBlock::iterator
4982LSRInstance::HoistInsertPosition(BasicBlock::iterator IP,
4983 const SmallVectorImpl<Instruction *> &Inputs)
4984 const {
Geoff Berry43e51602016-06-06 19:10:46 +00004985 Instruction *Tentative = &*IP;
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +00004986 while (true) {
Geoff Berry43e51602016-06-06 19:10:46 +00004987 bool AllDominate = true;
4988 Instruction *BetterPos = nullptr;
4989 // Don't bother attempting to insert before a catchswitch, their basic block
4990 // cannot have other non-PHI instructions.
4991 if (isa<CatchSwitchInst>(Tentative))
4992 return IP;
4993
4994 for (Instruction *Inst : Inputs) {
4995 if (Inst == Tentative || !DT.dominates(Inst, Tentative)) {
4996 AllDominate = false;
4997 break;
4998 }
4999 // Attempt to find an insert position in the middle of the block,
5000 // instead of at the end, so that it can be used for other expansions.
5001 if (Tentative->getParent() == Inst->getParent() &&
5002 (!BetterPos || !DT.dominates(Inst, BetterPos)))
5003 BetterPos = &*std::next(BasicBlock::iterator(Inst));
5004 }
5005 if (!AllDominate)
5006 break;
5007 if (BetterPos)
5008 IP = BetterPos->getIterator();
5009 else
5010 IP = Tentative->getIterator();
5011
Dan Gohman607e02b2010-04-09 22:07:05 +00005012 const Loop *IPLoop = LI.getLoopFor(IP->getParent());
5013 unsigned IPLoopDepth = IPLoop ? IPLoop->getLoopDepth() : 0;
5014
5015 BasicBlock *IDom;
Dan Gohman8ce95cc2010-05-20 20:00:25 +00005016 for (DomTreeNode *Rung = DT.getNode(IP->getParent()); ; ) {
Dan Gohman9b48b852010-05-20 22:46:54 +00005017 if (!Rung) return IP;
Dan Gohman8ce95cc2010-05-20 20:00:25 +00005018 Rung = Rung->getIDom();
5019 if (!Rung) return IP;
5020 IDom = Rung->getBlock();
Dan Gohman607e02b2010-04-09 22:07:05 +00005021
5022 // Don't climb into a loop though.
5023 const Loop *IDomLoop = LI.getLoopFor(IDom);
5024 unsigned IDomDepth = IDomLoop ? IDomLoop->getLoopDepth() : 0;
5025 if (IDomDepth <= IPLoopDepth &&
5026 (IDomDepth != IPLoopDepth || IDomLoop == IPLoop))
5027 break;
5028 }
5029
Geoff Berry43e51602016-06-06 19:10:46 +00005030 Tentative = IDom->getTerminator();
Dan Gohman607e02b2010-04-09 22:07:05 +00005031 }
5032
5033 return IP;
5034}
5035
Sanjoy Das94c4aec2015-08-16 18:22:46 +00005036/// Determine an input position which will be dominated by the operands and
5037/// which will dominate the result.
Dan Gohmand2df6432010-04-09 02:00:38 +00005038BasicBlock::iterator
Andrew Trickc908b432012-01-20 07:41:13 +00005039LSRInstance::AdjustInsertPositionForExpand(BasicBlock::iterator LowestIP,
Dan Gohman607e02b2010-04-09 22:07:05 +00005040 const LSRFixup &LF,
Andrew Trickc908b432012-01-20 07:41:13 +00005041 const LSRUse &LU,
5042 SCEVExpander &Rewriter) const {
Dan Gohmand2df6432010-04-09 02:00:38 +00005043 // Collect some instructions which must be dominated by the
Dan Gohmand006ab92010-04-07 22:27:08 +00005044 // expanding replacement. These must be dominated by any operands that
Dan Gohman45774ce2010-02-12 10:34:29 +00005045 // will be required in the expansion.
5046 SmallVector<Instruction *, 4> Inputs;
5047 if (Instruction *I = dyn_cast<Instruction>(LF.OperandValToReplace))
5048 Inputs.push_back(I);
5049 if (LU.Kind == LSRUse::ICmpZero)
5050 if (Instruction *I =
5051 dyn_cast<Instruction>(cast<ICmpInst>(LF.UserInst)->getOperand(1)))
5052 Inputs.push_back(I);
Dan Gohmand006ab92010-04-07 22:27:08 +00005053 if (LF.PostIncLoops.count(L)) {
5054 if (LF.isUseFullyOutsideLoop(L))
Dan Gohman52f55632010-03-02 01:59:21 +00005055 Inputs.push_back(L->getLoopLatch()->getTerminator());
5056 else
5057 Inputs.push_back(IVIncInsertPos);
5058 }
Dan Gohman45065392010-04-08 05:57:57 +00005059 // The expansion must also be dominated by the increment positions of any
5060 // loops it for which it is using post-inc mode.
Craig Topper77b99412015-05-23 08:01:41 +00005061 for (const Loop *PIL : LF.PostIncLoops) {
Dan Gohman45065392010-04-08 05:57:57 +00005062 if (PIL == L) continue;
5063
Dan Gohman607e02b2010-04-09 22:07:05 +00005064 // Be dominated by the loop exit.
Dan Gohman45065392010-04-08 05:57:57 +00005065 SmallVector<BasicBlock *, 4> ExitingBlocks;
5066 PIL->getExitingBlocks(ExitingBlocks);
5067 if (!ExitingBlocks.empty()) {
5068 BasicBlock *BB = ExitingBlocks[0];
5069 for (unsigned i = 1, e = ExitingBlocks.size(); i != e; ++i)
5070 BB = DT.findNearestCommonDominator(BB, ExitingBlocks[i]);
5071 Inputs.push_back(BB->getTerminator());
5072 }
5073 }
Dan Gohman45774ce2010-02-12 10:34:29 +00005074
David Majnemerba275f92015-08-19 19:54:02 +00005075 assert(!isa<PHINode>(LowestIP) && !LowestIP->isEHPad()
Andrew Trickc908b432012-01-20 07:41:13 +00005076 && !isa<DbgInfoIntrinsic>(LowestIP) &&
5077 "Insertion point must be a normal instruction");
5078
Dan Gohman45774ce2010-02-12 10:34:29 +00005079 // Then, climb up the immediate dominator tree as far as we can go while
5080 // still being dominated by the input positions.
Andrew Trickc908b432012-01-20 07:41:13 +00005081 BasicBlock::iterator IP = HoistInsertPosition(LowestIP, Inputs);
Dan Gohmand2df6432010-04-09 02:00:38 +00005082
5083 // Don't insert instructions before PHI nodes.
Dan Gohman45774ce2010-02-12 10:34:29 +00005084 while (isa<PHINode>(IP)) ++IP;
Dan Gohmand2df6432010-04-09 02:00:38 +00005085
Bill Wendling86c5cbe2011-08-24 21:06:46 +00005086 // Ignore landingpad instructions.
David Majnemere09d0352016-03-24 21:40:22 +00005087 while (IP->isEHPad()) ++IP;
Bill Wendling86c5cbe2011-08-24 21:06:46 +00005088
Dan Gohmand2df6432010-04-09 02:00:38 +00005089 // Ignore debug intrinsics.
Dan Gohmand42e09d2010-03-26 00:33:27 +00005090 while (isa<DbgInfoIntrinsic>(IP)) ++IP;
Dan Gohman45774ce2010-02-12 10:34:29 +00005091
Andrew Trickc908b432012-01-20 07:41:13 +00005092 // Set IP below instructions recently inserted by SCEVExpander. This keeps the
5093 // IP consistent across expansions and allows the previously inserted
5094 // instructions to be reused by subsequent expansion.
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +00005095 while (Rewriter.isInsertedInstruction(&*IP) && IP != LowestIP)
5096 ++IP;
Andrew Trickc908b432012-01-20 07:41:13 +00005097
Dan Gohmand2df6432010-04-09 02:00:38 +00005098 return IP;
5099}
5100
Sanjoy Das94c4aec2015-08-16 18:22:46 +00005101/// Emit instructions for the leading candidate expression for this LSRUse (this
5102/// is called "expanding").
Sanjoy Dase6bca0e2017-05-01 17:07:49 +00005103Value *LSRInstance::Expand(const LSRUse &LU, const LSRFixup &LF,
5104 const Formula &F, BasicBlock::iterator IP,
Dan Gohmand2df6432010-04-09 02:00:38 +00005105 SCEVExpander &Rewriter,
Sanjoy Dase6bca0e2017-05-01 17:07:49 +00005106 SmallVectorImpl<WeakTrackingVH> &DeadInsts) const {
Andrew Trick57243da2013-10-25 21:35:56 +00005107 if (LU.RigidFormula)
5108 return LF.OperandValToReplace;
Dan Gohmand2df6432010-04-09 02:00:38 +00005109
5110 // Determine an input position which will be dominated by the operands and
5111 // which will dominate the result.
Andrew Trickc908b432012-01-20 07:41:13 +00005112 IP = AdjustInsertPositionForExpand(IP, LF, LU, Rewriter);
Geoff Berryd0182802016-08-11 21:05:17 +00005113 Rewriter.setInsertPoint(&*IP);
Dan Gohmand2df6432010-04-09 02:00:38 +00005114
Dan Gohman45774ce2010-02-12 10:34:29 +00005115 // Inform the Rewriter if we have a post-increment use, so that it can
5116 // perform an advantageous expansion.
Dan Gohmand006ab92010-04-07 22:27:08 +00005117 Rewriter.setPostInc(LF.PostIncLoops);
Dan Gohman45774ce2010-02-12 10:34:29 +00005118
5119 // This is the type that the user actually needs.
Chris Lattner229907c2011-07-18 04:54:35 +00005120 Type *OpTy = LF.OperandValToReplace->getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00005121 // This will be the type that we'll initially expand to.
Chris Lattner229907c2011-07-18 04:54:35 +00005122 Type *Ty = F.getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00005123 if (!Ty)
5124 // No type known; just expand directly to the ultimate type.
5125 Ty = OpTy;
5126 else if (SE.getEffectiveSCEVType(Ty) == SE.getEffectiveSCEVType(OpTy))
5127 // Expand directly to the ultimate type if it's the right size.
5128 Ty = OpTy;
5129 // This is the type to do integer arithmetic in.
Chris Lattner229907c2011-07-18 04:54:35 +00005130 Type *IntTy = SE.getEffectiveSCEVType(Ty);
Dan Gohman45774ce2010-02-12 10:34:29 +00005131
5132 // Build up a list of operands to add together to form the full base.
5133 SmallVector<const SCEV *, 8> Ops;
5134
5135 // Expand the BaseRegs portion.
Craig Topper77b99412015-05-23 08:01:41 +00005136 for (const SCEV *Reg : F.BaseRegs) {
Dan Gohman45774ce2010-02-12 10:34:29 +00005137 assert(!Reg->isZero() && "Zero allocated in a base register!");
5138
Dan Gohmand006ab92010-04-07 22:27:08 +00005139 // If we're expanding for a post-inc user, make the post-inc adjustment.
Sanjoy Dase3a15e82017-04-14 15:49:59 +00005140 Reg = denormalizeForPostIncUse(Reg, LF.PostIncLoops, SE);
Geoff Berryd0182802016-08-11 21:05:17 +00005141 Ops.push_back(SE.getUnknown(Rewriter.expandCodeFor(Reg, nullptr)));
Dan Gohman45774ce2010-02-12 10:34:29 +00005142 }
5143
5144 // Expand the ScaledReg portion.
Craig Topperf40110f2014-04-25 05:29:35 +00005145 Value *ICmpScaledV = nullptr;
Chandler Carruth6e479322013-01-07 15:04:40 +00005146 if (F.Scale != 0) {
Dan Gohman45774ce2010-02-12 10:34:29 +00005147 const SCEV *ScaledS = F.ScaledReg;
5148
Dan Gohmand006ab92010-04-07 22:27:08 +00005149 // If we're expanding for a post-inc user, make the post-inc adjustment.
5150 PostIncLoopSet &Loops = const_cast<PostIncLoopSet &>(LF.PostIncLoops);
Sanjoy Dase3a15e82017-04-14 15:49:59 +00005151 ScaledS = denormalizeForPostIncUse(ScaledS, Loops, SE);
Dan Gohman45774ce2010-02-12 10:34:29 +00005152
5153 if (LU.Kind == LSRUse::ICmpZero) {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00005154 // Expand ScaleReg as if it was part of the base regs.
5155 if (F.Scale == 1)
Sanjoy Das215df9e2015-08-04 01:52:05 +00005156 Ops.push_back(
Geoff Berryd0182802016-08-11 21:05:17 +00005157 SE.getUnknown(Rewriter.expandCodeFor(ScaledS, nullptr)));
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00005158 else {
5159 // An interesting way of "folding" with an icmp is to use a negated
5160 // scale, which we'll implement by inserting it into the other operand
5161 // of the icmp.
5162 assert(F.Scale == -1 &&
5163 "The only scale supported by ICmpZero uses is -1!");
Geoff Berryd0182802016-08-11 21:05:17 +00005164 ICmpScaledV = Rewriter.expandCodeFor(ScaledS, nullptr);
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00005165 }
Dan Gohman45774ce2010-02-12 10:34:29 +00005166 } else {
5167 // Otherwise just expand the scaled register and an explicit scale,
5168 // which is expected to be matched as part of the address.
Andrew Trick8370c7c2012-06-15 20:07:29 +00005169
5170 // Flush the operand list to suppress SCEVExpander hoisting address modes.
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00005171 // Unless the addressing mode will not be folded.
5172 if (!Ops.empty() && LU.Kind == LSRUse::Address &&
5173 isAMCompletelyFolded(TTI, LU, F)) {
Mikael Holmen6d069762018-02-01 06:38:34 +00005174 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), nullptr);
Andrew Trick8370c7c2012-06-15 20:07:29 +00005175 Ops.clear();
5176 Ops.push_back(SE.getUnknown(FullV));
5177 }
Geoff Berryd0182802016-08-11 21:05:17 +00005178 ScaledS = SE.getUnknown(Rewriter.expandCodeFor(ScaledS, nullptr));
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00005179 if (F.Scale != 1)
5180 ScaledS =
5181 SE.getMulExpr(ScaledS, SE.getConstant(ScaledS->getType(), F.Scale));
Dan Gohman45774ce2010-02-12 10:34:29 +00005182 Ops.push_back(ScaledS);
5183 }
5184 }
5185
Dan Gohman29707de2010-03-03 05:29:13 +00005186 // Expand the GV portion.
Chandler Carruth6e479322013-01-07 15:04:40 +00005187 if (F.BaseGV) {
Dan Gohman29707de2010-03-03 05:29:13 +00005188 // Flush the operand list to suppress SCEVExpander hoisting.
Andrew Trick8370c7c2012-06-15 20:07:29 +00005189 if (!Ops.empty()) {
Geoff Berryd0182802016-08-11 21:05:17 +00005190 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty);
Andrew Trick8370c7c2012-06-15 20:07:29 +00005191 Ops.clear();
5192 Ops.push_back(SE.getUnknown(FullV));
5193 }
Chandler Carruth6e479322013-01-07 15:04:40 +00005194 Ops.push_back(SE.getUnknown(F.BaseGV));
Andrew Trick8370c7c2012-06-15 20:07:29 +00005195 }
5196
5197 // Flush the operand list to suppress SCEVExpander hoisting of both folded and
5198 // unfolded offsets. LSR assumes they both live next to their uses.
5199 if (!Ops.empty()) {
Geoff Berryd0182802016-08-11 21:05:17 +00005200 Value *FullV = Rewriter.expandCodeFor(SE.getAddExpr(Ops), Ty);
Dan Gohman29707de2010-03-03 05:29:13 +00005201 Ops.clear();
5202 Ops.push_back(SE.getUnknown(FullV));
5203 }
5204
5205 // Expand the immediate portion.
Chandler Carruth6e479322013-01-07 15:04:40 +00005206 int64_t Offset = (uint64_t)F.BaseOffset + LF.Offset;
Dan Gohman45774ce2010-02-12 10:34:29 +00005207 if (Offset != 0) {
5208 if (LU.Kind == LSRUse::ICmpZero) {
5209 // The other interesting way of "folding" with an ICmpZero is to use a
5210 // negated immediate.
5211 if (!ICmpScaledV)
Eli Friedmanb46345d2011-10-13 23:48:33 +00005212 ICmpScaledV = ConstantInt::get(IntTy, -(uint64_t)Offset);
Dan Gohman45774ce2010-02-12 10:34:29 +00005213 else {
5214 Ops.push_back(SE.getUnknown(ICmpScaledV));
5215 ICmpScaledV = ConstantInt::get(IntTy, Offset);
5216 }
5217 } else {
5218 // Just add the immediate values. These again are expected to be matched
5219 // as part of the address.
Dan Gohman29707de2010-03-03 05:29:13 +00005220 Ops.push_back(SE.getUnknown(ConstantInt::getSigned(IntTy, Offset)));
Dan Gohman45774ce2010-02-12 10:34:29 +00005221 }
5222 }
5223
Dan Gohman6136e942011-05-03 00:46:49 +00005224 // Expand the unfolded offset portion.
5225 int64_t UnfoldedOffset = F.UnfoldedOffset;
5226 if (UnfoldedOffset != 0) {
5227 // Just add the immediate values.
5228 Ops.push_back(SE.getUnknown(ConstantInt::getSigned(IntTy,
5229 UnfoldedOffset)));
5230 }
5231
Dan Gohman45774ce2010-02-12 10:34:29 +00005232 // Emit instructions summing all the operands.
5233 const SCEV *FullS = Ops.empty() ?
Dan Gohman1d2ded72010-05-03 22:09:21 +00005234 SE.getConstant(IntTy, 0) :
Dan Gohman45774ce2010-02-12 10:34:29 +00005235 SE.getAddExpr(Ops);
Geoff Berryd0182802016-08-11 21:05:17 +00005236 Value *FullV = Rewriter.expandCodeFor(FullS, Ty);
Dan Gohman45774ce2010-02-12 10:34:29 +00005237
5238 // We're done expanding now, so reset the rewriter.
Dan Gohmand006ab92010-04-07 22:27:08 +00005239 Rewriter.clearPostInc();
Dan Gohman45774ce2010-02-12 10:34:29 +00005240
5241 // An ICmpZero Formula represents an ICmp which we're handling as a
5242 // comparison against zero. Now that we've expanded an expression for that
5243 // form, update the ICmp's other operand.
5244 if (LU.Kind == LSRUse::ICmpZero) {
5245 ICmpInst *CI = cast<ICmpInst>(LF.UserInst);
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +00005246 DeadInsts.emplace_back(CI->getOperand(1));
Chandler Carruth6e479322013-01-07 15:04:40 +00005247 assert(!F.BaseGV && "ICmp does not support folding a global value and "
Dan Gohman45774ce2010-02-12 10:34:29 +00005248 "a scale at the same time!");
Chandler Carruth6e479322013-01-07 15:04:40 +00005249 if (F.Scale == -1) {
Dan Gohman45774ce2010-02-12 10:34:29 +00005250 if (ICmpScaledV->getType() != OpTy) {
5251 Instruction *Cast =
5252 CastInst::Create(CastInst::getCastOpcode(ICmpScaledV, false,
5253 OpTy, false),
5254 ICmpScaledV, OpTy, "tmp", CI);
5255 ICmpScaledV = Cast;
5256 }
5257 CI->setOperand(1, ICmpScaledV);
5258 } else {
Quentin Colombetc88baa5c2014-05-20 19:25:04 +00005259 // A scale of 1 means that the scale has been expanded as part of the
5260 // base regs.
5261 assert((F.Scale == 0 || F.Scale == 1) &&
Dan Gohman45774ce2010-02-12 10:34:29 +00005262 "ICmp does not support folding a global value and "
5263 "a scale at the same time!");
5264 Constant *C = ConstantInt::getSigned(SE.getEffectiveSCEVType(OpTy),
5265 -(uint64_t)Offset);
5266 if (C->getType() != OpTy)
5267 C = ConstantExpr::getCast(CastInst::getCastOpcode(C, false,
5268 OpTy, false),
5269 C, OpTy);
5270
5271 CI->setOperand(1, C);
5272 }
5273 }
5274
5275 return FullV;
5276}
5277
Sanjoy Das94c4aec2015-08-16 18:22:46 +00005278/// Helper for Rewrite. PHI nodes are special because the use of their operands
5279/// effectively happens in their predecessor blocks, so the expression may need
5280/// to be expanded in multiple places.
Sanjoy Dase6bca0e2017-05-01 17:07:49 +00005281void LSRInstance::RewriteForPHI(
5282 PHINode *PN, const LSRUse &LU, const LSRFixup &LF, const Formula &F,
5283 SCEVExpander &Rewriter, SmallVectorImpl<WeakTrackingVH> &DeadInsts) const {
Dan Gohman6deab962010-02-16 20:25:07 +00005284 DenseMap<BasicBlock *, Value *> Inserted;
5285 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
5286 if (PN->getIncomingValue(i) == LF.OperandValToReplace) {
5287 BasicBlock *BB = PN->getIncomingBlock(i);
5288
5289 // If this is a critical edge, split the edge so that we do not insert
5290 // the code on all predecessor/successor paths. We do this unless this
5291 // is the canonical backedge for this loop, which complicates post-inc
5292 // users.
5293 if (e != 1 && BB->getTerminator()->getNumSuccessors() > 1 &&
David Majnemerbba17392017-01-13 22:24:27 +00005294 !isa<IndirectBrInst>(BB->getTerminator()) &&
5295 !isa<CatchSwitchInst>(BB->getTerminator())) {
Bill Wendling07efd6f2011-08-25 01:08:34 +00005296 BasicBlock *Parent = PN->getParent();
5297 Loop *PNLoop = LI.getLoopFor(Parent);
5298 if (!PNLoop || Parent != PNLoop->getHeader()) {
Dan Gohmande7f6992011-02-08 00:55:13 +00005299 // Split the critical edge.
Craig Topperf40110f2014-04-25 05:29:35 +00005300 BasicBlock *NewBB = nullptr;
Bill Wendling3fb137f2011-08-25 05:55:40 +00005301 if (!Parent->isLandingPad()) {
Chandler Carruth37df2cf2015-01-19 12:09:11 +00005302 NewBB = SplitCriticalEdge(BB, Parent,
5303 CriticalEdgeSplittingOptions(&DT, &LI)
5304 .setMergeIdenticalEdges()
Max Kazantsev20b91892019-02-12 07:09:29 +00005305 .setKeepOneInputPHIs());
Bill Wendling3fb137f2011-08-25 05:55:40 +00005306 } else {
5307 SmallVector<BasicBlock*, 2> NewBBs;
Chandler Carruth96ada252015-07-22 09:52:54 +00005308 SplitLandingPadPredecessors(Parent, BB, "", "", NewBBs, &DT, &LI);
Bill Wendling3fb137f2011-08-25 05:55:40 +00005309 NewBB = NewBBs[0];
5310 }
Andrew Trick402edbb2012-09-18 17:51:33 +00005311 // If NewBB==NULL, then SplitCriticalEdge refused to split because all
5312 // phi predecessors are identical. The simple thing to do is skip
5313 // splitting in this case rather than complicate the API.
5314 if (NewBB) {
5315 // If PN is outside of the loop and BB is in the loop, we want to
5316 // move the block to be immediately before the PHI block, not
5317 // immediately after BB.
5318 if (L->contains(BB) && !L->contains(PN))
5319 NewBB->moveBefore(PN->getParent());
Dan Gohman6deab962010-02-16 20:25:07 +00005320
Andrew Trick402edbb2012-09-18 17:51:33 +00005321 // Splitting the edge can reduce the number of PHI entries we have.
5322 e = PN->getNumIncomingValues();
5323 BB = NewBB;
5324 i = PN->getBasicBlockIndex(BB);
5325 }
Dan Gohmande7f6992011-02-08 00:55:13 +00005326 }
Dan Gohman6deab962010-02-16 20:25:07 +00005327 }
5328
5329 std::pair<DenseMap<BasicBlock *, Value *>::iterator, bool> Pair =
Craig Topperf40110f2014-04-25 05:29:35 +00005330 Inserted.insert(std::make_pair(BB, static_cast<Value *>(nullptr)));
Dan Gohman6deab962010-02-16 20:25:07 +00005331 if (!Pair.second)
5332 PN->setIncomingValue(i, Pair.first->second);
5333 else {
Jonas Paulsson7a794222016-08-17 13:24:19 +00005334 Value *FullV = Expand(LU, LF, F, BB->getTerminator()->getIterator(),
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +00005335 Rewriter, DeadInsts);
Dan Gohman6deab962010-02-16 20:25:07 +00005336
5337 // If this is reuse-by-noop-cast, insert the noop cast.
Chris Lattner229907c2011-07-18 04:54:35 +00005338 Type *OpTy = LF.OperandValToReplace->getType();
Dan Gohman6deab962010-02-16 20:25:07 +00005339 if (FullV->getType() != OpTy)
5340 FullV =
5341 CastInst::Create(CastInst::getCastOpcode(FullV, false,
5342 OpTy, false),
5343 FullV, LF.OperandValToReplace->getType(),
5344 "tmp", BB->getTerminator());
5345
5346 PN->setIncomingValue(i, FullV);
5347 Pair.first->second = FullV;
5348 }
5349 }
5350}
5351
Sanjoy Das94c4aec2015-08-16 18:22:46 +00005352/// Emit instructions for the leading candidate expression for this LSRUse (this
5353/// is called "expanding"), and update the UserInst to reference the newly
5354/// expanded value.
Sanjoy Dase6bca0e2017-05-01 17:07:49 +00005355void LSRInstance::Rewrite(const LSRUse &LU, const LSRFixup &LF,
5356 const Formula &F, SCEVExpander &Rewriter,
5357 SmallVectorImpl<WeakTrackingVH> &DeadInsts) const {
Dan Gohman45774ce2010-02-12 10:34:29 +00005358 // First, find an insertion point that dominates UserInst. For PHI nodes,
5359 // find the nearest block which dominates all the relevant uses.
5360 if (PHINode *PN = dyn_cast<PHINode>(LF.UserInst)) {
Jonas Paulsson7a794222016-08-17 13:24:19 +00005361 RewriteForPHI(PN, LU, LF, F, Rewriter, DeadInsts);
Dan Gohman45774ce2010-02-12 10:34:29 +00005362 } else {
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +00005363 Value *FullV =
Jonas Paulsson7a794222016-08-17 13:24:19 +00005364 Expand(LU, LF, F, LF.UserInst->getIterator(), Rewriter, DeadInsts);
Dan Gohman45774ce2010-02-12 10:34:29 +00005365
5366 // If this is reuse-by-noop-cast, insert the noop cast.
Chris Lattner229907c2011-07-18 04:54:35 +00005367 Type *OpTy = LF.OperandValToReplace->getType();
Dan Gohman45774ce2010-02-12 10:34:29 +00005368 if (FullV->getType() != OpTy) {
5369 Instruction *Cast =
5370 CastInst::Create(CastInst::getCastOpcode(FullV, false, OpTy, false),
5371 FullV, OpTy, "tmp", LF.UserInst);
5372 FullV = Cast;
5373 }
5374
5375 // Update the user. ICmpZero is handled specially here (for now) because
5376 // Expand may have updated one of the operands of the icmp already, and
5377 // its new value may happen to be equal to LF.OperandValToReplace, in
5378 // which case doing replaceUsesOfWith leads to replacing both operands
5379 // with the same value. TODO: Reorganize this.
Jonas Paulsson7a794222016-08-17 13:24:19 +00005380 if (LU.Kind == LSRUse::ICmpZero)
Dan Gohman45774ce2010-02-12 10:34:29 +00005381 LF.UserInst->setOperand(0, FullV);
5382 else
5383 LF.UserInst->replaceUsesOfWith(LF.OperandValToReplace, FullV);
5384 }
5385
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +00005386 DeadInsts.emplace_back(LF.OperandValToReplace);
Dan Gohman45774ce2010-02-12 10:34:29 +00005387}
5388
Sanjoy Das94c4aec2015-08-16 18:22:46 +00005389/// Rewrite all the fixup locations with new values, following the chosen
5390/// solution.
Justin Bogner843fb202015-12-15 19:40:57 +00005391void LSRInstance::ImplementSolution(
5392 const SmallVectorImpl<const Formula *> &Solution) {
Dan Gohman45774ce2010-02-12 10:34:29 +00005393 // Keep track of instructions we may have made dead, so that
5394 // we can remove them after we are done working.
Sanjoy Dase6bca0e2017-05-01 17:07:49 +00005395 SmallVector<WeakTrackingVH, 16> DeadInsts;
Dan Gohman45774ce2010-02-12 10:34:29 +00005396
Mehdi Aminia28d91d2015-03-10 02:37:25 +00005397 SCEVExpander Rewriter(SE, L->getHeader()->getModule()->getDataLayout(),
5398 "lsr");
Andrew Trick4dc3eff2012-01-09 18:58:16 +00005399#ifndef NDEBUG
5400 Rewriter.setDebugType(DEBUG_TYPE);
5401#endif
Dan Gohman45774ce2010-02-12 10:34:29 +00005402 Rewriter.disableCanonicalMode();
Andrew Trick7fb669a2011-10-07 23:46:21 +00005403 Rewriter.enableLSRMode();
Dan Gohman45774ce2010-02-12 10:34:29 +00005404 Rewriter.setIVIncInsertPos(L, IVIncInsertPos);
5405
Andrew Trickd5d2db92012-01-10 01:45:08 +00005406 // Mark phi nodes that terminate chains so the expander tries to reuse them.
Craig Topper77b99412015-05-23 08:01:41 +00005407 for (const IVChain &Chain : IVChainVec) {
5408 if (PHINode *PN = dyn_cast<PHINode>(Chain.tailUserInst()))
Andrew Trickd5d2db92012-01-10 01:45:08 +00005409 Rewriter.setChainedPhi(PN);
5410 }
5411
Dan Gohman45774ce2010-02-12 10:34:29 +00005412 // Expand the new value definitions and update the users.
Jonas Paulsson7a794222016-08-17 13:24:19 +00005413 for (size_t LUIdx = 0, NumUses = Uses.size(); LUIdx != NumUses; ++LUIdx)
5414 for (const LSRFixup &Fixup : Uses[LUIdx].Fixups) {
5415 Rewrite(Uses[LUIdx], Fixup, *Solution[LUIdx], Rewriter, DeadInsts);
5416 Changed = true;
5417 }
Dan Gohman45774ce2010-02-12 10:34:29 +00005418
Craig Topper77b99412015-05-23 08:01:41 +00005419 for (const IVChain &Chain : IVChainVec) {
5420 GenerateIVChain(Chain, Rewriter, DeadInsts);
Andrew Trick248d4102012-01-09 21:18:52 +00005421 Changed = true;
5422 }
Dan Gohman45774ce2010-02-12 10:34:29 +00005423 // Clean up after ourselves. This must be done before deleting any
5424 // instructions.
5425 Rewriter.clear();
5426
5427 Changed |= DeleteTriviallyDeadInstructions(DeadInsts);
5428}
5429
Justin Bogner843fb202015-12-15 19:40:57 +00005430LSRInstance::LSRInstance(Loop *L, IVUsers &IU, ScalarEvolution &SE,
5431 DominatorTree &DT, LoopInfo &LI,
5432 const TargetTransformInfo &TTI)
Sam Parker67756c02019-02-07 13:32:54 +00005433 : IU(IU), SE(SE), DT(DT), LI(LI), TTI(TTI), L(L),
5434 FavorBackedgeIndex(EnableBackedgeIndexing &&
5435 TTI.shouldFavorBackedgeIndex(L)) {
Dan Gohmana83ac2d2009-11-05 21:11:53 +00005436 // If LoopSimplify form is not available, stay out of trouble.
Andrew Trick732ad802012-01-07 03:16:50 +00005437 if (!L->isLoopSimplifyForm())
5438 return;
Dan Gohmana83ac2d2009-11-05 21:11:53 +00005439
Andrew Trick070e5402012-03-16 03:16:56 +00005440 // If there's no interesting work to be done, bail early.
5441 if (IU.empty()) return;
5442
Andrew Trick19f80c12012-04-18 04:00:10 +00005443 // If there's too much analysis to be done, bail early. We won't be able to
5444 // model the problem anyway.
5445 unsigned NumUsers = 0;
Craig Topper77b99412015-05-23 08:01:41 +00005446 for (const IVStrideUse &U : IU) {
Andrew Trick19f80c12012-04-18 04:00:10 +00005447 if (++NumUsers > MaxIVUsers) {
Craig Topper37d0d862015-05-23 08:20:33 +00005448 (void)U;
Nicola Zaghend34e60c2018-05-14 12:53:11 +00005449 LLVM_DEBUG(dbgs() << "LSR skipping loop, too many IV Users in " << U
5450 << "\n");
Andrew Trick19f80c12012-04-18 04:00:10 +00005451 return;
5452 }
David Majnemera53b5bb2016-02-03 21:30:34 +00005453 // Bail out if we have a PHI on an EHPad that gets a value from a
5454 // CatchSwitchInst. Because the CatchSwitchInst cannot be split, there is
5455 // no good place to stick any instructions.
5456 if (auto *PN = dyn_cast<PHINode>(U.getUser())) {
5457 auto *FirstNonPHI = PN->getParent()->getFirstNonPHI();
5458 if (isa<FuncletPadInst>(FirstNonPHI) ||
5459 isa<CatchSwitchInst>(FirstNonPHI))
5460 for (BasicBlock *PredBB : PN->blocks())
5461 if (isa<CatchSwitchInst>(PredBB->getFirstNonPHI()))
5462 return;
5463 }
Andrew Trick19f80c12012-04-18 04:00:10 +00005464 }
5465
Andrew Trick070e5402012-03-16 03:16:56 +00005466#ifndef NDEBUG
Andrew Trick12728f02012-01-17 06:45:52 +00005467 // All dominating loops must have preheaders, or SCEVExpander may not be able
5468 // to materialize an AddRecExpr whose Start is an outer AddRecExpr.
5469 //
Andrew Trick070e5402012-03-16 03:16:56 +00005470 // IVUsers analysis should only create users that are dominated by simple loop
5471 // headers. Since this loop should dominate all of its users, its user list
5472 // should be empty if this loop itself is not within a simple loop nest.
Andrew Trick12728f02012-01-17 06:45:52 +00005473 for (DomTreeNode *Rung = DT.getNode(L->getLoopPreheader());
5474 Rung; Rung = Rung->getIDom()) {
5475 BasicBlock *BB = Rung->getBlock();
5476 const Loop *DomLoop = LI.getLoopFor(BB);
5477 if (DomLoop && DomLoop->getHeader() == BB) {
Andrew Trick070e5402012-03-16 03:16:56 +00005478 assert(DomLoop->getLoopPreheader() && "LSR needs a simplified loop nest");
Andrew Trick12728f02012-01-17 06:45:52 +00005479 }
Andrew Trick732ad802012-01-07 03:16:50 +00005480 }
Andrew Trick070e5402012-03-16 03:16:56 +00005481#endif // DEBUG
Dan Gohman85875f72009-03-09 20:34:59 +00005482
Nicola Zaghend34e60c2018-05-14 12:53:11 +00005483 LLVM_DEBUG(dbgs() << "\nLSR on loop ";
5484 L->getHeader()->printAsOperand(dbgs(), /*PrintType=*/false);
5485 dbgs() << ":\n");
Dan Gohmane201f8f2009-03-09 20:46:50 +00005486
Dan Gohman927bcaa2010-05-20 20:33:18 +00005487 // First, perform some low-level loop optimizations.
Dan Gohman45774ce2010-02-12 10:34:29 +00005488 OptimizeShadowIV();
Dan Gohman4c4043c2010-05-20 20:05:31 +00005489 OptimizeLoopTermCond();
Evan Cheng78a4eb82009-05-11 22:33:01 +00005490
Andrew Trick8acb4342011-07-21 00:40:04 +00005491 // If loop preparation eliminates all interesting IV users, bail.
5492 if (IU.empty()) return;
5493
Andrew Trick168dfff2011-09-29 01:53:08 +00005494 // Skip nested loops until we can model them better with formulae.
Andrew Trickd97b83e2012-03-22 22:42:45 +00005495 if (!L->empty()) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00005496 LLVM_DEBUG(dbgs() << "LSR skipping outer loop " << *L << "\n");
Andrew Trick168dfff2011-09-29 01:53:08 +00005497 return;
Andrew Trickbc6de902011-09-29 01:33:38 +00005498 }
5499
Dan Gohman927bcaa2010-05-20 20:33:18 +00005500 // Start collecting data and preparing for the solver.
Andrew Trick29fe5f02012-01-09 19:50:34 +00005501 CollectChains();
Dan Gohman45774ce2010-02-12 10:34:29 +00005502 CollectInterestingTypesAndFactors();
5503 CollectFixupsAndInitialFormulae();
5504 CollectLoopInvariantFixupsAndFormulae();
Chris Lattner9bfa6f82005-08-08 05:28:22 +00005505
Tim Shen9e25d5d2018-07-13 23:40:00 +00005506 if (Uses.empty())
5507 return;
5508
Nicola Zaghend34e60c2018-05-14 12:53:11 +00005509 LLVM_DEBUG(dbgs() << "LSR found " << Uses.size() << " uses:\n";
5510 print_uses(dbgs()));
Misha Brukmanb1c93172005-04-21 23:48:37 +00005511
Dan Gohman45774ce2010-02-12 10:34:29 +00005512 // Now use the reuse data to generate a bunch of interesting ways
5513 // to formulate the values needed for the uses.
5514 GenerateAllReuseFormulae();
Evan Cheng3df447d2006-03-16 21:53:05 +00005515
Dan Gohman45774ce2010-02-12 10:34:29 +00005516 FilterOutUndesirableDedicatedRegisters();
5517 NarrowSearchSpaceUsingHeuristics();
Dan Gohman92c36962009-12-18 00:06:20 +00005518
Dan Gohman45774ce2010-02-12 10:34:29 +00005519 SmallVector<const Formula *, 8> Solution;
5520 Solve(Solution);
Dan Gohman92c36962009-12-18 00:06:20 +00005521
Dan Gohman45774ce2010-02-12 10:34:29 +00005522 // Release memory that is no longer needed.
5523 Factors.clear();
5524 Types.clear();
5525 RegUses.clear();
5526
Andrew Trick58124392011-09-27 00:44:14 +00005527 if (Solution.empty())
5528 return;
5529
Dan Gohman45774ce2010-02-12 10:34:29 +00005530#ifndef NDEBUG
5531 // Formulae should be legal.
Craig Topper77b99412015-05-23 08:01:41 +00005532 for (const LSRUse &LU : Uses) {
5533 for (const Formula &F : LU.Formulae)
Chandler Carruth26c59fa2013-01-07 14:41:08 +00005534 assert(isLegalUse(TTI, LU.MinOffset, LU.MaxOffset, LU.Kind, LU.AccessTy,
Craig Topper77b99412015-05-23 08:01:41 +00005535 F) && "Illegal formula generated!");
Dan Gohman45774ce2010-02-12 10:34:29 +00005536 };
5537#endif
5538
5539 // Now that we've decided what we want, make it so.
Justin Bogner843fb202015-12-15 19:40:57 +00005540 ImplementSolution(Solution);
Dan Gohman45774ce2010-02-12 10:34:29 +00005541}
5542
Aaron Ballman615eb472017-10-15 14:32:27 +00005543#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dan Gohman45774ce2010-02-12 10:34:29 +00005544void LSRInstance::print_factors_and_types(raw_ostream &OS) const {
5545 if (Factors.empty() && Types.empty()) return;
5546
5547 OS << "LSR has identified the following interesting factors and types: ";
5548 bool First = true;
5549
Craig Topper10949ae2015-05-23 08:45:10 +00005550 for (int64_t Factor : Factors) {
Dan Gohman45774ce2010-02-12 10:34:29 +00005551 if (!First) OS << ", ";
5552 First = false;
Craig Topper10949ae2015-05-23 08:45:10 +00005553 OS << '*' << Factor;
Evan Cheng87fe40b2009-11-10 21:14:05 +00005554 }
Dale Johannesen02cb2bf2009-05-11 17:15:42 +00005555
Craig Topper10949ae2015-05-23 08:45:10 +00005556 for (Type *Ty : Types) {
Dan Gohman45774ce2010-02-12 10:34:29 +00005557 if (!First) OS << ", ";
5558 First = false;
Craig Topper10949ae2015-05-23 08:45:10 +00005559 OS << '(' << *Ty << ')';
Dan Gohman45774ce2010-02-12 10:34:29 +00005560 }
5561 OS << '\n';
5562}
5563
5564void LSRInstance::print_fixups(raw_ostream &OS) const {
5565 OS << "LSR is examining the following fixup sites:\n";
Jonas Paulsson7a794222016-08-17 13:24:19 +00005566 for (const LSRUse &LU : Uses)
5567 for (const LSRFixup &LF : LU.Fixups) {
5568 dbgs() << " ";
5569 LF.print(OS);
5570 OS << '\n';
5571 }
Dan Gohman45774ce2010-02-12 10:34:29 +00005572}
5573
5574void LSRInstance::print_uses(raw_ostream &OS) const {
5575 OS << "LSR is examining the following uses:\n";
Craig Topper77b99412015-05-23 08:01:41 +00005576 for (const LSRUse &LU : Uses) {
Dan Gohman45774ce2010-02-12 10:34:29 +00005577 dbgs() << " ";
5578 LU.print(OS);
5579 OS << '\n';
Craig Topper77b99412015-05-23 08:01:41 +00005580 for (const Formula &F : LU.Formulae) {
Dan Gohman45774ce2010-02-12 10:34:29 +00005581 OS << " ";
Craig Topper77b99412015-05-23 08:01:41 +00005582 F.print(OS);
Dan Gohman45774ce2010-02-12 10:34:29 +00005583 OS << '\n';
5584 }
5585 }
5586}
5587
5588void LSRInstance::print(raw_ostream &OS) const {
5589 print_factors_and_types(OS);
5590 print_fixups(OS);
5591 print_uses(OS);
5592}
5593
Matthias Braun8c209aa2017-01-28 02:02:38 +00005594LLVM_DUMP_METHOD void LSRInstance::dump() const {
Dan Gohman45774ce2010-02-12 10:34:29 +00005595 print(errs()); errs() << '\n';
5596}
Matthias Braun8c209aa2017-01-28 02:02:38 +00005597#endif
Dan Gohman45774ce2010-02-12 10:34:29 +00005598
5599namespace {
5600
5601class LoopStrengthReduce : public LoopPass {
Dan Gohman45774ce2010-02-12 10:34:29 +00005602public:
5603 static char ID; // Pass ID, replacement for typeid
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +00005604
Chandler Carruth26c59fa2013-01-07 14:41:08 +00005605 LoopStrengthReduce();
Dan Gohman45774ce2010-02-12 10:34:29 +00005606
5607private:
Craig Topper3e4c6972014-03-05 09:10:37 +00005608 bool runOnLoop(Loop *L, LPPassManager &LPM) override;
5609 void getAnalysisUsage(AnalysisUsage &AU) const override;
Dan Gohman45774ce2010-02-12 10:34:29 +00005610};
Dan Gohman45774ce2010-02-12 10:34:29 +00005611
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +00005612} // end anonymous namespace
Dan Gohman45774ce2010-02-12 10:34:29 +00005613
Chandler Carruth26c59fa2013-01-07 14:41:08 +00005614LoopStrengthReduce::LoopStrengthReduce() : LoopPass(ID) {
5615 initializeLoopStrengthReducePass(*PassRegistry::getPassRegistry());
5616}
Dan Gohman45774ce2010-02-12 10:34:29 +00005617
5618void LoopStrengthReduce::getAnalysisUsage(AnalysisUsage &AU) const {
5619 // We split critical edges, so we change the CFG. However, we do update
5620 // many analyses if they are around.
Eric Christopherda6bd452011-02-10 01:48:24 +00005621 AU.addPreservedID(LoopSimplifyID);
Dan Gohman45774ce2010-02-12 10:34:29 +00005622
Chandler Carruth4f8f3072015-01-17 14:16:18 +00005623 AU.addRequired<LoopInfoWrapperPass>();
5624 AU.addPreserved<LoopInfoWrapperPass>();
Eric Christopherda6bd452011-02-10 01:48:24 +00005625 AU.addRequiredID(LoopSimplifyID);
Chandler Carruth73523022014-01-13 13:07:17 +00005626 AU.addRequired<DominatorTreeWrapperPass>();
5627 AU.addPreserved<DominatorTreeWrapperPass>();
Chandler Carruth2f1fd162015-08-17 02:08:17 +00005628 AU.addRequired<ScalarEvolutionWrapperPass>();
5629 AU.addPreserved<ScalarEvolutionWrapperPass>();
Cameron Zwarich97dae4d2011-02-10 23:53:14 +00005630 // Requiring LoopSimplify a second time here prevents IVUsers from running
5631 // twice, since LoopSimplify was invalidated by running ScalarEvolution.
5632 AU.addRequiredID(LoopSimplifyID);
Dehao Chen1a444522016-07-16 22:51:33 +00005633 AU.addRequired<IVUsersWrapperPass>();
5634 AU.addPreserved<IVUsersWrapperPass>();
Chandler Carruth705b1852015-01-31 03:43:40 +00005635 AU.addRequired<TargetTransformInfoWrapperPass>();
Dan Gohman45774ce2010-02-12 10:34:29 +00005636}
5637
Dehao Chen6132ee82016-07-18 21:41:50 +00005638static bool ReduceLoopStrength(Loop *L, IVUsers &IU, ScalarEvolution &SE,
5639 DominatorTree &DT, LoopInfo &LI,
5640 const TargetTransformInfo &TTI) {
Dan Gohman45774ce2010-02-12 10:34:29 +00005641 bool Changed = false;
5642
5643 // Run the main LSR transformation.
Justin Bogner843fb202015-12-15 19:40:57 +00005644 Changed |= LSRInstance(L, IU, SE, DT, LI, TTI).getChanged();
Dan Gohman45774ce2010-02-12 10:34:29 +00005645
Andrew Trick2ec61a82012-01-07 01:36:44 +00005646 // Remove any extra phis created by processing inner loops.
Dan Gohmanb5358002010-01-05 16:31:45 +00005647 Changed |= DeleteDeadPHIs(L->getHeader());
Andrew Trickf950ce82013-01-06 05:59:39 +00005648 if (EnablePhiElim && L->isLoopSimplifyForm()) {
Sanjoy Dase6bca0e2017-05-01 17:07:49 +00005649 SmallVector<WeakTrackingVH, 16> DeadInsts;
Mehdi Aminia28d91d2015-03-10 02:37:25 +00005650 const DataLayout &DL = L->getHeader()->getModule()->getDataLayout();
Dehao Chen6132ee82016-07-18 21:41:50 +00005651 SCEVExpander Rewriter(SE, DL, "lsr");
Andrew Trick2ec61a82012-01-07 01:36:44 +00005652#ifndef NDEBUG
5653 Rewriter.setDebugType(DEBUG_TYPE);
5654#endif
Dehao Chen6132ee82016-07-18 21:41:50 +00005655 unsigned numFolded = Rewriter.replaceCongruentIVs(L, &DT, DeadInsts, &TTI);
Andrew Trick2ec61a82012-01-07 01:36:44 +00005656 if (numFolded) {
5657 Changed = true;
5658 DeleteTriviallyDeadInstructions(DeadInsts);
5659 DeleteDeadPHIs(L->getHeader());
5660 }
5661 }
Evan Cheng03001cb2008-07-07 19:51:32 +00005662 return Changed;
Nate Begemanb18121e2004-10-18 21:08:22 +00005663}
Dehao Chen6132ee82016-07-18 21:41:50 +00005664
5665bool LoopStrengthReduce::runOnLoop(Loop *L, LPPassManager & /*LPM*/) {
5666 if (skipLoop(L))
5667 return false;
5668
5669 auto &IU = getAnalysis<IVUsersWrapperPass>().getIU();
5670 auto &SE = getAnalysis<ScalarEvolutionWrapperPass>().getSE();
5671 auto &DT = getAnalysis<DominatorTreeWrapperPass>().getDomTree();
5672 auto &LI = getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
5673 const auto &TTI = getAnalysis<TargetTransformInfoWrapperPass>().getTTI(
5674 *L->getHeader()->getParent());
5675 return ReduceLoopStrength(L, IU, SE, DT, LI, TTI);
5676}
5677
Chandler Carruth410eaeb2017-01-11 06:23:21 +00005678PreservedAnalyses LoopStrengthReducePass::run(Loop &L, LoopAnalysisManager &AM,
5679 LoopStandardAnalysisResults &AR,
5680 LPMUpdater &) {
5681 if (!ReduceLoopStrength(&L, AM.getResult<IVUsersAnalysis>(L, AR), AR.SE,
5682 AR.DT, AR.LI, AR.TTI))
Dehao Chen6132ee82016-07-18 21:41:50 +00005683 return PreservedAnalyses::all();
5684
5685 return getLoopPassPreservedAnalyses();
5686}
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +00005687
5688char LoopStrengthReduce::ID = 0;
Eugene Zelenko306d2992017-10-18 21:46:47 +00005689
Eugene Zelenkoa3fe70d2016-11-30 17:48:10 +00005690INITIALIZE_PASS_BEGIN(LoopStrengthReduce, "loop-reduce",
5691 "Loop Strength Reduction", false, false)
5692INITIALIZE_PASS_DEPENDENCY(TargetTransformInfoWrapperPass)
5693INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
5694INITIALIZE_PASS_DEPENDENCY(ScalarEvolutionWrapperPass)
5695INITIALIZE_PASS_DEPENDENCY(IVUsersWrapperPass)
5696INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass)
5697INITIALIZE_PASS_DEPENDENCY(LoopSimplify)
5698INITIALIZE_PASS_END(LoopStrengthReduce, "loop-reduce",
5699 "Loop Strength Reduction", false, false)
5700
5701Pass *llvm::createLoopStrengthReducePass() { return new LoopStrengthReduce(); }