blob: 6d9d417ef9437bb6daf4c171a09c050b49aba8cb [file] [log] [blame]
Jingyue Wud7966ff2015-02-03 19:37:06 +00001//===-- StraightLineStrengthReduce.cpp - ------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements straight-line strength reduction (SLSR). Unlike loop
11// strength reduction, this algorithm is designed to reduce arithmetic
12// redundancy in straight-line code instead of loops. It has proven to be
13// effective in simplifying arithmetic statements derived from an unrolled loop.
14// It can also simplify the logic of SeparateConstOffsetFromGEP.
15//
16// There are many optimizations we can perform in the domain of SLSR. This file
17// for now contains only an initial step. Specifically, we look for strength
Jingyue Wu43885eb2015-04-15 16:46:13 +000018// reduction candidates in the following forms:
Jingyue Wud7966ff2015-02-03 19:37:06 +000019//
Jingyue Wu43885eb2015-04-15 16:46:13 +000020// Form 1: B + i * S
21// Form 2: (B + i) * S
22// Form 3: &B[i * S]
Jingyue Wud7966ff2015-02-03 19:37:06 +000023//
Jingyue Wu177a8152015-03-26 16:49:24 +000024// where S is an integer variable, and i is a constant integer. If we found two
Jingyue Wu43885eb2015-04-15 16:46:13 +000025// candidates S1 and S2 in the same form and S1 dominates S2, we may rewrite S2
26// in a simpler way with respect to S1. For example,
27//
28// S1: X = B + i * S
29// S2: Y = B + i' * S => X + (i' - i) * S
Jingyue Wud7966ff2015-02-03 19:37:06 +000030//
Jingyue Wu177a8152015-03-26 16:49:24 +000031// S1: X = (B + i) * S
Jingyue Wu43885eb2015-04-15 16:46:13 +000032// S2: Y = (B + i') * S => X + (i' - i) * S
Jingyue Wu177a8152015-03-26 16:49:24 +000033//
34// S1: X = &B[i * S]
Jingyue Wu43885eb2015-04-15 16:46:13 +000035// S2: Y = &B[i' * S] => &X[(i' - i) * S]
Jingyue Wud7966ff2015-02-03 19:37:06 +000036//
Jingyue Wu43885eb2015-04-15 16:46:13 +000037// Note: (i' - i) * S is folded to the extent possible.
Jingyue Wud7966ff2015-02-03 19:37:06 +000038//
Jingyue Wu43885eb2015-04-15 16:46:13 +000039// This rewriting is in general a good idea. The code patterns we focus on
40// usually come from loop unrolling, so (i' - i) * S is likely the same
41// across iterations and can be reused. When that happens, the optimized form
42// takes only one add starting from the second iteration.
Jingyue Wud7966ff2015-02-03 19:37:06 +000043//
Jingyue Wu43885eb2015-04-15 16:46:13 +000044// When such rewriting is possible, we call S1 a "basis" of S2. When S2 has
45// multiple bases, we choose to rewrite S2 with respect to its "immediate"
46// basis, the basis that is the closest ancestor in the dominator tree.
Jingyue Wud7966ff2015-02-03 19:37:06 +000047//
48// TODO:
49//
Jingyue Wud7966ff2015-02-03 19:37:06 +000050// - Floating point arithmetics when fast math is enabled.
51//
52// - SLSR may decrease ILP at the architecture level. Targets that are very
53// sensitive to ILP may want to disable it. Having SLSR to consider ILP is
54// left as future work.
Jingyue Wu43885eb2015-04-15 16:46:13 +000055//
56// - When (i' - i) is constant but i and i' are not, we could still perform
57// SLSR.
Jingyue Wud7966ff2015-02-03 19:37:06 +000058#include <vector>
59
60#include "llvm/ADT/DenseSet.h"
Jingyue Wu177a8152015-03-26 16:49:24 +000061#include "llvm/ADT/FoldingSet.h"
62#include "llvm/Analysis/ScalarEvolution.h"
63#include "llvm/Analysis/TargetTransformInfo.h"
Jingyue Wu80a96d292015-05-15 17:07:48 +000064#include "llvm/Analysis/ValueTracking.h"
Jingyue Wu177a8152015-03-26 16:49:24 +000065#include "llvm/IR/DataLayout.h"
Jingyue Wud7966ff2015-02-03 19:37:06 +000066#include "llvm/IR/Dominators.h"
67#include "llvm/IR/IRBuilder.h"
68#include "llvm/IR/Module.h"
69#include "llvm/IR/PatternMatch.h"
70#include "llvm/Support/raw_ostream.h"
71#include "llvm/Transforms/Scalar.h"
Jingyue Wuf1edf3e2015-04-21 19:56:18 +000072#include "llvm/Transforms/Utils/Local.h"
Jingyue Wud7966ff2015-02-03 19:37:06 +000073
74using namespace llvm;
75using namespace PatternMatch;
76
77namespace {
78
79class StraightLineStrengthReduce : public FunctionPass {
Jingyue Wu177a8152015-03-26 16:49:24 +000080public:
Jingyue Wu43885eb2015-04-15 16:46:13 +000081 // SLSR candidate. Such a candidate must be in one of the forms described in
82 // the header comments.
Jingyue Wud7966ff2015-02-03 19:37:06 +000083 struct Candidate : public ilist_node<Candidate> {
Jingyue Wu177a8152015-03-26 16:49:24 +000084 enum Kind {
85 Invalid, // reserved for the default constructor
Jingyue Wu43885eb2015-04-15 16:46:13 +000086 Add, // B + i * S
Jingyue Wu177a8152015-03-26 16:49:24 +000087 Mul, // (B + i) * S
88 GEP, // &B[..][i * S][..]
89 };
90
91 Candidate()
92 : CandidateKind(Invalid), Base(nullptr), Index(nullptr),
93 Stride(nullptr), Ins(nullptr), Basis(nullptr) {}
94 Candidate(Kind CT, const SCEV *B, ConstantInt *Idx, Value *S,
95 Instruction *I)
96 : CandidateKind(CT), Base(B), Index(Idx), Stride(S), Ins(I),
97 Basis(nullptr) {}
98 Kind CandidateKind;
99 const SCEV *Base;
Jingyue Wu43885eb2015-04-15 16:46:13 +0000100 // Note that Index and Stride of a GEP candidate do not necessarily have the
101 // same integer type. In that case, during rewriting, Stride will be
Jingyue Wu177a8152015-03-26 16:49:24 +0000102 // sign-extended or truncated to Index's type.
Jingyue Wud7966ff2015-02-03 19:37:06 +0000103 ConstantInt *Index;
104 Value *Stride;
105 // The instruction this candidate corresponds to. It helps us to rewrite a
106 // candidate with respect to its immediate basis. Note that one instruction
Jingyue Wu43885eb2015-04-15 16:46:13 +0000107 // can correspond to multiple candidates depending on how you associate the
Jingyue Wud7966ff2015-02-03 19:37:06 +0000108 // expression. For instance,
109 //
110 // (a + 1) * (b + 2)
111 //
112 // can be treated as
113 //
114 // <Base: a, Index: 1, Stride: b + 2>
115 //
116 // or
117 //
118 // <Base: b, Index: 2, Stride: a + 1>
119 Instruction *Ins;
120 // Points to the immediate basis of this candidate, or nullptr if we cannot
121 // find any basis for this candidate.
122 Candidate *Basis;
123 };
124
125 static char ID;
126
Jingyue Wu177a8152015-03-26 16:49:24 +0000127 StraightLineStrengthReduce()
128 : FunctionPass(ID), DL(nullptr), DT(nullptr), TTI(nullptr) {
Jingyue Wud7966ff2015-02-03 19:37:06 +0000129 initializeStraightLineStrengthReducePass(*PassRegistry::getPassRegistry());
130 }
131
132 void getAnalysisUsage(AnalysisUsage &AU) const override {
133 AU.addRequired<DominatorTreeWrapperPass>();
Jingyue Wu177a8152015-03-26 16:49:24 +0000134 AU.addRequired<ScalarEvolution>();
135 AU.addRequired<TargetTransformInfoWrapperPass>();
Jingyue Wud7966ff2015-02-03 19:37:06 +0000136 // We do not modify the shape of the CFG.
137 AU.setPreservesCFG();
138 }
139
Jingyue Wu177a8152015-03-26 16:49:24 +0000140 bool doInitialization(Module &M) override {
141 DL = &M.getDataLayout();
142 return false;
143 }
144
Jingyue Wud7966ff2015-02-03 19:37:06 +0000145 bool runOnFunction(Function &F) override;
146
Jingyue Wu177a8152015-03-26 16:49:24 +0000147private:
Jingyue Wud7966ff2015-02-03 19:37:06 +0000148 // Returns true if Basis is a basis for C, i.e., Basis dominates C and they
149 // share the same base and stride.
150 bool isBasisFor(const Candidate &Basis, const Candidate &C);
Jingyue Wu43885eb2015-04-15 16:46:13 +0000151 // Returns whether the candidate can be folded into an addressing mode.
152 bool isFoldable(const Candidate &C, TargetTransformInfo *TTI,
153 const DataLayout *DL);
154 // Returns true if C is already in a simplest form and not worth being
155 // rewritten.
156 bool isSimplestForm(const Candidate &C);
Jingyue Wud7966ff2015-02-03 19:37:06 +0000157 // Checks whether I is in a candidate form. If so, adds all the matching forms
158 // to Candidates, and tries to find the immediate basis for each of them.
Jingyue Wu43885eb2015-04-15 16:46:13 +0000159 void allocateCandidatesAndFindBasis(Instruction *I);
160 // Allocate candidates and find bases for Add instructions.
161 void allocateCandidatesAndFindBasisForAdd(Instruction *I);
162 // Given I = LHS + RHS, factors RHS into i * S and makes (LHS + i * S) a
163 // candidate.
164 void allocateCandidatesAndFindBasisForAdd(Value *LHS, Value *RHS,
165 Instruction *I);
Jingyue Wu177a8152015-03-26 16:49:24 +0000166 // Allocate candidates and find bases for Mul instructions.
Jingyue Wu43885eb2015-04-15 16:46:13 +0000167 void allocateCandidatesAndFindBasisForMul(Instruction *I);
Jingyue Wu177a8152015-03-26 16:49:24 +0000168 // Splits LHS into Base + Index and, if succeeds, calls
Jingyue Wu43885eb2015-04-15 16:46:13 +0000169 // allocateCandidatesAndFindBasis.
170 void allocateCandidatesAndFindBasisForMul(Value *LHS, Value *RHS,
171 Instruction *I);
Jingyue Wu177a8152015-03-26 16:49:24 +0000172 // Allocate candidates and find bases for GetElementPtr instructions.
Jingyue Wu43885eb2015-04-15 16:46:13 +0000173 void allocateCandidatesAndFindBasisForGEP(GetElementPtrInst *GEP);
Jingyue Wu177a8152015-03-26 16:49:24 +0000174 // A helper function that scales Idx with ElementSize before invoking
Jingyue Wu43885eb2015-04-15 16:46:13 +0000175 // allocateCandidatesAndFindBasis.
176 void allocateCandidatesAndFindBasisForGEP(const SCEV *B, ConstantInt *Idx,
177 Value *S, uint64_t ElementSize,
178 Instruction *I);
Jingyue Wu177a8152015-03-26 16:49:24 +0000179 // Adds the given form <CT, B, Idx, S> to Candidates, and finds its immediate
180 // basis.
Jingyue Wu43885eb2015-04-15 16:46:13 +0000181 void allocateCandidatesAndFindBasis(Candidate::Kind CT, const SCEV *B,
182 ConstantInt *Idx, Value *S,
183 Instruction *I);
Jingyue Wud7966ff2015-02-03 19:37:06 +0000184 // Rewrites candidate C with respect to Basis.
185 void rewriteCandidateWithBasis(const Candidate &C, const Candidate &Basis);
Jingyue Wu177a8152015-03-26 16:49:24 +0000186 // A helper function that factors ArrayIdx to a product of a stride and a
Jingyue Wu43885eb2015-04-15 16:46:13 +0000187 // constant index, and invokes allocateCandidatesAndFindBasis with the
Jingyue Wu177a8152015-03-26 16:49:24 +0000188 // factorings.
189 void factorArrayIndex(Value *ArrayIdx, const SCEV *Base, uint64_t ElementSize,
190 GetElementPtrInst *GEP);
191 // Emit code that computes the "bump" from Basis to C. If the candidate is a
192 // GEP and the bump is not divisible by the element size of the GEP, this
193 // function sets the BumpWithUglyGEP flag to notify its caller to bump the
194 // basis using an ugly GEP.
195 static Value *emitBump(const Candidate &Basis, const Candidate &C,
196 IRBuilder<> &Builder, const DataLayout *DL,
197 bool &BumpWithUglyGEP);
Jingyue Wud7966ff2015-02-03 19:37:06 +0000198
Jingyue Wu177a8152015-03-26 16:49:24 +0000199 const DataLayout *DL;
Jingyue Wud7966ff2015-02-03 19:37:06 +0000200 DominatorTree *DT;
Jingyue Wu177a8152015-03-26 16:49:24 +0000201 ScalarEvolution *SE;
202 TargetTransformInfo *TTI;
Jingyue Wud7966ff2015-02-03 19:37:06 +0000203 ilist<Candidate> Candidates;
204 // Temporarily holds all instructions that are unlinked (but not deleted) by
205 // rewriteCandidateWithBasis. These instructions will be actually removed
206 // after all rewriting finishes.
Jingyue Wu43885eb2015-04-15 16:46:13 +0000207 std::vector<Instruction *> UnlinkedInstructions;
Jingyue Wud7966ff2015-02-03 19:37:06 +0000208};
209} // anonymous namespace
210
211char StraightLineStrengthReduce::ID = 0;
212INITIALIZE_PASS_BEGIN(StraightLineStrengthReduce, "slsr",
213 "Straight line strength reduction", false, false)
214INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
Jingyue Wu177a8152015-03-26 16:49:24 +0000215INITIALIZE_PASS_DEPENDENCY(ScalarEvolution)
216INITIALIZE_PASS_DEPENDENCY(TargetTransformInfoWrapperPass)
Jingyue Wud7966ff2015-02-03 19:37:06 +0000217INITIALIZE_PASS_END(StraightLineStrengthReduce, "slsr",
218 "Straight line strength reduction", false, false)
219
220FunctionPass *llvm::createStraightLineStrengthReducePass() {
221 return new StraightLineStrengthReduce();
222}
223
224bool StraightLineStrengthReduce::isBasisFor(const Candidate &Basis,
225 const Candidate &C) {
226 return (Basis.Ins != C.Ins && // skip the same instruction
Jingyue Wu3abde7b2015-06-28 17:45:05 +0000227 // They must have the same type too. Basis.Base == C.Base doesn't
228 // guarantee their types are the same (PR23975).
229 Basis.Ins->getType() == C.Ins->getType() &&
Jingyue Wud7966ff2015-02-03 19:37:06 +0000230 // Basis must dominate C in order to rewrite C with respect to Basis.
231 DT->dominates(Basis.Ins->getParent(), C.Ins->getParent()) &&
Jingyue Wu177a8152015-03-26 16:49:24 +0000232 // They share the same base, stride, and candidate kind.
Jingyue Wu3abde7b2015-06-28 17:45:05 +0000233 Basis.Base == C.Base && Basis.Stride == C.Stride &&
Jingyue Wu177a8152015-03-26 16:49:24 +0000234 Basis.CandidateKind == C.CandidateKind);
235}
236
Jingyue Wu43885eb2015-04-15 16:46:13 +0000237static bool isGEPFoldable(GetElementPtrInst *GEP,
238 const TargetTransformInfo *TTI,
239 const DataLayout *DL) {
Jingyue Wu177a8152015-03-26 16:49:24 +0000240 GlobalVariable *BaseGV = nullptr;
241 int64_t BaseOffset = 0;
242 bool HasBaseReg = false;
243 int64_t Scale = 0;
244
245 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(GEP->getPointerOperand()))
246 BaseGV = GV;
247 else
248 HasBaseReg = true;
249
250 gep_type_iterator GTI = gep_type_begin(GEP);
251 for (auto I = GEP->idx_begin(); I != GEP->idx_end(); ++I, ++GTI) {
252 if (isa<SequentialType>(*GTI)) {
253 int64_t ElementSize = DL->getTypeAllocSize(GTI.getIndexedType());
254 if (ConstantInt *ConstIdx = dyn_cast<ConstantInt>(*I)) {
255 BaseOffset += ConstIdx->getSExtValue() * ElementSize;
256 } else {
257 // Needs scale register.
258 if (Scale != 0) {
259 // No addressing mode takes two scale registers.
260 return false;
261 }
262 Scale = ElementSize;
263 }
264 } else {
265 StructType *STy = cast<StructType>(*GTI);
266 uint64_t Field = cast<ConstantInt>(*I)->getZExtValue();
267 BaseOffset += DL->getStructLayout(STy)->getElementOffset(Field);
268 }
269 }
Matt Arsenault91f90e62015-06-11 16:13:39 +0000270
271 unsigned AddrSpace = GEP->getPointerAddressSpace();
Jingyue Wu177a8152015-03-26 16:49:24 +0000272 return TTI->isLegalAddressingMode(GEP->getType()->getElementType(), BaseGV,
Matt Arsenault91f90e62015-06-11 16:13:39 +0000273 BaseOffset, HasBaseReg, Scale, AddrSpace);
Jingyue Wud7966ff2015-02-03 19:37:06 +0000274}
275
Jingyue Wu43885eb2015-04-15 16:46:13 +0000276// Returns whether (Base + Index * Stride) can be folded to an addressing mode.
277static bool isAddFoldable(const SCEV *Base, ConstantInt *Index, Value *Stride,
278 TargetTransformInfo *TTI) {
279 return TTI->isLegalAddressingMode(Base->getType(), nullptr, 0, true,
280 Index->getSExtValue());
281}
282
283bool StraightLineStrengthReduce::isFoldable(const Candidate &C,
284 TargetTransformInfo *TTI,
285 const DataLayout *DL) {
286 if (C.CandidateKind == Candidate::Add)
287 return isAddFoldable(C.Base, C.Index, C.Stride, TTI);
288 if (C.CandidateKind == Candidate::GEP)
289 return isGEPFoldable(cast<GetElementPtrInst>(C.Ins), TTI, DL);
290 return false;
291}
292
293// Returns true if GEP has zero or one non-zero index.
294static bool hasOnlyOneNonZeroIndex(GetElementPtrInst *GEP) {
295 unsigned NumNonZeroIndices = 0;
296 for (auto I = GEP->idx_begin(); I != GEP->idx_end(); ++I) {
297 ConstantInt *ConstIdx = dyn_cast<ConstantInt>(*I);
298 if (ConstIdx == nullptr || !ConstIdx->isZero())
299 ++NumNonZeroIndices;
300 }
301 return NumNonZeroIndices <= 1;
302}
303
304bool StraightLineStrengthReduce::isSimplestForm(const Candidate &C) {
305 if (C.CandidateKind == Candidate::Add) {
306 // B + 1 * S or B + (-1) * S
307 return C.Index->isOne() || C.Index->isMinusOne();
308 }
309 if (C.CandidateKind == Candidate::Mul) {
310 // (B + 0) * S
311 return C.Index->isZero();
312 }
313 if (C.CandidateKind == Candidate::GEP) {
314 // (char*)B + S or (char*)B - S
315 return ((C.Index->isOne() || C.Index->isMinusOne()) &&
316 hasOnlyOneNonZeroIndex(cast<GetElementPtrInst>(C.Ins)));
317 }
318 return false;
319}
320
321// TODO: We currently implement an algorithm whose time complexity is linear in
322// the number of existing candidates. However, we could do better by using
323// ScopedHashTable. Specifically, while traversing the dominator tree, we could
324// maintain all the candidates that dominate the basic block being traversed in
325// a ScopedHashTable. This hash table is indexed by the base and the stride of
326// a candidate. Therefore, finding the immediate basis of a candidate boils down
327// to one hash-table look up.
328void StraightLineStrengthReduce::allocateCandidatesAndFindBasis(
Jingyue Wu177a8152015-03-26 16:49:24 +0000329 Candidate::Kind CT, const SCEV *B, ConstantInt *Idx, Value *S,
330 Instruction *I) {
Jingyue Wu177a8152015-03-26 16:49:24 +0000331 Candidate C(CT, B, Idx, S, I);
Jingyue Wu43885eb2015-04-15 16:46:13 +0000332 // SLSR can complicate an instruction in two cases:
333 //
334 // 1. If we can fold I into an addressing mode, computing I is likely free or
335 // takes only one instruction.
336 //
337 // 2. I is already in a simplest form. For example, when
338 // X = B + 8 * S
339 // Y = B + S,
340 // rewriting Y to X - 7 * S is probably a bad idea.
341 //
342 // In the above cases, we still add I to the candidate list so that I can be
343 // the basis of other candidates, but we leave I's basis blank so that I
344 // won't be rewritten.
345 if (!isFoldable(C, TTI, DL) && !isSimplestForm(C)) {
346 // Try to compute the immediate basis of C.
347 unsigned NumIterations = 0;
348 // Limit the scan radius to avoid running in quadratice time.
349 static const unsigned MaxNumIterations = 50;
350 for (auto Basis = Candidates.rbegin();
351 Basis != Candidates.rend() && NumIterations < MaxNumIterations;
352 ++Basis, ++NumIterations) {
353 if (isBasisFor(*Basis, C)) {
354 C.Basis = &(*Basis);
355 break;
356 }
Jingyue Wud7966ff2015-02-03 19:37:06 +0000357 }
358 }
359 // Regardless of whether we find a basis for C, we need to push C to the
Jingyue Wu43885eb2015-04-15 16:46:13 +0000360 // candidate list so that it can be the basis of other candidates.
Jingyue Wud7966ff2015-02-03 19:37:06 +0000361 Candidates.push_back(C);
362}
363
Jingyue Wu43885eb2015-04-15 16:46:13 +0000364void StraightLineStrengthReduce::allocateCandidatesAndFindBasis(
365 Instruction *I) {
Jingyue Wu177a8152015-03-26 16:49:24 +0000366 switch (I->getOpcode()) {
Jingyue Wu43885eb2015-04-15 16:46:13 +0000367 case Instruction::Add:
368 allocateCandidatesAndFindBasisForAdd(I);
369 break;
Jingyue Wu177a8152015-03-26 16:49:24 +0000370 case Instruction::Mul:
Jingyue Wu43885eb2015-04-15 16:46:13 +0000371 allocateCandidatesAndFindBasisForMul(I);
Jingyue Wu177a8152015-03-26 16:49:24 +0000372 break;
373 case Instruction::GetElementPtr:
Jingyue Wu43885eb2015-04-15 16:46:13 +0000374 allocateCandidatesAndFindBasisForGEP(cast<GetElementPtrInst>(I));
Jingyue Wu177a8152015-03-26 16:49:24 +0000375 break;
376 }
377}
378
Jingyue Wu43885eb2015-04-15 16:46:13 +0000379void StraightLineStrengthReduce::allocateCandidatesAndFindBasisForAdd(
380 Instruction *I) {
381 // Try matching B + i * S.
382 if (!isa<IntegerType>(I->getType()))
383 return;
384
385 assert(I->getNumOperands() == 2 && "isn't I an add?");
386 Value *LHS = I->getOperand(0), *RHS = I->getOperand(1);
387 allocateCandidatesAndFindBasisForAdd(LHS, RHS, I);
388 if (LHS != RHS)
389 allocateCandidatesAndFindBasisForAdd(RHS, LHS, I);
390}
391
392void StraightLineStrengthReduce::allocateCandidatesAndFindBasisForAdd(
393 Value *LHS, Value *RHS, Instruction *I) {
394 Value *S = nullptr;
395 ConstantInt *Idx = nullptr;
396 if (match(RHS, m_Mul(m_Value(S), m_ConstantInt(Idx)))) {
397 // I = LHS + RHS = LHS + Idx * S
398 allocateCandidatesAndFindBasis(Candidate::Add, SE->getSCEV(LHS), Idx, S, I);
399 } else if (match(RHS, m_Shl(m_Value(S), m_ConstantInt(Idx)))) {
400 // I = LHS + RHS = LHS + (S << Idx) = LHS + S * (1 << Idx)
401 APInt One(Idx->getBitWidth(), 1);
402 Idx = ConstantInt::get(Idx->getContext(), One << Idx->getValue());
403 allocateCandidatesAndFindBasis(Candidate::Add, SE->getSCEV(LHS), Idx, S, I);
404 } else {
405 // At least, I = LHS + 1 * RHS
406 ConstantInt *One = ConstantInt::get(cast<IntegerType>(I->getType()), 1);
407 allocateCandidatesAndFindBasis(Candidate::Add, SE->getSCEV(LHS), One, RHS,
408 I);
409 }
410}
411
Jingyue Wu80a96d292015-05-15 17:07:48 +0000412// Returns true if A matches B + C where C is constant.
413static bool matchesAdd(Value *A, Value *&B, ConstantInt *&C) {
414 return (match(A, m_Add(m_Value(B), m_ConstantInt(C))) ||
415 match(A, m_Add(m_ConstantInt(C), m_Value(B))));
416}
417
418// Returns true if A matches B | C where C is constant.
419static bool matchesOr(Value *A, Value *&B, ConstantInt *&C) {
420 return (match(A, m_Or(m_Value(B), m_ConstantInt(C))) ||
421 match(A, m_Or(m_ConstantInt(C), m_Value(B))));
422}
423
Jingyue Wu43885eb2015-04-15 16:46:13 +0000424void StraightLineStrengthReduce::allocateCandidatesAndFindBasisForMul(
Jingyue Wu177a8152015-03-26 16:49:24 +0000425 Value *LHS, Value *RHS, Instruction *I) {
Jingyue Wud7966ff2015-02-03 19:37:06 +0000426 Value *B = nullptr;
427 ConstantInt *Idx = nullptr;
Jingyue Wu80a96d292015-05-15 17:07:48 +0000428 if (matchesAdd(LHS, B, Idx)) {
Jingyue Wu177a8152015-03-26 16:49:24 +0000429 // If LHS is in the form of "Base + Index", then I is in the form of
430 // "(Base + Index) * RHS".
Jingyue Wu43885eb2015-04-15 16:46:13 +0000431 allocateCandidatesAndFindBasis(Candidate::Mul, SE->getSCEV(B), Idx, RHS, I);
Jingyue Wu80a96d292015-05-15 17:07:48 +0000432 } else if (matchesOr(LHS, B, Idx) && haveNoCommonBitsSet(B, Idx, *DL)) {
433 // If LHS is in the form of "Base | Index" and Base and Index have no common
434 // bits set, then
435 // Base | Index = Base + Index
436 // and I is thus in the form of "(Base + Index) * RHS".
437 allocateCandidatesAndFindBasis(Candidate::Mul, SE->getSCEV(B), Idx, RHS, I);
Jingyue Wu177a8152015-03-26 16:49:24 +0000438 } else {
439 // Otherwise, at least try the form (LHS + 0) * RHS.
440 ConstantInt *Zero = ConstantInt::get(cast<IntegerType>(I->getType()), 0);
Jingyue Wu43885eb2015-04-15 16:46:13 +0000441 allocateCandidatesAndFindBasis(Candidate::Mul, SE->getSCEV(LHS), Zero, RHS,
Jingyue Wu80a96d292015-05-15 17:07:48 +0000442 I);
Jingyue Wud7966ff2015-02-03 19:37:06 +0000443 }
444}
445
Jingyue Wu43885eb2015-04-15 16:46:13 +0000446void StraightLineStrengthReduce::allocateCandidatesAndFindBasisForMul(
Jingyue Wu177a8152015-03-26 16:49:24 +0000447 Instruction *I) {
448 // Try matching (B + i) * S.
449 // TODO: we could extend SLSR to float and vector types.
450 if (!isa<IntegerType>(I->getType()))
451 return;
452
Jingyue Wu43885eb2015-04-15 16:46:13 +0000453 assert(I->getNumOperands() == 2 && "isn't I a mul?");
Jingyue Wu177a8152015-03-26 16:49:24 +0000454 Value *LHS = I->getOperand(0), *RHS = I->getOperand(1);
Jingyue Wu43885eb2015-04-15 16:46:13 +0000455 allocateCandidatesAndFindBasisForMul(LHS, RHS, I);
Jingyue Wu177a8152015-03-26 16:49:24 +0000456 if (LHS != RHS) {
457 // Symmetrically, try to split RHS to Base + Index.
Jingyue Wu43885eb2015-04-15 16:46:13 +0000458 allocateCandidatesAndFindBasisForMul(RHS, LHS, I);
Jingyue Wu177a8152015-03-26 16:49:24 +0000459 }
460}
461
Jingyue Wu43885eb2015-04-15 16:46:13 +0000462void StraightLineStrengthReduce::allocateCandidatesAndFindBasisForGEP(
Jingyue Wu177a8152015-03-26 16:49:24 +0000463 const SCEV *B, ConstantInt *Idx, Value *S, uint64_t ElementSize,
464 Instruction *I) {
Jingyue Wu99a6bed2015-04-02 21:18:32 +0000465 // I = B + sext(Idx *nsw S) * ElementSize
466 // = B + (sext(Idx) * sext(S)) * ElementSize
Jingyue Wu177a8152015-03-26 16:49:24 +0000467 // = B + (sext(Idx) * ElementSize) * sext(S)
468 // Casting to IntegerType is safe because we skipped vector GEPs.
469 IntegerType *IntPtrTy = cast<IntegerType>(DL->getIntPtrType(I->getType()));
470 ConstantInt *ScaledIdx = ConstantInt::get(
471 IntPtrTy, Idx->getSExtValue() * (int64_t)ElementSize, true);
Jingyue Wu43885eb2015-04-15 16:46:13 +0000472 allocateCandidatesAndFindBasis(Candidate::GEP, B, ScaledIdx, S, I);
Jingyue Wu177a8152015-03-26 16:49:24 +0000473}
474
475void StraightLineStrengthReduce::factorArrayIndex(Value *ArrayIdx,
476 const SCEV *Base,
477 uint64_t ElementSize,
478 GetElementPtrInst *GEP) {
Jingyue Wu43885eb2015-04-15 16:46:13 +0000479 // At least, ArrayIdx = ArrayIdx *nsw 1.
480 allocateCandidatesAndFindBasisForGEP(
Jingyue Wu177a8152015-03-26 16:49:24 +0000481 Base, ConstantInt::get(cast<IntegerType>(ArrayIdx->getType()), 1),
482 ArrayIdx, ElementSize, GEP);
483 Value *LHS = nullptr;
484 ConstantInt *RHS = nullptr;
Jingyue Wu177a8152015-03-26 16:49:24 +0000485 // One alternative is matching the SCEV of ArrayIdx instead of ArrayIdx
486 // itself. This would allow us to handle the shl case for free. However,
487 // matching SCEVs has two issues:
488 //
489 // 1. this would complicate rewriting because the rewriting procedure
490 // would have to translate SCEVs back to IR instructions. This translation
491 // is difficult when LHS is further evaluated to a composite SCEV.
492 //
493 // 2. ScalarEvolution is designed to be control-flow oblivious. It tends
494 // to strip nsw/nuw flags which are critical for SLSR to trace into
495 // sext'ed multiplication.
496 if (match(ArrayIdx, m_NSWMul(m_Value(LHS), m_ConstantInt(RHS)))) {
497 // SLSR is currently unsafe if i * S may overflow.
Jingyue Wu99a6bed2015-04-02 21:18:32 +0000498 // GEP = Base + sext(LHS *nsw RHS) * ElementSize
Jingyue Wu43885eb2015-04-15 16:46:13 +0000499 allocateCandidatesAndFindBasisForGEP(Base, RHS, LHS, ElementSize, GEP);
Jingyue Wu96d74002015-04-06 17:15:48 +0000500 } else if (match(ArrayIdx, m_NSWShl(m_Value(LHS), m_ConstantInt(RHS)))) {
501 // GEP = Base + sext(LHS <<nsw RHS) * ElementSize
502 // = Base + sext(LHS *nsw (1 << RHS)) * ElementSize
503 APInt One(RHS->getBitWidth(), 1);
504 ConstantInt *PowerOf2 =
505 ConstantInt::get(RHS->getContext(), One << RHS->getValue());
Jingyue Wu43885eb2015-04-15 16:46:13 +0000506 allocateCandidatesAndFindBasisForGEP(Base, PowerOf2, LHS, ElementSize, GEP);
Jingyue Wu177a8152015-03-26 16:49:24 +0000507 }
508}
509
Jingyue Wu43885eb2015-04-15 16:46:13 +0000510void StraightLineStrengthReduce::allocateCandidatesAndFindBasisForGEP(
Jingyue Wu177a8152015-03-26 16:49:24 +0000511 GetElementPtrInst *GEP) {
512 // TODO: handle vector GEPs
513 if (GEP->getType()->isVectorTy())
514 return;
515
Jingyue Wu2982d4d2015-05-18 17:03:25 +0000516 SmallVector<const SCEV *, 4> IndexExprs;
517 for (auto I = GEP->idx_begin(); I != GEP->idx_end(); ++I)
518 IndexExprs.push_back(SE->getSCEV(*I));
Jingyue Wu177a8152015-03-26 16:49:24 +0000519
520 gep_type_iterator GTI = gep_type_begin(GEP);
Jingyue Wu2982d4d2015-05-18 17:03:25 +0000521 for (unsigned I = 1, E = GEP->getNumOperands(); I != E; ++I) {
Jingyue Wu177a8152015-03-26 16:49:24 +0000522 if (!isa<SequentialType>(*GTI++))
523 continue;
Jingyue Wu2982d4d2015-05-18 17:03:25 +0000524
525 const SCEV *OrigIndexExpr = IndexExprs[I - 1];
526 IndexExprs[I - 1] = SE->getConstant(OrigIndexExpr->getType(), 0);
527
528 // The base of this candidate is GEP's base plus the offsets of all
529 // indices except this current one.
530 const SCEV *BaseExpr = SE->getGEPExpr(GEP->getSourceElementType(),
531 SE->getSCEV(GEP->getPointerOperand()),
532 IndexExprs, GEP->isInBounds());
533 Value *ArrayIdx = GEP->getOperand(I);
Jingyue Wu177a8152015-03-26 16:49:24 +0000534 uint64_t ElementSize = DL->getTypeAllocSize(*GTI);
Jingyue Wu2982d4d2015-05-18 17:03:25 +0000535 factorArrayIndex(ArrayIdx, BaseExpr, ElementSize, GEP);
Jingyue Wu177a8152015-03-26 16:49:24 +0000536 // When ArrayIdx is the sext of a value, we try to factor that value as
537 // well. Handling this case is important because array indices are
538 // typically sign-extended to the pointer size.
539 Value *TruncatedArrayIdx = nullptr;
540 if (match(ArrayIdx, m_SExt(m_Value(TruncatedArrayIdx))))
Jingyue Wu2982d4d2015-05-18 17:03:25 +0000541 factorArrayIndex(TruncatedArrayIdx, BaseExpr, ElementSize, GEP);
542
543 IndexExprs[I - 1] = OrigIndexExpr;
Jingyue Wu177a8152015-03-26 16:49:24 +0000544 }
545}
546
547// A helper function that unifies the bitwidth of A and B.
548static void unifyBitWidth(APInt &A, APInt &B) {
549 if (A.getBitWidth() < B.getBitWidth())
550 A = A.sext(B.getBitWidth());
551 else if (A.getBitWidth() > B.getBitWidth())
552 B = B.sext(A.getBitWidth());
553}
554
555Value *StraightLineStrengthReduce::emitBump(const Candidate &Basis,
556 const Candidate &C,
557 IRBuilder<> &Builder,
558 const DataLayout *DL,
559 bool &BumpWithUglyGEP) {
560 APInt Idx = C.Index->getValue(), BasisIdx = Basis.Index->getValue();
561 unifyBitWidth(Idx, BasisIdx);
562 APInt IndexOffset = Idx - BasisIdx;
563
564 BumpWithUglyGEP = false;
565 if (Basis.CandidateKind == Candidate::GEP) {
566 APInt ElementSize(
567 IndexOffset.getBitWidth(),
568 DL->getTypeAllocSize(
569 cast<GetElementPtrInst>(Basis.Ins)->getType()->getElementType()));
570 APInt Q, R;
571 APInt::sdivrem(IndexOffset, ElementSize, Q, R);
572 if (R.getSExtValue() == 0)
573 IndexOffset = Q;
574 else
575 BumpWithUglyGEP = true;
576 }
Jingyue Wu43885eb2015-04-15 16:46:13 +0000577
Jingyue Wu177a8152015-03-26 16:49:24 +0000578 // Compute Bump = C - Basis = (i' - i) * S.
579 // Common case 1: if (i' - i) is 1, Bump = S.
580 if (IndexOffset.getSExtValue() == 1)
581 return C.Stride;
582 // Common case 2: if (i' - i) is -1, Bump = -S.
583 if (IndexOffset.getSExtValue() == -1)
584 return Builder.CreateNeg(C.Stride);
Jingyue Wu43885eb2015-04-15 16:46:13 +0000585
586 // Otherwise, Bump = (i' - i) * sext/trunc(S). Note that (i' - i) and S may
587 // have different bit widths.
588 IntegerType *DeltaType =
589 IntegerType::get(Basis.Ins->getContext(), IndexOffset.getBitWidth());
590 Value *ExtendedStride = Builder.CreateSExtOrTrunc(C.Stride, DeltaType);
591 if (IndexOffset.isPowerOf2()) {
592 // If (i' - i) is a power of 2, Bump = sext/trunc(S) << log(i' - i).
593 ConstantInt *Exponent = ConstantInt::get(DeltaType, IndexOffset.logBase2());
594 return Builder.CreateShl(ExtendedStride, Exponent);
595 }
596 if ((-IndexOffset).isPowerOf2()) {
597 // If (i - i') is a power of 2, Bump = -sext/trunc(S) << log(i' - i).
598 ConstantInt *Exponent =
599 ConstantInt::get(DeltaType, (-IndexOffset).logBase2());
600 return Builder.CreateNeg(Builder.CreateShl(ExtendedStride, Exponent));
601 }
602 Constant *Delta = ConstantInt::get(DeltaType, IndexOffset);
Jingyue Wu177a8152015-03-26 16:49:24 +0000603 return Builder.CreateMul(ExtendedStride, Delta);
604}
605
Jingyue Wud7966ff2015-02-03 19:37:06 +0000606void StraightLineStrengthReduce::rewriteCandidateWithBasis(
607 const Candidate &C, const Candidate &Basis) {
Jingyue Wu177a8152015-03-26 16:49:24 +0000608 assert(C.CandidateKind == Basis.CandidateKind && C.Base == Basis.Base &&
609 C.Stride == Basis.Stride);
Jingyue Wu43885eb2015-04-15 16:46:13 +0000610 // We run rewriteCandidateWithBasis on all candidates in a post-order, so the
611 // basis of a candidate cannot be unlinked before the candidate.
612 assert(Basis.Ins->getParent() != nullptr && "the basis is unlinked");
Jingyue Wu177a8152015-03-26 16:49:24 +0000613
Jingyue Wud7966ff2015-02-03 19:37:06 +0000614 // An instruction can correspond to multiple candidates. Therefore, instead of
615 // simply deleting an instruction when we rewrite it, we mark its parent as
616 // nullptr (i.e. unlink it) so that we can skip the candidates whose
617 // instruction is already rewritten.
618 if (!C.Ins->getParent())
619 return;
Jingyue Wu177a8152015-03-26 16:49:24 +0000620
Jingyue Wud7966ff2015-02-03 19:37:06 +0000621 IRBuilder<> Builder(C.Ins);
Jingyue Wu177a8152015-03-26 16:49:24 +0000622 bool BumpWithUglyGEP;
623 Value *Bump = emitBump(Basis, C, Builder, DL, BumpWithUglyGEP);
624 Value *Reduced = nullptr; // equivalent to but weaker than C.Ins
625 switch (C.CandidateKind) {
Jingyue Wu43885eb2015-04-15 16:46:13 +0000626 case Candidate::Add:
Jingyue Wu177a8152015-03-26 16:49:24 +0000627 case Candidate::Mul:
Jingyue Wuf1edf3e2015-04-21 19:56:18 +0000628 // C = Basis + Bump
Jingyue Wu43885eb2015-04-15 16:46:13 +0000629 if (BinaryOperator::isNeg(Bump)) {
Jingyue Wuf1edf3e2015-04-21 19:56:18 +0000630 // If Bump is a neg instruction, emit C = Basis - (-Bump).
Jingyue Wu43885eb2015-04-15 16:46:13 +0000631 Reduced =
632 Builder.CreateSub(Basis.Ins, BinaryOperator::getNegArgument(Bump));
Jingyue Wuf1edf3e2015-04-21 19:56:18 +0000633 // We only use the negative argument of Bump, and Bump itself may be
634 // trivially dead.
635 RecursivelyDeleteTriviallyDeadInstructions(Bump);
Jingyue Wu43885eb2015-04-15 16:46:13 +0000636 } else {
Jingyue Wua9411292015-06-18 03:35:57 +0000637 // It's tempting to preserve nsw on Bump and/or Reduced. However, it's
638 // usually unsound, e.g.,
639 //
640 // X = (-2 +nsw 1) *nsw INT_MAX
641 // Y = (-2 +nsw 3) *nsw INT_MAX
642 // =>
643 // Y = X + 2 * INT_MAX
644 //
645 // Neither + and * in the resultant expression are nsw.
Jingyue Wu43885eb2015-04-15 16:46:13 +0000646 Reduced = Builder.CreateAdd(Basis.Ins, Bump);
647 }
Jingyue Wu177a8152015-03-26 16:49:24 +0000648 break;
649 case Candidate::GEP:
650 {
651 Type *IntPtrTy = DL->getIntPtrType(C.Ins->getType());
Jingyue Wu99a6bed2015-04-02 21:18:32 +0000652 bool InBounds = cast<GetElementPtrInst>(C.Ins)->isInBounds();
Jingyue Wu177a8152015-03-26 16:49:24 +0000653 if (BumpWithUglyGEP) {
654 // C = (char *)Basis + Bump
655 unsigned AS = Basis.Ins->getType()->getPointerAddressSpace();
656 Type *CharTy = Type::getInt8PtrTy(Basis.Ins->getContext(), AS);
657 Reduced = Builder.CreateBitCast(Basis.Ins, CharTy);
Jingyue Wu99a6bed2015-04-02 21:18:32 +0000658 if (InBounds)
David Blaikieaa41cd52015-04-03 21:33:42 +0000659 Reduced =
660 Builder.CreateInBoundsGEP(Builder.getInt8Ty(), Reduced, Bump);
Jingyue Wu99a6bed2015-04-02 21:18:32 +0000661 else
David Blaikie93c54442015-04-03 19:41:44 +0000662 Reduced = Builder.CreateGEP(Builder.getInt8Ty(), Reduced, Bump);
Jingyue Wu177a8152015-03-26 16:49:24 +0000663 Reduced = Builder.CreateBitCast(Reduced, C.Ins->getType());
664 } else {
665 // C = gep Basis, Bump
666 // Canonicalize bump to pointer size.
667 Bump = Builder.CreateSExtOrTrunc(Bump, IntPtrTy);
Jingyue Wu99a6bed2015-04-02 21:18:32 +0000668 if (InBounds)
David Blaikieaa41cd52015-04-03 21:33:42 +0000669 Reduced = Builder.CreateInBoundsGEP(nullptr, Basis.Ins, Bump);
Jingyue Wu99a6bed2015-04-02 21:18:32 +0000670 else
David Blaikie93c54442015-04-03 19:41:44 +0000671 Reduced = Builder.CreateGEP(nullptr, Basis.Ins, Bump);
Jingyue Wu177a8152015-03-26 16:49:24 +0000672 }
673 }
674 break;
675 default:
676 llvm_unreachable("C.CandidateKind is invalid");
677 };
Jingyue Wud7966ff2015-02-03 19:37:06 +0000678 Reduced->takeName(C.Ins);
679 C.Ins->replaceAllUsesWith(Reduced);
Jingyue Wud7966ff2015-02-03 19:37:06 +0000680 // Unlink C.Ins so that we can skip other candidates also corresponding to
681 // C.Ins. The actual deletion is postponed to the end of runOnFunction.
682 C.Ins->removeFromParent();
Jingyue Wu43885eb2015-04-15 16:46:13 +0000683 UnlinkedInstructions.push_back(C.Ins);
Jingyue Wud7966ff2015-02-03 19:37:06 +0000684}
685
686bool StraightLineStrengthReduce::runOnFunction(Function &F) {
687 if (skipOptnoneFunction(F))
688 return false;
689
Jingyue Wu177a8152015-03-26 16:49:24 +0000690 TTI = &getAnalysis<TargetTransformInfoWrapperPass>().getTTI(F);
Jingyue Wud7966ff2015-02-03 19:37:06 +0000691 DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree();
Jingyue Wu177a8152015-03-26 16:49:24 +0000692 SE = &getAnalysis<ScalarEvolution>();
Jingyue Wud7966ff2015-02-03 19:37:06 +0000693 // Traverse the dominator tree in the depth-first order. This order makes sure
694 // all bases of a candidate are in Candidates when we process it.
695 for (auto node = GraphTraits<DominatorTree *>::nodes_begin(DT);
696 node != GraphTraits<DominatorTree *>::nodes_end(DT); ++node) {
Jingyue Wu177a8152015-03-26 16:49:24 +0000697 for (auto &I : *node->getBlock())
Jingyue Wu43885eb2015-04-15 16:46:13 +0000698 allocateCandidatesAndFindBasis(&I);
Jingyue Wud7966ff2015-02-03 19:37:06 +0000699 }
700
701 // Rewrite candidates in the reverse depth-first order. This order makes sure
702 // a candidate being rewritten is not a basis for any other candidate.
703 while (!Candidates.empty()) {
704 const Candidate &C = Candidates.back();
705 if (C.Basis != nullptr) {
706 rewriteCandidateWithBasis(C, *C.Basis);
707 }
708 Candidates.pop_back();
709 }
710
711 // Delete all unlink instructions.
Jingyue Wuf1edf3e2015-04-21 19:56:18 +0000712 for (auto *UnlinkedInst : UnlinkedInstructions) {
713 for (unsigned I = 0, E = UnlinkedInst->getNumOperands(); I != E; ++I) {
714 Value *Op = UnlinkedInst->getOperand(I);
715 UnlinkedInst->setOperand(I, nullptr);
716 RecursivelyDeleteTriviallyDeadInstructions(Op);
717 }
718 delete UnlinkedInst;
Jingyue Wud7966ff2015-02-03 19:37:06 +0000719 }
720 bool Ret = !UnlinkedInstructions.empty();
721 UnlinkedInstructions.clear();
722 return Ret;
723}