blob: 952b76b822cfe0e24e2b963ab98afde017055ca5 [file] [log] [blame]
Chris Lattnere6bb6492010-12-26 19:39:38 +00001//===-- 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 Lattnerbdce5722011-01-02 18:32:09 +000015//
16// TODO List:
17//
18// Future loop memory idioms to recognize:
Chandler Carrutha8647482012-11-02 08:33:25 +000019// memcmp, memmove, strlen, etc.
Chris Lattnerbdce5722011-01-02 18:32:09 +000020// 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 Lattner91139cc2011-01-02 23:19:45 +000033//
Chris Lattner408b5342011-02-21 02:08:54 +000034// 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 Lattnerd957c712011-01-03 01:10:08 +000039// This could recognize common matrix multiplies and dot product idioms and
Chris Lattner91139cc2011-01-02 23:19:45 +000040// replace them with calls to BLAS (if linked in??).
41//
Chris Lattnerbdce5722011-01-02 18:32:09 +000042//===----------------------------------------------------------------------===//
Chris Lattnere6bb6492010-12-26 19:39:38 +000043
44#define DEBUG_TYPE "loop-idiom"
45#include "llvm/Transforms/Scalar.h"
Chandler Carruth06cb8ed2012-06-29 12:38:19 +000046#include "llvm/ADT/Statistic.h"
Chris Lattner2e12f1a2010-12-27 18:39:08 +000047#include "llvm/Analysis/AliasAnalysis.h"
Chris Lattnere6bb6492010-12-26 19:39:38 +000048#include "llvm/Analysis/LoopPass.h"
Chris Lattnera92ff912010-12-26 23:42:51 +000049#include "llvm/Analysis/ScalarEvolutionExpander.h"
Chandler Carruth06cb8ed2012-06-29 12:38:19 +000050#include "llvm/Analysis/ScalarEvolutionExpressions.h"
Chandler Carruthbe049292013-01-07 03:08:10 +000051#include "llvm/Analysis/TargetTransformInfo.h"
Chris Lattner22920b52010-12-26 20:45:45 +000052#include "llvm/Analysis/ValueTracking.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000053#include "llvm/IR/DataLayout.h"
54#include "llvm/IR/IRBuilder.h"
55#include "llvm/IR/IntrinsicInst.h"
56#include "llvm/IR/Module.h"
Chandler Carruth06cb8ed2012-06-29 12:38:19 +000057#include "llvm/Support/Debug.h"
58#include "llvm/Support/raw_ostream.h"
Chris Lattnerc19175c2011-02-18 22:22:15 +000059#include "llvm/Target/TargetLibraryInfo.h"
Chris Lattner9f391882010-12-27 00:03:23 +000060#include "llvm/Transforms/Utils/Local.h"
Chris Lattnere6bb6492010-12-26 19:39:38 +000061using namespace llvm;
62
Chandler Carrutha8647482012-11-02 08:33:25 +000063STATISTIC(NumMemSet, "Number of memset's formed from loop stores");
64STATISTIC(NumMemCpy, "Number of memcpy's formed from loop load+stores");
Chris Lattnere6bb6492010-12-26 19:39:38 +000065
66namespace {
Shuxin Yang5518a132012-12-09 03:12:46 +000067
68 class LoopIdiomRecognize;
69
70 /// This class defines some utility functions for loop idiom recognization.
71 class LIRUtil {
72 public:
73 /// Return true iff the block contains nothing but an uncondition branch
74 /// (aka goto instruction).
75 static bool isAlmostEmpty(BasicBlock *);
76
77 static BranchInst *getBranch(BasicBlock *BB) {
78 return dyn_cast<BranchInst>(BB->getTerminator());
79 }
80
81 /// Return the condition of the branch terminating the given basic block.
82 static Value *getBrCondtion(BasicBlock *);
83
Matt Arsenault1f4492e2013-07-22 18:59:58 +000084 /// Derive the precondition block (i.e the block that guards the loop
Shuxin Yang5518a132012-12-09 03:12:46 +000085 /// preheader) from the given preheader.
86 static BasicBlock *getPrecondBb(BasicBlock *PreHead);
87 };
88
89 /// This class is to recoginize idioms of population-count conducted in
90 /// a noncountable loop. Currently it only recognizes this pattern:
91 /// \code
92 /// while(x) {cnt++; ...; x &= x - 1; ...}
93 /// \endcode
94 class NclPopcountRecognize {
95 LoopIdiomRecognize &LIR;
96 Loop *CurLoop;
97 BasicBlock *PreCondBB;
98
99 typedef IRBuilder<> IRBuilderTy;
100
101 public:
102 explicit NclPopcountRecognize(LoopIdiomRecognize &TheLIR);
103 bool recognize();
104
105 private:
106 /// Take a glimpse of the loop to see if we need to go ahead recoginizing
107 /// the idiom.
108 bool preliminaryScreen();
109
110 /// Check if the given conditional branch is based on the comparison
111 /// beween a variable and zero, and if the variable is non-zero, the
112 /// control yeilds to the loop entry. If the branch matches the behavior,
113 /// the variable involved in the comparion is returned. This function will
Matt Arsenault1f4492e2013-07-22 18:59:58 +0000114 /// be called to see if the precondition and postcondition of the loop
Shuxin Yang5518a132012-12-09 03:12:46 +0000115 /// are in desirable form.
116 Value *matchCondition (BranchInst *Br, BasicBlock *NonZeroTarget) const;
117
118 /// Return true iff the idiom is detected in the loop. and 1) \p CntInst
119 /// is set to the instruction counting the pupulation bit. 2) \p CntPhi
120 /// is set to the corresponding phi node. 3) \p Var is set to the value
121 /// whose population bits are being counted.
122 bool detectIdiom
123 (Instruction *&CntInst, PHINode *&CntPhi, Value *&Var) const;
124
125 /// Insert ctpop intrinsic function and some obviously dead instructions.
126 void transform (Instruction *CntInst, PHINode *CntPhi, Value *Var);
127
128 /// Create llvm.ctpop.* intrinsic function.
129 CallInst *createPopcntIntrinsic(IRBuilderTy &IRB, Value *Val, DebugLoc DL);
130 };
131
Chris Lattnere6bb6492010-12-26 19:39:38 +0000132 class LoopIdiomRecognize : public LoopPass {
Chris Lattner22920b52010-12-26 20:45:45 +0000133 Loop *CurLoop;
Micah Villmow3574eca2012-10-08 16:38:25 +0000134 const DataLayout *TD;
Chris Lattner62c50fd2011-01-02 19:01:03 +0000135 DominatorTree *DT;
Chris Lattner22920b52010-12-26 20:45:45 +0000136 ScalarEvolution *SE;
Chris Lattnerc19175c2011-02-18 22:22:15 +0000137 TargetLibraryInfo *TLI;
Chandler Carruth9980b8a2013-01-05 10:00:09 +0000138 const TargetTransformInfo *TTI;
Chris Lattnere6bb6492010-12-26 19:39:38 +0000139 public:
140 static char ID;
141 explicit LoopIdiomRecognize() : LoopPass(ID) {
142 initializeLoopIdiomRecognizePass(*PassRegistry::getPassRegistry());
Chandler Carruth9980b8a2013-01-05 10:00:09 +0000143 TD = 0; DT = 0; SE = 0; TLI = 0; TTI = 0;
Chris Lattnere6bb6492010-12-26 19:39:38 +0000144 }
145
146 bool runOnLoop(Loop *L, LPPassManager &LPM);
Chris Lattner62c50fd2011-01-02 19:01:03 +0000147 bool runOnLoopBlock(BasicBlock *BB, const SCEV *BECount,
148 SmallVectorImpl<BasicBlock*> &ExitBlocks);
Chris Lattnere6bb6492010-12-26 19:39:38 +0000149
Chris Lattner22920b52010-12-26 20:45:45 +0000150 bool processLoopStore(StoreInst *SI, const SCEV *BECount);
Chris Lattnere41d3c02011-01-04 07:46:33 +0000151 bool processLoopMemSet(MemSetInst *MSI, const SCEV *BECount);
Andrew Trickd99b39e2011-03-14 16:48:10 +0000152
Chris Lattner3a393722011-02-19 19:31:39 +0000153 bool processLoopStridedStore(Value *DestPtr, unsigned StoreSize,
154 unsigned StoreAlignment,
155 Value *SplatValue, Instruction *TheStore,
156 const SCEVAddRecExpr *Ev,
157 const SCEV *BECount);
Chris Lattnere2c43922011-01-02 03:37:56 +0000158 bool processLoopStoreOfLoopLoad(StoreInst *SI, unsigned StoreSize,
159 const SCEVAddRecExpr *StoreEv,
160 const SCEVAddRecExpr *LoadEv,
161 const SCEV *BECount);
Andrew Trickd99b39e2011-03-14 16:48:10 +0000162
Chris Lattnere6bb6492010-12-26 19:39:38 +0000163 /// This transformation requires natural loop information & requires that
164 /// loop preheaders be inserted into the CFG.
165 ///
166 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
167 AU.addRequired<LoopInfo>();
168 AU.addPreserved<LoopInfo>();
169 AU.addRequiredID(LoopSimplifyID);
170 AU.addPreservedID(LoopSimplifyID);
171 AU.addRequiredID(LCSSAID);
172 AU.addPreservedID(LCSSAID);
Chris Lattner2e12f1a2010-12-27 18:39:08 +0000173 AU.addRequired<AliasAnalysis>();
174 AU.addPreserved<AliasAnalysis>();
Chris Lattnere6bb6492010-12-26 19:39:38 +0000175 AU.addRequired<ScalarEvolution>();
176 AU.addPreserved<ScalarEvolution>();
177 AU.addPreserved<DominatorTree>();
Chris Lattner62c50fd2011-01-02 19:01:03 +0000178 AU.addRequired<DominatorTree>();
Chris Lattnerc19175c2011-02-18 22:22:15 +0000179 AU.addRequired<TargetLibraryInfo>();
Chandler Carruthd12aae62013-01-07 09:17:41 +0000180 AU.addRequired<TargetTransformInfo>();
Chris Lattnere6bb6492010-12-26 19:39:38 +0000181 }
Shuxin Yang5518a132012-12-09 03:12:46 +0000182
183 const DataLayout *getDataLayout() {
184 return TD ? TD : TD=getAnalysisIfAvailable<DataLayout>();
185 }
186
187 DominatorTree *getDominatorTree() {
188 return DT ? DT : (DT=&getAnalysis<DominatorTree>());
189 }
190
191 ScalarEvolution *getScalarEvolution() {
192 return SE ? SE : (SE = &getAnalysis<ScalarEvolution>());
193 }
194
195 TargetLibraryInfo *getTargetLibraryInfo() {
196 return TLI ? TLI : (TLI = &getAnalysis<TargetLibraryInfo>());
197 }
198
Chandler Carruth9980b8a2013-01-05 10:00:09 +0000199 const TargetTransformInfo *getTargetTransformInfo() {
Chandler Carruthd12aae62013-01-07 09:17:41 +0000200 return TTI ? TTI : (TTI = &getAnalysis<TargetTransformInfo>());
Shuxin Yang5518a132012-12-09 03:12:46 +0000201 }
202
203 Loop *getLoop() const { return CurLoop; }
204
205 private:
206 bool runOnNoncountableLoop();
207 bool runOnCountableLoop();
Chris Lattnere6bb6492010-12-26 19:39:38 +0000208 };
209}
210
211char LoopIdiomRecognize::ID = 0;
212INITIALIZE_PASS_BEGIN(LoopIdiomRecognize, "loop-idiom", "Recognize loop idioms",
213 false, false)
214INITIALIZE_PASS_DEPENDENCY(LoopInfo)
Chris Lattner62c50fd2011-01-02 19:01:03 +0000215INITIALIZE_PASS_DEPENDENCY(DominatorTree)
Chris Lattnere6bb6492010-12-26 19:39:38 +0000216INITIALIZE_PASS_DEPENDENCY(LoopSimplify)
217INITIALIZE_PASS_DEPENDENCY(LCSSA)
218INITIALIZE_PASS_DEPENDENCY(ScalarEvolution)
Chris Lattnerc19175c2011-02-18 22:22:15 +0000219INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfo)
Chris Lattner2e12f1a2010-12-27 18:39:08 +0000220INITIALIZE_AG_DEPENDENCY(AliasAnalysis)
Chandler Carruthd12aae62013-01-07 09:17:41 +0000221INITIALIZE_AG_DEPENDENCY(TargetTransformInfo)
Chris Lattnere6bb6492010-12-26 19:39:38 +0000222INITIALIZE_PASS_END(LoopIdiomRecognize, "loop-idiom", "Recognize loop idioms",
223 false, false)
224
225Pass *llvm::createLoopIdiomPass() { return new LoopIdiomRecognize(); }
226
Chris Lattner4f81b542011-05-22 17:39:56 +0000227/// deleteDeadInstruction - Delete this instruction. Before we do, go through
Chris Lattner9f391882010-12-27 00:03:23 +0000228/// and zero out all the operands of this instruction. If any of them become
229/// dead, delete them and the computation tree that feeds them.
230///
Benjamin Kramer8e0d1c02012-08-29 15:32:21 +0000231static void deleteDeadInstruction(Instruction *I, ScalarEvolution &SE,
232 const TargetLibraryInfo *TLI) {
Chris Lattner9f391882010-12-27 00:03:23 +0000233 SmallVector<Instruction*, 32> NowDeadInsts;
Andrew Trickd99b39e2011-03-14 16:48:10 +0000234
Chris Lattner9f391882010-12-27 00:03:23 +0000235 NowDeadInsts.push_back(I);
Andrew Trickd99b39e2011-03-14 16:48:10 +0000236
Chris Lattner9f391882010-12-27 00:03:23 +0000237 // Before we touch this instruction, remove it from SE!
238 do {
239 Instruction *DeadInst = NowDeadInsts.pop_back_val();
Andrew Trickd99b39e2011-03-14 16:48:10 +0000240
Chris Lattner9f391882010-12-27 00:03:23 +0000241 // This instruction is dead, zap it, in stages. Start by removing it from
242 // SCEV.
243 SE.forgetValue(DeadInst);
Andrew Trickd99b39e2011-03-14 16:48:10 +0000244
Chris Lattner9f391882010-12-27 00:03:23 +0000245 for (unsigned op = 0, e = DeadInst->getNumOperands(); op != e; ++op) {
246 Value *Op = DeadInst->getOperand(op);
247 DeadInst->setOperand(op, 0);
Andrew Trickd99b39e2011-03-14 16:48:10 +0000248
Chris Lattner9f391882010-12-27 00:03:23 +0000249 // If this operand just became dead, add it to the NowDeadInsts list.
250 if (!Op->use_empty()) continue;
Andrew Trickd99b39e2011-03-14 16:48:10 +0000251
Chris Lattner9f391882010-12-27 00:03:23 +0000252 if (Instruction *OpI = dyn_cast<Instruction>(Op))
Benjamin Kramer8e0d1c02012-08-29 15:32:21 +0000253 if (isInstructionTriviallyDead(OpI, TLI))
Chris Lattner9f391882010-12-27 00:03:23 +0000254 NowDeadInsts.push_back(OpI);
255 }
Andrew Trickd99b39e2011-03-14 16:48:10 +0000256
Chris Lattner9f391882010-12-27 00:03:23 +0000257 DeadInst->eraseFromParent();
Andrew Trickd99b39e2011-03-14 16:48:10 +0000258
Chris Lattner9f391882010-12-27 00:03:23 +0000259 } while (!NowDeadInsts.empty());
260}
261
Chandler Carrutha8647482012-11-02 08:33:25 +0000262/// deleteIfDeadInstruction - If the specified value is a dead instruction,
263/// delete it and any recursively used instructions.
264static void deleteIfDeadInstruction(Value *V, ScalarEvolution &SE,
265 const TargetLibraryInfo *TLI) {
266 if (Instruction *I = dyn_cast<Instruction>(V))
267 if (isInstructionTriviallyDead(I, TLI))
268 deleteDeadInstruction(I, SE, TLI);
269}
270
Shuxin Yang5518a132012-12-09 03:12:46 +0000271//===----------------------------------------------------------------------===//
272//
273// Implementation of LIRUtil
274//
275//===----------------------------------------------------------------------===//
276
Matt Arsenault1f4492e2013-07-22 18:59:58 +0000277// This function will return true iff the given block contains nothing but goto.
278// A typical usage of this function is to check if the preheader function is
279// "almost" empty such that generated intrinsic functions can be moved across
280// the preheader and be placed at the end of the precondition block without
281// the concern of breaking data dependence.
Shuxin Yang5518a132012-12-09 03:12:46 +0000282bool LIRUtil::isAlmostEmpty(BasicBlock *BB) {
283 if (BranchInst *Br = getBranch(BB)) {
284 return Br->isUnconditional() && BB->size() == 1;
285 }
286 return false;
287}
288
289Value *LIRUtil::getBrCondtion(BasicBlock *BB) {
290 BranchInst *Br = getBranch(BB);
291 return Br ? Br->getCondition() : 0;
292}
293
294BasicBlock *LIRUtil::getPrecondBb(BasicBlock *PreHead) {
295 if (BasicBlock *BB = PreHead->getSinglePredecessor()) {
296 BranchInst *Br = getBranch(BB);
297 return Br && Br->isConditional() ? BB : 0;
298 }
299 return 0;
300}
301
302//===----------------------------------------------------------------------===//
303//
304// Implementation of NclPopcountRecognize
305//
306//===----------------------------------------------------------------------===//
307
308NclPopcountRecognize::NclPopcountRecognize(LoopIdiomRecognize &TheLIR):
309 LIR(TheLIR), CurLoop(TheLIR.getLoop()), PreCondBB(0) {
310}
311
312bool NclPopcountRecognize::preliminaryScreen() {
Chandler Carruth9980b8a2013-01-05 10:00:09 +0000313 const TargetTransformInfo *TTI = LIR.getTargetTransformInfo();
Chandler Carruthd1b8ef92013-01-07 03:16:03 +0000314 if (TTI->getPopcntSupport(32) != TargetTransformInfo::PSK_FastHardware)
Shuxin Yang5518a132012-12-09 03:12:46 +0000315 return false;
316
Robert Wilhelm3f4f4202013-09-28 13:42:22 +0000317 // Counting population are usually conducted by few arithmetic instructions.
Shuxin Yang5518a132012-12-09 03:12:46 +0000318 // Such instructions can be easilly "absorbed" by vacant slots in a
319 // non-compact loop. Therefore, recognizing popcount idiom only makes sense
320 // in a compact loop.
321
322 // Give up if the loop has multiple blocks or multiple backedges.
323 if (CurLoop->getNumBackEdges() != 1 || CurLoop->getNumBlocks() != 1)
324 return false;
325
326 BasicBlock *LoopBody = *(CurLoop->block_begin());
327 if (LoopBody->size() >= 20) {
328 // The loop is too big, bail out.
329 return false;
330 }
331
332 // It should have a preheader containing nothing but a goto instruction.
333 BasicBlock *PreHead = CurLoop->getLoopPreheader();
334 if (!PreHead || !LIRUtil::isAlmostEmpty(PreHead))
335 return false;
336
337 // It should have a precondition block where the generated popcount instrinsic
338 // function will be inserted.
339 PreCondBB = LIRUtil::getPrecondBb(PreHead);
340 if (!PreCondBB)
341 return false;
Matt Arsenault1f4492e2013-07-22 18:59:58 +0000342
Shuxin Yang5518a132012-12-09 03:12:46 +0000343 return true;
344}
345
346Value *NclPopcountRecognize::matchCondition (BranchInst *Br,
347 BasicBlock *LoopEntry) const {
348 if (!Br || !Br->isConditional())
349 return 0;
350
351 ICmpInst *Cond = dyn_cast<ICmpInst>(Br->getCondition());
352 if (!Cond)
353 return 0;
354
355 ConstantInt *CmpZero = dyn_cast<ConstantInt>(Cond->getOperand(1));
356 if (!CmpZero || !CmpZero->isZero())
357 return 0;
358
359 ICmpInst::Predicate Pred = Cond->getPredicate();
360 if ((Pred == ICmpInst::ICMP_NE && Br->getSuccessor(0) == LoopEntry) ||
361 (Pred == ICmpInst::ICMP_EQ && Br->getSuccessor(1) == LoopEntry))
362 return Cond->getOperand(0);
363
364 return 0;
365}
366
367bool NclPopcountRecognize::detectIdiom(Instruction *&CntInst,
368 PHINode *&CntPhi,
369 Value *&Var) const {
370 // Following code tries to detect this idiom:
371 //
372 // if (x0 != 0)
373 // goto loop-exit // the precondition of the loop
374 // cnt0 = init-val;
375 // do {
376 // x1 = phi (x0, x2);
377 // cnt1 = phi(cnt0, cnt2);
378 //
379 // cnt2 = cnt1 + 1;
380 // ...
381 // x2 = x1 & (x1 - 1);
382 // ...
383 // } while(x != 0);
384 //
385 // loop-exit:
386 //
387
388 // step 1: Check to see if the look-back branch match this pattern:
389 // "if (a!=0) goto loop-entry".
390 BasicBlock *LoopEntry;
391 Instruction *DefX2, *CountInst;
392 Value *VarX1, *VarX0;
393 PHINode *PhiX, *CountPhi;
394
395 DefX2 = CountInst = 0;
396 VarX1 = VarX0 = 0;
397 PhiX = CountPhi = 0;
398 LoopEntry = *(CurLoop->block_begin());
399
400 // step 1: Check if the loop-back branch is in desirable form.
401 {
402 if (Value *T = matchCondition (LIRUtil::getBranch(LoopEntry), LoopEntry))
403 DefX2 = dyn_cast<Instruction>(T);
404 else
405 return false;
406 }
407
408 // step 2: detect instructions corresponding to "x2 = x1 & (x1 - 1)"
409 {
Shuxin Yang253449d2013-01-10 23:32:01 +0000410 if (!DefX2 || DefX2->getOpcode() != Instruction::And)
Shuxin Yang5518a132012-12-09 03:12:46 +0000411 return false;
412
413 BinaryOperator *SubOneOp;
414
415 if ((SubOneOp = dyn_cast<BinaryOperator>(DefX2->getOperand(0))))
416 VarX1 = DefX2->getOperand(1);
417 else {
418 VarX1 = DefX2->getOperand(0);
419 SubOneOp = dyn_cast<BinaryOperator>(DefX2->getOperand(1));
420 }
421 if (!SubOneOp)
422 return false;
423
424 Instruction *SubInst = cast<Instruction>(SubOneOp);
425 ConstantInt *Dec = dyn_cast<ConstantInt>(SubInst->getOperand(1));
426 if (!Dec ||
427 !((SubInst->getOpcode() == Instruction::Sub && Dec->isOne()) ||
428 (SubInst->getOpcode() == Instruction::Add && Dec->isAllOnesValue()))) {
429 return false;
430 }
431 }
432
433 // step 3: Check the recurrence of variable X
434 {
435 PhiX = dyn_cast<PHINode>(VarX1);
436 if (!PhiX ||
437 (PhiX->getOperand(0) != DefX2 && PhiX->getOperand(1) != DefX2)) {
438 return false;
439 }
440 }
441
442 // step 4: Find the instruction which count the population: cnt2 = cnt1 + 1
443 {
444 CountInst = NULL;
445 for (BasicBlock::iterator Iter = LoopEntry->getFirstNonPHI(),
446 IterE = LoopEntry->end(); Iter != IterE; Iter++) {
447 Instruction *Inst = Iter;
448 if (Inst->getOpcode() != Instruction::Add)
449 continue;
450
451 ConstantInt *Inc = dyn_cast<ConstantInt>(Inst->getOperand(1));
452 if (!Inc || !Inc->isOne())
453 continue;
454
455 PHINode *Phi = dyn_cast<PHINode>(Inst->getOperand(0));
456 if (!Phi || Phi->getParent() != LoopEntry)
457 continue;
458
459 // Check if the result of the instruction is live of the loop.
460 bool LiveOutLoop = false;
461 for (Value::use_iterator I = Inst->use_begin(), E = Inst->use_end();
462 I != E; I++) {
463 if ((cast<Instruction>(*I))->getParent() != LoopEntry) {
464 LiveOutLoop = true; break;
465 }
466 }
467
468 if (LiveOutLoop) {
469 CountInst = Inst;
470 CountPhi = Phi;
471 break;
472 }
473 }
474
475 if (!CountInst)
476 return false;
477 }
478
479 // step 5: check if the precondition is in this form:
480 // "if (x != 0) goto loop-head ; else goto somewhere-we-don't-care;"
481 {
482 BranchInst *PreCondBr = LIRUtil::getBranch(PreCondBB);
483 Value *T = matchCondition (PreCondBr, CurLoop->getLoopPreheader());
484 if (T != PhiX->getOperand(0) && T != PhiX->getOperand(1))
485 return false;
486
487 CntInst = CountInst;
488 CntPhi = CountPhi;
489 Var = T;
490 }
491
492 return true;
493}
494
495void NclPopcountRecognize::transform(Instruction *CntInst,
496 PHINode *CntPhi, Value *Var) {
497
498 ScalarEvolution *SE = LIR.getScalarEvolution();
499 TargetLibraryInfo *TLI = LIR.getTargetLibraryInfo();
500 BasicBlock *PreHead = CurLoop->getLoopPreheader();
501 BranchInst *PreCondBr = LIRUtil::getBranch(PreCondBB);
502 const DebugLoc DL = CntInst->getDebugLoc();
503
504 // Assuming before transformation, the loop is following:
505 // if (x) // the precondition
506 // do { cnt++; x &= x - 1; } while(x);
Matt Arsenault1f4492e2013-07-22 18:59:58 +0000507
Shuxin Yang5518a132012-12-09 03:12:46 +0000508 // Step 1: Insert the ctpop instruction at the end of the precondition block
509 IRBuilderTy Builder(PreCondBr);
510 Value *PopCnt, *PopCntZext, *NewCount, *TripCnt;
511 {
512 PopCnt = createPopcntIntrinsic(Builder, Var, DL);
513 NewCount = PopCntZext =
514 Builder.CreateZExtOrTrunc(PopCnt, cast<IntegerType>(CntPhi->getType()));
515
516 if (NewCount != PopCnt)
517 (cast<Instruction>(NewCount))->setDebugLoc(DL);
518
519 // TripCnt is exactly the number of iterations the loop has
520 TripCnt = NewCount;
521
522 // If the popoulation counter's initial value is not zero, insert Add Inst.
523 Value *CntInitVal = CntPhi->getIncomingValueForBlock(PreHead);
524 ConstantInt *InitConst = dyn_cast<ConstantInt>(CntInitVal);
525 if (!InitConst || !InitConst->isZero()) {
526 NewCount = Builder.CreateAdd(NewCount, CntInitVal);
527 (cast<Instruction>(NewCount))->setDebugLoc(DL);
528 }
529 }
530
531 // Step 2: Replace the precondition from "if(x == 0) goto loop-exit" to
532 // "if(NewCount == 0) loop-exit". Withtout this change, the intrinsic
533 // function would be partial dead code, and downstream passes will drag
534 // it back from the precondition block to the preheader.
535 {
536 ICmpInst *PreCond = cast<ICmpInst>(PreCondBr->getCondition());
537
538 Value *Opnd0 = PopCntZext;
539 Value *Opnd1 = ConstantInt::get(PopCntZext->getType(), 0);
540 if (PreCond->getOperand(0) != Var)
541 std::swap(Opnd0, Opnd1);
542
543 ICmpInst *NewPreCond =
544 cast<ICmpInst>(Builder.CreateICmp(PreCond->getPredicate(), Opnd0, Opnd1));
545 PreCond->replaceAllUsesWith(NewPreCond);
546
547 deleteDeadInstruction(PreCond, *SE, TLI);
548 }
549
550 // Step 3: Note that the population count is exactly the trip count of the
551 // loop in question, which enble us to to convert the loop from noncountable
552 // loop into a countable one. The benefit is twofold:
553 //
554 // - If the loop only counts population, the entire loop become dead after
555 // the transformation. It is lots easier to prove a countable loop dead
556 // than to prove a noncountable one. (In some C dialects, a infite loop
557 // isn't dead even if it computes nothing useful. In general, DCE needs
558 // to prove a noncountable loop finite before safely delete it.)
559 //
560 // - If the loop also performs something else, it remains alive.
561 // Since it is transformed to countable form, it can be aggressively
562 // optimized by some optimizations which are in general not applicable
563 // to a noncountable loop.
564 //
565 // After this step, this loop (conceptually) would look like following:
566 // newcnt = __builtin_ctpop(x);
567 // t = newcnt;
568 // if (x)
569 // do { cnt++; x &= x-1; t--) } while (t > 0);
570 BasicBlock *Body = *(CurLoop->block_begin());
571 {
572 BranchInst *LbBr = LIRUtil::getBranch(Body);
573 ICmpInst *LbCond = cast<ICmpInst>(LbBr->getCondition());
574 Type *Ty = TripCnt->getType();
575
576 PHINode *TcPhi = PHINode::Create(Ty, 2, "tcphi", Body->begin());
577
578 Builder.SetInsertPoint(LbCond);
579 Value *Opnd1 = cast<Value>(TcPhi);
580 Value *Opnd2 = cast<Value>(ConstantInt::get(Ty, 1));
581 Instruction *TcDec =
582 cast<Instruction>(Builder.CreateSub(Opnd1, Opnd2, "tcdec", false, true));
583
584 TcPhi->addIncoming(TripCnt, PreHead);
585 TcPhi->addIncoming(TcDec, Body);
586
587 CmpInst::Predicate Pred = (LbBr->getSuccessor(0) == Body) ?
588 CmpInst::ICMP_UGT : CmpInst::ICMP_SLE;
589 LbCond->setPredicate(Pred);
590 LbCond->setOperand(0, TcDec);
591 LbCond->setOperand(1, cast<Value>(ConstantInt::get(Ty, 0)));
592 }
593
594 // Step 4: All the references to the original population counter outside
595 // the loop are replaced with the NewCount -- the value returned from
596 // __builtin_ctpop().
597 {
598 SmallVector<Value *, 4> CntUses;
599 for (Value::use_iterator I = CntInst->use_begin(), E = CntInst->use_end();
600 I != E; I++) {
601 if (cast<Instruction>(*I)->getParent() != Body)
602 CntUses.push_back(*I);
603 }
604 for (unsigned Idx = 0; Idx < CntUses.size(); Idx++) {
605 (cast<Instruction>(CntUses[Idx]))->replaceUsesOfWith(CntInst, NewCount);
606 }
607 }
608
609 // step 5: Forget the "non-computable" trip-count SCEV associated with the
610 // loop. The loop would otherwise not be deleted even if it becomes empty.
611 SE->forgetLoop(CurLoop);
612}
613
Matt Arsenault1f4492e2013-07-22 18:59:58 +0000614CallInst *NclPopcountRecognize::createPopcntIntrinsic(IRBuilderTy &IRBuilder,
Shuxin Yang5518a132012-12-09 03:12:46 +0000615 Value *Val, DebugLoc DL) {
616 Value *Ops[] = { Val };
617 Type *Tys[] = { Val->getType() };
618
619 Module *M = (*(CurLoop->block_begin()))->getParent()->getParent();
620 Value *Func = Intrinsic::getDeclaration(M, Intrinsic::ctpop, Tys);
621 CallInst *CI = IRBuilder.CreateCall(Func, Ops);
622 CI->setDebugLoc(DL);
623
624 return CI;
625}
626
627/// recognize - detect population count idiom in a non-countable loop. If
628/// detected, transform the relevant code to popcount intrinsic function
629/// call, and return true; otherwise, return false.
630bool NclPopcountRecognize::recognize() {
631
Chandler Carruth9980b8a2013-01-05 10:00:09 +0000632 if (!LIR.getTargetTransformInfo())
Shuxin Yang5518a132012-12-09 03:12:46 +0000633 return false;
634
635 LIR.getScalarEvolution();
636
637 if (!preliminaryScreen())
638 return false;
639
640 Instruction *CntInst;
641 PHINode *CntPhi;
642 Value *Val;
643 if (!detectIdiom(CntInst, CntPhi, Val))
644 return false;
645
646 transform(CntInst, CntPhi, Val);
647 return true;
648}
649
650//===----------------------------------------------------------------------===//
651//
652// Implementation of LoopIdiomRecognize
653//
654//===----------------------------------------------------------------------===//
655
656bool LoopIdiomRecognize::runOnCountableLoop() {
657 const SCEV *BECount = SE->getBackedgeTakenCount(CurLoop);
658 if (isa<SCEVCouldNotCompute>(BECount)) return false;
659
660 // If this loop executes exactly one time, then it should be peeled, not
661 // optimized by this pass.
662 if (const SCEVConstant *BECst = dyn_cast<SCEVConstant>(BECount))
663 if (BECst->getValue()->getValue() == 0)
664 return false;
665
666 // We require target data for now.
667 if (!getDataLayout())
668 return false;
669
Matt Arsenault1f4492e2013-07-22 18:59:58 +0000670 // set DT
Shuxin Yangcbf53732013-01-02 18:26:31 +0000671 (void)getDominatorTree();
Shuxin Yang5518a132012-12-09 03:12:46 +0000672
673 LoopInfo &LI = getAnalysis<LoopInfo>();
674 TLI = &getAnalysis<TargetLibraryInfo>();
675
Matt Arsenault1f4492e2013-07-22 18:59:58 +0000676 // set TLI
Shuxin Yangcbf53732013-01-02 18:26:31 +0000677 (void)getTargetLibraryInfo();
Shuxin Yang5518a132012-12-09 03:12:46 +0000678
679 SmallVector<BasicBlock*, 8> ExitBlocks;
680 CurLoop->getUniqueExitBlocks(ExitBlocks);
681
682 DEBUG(dbgs() << "loop-idiom Scanning: F["
683 << CurLoop->getHeader()->getParent()->getName()
684 << "] Loop %" << CurLoop->getHeader()->getName() << "\n");
685
686 bool MadeChange = false;
687 // Scan all the blocks in the loop that are not in subloops.
688 for (Loop::block_iterator BI = CurLoop->block_begin(),
689 E = CurLoop->block_end(); BI != E; ++BI) {
690 // Ignore blocks in subloops.
691 if (LI.getLoopFor(*BI) != CurLoop)
692 continue;
693
694 MadeChange |= runOnLoopBlock(*BI, BECount, ExitBlocks);
695 }
696 return MadeChange;
697}
698
699bool LoopIdiomRecognize::runOnNoncountableLoop() {
700 NclPopcountRecognize Popcount(*this);
701 if (Popcount.recognize())
702 return true;
703
704 return false;
705}
706
Chris Lattnere6bb6492010-12-26 19:39:38 +0000707bool LoopIdiomRecognize::runOnLoop(Loop *L, LPPassManager &LPM) {
Chris Lattner22920b52010-12-26 20:45:45 +0000708 CurLoop = L;
Andrew Trickd99b39e2011-03-14 16:48:10 +0000709
Benjamin Kramer28aff842012-09-21 17:27:23 +0000710 // If the loop could not be converted to canonical form, it must have an
711 // indirectbr in it, just give up.
712 if (!L->getLoopPreheader())
713 return false;
714
Nadav Rotema94d6e82012-07-24 10:51:42 +0000715 // Disable loop idiom recognition if the function's name is a common idiom.
Chad Rosier71400b62011-07-15 18:25:04 +0000716 StringRef Name = L->getHeader()->getParent()->getName();
Chandler Carrutha8647482012-11-02 08:33:25 +0000717 if (Name == "memset" || Name == "memcpy")
Chad Rosier71400b62011-07-15 18:25:04 +0000718 return false;
719
Chris Lattner22920b52010-12-26 20:45:45 +0000720 SE = &getAnalysis<ScalarEvolution>();
Shuxin Yang5518a132012-12-09 03:12:46 +0000721 if (SE->hasLoopInvariantBackedgeTakenCount(L))
722 return runOnCountableLoop();
723 return runOnNoncountableLoop();
Chris Lattner62c50fd2011-01-02 19:01:03 +0000724}
725
726/// runOnLoopBlock - Process the specified block, which lives in a counted loop
727/// with the specified backedge count. This block is known to be in the current
728/// loop and not in any subloops.
729bool LoopIdiomRecognize::runOnLoopBlock(BasicBlock *BB, const SCEV *BECount,
730 SmallVectorImpl<BasicBlock*> &ExitBlocks) {
731 // We can only promote stores in this block if they are unconditionally
732 // executed in the loop. For a block to be unconditionally executed, it has
733 // to dominate all the exit blocks of the loop. Verify this now.
734 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i)
735 if (!DT->dominates(BB, ExitBlocks[i]))
736 return false;
Andrew Trickd99b39e2011-03-14 16:48:10 +0000737
Chris Lattner22920b52010-12-26 20:45:45 +0000738 bool MadeChange = false;
739 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ) {
Chris Lattnerb7e9ef02011-01-04 07:27:30 +0000740 Instruction *Inst = I++;
741 // Look for store instructions, which may be optimized to memset/memcpy.
742 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
Chris Lattnerb7e9ef02011-01-04 07:27:30 +0000743 WeakVH InstPtr(I);
744 if (!processLoopStore(SI, BECount)) continue;
745 MadeChange = true;
Andrew Trickd99b39e2011-03-14 16:48:10 +0000746
Chris Lattnerb7e9ef02011-01-04 07:27:30 +0000747 // If processing the store invalidated our iterator, start over from the
Chris Lattnere41d3c02011-01-04 07:46:33 +0000748 // top of the block.
Chris Lattnerb7e9ef02011-01-04 07:27:30 +0000749 if (InstPtr == 0)
750 I = BB->begin();
751 continue;
752 }
Andrew Trickd99b39e2011-03-14 16:48:10 +0000753
Chris Lattnere41d3c02011-01-04 07:46:33 +0000754 // Look for memset instructions, which may be optimized to a larger memset.
755 if (MemSetInst *MSI = dyn_cast<MemSetInst>(Inst)) {
756 WeakVH InstPtr(I);
757 if (!processLoopMemSet(MSI, BECount)) continue;
758 MadeChange = true;
Andrew Trickd99b39e2011-03-14 16:48:10 +0000759
Chris Lattnere41d3c02011-01-04 07:46:33 +0000760 // If processing the memset invalidated our iterator, start over from the
761 // top of the block.
762 if (InstPtr == 0)
763 I = BB->begin();
764 continue;
765 }
Chris Lattner22920b52010-12-26 20:45:45 +0000766 }
Andrew Trickd99b39e2011-03-14 16:48:10 +0000767
Chris Lattner22920b52010-12-26 20:45:45 +0000768 return MadeChange;
Chris Lattnere6bb6492010-12-26 19:39:38 +0000769}
770
Chris Lattner62c50fd2011-01-02 19:01:03 +0000771
Chris Lattnere41d3c02011-01-04 07:46:33 +0000772/// processLoopStore - See if this store can be promoted to a memset or memcpy.
Chris Lattner22920b52010-12-26 20:45:45 +0000773bool LoopIdiomRecognize::processLoopStore(StoreInst *SI, const SCEV *BECount) {
Eli Friedman2bc3d522011-09-12 20:23:13 +0000774 if (!SI->isSimple()) return false;
Chris Lattnere41d3c02011-01-04 07:46:33 +0000775
Chris Lattner22920b52010-12-26 20:45:45 +0000776 Value *StoredVal = SI->getValueOperand();
Chris Lattnera92ff912010-12-26 23:42:51 +0000777 Value *StorePtr = SI->getPointerOperand();
Andrew Trickd99b39e2011-03-14 16:48:10 +0000778
Chris Lattner95ae6762010-12-28 18:53:48 +0000779 // Reject stores that are so large that they overflow an unsigned.
Chris Lattner22920b52010-12-26 20:45:45 +0000780 uint64_t SizeInBits = TD->getTypeSizeInBits(StoredVal->getType());
Chris Lattner95ae6762010-12-28 18:53:48 +0000781 if ((SizeInBits & 7) || (SizeInBits >> 32) != 0)
Chris Lattner22920b52010-12-26 20:45:45 +0000782 return false;
Andrew Trickd99b39e2011-03-14 16:48:10 +0000783
Chris Lattner22920b52010-12-26 20:45:45 +0000784 // See if the pointer expression is an AddRec like {base,+,1} on the current
785 // loop, which indicates a strided store. If we have something else, it's a
786 // random store we can't handle.
Chris Lattnere2c43922011-01-02 03:37:56 +0000787 const SCEVAddRecExpr *StoreEv =
788 dyn_cast<SCEVAddRecExpr>(SE->getSCEV(StorePtr));
789 if (StoreEv == 0 || StoreEv->getLoop() != CurLoop || !StoreEv->isAffine())
Chris Lattner22920b52010-12-26 20:45:45 +0000790 return false;
791
792 // Check to see if the stride matches the size of the store. If so, then we
793 // know that every byte is touched in the loop.
Andrew Trickd99b39e2011-03-14 16:48:10 +0000794 unsigned StoreSize = (unsigned)SizeInBits >> 3;
Chris Lattnere2c43922011-01-02 03:37:56 +0000795 const SCEVConstant *Stride = dyn_cast<SCEVConstant>(StoreEv->getOperand(1));
Andrew Trickd99b39e2011-03-14 16:48:10 +0000796
Chris Lattner408b5342011-02-21 02:08:54 +0000797 if (Stride == 0 || StoreSize != Stride->getValue()->getValue()) {
798 // TODO: Could also handle negative stride here someday, that will require
799 // the validity check in mayLoopAccessLocation to be updated though.
800 // Enable this to print exact negative strides.
Chris Lattner0e68cee2011-02-21 17:02:55 +0000801 if (0 && Stride && StoreSize == -Stride->getValue()->getValue()) {
Chris Lattner408b5342011-02-21 02:08:54 +0000802 dbgs() << "NEGATIVE STRIDE: " << *SI << "\n";
803 dbgs() << "BB: " << *SI->getParent();
804 }
Andrew Trickd99b39e2011-03-14 16:48:10 +0000805
Chris Lattner22920b52010-12-26 20:45:45 +0000806 return false;
Chris Lattner408b5342011-02-21 02:08:54 +0000807 }
Chris Lattner3a393722011-02-19 19:31:39 +0000808
809 // See if we can optimize just this store in isolation.
810 if (processLoopStridedStore(StorePtr, StoreSize, SI->getAlignment(),
811 StoredVal, SI, StoreEv, BECount))
812 return true;
Chris Lattnera92ff912010-12-26 23:42:51 +0000813
Chris Lattnere2c43922011-01-02 03:37:56 +0000814 // If the stored value is a strided load in the same loop with the same stride
815 // this this may be transformable into a memcpy. This kicks in for stuff like
816 // for (i) A[i] = B[i];
817 if (LoadInst *LI = dyn_cast<LoadInst>(StoredVal)) {
818 const SCEVAddRecExpr *LoadEv =
819 dyn_cast<SCEVAddRecExpr>(SE->getSCEV(LI->getOperand(0)));
820 if (LoadEv && LoadEv->getLoop() == CurLoop && LoadEv->isAffine() &&
Eli Friedman2bc3d522011-09-12 20:23:13 +0000821 StoreEv->getOperand(1) == LoadEv->getOperand(1) && LI->isSimple())
Chris Lattnere2c43922011-01-02 03:37:56 +0000822 if (processLoopStoreOfLoopLoad(SI, StoreSize, StoreEv, LoadEv, BECount))
823 return true;
824 }
Chris Lattner4ce31fb2011-01-02 07:36:44 +0000825 //errs() << "UNHANDLED strided store: " << *StoreEv << " - " << *SI << "\n";
Chris Lattner22920b52010-12-26 20:45:45 +0000826
Chris Lattnere6bb6492010-12-26 19:39:38 +0000827 return false;
828}
829
Chris Lattnere41d3c02011-01-04 07:46:33 +0000830/// processLoopMemSet - See if this memset can be promoted to a large memset.
831bool LoopIdiomRecognize::
832processLoopMemSet(MemSetInst *MSI, const SCEV *BECount) {
833 // We can only handle non-volatile memsets with a constant size.
834 if (MSI->isVolatile() || !isa<ConstantInt>(MSI->getLength())) return false;
835
Chris Lattnerc19175c2011-02-18 22:22:15 +0000836 // If we're not allowed to hack on memset, we fail.
837 if (!TLI->has(LibFunc::memset))
838 return false;
Andrew Trickd99b39e2011-03-14 16:48:10 +0000839
Chris Lattnere41d3c02011-01-04 07:46:33 +0000840 Value *Pointer = MSI->getDest();
Andrew Trickd99b39e2011-03-14 16:48:10 +0000841
Chris Lattnere41d3c02011-01-04 07:46:33 +0000842 // See if the pointer expression is an AddRec like {base,+,1} on the current
843 // loop, which indicates a strided store. If we have something else, it's a
844 // random store we can't handle.
845 const SCEVAddRecExpr *Ev = dyn_cast<SCEVAddRecExpr>(SE->getSCEV(Pointer));
846 if (Ev == 0 || Ev->getLoop() != CurLoop || !Ev->isAffine())
847 return false;
848
849 // Reject memsets that are so large that they overflow an unsigned.
850 uint64_t SizeInBytes = cast<ConstantInt>(MSI->getLength())->getZExtValue();
851 if ((SizeInBytes >> 32) != 0)
852 return false;
Andrew Trickd99b39e2011-03-14 16:48:10 +0000853
Chris Lattnere41d3c02011-01-04 07:46:33 +0000854 // Check to see if the stride matches the size of the memset. If so, then we
855 // know that every byte is touched in the loop.
856 const SCEVConstant *Stride = dyn_cast<SCEVConstant>(Ev->getOperand(1));
Andrew Trickd99b39e2011-03-14 16:48:10 +0000857
Chris Lattnere41d3c02011-01-04 07:46:33 +0000858 // TODO: Could also handle negative stride here someday, that will require the
859 // validity check in mayLoopAccessLocation to be updated though.
860 if (Stride == 0 || MSI->getLength() != Stride->getValue())
861 return false;
Andrew Trickd99b39e2011-03-14 16:48:10 +0000862
Chris Lattner3a393722011-02-19 19:31:39 +0000863 return processLoopStridedStore(Pointer, (unsigned)SizeInBytes,
864 MSI->getAlignment(), MSI->getValue(),
865 MSI, Ev, BECount);
Chris Lattnere41d3c02011-01-04 07:46:33 +0000866}
867
Chandler Carrutha8647482012-11-02 08:33:25 +0000868
869/// mayLoopAccessLocation - Return true if the specified loop might access the
870/// specified pointer location, which is a loop-strided access. The 'Access'
871/// argument specifies what the verboten forms of access are (read or write).
872static bool mayLoopAccessLocation(Value *Ptr,AliasAnalysis::ModRefResult Access,
873 Loop *L, const SCEV *BECount,
874 unsigned StoreSize, AliasAnalysis &AA,
875 Instruction *IgnoredStore) {
876 // Get the location that may be stored across the loop. Since the access is
877 // strided positively through memory, we say that the modified location starts
878 // at the pointer and has infinite size.
879 uint64_t AccessSize = AliasAnalysis::UnknownSize;
880
881 // If the loop iterates a fixed number of times, we can refine the access size
882 // to be exactly the size of the memset, which is (BECount+1)*StoreSize
883 if (const SCEVConstant *BECst = dyn_cast<SCEVConstant>(BECount))
884 AccessSize = (BECst->getValue()->getZExtValue()+1)*StoreSize;
885
886 // TODO: For this to be really effective, we have to dive into the pointer
887 // operand in the store. Store to &A[i] of 100 will always return may alias
888 // with store of &A[100], we need to StoreLoc to be "A" with size of 100,
889 // which will then no-alias a store to &A[100].
890 AliasAnalysis::Location StoreLoc(Ptr, AccessSize);
891
892 for (Loop::block_iterator BI = L->block_begin(), E = L->block_end(); BI != E;
893 ++BI)
894 for (BasicBlock::iterator I = (*BI)->begin(), E = (*BI)->end(); I != E; ++I)
895 if (&*I != IgnoredStore &&
896 (AA.getModRefInfo(I, StoreLoc) & Access))
897 return true;
898
899 return false;
900}
901
Chris Lattner3a393722011-02-19 19:31:39 +0000902/// getMemSetPatternValue - If a strided store of the specified value is safe to
903/// turn into a memset_pattern16, return a ConstantArray of 16 bytes that should
904/// be passed in. Otherwise, return null.
905///
906/// Note that we don't ever attempt to use memset_pattern8 or 4, because these
907/// just replicate their input array and then pass on to memset_pattern16.
Micah Villmow3574eca2012-10-08 16:38:25 +0000908static Constant *getMemSetPatternValue(Value *V, const DataLayout &TD) {
Chris Lattner3a393722011-02-19 19:31:39 +0000909 // If the value isn't a constant, we can't promote it to being in a constant
910 // array. We could theoretically do a store to an alloca or something, but
911 // that doesn't seem worthwhile.
912 Constant *C = dyn_cast<Constant>(V);
913 if (C == 0) return 0;
Andrew Trickd99b39e2011-03-14 16:48:10 +0000914
Chris Lattner3a393722011-02-19 19:31:39 +0000915 // Only handle simple values that are a power of two bytes in size.
916 uint64_t Size = TD.getTypeSizeInBits(V->getType());
917 if (Size == 0 || (Size & 7) || (Size & (Size-1)))
918 return 0;
Andrew Trickd99b39e2011-03-14 16:48:10 +0000919
Chris Lattner80e8b502011-02-19 19:56:44 +0000920 // Don't care enough about darwin/ppc to implement this.
921 if (TD.isBigEndian())
922 return 0;
Chris Lattner3a393722011-02-19 19:31:39 +0000923
924 // Convert to size in bytes.
925 Size /= 8;
Chris Lattner3a393722011-02-19 19:31:39 +0000926
Chris Lattner3a393722011-02-19 19:31:39 +0000927 // TODO: If CI is larger than 16-bytes, we can try slicing it in half to see
Chris Lattner80e8b502011-02-19 19:56:44 +0000928 // if the top and bottom are the same (e.g. for vectors and large integers).
Chris Lattner3a393722011-02-19 19:31:39 +0000929 if (Size > 16) return 0;
Andrew Trickd99b39e2011-03-14 16:48:10 +0000930
Chris Lattner80e8b502011-02-19 19:56:44 +0000931 // If the constant is exactly 16 bytes, just use it.
932 if (Size == 16) return C;
Chris Lattner3a393722011-02-19 19:31:39 +0000933
Chris Lattner80e8b502011-02-19 19:56:44 +0000934 // Otherwise, we'll use an array of the constants.
935 unsigned ArraySize = 16/Size;
936 ArrayType *AT = ArrayType::get(V->getType(), ArraySize);
937 return ConstantArray::get(AT, std::vector<Constant*>(ArraySize, C));
Chris Lattner3a393722011-02-19 19:31:39 +0000938}
939
940
941/// processLoopStridedStore - We see a strided store of some value. If we can
942/// transform this into a memset or memset_pattern in the loop preheader, do so.
943bool LoopIdiomRecognize::
944processLoopStridedStore(Value *DestPtr, unsigned StoreSize,
945 unsigned StoreAlignment, Value *StoredVal,
946 Instruction *TheStore, const SCEVAddRecExpr *Ev,
947 const SCEV *BECount) {
Andrew Trickd99b39e2011-03-14 16:48:10 +0000948
Chris Lattner3a393722011-02-19 19:31:39 +0000949 // If the stored value is a byte-wise value (like i32 -1), then it may be
950 // turned into a memset of i8 -1, assuming that all the consecutive bytes
951 // are stored. A store of i32 0x01020304 can never be turned into a memset,
952 // but it can be turned into memset_pattern if the target supports it.
953 Value *SplatValue = isBytewiseValue(StoredVal);
954 Constant *PatternValue = 0;
Andrew Trickd99b39e2011-03-14 16:48:10 +0000955
Matt Arsenault11250c12013-09-11 05:09:42 +0000956 unsigned DestAS = DestPtr->getType()->getPointerAddressSpace();
957
Chris Lattner3a393722011-02-19 19:31:39 +0000958 // If we're allowed to form a memset, and the stored value would be acceptable
959 // for memset, use it.
960 if (SplatValue && TLI->has(LibFunc::memset) &&
961 // Verify that the stored value is loop invariant. If not, we can't
962 // promote the memset.
963 CurLoop->isLoopInvariant(SplatValue)) {
964 // Keep and use SplatValue.
965 PatternValue = 0;
Matt Arsenault11250c12013-09-11 05:09:42 +0000966 } else if (DestAS == 0 &&
967 TLI->has(LibFunc::memset_pattern16) &&
Chris Lattner3a393722011-02-19 19:31:39 +0000968 (PatternValue = getMemSetPatternValue(StoredVal, *TD))) {
Matt Arsenault11250c12013-09-11 05:09:42 +0000969 // Don't create memset_pattern16s with address spaces.
Chris Lattner3a393722011-02-19 19:31:39 +0000970 // It looks like we can use PatternValue!
971 SplatValue = 0;
972 } else {
973 // Otherwise, this isn't an idiom we can transform. For example, we can't
Eli Friedman5ac7c7d2011-09-13 00:44:16 +0000974 // do anything with a 3-byte store.
Chris Lattnerbafa1172011-01-01 20:12:04 +0000975 return false;
Chris Lattner3a393722011-02-19 19:31:39 +0000976 }
Andrew Trickd99b39e2011-03-14 16:48:10 +0000977
Chris Lattner4f81b542011-05-22 17:39:56 +0000978 // The trip count of the loop and the base pointer of the addrec SCEV is
979 // guaranteed to be loop invariant, which means that it should dominate the
980 // header. This allows us to insert code for it in the preheader.
981 BasicBlock *Preheader = CurLoop->getLoopPreheader();
982 IRBuilder<> Builder(Preheader->getTerminator());
Andrew Trick5e7645b2011-06-28 05:07:32 +0000983 SCEVExpander Expander(*SE, "loop-idiom");
Andrew Tricka5d950f2011-06-28 05:04:16 +0000984
Matt Arsenault11250c12013-09-11 05:09:42 +0000985 Type *DestInt8PtrTy = Builder.getInt8PtrTy(DestAS);
986
Chris Lattnera92ff912010-12-26 23:42:51 +0000987 // Okay, we have a strided store "p[i]" of a splattable value. We can turn
Benjamin Kramer3740e792012-10-21 19:31:16 +0000988 // this into a memset in the loop preheader now if we want. However, this
989 // would be unsafe to do if there is anything else in the loop that may read
Chandler Carruthece6c6b2012-11-01 08:07:29 +0000990 // or write to the aliased location. Check for any overlap by generating the
991 // base pointer and checking the region.
Andrew Trickd99b39e2011-03-14 16:48:10 +0000992 Value *BasePtr =
Matt Arsenault11250c12013-09-11 05:09:42 +0000993 Expander.expandCodeFor(Ev->getStart(), DestInt8PtrTy,
Chris Lattnera92ff912010-12-26 23:42:51 +0000994 Preheader->getTerminator());
Andrew Trickd99b39e2011-03-14 16:48:10 +0000995
Chandler Carrutha8647482012-11-02 08:33:25 +0000996 if (mayLoopAccessLocation(BasePtr, AliasAnalysis::ModRef,
997 CurLoop, BECount,
Matt Arsenaultf834dce2013-09-11 05:09:35 +0000998 StoreSize, getAnalysis<AliasAnalysis>(), TheStore)) {
Chandler Carrutha8647482012-11-02 08:33:25 +0000999 Expander.clear();
1000 // If we generated new code for the base pointer, clean up.
1001 deleteIfDeadInstruction(BasePtr, *SE, TLI);
1002 return false;
1003 }
1004
Chris Lattner4f81b542011-05-22 17:39:56 +00001005 // Okay, everything looks good, insert the memset.
1006
Chris Lattnera92ff912010-12-26 23:42:51 +00001007 // The # stored bytes is (BECount+1)*Size. Expand the trip count out to
1008 // pointer size if it isn't already.
Matt Arsenault11250c12013-09-11 05:09:42 +00001009 Type *IntPtr = Builder.getIntPtrTy(TD, DestAS);
Chris Lattner7c90b902011-01-04 00:06:55 +00001010 BECount = SE->getTruncateOrZeroExtend(BECount, IntPtr);
Andrew Trickd99b39e2011-03-14 16:48:10 +00001011
Chris Lattnera92ff912010-12-26 23:42:51 +00001012 const SCEV *NumBytesS = SE->getAddExpr(BECount, SE->getConstant(IntPtr, 1),
Andrew Trick3228cc22011-03-14 16:50:06 +00001013 SCEV::FlagNUW);
Matt Arsenaultf834dce2013-09-11 05:09:35 +00001014 if (StoreSize != 1) {
Chris Lattnera92ff912010-12-26 23:42:51 +00001015 NumBytesS = SE->getMulExpr(NumBytesS, SE->getConstant(IntPtr, StoreSize),
Andrew Trick3228cc22011-03-14 16:50:06 +00001016 SCEV::FlagNUW);
Matt Arsenaultf834dce2013-09-11 05:09:35 +00001017 }
Andrew Trickd99b39e2011-03-14 16:48:10 +00001018
1019 Value *NumBytes =
Chris Lattnera92ff912010-12-26 23:42:51 +00001020 Expander.expandCodeFor(NumBytesS, IntPtr, Preheader->getTerminator());
Andrew Trickd99b39e2011-03-14 16:48:10 +00001021
Devang Patelcd77a502011-03-07 22:43:45 +00001022 CallInst *NewCall;
Matt Arsenaultf834dce2013-09-11 05:09:35 +00001023 if (SplatValue) {
1024 NewCall = Builder.CreateMemSet(BasePtr,
1025 SplatValue,
1026 NumBytes,
1027 StoreAlignment);
1028 } else {
Matt Arsenault11250c12013-09-11 05:09:42 +00001029 // Everything is emitted in default address space
1030 Type *Int8PtrTy = DestInt8PtrTy;
1031
Chris Lattner3a393722011-02-19 19:31:39 +00001032 Module *M = TheStore->getParent()->getParent()->getParent();
1033 Value *MSP = M->getOrInsertFunction("memset_pattern16",
1034 Builder.getVoidTy(),
Matt Arsenault11250c12013-09-11 05:09:42 +00001035 Int8PtrTy,
1036 Int8PtrTy,
1037 IntPtr,
Chris Lattner3a393722011-02-19 19:31:39 +00001038 (void*)0);
Andrew Trickd99b39e2011-03-14 16:48:10 +00001039
Chris Lattner3a393722011-02-19 19:31:39 +00001040 // Otherwise we should form a memset_pattern16. PatternValue is known to be
1041 // an constant array of 16-bytes. Plop the value into a mergable global.
1042 GlobalVariable *GV = new GlobalVariable(*M, PatternValue->getType(), true,
1043 GlobalValue::InternalLinkage,
1044 PatternValue, ".memset_pattern");
1045 GV->setUnnamedAddr(true); // Ok to merge these.
1046 GV->setAlignment(16);
Matt Arsenault11250c12013-09-11 05:09:42 +00001047 Value *PatternPtr = ConstantExpr::getBitCast(GV, Int8PtrTy);
Chris Lattner3a393722011-02-19 19:31:39 +00001048 NewCall = Builder.CreateCall3(MSP, BasePtr, PatternPtr, NumBytes);
1049 }
Andrew Trickd99b39e2011-03-14 16:48:10 +00001050
Chris Lattnera92ff912010-12-26 23:42:51 +00001051 DEBUG(dbgs() << " Formed memset: " << *NewCall << "\n"
Chris Lattnere41d3c02011-01-04 07:46:33 +00001052 << " from store to: " << *Ev << " at: " << *TheStore << "\n");
Devang Patelcd77a502011-03-07 22:43:45 +00001053 NewCall->setDebugLoc(TheStore->getDebugLoc());
Andrew Trickd99b39e2011-03-14 16:48:10 +00001054
Chris Lattner9f391882010-12-27 00:03:23 +00001055 // Okay, the memset has been formed. Zap the original store and anything that
1056 // feeds into it.
Benjamin Kramer8e0d1c02012-08-29 15:32:21 +00001057 deleteDeadInstruction(TheStore, *SE, TLI);
Chris Lattner4ce31fb2011-01-02 07:36:44 +00001058 ++NumMemSet;
Chris Lattnera92ff912010-12-26 23:42:51 +00001059 return true;
1060}
1061
Chris Lattnere2c43922011-01-02 03:37:56 +00001062/// processLoopStoreOfLoopLoad - We see a strided store whose value is a
1063/// same-strided load.
1064bool LoopIdiomRecognize::
1065processLoopStoreOfLoopLoad(StoreInst *SI, unsigned StoreSize,
1066 const SCEVAddRecExpr *StoreEv,
1067 const SCEVAddRecExpr *LoadEv,
1068 const SCEV *BECount) {
Chris Lattnerc19175c2011-02-18 22:22:15 +00001069 // If we're not allowed to form memcpy, we fail.
Chandler Carrutha8647482012-11-02 08:33:25 +00001070 if (!TLI->has(LibFunc::memcpy))
Chris Lattnerc19175c2011-02-18 22:22:15 +00001071 return false;
Andrew Trickd99b39e2011-03-14 16:48:10 +00001072
Chris Lattnere2c43922011-01-02 03:37:56 +00001073 LoadInst *LI = cast<LoadInst>(SI->getValueOperand());
Andrew Trickd99b39e2011-03-14 16:48:10 +00001074
Chris Lattner4f81b542011-05-22 17:39:56 +00001075 // The trip count of the loop and the base pointer of the addrec SCEV is
1076 // guaranteed to be loop invariant, which means that it should dominate the
1077 // header. This allows us to insert code for it in the preheader.
1078 BasicBlock *Preheader = CurLoop->getLoopPreheader();
1079 IRBuilder<> Builder(Preheader->getTerminator());
Andrew Trick5e7645b2011-06-28 05:07:32 +00001080 SCEVExpander Expander(*SE, "loop-idiom");
Andrew Tricka5d950f2011-06-28 05:04:16 +00001081
Chris Lattnere2c43922011-01-02 03:37:56 +00001082 // Okay, we have a strided store "p[i]" of a loaded value. We can turn
Chandler Carrutha8647482012-11-02 08:33:25 +00001083 // this into a memcpy in the loop preheader now if we want. However, this
1084 // would be unsafe to do if there is anything else in the loop that may read
1085 // or write the memory region we're storing to. This includes the load that
1086 // feeds the stores. Check for an alias by generating the base address and
1087 // checking everything.
Andrew Trickd99b39e2011-03-14 16:48:10 +00001088 Value *StoreBasePtr =
Chris Lattnere2c43922011-01-02 03:37:56 +00001089 Expander.expandCodeFor(StoreEv->getStart(),
1090 Builder.getInt8PtrTy(SI->getPointerAddressSpace()),
1091 Preheader->getTerminator());
Chandler Carrutha8647482012-11-02 08:33:25 +00001092
1093 if (mayLoopAccessLocation(StoreBasePtr, AliasAnalysis::ModRef,
1094 CurLoop, BECount, StoreSize,
1095 getAnalysis<AliasAnalysis>(), SI)) {
1096 Expander.clear();
1097 // If we generated new code for the base pointer, clean up.
1098 deleteIfDeadInstruction(StoreBasePtr, *SE, TLI);
1099 return false;
1100 }
1101
1102 // For a memcpy, we have to make sure that the input array is not being
1103 // mutated by the loop.
Chris Lattner4f81b542011-05-22 17:39:56 +00001104 Value *LoadBasePtr =
1105 Expander.expandCodeFor(LoadEv->getStart(),
1106 Builder.getInt8PtrTy(LI->getPointerAddressSpace()),
1107 Preheader->getTerminator());
1108
Chandler Carrutha8647482012-11-02 08:33:25 +00001109 if (mayLoopAccessLocation(LoadBasePtr, AliasAnalysis::Mod, CurLoop, BECount,
1110 StoreSize, getAnalysis<AliasAnalysis>(), SI)) {
1111 Expander.clear();
1112 // If we generated new code for the base pointer, clean up.
1113 deleteIfDeadInstruction(LoadBasePtr, *SE, TLI);
1114 deleteIfDeadInstruction(StoreBasePtr, *SE, TLI);
1115 return false;
1116 }
1117
Chris Lattner4f81b542011-05-22 17:39:56 +00001118 // Okay, everything is safe, we can transform this!
Andrew Tricka5d950f2011-06-28 05:04:16 +00001119
Andrew Trickd99b39e2011-03-14 16:48:10 +00001120
Chris Lattnere2c43922011-01-02 03:37:56 +00001121 // The # stored bytes is (BECount+1)*Size. Expand the trip count out to
1122 // pointer size if it isn't already.
Matt Arsenault11250c12013-09-11 05:09:42 +00001123 Type *IntPtrTy = Builder.getIntPtrTy(TD, SI->getPointerAddressSpace());
1124 BECount = SE->getTruncateOrZeroExtend(BECount, IntPtrTy);
Andrew Trickd99b39e2011-03-14 16:48:10 +00001125
Matt Arsenault11250c12013-09-11 05:09:42 +00001126 const SCEV *NumBytesS = SE->getAddExpr(BECount, SE->getConstant(IntPtrTy, 1),
Andrew Trick3228cc22011-03-14 16:50:06 +00001127 SCEV::FlagNUW);
Chris Lattnere2c43922011-01-02 03:37:56 +00001128 if (StoreSize != 1)
Matt Arsenault11250c12013-09-11 05:09:42 +00001129 NumBytesS = SE->getMulExpr(NumBytesS, SE->getConstant(IntPtrTy, StoreSize),
Andrew Trick3228cc22011-03-14 16:50:06 +00001130 SCEV::FlagNUW);
Andrew Trickd99b39e2011-03-14 16:48:10 +00001131
Chris Lattnere2c43922011-01-02 03:37:56 +00001132 Value *NumBytes =
Matt Arsenault11250c12013-09-11 05:09:42 +00001133 Expander.expandCodeFor(NumBytesS, IntPtrTy, Preheader->getTerminator());
Andrew Trickd99b39e2011-03-14 16:48:10 +00001134
Chandler Carrutha8647482012-11-02 08:33:25 +00001135 CallInst *NewCall =
1136 Builder.CreateMemCpy(StoreBasePtr, LoadBasePtr, NumBytes,
1137 std::min(SI->getAlignment(), LI->getAlignment()));
Devang Patelaf358412011-05-04 21:37:05 +00001138 NewCall->setDebugLoc(SI->getDebugLoc());
Andrew Trickd99b39e2011-03-14 16:48:10 +00001139
Chandler Carrutha8647482012-11-02 08:33:25 +00001140 DEBUG(dbgs() << " Formed memcpy: " << *NewCall << "\n"
Chris Lattnere2c43922011-01-02 03:37:56 +00001141 << " from load ptr=" << *LoadEv << " at: " << *LI << "\n"
1142 << " from store ptr=" << *StoreEv << " at: " << *SI << "\n");
Andrew Tricka5d950f2011-06-28 05:04:16 +00001143
Andrew Trickd99b39e2011-03-14 16:48:10 +00001144
Chris Lattnere2c43922011-01-02 03:37:56 +00001145 // Okay, the memset has been formed. Zap the original store and anything that
1146 // feeds into it.
Benjamin Kramer8e0d1c02012-08-29 15:32:21 +00001147 deleteDeadInstruction(SI, *SE, TLI);
Chandler Carrutha8647482012-11-02 08:33:25 +00001148 ++NumMemCpy;
Chris Lattnere2c43922011-01-02 03:37:56 +00001149 return true;
1150}