Chris Lattner | 81ae3f2 | 2010-12-26 19:39:38 +0000 | [diff] [blame] | 1 | //===-- LoopIdiomRecognize.cpp - Loop idiom recognition -------------------===// |
| 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 pass implements an idiom recognizer that transforms simple loops into a |
| 11 | // non-loop form. In cases that this kicks in, it can be a significant |
| 12 | // performance win. |
| 13 | // |
| 14 | //===----------------------------------------------------------------------===// |
Chris Lattner | 0469e01 | 2011-01-02 18:32:09 +0000 | [diff] [blame] | 15 | // |
| 16 | // TODO List: |
| 17 | // |
| 18 | // Future loop memory idioms to recognize: |
Chandler Carruth | 099f5cb0 | 2012-11-02 08:33:25 +0000 | [diff] [blame] | 19 | // memcmp, memmove, strlen, etc. |
Chris Lattner | 0469e01 | 2011-01-02 18:32:09 +0000 | [diff] [blame] | 20 | // Future floating point idioms to recognize in -ffast-math mode: |
| 21 | // fpowi |
| 22 | // Future integer operation idioms to recognize: |
| 23 | // ctpop, ctlz, cttz |
| 24 | // |
| 25 | // Beware that isel's default lowering for ctpop is highly inefficient for |
| 26 | // i64 and larger types when i64 is legal and the value has few bits set. It |
| 27 | // would be good to enhance isel to emit a loop for ctpop in this case. |
| 28 | // |
| 29 | // We should enhance the memset/memcpy recognition to handle multiple stores in |
| 30 | // the loop. This would handle things like: |
| 31 | // void foo(_Complex float *P) |
| 32 | // for (i) { __real__(*P) = 0; __imag__(*P) = 0; } |
Chris Lattner | 8fac5db | 2011-01-02 23:19:45 +0000 | [diff] [blame] | 33 | // |
Chris Lattner | bc661d6 | 2011-02-21 02:08:54 +0000 | [diff] [blame] | 34 | // We should enhance this to handle negative strides through memory. |
| 35 | // Alternatively (and perhaps better) we could rely on an earlier pass to force |
| 36 | // forward iteration through memory, which is generally better for cache |
| 37 | // behavior. Negative strides *do* happen for memset/memcpy loops. |
| 38 | // |
Chris Lattner | 02a9776 | 2011-01-03 01:10:08 +0000 | [diff] [blame] | 39 | // This could recognize common matrix multiplies and dot product idioms and |
Chris Lattner | 8fac5db | 2011-01-02 23:19:45 +0000 | [diff] [blame] | 40 | // replace them with calls to BLAS (if linked in??). |
| 41 | // |
Chris Lattner | 0469e01 | 2011-01-02 18:32:09 +0000 | [diff] [blame] | 42 | //===----------------------------------------------------------------------===// |
Chris Lattner | 81ae3f2 | 2010-12-26 19:39:38 +0000 | [diff] [blame] | 43 | |
Chris Lattner | 81ae3f2 | 2010-12-26 19:39:38 +0000 | [diff] [blame] | 44 | #include "llvm/Transforms/Scalar.h" |
Chandler Carruth | aafe091 | 2012-06-29 12:38:19 +0000 | [diff] [blame] | 45 | #include "llvm/ADT/Statistic.h" |
Chris Lattner | cb18bfa | 2010-12-27 18:39:08 +0000 | [diff] [blame] | 46 | #include "llvm/Analysis/AliasAnalysis.h" |
Chris Lattner | 81ae3f2 | 2010-12-26 19:39:38 +0000 | [diff] [blame] | 47 | #include "llvm/Analysis/LoopPass.h" |
Chris Lattner | 29e14ed | 2010-12-26 23:42:51 +0000 | [diff] [blame] | 48 | #include "llvm/Analysis/ScalarEvolutionExpander.h" |
Chandler Carruth | aafe091 | 2012-06-29 12:38:19 +0000 | [diff] [blame] | 49 | #include "llvm/Analysis/ScalarEvolutionExpressions.h" |
Benjamin Kramer | 799003b | 2015-03-23 19:32:43 +0000 | [diff] [blame] | 50 | #include "llvm/Analysis/TargetLibraryInfo.h" |
Chandler Carruth | d3e7355 | 2013-01-07 03:08:10 +0000 | [diff] [blame] | 51 | #include "llvm/Analysis/TargetTransformInfo.h" |
Chris Lattner | 7c5f9c3 | 2010-12-26 20:45:45 +0000 | [diff] [blame] | 52 | #include "llvm/Analysis/ValueTracking.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 53 | #include "llvm/IR/DataLayout.h" |
Chandler Carruth | 5ad5f15 | 2014-01-13 09:26:24 +0000 | [diff] [blame] | 54 | #include "llvm/IR/Dominators.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 55 | #include "llvm/IR/IRBuilder.h" |
| 56 | #include "llvm/IR/IntrinsicInst.h" |
| 57 | #include "llvm/IR/Module.h" |
Chandler Carruth | aafe091 | 2012-06-29 12:38:19 +0000 | [diff] [blame] | 58 | #include "llvm/Support/Debug.h" |
| 59 | #include "llvm/Support/raw_ostream.h" |
Chris Lattner | b9fe685 | 2010-12-27 00:03:23 +0000 | [diff] [blame] | 60 | #include "llvm/Transforms/Utils/Local.h" |
Chris Lattner | 81ae3f2 | 2010-12-26 19:39:38 +0000 | [diff] [blame] | 61 | using namespace llvm; |
| 62 | |
Chandler Carruth | 964daaa | 2014-04-22 02:55:47 +0000 | [diff] [blame] | 63 | #define DEBUG_TYPE "loop-idiom" |
| 64 | |
Chandler Carruth | 099f5cb0 | 2012-11-02 08:33:25 +0000 | [diff] [blame] | 65 | STATISTIC(NumMemSet, "Number of memset's formed from loop stores"); |
| 66 | STATISTIC(NumMemCpy, "Number of memcpy's formed from loop load+stores"); |
Chris Lattner | 81ae3f2 | 2010-12-26 19:39:38 +0000 | [diff] [blame] | 67 | |
| 68 | namespace { |
Shuxin Yang | 95de7c3 | 2012-12-09 03:12:46 +0000 | [diff] [blame] | 69 | |
Chandler Carruth | bad690e | 2015-08-12 23:06:37 +0000 | [diff] [blame] | 70 | class LoopIdiomRecognize : public LoopPass { |
| 71 | Loop *CurLoop; |
| 72 | DominatorTree *DT; |
| 73 | ScalarEvolution *SE; |
| 74 | TargetLibraryInfo *TLI; |
| 75 | const TargetTransformInfo *TTI; |
Chris Lattner | 81ae3f2 | 2010-12-26 19:39:38 +0000 | [diff] [blame] | 76 | |
Chandler Carruth | bad690e | 2015-08-12 23:06:37 +0000 | [diff] [blame] | 77 | public: |
| 78 | static char ID; |
| 79 | explicit LoopIdiomRecognize() : LoopPass(ID) { |
| 80 | initializeLoopIdiomRecognizePass(*PassRegistry::getPassRegistry()); |
| 81 | DT = nullptr; |
| 82 | SE = nullptr; |
| 83 | TLI = nullptr; |
| 84 | TTI = nullptr; |
| 85 | } |
Chris Lattner | 81ae3f2 | 2010-12-26 19:39:38 +0000 | [diff] [blame] | 86 | |
Chandler Carruth | bad690e | 2015-08-12 23:06:37 +0000 | [diff] [blame] | 87 | bool runOnLoop(Loop *L, LPPassManager &LPM) override; |
Shuxin Yang | 95de7c3 | 2012-12-09 03:12:46 +0000 | [diff] [blame] | 88 | |
Chandler Carruth | bad690e | 2015-08-12 23:06:37 +0000 | [diff] [blame] | 89 | /// This transformation requires natural loop information & requires that |
| 90 | /// loop preheaders be inserted into the CFG. |
| 91 | /// |
| 92 | void getAnalysisUsage(AnalysisUsage &AU) const override { |
| 93 | AU.addRequired<LoopInfoWrapperPass>(); |
| 94 | AU.addPreserved<LoopInfoWrapperPass>(); |
| 95 | AU.addRequiredID(LoopSimplifyID); |
| 96 | AU.addPreservedID(LoopSimplifyID); |
| 97 | AU.addRequiredID(LCSSAID); |
| 98 | AU.addPreservedID(LCSSAID); |
| 99 | AU.addRequired<AliasAnalysis>(); |
| 100 | AU.addPreserved<AliasAnalysis>(); |
| 101 | AU.addRequired<ScalarEvolution>(); |
| 102 | AU.addPreserved<ScalarEvolution>(); |
| 103 | AU.addPreserved<DominatorTreeWrapperPass>(); |
| 104 | AU.addRequired<DominatorTreeWrapperPass>(); |
| 105 | AU.addRequired<TargetLibraryInfoWrapperPass>(); |
| 106 | AU.addRequired<TargetTransformInfoWrapperPass>(); |
| 107 | } |
Shuxin Yang | 95de7c3 | 2012-12-09 03:12:46 +0000 | [diff] [blame] | 108 | |
Chandler Carruth | bad690e | 2015-08-12 23:06:37 +0000 | [diff] [blame] | 109 | DominatorTree *getDominatorTree() { |
| 110 | return DT ? DT |
| 111 | : (DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree()); |
| 112 | } |
Shuxin Yang | 95de7c3 | 2012-12-09 03:12:46 +0000 | [diff] [blame] | 113 | |
Chandler Carruth | bad690e | 2015-08-12 23:06:37 +0000 | [diff] [blame] | 114 | ScalarEvolution *getScalarEvolution() { |
| 115 | return SE ? SE : (SE = &getAnalysis<ScalarEvolution>()); |
| 116 | } |
Chandler Carruth | b98f63d | 2015-01-15 10:41:28 +0000 | [diff] [blame] | 117 | |
Chandler Carruth | bad690e | 2015-08-12 23:06:37 +0000 | [diff] [blame] | 118 | TargetLibraryInfo *getTargetLibraryInfo() { |
| 119 | if (!TLI) |
| 120 | TLI = &getAnalysis<TargetLibraryInfoWrapperPass>().getTLI(); |
Shuxin Yang | 95de7c3 | 2012-12-09 03:12:46 +0000 | [diff] [blame] | 121 | |
Chandler Carruth | bad690e | 2015-08-12 23:06:37 +0000 | [diff] [blame] | 122 | return TLI; |
| 123 | } |
Shuxin Yang | 95de7c3 | 2012-12-09 03:12:46 +0000 | [diff] [blame] | 124 | |
Chandler Carruth | bad690e | 2015-08-12 23:06:37 +0000 | [diff] [blame] | 125 | const TargetTransformInfo *getTargetTransformInfo() { |
| 126 | return TTI ? TTI |
| 127 | : (TTI = &getAnalysis<TargetTransformInfoWrapperPass>().getTTI( |
| 128 | *CurLoop->getHeader()->getParent())); |
| 129 | } |
Shuxin Yang | 95de7c3 | 2012-12-09 03:12:46 +0000 | [diff] [blame] | 130 | |
Chandler Carruth | bad690e | 2015-08-12 23:06:37 +0000 | [diff] [blame] | 131 | Loop *getLoop() const { return CurLoop; } |
| 132 | |
| 133 | private: |
Chandler Carruth | d9c6070 | 2015-08-13 00:10:03 +0000 | [diff] [blame] | 134 | /// \name Countable Loop Idiom Handling |
| 135 | /// @{ |
| 136 | |
Chandler Carruth | bad690e | 2015-08-12 23:06:37 +0000 | [diff] [blame] | 137 | bool runOnCountableLoop(); |
Chandler Carruth | d9c6070 | 2015-08-13 00:10:03 +0000 | [diff] [blame] | 138 | bool runOnLoopBlock(BasicBlock *BB, const SCEV *BECount, |
| 139 | SmallVectorImpl<BasicBlock *> &ExitBlocks); |
| 140 | |
| 141 | bool processLoopStore(StoreInst *SI, const SCEV *BECount); |
| 142 | bool processLoopMemSet(MemSetInst *MSI, const SCEV *BECount); |
| 143 | |
| 144 | bool processLoopStridedStore(Value *DestPtr, unsigned StoreSize, |
| 145 | unsigned StoreAlignment, Value *SplatValue, |
| 146 | Instruction *TheStore, const SCEVAddRecExpr *Ev, |
| 147 | const SCEV *BECount); |
| 148 | bool processLoopStoreOfLoopLoad(StoreInst *SI, unsigned StoreSize, |
| 149 | const SCEVAddRecExpr *StoreEv, |
| 150 | const SCEVAddRecExpr *LoadEv, |
| 151 | const SCEV *BECount); |
| 152 | |
| 153 | /// @} |
| 154 | /// \name Noncountable Loop Idiom Handling |
| 155 | /// @{ |
| 156 | |
| 157 | bool runOnNoncountableLoop(); |
| 158 | |
Chandler Carruth | 8219a50 | 2015-08-13 00:44:29 +0000 | [diff] [blame^] | 159 | bool recognizePopcount(); |
| 160 | void transformLoopToPopcount(BasicBlock *PreCondBB, Instruction *CntInst, |
| 161 | PHINode *CntPhi, Value *Var); |
| 162 | |
Chandler Carruth | d9c6070 | 2015-08-13 00:10:03 +0000 | [diff] [blame] | 163 | /// @} |
Chandler Carruth | bad690e | 2015-08-12 23:06:37 +0000 | [diff] [blame] | 164 | }; |
| 165 | |
| 166 | } // End anonymous namespace. |
Chris Lattner | 81ae3f2 | 2010-12-26 19:39:38 +0000 | [diff] [blame] | 167 | |
| 168 | char LoopIdiomRecognize::ID = 0; |
| 169 | INITIALIZE_PASS_BEGIN(LoopIdiomRecognize, "loop-idiom", "Recognize loop idioms", |
| 170 | false, false) |
Chandler Carruth | 4f8f307 | 2015-01-17 14:16:18 +0000 | [diff] [blame] | 171 | INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass) |
Chandler Carruth | 7352302 | 2014-01-13 13:07:17 +0000 | [diff] [blame] | 172 | INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass) |
Chris Lattner | 81ae3f2 | 2010-12-26 19:39:38 +0000 | [diff] [blame] | 173 | INITIALIZE_PASS_DEPENDENCY(LoopSimplify) |
| 174 | INITIALIZE_PASS_DEPENDENCY(LCSSA) |
| 175 | INITIALIZE_PASS_DEPENDENCY(ScalarEvolution) |
Chandler Carruth | b98f63d | 2015-01-15 10:41:28 +0000 | [diff] [blame] | 176 | INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass) |
Chris Lattner | cb18bfa | 2010-12-27 18:39:08 +0000 | [diff] [blame] | 177 | INITIALIZE_AG_DEPENDENCY(AliasAnalysis) |
Chandler Carruth | 705b185 | 2015-01-31 03:43:40 +0000 | [diff] [blame] | 178 | INITIALIZE_PASS_DEPENDENCY(TargetTransformInfoWrapperPass) |
Chris Lattner | 81ae3f2 | 2010-12-26 19:39:38 +0000 | [diff] [blame] | 179 | INITIALIZE_PASS_END(LoopIdiomRecognize, "loop-idiom", "Recognize loop idioms", |
| 180 | false, false) |
| 181 | |
| 182 | Pass *llvm::createLoopIdiomPass() { return new LoopIdiomRecognize(); } |
| 183 | |
Chris Lattner | c4ca7ab | 2011-05-22 17:39:56 +0000 | [diff] [blame] | 184 | /// deleteDeadInstruction - Delete this instruction. Before we do, go through |
Chris Lattner | b9fe685 | 2010-12-27 00:03:23 +0000 | [diff] [blame] | 185 | /// and zero out all the operands of this instruction. If any of them become |
| 186 | /// dead, delete them and the computation tree that feeds them. |
| 187 | /// |
Benjamin Kramer | f094d77 | 2015-02-07 21:37:08 +0000 | [diff] [blame] | 188 | static void deleteDeadInstruction(Instruction *I, |
Benjamin Kramer | 8bcc971 | 2012-08-29 15:32:21 +0000 | [diff] [blame] | 189 | const TargetLibraryInfo *TLI) { |
Benjamin Kramer | f094d77 | 2015-02-07 21:37:08 +0000 | [diff] [blame] | 190 | SmallVector<Value *, 16> Operands(I->value_op_begin(), I->value_op_end()); |
| 191 | I->replaceAllUsesWith(UndefValue::get(I->getType())); |
| 192 | I->eraseFromParent(); |
| 193 | for (Value *Op : Operands) |
| 194 | RecursivelyDeleteTriviallyDeadInstructions(Op, TLI); |
Chandler Carruth | 099f5cb0 | 2012-11-02 08:33:25 +0000 | [diff] [blame] | 195 | } |
| 196 | |
Shuxin Yang | 95de7c3 | 2012-12-09 03:12:46 +0000 | [diff] [blame] | 197 | //===----------------------------------------------------------------------===// |
| 198 | // |
Shuxin Yang | 95de7c3 | 2012-12-09 03:12:46 +0000 | [diff] [blame] | 199 | // Implementation of LoopIdiomRecognize |
| 200 | // |
| 201 | //===----------------------------------------------------------------------===// |
| 202 | |
Chandler Carruth | d9c6070 | 2015-08-13 00:10:03 +0000 | [diff] [blame] | 203 | bool LoopIdiomRecognize::runOnLoop(Loop *L, LPPassManager &LPM) { |
| 204 | if (skipOptnoneFunction(L)) |
| 205 | return false; |
| 206 | |
| 207 | CurLoop = L; |
| 208 | |
| 209 | // If the loop could not be converted to canonical form, it must have an |
| 210 | // indirectbr in it, just give up. |
| 211 | if (!L->getLoopPreheader()) |
| 212 | return false; |
| 213 | |
| 214 | // Disable loop idiom recognition if the function's name is a common idiom. |
| 215 | StringRef Name = L->getHeader()->getParent()->getName(); |
| 216 | if (Name == "memset" || Name == "memcpy") |
| 217 | return false; |
| 218 | |
| 219 | SE = &getAnalysis<ScalarEvolution>(); |
| 220 | if (SE->hasLoopInvariantBackedgeTakenCount(L)) |
| 221 | return runOnCountableLoop(); |
| 222 | return runOnNoncountableLoop(); |
| 223 | } |
| 224 | |
Shuxin Yang | 95de7c3 | 2012-12-09 03:12:46 +0000 | [diff] [blame] | 225 | bool LoopIdiomRecognize::runOnCountableLoop() { |
| 226 | const SCEV *BECount = SE->getBackedgeTakenCount(CurLoop); |
Davide Italiano | 8ed0446 | 2015-05-11 21:02:34 +0000 | [diff] [blame] | 227 | assert(!isa<SCEVCouldNotCompute>(BECount) && |
Chandler Carruth | bad690e | 2015-08-12 23:06:37 +0000 | [diff] [blame] | 228 | "runOnCountableLoop() called on a loop without a predictable" |
| 229 | "backedge-taken count"); |
Shuxin Yang | 95de7c3 | 2012-12-09 03:12:46 +0000 | [diff] [blame] | 230 | |
| 231 | // If this loop executes exactly one time, then it should be peeled, not |
| 232 | // optimized by this pass. |
| 233 | if (const SCEVConstant *BECst = dyn_cast<SCEVConstant>(BECount)) |
| 234 | if (BECst->getValue()->getValue() == 0) |
| 235 | return false; |
| 236 | |
Matt Arsenault | fb18323 | 2013-07-22 18:59:58 +0000 | [diff] [blame] | 237 | // set DT |
Shuxin Yang | 98c844f | 2013-01-02 18:26:31 +0000 | [diff] [blame] | 238 | (void)getDominatorTree(); |
Shuxin Yang | 95de7c3 | 2012-12-09 03:12:46 +0000 | [diff] [blame] | 239 | |
Chandler Carruth | 4f8f307 | 2015-01-17 14:16:18 +0000 | [diff] [blame] | 240 | LoopInfo &LI = getAnalysis<LoopInfoWrapperPass>().getLoopInfo(); |
Chandler Carruth | b98f63d | 2015-01-15 10:41:28 +0000 | [diff] [blame] | 241 | TLI = &getAnalysis<TargetLibraryInfoWrapperPass>().getTLI(); |
Shuxin Yang | 95de7c3 | 2012-12-09 03:12:46 +0000 | [diff] [blame] | 242 | |
Matt Arsenault | fb18323 | 2013-07-22 18:59:58 +0000 | [diff] [blame] | 243 | // set TLI |
Shuxin Yang | 98c844f | 2013-01-02 18:26:31 +0000 | [diff] [blame] | 244 | (void)getTargetLibraryInfo(); |
Shuxin Yang | 95de7c3 | 2012-12-09 03:12:46 +0000 | [diff] [blame] | 245 | |
Chandler Carruth | bad690e | 2015-08-12 23:06:37 +0000 | [diff] [blame] | 246 | SmallVector<BasicBlock *, 8> ExitBlocks; |
Shuxin Yang | 95de7c3 | 2012-12-09 03:12:46 +0000 | [diff] [blame] | 247 | CurLoop->getUniqueExitBlocks(ExitBlocks); |
| 248 | |
| 249 | DEBUG(dbgs() << "loop-idiom Scanning: F[" |
Chandler Carruth | bad690e | 2015-08-12 23:06:37 +0000 | [diff] [blame] | 250 | << CurLoop->getHeader()->getParent()->getName() << "] Loop %" |
| 251 | << CurLoop->getHeader()->getName() << "\n"); |
Shuxin Yang | 95de7c3 | 2012-12-09 03:12:46 +0000 | [diff] [blame] | 252 | |
| 253 | bool MadeChange = false; |
| 254 | // Scan all the blocks in the loop that are not in subloops. |
Davide Italiano | 95a77e8 | 2015-05-14 21:52:12 +0000 | [diff] [blame] | 255 | for (auto *BB : CurLoop->getBlocks()) { |
Shuxin Yang | 95de7c3 | 2012-12-09 03:12:46 +0000 | [diff] [blame] | 256 | // Ignore blocks in subloops. |
Davide Italiano | 80625af | 2015-05-13 19:51:21 +0000 | [diff] [blame] | 257 | if (LI.getLoopFor(BB) != CurLoop) |
Shuxin Yang | 95de7c3 | 2012-12-09 03:12:46 +0000 | [diff] [blame] | 258 | continue; |
| 259 | |
Davide Italiano | 80625af | 2015-05-13 19:51:21 +0000 | [diff] [blame] | 260 | MadeChange |= runOnLoopBlock(BB, BECount, ExitBlocks); |
Shuxin Yang | 95de7c3 | 2012-12-09 03:12:46 +0000 | [diff] [blame] | 261 | } |
| 262 | return MadeChange; |
| 263 | } |
| 264 | |
Chris Lattner | 8455b6e | 2011-01-02 19:01:03 +0000 | [diff] [blame] | 265 | /// runOnLoopBlock - Process the specified block, which lives in a counted loop |
| 266 | /// with the specified backedge count. This block is known to be in the current |
| 267 | /// loop and not in any subloops. |
Chandler Carruth | bad690e | 2015-08-12 23:06:37 +0000 | [diff] [blame] | 268 | bool LoopIdiomRecognize::runOnLoopBlock( |
| 269 | BasicBlock *BB, const SCEV *BECount, |
| 270 | SmallVectorImpl<BasicBlock *> &ExitBlocks) { |
Chris Lattner | 8455b6e | 2011-01-02 19:01:03 +0000 | [diff] [blame] | 271 | // We can only promote stores in this block if they are unconditionally |
| 272 | // executed in the loop. For a block to be unconditionally executed, it has |
| 273 | // to dominate all the exit blocks of the loop. Verify this now. |
| 274 | for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i) |
| 275 | if (!DT->dominates(BB, ExitBlocks[i])) |
| 276 | return false; |
Andrew Trick | 328b223 | 2011-03-14 16:48:10 +0000 | [diff] [blame] | 277 | |
Chris Lattner | 7c5f9c3 | 2010-12-26 20:45:45 +0000 | [diff] [blame] | 278 | bool MadeChange = false; |
Chandler Carruth | bad690e | 2015-08-12 23:06:37 +0000 | [diff] [blame] | 279 | for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E;) { |
Chris Lattner | a62b01d | 2011-01-04 07:27:30 +0000 | [diff] [blame] | 280 | Instruction *Inst = I++; |
| 281 | // Look for store instructions, which may be optimized to memset/memcpy. |
Chandler Carruth | bad690e | 2015-08-12 23:06:37 +0000 | [diff] [blame] | 282 | if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) { |
Chris Lattner | a62b01d | 2011-01-04 07:27:30 +0000 | [diff] [blame] | 283 | WeakVH InstPtr(I); |
Chandler Carruth | bad690e | 2015-08-12 23:06:37 +0000 | [diff] [blame] | 284 | if (!processLoopStore(SI, BECount)) |
| 285 | continue; |
Chris Lattner | a62b01d | 2011-01-04 07:27:30 +0000 | [diff] [blame] | 286 | MadeChange = true; |
Andrew Trick | 328b223 | 2011-03-14 16:48:10 +0000 | [diff] [blame] | 287 | |
Chris Lattner | a62b01d | 2011-01-04 07:27:30 +0000 | [diff] [blame] | 288 | // If processing the store invalidated our iterator, start over from the |
Chris Lattner | 8643810 | 2011-01-04 07:46:33 +0000 | [diff] [blame] | 289 | // top of the block. |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 290 | if (!InstPtr) |
Chris Lattner | a62b01d | 2011-01-04 07:27:30 +0000 | [diff] [blame] | 291 | I = BB->begin(); |
| 292 | continue; |
| 293 | } |
Andrew Trick | 328b223 | 2011-03-14 16:48:10 +0000 | [diff] [blame] | 294 | |
Chris Lattner | 8643810 | 2011-01-04 07:46:33 +0000 | [diff] [blame] | 295 | // Look for memset instructions, which may be optimized to a larger memset. |
Chandler Carruth | bad690e | 2015-08-12 23:06:37 +0000 | [diff] [blame] | 296 | if (MemSetInst *MSI = dyn_cast<MemSetInst>(Inst)) { |
Chris Lattner | 8643810 | 2011-01-04 07:46:33 +0000 | [diff] [blame] | 297 | WeakVH InstPtr(I); |
Chandler Carruth | bad690e | 2015-08-12 23:06:37 +0000 | [diff] [blame] | 298 | if (!processLoopMemSet(MSI, BECount)) |
| 299 | continue; |
Chris Lattner | 8643810 | 2011-01-04 07:46:33 +0000 | [diff] [blame] | 300 | MadeChange = true; |
Andrew Trick | 328b223 | 2011-03-14 16:48:10 +0000 | [diff] [blame] | 301 | |
Chris Lattner | 8643810 | 2011-01-04 07:46:33 +0000 | [diff] [blame] | 302 | // If processing the memset invalidated our iterator, start over from the |
| 303 | // top of the block. |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 304 | if (!InstPtr) |
Chris Lattner | 8643810 | 2011-01-04 07:46:33 +0000 | [diff] [blame] | 305 | I = BB->begin(); |
| 306 | continue; |
| 307 | } |
Chris Lattner | 7c5f9c3 | 2010-12-26 20:45:45 +0000 | [diff] [blame] | 308 | } |
Andrew Trick | 328b223 | 2011-03-14 16:48:10 +0000 | [diff] [blame] | 309 | |
Chris Lattner | 7c5f9c3 | 2010-12-26 20:45:45 +0000 | [diff] [blame] | 310 | return MadeChange; |
Chris Lattner | 81ae3f2 | 2010-12-26 19:39:38 +0000 | [diff] [blame] | 311 | } |
| 312 | |
Chris Lattner | 8643810 | 2011-01-04 07:46:33 +0000 | [diff] [blame] | 313 | /// processLoopStore - See if this store can be promoted to a memset or memcpy. |
Chris Lattner | 7c5f9c3 | 2010-12-26 20:45:45 +0000 | [diff] [blame] | 314 | bool LoopIdiomRecognize::processLoopStore(StoreInst *SI, const SCEV *BECount) { |
Chandler Carruth | bad690e | 2015-08-12 23:06:37 +0000 | [diff] [blame] | 315 | if (!SI->isSimple()) |
| 316 | return false; |
Chris Lattner | 8643810 | 2011-01-04 07:46:33 +0000 | [diff] [blame] | 317 | |
Chris Lattner | 7c5f9c3 | 2010-12-26 20:45:45 +0000 | [diff] [blame] | 318 | Value *StoredVal = SI->getValueOperand(); |
Chris Lattner | 29e14ed | 2010-12-26 23:42:51 +0000 | [diff] [blame] | 319 | Value *StorePtr = SI->getPointerOperand(); |
Andrew Trick | 328b223 | 2011-03-14 16:48:10 +0000 | [diff] [blame] | 320 | |
Chris Lattner | 65a699d | 2010-12-28 18:53:48 +0000 | [diff] [blame] | 321 | // Reject stores that are so large that they overflow an unsigned. |
Mehdi Amini | 46a4355 | 2015-03-04 18:43:29 +0000 | [diff] [blame] | 322 | auto &DL = CurLoop->getHeader()->getModule()->getDataLayout(); |
| 323 | uint64_t SizeInBits = DL.getTypeSizeInBits(StoredVal->getType()); |
Chris Lattner | 65a699d | 2010-12-28 18:53:48 +0000 | [diff] [blame] | 324 | if ((SizeInBits & 7) || (SizeInBits >> 32) != 0) |
Chris Lattner | 7c5f9c3 | 2010-12-26 20:45:45 +0000 | [diff] [blame] | 325 | return false; |
Andrew Trick | 328b223 | 2011-03-14 16:48:10 +0000 | [diff] [blame] | 326 | |
Chris Lattner | 7c5f9c3 | 2010-12-26 20:45:45 +0000 | [diff] [blame] | 327 | // See if the pointer expression is an AddRec like {base,+,1} on the current |
| 328 | // loop, which indicates a strided store. If we have something else, it's a |
| 329 | // random store we can't handle. |
Chris Lattner | 85b6d81 | 2011-01-02 03:37:56 +0000 | [diff] [blame] | 330 | const SCEVAddRecExpr *StoreEv = |
Chandler Carruth | bad690e | 2015-08-12 23:06:37 +0000 | [diff] [blame] | 331 | dyn_cast<SCEVAddRecExpr>(SE->getSCEV(StorePtr)); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 332 | if (!StoreEv || StoreEv->getLoop() != CurLoop || !StoreEv->isAffine()) |
Chris Lattner | 7c5f9c3 | 2010-12-26 20:45:45 +0000 | [diff] [blame] | 333 | return false; |
| 334 | |
| 335 | // Check to see if the stride matches the size of the store. If so, then we |
| 336 | // know that every byte is touched in the loop. |
Andrew Trick | 328b223 | 2011-03-14 16:48:10 +0000 | [diff] [blame] | 337 | unsigned StoreSize = (unsigned)SizeInBits >> 3; |
Chris Lattner | 85b6d81 | 2011-01-02 03:37:56 +0000 | [diff] [blame] | 338 | const SCEVConstant *Stride = dyn_cast<SCEVConstant>(StoreEv->getOperand(1)); |
Andrew Trick | 328b223 | 2011-03-14 16:48:10 +0000 | [diff] [blame] | 339 | |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 340 | if (!Stride || StoreSize != Stride->getValue()->getValue()) { |
Chris Lattner | bc661d6 | 2011-02-21 02:08:54 +0000 | [diff] [blame] | 341 | // TODO: Could also handle negative stride here someday, that will require |
| 342 | // the validity check in mayLoopAccessLocation to be updated though. |
| 343 | // Enable this to print exact negative strides. |
Chris Lattner | 2333ac2 | 2011-02-21 17:02:55 +0000 | [diff] [blame] | 344 | if (0 && Stride && StoreSize == -Stride->getValue()->getValue()) { |
Chris Lattner | bc661d6 | 2011-02-21 02:08:54 +0000 | [diff] [blame] | 345 | dbgs() << "NEGATIVE STRIDE: " << *SI << "\n"; |
| 346 | dbgs() << "BB: " << *SI->getParent(); |
| 347 | } |
Andrew Trick | 328b223 | 2011-03-14 16:48:10 +0000 | [diff] [blame] | 348 | |
Chris Lattner | 7c5f9c3 | 2010-12-26 20:45:45 +0000 | [diff] [blame] | 349 | return false; |
Chris Lattner | bc661d6 | 2011-02-21 02:08:54 +0000 | [diff] [blame] | 350 | } |
Chris Lattner | 0f4a640 | 2011-02-19 19:31:39 +0000 | [diff] [blame] | 351 | |
| 352 | // See if we can optimize just this store in isolation. |
| 353 | if (processLoopStridedStore(StorePtr, StoreSize, SI->getAlignment(), |
| 354 | StoredVal, SI, StoreEv, BECount)) |
| 355 | return true; |
Chris Lattner | 29e14ed | 2010-12-26 23:42:51 +0000 | [diff] [blame] | 356 | |
Chris Lattner | 85b6d81 | 2011-01-02 03:37:56 +0000 | [diff] [blame] | 357 | // If the stored value is a strided load in the same loop with the same stride |
| 358 | // this this may be transformable into a memcpy. This kicks in for stuff like |
| 359 | // for (i) A[i] = B[i]; |
| 360 | if (LoadInst *LI = dyn_cast<LoadInst>(StoredVal)) { |
| 361 | const SCEVAddRecExpr *LoadEv = |
Chandler Carruth | bad690e | 2015-08-12 23:06:37 +0000 | [diff] [blame] | 362 | dyn_cast<SCEVAddRecExpr>(SE->getSCEV(LI->getOperand(0))); |
Chris Lattner | 85b6d81 | 2011-01-02 03:37:56 +0000 | [diff] [blame] | 363 | if (LoadEv && LoadEv->getLoop() == CurLoop && LoadEv->isAffine() && |
Eli Friedman | 7c5dc12 | 2011-09-12 20:23:13 +0000 | [diff] [blame] | 364 | StoreEv->getOperand(1) == LoadEv->getOperand(1) && LI->isSimple()) |
Chris Lattner | 85b6d81 | 2011-01-02 03:37:56 +0000 | [diff] [blame] | 365 | if (processLoopStoreOfLoopLoad(SI, StoreSize, StoreEv, LoadEv, BECount)) |
| 366 | return true; |
| 367 | } |
Chandler Carruth | bad690e | 2015-08-12 23:06:37 +0000 | [diff] [blame] | 368 | // errs() << "UNHANDLED strided store: " << *StoreEv << " - " << *SI << "\n"; |
Chris Lattner | 7c5f9c3 | 2010-12-26 20:45:45 +0000 | [diff] [blame] | 369 | |
Chris Lattner | 81ae3f2 | 2010-12-26 19:39:38 +0000 | [diff] [blame] | 370 | return false; |
| 371 | } |
| 372 | |
Chris Lattner | 8643810 | 2011-01-04 07:46:33 +0000 | [diff] [blame] | 373 | /// processLoopMemSet - See if this memset can be promoted to a large memset. |
Chandler Carruth | bad690e | 2015-08-12 23:06:37 +0000 | [diff] [blame] | 374 | bool LoopIdiomRecognize::processLoopMemSet(MemSetInst *MSI, |
| 375 | const SCEV *BECount) { |
Chris Lattner | 8643810 | 2011-01-04 07:46:33 +0000 | [diff] [blame] | 376 | // We can only handle non-volatile memsets with a constant size. |
Chandler Carruth | bad690e | 2015-08-12 23:06:37 +0000 | [diff] [blame] | 377 | if (MSI->isVolatile() || !isa<ConstantInt>(MSI->getLength())) |
| 378 | return false; |
Chris Lattner | 8643810 | 2011-01-04 07:46:33 +0000 | [diff] [blame] | 379 | |
Chris Lattner | e6b261f | 2011-02-18 22:22:15 +0000 | [diff] [blame] | 380 | // If we're not allowed to hack on memset, we fail. |
| 381 | if (!TLI->has(LibFunc::memset)) |
| 382 | return false; |
Andrew Trick | 328b223 | 2011-03-14 16:48:10 +0000 | [diff] [blame] | 383 | |
Chris Lattner | 8643810 | 2011-01-04 07:46:33 +0000 | [diff] [blame] | 384 | Value *Pointer = MSI->getDest(); |
Andrew Trick | 328b223 | 2011-03-14 16:48:10 +0000 | [diff] [blame] | 385 | |
Chris Lattner | 8643810 | 2011-01-04 07:46:33 +0000 | [diff] [blame] | 386 | // See if the pointer expression is an AddRec like {base,+,1} on the current |
| 387 | // loop, which indicates a strided store. If we have something else, it's a |
| 388 | // random store we can't handle. |
| 389 | const SCEVAddRecExpr *Ev = dyn_cast<SCEVAddRecExpr>(SE->getSCEV(Pointer)); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 390 | if (!Ev || Ev->getLoop() != CurLoop || !Ev->isAffine()) |
Chris Lattner | 8643810 | 2011-01-04 07:46:33 +0000 | [diff] [blame] | 391 | return false; |
| 392 | |
| 393 | // Reject memsets that are so large that they overflow an unsigned. |
| 394 | uint64_t SizeInBytes = cast<ConstantInt>(MSI->getLength())->getZExtValue(); |
| 395 | if ((SizeInBytes >> 32) != 0) |
| 396 | return false; |
Andrew Trick | 328b223 | 2011-03-14 16:48:10 +0000 | [diff] [blame] | 397 | |
Chris Lattner | 8643810 | 2011-01-04 07:46:33 +0000 | [diff] [blame] | 398 | // Check to see if the stride matches the size of the memset. If so, then we |
| 399 | // know that every byte is touched in the loop. |
| 400 | const SCEVConstant *Stride = dyn_cast<SCEVConstant>(Ev->getOperand(1)); |
Andrew Trick | 328b223 | 2011-03-14 16:48:10 +0000 | [diff] [blame] | 401 | |
Chris Lattner | 8643810 | 2011-01-04 07:46:33 +0000 | [diff] [blame] | 402 | // TODO: Could also handle negative stride here someday, that will require the |
| 403 | // validity check in mayLoopAccessLocation to be updated though. |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 404 | if (!Stride || MSI->getLength() != Stride->getValue()) |
Chris Lattner | 8643810 | 2011-01-04 07:46:33 +0000 | [diff] [blame] | 405 | return false; |
Andrew Trick | 328b223 | 2011-03-14 16:48:10 +0000 | [diff] [blame] | 406 | |
Chris Lattner | 0f4a640 | 2011-02-19 19:31:39 +0000 | [diff] [blame] | 407 | return processLoopStridedStore(Pointer, (unsigned)SizeInBytes, |
Chandler Carruth | bad690e | 2015-08-12 23:06:37 +0000 | [diff] [blame] | 408 | MSI->getAlignment(), MSI->getValue(), MSI, Ev, |
| 409 | BECount); |
Chris Lattner | 8643810 | 2011-01-04 07:46:33 +0000 | [diff] [blame] | 410 | } |
| 411 | |
Chandler Carruth | 099f5cb0 | 2012-11-02 08:33:25 +0000 | [diff] [blame] | 412 | /// mayLoopAccessLocation - Return true if the specified loop might access the |
| 413 | /// specified pointer location, which is a loop-strided access. The 'Access' |
| 414 | /// argument specifies what the verboten forms of access are (read or write). |
Chandler Carruth | 194f59c | 2015-07-22 23:15:57 +0000 | [diff] [blame] | 415 | static bool mayLoopAccessLocation(Value *Ptr, ModRefInfo Access, Loop *L, |
| 416 | const SCEV *BECount, unsigned StoreSize, |
| 417 | AliasAnalysis &AA, |
Chandler Carruth | 099f5cb0 | 2012-11-02 08:33:25 +0000 | [diff] [blame] | 418 | Instruction *IgnoredStore) { |
| 419 | // Get the location that may be stored across the loop. Since the access is |
| 420 | // strided positively through memory, we say that the modified location starts |
| 421 | // at the pointer and has infinite size. |
Chandler Carruth | ecbd168 | 2015-06-17 07:21:38 +0000 | [diff] [blame] | 422 | uint64_t AccessSize = MemoryLocation::UnknownSize; |
Chandler Carruth | 099f5cb0 | 2012-11-02 08:33:25 +0000 | [diff] [blame] | 423 | |
| 424 | // If the loop iterates a fixed number of times, we can refine the access size |
| 425 | // to be exactly the size of the memset, which is (BECount+1)*StoreSize |
| 426 | if (const SCEVConstant *BECst = dyn_cast<SCEVConstant>(BECount)) |
Chandler Carruth | bad690e | 2015-08-12 23:06:37 +0000 | [diff] [blame] | 427 | AccessSize = (BECst->getValue()->getZExtValue() + 1) * StoreSize; |
Chandler Carruth | 099f5cb0 | 2012-11-02 08:33:25 +0000 | [diff] [blame] | 428 | |
| 429 | // TODO: For this to be really effective, we have to dive into the pointer |
| 430 | // operand in the store. Store to &A[i] of 100 will always return may alias |
| 431 | // with store of &A[100], we need to StoreLoc to be "A" with size of 100, |
| 432 | // which will then no-alias a store to &A[100]. |
Chandler Carruth | ac80dc7 | 2015-06-17 07:18:54 +0000 | [diff] [blame] | 433 | MemoryLocation StoreLoc(Ptr, AccessSize); |
Chandler Carruth | 099f5cb0 | 2012-11-02 08:33:25 +0000 | [diff] [blame] | 434 | |
| 435 | for (Loop::block_iterator BI = L->block_begin(), E = L->block_end(); BI != E; |
| 436 | ++BI) |
| 437 | for (BasicBlock::iterator I = (*BI)->begin(), E = (*BI)->end(); I != E; ++I) |
Chandler Carruth | bad690e | 2015-08-12 23:06:37 +0000 | [diff] [blame] | 438 | if (&*I != IgnoredStore && (AA.getModRefInfo(I, StoreLoc) & Access)) |
Chandler Carruth | 099f5cb0 | 2012-11-02 08:33:25 +0000 | [diff] [blame] | 439 | return true; |
| 440 | |
| 441 | return false; |
| 442 | } |
| 443 | |
Chris Lattner | 0f4a640 | 2011-02-19 19:31:39 +0000 | [diff] [blame] | 444 | /// getMemSetPatternValue - If a strided store of the specified value is safe to |
| 445 | /// turn into a memset_pattern16, return a ConstantArray of 16 bytes that should |
| 446 | /// be passed in. Otherwise, return null. |
| 447 | /// |
| 448 | /// Note that we don't ever attempt to use memset_pattern8 or 4, because these |
| 449 | /// just replicate their input array and then pass on to memset_pattern16. |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 450 | static Constant *getMemSetPatternValue(Value *V, const DataLayout &DL) { |
Chris Lattner | 0f4a640 | 2011-02-19 19:31:39 +0000 | [diff] [blame] | 451 | // If the value isn't a constant, we can't promote it to being in a constant |
| 452 | // array. We could theoretically do a store to an alloca or something, but |
| 453 | // that doesn't seem worthwhile. |
| 454 | Constant *C = dyn_cast<Constant>(V); |
Chandler Carruth | bad690e | 2015-08-12 23:06:37 +0000 | [diff] [blame] | 455 | if (!C) |
| 456 | return nullptr; |
Andrew Trick | 328b223 | 2011-03-14 16:48:10 +0000 | [diff] [blame] | 457 | |
Chris Lattner | 0f4a640 | 2011-02-19 19:31:39 +0000 | [diff] [blame] | 458 | // Only handle simple values that are a power of two bytes in size. |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 459 | uint64_t Size = DL.getTypeSizeInBits(V->getType()); |
Chandler Carruth | bad690e | 2015-08-12 23:06:37 +0000 | [diff] [blame] | 460 | if (Size == 0 || (Size & 7) || (Size & (Size - 1))) |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 461 | return nullptr; |
Andrew Trick | 328b223 | 2011-03-14 16:48:10 +0000 | [diff] [blame] | 462 | |
Chris Lattner | 72a35fb | 2011-02-19 19:56:44 +0000 | [diff] [blame] | 463 | // Don't care enough about darwin/ppc to implement this. |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 464 | if (DL.isBigEndian()) |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 465 | return nullptr; |
Chris Lattner | 0f4a640 | 2011-02-19 19:31:39 +0000 | [diff] [blame] | 466 | |
| 467 | // Convert to size in bytes. |
| 468 | Size /= 8; |
Chris Lattner | 0f4a640 | 2011-02-19 19:31:39 +0000 | [diff] [blame] | 469 | |
Chris Lattner | 0f4a640 | 2011-02-19 19:31:39 +0000 | [diff] [blame] | 470 | // TODO: If CI is larger than 16-bytes, we can try slicing it in half to see |
Chris Lattner | 72a35fb | 2011-02-19 19:56:44 +0000 | [diff] [blame] | 471 | // if the top and bottom are the same (e.g. for vectors and large integers). |
Chandler Carruth | bad690e | 2015-08-12 23:06:37 +0000 | [diff] [blame] | 472 | if (Size > 16) |
| 473 | return nullptr; |
Andrew Trick | 328b223 | 2011-03-14 16:48:10 +0000 | [diff] [blame] | 474 | |
Chris Lattner | 72a35fb | 2011-02-19 19:56:44 +0000 | [diff] [blame] | 475 | // If the constant is exactly 16 bytes, just use it. |
Chandler Carruth | bad690e | 2015-08-12 23:06:37 +0000 | [diff] [blame] | 476 | if (Size == 16) |
| 477 | return C; |
Chris Lattner | 0f4a640 | 2011-02-19 19:31:39 +0000 | [diff] [blame] | 478 | |
Chris Lattner | 72a35fb | 2011-02-19 19:56:44 +0000 | [diff] [blame] | 479 | // Otherwise, we'll use an array of the constants. |
Chandler Carruth | bad690e | 2015-08-12 23:06:37 +0000 | [diff] [blame] | 480 | unsigned ArraySize = 16 / Size; |
Chris Lattner | 72a35fb | 2011-02-19 19:56:44 +0000 | [diff] [blame] | 481 | ArrayType *AT = ArrayType::get(V->getType(), ArraySize); |
Chandler Carruth | bad690e | 2015-08-12 23:06:37 +0000 | [diff] [blame] | 482 | return ConstantArray::get(AT, std::vector<Constant *>(ArraySize, C)); |
Chris Lattner | 0f4a640 | 2011-02-19 19:31:39 +0000 | [diff] [blame] | 483 | } |
| 484 | |
Chris Lattner | 0f4a640 | 2011-02-19 19:31:39 +0000 | [diff] [blame] | 485 | /// processLoopStridedStore - We see a strided store of some value. If we can |
| 486 | /// transform this into a memset or memset_pattern in the loop preheader, do so. |
Chandler Carruth | bad690e | 2015-08-12 23:06:37 +0000 | [diff] [blame] | 487 | bool LoopIdiomRecognize::processLoopStridedStore( |
| 488 | Value *DestPtr, unsigned StoreSize, unsigned StoreAlignment, |
| 489 | Value *StoredVal, Instruction *TheStore, const SCEVAddRecExpr *Ev, |
| 490 | const SCEV *BECount) { |
Andrew Trick | 328b223 | 2011-03-14 16:48:10 +0000 | [diff] [blame] | 491 | |
Chris Lattner | 0f4a640 | 2011-02-19 19:31:39 +0000 | [diff] [blame] | 492 | // If the stored value is a byte-wise value (like i32 -1), then it may be |
| 493 | // turned into a memset of i8 -1, assuming that all the consecutive bytes |
| 494 | // are stored. A store of i32 0x01020304 can never be turned into a memset, |
| 495 | // but it can be turned into memset_pattern if the target supports it. |
| 496 | Value *SplatValue = isBytewiseValue(StoredVal); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 497 | Constant *PatternValue = nullptr; |
Mehdi Amini | 46a4355 | 2015-03-04 18:43:29 +0000 | [diff] [blame] | 498 | auto &DL = CurLoop->getHeader()->getModule()->getDataLayout(); |
Matt Arsenault | 009faed | 2013-09-11 05:09:42 +0000 | [diff] [blame] | 499 | unsigned DestAS = DestPtr->getType()->getPointerAddressSpace(); |
| 500 | |
Chris Lattner | 0f4a640 | 2011-02-19 19:31:39 +0000 | [diff] [blame] | 501 | // If we're allowed to form a memset, and the stored value would be acceptable |
| 502 | // for memset, use it. |
| 503 | if (SplatValue && TLI->has(LibFunc::memset) && |
| 504 | // Verify that the stored value is loop invariant. If not, we can't |
| 505 | // promote the memset. |
| 506 | CurLoop->isLoopInvariant(SplatValue)) { |
| 507 | // Keep and use SplatValue. |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 508 | PatternValue = nullptr; |
Mehdi Amini | 46a4355 | 2015-03-04 18:43:29 +0000 | [diff] [blame] | 509 | } else if (DestAS == 0 && TLI->has(LibFunc::memset_pattern16) && |
| 510 | (PatternValue = getMemSetPatternValue(StoredVal, DL))) { |
Matt Arsenault | 009faed | 2013-09-11 05:09:42 +0000 | [diff] [blame] | 511 | // Don't create memset_pattern16s with address spaces. |
Chris Lattner | 0f4a640 | 2011-02-19 19:31:39 +0000 | [diff] [blame] | 512 | // It looks like we can use PatternValue! |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 513 | SplatValue = nullptr; |
Chris Lattner | 0f4a640 | 2011-02-19 19:31:39 +0000 | [diff] [blame] | 514 | } else { |
| 515 | // Otherwise, this isn't an idiom we can transform. For example, we can't |
Eli Friedman | a93ab13 | 2011-09-13 00:44:16 +0000 | [diff] [blame] | 516 | // do anything with a 3-byte store. |
Chris Lattner | a351444 | 2011-01-01 20:12:04 +0000 | [diff] [blame] | 517 | return false; |
Chris Lattner | 0f4a640 | 2011-02-19 19:31:39 +0000 | [diff] [blame] | 518 | } |
Andrew Trick | 328b223 | 2011-03-14 16:48:10 +0000 | [diff] [blame] | 519 | |
Chris Lattner | c4ca7ab | 2011-05-22 17:39:56 +0000 | [diff] [blame] | 520 | // The trip count of the loop and the base pointer of the addrec SCEV is |
| 521 | // guaranteed to be loop invariant, which means that it should dominate the |
| 522 | // header. This allows us to insert code for it in the preheader. |
| 523 | BasicBlock *Preheader = CurLoop->getLoopPreheader(); |
| 524 | IRBuilder<> Builder(Preheader->getTerminator()); |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 525 | SCEVExpander Expander(*SE, DL, "loop-idiom"); |
Andrew Trick | 60ab3ef | 2011-06-28 05:04:16 +0000 | [diff] [blame] | 526 | |
Matt Arsenault | 009faed | 2013-09-11 05:09:42 +0000 | [diff] [blame] | 527 | Type *DestInt8PtrTy = Builder.getInt8PtrTy(DestAS); |
| 528 | |
Chris Lattner | 29e14ed | 2010-12-26 23:42:51 +0000 | [diff] [blame] | 529 | // Okay, we have a strided store "p[i]" of a splattable value. We can turn |
Benjamin Kramer | f77f224 | 2012-10-21 19:31:16 +0000 | [diff] [blame] | 530 | // this into a memset in the loop preheader now if we want. However, this |
| 531 | // would be unsafe to do if there is anything else in the loop that may read |
Chandler Carruth | 7ec5085 | 2012-11-01 08:07:29 +0000 | [diff] [blame] | 532 | // or write to the aliased location. Check for any overlap by generating the |
| 533 | // base pointer and checking the region. |
Chandler Carruth | bad690e | 2015-08-12 23:06:37 +0000 | [diff] [blame] | 534 | Value *BasePtr = Expander.expandCodeFor(Ev->getStart(), DestInt8PtrTy, |
| 535 | Preheader->getTerminator()); |
Andrew Trick | 328b223 | 2011-03-14 16:48:10 +0000 | [diff] [blame] | 536 | |
Chandler Carruth | 194f59c | 2015-07-22 23:15:57 +0000 | [diff] [blame] | 537 | if (mayLoopAccessLocation(BasePtr, MRI_ModRef, CurLoop, BECount, StoreSize, |
| 538 | getAnalysis<AliasAnalysis>(), TheStore)) { |
Chandler Carruth | 099f5cb0 | 2012-11-02 08:33:25 +0000 | [diff] [blame] | 539 | Expander.clear(); |
| 540 | // If we generated new code for the base pointer, clean up. |
Benjamin Kramer | f094d77 | 2015-02-07 21:37:08 +0000 | [diff] [blame] | 541 | RecursivelyDeleteTriviallyDeadInstructions(BasePtr, TLI); |
Chandler Carruth | 099f5cb0 | 2012-11-02 08:33:25 +0000 | [diff] [blame] | 542 | return false; |
| 543 | } |
| 544 | |
Chris Lattner | c4ca7ab | 2011-05-22 17:39:56 +0000 | [diff] [blame] | 545 | // Okay, everything looks good, insert the memset. |
| 546 | |
Chris Lattner | 29e14ed | 2010-12-26 23:42:51 +0000 | [diff] [blame] | 547 | // The # stored bytes is (BECount+1)*Size. Expand the trip count out to |
| 548 | // pointer size if it isn't already. |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 549 | Type *IntPtr = Builder.getIntPtrTy(DL, DestAS); |
Chris Lattner | 0ba473c | 2011-01-04 00:06:55 +0000 | [diff] [blame] | 550 | BECount = SE->getTruncateOrZeroExtend(BECount, IntPtr); |
Andrew Trick | 328b223 | 2011-03-14 16:48:10 +0000 | [diff] [blame] | 551 | |
Chandler Carruth | bad690e | 2015-08-12 23:06:37 +0000 | [diff] [blame] | 552 | const SCEV *NumBytesS = |
| 553 | SE->getAddExpr(BECount, SE->getConstant(IntPtr, 1), SCEV::FlagNUW); |
Matt Arsenault | 5df49bd | 2013-09-11 05:09:35 +0000 | [diff] [blame] | 554 | if (StoreSize != 1) { |
Chris Lattner | 29e14ed | 2010-12-26 23:42:51 +0000 | [diff] [blame] | 555 | NumBytesS = SE->getMulExpr(NumBytesS, SE->getConstant(IntPtr, StoreSize), |
Andrew Trick | 8b55b73 | 2011-03-14 16:50:06 +0000 | [diff] [blame] | 556 | SCEV::FlagNUW); |
Matt Arsenault | 5df49bd | 2013-09-11 05:09:35 +0000 | [diff] [blame] | 557 | } |
Andrew Trick | 328b223 | 2011-03-14 16:48:10 +0000 | [diff] [blame] | 558 | |
| 559 | Value *NumBytes = |
Chandler Carruth | bad690e | 2015-08-12 23:06:37 +0000 | [diff] [blame] | 560 | Expander.expandCodeFor(NumBytesS, IntPtr, Preheader->getTerminator()); |
Andrew Trick | 328b223 | 2011-03-14 16:48:10 +0000 | [diff] [blame] | 561 | |
Devang Patel | d00c628 | 2011-03-07 22:43:45 +0000 | [diff] [blame] | 562 | CallInst *NewCall; |
Matt Arsenault | 5df49bd | 2013-09-11 05:09:35 +0000 | [diff] [blame] | 563 | if (SplatValue) { |
Chandler Carruth | bad690e | 2015-08-12 23:06:37 +0000 | [diff] [blame] | 564 | NewCall = |
| 565 | Builder.CreateMemSet(BasePtr, SplatValue, NumBytes, StoreAlignment); |
Matt Arsenault | 5df49bd | 2013-09-11 05:09:35 +0000 | [diff] [blame] | 566 | } else { |
Matt Arsenault | 009faed | 2013-09-11 05:09:42 +0000 | [diff] [blame] | 567 | // Everything is emitted in default address space |
| 568 | Type *Int8PtrTy = DestInt8PtrTy; |
| 569 | |
Chris Lattner | 0f4a640 | 2011-02-19 19:31:39 +0000 | [diff] [blame] | 570 | Module *M = TheStore->getParent()->getParent()->getParent(); |
Chandler Carruth | bad690e | 2015-08-12 23:06:37 +0000 | [diff] [blame] | 571 | Value *MSP = |
| 572 | M->getOrInsertFunction("memset_pattern16", Builder.getVoidTy(), |
| 573 | Int8PtrTy, Int8PtrTy, IntPtr, (void *)nullptr); |
Andrew Trick | 328b223 | 2011-03-14 16:48:10 +0000 | [diff] [blame] | 574 | |
Chris Lattner | 0f4a640 | 2011-02-19 19:31:39 +0000 | [diff] [blame] | 575 | // Otherwise we should form a memset_pattern16. PatternValue is known to be |
| 576 | // an constant array of 16-bytes. Plop the value into a mergable global. |
| 577 | GlobalVariable *GV = new GlobalVariable(*M, PatternValue->getType(), true, |
Benjamin Kramer | 838752d | 2015-03-03 00:17:09 +0000 | [diff] [blame] | 578 | GlobalValue::PrivateLinkage, |
Chris Lattner | 0f4a640 | 2011-02-19 19:31:39 +0000 | [diff] [blame] | 579 | PatternValue, ".memset_pattern"); |
| 580 | GV->setUnnamedAddr(true); // Ok to merge these. |
| 581 | GV->setAlignment(16); |
Matt Arsenault | 009faed | 2013-09-11 05:09:42 +0000 | [diff] [blame] | 582 | Value *PatternPtr = ConstantExpr::getBitCast(GV, Int8PtrTy); |
David Blaikie | ff6409d | 2015-05-18 22:13:54 +0000 | [diff] [blame] | 583 | NewCall = Builder.CreateCall(MSP, {BasePtr, PatternPtr, NumBytes}); |
Chris Lattner | 0f4a640 | 2011-02-19 19:31:39 +0000 | [diff] [blame] | 584 | } |
Andrew Trick | 328b223 | 2011-03-14 16:48:10 +0000 | [diff] [blame] | 585 | |
Chris Lattner | 29e14ed | 2010-12-26 23:42:51 +0000 | [diff] [blame] | 586 | DEBUG(dbgs() << " Formed memset: " << *NewCall << "\n" |
Chris Lattner | 8643810 | 2011-01-04 07:46:33 +0000 | [diff] [blame] | 587 | << " from store to: " << *Ev << " at: " << *TheStore << "\n"); |
Devang Patel | d00c628 | 2011-03-07 22:43:45 +0000 | [diff] [blame] | 588 | NewCall->setDebugLoc(TheStore->getDebugLoc()); |
Andrew Trick | 328b223 | 2011-03-14 16:48:10 +0000 | [diff] [blame] | 589 | |
Chris Lattner | b9fe685 | 2010-12-27 00:03:23 +0000 | [diff] [blame] | 590 | // Okay, the memset has been formed. Zap the original store and anything that |
| 591 | // feeds into it. |
Benjamin Kramer | f094d77 | 2015-02-07 21:37:08 +0000 | [diff] [blame] | 592 | deleteDeadInstruction(TheStore, TLI); |
Chris Lattner | 12f91be | 2011-01-02 07:36:44 +0000 | [diff] [blame] | 593 | ++NumMemSet; |
Chris Lattner | 29e14ed | 2010-12-26 23:42:51 +0000 | [diff] [blame] | 594 | return true; |
| 595 | } |
| 596 | |
Chris Lattner | 85b6d81 | 2011-01-02 03:37:56 +0000 | [diff] [blame] | 597 | /// processLoopStoreOfLoopLoad - We see a strided store whose value is a |
| 598 | /// same-strided load. |
Chandler Carruth | bad690e | 2015-08-12 23:06:37 +0000 | [diff] [blame] | 599 | bool LoopIdiomRecognize::processLoopStoreOfLoopLoad( |
| 600 | StoreInst *SI, unsigned StoreSize, const SCEVAddRecExpr *StoreEv, |
| 601 | const SCEVAddRecExpr *LoadEv, const SCEV *BECount) { |
Chris Lattner | e6b261f | 2011-02-18 22:22:15 +0000 | [diff] [blame] | 602 | // If we're not allowed to form memcpy, we fail. |
Chandler Carruth | 099f5cb0 | 2012-11-02 08:33:25 +0000 | [diff] [blame] | 603 | if (!TLI->has(LibFunc::memcpy)) |
Chris Lattner | e6b261f | 2011-02-18 22:22:15 +0000 | [diff] [blame] | 604 | return false; |
Andrew Trick | 328b223 | 2011-03-14 16:48:10 +0000 | [diff] [blame] | 605 | |
Chris Lattner | 85b6d81 | 2011-01-02 03:37:56 +0000 | [diff] [blame] | 606 | LoadInst *LI = cast<LoadInst>(SI->getValueOperand()); |
Andrew Trick | 328b223 | 2011-03-14 16:48:10 +0000 | [diff] [blame] | 607 | |
Chris Lattner | c4ca7ab | 2011-05-22 17:39:56 +0000 | [diff] [blame] | 608 | // The trip count of the loop and the base pointer of the addrec SCEV is |
| 609 | // guaranteed to be loop invariant, which means that it should dominate the |
| 610 | // header. This allows us to insert code for it in the preheader. |
| 611 | BasicBlock *Preheader = CurLoop->getLoopPreheader(); |
| 612 | IRBuilder<> Builder(Preheader->getTerminator()); |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 613 | const DataLayout &DL = Preheader->getModule()->getDataLayout(); |
| 614 | SCEVExpander Expander(*SE, DL, "loop-idiom"); |
Andrew Trick | 60ab3ef | 2011-06-28 05:04:16 +0000 | [diff] [blame] | 615 | |
Chris Lattner | 85b6d81 | 2011-01-02 03:37:56 +0000 | [diff] [blame] | 616 | // Okay, we have a strided store "p[i]" of a loaded value. We can turn |
Chandler Carruth | 099f5cb0 | 2012-11-02 08:33:25 +0000 | [diff] [blame] | 617 | // this into a memcpy in the loop preheader now if we want. However, this |
| 618 | // would be unsafe to do if there is anything else in the loop that may read |
| 619 | // or write the memory region we're storing to. This includes the load that |
| 620 | // feeds the stores. Check for an alias by generating the base address and |
| 621 | // checking everything. |
Chandler Carruth | bad690e | 2015-08-12 23:06:37 +0000 | [diff] [blame] | 622 | Value *StoreBasePtr = Expander.expandCodeFor( |
| 623 | StoreEv->getStart(), Builder.getInt8PtrTy(SI->getPointerAddressSpace()), |
| 624 | Preheader->getTerminator()); |
Chandler Carruth | 099f5cb0 | 2012-11-02 08:33:25 +0000 | [diff] [blame] | 625 | |
Chandler Carruth | 194f59c | 2015-07-22 23:15:57 +0000 | [diff] [blame] | 626 | if (mayLoopAccessLocation(StoreBasePtr, MRI_ModRef, CurLoop, BECount, |
| 627 | StoreSize, getAnalysis<AliasAnalysis>(), SI)) { |
Chandler Carruth | 099f5cb0 | 2012-11-02 08:33:25 +0000 | [diff] [blame] | 628 | Expander.clear(); |
| 629 | // If we generated new code for the base pointer, clean up. |
Benjamin Kramer | f094d77 | 2015-02-07 21:37:08 +0000 | [diff] [blame] | 630 | RecursivelyDeleteTriviallyDeadInstructions(StoreBasePtr, TLI); |
Chandler Carruth | 099f5cb0 | 2012-11-02 08:33:25 +0000 | [diff] [blame] | 631 | return false; |
| 632 | } |
| 633 | |
| 634 | // For a memcpy, we have to make sure that the input array is not being |
| 635 | // mutated by the loop. |
Chandler Carruth | bad690e | 2015-08-12 23:06:37 +0000 | [diff] [blame] | 636 | Value *LoadBasePtr = Expander.expandCodeFor( |
| 637 | LoadEv->getStart(), Builder.getInt8PtrTy(LI->getPointerAddressSpace()), |
| 638 | Preheader->getTerminator()); |
Chris Lattner | c4ca7ab | 2011-05-22 17:39:56 +0000 | [diff] [blame] | 639 | |
Chandler Carruth | 194f59c | 2015-07-22 23:15:57 +0000 | [diff] [blame] | 640 | if (mayLoopAccessLocation(LoadBasePtr, MRI_Mod, CurLoop, BECount, StoreSize, |
| 641 | getAnalysis<AliasAnalysis>(), SI)) { |
Chandler Carruth | 099f5cb0 | 2012-11-02 08:33:25 +0000 | [diff] [blame] | 642 | Expander.clear(); |
| 643 | // If we generated new code for the base pointer, clean up. |
Benjamin Kramer | f094d77 | 2015-02-07 21:37:08 +0000 | [diff] [blame] | 644 | RecursivelyDeleteTriviallyDeadInstructions(LoadBasePtr, TLI); |
| 645 | RecursivelyDeleteTriviallyDeadInstructions(StoreBasePtr, TLI); |
Chandler Carruth | 099f5cb0 | 2012-11-02 08:33:25 +0000 | [diff] [blame] | 646 | return false; |
| 647 | } |
| 648 | |
Chris Lattner | c4ca7ab | 2011-05-22 17:39:56 +0000 | [diff] [blame] | 649 | // Okay, everything is safe, we can transform this! |
Andrew Trick | 60ab3ef | 2011-06-28 05:04:16 +0000 | [diff] [blame] | 650 | |
Chris Lattner | 85b6d81 | 2011-01-02 03:37:56 +0000 | [diff] [blame] | 651 | // The # stored bytes is (BECount+1)*Size. Expand the trip count out to |
| 652 | // pointer size if it isn't already. |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 653 | Type *IntPtrTy = Builder.getIntPtrTy(DL, SI->getPointerAddressSpace()); |
Matt Arsenault | 009faed | 2013-09-11 05:09:42 +0000 | [diff] [blame] | 654 | BECount = SE->getTruncateOrZeroExtend(BECount, IntPtrTy); |
Andrew Trick | 328b223 | 2011-03-14 16:48:10 +0000 | [diff] [blame] | 655 | |
Chandler Carruth | bad690e | 2015-08-12 23:06:37 +0000 | [diff] [blame] | 656 | const SCEV *NumBytesS = |
| 657 | SE->getAddExpr(BECount, SE->getConstant(IntPtrTy, 1), SCEV::FlagNUW); |
Chris Lattner | 85b6d81 | 2011-01-02 03:37:56 +0000 | [diff] [blame] | 658 | if (StoreSize != 1) |
Matt Arsenault | 009faed | 2013-09-11 05:09:42 +0000 | [diff] [blame] | 659 | NumBytesS = SE->getMulExpr(NumBytesS, SE->getConstant(IntPtrTy, StoreSize), |
Andrew Trick | 8b55b73 | 2011-03-14 16:50:06 +0000 | [diff] [blame] | 660 | SCEV::FlagNUW); |
Andrew Trick | 328b223 | 2011-03-14 16:48:10 +0000 | [diff] [blame] | 661 | |
Chris Lattner | 85b6d81 | 2011-01-02 03:37:56 +0000 | [diff] [blame] | 662 | Value *NumBytes = |
Chandler Carruth | bad690e | 2015-08-12 23:06:37 +0000 | [diff] [blame] | 663 | Expander.expandCodeFor(NumBytesS, IntPtrTy, Preheader->getTerminator()); |
Andrew Trick | 328b223 | 2011-03-14 16:48:10 +0000 | [diff] [blame] | 664 | |
Chandler Carruth | 099f5cb0 | 2012-11-02 08:33:25 +0000 | [diff] [blame] | 665 | CallInst *NewCall = |
Chandler Carruth | bad690e | 2015-08-12 23:06:37 +0000 | [diff] [blame] | 666 | Builder.CreateMemCpy(StoreBasePtr, LoadBasePtr, NumBytes, |
| 667 | std::min(SI->getAlignment(), LI->getAlignment())); |
Devang Patel | 0daa07e | 2011-05-04 21:37:05 +0000 | [diff] [blame] | 668 | NewCall->setDebugLoc(SI->getDebugLoc()); |
Andrew Trick | 328b223 | 2011-03-14 16:48:10 +0000 | [diff] [blame] | 669 | |
Chandler Carruth | 099f5cb0 | 2012-11-02 08:33:25 +0000 | [diff] [blame] | 670 | DEBUG(dbgs() << " Formed memcpy: " << *NewCall << "\n" |
Chris Lattner | 85b6d81 | 2011-01-02 03:37:56 +0000 | [diff] [blame] | 671 | << " from load ptr=" << *LoadEv << " at: " << *LI << "\n" |
| 672 | << " from store ptr=" << *StoreEv << " at: " << *SI << "\n"); |
Andrew Trick | 60ab3ef | 2011-06-28 05:04:16 +0000 | [diff] [blame] | 673 | |
Chris Lattner | 85b6d81 | 2011-01-02 03:37:56 +0000 | [diff] [blame] | 674 | // Okay, the memset has been formed. Zap the original store and anything that |
| 675 | // feeds into it. |
Benjamin Kramer | f094d77 | 2015-02-07 21:37:08 +0000 | [diff] [blame] | 676 | deleteDeadInstruction(SI, TLI); |
Chandler Carruth | 099f5cb0 | 2012-11-02 08:33:25 +0000 | [diff] [blame] | 677 | ++NumMemCpy; |
Chris Lattner | 85b6d81 | 2011-01-02 03:37:56 +0000 | [diff] [blame] | 678 | return true; |
| 679 | } |
Chandler Carruth | d9c6070 | 2015-08-13 00:10:03 +0000 | [diff] [blame] | 680 | |
| 681 | bool LoopIdiomRecognize::runOnNoncountableLoop() { |
Chandler Carruth | 8219a50 | 2015-08-13 00:44:29 +0000 | [diff] [blame^] | 682 | if (recognizePopcount()) |
Chandler Carruth | d9c6070 | 2015-08-13 00:10:03 +0000 | [diff] [blame] | 683 | return true; |
| 684 | |
| 685 | return false; |
| 686 | } |
Chandler Carruth | 8219a50 | 2015-08-13 00:44:29 +0000 | [diff] [blame^] | 687 | |
| 688 | /// Check if the given conditional branch is based on the comparison between |
| 689 | /// a variable and zero, and if the variable is non-zero, the control yields to |
| 690 | /// the loop entry. If the branch matches the behavior, the variable involved |
| 691 | /// in the comparion is returned. This function will be called to see if the |
| 692 | /// precondition and postcondition of the loop are in desirable form. |
| 693 | static Value *matchCondition(BranchInst *BI, BasicBlock *LoopEntry) { |
| 694 | if (!BI || !BI->isConditional()) |
| 695 | return nullptr; |
| 696 | |
| 697 | ICmpInst *Cond = dyn_cast<ICmpInst>(BI->getCondition()); |
| 698 | if (!Cond) |
| 699 | return nullptr; |
| 700 | |
| 701 | ConstantInt *CmpZero = dyn_cast<ConstantInt>(Cond->getOperand(1)); |
| 702 | if (!CmpZero || !CmpZero->isZero()) |
| 703 | return nullptr; |
| 704 | |
| 705 | ICmpInst::Predicate Pred = Cond->getPredicate(); |
| 706 | if ((Pred == ICmpInst::ICMP_NE && BI->getSuccessor(0) == LoopEntry) || |
| 707 | (Pred == ICmpInst::ICMP_EQ && BI->getSuccessor(1) == LoopEntry)) |
| 708 | return Cond->getOperand(0); |
| 709 | |
| 710 | return nullptr; |
| 711 | } |
| 712 | |
| 713 | /// Return true iff the idiom is detected in the loop. |
| 714 | /// |
| 715 | /// Additionally: |
| 716 | /// 1) \p CntInst is set to the instruction counting the population bit. |
| 717 | /// 2) \p CntPhi is set to the corresponding phi node. |
| 718 | /// 3) \p Var is set to the value whose population bits are being counted. |
| 719 | /// |
| 720 | /// The core idiom we are trying to detect is: |
| 721 | /// \code |
| 722 | /// if (x0 != 0) |
| 723 | /// goto loop-exit // the precondition of the loop |
| 724 | /// cnt0 = init-val; |
| 725 | /// do { |
| 726 | /// x1 = phi (x0, x2); |
| 727 | /// cnt1 = phi(cnt0, cnt2); |
| 728 | /// |
| 729 | /// cnt2 = cnt1 + 1; |
| 730 | /// ... |
| 731 | /// x2 = x1 & (x1 - 1); |
| 732 | /// ... |
| 733 | /// } while(x != 0); |
| 734 | /// |
| 735 | /// loop-exit: |
| 736 | /// \endcode |
| 737 | static bool detectPopcountIdiom(Loop *CurLoop, BasicBlock *PreCondBB, |
| 738 | Instruction *&CntInst, PHINode *&CntPhi, |
| 739 | Value *&Var) { |
| 740 | // step 1: Check to see if the look-back branch match this pattern: |
| 741 | // "if (a!=0) goto loop-entry". |
| 742 | BasicBlock *LoopEntry; |
| 743 | Instruction *DefX2, *CountInst; |
| 744 | Value *VarX1, *VarX0; |
| 745 | PHINode *PhiX, *CountPhi; |
| 746 | |
| 747 | DefX2 = CountInst = nullptr; |
| 748 | VarX1 = VarX0 = nullptr; |
| 749 | PhiX = CountPhi = nullptr; |
| 750 | LoopEntry = *(CurLoop->block_begin()); |
| 751 | |
| 752 | // step 1: Check if the loop-back branch is in desirable form. |
| 753 | { |
| 754 | if (Value *T = matchCondition( |
| 755 | dyn_cast<BranchInst>(LoopEntry->getTerminator()), LoopEntry)) |
| 756 | DefX2 = dyn_cast<Instruction>(T); |
| 757 | else |
| 758 | return false; |
| 759 | } |
| 760 | |
| 761 | // step 2: detect instructions corresponding to "x2 = x1 & (x1 - 1)" |
| 762 | { |
| 763 | if (!DefX2 || DefX2->getOpcode() != Instruction::And) |
| 764 | return false; |
| 765 | |
| 766 | BinaryOperator *SubOneOp; |
| 767 | |
| 768 | if ((SubOneOp = dyn_cast<BinaryOperator>(DefX2->getOperand(0)))) |
| 769 | VarX1 = DefX2->getOperand(1); |
| 770 | else { |
| 771 | VarX1 = DefX2->getOperand(0); |
| 772 | SubOneOp = dyn_cast<BinaryOperator>(DefX2->getOperand(1)); |
| 773 | } |
| 774 | if (!SubOneOp) |
| 775 | return false; |
| 776 | |
| 777 | Instruction *SubInst = cast<Instruction>(SubOneOp); |
| 778 | ConstantInt *Dec = dyn_cast<ConstantInt>(SubInst->getOperand(1)); |
| 779 | if (!Dec || |
| 780 | !((SubInst->getOpcode() == Instruction::Sub && Dec->isOne()) || |
| 781 | (SubInst->getOpcode() == Instruction::Add && |
| 782 | Dec->isAllOnesValue()))) { |
| 783 | return false; |
| 784 | } |
| 785 | } |
| 786 | |
| 787 | // step 3: Check the recurrence of variable X |
| 788 | { |
| 789 | PhiX = dyn_cast<PHINode>(VarX1); |
| 790 | if (!PhiX || |
| 791 | (PhiX->getOperand(0) != DefX2 && PhiX->getOperand(1) != DefX2)) { |
| 792 | return false; |
| 793 | } |
| 794 | } |
| 795 | |
| 796 | // step 4: Find the instruction which count the population: cnt2 = cnt1 + 1 |
| 797 | { |
| 798 | CountInst = nullptr; |
| 799 | for (BasicBlock::iterator Iter = LoopEntry->getFirstNonPHI(), |
| 800 | IterE = LoopEntry->end(); |
| 801 | Iter != IterE; Iter++) { |
| 802 | Instruction *Inst = Iter; |
| 803 | if (Inst->getOpcode() != Instruction::Add) |
| 804 | continue; |
| 805 | |
| 806 | ConstantInt *Inc = dyn_cast<ConstantInt>(Inst->getOperand(1)); |
| 807 | if (!Inc || !Inc->isOne()) |
| 808 | continue; |
| 809 | |
| 810 | PHINode *Phi = dyn_cast<PHINode>(Inst->getOperand(0)); |
| 811 | if (!Phi || Phi->getParent() != LoopEntry) |
| 812 | continue; |
| 813 | |
| 814 | // Check if the result of the instruction is live of the loop. |
| 815 | bool LiveOutLoop = false; |
| 816 | for (User *U : Inst->users()) { |
| 817 | if ((cast<Instruction>(U))->getParent() != LoopEntry) { |
| 818 | LiveOutLoop = true; |
| 819 | break; |
| 820 | } |
| 821 | } |
| 822 | |
| 823 | if (LiveOutLoop) { |
| 824 | CountInst = Inst; |
| 825 | CountPhi = Phi; |
| 826 | break; |
| 827 | } |
| 828 | } |
| 829 | |
| 830 | if (!CountInst) |
| 831 | return false; |
| 832 | } |
| 833 | |
| 834 | // step 5: check if the precondition is in this form: |
| 835 | // "if (x != 0) goto loop-head ; else goto somewhere-we-don't-care;" |
| 836 | { |
| 837 | auto *PreCondBr = dyn_cast<BranchInst>(PreCondBB->getTerminator()); |
| 838 | Value *T = matchCondition(PreCondBr, CurLoop->getLoopPreheader()); |
| 839 | if (T != PhiX->getOperand(0) && T != PhiX->getOperand(1)) |
| 840 | return false; |
| 841 | |
| 842 | CntInst = CountInst; |
| 843 | CntPhi = CountPhi; |
| 844 | Var = T; |
| 845 | } |
| 846 | |
| 847 | return true; |
| 848 | } |
| 849 | |
| 850 | /// Recognizes a population count idiom in a non-countable loop. |
| 851 | /// |
| 852 | /// If detected, transforms the relevant code to issue the popcount intrinsic |
| 853 | /// function call, and returns true; otherwise, returns false. |
| 854 | bool LoopIdiomRecognize::recognizePopcount() { |
| 855 | (void)getScalarEvolution(); |
| 856 | (void)getTargetLibraryInfo(); |
| 857 | (void)getTargetTransformInfo(); |
| 858 | |
| 859 | if (TTI->getPopcntSupport(32) != TargetTransformInfo::PSK_FastHardware) |
| 860 | return false; |
| 861 | |
| 862 | // Counting population are usually conducted by few arithmetic instructions. |
| 863 | // Such instructions can be easilly "absorbed" by vacant slots in a |
| 864 | // non-compact loop. Therefore, recognizing popcount idiom only makes sense |
| 865 | // in a compact loop. |
| 866 | |
| 867 | // Give up if the loop has multiple blocks or multiple backedges. |
| 868 | if (CurLoop->getNumBackEdges() != 1 || CurLoop->getNumBlocks() != 1) |
| 869 | return false; |
| 870 | |
| 871 | BasicBlock *LoopBody = *(CurLoop->block_begin()); |
| 872 | if (LoopBody->size() >= 20) { |
| 873 | // The loop is too big, bail out. |
| 874 | return false; |
| 875 | } |
| 876 | |
| 877 | // It should have a preheader containing nothing but an unconditional branch. |
| 878 | BasicBlock *PH = CurLoop->getLoopPreheader(); |
| 879 | if (!PH) |
| 880 | return false; |
| 881 | if (&PH->front() != PH->getTerminator()) |
| 882 | return false; |
| 883 | auto *EntryBI = dyn_cast<BranchInst>(PH->getTerminator()); |
| 884 | if (!EntryBI || EntryBI->isConditional()) |
| 885 | return false; |
| 886 | |
| 887 | // It should have a precondition block where the generated popcount instrinsic |
| 888 | // function can be inserted. |
| 889 | auto *PreCondBB = PH->getSinglePredecessor(); |
| 890 | if (!PreCondBB) |
| 891 | return false; |
| 892 | auto *PreCondBI = dyn_cast<BranchInst>(PreCondBB->getTerminator()); |
| 893 | if (!PreCondBI || PreCondBI->isUnconditional()) |
| 894 | return false; |
| 895 | |
| 896 | Instruction *CntInst; |
| 897 | PHINode *CntPhi; |
| 898 | Value *Val; |
| 899 | if (!detectPopcountIdiom(CurLoop, PreCondBB, CntInst, CntPhi, Val)) |
| 900 | return false; |
| 901 | |
| 902 | transformLoopToPopcount(PreCondBB, CntInst, CntPhi, Val); |
| 903 | return true; |
| 904 | } |
| 905 | |
| 906 | static CallInst *createPopcntIntrinsic(IRBuilder<> &IRBuilder, Value *Val, |
| 907 | DebugLoc DL) { |
| 908 | Value *Ops[] = {Val}; |
| 909 | Type *Tys[] = {Val->getType()}; |
| 910 | |
| 911 | Module *M = IRBuilder.GetInsertBlock()->getParent()->getParent(); |
| 912 | Value *Func = Intrinsic::getDeclaration(M, Intrinsic::ctpop, Tys); |
| 913 | CallInst *CI = IRBuilder.CreateCall(Func, Ops); |
| 914 | CI->setDebugLoc(DL); |
| 915 | |
| 916 | return CI; |
| 917 | } |
| 918 | |
| 919 | void LoopIdiomRecognize::transformLoopToPopcount(BasicBlock *PreCondBB, |
| 920 | Instruction *CntInst, |
| 921 | PHINode *CntPhi, Value *Var) { |
| 922 | BasicBlock *PreHead = CurLoop->getLoopPreheader(); |
| 923 | auto *PreCondBr = dyn_cast<BranchInst>(PreCondBB->getTerminator()); |
| 924 | const DebugLoc DL = CntInst->getDebugLoc(); |
| 925 | |
| 926 | // Assuming before transformation, the loop is following: |
| 927 | // if (x) // the precondition |
| 928 | // do { cnt++; x &= x - 1; } while(x); |
| 929 | |
| 930 | // Step 1: Insert the ctpop instruction at the end of the precondition block |
| 931 | IRBuilder<> Builder(PreCondBr); |
| 932 | Value *PopCnt, *PopCntZext, *NewCount, *TripCnt; |
| 933 | { |
| 934 | PopCnt = createPopcntIntrinsic(Builder, Var, DL); |
| 935 | NewCount = PopCntZext = |
| 936 | Builder.CreateZExtOrTrunc(PopCnt, cast<IntegerType>(CntPhi->getType())); |
| 937 | |
| 938 | if (NewCount != PopCnt) |
| 939 | (cast<Instruction>(NewCount))->setDebugLoc(DL); |
| 940 | |
| 941 | // TripCnt is exactly the number of iterations the loop has |
| 942 | TripCnt = NewCount; |
| 943 | |
| 944 | // If the population counter's initial value is not zero, insert Add Inst. |
| 945 | Value *CntInitVal = CntPhi->getIncomingValueForBlock(PreHead); |
| 946 | ConstantInt *InitConst = dyn_cast<ConstantInt>(CntInitVal); |
| 947 | if (!InitConst || !InitConst->isZero()) { |
| 948 | NewCount = Builder.CreateAdd(NewCount, CntInitVal); |
| 949 | (cast<Instruction>(NewCount))->setDebugLoc(DL); |
| 950 | } |
| 951 | } |
| 952 | |
| 953 | // Step 2: Replace the precondition from "if(x == 0) goto loop-exit" to |
| 954 | // "if(NewCount == 0) loop-exit". Withtout this change, the intrinsic |
| 955 | // function would be partial dead code, and downstream passes will drag |
| 956 | // it back from the precondition block to the preheader. |
| 957 | { |
| 958 | ICmpInst *PreCond = cast<ICmpInst>(PreCondBr->getCondition()); |
| 959 | |
| 960 | Value *Opnd0 = PopCntZext; |
| 961 | Value *Opnd1 = ConstantInt::get(PopCntZext->getType(), 0); |
| 962 | if (PreCond->getOperand(0) != Var) |
| 963 | std::swap(Opnd0, Opnd1); |
| 964 | |
| 965 | ICmpInst *NewPreCond = cast<ICmpInst>( |
| 966 | Builder.CreateICmp(PreCond->getPredicate(), Opnd0, Opnd1)); |
| 967 | PreCondBr->setCondition(NewPreCond); |
| 968 | |
| 969 | RecursivelyDeleteTriviallyDeadInstructions(PreCond, TLI); |
| 970 | } |
| 971 | |
| 972 | // Step 3: Note that the population count is exactly the trip count of the |
| 973 | // loop in question, which enble us to to convert the loop from noncountable |
| 974 | // loop into a countable one. The benefit is twofold: |
| 975 | // |
| 976 | // - If the loop only counts population, the entire loop become dead after |
| 977 | // the transformation. It is lots easier to prove a countable loop dead |
| 978 | // than to prove a noncountable one. (In some C dialects, a infite loop |
| 979 | // isn't dead even if it computes nothing useful. In general, DCE needs |
| 980 | // to prove a noncountable loop finite before safely delete it.) |
| 981 | // |
| 982 | // - If the loop also performs something else, it remains alive. |
| 983 | // Since it is transformed to countable form, it can be aggressively |
| 984 | // optimized by some optimizations which are in general not applicable |
| 985 | // to a noncountable loop. |
| 986 | // |
| 987 | // After this step, this loop (conceptually) would look like following: |
| 988 | // newcnt = __builtin_ctpop(x); |
| 989 | // t = newcnt; |
| 990 | // if (x) |
| 991 | // do { cnt++; x &= x-1; t--) } while (t > 0); |
| 992 | BasicBlock *Body = *(CurLoop->block_begin()); |
| 993 | { |
| 994 | auto *LbBr = dyn_cast<BranchInst>(Body->getTerminator()); |
| 995 | ICmpInst *LbCond = cast<ICmpInst>(LbBr->getCondition()); |
| 996 | Type *Ty = TripCnt->getType(); |
| 997 | |
| 998 | PHINode *TcPhi = PHINode::Create(Ty, 2, "tcphi", Body->begin()); |
| 999 | |
| 1000 | Builder.SetInsertPoint(LbCond); |
| 1001 | Value *Opnd1 = cast<Value>(TcPhi); |
| 1002 | Value *Opnd2 = cast<Value>(ConstantInt::get(Ty, 1)); |
| 1003 | Instruction *TcDec = cast<Instruction>( |
| 1004 | Builder.CreateSub(Opnd1, Opnd2, "tcdec", false, true)); |
| 1005 | |
| 1006 | TcPhi->addIncoming(TripCnt, PreHead); |
| 1007 | TcPhi->addIncoming(TcDec, Body); |
| 1008 | |
| 1009 | CmpInst::Predicate Pred = |
| 1010 | (LbBr->getSuccessor(0) == Body) ? CmpInst::ICMP_UGT : CmpInst::ICMP_SLE; |
| 1011 | LbCond->setPredicate(Pred); |
| 1012 | LbCond->setOperand(0, TcDec); |
| 1013 | LbCond->setOperand(1, cast<Value>(ConstantInt::get(Ty, 0))); |
| 1014 | } |
| 1015 | |
| 1016 | // Step 4: All the references to the original population counter outside |
| 1017 | // the loop are replaced with the NewCount -- the value returned from |
| 1018 | // __builtin_ctpop(). |
| 1019 | CntInst->replaceUsesOutsideBlock(NewCount, Body); |
| 1020 | |
| 1021 | // step 5: Forget the "non-computable" trip-count SCEV associated with the |
| 1022 | // loop. The loop would otherwise not be deleted even if it becomes empty. |
| 1023 | SE->forgetLoop(CurLoop); |
| 1024 | } |