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 // If compiling for code size we avoid idiom recognition if the resulting
15 // code could be larger than the code for the original loop. One way this could
16 // happen is if the loop is not removable after idiom recognition due to the
17 // presence of non-idiom instructions. The initial implementation of the
18 // heuristics applies to idioms in multi-block loops.
19 //
20 //===----------------------------------------------------------------------===//
21 //
22 // TODO List:
23 //
24 // Future loop memory idioms to recognize:
25 //   memcmp, memmove, strlen, etc.
26 // Future floating point idioms to recognize in -ffast-math mode:
27 //   fpowi
28 // Future integer operation idioms to recognize:
29 //   ctpop, ctlz, cttz
30 //
31 // Beware that isel's default lowering for ctpop is highly inefficient for
32 // i64 and larger types when i64 is legal and the value has few bits set.  It
33 // would be good to enhance isel to emit a loop for ctpop in this case.
34 //
35 // This could recognize common matrix multiplies and dot product idioms and
36 // replace them with calls to BLAS (if linked in??).
37 //
38 //===----------------------------------------------------------------------===//
39 
40 #include "llvm/Transforms/Scalar/LoopIdiomRecognize.h"
41 #include "llvm/ADT/APInt.h"
42 #include "llvm/ADT/ArrayRef.h"
43 #include "llvm/ADT/DenseMap.h"
44 #include "llvm/ADT/MapVector.h"
45 #include "llvm/ADT/SetVector.h"
46 #include "llvm/ADT/SmallPtrSet.h"
47 #include "llvm/ADT/SmallVector.h"
48 #include "llvm/ADT/Statistic.h"
49 #include "llvm/ADT/StringRef.h"
50 #include "llvm/Analysis/AliasAnalysis.h"
51 #include "llvm/Analysis/LoopAccessAnalysis.h"
52 #include "llvm/Analysis/LoopInfo.h"
53 #include "llvm/Analysis/LoopPass.h"
54 #include "llvm/Analysis/MemoryLocation.h"
55 #include "llvm/Analysis/ScalarEvolution.h"
56 #include "llvm/Analysis/ScalarEvolutionExpander.h"
57 #include "llvm/Analysis/ScalarEvolutionExpressions.h"
58 #include "llvm/Analysis/TargetLibraryInfo.h"
59 #include "llvm/Analysis/TargetTransformInfo.h"
60 #include "llvm/Analysis/ValueTracking.h"
61 #include "llvm/IR/Attributes.h"
62 #include "llvm/IR/BasicBlock.h"
63 #include "llvm/IR/Constant.h"
64 #include "llvm/IR/Constants.h"
65 #include "llvm/IR/DataLayout.h"
66 #include "llvm/IR/DebugLoc.h"
67 #include "llvm/IR/DerivedTypes.h"
68 #include "llvm/IR/Dominators.h"
69 #include "llvm/IR/GlobalValue.h"
70 #include "llvm/IR/GlobalVariable.h"
71 #include "llvm/IR/IRBuilder.h"
72 #include "llvm/IR/InstrTypes.h"
73 #include "llvm/IR/Instruction.h"
74 #include "llvm/IR/Instructions.h"
75 #include "llvm/IR/IntrinsicInst.h"
76 #include "llvm/IR/Intrinsics.h"
77 #include "llvm/IR/LLVMContext.h"
78 #include "llvm/IR/Module.h"
79 #include "llvm/IR/PassManager.h"
80 #include "llvm/IR/Type.h"
81 #include "llvm/IR/User.h"
82 #include "llvm/IR/Value.h"
83 #include "llvm/IR/ValueHandle.h"
84 #include "llvm/Pass.h"
85 #include "llvm/Support/Casting.h"
86 #include "llvm/Support/CommandLine.h"
87 #include "llvm/Support/Debug.h"
88 #include "llvm/Support/raw_ostream.h"
89 #include "llvm/Transforms/Scalar.h"
90 #include "llvm/Transforms/Utils/BuildLibCalls.h"
91 #include "llvm/Transforms/Utils/Local.h"
92 #include "llvm/Transforms/Utils/LoopUtils.h"
93 #include <algorithm>
94 #include <cassert>
95 #include <cstdint>
96 #include <utility>
97 #include <vector>
98 
99 using namespace llvm;
100 
101 #define DEBUG_TYPE "loop-idiom"
102 
103 STATISTIC(NumMemSet, "Number of memset's formed from loop stores");
104 STATISTIC(NumMemCpy, "Number of memcpy's formed from loop load+stores");
105 
106 static cl::opt<bool> UseLIRCodeSizeHeurs(
107     "use-lir-code-size-heurs",
108     cl::desc("Use loop idiom recognition code size heuristics when compiling"
109              "with -Os/-Oz"),
110     cl::init(true), cl::Hidden);
111 
112 namespace {
113 
114 class LoopIdiomRecognize {
115   Loop *CurLoop = nullptr;
116   AliasAnalysis *AA;
117   DominatorTree *DT;
118   LoopInfo *LI;
119   ScalarEvolution *SE;
120   TargetLibraryInfo *TLI;
121   const TargetTransformInfo *TTI;
122   const DataLayout *DL;
123   bool ApplyCodeSizeHeuristics;
124 
125 public:
126   explicit LoopIdiomRecognize(AliasAnalysis *AA, DominatorTree *DT,
127                               LoopInfo *LI, ScalarEvolution *SE,
128                               TargetLibraryInfo *TLI,
129                               const TargetTransformInfo *TTI,
130                               const DataLayout *DL)
131       : AA(AA), DT(DT), LI(LI), SE(SE), TLI(TLI), TTI(TTI), DL(DL) {}
132 
133   bool runOnLoop(Loop *L);
134 
135 private:
136   using StoreList = SmallVector<StoreInst *, 8>;
137   using StoreListMap = MapVector<Value *, StoreList>;
138 
139   StoreListMap StoreRefsForMemset;
140   StoreListMap StoreRefsForMemsetPattern;
141   StoreList StoreRefsForMemcpy;
142   bool HasMemset;
143   bool HasMemsetPattern;
144   bool HasMemcpy;
145 
146   /// Return code for isLegalStore()
147   enum LegalStoreKind {
148     None = 0,
149     Memset,
150     MemsetPattern,
151     Memcpy,
152     UnorderedAtomicMemcpy,
153     DontUse // Dummy retval never to be used. Allows catching errors in retval
154             // handling.
155   };
156 
157   /// \name Countable Loop Idiom Handling
158   /// @{
159 
160   bool runOnCountableLoop();
161   bool runOnLoopBlock(BasicBlock *BB, const SCEV *BECount,
162                       SmallVectorImpl<BasicBlock *> &ExitBlocks);
163 
164   void collectStores(BasicBlock *BB);
165   LegalStoreKind isLegalStore(StoreInst *SI);
166   bool processLoopStores(SmallVectorImpl<StoreInst *> &SL, const SCEV *BECount,
167                          bool ForMemset);
168   bool processLoopMemSet(MemSetInst *MSI, const SCEV *BECount);
169 
170   bool processLoopStridedStore(Value *DestPtr, unsigned StoreSize,
171                                unsigned StoreAlignment, Value *StoredVal,
172                                Instruction *TheStore,
173                                SmallPtrSetImpl<Instruction *> &Stores,
174                                const SCEVAddRecExpr *Ev, const SCEV *BECount,
175                                bool NegStride, bool IsLoopMemset = false);
176   bool processLoopStoreOfLoopLoad(StoreInst *SI, const SCEV *BECount);
177   bool avoidLIRForMultiBlockLoop(bool IsMemset = false,
178                                  bool IsLoopMemset = false);
179 
180   /// @}
181   /// \name Noncountable Loop Idiom Handling
182   /// @{
183 
184   bool runOnNoncountableLoop();
185 
186   bool recognizePopcount();
187   void transformLoopToPopcount(BasicBlock *PreCondBB, Instruction *CntInst,
188                                PHINode *CntPhi, Value *Var);
189   bool recognizeAndInsertCTLZ();
190   void transformLoopToCountable(BasicBlock *PreCondBB, Instruction *CntInst,
191                                 PHINode *CntPhi, Value *Var, const DebugLoc DL,
192                                 bool ZeroCheck, bool IsCntPhiUsedOutsideLoop);
193 
194   /// @}
195 };
196 
197 class LoopIdiomRecognizeLegacyPass : public LoopPass {
198 public:
199   static char ID;
200 
201   explicit LoopIdiomRecognizeLegacyPass() : LoopPass(ID) {
202     initializeLoopIdiomRecognizeLegacyPassPass(
203         *PassRegistry::getPassRegistry());
204   }
205 
206   bool runOnLoop(Loop *L, LPPassManager &LPM) override {
207     if (skipLoop(L))
208       return false;
209 
210     AliasAnalysis *AA = &getAnalysis<AAResultsWrapperPass>().getAAResults();
211     DominatorTree *DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree();
212     LoopInfo *LI = &getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
213     ScalarEvolution *SE = &getAnalysis<ScalarEvolutionWrapperPass>().getSE();
214     TargetLibraryInfo *TLI =
215         &getAnalysis<TargetLibraryInfoWrapperPass>().getTLI();
216     const TargetTransformInfo *TTI =
217         &getAnalysis<TargetTransformInfoWrapperPass>().getTTI(
218             *L->getHeader()->getParent());
219     const DataLayout *DL = &L->getHeader()->getModule()->getDataLayout();
220 
221     LoopIdiomRecognize LIR(AA, DT, LI, SE, TLI, TTI, DL);
222     return LIR.runOnLoop(L);
223   }
224 
225   /// This transformation requires natural loop information & requires that
226   /// loop preheaders be inserted into the CFG.
227   void getAnalysisUsage(AnalysisUsage &AU) const override {
228     AU.addRequired<TargetLibraryInfoWrapperPass>();
229     AU.addRequired<TargetTransformInfoWrapperPass>();
230     getLoopAnalysisUsage(AU);
231   }
232 };
233 
234 } // end anonymous namespace
235 
236 char LoopIdiomRecognizeLegacyPass::ID = 0;
237 
238 PreservedAnalyses LoopIdiomRecognizePass::run(Loop &L, LoopAnalysisManager &AM,
239                                               LoopStandardAnalysisResults &AR,
240                                               LPMUpdater &) {
241   const auto *DL = &L.getHeader()->getModule()->getDataLayout();
242 
243   LoopIdiomRecognize LIR(&AR.AA, &AR.DT, &AR.LI, &AR.SE, &AR.TLI, &AR.TTI, DL);
244   if (!LIR.runOnLoop(&L))
245     return PreservedAnalyses::all();
246 
247   return getLoopPassPreservedAnalyses();
248 }
249 
250 INITIALIZE_PASS_BEGIN(LoopIdiomRecognizeLegacyPass, "loop-idiom",
251                       "Recognize loop idioms", false, false)
252 INITIALIZE_PASS_DEPENDENCY(LoopPass)
253 INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass)
254 INITIALIZE_PASS_DEPENDENCY(TargetTransformInfoWrapperPass)
255 INITIALIZE_PASS_END(LoopIdiomRecognizeLegacyPass, "loop-idiom",
256                     "Recognize loop idioms", false, false)
257 
258 Pass *llvm::createLoopIdiomPass() { return new LoopIdiomRecognizeLegacyPass(); }
259 
260 static void deleteDeadInstruction(Instruction *I) {
261   I->replaceAllUsesWith(UndefValue::get(I->getType()));
262   I->eraseFromParent();
263 }
264 
265 //===----------------------------------------------------------------------===//
266 //
267 //          Implementation of LoopIdiomRecognize
268 //
269 //===----------------------------------------------------------------------===//
270 
271 bool LoopIdiomRecognize::runOnLoop(Loop *L) {
272   CurLoop = L;
273   // If the loop could not be converted to canonical form, it must have an
274   // indirectbr in it, just give up.
275   if (!L->getLoopPreheader())
276     return false;
277 
278   // Disable loop idiom recognition if the function's name is a common idiom.
279   StringRef Name = L->getHeader()->getParent()->getName();
280   if (Name == "memset" || Name == "memcpy")
281     return false;
282 
283   // Determine if code size heuristics need to be applied.
284   ApplyCodeSizeHeuristics =
285       L->getHeader()->getParent()->optForSize() && UseLIRCodeSizeHeurs;
286 
287   HasMemset = TLI->has(LibFunc_memset);
288   HasMemsetPattern = TLI->has(LibFunc_memset_pattern16);
289   HasMemcpy = TLI->has(LibFunc_memcpy);
290 
291   if (HasMemset || HasMemsetPattern || HasMemcpy)
292     if (SE->hasLoopInvariantBackedgeTakenCount(L))
293       return runOnCountableLoop();
294 
295   return runOnNoncountableLoop();
296 }
297 
298 bool LoopIdiomRecognize::runOnCountableLoop() {
299   const SCEV *BECount = SE->getBackedgeTakenCount(CurLoop);
300   assert(!isa<SCEVCouldNotCompute>(BECount) &&
301          "runOnCountableLoop() called on a loop without a predictable"
302          "backedge-taken count");
303 
304   // If this loop executes exactly one time, then it should be peeled, not
305   // optimized by this pass.
306   if (const SCEVConstant *BECst = dyn_cast<SCEVConstant>(BECount))
307     if (BECst->getAPInt() == 0)
308       return false;
309 
310   SmallVector<BasicBlock *, 8> ExitBlocks;
311   CurLoop->getUniqueExitBlocks(ExitBlocks);
312 
313   DEBUG(dbgs() << "loop-idiom Scanning: F["
314                << CurLoop->getHeader()->getParent()->getName() << "] Loop %"
315                << CurLoop->getHeader()->getName() << "\n");
316 
317   bool MadeChange = false;
318 
319   // The following transforms hoist stores/memsets into the loop pre-header.
320   // Give up if the loop has instructions may throw.
321   LoopSafetyInfo SafetyInfo;
322   computeLoopSafetyInfo(&SafetyInfo, CurLoop);
323   if (SafetyInfo.MayThrow)
324     return MadeChange;
325 
326   // Scan all the blocks in the loop that are not in subloops.
327   for (auto *BB : CurLoop->getBlocks()) {
328     // Ignore blocks in subloops.
329     if (LI->getLoopFor(BB) != CurLoop)
330       continue;
331 
332     MadeChange |= runOnLoopBlock(BB, BECount, ExitBlocks);
333   }
334   return MadeChange;
335 }
336 
337 static unsigned getStoreSizeInBytes(StoreInst *SI, const DataLayout *DL) {
338   uint64_t SizeInBits = DL->getTypeSizeInBits(SI->getValueOperand()->getType());
339   assert(((SizeInBits & 7) || (SizeInBits >> 32) == 0) &&
340          "Don't overflow unsigned.");
341   return (unsigned)SizeInBits >> 3;
342 }
343 
344 static APInt getStoreStride(const SCEVAddRecExpr *StoreEv) {
345   const SCEVConstant *ConstStride = cast<SCEVConstant>(StoreEv->getOperand(1));
346   return ConstStride->getAPInt();
347 }
348 
349 /// getMemSetPatternValue - If a strided store of the specified value is safe to
350 /// turn into a memset_pattern16, return a ConstantArray of 16 bytes that should
351 /// be passed in.  Otherwise, return null.
352 ///
353 /// Note that we don't ever attempt to use memset_pattern8 or 4, because these
354 /// just replicate their input array and then pass on to memset_pattern16.
355 static Constant *getMemSetPatternValue(Value *V, const DataLayout *DL) {
356   // If the value isn't a constant, we can't promote it to being in a constant
357   // array.  We could theoretically do a store to an alloca or something, but
358   // that doesn't seem worthwhile.
359   Constant *C = dyn_cast<Constant>(V);
360   if (!C)
361     return nullptr;
362 
363   // Only handle simple values that are a power of two bytes in size.
364   uint64_t Size = DL->getTypeSizeInBits(V->getType());
365   if (Size == 0 || (Size & 7) || (Size & (Size - 1)))
366     return nullptr;
367 
368   // Don't care enough about darwin/ppc to implement this.
369   if (DL->isBigEndian())
370     return nullptr;
371 
372   // Convert to size in bytes.
373   Size /= 8;
374 
375   // TODO: If CI is larger than 16-bytes, we can try slicing it in half to see
376   // if the top and bottom are the same (e.g. for vectors and large integers).
377   if (Size > 16)
378     return nullptr;
379 
380   // If the constant is exactly 16 bytes, just use it.
381   if (Size == 16)
382     return C;
383 
384   // Otherwise, we'll use an array of the constants.
385   unsigned ArraySize = 16 / Size;
386   ArrayType *AT = ArrayType::get(V->getType(), ArraySize);
387   return ConstantArray::get(AT, std::vector<Constant *>(ArraySize, C));
388 }
389 
390 LoopIdiomRecognize::LegalStoreKind
391 LoopIdiomRecognize::isLegalStore(StoreInst *SI) {
392   // Don't touch volatile stores.
393   if (SI->isVolatile())
394     return LegalStoreKind::None;
395   // We only want simple or unordered-atomic stores.
396   if (!SI->isUnordered())
397     return LegalStoreKind::None;
398 
399   // Don't convert stores of non-integral pointer types to memsets (which stores
400   // integers).
401   if (DL->isNonIntegralPointerType(SI->getValueOperand()->getType()))
402     return LegalStoreKind::None;
403 
404   // Avoid merging nontemporal stores.
405   if (SI->getMetadata(LLVMContext::MD_nontemporal))
406     return LegalStoreKind::None;
407 
408   Value *StoredVal = SI->getValueOperand();
409   Value *StorePtr = SI->getPointerOperand();
410 
411   // Reject stores that are so large that they overflow an unsigned.
412   uint64_t SizeInBits = DL->getTypeSizeInBits(StoredVal->getType());
413   if ((SizeInBits & 7) || (SizeInBits >> 32) != 0)
414     return LegalStoreKind::None;
415 
416   // See if the pointer expression is an AddRec like {base,+,1} on the current
417   // loop, which indicates a strided store.  If we have something else, it's a
418   // random store we can't handle.
419   const SCEVAddRecExpr *StoreEv =
420       dyn_cast<SCEVAddRecExpr>(SE->getSCEV(StorePtr));
421   if (!StoreEv || StoreEv->getLoop() != CurLoop || !StoreEv->isAffine())
422     return LegalStoreKind::None;
423 
424   // Check to see if we have a constant stride.
425   if (!isa<SCEVConstant>(StoreEv->getOperand(1)))
426     return LegalStoreKind::None;
427 
428   // See if the store can be turned into a memset.
429 
430   // If the stored value is a byte-wise value (like i32 -1), then it may be
431   // turned into a memset of i8 -1, assuming that all the consecutive bytes
432   // are stored.  A store of i32 0x01020304 can never be turned into a memset,
433   // but it can be turned into memset_pattern if the target supports it.
434   Value *SplatValue = isBytewiseValue(StoredVal);
435   Constant *PatternValue = nullptr;
436 
437   // Note: memset and memset_pattern on unordered-atomic is yet not supported
438   bool UnorderedAtomic = SI->isUnordered() && !SI->isSimple();
439 
440   // If we're allowed to form a memset, and the stored value would be
441   // acceptable for memset, use it.
442   if (!UnorderedAtomic && HasMemset && SplatValue &&
443       // Verify that the stored value is loop invariant.  If not, we can't
444       // promote the memset.
445       CurLoop->isLoopInvariant(SplatValue)) {
446     // It looks like we can use SplatValue.
447     return LegalStoreKind::Memset;
448   } else if (!UnorderedAtomic && HasMemsetPattern &&
449              // Don't create memset_pattern16s with address spaces.
450              StorePtr->getType()->getPointerAddressSpace() == 0 &&
451              (PatternValue = getMemSetPatternValue(StoredVal, DL))) {
452     // It looks like we can use PatternValue!
453     return LegalStoreKind::MemsetPattern;
454   }
455 
456   // Otherwise, see if the store can be turned into a memcpy.
457   if (HasMemcpy) {
458     // Check to see if the stride matches the size of the store.  If so, then we
459     // know that every byte is touched in the loop.
460     APInt Stride = getStoreStride(StoreEv);
461     unsigned StoreSize = getStoreSizeInBytes(SI, DL);
462     if (StoreSize != Stride && StoreSize != -Stride)
463       return LegalStoreKind::None;
464 
465     // The store must be feeding a non-volatile load.
466     LoadInst *LI = dyn_cast<LoadInst>(SI->getValueOperand());
467 
468     // Only allow non-volatile loads
469     if (!LI || LI->isVolatile())
470       return LegalStoreKind::None;
471     // Only allow simple or unordered-atomic loads
472     if (!LI->isUnordered())
473       return LegalStoreKind::None;
474 
475     // See if the pointer expression is an AddRec like {base,+,1} on the current
476     // loop, which indicates a strided load.  If we have something else, it's a
477     // random load we can't handle.
478     const SCEVAddRecExpr *LoadEv =
479         dyn_cast<SCEVAddRecExpr>(SE->getSCEV(LI->getPointerOperand()));
480     if (!LoadEv || LoadEv->getLoop() != CurLoop || !LoadEv->isAffine())
481       return LegalStoreKind::None;
482 
483     // The store and load must share the same stride.
484     if (StoreEv->getOperand(1) != LoadEv->getOperand(1))
485       return LegalStoreKind::None;
486 
487     // Success.  This store can be converted into a memcpy.
488     UnorderedAtomic = UnorderedAtomic || LI->isAtomic();
489     return UnorderedAtomic ? LegalStoreKind::UnorderedAtomicMemcpy
490                            : LegalStoreKind::Memcpy;
491   }
492   // This store can't be transformed into a memset/memcpy.
493   return LegalStoreKind::None;
494 }
495 
496 void LoopIdiomRecognize::collectStores(BasicBlock *BB) {
497   StoreRefsForMemset.clear();
498   StoreRefsForMemsetPattern.clear();
499   StoreRefsForMemcpy.clear();
500   for (Instruction &I : *BB) {
501     StoreInst *SI = dyn_cast<StoreInst>(&I);
502     if (!SI)
503       continue;
504 
505     // Make sure this is a strided store with a constant stride.
506     switch (isLegalStore(SI)) {
507     case LegalStoreKind::None:
508       // Nothing to do
509       break;
510     case LegalStoreKind::Memset: {
511       // Find the base pointer.
512       Value *Ptr = GetUnderlyingObject(SI->getPointerOperand(), *DL);
513       StoreRefsForMemset[Ptr].push_back(SI);
514     } break;
515     case LegalStoreKind::MemsetPattern: {
516       // Find the base pointer.
517       Value *Ptr = GetUnderlyingObject(SI->getPointerOperand(), *DL);
518       StoreRefsForMemsetPattern[Ptr].push_back(SI);
519     } break;
520     case LegalStoreKind::Memcpy:
521     case LegalStoreKind::UnorderedAtomicMemcpy:
522       StoreRefsForMemcpy.push_back(SI);
523       break;
524     default:
525       assert(false && "unhandled return value");
526       break;
527     }
528   }
529 }
530 
531 /// runOnLoopBlock - Process the specified block, which lives in a counted loop
532 /// with the specified backedge count.  This block is known to be in the current
533 /// loop and not in any subloops.
534 bool LoopIdiomRecognize::runOnLoopBlock(
535     BasicBlock *BB, const SCEV *BECount,
536     SmallVectorImpl<BasicBlock *> &ExitBlocks) {
537   // We can only promote stores in this block if they are unconditionally
538   // executed in the loop.  For a block to be unconditionally executed, it has
539   // to dominate all the exit blocks of the loop.  Verify this now.
540   for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i)
541     if (!DT->dominates(BB, ExitBlocks[i]))
542       return false;
543 
544   bool MadeChange = false;
545   // Look for store instructions, which may be optimized to memset/memcpy.
546   collectStores(BB);
547 
548   // Look for a single store or sets of stores with a common base, which can be
549   // optimized into a memset (memset_pattern).  The latter most commonly happens
550   // with structs and handunrolled loops.
551   for (auto &SL : StoreRefsForMemset)
552     MadeChange |= processLoopStores(SL.second, BECount, true);
553 
554   for (auto &SL : StoreRefsForMemsetPattern)
555     MadeChange |= processLoopStores(SL.second, BECount, false);
556 
557   // Optimize the store into a memcpy, if it feeds an similarly strided load.
558   for (auto &SI : StoreRefsForMemcpy)
559     MadeChange |= processLoopStoreOfLoopLoad(SI, BECount);
560 
561   for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E;) {
562     Instruction *Inst = &*I++;
563     // Look for memset instructions, which may be optimized to a larger memset.
564     if (MemSetInst *MSI = dyn_cast<MemSetInst>(Inst)) {
565       WeakTrackingVH InstPtr(&*I);
566       if (!processLoopMemSet(MSI, BECount))
567         continue;
568       MadeChange = true;
569 
570       // If processing the memset invalidated our iterator, start over from the
571       // top of the block.
572       if (!InstPtr)
573         I = BB->begin();
574       continue;
575     }
576   }
577 
578   return MadeChange;
579 }
580 
581 /// processLoopStores - See if this store(s) can be promoted to a memset.
582 bool LoopIdiomRecognize::processLoopStores(SmallVectorImpl<StoreInst *> &SL,
583                                            const SCEV *BECount,
584                                            bool ForMemset) {
585   // Try to find consecutive stores that can be transformed into memsets.
586   SetVector<StoreInst *> Heads, Tails;
587   SmallDenseMap<StoreInst *, StoreInst *> ConsecutiveChain;
588 
589   // Do a quadratic search on all of the given stores and find
590   // all of the pairs of stores that follow each other.
591   SmallVector<unsigned, 16> IndexQueue;
592   for (unsigned i = 0, e = SL.size(); i < e; ++i) {
593     assert(SL[i]->isSimple() && "Expected only non-volatile stores.");
594 
595     Value *FirstStoredVal = SL[i]->getValueOperand();
596     Value *FirstStorePtr = SL[i]->getPointerOperand();
597     const SCEVAddRecExpr *FirstStoreEv =
598         cast<SCEVAddRecExpr>(SE->getSCEV(FirstStorePtr));
599     APInt FirstStride = getStoreStride(FirstStoreEv);
600     unsigned FirstStoreSize = getStoreSizeInBytes(SL[i], DL);
601 
602     // See if we can optimize just this store in isolation.
603     if (FirstStride == FirstStoreSize || -FirstStride == FirstStoreSize) {
604       Heads.insert(SL[i]);
605       continue;
606     }
607 
608     Value *FirstSplatValue = nullptr;
609     Constant *FirstPatternValue = nullptr;
610 
611     if (ForMemset)
612       FirstSplatValue = isBytewiseValue(FirstStoredVal);
613     else
614       FirstPatternValue = getMemSetPatternValue(FirstStoredVal, DL);
615 
616     assert((FirstSplatValue || FirstPatternValue) &&
617            "Expected either splat value or pattern value.");
618 
619     IndexQueue.clear();
620     // If a store has multiple consecutive store candidates, search Stores
621     // array according to the sequence: from i+1 to e, then from i-1 to 0.
622     // This is because usually pairing with immediate succeeding or preceding
623     // candidate create the best chance to find memset opportunity.
624     unsigned j = 0;
625     for (j = i + 1; j < e; ++j)
626       IndexQueue.push_back(j);
627     for (j = i; j > 0; --j)
628       IndexQueue.push_back(j - 1);
629 
630     for (auto &k : IndexQueue) {
631       assert(SL[k]->isSimple() && "Expected only non-volatile stores.");
632       Value *SecondStorePtr = SL[k]->getPointerOperand();
633       const SCEVAddRecExpr *SecondStoreEv =
634           cast<SCEVAddRecExpr>(SE->getSCEV(SecondStorePtr));
635       APInt SecondStride = getStoreStride(SecondStoreEv);
636 
637       if (FirstStride != SecondStride)
638         continue;
639 
640       Value *SecondStoredVal = SL[k]->getValueOperand();
641       Value *SecondSplatValue = nullptr;
642       Constant *SecondPatternValue = nullptr;
643 
644       if (ForMemset)
645         SecondSplatValue = isBytewiseValue(SecondStoredVal);
646       else
647         SecondPatternValue = getMemSetPatternValue(SecondStoredVal, DL);
648 
649       assert((SecondSplatValue || SecondPatternValue) &&
650              "Expected either splat value or pattern value.");
651 
652       if (isConsecutiveAccess(SL[i], SL[k], *DL, *SE, false)) {
653         if (ForMemset) {
654           if (FirstSplatValue != SecondSplatValue)
655             continue;
656         } else {
657           if (FirstPatternValue != SecondPatternValue)
658             continue;
659         }
660         Tails.insert(SL[k]);
661         Heads.insert(SL[i]);
662         ConsecutiveChain[SL[i]] = SL[k];
663         break;
664       }
665     }
666   }
667 
668   // We may run into multiple chains that merge into a single chain. We mark the
669   // stores that we transformed so that we don't visit the same store twice.
670   SmallPtrSet<Value *, 16> TransformedStores;
671   bool Changed = false;
672 
673   // For stores that start but don't end a link in the chain:
674   for (SetVector<StoreInst *>::iterator it = Heads.begin(), e = Heads.end();
675        it != e; ++it) {
676     if (Tails.count(*it))
677       continue;
678 
679     // We found a store instr that starts a chain. Now follow the chain and try
680     // to transform it.
681     SmallPtrSet<Instruction *, 8> AdjacentStores;
682     StoreInst *I = *it;
683 
684     StoreInst *HeadStore = I;
685     unsigned StoreSize = 0;
686 
687     // Collect the chain into a list.
688     while (Tails.count(I) || Heads.count(I)) {
689       if (TransformedStores.count(I))
690         break;
691       AdjacentStores.insert(I);
692 
693       StoreSize += getStoreSizeInBytes(I, DL);
694       // Move to the next value in the chain.
695       I = ConsecutiveChain[I];
696     }
697 
698     Value *StoredVal = HeadStore->getValueOperand();
699     Value *StorePtr = HeadStore->getPointerOperand();
700     const SCEVAddRecExpr *StoreEv = cast<SCEVAddRecExpr>(SE->getSCEV(StorePtr));
701     APInt Stride = getStoreStride(StoreEv);
702 
703     // Check to see if the stride matches the size of the stores.  If so, then
704     // we know that every byte is touched in the loop.
705     if (StoreSize != Stride && StoreSize != -Stride)
706       continue;
707 
708     bool NegStride = StoreSize == -Stride;
709 
710     if (processLoopStridedStore(StorePtr, StoreSize, HeadStore->getAlignment(),
711                                 StoredVal, HeadStore, AdjacentStores, StoreEv,
712                                 BECount, NegStride)) {
713       TransformedStores.insert(AdjacentStores.begin(), AdjacentStores.end());
714       Changed = true;
715     }
716   }
717 
718   return Changed;
719 }
720 
721 /// processLoopMemSet - See if this memset can be promoted to a large memset.
722 bool LoopIdiomRecognize::processLoopMemSet(MemSetInst *MSI,
723                                            const SCEV *BECount) {
724   // We can only handle non-volatile memsets with a constant size.
725   if (MSI->isVolatile() || !isa<ConstantInt>(MSI->getLength()))
726     return false;
727 
728   // If we're not allowed to hack on memset, we fail.
729   if (!HasMemset)
730     return false;
731 
732   Value *Pointer = MSI->getDest();
733 
734   // See if the pointer expression is an AddRec like {base,+,1} on the current
735   // loop, which indicates a strided store.  If we have something else, it's a
736   // random store we can't handle.
737   const SCEVAddRecExpr *Ev = dyn_cast<SCEVAddRecExpr>(SE->getSCEV(Pointer));
738   if (!Ev || Ev->getLoop() != CurLoop || !Ev->isAffine())
739     return false;
740 
741   // Reject memsets that are so large that they overflow an unsigned.
742   uint64_t SizeInBytes = cast<ConstantInt>(MSI->getLength())->getZExtValue();
743   if ((SizeInBytes >> 32) != 0)
744     return false;
745 
746   // Check to see if the stride matches the size of the memset.  If so, then we
747   // know that every byte is touched in the loop.
748   const SCEVConstant *ConstStride = dyn_cast<SCEVConstant>(Ev->getOperand(1));
749   if (!ConstStride)
750     return false;
751 
752   APInt Stride = ConstStride->getAPInt();
753   if (SizeInBytes != Stride && SizeInBytes != -Stride)
754     return false;
755 
756   // Verify that the memset value is loop invariant.  If not, we can't promote
757   // the memset.
758   Value *SplatValue = MSI->getValue();
759   if (!SplatValue || !CurLoop->isLoopInvariant(SplatValue))
760     return false;
761 
762   SmallPtrSet<Instruction *, 1> MSIs;
763   MSIs.insert(MSI);
764   bool NegStride = SizeInBytes == -Stride;
765   return processLoopStridedStore(Pointer, (unsigned)SizeInBytes,
766                                  MSI->getAlignment(), SplatValue, MSI, MSIs, Ev,
767                                  BECount, NegStride, /*IsLoopMemset=*/true);
768 }
769 
770 /// mayLoopAccessLocation - Return true if the specified loop might access the
771 /// specified pointer location, which is a loop-strided access.  The 'Access'
772 /// argument specifies what the verboten forms of access are (read or write).
773 static bool
774 mayLoopAccessLocation(Value *Ptr, ModRefInfo Access, Loop *L,
775                       const SCEV *BECount, unsigned StoreSize,
776                       AliasAnalysis &AA,
777                       SmallPtrSetImpl<Instruction *> &IgnoredStores) {
778   // Get the location that may be stored across the loop.  Since the access is
779   // strided positively through memory, we say that the modified location starts
780   // at the pointer and has infinite size.
781   uint64_t AccessSize = MemoryLocation::UnknownSize;
782 
783   // If the loop iterates a fixed number of times, we can refine the access size
784   // to be exactly the size of the memset, which is (BECount+1)*StoreSize
785   if (const SCEVConstant *BECst = dyn_cast<SCEVConstant>(BECount))
786     AccessSize = (BECst->getValue()->getZExtValue() + 1) * StoreSize;
787 
788   // TODO: For this to be really effective, we have to dive into the pointer
789   // operand in the store.  Store to &A[i] of 100 will always return may alias
790   // with store of &A[100], we need to StoreLoc to be "A" with size of 100,
791   // which will then no-alias a store to &A[100].
792   MemoryLocation StoreLoc(Ptr, AccessSize);
793 
794   for (Loop::block_iterator BI = L->block_begin(), E = L->block_end(); BI != E;
795        ++BI)
796     for (Instruction &I : **BI)
797       if (IgnoredStores.count(&I) == 0 &&
798           (AA.getModRefInfo(&I, StoreLoc) & Access))
799         return true;
800 
801   return false;
802 }
803 
804 // If we have a negative stride, Start refers to the end of the memory location
805 // we're trying to memset.  Therefore, we need to recompute the base pointer,
806 // which is just Start - BECount*Size.
807 static const SCEV *getStartForNegStride(const SCEV *Start, const SCEV *BECount,
808                                         Type *IntPtr, unsigned StoreSize,
809                                         ScalarEvolution *SE) {
810   const SCEV *Index = SE->getTruncateOrZeroExtend(BECount, IntPtr);
811   if (StoreSize != 1)
812     Index = SE->getMulExpr(Index, SE->getConstant(IntPtr, StoreSize),
813                            SCEV::FlagNUW);
814   return SE->getMinusSCEV(Start, Index);
815 }
816 
817 /// Compute the number of bytes as a SCEV from the backedge taken count.
818 ///
819 /// This also maps the SCEV into the provided type and tries to handle the
820 /// computation in a way that will fold cleanly.
821 static const SCEV *getNumBytes(const SCEV *BECount, Type *IntPtr,
822                                unsigned StoreSize, Loop *CurLoop,
823                                const DataLayout *DL, ScalarEvolution *SE) {
824   const SCEV *NumBytesS;
825   // The # stored bytes is (BECount+1)*Size.  Expand the trip count out to
826   // pointer size if it isn't already.
827   //
828   // If we're going to need to zero extend the BE count, check if we can add
829   // one to it prior to zero extending without overflow. Provided this is safe,
830   // it allows better simplification of the +1.
831   if (DL->getTypeSizeInBits(BECount->getType()) <
832           DL->getTypeSizeInBits(IntPtr) &&
833       SE->isLoopEntryGuardedByCond(
834           CurLoop, ICmpInst::ICMP_NE, BECount,
835           SE->getNegativeSCEV(SE->getOne(BECount->getType())))) {
836     NumBytesS = SE->getZeroExtendExpr(
837         SE->getAddExpr(BECount, SE->getOne(BECount->getType()), SCEV::FlagNUW),
838         IntPtr);
839   } else {
840     NumBytesS = SE->getAddExpr(SE->getTruncateOrZeroExtend(BECount, IntPtr),
841                                SE->getOne(IntPtr), SCEV::FlagNUW);
842   }
843 
844   // And scale it based on the store size.
845   if (StoreSize != 1) {
846     NumBytesS = SE->getMulExpr(NumBytesS, SE->getConstant(IntPtr, StoreSize),
847                                SCEV::FlagNUW);
848   }
849   return NumBytesS;
850 }
851 
852 /// processLoopStridedStore - We see a strided store of some value.  If we can
853 /// transform this into a memset or memset_pattern in the loop preheader, do so.
854 bool LoopIdiomRecognize::processLoopStridedStore(
855     Value *DestPtr, unsigned StoreSize, unsigned StoreAlignment,
856     Value *StoredVal, Instruction *TheStore,
857     SmallPtrSetImpl<Instruction *> &Stores, const SCEVAddRecExpr *Ev,
858     const SCEV *BECount, bool NegStride, bool IsLoopMemset) {
859   Value *SplatValue = isBytewiseValue(StoredVal);
860   Constant *PatternValue = nullptr;
861 
862   if (!SplatValue)
863     PatternValue = getMemSetPatternValue(StoredVal, DL);
864 
865   assert((SplatValue || PatternValue) &&
866          "Expected either splat value or pattern value.");
867 
868   // The trip count of the loop and the base pointer of the addrec SCEV is
869   // guaranteed to be loop invariant, which means that it should dominate the
870   // header.  This allows us to insert code for it in the preheader.
871   unsigned DestAS = DestPtr->getType()->getPointerAddressSpace();
872   BasicBlock *Preheader = CurLoop->getLoopPreheader();
873   IRBuilder<> Builder(Preheader->getTerminator());
874   SCEVExpander Expander(*SE, *DL, "loop-idiom");
875 
876   Type *DestInt8PtrTy = Builder.getInt8PtrTy(DestAS);
877   Type *IntPtr = Builder.getIntPtrTy(*DL, DestAS);
878 
879   const SCEV *Start = Ev->getStart();
880   // Handle negative strided loops.
881   if (NegStride)
882     Start = getStartForNegStride(Start, BECount, IntPtr, StoreSize, SE);
883 
884   // TODO: ideally we should still be able to generate memset if SCEV expander
885   // is taught to generate the dependencies at the latest point.
886   if (!isSafeToExpand(Start, *SE))
887     return false;
888 
889   // Okay, we have a strided store "p[i]" of a splattable value.  We can turn
890   // this into a memset in the loop preheader now if we want.  However, this
891   // would be unsafe to do if there is anything else in the loop that may read
892   // or write to the aliased location.  Check for any overlap by generating the
893   // base pointer and checking the region.
894   Value *BasePtr =
895       Expander.expandCodeFor(Start, DestInt8PtrTy, Preheader->getTerminator());
896   if (mayLoopAccessLocation(BasePtr, MRI_ModRef, CurLoop, BECount, StoreSize,
897                             *AA, Stores)) {
898     Expander.clear();
899     // If we generated new code for the base pointer, clean up.
900     RecursivelyDeleteTriviallyDeadInstructions(BasePtr, TLI);
901     return false;
902   }
903 
904   if (avoidLIRForMultiBlockLoop(/*IsMemset=*/true, IsLoopMemset))
905     return false;
906 
907   // Okay, everything looks good, insert the memset.
908 
909   const SCEV *NumBytesS =
910       getNumBytes(BECount, IntPtr, StoreSize, CurLoop, DL, SE);
911 
912   // TODO: ideally we should still be able to generate memset if SCEV expander
913   // is taught to generate the dependencies at the latest point.
914   if (!isSafeToExpand(NumBytesS, *SE))
915     return false;
916 
917   Value *NumBytes =
918       Expander.expandCodeFor(NumBytesS, IntPtr, Preheader->getTerminator());
919 
920   CallInst *NewCall;
921   if (SplatValue) {
922     NewCall =
923         Builder.CreateMemSet(BasePtr, SplatValue, NumBytes, StoreAlignment);
924   } else {
925     // Everything is emitted in default address space
926     Type *Int8PtrTy = DestInt8PtrTy;
927 
928     Module *M = TheStore->getModule();
929     Value *MSP =
930         M->getOrInsertFunction("memset_pattern16", Builder.getVoidTy(),
931                                Int8PtrTy, Int8PtrTy, IntPtr);
932     inferLibFuncAttributes(*M->getFunction("memset_pattern16"), *TLI);
933 
934     // Otherwise we should form a memset_pattern16.  PatternValue is known to be
935     // an constant array of 16-bytes.  Plop the value into a mergable global.
936     GlobalVariable *GV = new GlobalVariable(*M, PatternValue->getType(), true,
937                                             GlobalValue::PrivateLinkage,
938                                             PatternValue, ".memset_pattern");
939     GV->setUnnamedAddr(GlobalValue::UnnamedAddr::Global); // Ok to merge these.
940     GV->setAlignment(16);
941     Value *PatternPtr = ConstantExpr::getBitCast(GV, Int8PtrTy);
942     NewCall = Builder.CreateCall(MSP, {BasePtr, PatternPtr, NumBytes});
943   }
944 
945   DEBUG(dbgs() << "  Formed memset: " << *NewCall << "\n"
946                << "    from store to: " << *Ev << " at: " << *TheStore << "\n");
947   NewCall->setDebugLoc(TheStore->getDebugLoc());
948 
949   // Okay, the memset has been formed.  Zap the original store and anything that
950   // feeds into it.
951   for (auto *I : Stores)
952     deleteDeadInstruction(I);
953   ++NumMemSet;
954   return true;
955 }
956 
957 /// If the stored value is a strided load in the same loop with the same stride
958 /// this may be transformable into a memcpy.  This kicks in for stuff like
959 /// for (i) A[i] = B[i];
960 bool LoopIdiomRecognize::processLoopStoreOfLoopLoad(StoreInst *SI,
961                                                     const SCEV *BECount) {
962   assert(SI->isUnordered() && "Expected only non-volatile non-ordered stores.");
963 
964   Value *StorePtr = SI->getPointerOperand();
965   const SCEVAddRecExpr *StoreEv = cast<SCEVAddRecExpr>(SE->getSCEV(StorePtr));
966   APInt Stride = getStoreStride(StoreEv);
967   unsigned StoreSize = getStoreSizeInBytes(SI, DL);
968   bool NegStride = StoreSize == -Stride;
969 
970   // The store must be feeding a non-volatile load.
971   LoadInst *LI = cast<LoadInst>(SI->getValueOperand());
972   assert(LI->isUnordered() && "Expected only non-volatile non-ordered loads.");
973 
974   // See if the pointer expression is an AddRec like {base,+,1} on the current
975   // loop, which indicates a strided load.  If we have something else, it's a
976   // random load we can't handle.
977   const SCEVAddRecExpr *LoadEv =
978       cast<SCEVAddRecExpr>(SE->getSCEV(LI->getPointerOperand()));
979 
980   // The trip count of the loop and the base pointer of the addrec SCEV is
981   // guaranteed to be loop invariant, which means that it should dominate the
982   // header.  This allows us to insert code for it in the preheader.
983   BasicBlock *Preheader = CurLoop->getLoopPreheader();
984   IRBuilder<> Builder(Preheader->getTerminator());
985   SCEVExpander Expander(*SE, *DL, "loop-idiom");
986 
987   const SCEV *StrStart = StoreEv->getStart();
988   unsigned StrAS = SI->getPointerAddressSpace();
989   Type *IntPtrTy = Builder.getIntPtrTy(*DL, StrAS);
990 
991   // Handle negative strided loops.
992   if (NegStride)
993     StrStart = getStartForNegStride(StrStart, BECount, IntPtrTy, StoreSize, SE);
994 
995   // Okay, we have a strided store "p[i]" of a loaded value.  We can turn
996   // this into a memcpy in the loop preheader now if we want.  However, this
997   // would be unsafe to do if there is anything else in the loop that may read
998   // or write the memory region we're storing to.  This includes the load that
999   // feeds the stores.  Check for an alias by generating the base address and
1000   // checking everything.
1001   Value *StoreBasePtr = Expander.expandCodeFor(
1002       StrStart, Builder.getInt8PtrTy(StrAS), Preheader->getTerminator());
1003 
1004   SmallPtrSet<Instruction *, 1> Stores;
1005   Stores.insert(SI);
1006   if (mayLoopAccessLocation(StoreBasePtr, MRI_ModRef, CurLoop, BECount,
1007                             StoreSize, *AA, Stores)) {
1008     Expander.clear();
1009     // If we generated new code for the base pointer, clean up.
1010     RecursivelyDeleteTriviallyDeadInstructions(StoreBasePtr, TLI);
1011     return false;
1012   }
1013 
1014   const SCEV *LdStart = LoadEv->getStart();
1015   unsigned LdAS = LI->getPointerAddressSpace();
1016 
1017   // Handle negative strided loops.
1018   if (NegStride)
1019     LdStart = getStartForNegStride(LdStart, BECount, IntPtrTy, StoreSize, SE);
1020 
1021   // For a memcpy, we have to make sure that the input array is not being
1022   // mutated by the loop.
1023   Value *LoadBasePtr = Expander.expandCodeFor(
1024       LdStart, Builder.getInt8PtrTy(LdAS), Preheader->getTerminator());
1025 
1026   if (mayLoopAccessLocation(LoadBasePtr, MRI_Mod, CurLoop, BECount, StoreSize,
1027                             *AA, Stores)) {
1028     Expander.clear();
1029     // If we generated new code for the base pointer, clean up.
1030     RecursivelyDeleteTriviallyDeadInstructions(LoadBasePtr, TLI);
1031     RecursivelyDeleteTriviallyDeadInstructions(StoreBasePtr, TLI);
1032     return false;
1033   }
1034 
1035   if (avoidLIRForMultiBlockLoop())
1036     return false;
1037 
1038   // Okay, everything is safe, we can transform this!
1039 
1040   const SCEV *NumBytesS =
1041       getNumBytes(BECount, IntPtrTy, StoreSize, CurLoop, DL, SE);
1042 
1043   Value *NumBytes =
1044       Expander.expandCodeFor(NumBytesS, IntPtrTy, Preheader->getTerminator());
1045 
1046   unsigned Align = std::min(SI->getAlignment(), LI->getAlignment());
1047   CallInst *NewCall = nullptr;
1048   // Check whether to generate an unordered atomic memcpy:
1049   //  If the load or store are atomic, then they must neccessarily be unordered
1050   //  by previous checks.
1051   if (!SI->isAtomic() && !LI->isAtomic())
1052     NewCall = Builder.CreateMemCpy(StoreBasePtr, LoadBasePtr, NumBytes, Align);
1053   else {
1054     // We cannot allow unaligned ops for unordered load/store, so reject
1055     // anything where the alignment isn't at least the element size.
1056     if (Align < StoreSize)
1057       return false;
1058 
1059     // If the element.atomic memcpy is not lowered into explicit
1060     // loads/stores later, then it will be lowered into an element-size
1061     // specific lib call. If the lib call doesn't exist for our store size, then
1062     // we shouldn't generate the memcpy.
1063     if (StoreSize > TTI->getAtomicMemIntrinsicMaxElementSize())
1064       return false;
1065 
1066     NewCall = Builder.CreateElementUnorderedAtomicMemCpy(
1067         StoreBasePtr, LoadBasePtr, NumBytes, StoreSize);
1068 
1069     // Propagate alignment info onto the pointer args. Note that unordered
1070     // atomic loads/stores are *required* by the spec to have an alignment
1071     // but non-atomic loads/stores may not.
1072     NewCall->addParamAttr(0, Attribute::getWithAlignment(NewCall->getContext(),
1073                                                          SI->getAlignment()));
1074     NewCall->addParamAttr(1, Attribute::getWithAlignment(NewCall->getContext(),
1075                                                          LI->getAlignment()));
1076   }
1077   NewCall->setDebugLoc(SI->getDebugLoc());
1078 
1079   DEBUG(dbgs() << "  Formed memcpy: " << *NewCall << "\n"
1080                << "    from load ptr=" << *LoadEv << " at: " << *LI << "\n"
1081                << "    from store ptr=" << *StoreEv << " at: " << *SI << "\n");
1082 
1083   // Okay, the memcpy has been formed.  Zap the original store and anything that
1084   // feeds into it.
1085   deleteDeadInstruction(SI);
1086   ++NumMemCpy;
1087   return true;
1088 }
1089 
1090 // When compiling for codesize we avoid idiom recognition for a multi-block loop
1091 // unless it is a loop_memset idiom or a memset/memcpy idiom in a nested loop.
1092 //
1093 bool LoopIdiomRecognize::avoidLIRForMultiBlockLoop(bool IsMemset,
1094                                                    bool IsLoopMemset) {
1095   if (ApplyCodeSizeHeuristics && CurLoop->getNumBlocks() > 1) {
1096     if (!CurLoop->getParentLoop() && (!IsMemset || !IsLoopMemset)) {
1097       DEBUG(dbgs() << "  " << CurLoop->getHeader()->getParent()->getName()
1098                    << " : LIR " << (IsMemset ? "Memset" : "Memcpy")
1099                    << " avoided: multi-block top-level loop\n");
1100       return true;
1101     }
1102   }
1103 
1104   return false;
1105 }
1106 
1107 bool LoopIdiomRecognize::runOnNoncountableLoop() {
1108   return recognizePopcount() || recognizeAndInsertCTLZ();
1109 }
1110 
1111 /// Check if the given conditional branch is based on the comparison between
1112 /// a variable and zero, and if the variable is non-zero, the control yields to
1113 /// the loop entry. If the branch matches the behavior, the variable involved
1114 /// in the comparison is returned. This function will be called to see if the
1115 /// precondition and postcondition of the loop are in desirable form.
1116 static Value *matchCondition(BranchInst *BI, BasicBlock *LoopEntry) {
1117   if (!BI || !BI->isConditional())
1118     return nullptr;
1119 
1120   ICmpInst *Cond = dyn_cast<ICmpInst>(BI->getCondition());
1121   if (!Cond)
1122     return nullptr;
1123 
1124   ConstantInt *CmpZero = dyn_cast<ConstantInt>(Cond->getOperand(1));
1125   if (!CmpZero || !CmpZero->isZero())
1126     return nullptr;
1127 
1128   ICmpInst::Predicate Pred = Cond->getPredicate();
1129   if ((Pred == ICmpInst::ICMP_NE && BI->getSuccessor(0) == LoopEntry) ||
1130       (Pred == ICmpInst::ICMP_EQ && BI->getSuccessor(1) == LoopEntry))
1131     return Cond->getOperand(0);
1132 
1133   return nullptr;
1134 }
1135 
1136 // Check if the recurrence variable `VarX` is in the right form to create
1137 // the idiom. Returns the value coerced to a PHINode if so.
1138 static PHINode *getRecurrenceVar(Value *VarX, Instruction *DefX,
1139                                  BasicBlock *LoopEntry) {
1140   auto *PhiX = dyn_cast<PHINode>(VarX);
1141   if (PhiX && PhiX->getParent() == LoopEntry &&
1142       (PhiX->getOperand(0) == DefX || PhiX->getOperand(1) == DefX))
1143     return PhiX;
1144   return nullptr;
1145 }
1146 
1147 /// Return true iff the idiom is detected in the loop.
1148 ///
1149 /// Additionally:
1150 /// 1) \p CntInst is set to the instruction counting the population bit.
1151 /// 2) \p CntPhi is set to the corresponding phi node.
1152 /// 3) \p Var is set to the value whose population bits are being counted.
1153 ///
1154 /// The core idiom we are trying to detect is:
1155 /// \code
1156 ///    if (x0 != 0)
1157 ///      goto loop-exit // the precondition of the loop
1158 ///    cnt0 = init-val;
1159 ///    do {
1160 ///       x1 = phi (x0, x2);
1161 ///       cnt1 = phi(cnt0, cnt2);
1162 ///
1163 ///       cnt2 = cnt1 + 1;
1164 ///        ...
1165 ///       x2 = x1 & (x1 - 1);
1166 ///        ...
1167 ///    } while(x != 0);
1168 ///
1169 /// loop-exit:
1170 /// \endcode
1171 static bool detectPopcountIdiom(Loop *CurLoop, BasicBlock *PreCondBB,
1172                                 Instruction *&CntInst, PHINode *&CntPhi,
1173                                 Value *&Var) {
1174   // step 1: Check to see if the look-back branch match this pattern:
1175   //    "if (a!=0) goto loop-entry".
1176   BasicBlock *LoopEntry;
1177   Instruction *DefX2, *CountInst;
1178   Value *VarX1, *VarX0;
1179   PHINode *PhiX, *CountPhi;
1180 
1181   DefX2 = CountInst = nullptr;
1182   VarX1 = VarX0 = nullptr;
1183   PhiX = CountPhi = nullptr;
1184   LoopEntry = *(CurLoop->block_begin());
1185 
1186   // step 1: Check if the loop-back branch is in desirable form.
1187   {
1188     if (Value *T = matchCondition(
1189             dyn_cast<BranchInst>(LoopEntry->getTerminator()), LoopEntry))
1190       DefX2 = dyn_cast<Instruction>(T);
1191     else
1192       return false;
1193   }
1194 
1195   // step 2: detect instructions corresponding to "x2 = x1 & (x1 - 1)"
1196   {
1197     if (!DefX2 || DefX2->getOpcode() != Instruction::And)
1198       return false;
1199 
1200     BinaryOperator *SubOneOp;
1201 
1202     if ((SubOneOp = dyn_cast<BinaryOperator>(DefX2->getOperand(0))))
1203       VarX1 = DefX2->getOperand(1);
1204     else {
1205       VarX1 = DefX2->getOperand(0);
1206       SubOneOp = dyn_cast<BinaryOperator>(DefX2->getOperand(1));
1207     }
1208     if (!SubOneOp)
1209       return false;
1210 
1211     Instruction *SubInst = cast<Instruction>(SubOneOp);
1212     ConstantInt *Dec = dyn_cast<ConstantInt>(SubInst->getOperand(1));
1213     if (!Dec ||
1214         !((SubInst->getOpcode() == Instruction::Sub && Dec->isOne()) ||
1215           (SubInst->getOpcode() == Instruction::Add &&
1216            Dec->isMinusOne()))) {
1217       return false;
1218     }
1219   }
1220 
1221   // step 3: Check the recurrence of variable X
1222   PhiX = getRecurrenceVar(VarX1, DefX2, LoopEntry);
1223   if (!PhiX)
1224     return false;
1225 
1226   // step 4: Find the instruction which count the population: cnt2 = cnt1 + 1
1227   {
1228     CountInst = nullptr;
1229     for (BasicBlock::iterator Iter = LoopEntry->getFirstNonPHI()->getIterator(),
1230                               IterE = LoopEntry->end();
1231          Iter != IterE; Iter++) {
1232       Instruction *Inst = &*Iter;
1233       if (Inst->getOpcode() != Instruction::Add)
1234         continue;
1235 
1236       ConstantInt *Inc = dyn_cast<ConstantInt>(Inst->getOperand(1));
1237       if (!Inc || !Inc->isOne())
1238         continue;
1239 
1240       PHINode *Phi = getRecurrenceVar(Inst->getOperand(0), Inst, LoopEntry);
1241       if (!Phi)
1242         continue;
1243 
1244       // Check if the result of the instruction is live of the loop.
1245       bool LiveOutLoop = false;
1246       for (User *U : Inst->users()) {
1247         if ((cast<Instruction>(U))->getParent() != LoopEntry) {
1248           LiveOutLoop = true;
1249           break;
1250         }
1251       }
1252 
1253       if (LiveOutLoop) {
1254         CountInst = Inst;
1255         CountPhi = Phi;
1256         break;
1257       }
1258     }
1259 
1260     if (!CountInst)
1261       return false;
1262   }
1263 
1264   // step 5: check if the precondition is in this form:
1265   //   "if (x != 0) goto loop-head ; else goto somewhere-we-don't-care;"
1266   {
1267     auto *PreCondBr = dyn_cast<BranchInst>(PreCondBB->getTerminator());
1268     Value *T = matchCondition(PreCondBr, CurLoop->getLoopPreheader());
1269     if (T != PhiX->getOperand(0) && T != PhiX->getOperand(1))
1270       return false;
1271 
1272     CntInst = CountInst;
1273     CntPhi = CountPhi;
1274     Var = T;
1275   }
1276 
1277   return true;
1278 }
1279 
1280 /// Return true if the idiom is detected in the loop.
1281 ///
1282 /// Additionally:
1283 /// 1) \p CntInst is set to the instruction Counting Leading Zeros (CTLZ)
1284 ///       or nullptr if there is no such.
1285 /// 2) \p CntPhi is set to the corresponding phi node
1286 ///       or nullptr if there is no such.
1287 /// 3) \p Var is set to the value whose CTLZ could be used.
1288 /// 4) \p DefX is set to the instruction calculating Loop exit condition.
1289 ///
1290 /// The core idiom we are trying to detect is:
1291 /// \code
1292 ///    if (x0 == 0)
1293 ///      goto loop-exit // the precondition of the loop
1294 ///    cnt0 = init-val;
1295 ///    do {
1296 ///       x = phi (x0, x.next);   //PhiX
1297 ///       cnt = phi(cnt0, cnt.next);
1298 ///
1299 ///       cnt.next = cnt + 1;
1300 ///        ...
1301 ///       x.next = x >> 1;   // DefX
1302 ///        ...
1303 ///    } while(x.next != 0);
1304 ///
1305 /// loop-exit:
1306 /// \endcode
1307 static bool detectCTLZIdiom(Loop *CurLoop, PHINode *&PhiX,
1308                             Instruction *&CntInst, PHINode *&CntPhi,
1309                             Instruction *&DefX) {
1310   BasicBlock *LoopEntry;
1311   Value *VarX = nullptr;
1312 
1313   DefX = nullptr;
1314   PhiX = nullptr;
1315   CntInst = nullptr;
1316   CntPhi = nullptr;
1317   LoopEntry = *(CurLoop->block_begin());
1318 
1319   // step 1: Check if the loop-back branch is in desirable form.
1320   if (Value *T = matchCondition(
1321           dyn_cast<BranchInst>(LoopEntry->getTerminator()), LoopEntry))
1322     DefX = dyn_cast<Instruction>(T);
1323   else
1324     return false;
1325 
1326   // step 2: detect instructions corresponding to "x.next = x >> 1"
1327   if (!DefX || DefX->getOpcode() != Instruction::AShr)
1328     return false;
1329   if (ConstantInt *Shft = dyn_cast<ConstantInt>(DefX->getOperand(1)))
1330     if (!Shft || !Shft->isOne())
1331       return false;
1332   VarX = DefX->getOperand(0);
1333 
1334   // step 3: Check the recurrence of variable X
1335   PhiX = getRecurrenceVar(VarX, DefX, LoopEntry);
1336   if (!PhiX)
1337     return false;
1338 
1339   // step 4: Find the instruction which count the CTLZ: cnt.next = cnt + 1
1340   // TODO: We can skip the step. If loop trip count is known (CTLZ),
1341   //       then all uses of "cnt.next" could be optimized to the trip count
1342   //       plus "cnt0". Currently it is not optimized.
1343   //       This step could be used to detect POPCNT instruction:
1344   //       cnt.next = cnt + (x.next & 1)
1345   for (BasicBlock::iterator Iter = LoopEntry->getFirstNonPHI()->getIterator(),
1346                             IterE = LoopEntry->end();
1347        Iter != IterE; Iter++) {
1348     Instruction *Inst = &*Iter;
1349     if (Inst->getOpcode() != Instruction::Add)
1350       continue;
1351 
1352     ConstantInt *Inc = dyn_cast<ConstantInt>(Inst->getOperand(1));
1353     if (!Inc || !Inc->isOne())
1354       continue;
1355 
1356     PHINode *Phi = getRecurrenceVar(Inst->getOperand(0), Inst, LoopEntry);
1357     if (!Phi)
1358       continue;
1359 
1360     CntInst = Inst;
1361     CntPhi = Phi;
1362     break;
1363   }
1364   if (!CntInst)
1365     return false;
1366 
1367   return true;
1368 }
1369 
1370 /// Recognize CTLZ idiom in a non-countable loop and convert the loop
1371 /// to countable (with CTLZ trip count).
1372 /// If CTLZ inserted as a new trip count returns true; otherwise, returns false.
1373 bool LoopIdiomRecognize::recognizeAndInsertCTLZ() {
1374   // Give up if the loop has multiple blocks or multiple backedges.
1375   if (CurLoop->getNumBackEdges() != 1 || CurLoop->getNumBlocks() != 1)
1376     return false;
1377 
1378   Instruction *CntInst, *DefX;
1379   PHINode *CntPhi, *PhiX;
1380   if (!detectCTLZIdiom(CurLoop, PhiX, CntInst, CntPhi, DefX))
1381     return false;
1382 
1383   bool IsCntPhiUsedOutsideLoop = false;
1384   for (User *U : CntPhi->users())
1385     if (!CurLoop->contains(dyn_cast<Instruction>(U))) {
1386       IsCntPhiUsedOutsideLoop = true;
1387       break;
1388     }
1389   bool IsCntInstUsedOutsideLoop = false;
1390   for (User *U : CntInst->users())
1391     if (!CurLoop->contains(dyn_cast<Instruction>(U))) {
1392       IsCntInstUsedOutsideLoop = true;
1393       break;
1394     }
1395   // If both CntInst and CntPhi are used outside the loop the profitability
1396   // is questionable.
1397   if (IsCntInstUsedOutsideLoop && IsCntPhiUsedOutsideLoop)
1398     return false;
1399 
1400   // For some CPUs result of CTLZ(X) intrinsic is undefined
1401   // when X is 0. If we can not guarantee X != 0, we need to check this
1402   // when expand.
1403   bool ZeroCheck = false;
1404   // It is safe to assume Preheader exist as it was checked in
1405   // parent function RunOnLoop.
1406   BasicBlock *PH = CurLoop->getLoopPreheader();
1407   Value *InitX = PhiX->getIncomingValueForBlock(PH);
1408   // If we check X != 0 before entering the loop we don't need a zero
1409   // check in CTLZ intrinsic, but only if Cnt Phi is not used outside of the
1410   // loop (if it is used we count CTLZ(X >> 1)).
1411   if (!IsCntPhiUsedOutsideLoop)
1412     if (BasicBlock *PreCondBB = PH->getSinglePredecessor())
1413       if (BranchInst *PreCondBr =
1414           dyn_cast<BranchInst>(PreCondBB->getTerminator())) {
1415         if (matchCondition(PreCondBr, PH) == InitX)
1416           ZeroCheck = true;
1417       }
1418 
1419   // Check if CTLZ intrinsic is profitable. Assume it is always profitable
1420   // if we delete the loop (the loop has only 6 instructions):
1421   //  %n.addr.0 = phi [ %n, %entry ], [ %shr, %while.cond ]
1422   //  %i.0 = phi [ %i0, %entry ], [ %inc, %while.cond ]
1423   //  %shr = ashr %n.addr.0, 1
1424   //  %tobool = icmp eq %shr, 0
1425   //  %inc = add nsw %i.0, 1
1426   //  br i1 %tobool
1427 
1428   IRBuilder<> Builder(PH->getTerminator());
1429   SmallVector<const Value *, 2> Ops =
1430       {InitX, ZeroCheck ? Builder.getTrue() : Builder.getFalse()};
1431   ArrayRef<const Value *> Args(Ops);
1432   if (CurLoop->getHeader()->size() != 6 &&
1433       TTI->getIntrinsicCost(Intrinsic::ctlz, InitX->getType(), Args) >
1434           TargetTransformInfo::TCC_Basic)
1435     return false;
1436 
1437   const DebugLoc DL = DefX->getDebugLoc();
1438   transformLoopToCountable(PH, CntInst, CntPhi, InitX, DL, ZeroCheck,
1439                            IsCntPhiUsedOutsideLoop);
1440   return true;
1441 }
1442 
1443 /// Recognizes a population count idiom in a non-countable loop.
1444 ///
1445 /// If detected, transforms the relevant code to issue the popcount intrinsic
1446 /// function call, and returns true; otherwise, returns false.
1447 bool LoopIdiomRecognize::recognizePopcount() {
1448   if (TTI->getPopcntSupport(32) != TargetTransformInfo::PSK_FastHardware)
1449     return false;
1450 
1451   // Counting population are usually conducted by few arithmetic instructions.
1452   // Such instructions can be easily "absorbed" by vacant slots in a
1453   // non-compact loop. Therefore, recognizing popcount idiom only makes sense
1454   // in a compact loop.
1455 
1456   // Give up if the loop has multiple blocks or multiple backedges.
1457   if (CurLoop->getNumBackEdges() != 1 || CurLoop->getNumBlocks() != 1)
1458     return false;
1459 
1460   BasicBlock *LoopBody = *(CurLoop->block_begin());
1461   if (LoopBody->size() >= 20) {
1462     // The loop is too big, bail out.
1463     return false;
1464   }
1465 
1466   // It should have a preheader containing nothing but an unconditional branch.
1467   BasicBlock *PH = CurLoop->getLoopPreheader();
1468   if (!PH || &PH->front() != PH->getTerminator())
1469     return false;
1470   auto *EntryBI = dyn_cast<BranchInst>(PH->getTerminator());
1471   if (!EntryBI || EntryBI->isConditional())
1472     return false;
1473 
1474   // It should have a precondition block where the generated popcount instrinsic
1475   // function can be inserted.
1476   auto *PreCondBB = PH->getSinglePredecessor();
1477   if (!PreCondBB)
1478     return false;
1479   auto *PreCondBI = dyn_cast<BranchInst>(PreCondBB->getTerminator());
1480   if (!PreCondBI || PreCondBI->isUnconditional())
1481     return false;
1482 
1483   Instruction *CntInst;
1484   PHINode *CntPhi;
1485   Value *Val;
1486   if (!detectPopcountIdiom(CurLoop, PreCondBB, CntInst, CntPhi, Val))
1487     return false;
1488 
1489   transformLoopToPopcount(PreCondBB, CntInst, CntPhi, Val);
1490   return true;
1491 }
1492 
1493 static CallInst *createPopcntIntrinsic(IRBuilder<> &IRBuilder, Value *Val,
1494                                        const DebugLoc &DL) {
1495   Value *Ops[] = {Val};
1496   Type *Tys[] = {Val->getType()};
1497 
1498   Module *M = IRBuilder.GetInsertBlock()->getParent()->getParent();
1499   Value *Func = Intrinsic::getDeclaration(M, Intrinsic::ctpop, Tys);
1500   CallInst *CI = IRBuilder.CreateCall(Func, Ops);
1501   CI->setDebugLoc(DL);
1502 
1503   return CI;
1504 }
1505 
1506 static CallInst *createCTLZIntrinsic(IRBuilder<> &IRBuilder, Value *Val,
1507                                      const DebugLoc &DL, bool ZeroCheck) {
1508   Value *Ops[] = {Val, ZeroCheck ? IRBuilder.getTrue() : IRBuilder.getFalse()};
1509   Type *Tys[] = {Val->getType()};
1510 
1511   Module *M = IRBuilder.GetInsertBlock()->getParent()->getParent();
1512   Value *Func = Intrinsic::getDeclaration(M, Intrinsic::ctlz, Tys);
1513   CallInst *CI = IRBuilder.CreateCall(Func, Ops);
1514   CI->setDebugLoc(DL);
1515 
1516   return CI;
1517 }
1518 
1519 /// Transform the following loop:
1520 /// loop:
1521 ///   CntPhi = PHI [Cnt0, CntInst]
1522 ///   PhiX = PHI [InitX, DefX]
1523 ///   CntInst = CntPhi + 1
1524 ///   DefX = PhiX >> 1
1525 ///   LOOP_BODY
1526 ///   Br: loop if (DefX != 0)
1527 /// Use(CntPhi) or Use(CntInst)
1528 ///
1529 /// Into:
1530 /// If CntPhi used outside the loop:
1531 ///   CountPrev = BitWidth(InitX) - CTLZ(InitX >> 1)
1532 ///   Count = CountPrev + 1
1533 /// else
1534 ///   Count = BitWidth(InitX) - CTLZ(InitX)
1535 /// loop:
1536 ///   CntPhi = PHI [Cnt0, CntInst]
1537 ///   PhiX = PHI [InitX, DefX]
1538 ///   PhiCount = PHI [Count, Dec]
1539 ///   CntInst = CntPhi + 1
1540 ///   DefX = PhiX >> 1
1541 ///   Dec = PhiCount - 1
1542 ///   LOOP_BODY
1543 ///   Br: loop if (Dec != 0)
1544 /// Use(CountPrev + Cnt0) // Use(CntPhi)
1545 /// or
1546 /// Use(Count + Cnt0) // Use(CntInst)
1547 ///
1548 /// If LOOP_BODY is empty the loop will be deleted.
1549 /// If CntInst and DefX are not used in LOOP_BODY they will be removed.
1550 void LoopIdiomRecognize::transformLoopToCountable(
1551     BasicBlock *Preheader, Instruction *CntInst, PHINode *CntPhi, Value *InitX,
1552     const DebugLoc DL, bool ZeroCheck, bool IsCntPhiUsedOutsideLoop) {
1553   BranchInst *PreheaderBr = dyn_cast<BranchInst>(Preheader->getTerminator());
1554 
1555   // Step 1: Insert the CTLZ instruction at the end of the preheader block
1556   //   Count = BitWidth - CTLZ(InitX);
1557   // If there are uses of CntPhi create:
1558   //   CountPrev = BitWidth - CTLZ(InitX >> 1);
1559   IRBuilder<> Builder(PreheaderBr);
1560   Builder.SetCurrentDebugLocation(DL);
1561   Value *CTLZ, *Count, *CountPrev, *NewCount, *InitXNext;
1562 
1563   if (IsCntPhiUsedOutsideLoop)
1564     InitXNext = Builder.CreateAShr(InitX,
1565                                    ConstantInt::get(InitX->getType(), 1));
1566   else
1567     InitXNext = InitX;
1568   CTLZ = createCTLZIntrinsic(Builder, InitXNext, DL, ZeroCheck);
1569   Count = Builder.CreateSub(
1570       ConstantInt::get(CTLZ->getType(),
1571                        CTLZ->getType()->getIntegerBitWidth()),
1572       CTLZ);
1573   if (IsCntPhiUsedOutsideLoop) {
1574     CountPrev = Count;
1575     Count = Builder.CreateAdd(
1576         CountPrev,
1577         ConstantInt::get(CountPrev->getType(), 1));
1578   }
1579   if (IsCntPhiUsedOutsideLoop)
1580     NewCount = Builder.CreateZExtOrTrunc(CountPrev,
1581         cast<IntegerType>(CntInst->getType()));
1582   else
1583     NewCount = Builder.CreateZExtOrTrunc(Count,
1584         cast<IntegerType>(CntInst->getType()));
1585 
1586   // If the CTLZ counter's initial value is not zero, insert Add Inst.
1587   Value *CntInitVal = CntPhi->getIncomingValueForBlock(Preheader);
1588   ConstantInt *InitConst = dyn_cast<ConstantInt>(CntInitVal);
1589   if (!InitConst || !InitConst->isZero())
1590     NewCount = Builder.CreateAdd(NewCount, CntInitVal);
1591 
1592   // Step 2: Insert new IV and loop condition:
1593   // loop:
1594   //   ...
1595   //   PhiCount = PHI [Count, Dec]
1596   //   ...
1597   //   Dec = PhiCount - 1
1598   //   ...
1599   //   Br: loop if (Dec != 0)
1600   BasicBlock *Body = *(CurLoop->block_begin());
1601   auto *LbBr = dyn_cast<BranchInst>(Body->getTerminator());
1602   ICmpInst *LbCond = cast<ICmpInst>(LbBr->getCondition());
1603   Type *Ty = Count->getType();
1604 
1605   PHINode *TcPhi = PHINode::Create(Ty, 2, "tcphi", &Body->front());
1606 
1607   Builder.SetInsertPoint(LbCond);
1608   Instruction *TcDec = cast<Instruction>(
1609       Builder.CreateSub(TcPhi, ConstantInt::get(Ty, 1),
1610                         "tcdec", false, true));
1611 
1612   TcPhi->addIncoming(Count, Preheader);
1613   TcPhi->addIncoming(TcDec, Body);
1614 
1615   CmpInst::Predicate Pred =
1616       (LbBr->getSuccessor(0) == Body) ? CmpInst::ICMP_NE : CmpInst::ICMP_EQ;
1617   LbCond->setPredicate(Pred);
1618   LbCond->setOperand(0, TcDec);
1619   LbCond->setOperand(1, ConstantInt::get(Ty, 0));
1620 
1621   // Step 3: All the references to the original counter outside
1622   //  the loop are replaced with the NewCount -- the value returned from
1623   //  __builtin_ctlz(x).
1624   if (IsCntPhiUsedOutsideLoop)
1625     CntPhi->replaceUsesOutsideBlock(NewCount, Body);
1626   else
1627     CntInst->replaceUsesOutsideBlock(NewCount, Body);
1628 
1629   // step 4: Forget the "non-computable" trip-count SCEV associated with the
1630   //   loop. The loop would otherwise not be deleted even if it becomes empty.
1631   SE->forgetLoop(CurLoop);
1632 }
1633 
1634 void LoopIdiomRecognize::transformLoopToPopcount(BasicBlock *PreCondBB,
1635                                                  Instruction *CntInst,
1636                                                  PHINode *CntPhi, Value *Var) {
1637   BasicBlock *PreHead = CurLoop->getLoopPreheader();
1638   auto *PreCondBr = dyn_cast<BranchInst>(PreCondBB->getTerminator());
1639   const DebugLoc DL = CntInst->getDebugLoc();
1640 
1641   // Assuming before transformation, the loop is following:
1642   //  if (x) // the precondition
1643   //     do { cnt++; x &= x - 1; } while(x);
1644 
1645   // Step 1: Insert the ctpop instruction at the end of the precondition block
1646   IRBuilder<> Builder(PreCondBr);
1647   Value *PopCnt, *PopCntZext, *NewCount, *TripCnt;
1648   {
1649     PopCnt = createPopcntIntrinsic(Builder, Var, DL);
1650     NewCount = PopCntZext =
1651         Builder.CreateZExtOrTrunc(PopCnt, cast<IntegerType>(CntPhi->getType()));
1652 
1653     if (NewCount != PopCnt)
1654       (cast<Instruction>(NewCount))->setDebugLoc(DL);
1655 
1656     // TripCnt is exactly the number of iterations the loop has
1657     TripCnt = NewCount;
1658 
1659     // If the population counter's initial value is not zero, insert Add Inst.
1660     Value *CntInitVal = CntPhi->getIncomingValueForBlock(PreHead);
1661     ConstantInt *InitConst = dyn_cast<ConstantInt>(CntInitVal);
1662     if (!InitConst || !InitConst->isZero()) {
1663       NewCount = Builder.CreateAdd(NewCount, CntInitVal);
1664       (cast<Instruction>(NewCount))->setDebugLoc(DL);
1665     }
1666   }
1667 
1668   // Step 2: Replace the precondition from "if (x == 0) goto loop-exit" to
1669   //   "if (NewCount == 0) loop-exit". Without this change, the intrinsic
1670   //   function would be partial dead code, and downstream passes will drag
1671   //   it back from the precondition block to the preheader.
1672   {
1673     ICmpInst *PreCond = cast<ICmpInst>(PreCondBr->getCondition());
1674 
1675     Value *Opnd0 = PopCntZext;
1676     Value *Opnd1 = ConstantInt::get(PopCntZext->getType(), 0);
1677     if (PreCond->getOperand(0) != Var)
1678       std::swap(Opnd0, Opnd1);
1679 
1680     ICmpInst *NewPreCond = cast<ICmpInst>(
1681         Builder.CreateICmp(PreCond->getPredicate(), Opnd0, Opnd1));
1682     PreCondBr->setCondition(NewPreCond);
1683 
1684     RecursivelyDeleteTriviallyDeadInstructions(PreCond, TLI);
1685   }
1686 
1687   // Step 3: Note that the population count is exactly the trip count of the
1688   // loop in question, which enable us to to convert the loop from noncountable
1689   // loop into a countable one. The benefit is twofold:
1690   //
1691   //  - If the loop only counts population, the entire loop becomes dead after
1692   //    the transformation. It is a lot easier to prove a countable loop dead
1693   //    than to prove a noncountable one. (In some C dialects, an infinite loop
1694   //    isn't dead even if it computes nothing useful. In general, DCE needs
1695   //    to prove a noncountable loop finite before safely delete it.)
1696   //
1697   //  - If the loop also performs something else, it remains alive.
1698   //    Since it is transformed to countable form, it can be aggressively
1699   //    optimized by some optimizations which are in general not applicable
1700   //    to a noncountable loop.
1701   //
1702   // After this step, this loop (conceptually) would look like following:
1703   //   newcnt = __builtin_ctpop(x);
1704   //   t = newcnt;
1705   //   if (x)
1706   //     do { cnt++; x &= x-1; t--) } while (t > 0);
1707   BasicBlock *Body = *(CurLoop->block_begin());
1708   {
1709     auto *LbBr = dyn_cast<BranchInst>(Body->getTerminator());
1710     ICmpInst *LbCond = cast<ICmpInst>(LbBr->getCondition());
1711     Type *Ty = TripCnt->getType();
1712 
1713     PHINode *TcPhi = PHINode::Create(Ty, 2, "tcphi", &Body->front());
1714 
1715     Builder.SetInsertPoint(LbCond);
1716     Instruction *TcDec = cast<Instruction>(
1717         Builder.CreateSub(TcPhi, ConstantInt::get(Ty, 1),
1718                           "tcdec", false, true));
1719 
1720     TcPhi->addIncoming(TripCnt, PreHead);
1721     TcPhi->addIncoming(TcDec, Body);
1722 
1723     CmpInst::Predicate Pred =
1724         (LbBr->getSuccessor(0) == Body) ? CmpInst::ICMP_UGT : CmpInst::ICMP_SLE;
1725     LbCond->setPredicate(Pred);
1726     LbCond->setOperand(0, TcDec);
1727     LbCond->setOperand(1, ConstantInt::get(Ty, 0));
1728   }
1729 
1730   // Step 4: All the references to the original population counter outside
1731   //  the loop are replaced with the NewCount -- the value returned from
1732   //  __builtin_ctpop().
1733   CntInst->replaceUsesOutsideBlock(NewCount, Body);
1734 
1735   // step 5: Forget the "non-computable" trip-count SCEV associated with the
1736   //   loop. The loop would otherwise not be deleted even if it becomes empty.
1737   SE->forgetLoop(CurLoop);
1738 }
1739