Jingyue Wu | d7966ff | 2015-02-03 19:37:06 +0000 | [diff] [blame] | 1 | //===-- 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 Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 18 | // reduction candidates in the following forms: |
Jingyue Wu | d7966ff | 2015-02-03 19:37:06 +0000 | [diff] [blame] | 19 | // |
Jingyue Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 20 | // Form 1: B + i * S |
| 21 | // Form 2: (B + i) * S |
| 22 | // Form 3: &B[i * S] |
Jingyue Wu | d7966ff | 2015-02-03 19:37:06 +0000 | [diff] [blame] | 23 | // |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 24 | // where S is an integer variable, and i is a constant integer. If we found two |
Jingyue Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 25 | // 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 Wu | d7966ff | 2015-02-03 19:37:06 +0000 | [diff] [blame] | 30 | // |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 31 | // S1: X = (B + i) * S |
Jingyue Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 32 | // S2: Y = (B + i') * S => X + (i' - i) * S |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 33 | // |
| 34 | // S1: X = &B[i * S] |
Jingyue Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 35 | // S2: Y = &B[i' * S] => &X[(i' - i) * S] |
Jingyue Wu | d7966ff | 2015-02-03 19:37:06 +0000 | [diff] [blame] | 36 | // |
Jingyue Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 37 | // Note: (i' - i) * S is folded to the extent possible. |
Jingyue Wu | d7966ff | 2015-02-03 19:37:06 +0000 | [diff] [blame] | 38 | // |
Jingyue Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 39 | // 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 Wu | d7966ff | 2015-02-03 19:37:06 +0000 | [diff] [blame] | 43 | // |
Jingyue Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 44 | // 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 Wu | d7966ff | 2015-02-03 19:37:06 +0000 | [diff] [blame] | 47 | // |
| 48 | // TODO: |
| 49 | // |
Jingyue Wu | d7966ff | 2015-02-03 19:37:06 +0000 | [diff] [blame] | 50 | // - 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 Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 55 | // |
| 56 | // - When (i' - i) is constant but i and i' are not, we could still perform |
| 57 | // SLSR. |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 58 | #include "llvm/Analysis/ScalarEvolution.h" |
| 59 | #include "llvm/Analysis/TargetTransformInfo.h" |
Jingyue Wu | 80a96d29 | 2015-05-15 17:07:48 +0000 | [diff] [blame] | 60 | #include "llvm/Analysis/ValueTracking.h" |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 61 | #include "llvm/IR/DataLayout.h" |
Jingyue Wu | d7966ff | 2015-02-03 19:37:06 +0000 | [diff] [blame] | 62 | #include "llvm/IR/Dominators.h" |
| 63 | #include "llvm/IR/IRBuilder.h" |
| 64 | #include "llvm/IR/Module.h" |
| 65 | #include "llvm/IR/PatternMatch.h" |
| 66 | #include "llvm/Support/raw_ostream.h" |
| 67 | #include "llvm/Transforms/Scalar.h" |
Jingyue Wu | f1edf3e | 2015-04-21 19:56:18 +0000 | [diff] [blame] | 68 | #include "llvm/Transforms/Utils/Local.h" |
Duncan P. N. Exon Smith | 8b4e4af | 2016-09-11 21:29:34 +0000 | [diff] [blame] | 69 | #include <list> |
Duncan P. N. Exon Smith | 077f5b4 | 2016-09-11 21:04:36 +0000 | [diff] [blame] | 70 | #include <vector> |
Jingyue Wu | d7966ff | 2015-02-03 19:37:06 +0000 | [diff] [blame] | 71 | |
| 72 | using namespace llvm; |
| 73 | using namespace PatternMatch; |
| 74 | |
| 75 | namespace { |
| 76 | |
Matt Arsenault | ba437c6 | 2016-04-27 00:32:09 +0000 | [diff] [blame] | 77 | static const unsigned UnknownAddressSpace = ~0u; |
| 78 | |
Jingyue Wu | d7966ff | 2015-02-03 19:37:06 +0000 | [diff] [blame] | 79 | class StraightLineStrengthReduce : public FunctionPass { |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 80 | public: |
Jingyue Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 81 | // SLSR candidate. Such a candidate must be in one of the forms described in |
| 82 | // the header comments. |
Duncan P. N. Exon Smith | 8b4e4af | 2016-09-11 21:29:34 +0000 | [diff] [blame] | 83 | struct Candidate { |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 84 | enum Kind { |
| 85 | Invalid, // reserved for the default constructor |
Jingyue Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 86 | Add, // B + i * S |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 87 | 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 Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 100 | // 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 Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 102 | // sign-extended or truncated to Index's type. |
Jingyue Wu | d7966ff | 2015-02-03 19:37:06 +0000 | [diff] [blame] | 103 | 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 Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 107 | // can correspond to multiple candidates depending on how you associate the |
Jingyue Wu | d7966ff | 2015-02-03 19:37:06 +0000 | [diff] [blame] | 108 | // 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 Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 127 | StraightLineStrengthReduce() |
| 128 | : FunctionPass(ID), DL(nullptr), DT(nullptr), TTI(nullptr) { |
Jingyue Wu | d7966ff | 2015-02-03 19:37:06 +0000 | [diff] [blame] | 129 | initializeStraightLineStrengthReducePass(*PassRegistry::getPassRegistry()); |
| 130 | } |
| 131 | |
| 132 | void getAnalysisUsage(AnalysisUsage &AU) const override { |
| 133 | AU.addRequired<DominatorTreeWrapperPass>(); |
Chandler Carruth | 2f1fd16 | 2015-08-17 02:08:17 +0000 | [diff] [blame] | 134 | AU.addRequired<ScalarEvolutionWrapperPass>(); |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 135 | AU.addRequired<TargetTransformInfoWrapperPass>(); |
Jingyue Wu | d7966ff | 2015-02-03 19:37:06 +0000 | [diff] [blame] | 136 | // We do not modify the shape of the CFG. |
| 137 | AU.setPreservesCFG(); |
| 138 | } |
| 139 | |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 140 | bool doInitialization(Module &M) override { |
| 141 | DL = &M.getDataLayout(); |
| 142 | return false; |
| 143 | } |
| 144 | |
Jingyue Wu | d7966ff | 2015-02-03 19:37:06 +0000 | [diff] [blame] | 145 | bool runOnFunction(Function &F) override; |
| 146 | |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 147 | private: |
Jingyue Wu | d7966ff | 2015-02-03 19:37:06 +0000 | [diff] [blame] | 148 | // 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 Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 151 | // 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 Wu | d7966ff | 2015-02-03 19:37:06 +0000 | [diff] [blame] | 157 | // 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 Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 159 | 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 Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 166 | // Allocate candidates and find bases for Mul instructions. |
Jingyue Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 167 | void allocateCandidatesAndFindBasisForMul(Instruction *I); |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 168 | // Splits LHS into Base + Index and, if succeeds, calls |
Jingyue Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 169 | // allocateCandidatesAndFindBasis. |
| 170 | void allocateCandidatesAndFindBasisForMul(Value *LHS, Value *RHS, |
| 171 | Instruction *I); |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 172 | // Allocate candidates and find bases for GetElementPtr instructions. |
Jingyue Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 173 | void allocateCandidatesAndFindBasisForGEP(GetElementPtrInst *GEP); |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 174 | // A helper function that scales Idx with ElementSize before invoking |
Jingyue Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 175 | // allocateCandidatesAndFindBasis. |
| 176 | void allocateCandidatesAndFindBasisForGEP(const SCEV *B, ConstantInt *Idx, |
| 177 | Value *S, uint64_t ElementSize, |
| 178 | Instruction *I); |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 179 | // Adds the given form <CT, B, Idx, S> to Candidates, and finds its immediate |
| 180 | // basis. |
Jingyue Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 181 | void allocateCandidatesAndFindBasis(Candidate::Kind CT, const SCEV *B, |
| 182 | ConstantInt *Idx, Value *S, |
| 183 | Instruction *I); |
Jingyue Wu | d7966ff | 2015-02-03 19:37:06 +0000 | [diff] [blame] | 184 | // Rewrites candidate C with respect to Basis. |
| 185 | void rewriteCandidateWithBasis(const Candidate &C, const Candidate &Basis); |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 186 | // A helper function that factors ArrayIdx to a product of a stride and a |
Jingyue Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 187 | // constant index, and invokes allocateCandidatesAndFindBasis with the |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 188 | // 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 Wu | d7966ff | 2015-02-03 19:37:06 +0000 | [diff] [blame] | 198 | |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 199 | const DataLayout *DL; |
Jingyue Wu | d7966ff | 2015-02-03 19:37:06 +0000 | [diff] [blame] | 200 | DominatorTree *DT; |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 201 | ScalarEvolution *SE; |
| 202 | TargetTransformInfo *TTI; |
Duncan P. N. Exon Smith | 8b4e4af | 2016-09-11 21:29:34 +0000 | [diff] [blame] | 203 | std::list<Candidate> Candidates; |
Jingyue Wu | d7966ff | 2015-02-03 19:37:06 +0000 | [diff] [blame] | 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 Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 207 | std::vector<Instruction *> UnlinkedInstructions; |
Jingyue Wu | d7966ff | 2015-02-03 19:37:06 +0000 | [diff] [blame] | 208 | }; |
| 209 | } // anonymous namespace |
| 210 | |
| 211 | char StraightLineStrengthReduce::ID = 0; |
| 212 | INITIALIZE_PASS_BEGIN(StraightLineStrengthReduce, "slsr", |
| 213 | "Straight line strength reduction", false, false) |
| 214 | INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass) |
Chandler Carruth | 2f1fd16 | 2015-08-17 02:08:17 +0000 | [diff] [blame] | 215 | INITIALIZE_PASS_DEPENDENCY(ScalarEvolutionWrapperPass) |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 216 | INITIALIZE_PASS_DEPENDENCY(TargetTransformInfoWrapperPass) |
Jingyue Wu | d7966ff | 2015-02-03 19:37:06 +0000 | [diff] [blame] | 217 | INITIALIZE_PASS_END(StraightLineStrengthReduce, "slsr", |
| 218 | "Straight line strength reduction", false, false) |
| 219 | |
| 220 | FunctionPass *llvm::createStraightLineStrengthReducePass() { |
| 221 | return new StraightLineStrengthReduce(); |
| 222 | } |
| 223 | |
| 224 | bool StraightLineStrengthReduce::isBasisFor(const Candidate &Basis, |
| 225 | const Candidate &C) { |
| 226 | return (Basis.Ins != C.Ins && // skip the same instruction |
Jingyue Wu | 3abde7b | 2015-06-28 17:45:05 +0000 | [diff] [blame] | 227 | // 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 Wu | d7966ff | 2015-02-03 19:37:06 +0000 | [diff] [blame] | 230 | // Basis must dominate C in order to rewrite C with respect to Basis. |
| 231 | DT->dominates(Basis.Ins->getParent(), C.Ins->getParent()) && |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 232 | // They share the same base, stride, and candidate kind. |
Jingyue Wu | 3abde7b | 2015-06-28 17:45:05 +0000 | [diff] [blame] | 233 | Basis.Base == C.Base && Basis.Stride == C.Stride && |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 234 | Basis.CandidateKind == C.CandidateKind); |
| 235 | } |
| 236 | |
Jingyue Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 237 | static bool isGEPFoldable(GetElementPtrInst *GEP, |
Jingyue Wu | 15f3e82 | 2016-07-08 21:48:05 +0000 | [diff] [blame] | 238 | const TargetTransformInfo *TTI) { |
| 239 | SmallVector<const Value*, 4> Indices; |
| 240 | for (auto I = GEP->idx_begin(); I != GEP->idx_end(); ++I) |
| 241 | Indices.push_back(*I); |
| 242 | return TTI->getGEPCost(GEP->getSourceElementType(), GEP->getPointerOperand(), |
| 243 | Indices) == TargetTransformInfo::TCC_Free; |
Jingyue Wu | d7966ff | 2015-02-03 19:37:06 +0000 | [diff] [blame] | 244 | } |
| 245 | |
Jingyue Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 246 | // Returns whether (Base + Index * Stride) can be folded to an addressing mode. |
| 247 | static bool isAddFoldable(const SCEV *Base, ConstantInt *Index, Value *Stride, |
| 248 | TargetTransformInfo *TTI) { |
Jingyue Wu | debce55 | 2016-07-09 19:13:18 +0000 | [diff] [blame] | 249 | // Index->getSExtValue() may crash if Index is wider than 64-bit. |
| 250 | return Index->getBitWidth() <= 64 && |
| 251 | TTI->isLegalAddressingMode(Base->getType(), nullptr, 0, true, |
Matt Arsenault | ba437c6 | 2016-04-27 00:32:09 +0000 | [diff] [blame] | 252 | Index->getSExtValue(), UnknownAddressSpace); |
Jingyue Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 253 | } |
| 254 | |
| 255 | bool StraightLineStrengthReduce::isFoldable(const Candidate &C, |
| 256 | TargetTransformInfo *TTI, |
| 257 | const DataLayout *DL) { |
| 258 | if (C.CandidateKind == Candidate::Add) |
| 259 | return isAddFoldable(C.Base, C.Index, C.Stride, TTI); |
| 260 | if (C.CandidateKind == Candidate::GEP) |
Jingyue Wu | 15f3e82 | 2016-07-08 21:48:05 +0000 | [diff] [blame] | 261 | return isGEPFoldable(cast<GetElementPtrInst>(C.Ins), TTI); |
Jingyue Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 262 | return false; |
| 263 | } |
| 264 | |
| 265 | // Returns true if GEP has zero or one non-zero index. |
| 266 | static bool hasOnlyOneNonZeroIndex(GetElementPtrInst *GEP) { |
| 267 | unsigned NumNonZeroIndices = 0; |
| 268 | for (auto I = GEP->idx_begin(); I != GEP->idx_end(); ++I) { |
| 269 | ConstantInt *ConstIdx = dyn_cast<ConstantInt>(*I); |
| 270 | if (ConstIdx == nullptr || !ConstIdx->isZero()) |
| 271 | ++NumNonZeroIndices; |
| 272 | } |
| 273 | return NumNonZeroIndices <= 1; |
| 274 | } |
| 275 | |
| 276 | bool StraightLineStrengthReduce::isSimplestForm(const Candidate &C) { |
| 277 | if (C.CandidateKind == Candidate::Add) { |
| 278 | // B + 1 * S or B + (-1) * S |
| 279 | return C.Index->isOne() || C.Index->isMinusOne(); |
| 280 | } |
| 281 | if (C.CandidateKind == Candidate::Mul) { |
| 282 | // (B + 0) * S |
| 283 | return C.Index->isZero(); |
| 284 | } |
| 285 | if (C.CandidateKind == Candidate::GEP) { |
| 286 | // (char*)B + S or (char*)B - S |
| 287 | return ((C.Index->isOne() || C.Index->isMinusOne()) && |
| 288 | hasOnlyOneNonZeroIndex(cast<GetElementPtrInst>(C.Ins))); |
| 289 | } |
| 290 | return false; |
| 291 | } |
| 292 | |
| 293 | // TODO: We currently implement an algorithm whose time complexity is linear in |
| 294 | // the number of existing candidates. However, we could do better by using |
| 295 | // ScopedHashTable. Specifically, while traversing the dominator tree, we could |
| 296 | // maintain all the candidates that dominate the basic block being traversed in |
| 297 | // a ScopedHashTable. This hash table is indexed by the base and the stride of |
| 298 | // a candidate. Therefore, finding the immediate basis of a candidate boils down |
| 299 | // to one hash-table look up. |
| 300 | void StraightLineStrengthReduce::allocateCandidatesAndFindBasis( |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 301 | Candidate::Kind CT, const SCEV *B, ConstantInt *Idx, Value *S, |
| 302 | Instruction *I) { |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 303 | Candidate C(CT, B, Idx, S, I); |
Jingyue Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 304 | // SLSR can complicate an instruction in two cases: |
| 305 | // |
| 306 | // 1. If we can fold I into an addressing mode, computing I is likely free or |
| 307 | // takes only one instruction. |
| 308 | // |
| 309 | // 2. I is already in a simplest form. For example, when |
| 310 | // X = B + 8 * S |
| 311 | // Y = B + S, |
| 312 | // rewriting Y to X - 7 * S is probably a bad idea. |
| 313 | // |
| 314 | // In the above cases, we still add I to the candidate list so that I can be |
| 315 | // the basis of other candidates, but we leave I's basis blank so that I |
| 316 | // won't be rewritten. |
| 317 | if (!isFoldable(C, TTI, DL) && !isSimplestForm(C)) { |
| 318 | // Try to compute the immediate basis of C. |
| 319 | unsigned NumIterations = 0; |
| 320 | // Limit the scan radius to avoid running in quadratice time. |
| 321 | static const unsigned MaxNumIterations = 50; |
| 322 | for (auto Basis = Candidates.rbegin(); |
| 323 | Basis != Candidates.rend() && NumIterations < MaxNumIterations; |
| 324 | ++Basis, ++NumIterations) { |
| 325 | if (isBasisFor(*Basis, C)) { |
| 326 | C.Basis = &(*Basis); |
| 327 | break; |
| 328 | } |
Jingyue Wu | d7966ff | 2015-02-03 19:37:06 +0000 | [diff] [blame] | 329 | } |
| 330 | } |
| 331 | // Regardless of whether we find a basis for C, we need to push C to the |
Jingyue Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 332 | // candidate list so that it can be the basis of other candidates. |
Jingyue Wu | d7966ff | 2015-02-03 19:37:06 +0000 | [diff] [blame] | 333 | Candidates.push_back(C); |
| 334 | } |
| 335 | |
Jingyue Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 336 | void StraightLineStrengthReduce::allocateCandidatesAndFindBasis( |
| 337 | Instruction *I) { |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 338 | switch (I->getOpcode()) { |
Jingyue Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 339 | case Instruction::Add: |
| 340 | allocateCandidatesAndFindBasisForAdd(I); |
| 341 | break; |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 342 | case Instruction::Mul: |
Jingyue Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 343 | allocateCandidatesAndFindBasisForMul(I); |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 344 | break; |
| 345 | case Instruction::GetElementPtr: |
Jingyue Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 346 | allocateCandidatesAndFindBasisForGEP(cast<GetElementPtrInst>(I)); |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 347 | break; |
| 348 | } |
| 349 | } |
| 350 | |
Jingyue Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 351 | void StraightLineStrengthReduce::allocateCandidatesAndFindBasisForAdd( |
| 352 | Instruction *I) { |
| 353 | // Try matching B + i * S. |
| 354 | if (!isa<IntegerType>(I->getType())) |
| 355 | return; |
| 356 | |
| 357 | assert(I->getNumOperands() == 2 && "isn't I an add?"); |
| 358 | Value *LHS = I->getOperand(0), *RHS = I->getOperand(1); |
| 359 | allocateCandidatesAndFindBasisForAdd(LHS, RHS, I); |
| 360 | if (LHS != RHS) |
| 361 | allocateCandidatesAndFindBasisForAdd(RHS, LHS, I); |
| 362 | } |
| 363 | |
| 364 | void StraightLineStrengthReduce::allocateCandidatesAndFindBasisForAdd( |
| 365 | Value *LHS, Value *RHS, Instruction *I) { |
| 366 | Value *S = nullptr; |
| 367 | ConstantInt *Idx = nullptr; |
| 368 | if (match(RHS, m_Mul(m_Value(S), m_ConstantInt(Idx)))) { |
| 369 | // I = LHS + RHS = LHS + Idx * S |
| 370 | allocateCandidatesAndFindBasis(Candidate::Add, SE->getSCEV(LHS), Idx, S, I); |
| 371 | } else if (match(RHS, m_Shl(m_Value(S), m_ConstantInt(Idx)))) { |
| 372 | // I = LHS + RHS = LHS + (S << Idx) = LHS + S * (1 << Idx) |
| 373 | APInt One(Idx->getBitWidth(), 1); |
| 374 | Idx = ConstantInt::get(Idx->getContext(), One << Idx->getValue()); |
| 375 | allocateCandidatesAndFindBasis(Candidate::Add, SE->getSCEV(LHS), Idx, S, I); |
| 376 | } else { |
| 377 | // At least, I = LHS + 1 * RHS |
| 378 | ConstantInt *One = ConstantInt::get(cast<IntegerType>(I->getType()), 1); |
| 379 | allocateCandidatesAndFindBasis(Candidate::Add, SE->getSCEV(LHS), One, RHS, |
| 380 | I); |
| 381 | } |
| 382 | } |
| 383 | |
Jingyue Wu | 80a96d29 | 2015-05-15 17:07:48 +0000 | [diff] [blame] | 384 | // Returns true if A matches B + C where C is constant. |
| 385 | static bool matchesAdd(Value *A, Value *&B, ConstantInt *&C) { |
| 386 | return (match(A, m_Add(m_Value(B), m_ConstantInt(C))) || |
| 387 | match(A, m_Add(m_ConstantInt(C), m_Value(B)))); |
| 388 | } |
| 389 | |
| 390 | // Returns true if A matches B | C where C is constant. |
| 391 | static bool matchesOr(Value *A, Value *&B, ConstantInt *&C) { |
| 392 | return (match(A, m_Or(m_Value(B), m_ConstantInt(C))) || |
| 393 | match(A, m_Or(m_ConstantInt(C), m_Value(B)))); |
| 394 | } |
| 395 | |
Jingyue Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 396 | void StraightLineStrengthReduce::allocateCandidatesAndFindBasisForMul( |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 397 | Value *LHS, Value *RHS, Instruction *I) { |
Jingyue Wu | d7966ff | 2015-02-03 19:37:06 +0000 | [diff] [blame] | 398 | Value *B = nullptr; |
| 399 | ConstantInt *Idx = nullptr; |
Jingyue Wu | 80a96d29 | 2015-05-15 17:07:48 +0000 | [diff] [blame] | 400 | if (matchesAdd(LHS, B, Idx)) { |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 401 | // If LHS is in the form of "Base + Index", then I is in the form of |
| 402 | // "(Base + Index) * RHS". |
Jingyue Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 403 | allocateCandidatesAndFindBasis(Candidate::Mul, SE->getSCEV(B), Idx, RHS, I); |
Jingyue Wu | 80a96d29 | 2015-05-15 17:07:48 +0000 | [diff] [blame] | 404 | } else if (matchesOr(LHS, B, Idx) && haveNoCommonBitsSet(B, Idx, *DL)) { |
| 405 | // If LHS is in the form of "Base | Index" and Base and Index have no common |
| 406 | // bits set, then |
| 407 | // Base | Index = Base + Index |
| 408 | // and I is thus in the form of "(Base + Index) * RHS". |
| 409 | allocateCandidatesAndFindBasis(Candidate::Mul, SE->getSCEV(B), Idx, RHS, I); |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 410 | } else { |
| 411 | // Otherwise, at least try the form (LHS + 0) * RHS. |
| 412 | ConstantInt *Zero = ConstantInt::get(cast<IntegerType>(I->getType()), 0); |
Jingyue Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 413 | allocateCandidatesAndFindBasis(Candidate::Mul, SE->getSCEV(LHS), Zero, RHS, |
Jingyue Wu | 80a96d29 | 2015-05-15 17:07:48 +0000 | [diff] [blame] | 414 | I); |
Jingyue Wu | d7966ff | 2015-02-03 19:37:06 +0000 | [diff] [blame] | 415 | } |
| 416 | } |
| 417 | |
Jingyue Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 418 | void StraightLineStrengthReduce::allocateCandidatesAndFindBasisForMul( |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 419 | Instruction *I) { |
| 420 | // Try matching (B + i) * S. |
| 421 | // TODO: we could extend SLSR to float and vector types. |
| 422 | if (!isa<IntegerType>(I->getType())) |
| 423 | return; |
| 424 | |
Jingyue Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 425 | assert(I->getNumOperands() == 2 && "isn't I a mul?"); |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 426 | Value *LHS = I->getOperand(0), *RHS = I->getOperand(1); |
Jingyue Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 427 | allocateCandidatesAndFindBasisForMul(LHS, RHS, I); |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 428 | if (LHS != RHS) { |
| 429 | // Symmetrically, try to split RHS to Base + Index. |
Jingyue Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 430 | allocateCandidatesAndFindBasisForMul(RHS, LHS, I); |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 431 | } |
| 432 | } |
| 433 | |
Jingyue Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 434 | void StraightLineStrengthReduce::allocateCandidatesAndFindBasisForGEP( |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 435 | const SCEV *B, ConstantInt *Idx, Value *S, uint64_t ElementSize, |
| 436 | Instruction *I) { |
Jingyue Wu | 99a6bed | 2015-04-02 21:18:32 +0000 | [diff] [blame] | 437 | // I = B + sext(Idx *nsw S) * ElementSize |
| 438 | // = B + (sext(Idx) * sext(S)) * ElementSize |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 439 | // = B + (sext(Idx) * ElementSize) * sext(S) |
| 440 | // Casting to IntegerType is safe because we skipped vector GEPs. |
| 441 | IntegerType *IntPtrTy = cast<IntegerType>(DL->getIntPtrType(I->getType())); |
| 442 | ConstantInt *ScaledIdx = ConstantInt::get( |
| 443 | IntPtrTy, Idx->getSExtValue() * (int64_t)ElementSize, true); |
Jingyue Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 444 | allocateCandidatesAndFindBasis(Candidate::GEP, B, ScaledIdx, S, I); |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 445 | } |
| 446 | |
| 447 | void StraightLineStrengthReduce::factorArrayIndex(Value *ArrayIdx, |
| 448 | const SCEV *Base, |
| 449 | uint64_t ElementSize, |
| 450 | GetElementPtrInst *GEP) { |
Jingyue Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 451 | // At least, ArrayIdx = ArrayIdx *nsw 1. |
| 452 | allocateCandidatesAndFindBasisForGEP( |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 453 | Base, ConstantInt::get(cast<IntegerType>(ArrayIdx->getType()), 1), |
| 454 | ArrayIdx, ElementSize, GEP); |
| 455 | Value *LHS = nullptr; |
| 456 | ConstantInt *RHS = nullptr; |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 457 | // One alternative is matching the SCEV of ArrayIdx instead of ArrayIdx |
| 458 | // itself. This would allow us to handle the shl case for free. However, |
| 459 | // matching SCEVs has two issues: |
| 460 | // |
| 461 | // 1. this would complicate rewriting because the rewriting procedure |
| 462 | // would have to translate SCEVs back to IR instructions. This translation |
| 463 | // is difficult when LHS is further evaluated to a composite SCEV. |
| 464 | // |
| 465 | // 2. ScalarEvolution is designed to be control-flow oblivious. It tends |
| 466 | // to strip nsw/nuw flags which are critical for SLSR to trace into |
| 467 | // sext'ed multiplication. |
| 468 | if (match(ArrayIdx, m_NSWMul(m_Value(LHS), m_ConstantInt(RHS)))) { |
| 469 | // SLSR is currently unsafe if i * S may overflow. |
Jingyue Wu | 99a6bed | 2015-04-02 21:18:32 +0000 | [diff] [blame] | 470 | // GEP = Base + sext(LHS *nsw RHS) * ElementSize |
Jingyue Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 471 | allocateCandidatesAndFindBasisForGEP(Base, RHS, LHS, ElementSize, GEP); |
Jingyue Wu | 96d7400 | 2015-04-06 17:15:48 +0000 | [diff] [blame] | 472 | } else if (match(ArrayIdx, m_NSWShl(m_Value(LHS), m_ConstantInt(RHS)))) { |
| 473 | // GEP = Base + sext(LHS <<nsw RHS) * ElementSize |
| 474 | // = Base + sext(LHS *nsw (1 << RHS)) * ElementSize |
| 475 | APInt One(RHS->getBitWidth(), 1); |
| 476 | ConstantInt *PowerOf2 = |
| 477 | ConstantInt::get(RHS->getContext(), One << RHS->getValue()); |
Jingyue Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 478 | allocateCandidatesAndFindBasisForGEP(Base, PowerOf2, LHS, ElementSize, GEP); |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 479 | } |
| 480 | } |
| 481 | |
Jingyue Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 482 | void StraightLineStrengthReduce::allocateCandidatesAndFindBasisForGEP( |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 483 | GetElementPtrInst *GEP) { |
| 484 | // TODO: handle vector GEPs |
| 485 | if (GEP->getType()->isVectorTy()) |
| 486 | return; |
| 487 | |
Jingyue Wu | 2982d4d | 2015-05-18 17:03:25 +0000 | [diff] [blame] | 488 | SmallVector<const SCEV *, 4> IndexExprs; |
| 489 | for (auto I = GEP->idx_begin(); I != GEP->idx_end(); ++I) |
| 490 | IndexExprs.push_back(SE->getSCEV(*I)); |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 491 | |
| 492 | gep_type_iterator GTI = gep_type_begin(GEP); |
Peter Collingbourne | ab85225b | 2016-12-02 02:24:42 +0000 | [diff] [blame] | 493 | for (unsigned I = 1, E = GEP->getNumOperands(); I != E; ++I, ++GTI) { |
| 494 | if (GTI.isStruct()) |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 495 | continue; |
Jingyue Wu | 2982d4d | 2015-05-18 17:03:25 +0000 | [diff] [blame] | 496 | |
| 497 | const SCEV *OrigIndexExpr = IndexExprs[I - 1]; |
Sanjoy Das | 2aacc0e | 2015-09-23 01:59:04 +0000 | [diff] [blame] | 498 | IndexExprs[I - 1] = SE->getZero(OrigIndexExpr->getType()); |
Jingyue Wu | 2982d4d | 2015-05-18 17:03:25 +0000 | [diff] [blame] | 499 | |
| 500 | // The base of this candidate is GEP's base plus the offsets of all |
| 501 | // indices except this current one. |
Peter Collingbourne | 8dff039 | 2016-11-13 06:59:50 +0000 | [diff] [blame] | 502 | const SCEV *BaseExpr = SE->getGEPExpr(cast<GEPOperator>(GEP), IndexExprs); |
Jingyue Wu | 2982d4d | 2015-05-18 17:03:25 +0000 | [diff] [blame] | 503 | Value *ArrayIdx = GEP->getOperand(I); |
Peter Collingbourne | ab85225b | 2016-12-02 02:24:42 +0000 | [diff] [blame] | 504 | uint64_t ElementSize = DL->getTypeAllocSize(GTI.getIndexedType()); |
Jingyue Wu | debce55 | 2016-07-09 19:13:18 +0000 | [diff] [blame] | 505 | if (ArrayIdx->getType()->getIntegerBitWidth() <= |
Jingyue Wu | 641cfee | 2016-07-11 18:13:28 +0000 | [diff] [blame] | 506 | DL->getPointerSizeInBits(GEP->getAddressSpace())) { |
Jingyue Wu | debce55 | 2016-07-09 19:13:18 +0000 | [diff] [blame] | 507 | // Skip factoring if ArrayIdx is wider than the pointer size, because |
| 508 | // ArrayIdx is implicitly truncated to the pointer size. |
| 509 | factorArrayIndex(ArrayIdx, BaseExpr, ElementSize, GEP); |
| 510 | } |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 511 | // When ArrayIdx is the sext of a value, we try to factor that value as |
| 512 | // well. Handling this case is important because array indices are |
| 513 | // typically sign-extended to the pointer size. |
| 514 | Value *TruncatedArrayIdx = nullptr; |
Jingyue Wu | debce55 | 2016-07-09 19:13:18 +0000 | [diff] [blame] | 515 | if (match(ArrayIdx, m_SExt(m_Value(TruncatedArrayIdx))) && |
| 516 | TruncatedArrayIdx->getType()->getIntegerBitWidth() <= |
Jingyue Wu | 641cfee | 2016-07-11 18:13:28 +0000 | [diff] [blame] | 517 | DL->getPointerSizeInBits(GEP->getAddressSpace())) { |
Jingyue Wu | debce55 | 2016-07-09 19:13:18 +0000 | [diff] [blame] | 518 | // Skip factoring if TruncatedArrayIdx is wider than the pointer size, |
| 519 | // because TruncatedArrayIdx is implicitly truncated to the pointer size. |
Jingyue Wu | 2982d4d | 2015-05-18 17:03:25 +0000 | [diff] [blame] | 520 | factorArrayIndex(TruncatedArrayIdx, BaseExpr, ElementSize, GEP); |
Jingyue Wu | debce55 | 2016-07-09 19:13:18 +0000 | [diff] [blame] | 521 | } |
Jingyue Wu | 2982d4d | 2015-05-18 17:03:25 +0000 | [diff] [blame] | 522 | |
| 523 | IndexExprs[I - 1] = OrigIndexExpr; |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 524 | } |
| 525 | } |
| 526 | |
| 527 | // A helper function that unifies the bitwidth of A and B. |
| 528 | static void unifyBitWidth(APInt &A, APInt &B) { |
| 529 | if (A.getBitWidth() < B.getBitWidth()) |
| 530 | A = A.sext(B.getBitWidth()); |
| 531 | else if (A.getBitWidth() > B.getBitWidth()) |
| 532 | B = B.sext(A.getBitWidth()); |
| 533 | } |
| 534 | |
| 535 | Value *StraightLineStrengthReduce::emitBump(const Candidate &Basis, |
| 536 | const Candidate &C, |
| 537 | IRBuilder<> &Builder, |
| 538 | const DataLayout *DL, |
| 539 | bool &BumpWithUglyGEP) { |
| 540 | APInt Idx = C.Index->getValue(), BasisIdx = Basis.Index->getValue(); |
| 541 | unifyBitWidth(Idx, BasisIdx); |
| 542 | APInt IndexOffset = Idx - BasisIdx; |
| 543 | |
| 544 | BumpWithUglyGEP = false; |
| 545 | if (Basis.CandidateKind == Candidate::GEP) { |
| 546 | APInt ElementSize( |
| 547 | IndexOffset.getBitWidth(), |
Jingyue Wu | debce55 | 2016-07-09 19:13:18 +0000 | [diff] [blame] | 548 | DL->getTypeAllocSize( |
| 549 | cast<GetElementPtrInst>(Basis.Ins)->getResultElementType())); |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 550 | APInt Q, R; |
| 551 | APInt::sdivrem(IndexOffset, ElementSize, Q, R); |
Jingyue Wu | debce55 | 2016-07-09 19:13:18 +0000 | [diff] [blame] | 552 | if (R == 0) |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 553 | IndexOffset = Q; |
| 554 | else |
| 555 | BumpWithUglyGEP = true; |
| 556 | } |
Jingyue Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 557 | |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 558 | // Compute Bump = C - Basis = (i' - i) * S. |
| 559 | // Common case 1: if (i' - i) is 1, Bump = S. |
Jingyue Wu | debce55 | 2016-07-09 19:13:18 +0000 | [diff] [blame] | 560 | if (IndexOffset == 1) |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 561 | return C.Stride; |
| 562 | // Common case 2: if (i' - i) is -1, Bump = -S. |
Jingyue Wu | debce55 | 2016-07-09 19:13:18 +0000 | [diff] [blame] | 563 | if (IndexOffset.isAllOnesValue()) |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 564 | return Builder.CreateNeg(C.Stride); |
Jingyue Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 565 | |
| 566 | // Otherwise, Bump = (i' - i) * sext/trunc(S). Note that (i' - i) and S may |
| 567 | // have different bit widths. |
| 568 | IntegerType *DeltaType = |
| 569 | IntegerType::get(Basis.Ins->getContext(), IndexOffset.getBitWidth()); |
| 570 | Value *ExtendedStride = Builder.CreateSExtOrTrunc(C.Stride, DeltaType); |
| 571 | if (IndexOffset.isPowerOf2()) { |
| 572 | // If (i' - i) is a power of 2, Bump = sext/trunc(S) << log(i' - i). |
| 573 | ConstantInt *Exponent = ConstantInt::get(DeltaType, IndexOffset.logBase2()); |
| 574 | return Builder.CreateShl(ExtendedStride, Exponent); |
| 575 | } |
| 576 | if ((-IndexOffset).isPowerOf2()) { |
| 577 | // If (i - i') is a power of 2, Bump = -sext/trunc(S) << log(i' - i). |
| 578 | ConstantInt *Exponent = |
| 579 | ConstantInt::get(DeltaType, (-IndexOffset).logBase2()); |
| 580 | return Builder.CreateNeg(Builder.CreateShl(ExtendedStride, Exponent)); |
| 581 | } |
| 582 | Constant *Delta = ConstantInt::get(DeltaType, IndexOffset); |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 583 | return Builder.CreateMul(ExtendedStride, Delta); |
| 584 | } |
| 585 | |
Jingyue Wu | d7966ff | 2015-02-03 19:37:06 +0000 | [diff] [blame] | 586 | void StraightLineStrengthReduce::rewriteCandidateWithBasis( |
| 587 | const Candidate &C, const Candidate &Basis) { |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 588 | assert(C.CandidateKind == Basis.CandidateKind && C.Base == Basis.Base && |
| 589 | C.Stride == Basis.Stride); |
Jingyue Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 590 | // We run rewriteCandidateWithBasis on all candidates in a post-order, so the |
| 591 | // basis of a candidate cannot be unlinked before the candidate. |
| 592 | assert(Basis.Ins->getParent() != nullptr && "the basis is unlinked"); |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 593 | |
Jingyue Wu | d7966ff | 2015-02-03 19:37:06 +0000 | [diff] [blame] | 594 | // An instruction can correspond to multiple candidates. Therefore, instead of |
| 595 | // simply deleting an instruction when we rewrite it, we mark its parent as |
| 596 | // nullptr (i.e. unlink it) so that we can skip the candidates whose |
| 597 | // instruction is already rewritten. |
| 598 | if (!C.Ins->getParent()) |
| 599 | return; |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 600 | |
Jingyue Wu | d7966ff | 2015-02-03 19:37:06 +0000 | [diff] [blame] | 601 | IRBuilder<> Builder(C.Ins); |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 602 | bool BumpWithUglyGEP; |
| 603 | Value *Bump = emitBump(Basis, C, Builder, DL, BumpWithUglyGEP); |
| 604 | Value *Reduced = nullptr; // equivalent to but weaker than C.Ins |
| 605 | switch (C.CandidateKind) { |
Jingyue Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 606 | case Candidate::Add: |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 607 | case Candidate::Mul: |
Jingyue Wu | f1edf3e | 2015-04-21 19:56:18 +0000 | [diff] [blame] | 608 | // C = Basis + Bump |
Jingyue Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 609 | if (BinaryOperator::isNeg(Bump)) { |
Jingyue Wu | f1edf3e | 2015-04-21 19:56:18 +0000 | [diff] [blame] | 610 | // If Bump is a neg instruction, emit C = Basis - (-Bump). |
Jingyue Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 611 | Reduced = |
| 612 | Builder.CreateSub(Basis.Ins, BinaryOperator::getNegArgument(Bump)); |
Jingyue Wu | f1edf3e | 2015-04-21 19:56:18 +0000 | [diff] [blame] | 613 | // We only use the negative argument of Bump, and Bump itself may be |
| 614 | // trivially dead. |
| 615 | RecursivelyDeleteTriviallyDeadInstructions(Bump); |
Jingyue Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 616 | } else { |
Jingyue Wu | a941129 | 2015-06-18 03:35:57 +0000 | [diff] [blame] | 617 | // It's tempting to preserve nsw on Bump and/or Reduced. However, it's |
| 618 | // usually unsound, e.g., |
| 619 | // |
| 620 | // X = (-2 +nsw 1) *nsw INT_MAX |
| 621 | // Y = (-2 +nsw 3) *nsw INT_MAX |
| 622 | // => |
| 623 | // Y = X + 2 * INT_MAX |
| 624 | // |
| 625 | // Neither + and * in the resultant expression are nsw. |
Jingyue Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 626 | Reduced = Builder.CreateAdd(Basis.Ins, Bump); |
| 627 | } |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 628 | break; |
| 629 | case Candidate::GEP: |
| 630 | { |
| 631 | Type *IntPtrTy = DL->getIntPtrType(C.Ins->getType()); |
Jingyue Wu | 99a6bed | 2015-04-02 21:18:32 +0000 | [diff] [blame] | 632 | bool InBounds = cast<GetElementPtrInst>(C.Ins)->isInBounds(); |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 633 | if (BumpWithUglyGEP) { |
| 634 | // C = (char *)Basis + Bump |
| 635 | unsigned AS = Basis.Ins->getType()->getPointerAddressSpace(); |
| 636 | Type *CharTy = Type::getInt8PtrTy(Basis.Ins->getContext(), AS); |
| 637 | Reduced = Builder.CreateBitCast(Basis.Ins, CharTy); |
Jingyue Wu | 99a6bed | 2015-04-02 21:18:32 +0000 | [diff] [blame] | 638 | if (InBounds) |
David Blaikie | aa41cd5 | 2015-04-03 21:33:42 +0000 | [diff] [blame] | 639 | Reduced = |
| 640 | Builder.CreateInBoundsGEP(Builder.getInt8Ty(), Reduced, Bump); |
Jingyue Wu | 99a6bed | 2015-04-02 21:18:32 +0000 | [diff] [blame] | 641 | else |
David Blaikie | 93c5444 | 2015-04-03 19:41:44 +0000 | [diff] [blame] | 642 | Reduced = Builder.CreateGEP(Builder.getInt8Ty(), Reduced, Bump); |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 643 | Reduced = Builder.CreateBitCast(Reduced, C.Ins->getType()); |
| 644 | } else { |
| 645 | // C = gep Basis, Bump |
| 646 | // Canonicalize bump to pointer size. |
| 647 | Bump = Builder.CreateSExtOrTrunc(Bump, IntPtrTy); |
Jingyue Wu | 99a6bed | 2015-04-02 21:18:32 +0000 | [diff] [blame] | 648 | if (InBounds) |
David Blaikie | aa41cd5 | 2015-04-03 21:33:42 +0000 | [diff] [blame] | 649 | Reduced = Builder.CreateInBoundsGEP(nullptr, Basis.Ins, Bump); |
Jingyue Wu | 99a6bed | 2015-04-02 21:18:32 +0000 | [diff] [blame] | 650 | else |
David Blaikie | 93c5444 | 2015-04-03 19:41:44 +0000 | [diff] [blame] | 651 | Reduced = Builder.CreateGEP(nullptr, Basis.Ins, Bump); |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 652 | } |
| 653 | } |
| 654 | break; |
| 655 | default: |
| 656 | llvm_unreachable("C.CandidateKind is invalid"); |
| 657 | }; |
Jingyue Wu | d7966ff | 2015-02-03 19:37:06 +0000 | [diff] [blame] | 658 | Reduced->takeName(C.Ins); |
| 659 | C.Ins->replaceAllUsesWith(Reduced); |
Jingyue Wu | d7966ff | 2015-02-03 19:37:06 +0000 | [diff] [blame] | 660 | // Unlink C.Ins so that we can skip other candidates also corresponding to |
| 661 | // C.Ins. The actual deletion is postponed to the end of runOnFunction. |
| 662 | C.Ins->removeFromParent(); |
Jingyue Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 663 | UnlinkedInstructions.push_back(C.Ins); |
Jingyue Wu | d7966ff | 2015-02-03 19:37:06 +0000 | [diff] [blame] | 664 | } |
| 665 | |
| 666 | bool StraightLineStrengthReduce::runOnFunction(Function &F) { |
Andrew Kaylor | aa641a5 | 2016-04-22 22:06:11 +0000 | [diff] [blame] | 667 | if (skipFunction(F)) |
Jingyue Wu | d7966ff | 2015-02-03 19:37:06 +0000 | [diff] [blame] | 668 | return false; |
| 669 | |
Jingyue Wu | 177a815 | 2015-03-26 16:49:24 +0000 | [diff] [blame] | 670 | TTI = &getAnalysis<TargetTransformInfoWrapperPass>().getTTI(F); |
Jingyue Wu | d7966ff | 2015-02-03 19:37:06 +0000 | [diff] [blame] | 671 | DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree(); |
Chandler Carruth | 2f1fd16 | 2015-08-17 02:08:17 +0000 | [diff] [blame] | 672 | SE = &getAnalysis<ScalarEvolutionWrapperPass>().getSE(); |
Jingyue Wu | d7966ff | 2015-02-03 19:37:06 +0000 | [diff] [blame] | 673 | // Traverse the dominator tree in the depth-first order. This order makes sure |
| 674 | // all bases of a candidate are in Candidates when we process it. |
Daniel Berlin | a36f463 | 2016-08-19 22:06:23 +0000 | [diff] [blame] | 675 | for (const auto Node : depth_first(DT)) |
| 676 | for (auto &I : *(Node->getBlock())) |
Jingyue Wu | 43885eb | 2015-04-15 16:46:13 +0000 | [diff] [blame] | 677 | allocateCandidatesAndFindBasis(&I); |
Jingyue Wu | d7966ff | 2015-02-03 19:37:06 +0000 | [diff] [blame] | 678 | |
| 679 | // Rewrite candidates in the reverse depth-first order. This order makes sure |
| 680 | // a candidate being rewritten is not a basis for any other candidate. |
| 681 | while (!Candidates.empty()) { |
| 682 | const Candidate &C = Candidates.back(); |
| 683 | if (C.Basis != nullptr) { |
| 684 | rewriteCandidateWithBasis(C, *C.Basis); |
| 685 | } |
| 686 | Candidates.pop_back(); |
| 687 | } |
| 688 | |
| 689 | // Delete all unlink instructions. |
Jingyue Wu | f1edf3e | 2015-04-21 19:56:18 +0000 | [diff] [blame] | 690 | for (auto *UnlinkedInst : UnlinkedInstructions) { |
| 691 | for (unsigned I = 0, E = UnlinkedInst->getNumOperands(); I != E; ++I) { |
| 692 | Value *Op = UnlinkedInst->getOperand(I); |
| 693 | UnlinkedInst->setOperand(I, nullptr); |
| 694 | RecursivelyDeleteTriviallyDeadInstructions(Op); |
| 695 | } |
Reid Kleckner | 96ab872 | 2017-05-18 17:24:10 +0000 | [diff] [blame^] | 696 | UnlinkedInst->deleteValue(); |
Jingyue Wu | d7966ff | 2015-02-03 19:37:06 +0000 | [diff] [blame] | 697 | } |
| 698 | bool Ret = !UnlinkedInstructions.empty(); |
| 699 | UnlinkedInstructions.clear(); |
| 700 | return Ret; |
| 701 | } |