blob: 5d49a02342313021ee8d87029bab043fc344b1b7 [file] [log] [blame]
Chris Lattner6ec05f52002-05-10 22:44:58 +00001//===-- LICM.cpp - Loop Invariant Code Motion Pass ------------------------===//
Misha Brukmanb1c93172005-04-21 23:48:37 +00002//
John Criswell482202a2003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanb1c93172005-04-21 23:48:37 +00007//
John Criswell482202a2003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner6ec05f52002-05-10 22:44:58 +00009//
Chris Lattnerc0517682003-12-09 17:18:00 +000010// This pass performs loop invariant code motion, attempting to remove as much
11// code from the body of a loop as possible. It does this by either hoisting
12// code into the preheader block, or by sinking code to the exit blocks if it is
13// safe. This pass also promotes must-aliased memory locations in the loop to
Chris Lattner547192d62003-12-19 07:22:45 +000014// live in registers, thus hoisting and sinking "invariant" loads and stores.
Chris Lattnerc0517682003-12-09 17:18:00 +000015//
16// This pass uses alias analysis for two purposes:
Chris Lattner45d67d62003-02-24 03:52:32 +000017//
Chris Lattner289ba2a2004-05-23 21:20:19 +000018// 1. Moving loop invariant loads and calls out of loops. If we can determine
19// that a load or call inside of a loop never aliases anything stored to,
20// we can hoist it or sink it like any other instruction.
Chris Lattner45d67d62003-02-24 03:52:32 +000021// 2. Scalar Promotion of Memory - If there is a store instruction inside of
22// the loop, we try to move the store to happen AFTER the loop instead of
23// inside of the loop. This can only happen if a few conditions are true:
24// A. The pointer stored through is loop invariant
25// B. There are no stores or loads in the loop which _may_ alias the
26// pointer. There are no calls in the loop which mod/ref the pointer.
27// If these conditions are true, we can promote the loads and stores in the
28// loop of the pointer to use a temporary alloca'd variable. We then use
Chris Lattner1dc98b42010-08-29 06:43:52 +000029// the SSAUpdater to construct the appropriate SSA form for the value.
Chris Lattner6ec05f52002-05-10 22:44:58 +000030//
Chris Lattner6ec05f52002-05-10 22:44:58 +000031//===----------------------------------------------------------------------===//
32
33#include "llvm/Transforms/Scalar.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000034#include "llvm/ADT/Statistic.h"
Chris Lattnera51fa882002-08-22 21:39:55 +000035#include "llvm/Analysis/AliasAnalysis.h"
Chris Lattner0592bb72003-03-03 23:32:45 +000036#include "llvm/Analysis/AliasSetTracker.h"
Chandler Carruth7b560d42015-09-09 17:55:00 +000037#include "llvm/Analysis/BasicAliasAnalysis.h"
Chris Lattner030f0202010-08-31 23:00:16 +000038#include "llvm/Analysis/ConstantFolding.h"
Chandler Carruth7b560d42015-09-09 17:55:00 +000039#include "llvm/Analysis/GlobalsModRef.h"
Chris Lattner030f0202010-08-31 23:00:16 +000040#include "llvm/Analysis/LoopInfo.h"
41#include "llvm/Analysis/LoopPass.h"
Chandler Carruthabfa3e52014-01-24 01:59:49 +000042#include "llvm/Analysis/ScalarEvolution.h"
Chandler Carruth7b560d42015-09-09 17:55:00 +000043#include "llvm/Analysis/ScalarEvolutionAliasAnalysis.h"
Benjamin Kramer799003b2015-03-23 19:32:43 +000044#include "llvm/Analysis/TargetLibraryInfo.h"
Dan Gohman75d7d5e2011-12-14 23:49:11 +000045#include "llvm/Analysis/ValueTracking.h"
Chandler Carruth1305dc32014-03-04 11:45:46 +000046#include "llvm/IR/CFG.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000047#include "llvm/IR/Constants.h"
48#include "llvm/IR/DataLayout.h"
49#include "llvm/IR/DerivedTypes.h"
Chandler Carruth5ad5f152014-01-13 09:26:24 +000050#include "llvm/IR/Dominators.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000051#include "llvm/IR/Instructions.h"
52#include "llvm/IR/IntrinsicInst.h"
53#include "llvm/IR/LLVMContext.h"
Chris Lattner473988c2013-01-05 16:44:07 +000054#include "llvm/IR/Metadata.h"
Chandler Carruthaa0ab632014-03-04 12:09:19 +000055#include "llvm/IR/PredIteratorCache.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000056#include "llvm/Support/CommandLine.h"
57#include "llvm/Support/Debug.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000058#include "llvm/Support/raw_ostream.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000059#include "llvm/Transforms/Utils/Local.h"
Chandler Carruth8765cf72014-01-25 04:07:24 +000060#include "llvm/Transforms/Utils/LoopUtils.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000061#include "llvm/Transforms/Utils/SSAUpdater.h"
Chris Lattner6ec05f52002-05-10 22:44:58 +000062#include <algorithm>
Chris Lattnerc0517682003-12-09 17:18:00 +000063using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000064
Chandler Carruth964daaa2014-04-22 02:55:47 +000065#define DEBUG_TYPE "licm"
66
Chris Lattner79a42ac2006-12-19 21:40:18 +000067STATISTIC(NumSunk , "Number of instructions sunk out of loop");
68STATISTIC(NumHoisted , "Number of instructions hoisted out of loop");
69STATISTIC(NumMovedLoads, "Number of load insts hoisted or sunk");
70STATISTIC(NumMovedCalls, "Number of call insts hoisted or sunk");
71STATISTIC(NumPromoted , "Number of memory locations promoted to registers");
72
Dan Gohmand78c4002008-05-13 00:00:25 +000073static cl::opt<bool>
74DisablePromotion("disable-licm-promotion", cl::Hidden,
75 cl::desc("Disable memory promotion in LICM pass"));
Chris Lattner45d67d62003-02-24 03:52:32 +000076
Hal Finkel3d4269a2015-02-22 18:35:32 +000077static bool inSubLoop(BasicBlock *BB, Loop *CurLoop, LoopInfo *LI);
David Majnemer42a07302016-01-04 03:37:39 +000078static bool isNotUsedInLoop(const Instruction &I, const Loop *CurLoop,
79 const LICMSafetyInfo *SafetyInfo);
Hal Finkel3d4269a2015-02-22 18:35:32 +000080static bool hoist(Instruction &I, BasicBlock *Preheader);
Pete Cooper0cabcf22015-05-13 01:12:18 +000081static bool sink(Instruction &I, const LoopInfo *LI, const DominatorTree *DT,
David Majnemer42a07302016-01-04 03:37:39 +000082 const Loop *CurLoop, AliasSetTracker *CurAST,
83 const LICMSafetyInfo *SafetyInfo);
Pete Cooper0cabcf22015-05-13 01:12:18 +000084static bool isGuaranteedToExecute(const Instruction &Inst,
85 const DominatorTree *DT,
86 const Loop *CurLoop,
87 const LICMSafetyInfo *SafetyInfo);
88static bool isSafeToExecuteUnconditionally(const Instruction &Inst,
89 const DominatorTree *DT,
Sanjoy Dasf8a0db52015-05-18 18:07:00 +000090 const TargetLibraryInfo *TLI,
Pete Cooper0cabcf22015-05-13 01:12:18 +000091 const Loop *CurLoop,
Philip Reamesb47b9c22015-05-22 02:14:05 +000092 const LICMSafetyInfo *SafetyInfo,
93 const Instruction *CtxI = nullptr);
Hal Finkel3d4269a2015-02-22 18:35:32 +000094static bool pointerInvalidatedByLoop(Value *V, uint64_t Size,
95 const AAMDNodes &AAInfo,
96 AliasSetTracker *CurAST);
David Majnemer42a07302016-01-04 03:37:39 +000097static Instruction *
98CloneInstructionInExitBlock(Instruction &I, BasicBlock &ExitBlock, PHINode &PN,
99 const LoopInfo *LI,
100 const LICMSafetyInfo *SafetyInfo);
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000101static bool canSinkOrHoistInst(Instruction &I, AliasAnalysis *AA,
Sanjoy Dasf8a0db52015-05-18 18:07:00 +0000102 DominatorTree *DT, TargetLibraryInfo *TLI,
103 Loop *CurLoop, AliasSetTracker *CurAST,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000104 LICMSafetyInfo *SafetyInfo);
Hal Finkel3d4269a2015-02-22 18:35:32 +0000105
Dan Gohmand78c4002008-05-13 00:00:25 +0000106namespace {
Chris Lattner2dd09db2009-09-02 06:11:42 +0000107 struct LICM : public LoopPass {
Nick Lewyckye7da2d62007-05-06 13:37:16 +0000108 static char ID; // Pass identification, replacement for typeid
Owen Anderson6c18d1a2010-10-19 17:21:58 +0000109 LICM() : LoopPass(ID) {
110 initializeLICMPass(*PassRegistry::getPassRegistry());
111 }
Devang Patel09f162c2007-05-01 21:15:47 +0000112
Craig Topper3e4c6972014-03-05 09:10:37 +0000113 bool runOnLoop(Loop *L, LPPassManager &LPM) override;
Chris Lattner6ec05f52002-05-10 22:44:58 +0000114
Chris Lattnerf64f2d32002-09-26 16:52:07 +0000115 /// This transformation requires natural loop information & requires that
116 /// loop preheaders be inserted into the CFG...
117 ///
Craig Topper3e4c6972014-03-05 09:10:37 +0000118 void getAnalysisUsage(AnalysisUsage &AU) const override {
Chris Lattner820d9712002-10-21 20:00:28 +0000119 AU.setPreservesCFG();
Chandler Carruth73523022014-01-13 13:07:17 +0000120 AU.addRequired<DominatorTreeWrapperPass>();
Chandler Carruth4f8f3072015-01-17 14:16:18 +0000121 AU.addRequired<LoopInfoWrapperPass>();
Dan Gohmanefd7f9c2010-07-16 17:58:45 +0000122 AU.addRequiredID(LoopSimplifyID);
Chandler Carruth8765cf72014-01-25 04:07:24 +0000123 AU.addPreservedID(LoopSimplifyID);
124 AU.addRequiredID(LCSSAID);
125 AU.addPreservedID(LCSSAID);
Chandler Carruth7b560d42015-09-09 17:55:00 +0000126 AU.addRequired<AAResultsWrapperPass>();
127 AU.addPreserved<AAResultsWrapperPass>();
128 AU.addPreserved<BasicAAWrapperPass>();
129 AU.addPreserved<GlobalsAAWrapperPass>();
Chandler Carruth2f1fd162015-08-17 02:08:17 +0000130 AU.addPreserved<ScalarEvolutionWrapperPass>();
Chandler Carruth7b560d42015-09-09 17:55:00 +0000131 AU.addPreserved<SCEVAAWrapperPass>();
Chandler Carruthb98f63d2015-01-15 10:41:28 +0000132 AU.addRequired<TargetLibraryInfoWrapperPass>();
Chris Lattner6ec05f52002-05-10 22:44:58 +0000133 }
134
Matt Beaumont-Gayabfc4462012-12-04 05:41:27 +0000135 using llvm::Pass::doFinalization;
136
Craig Topper3e4c6972014-03-05 09:10:37 +0000137 bool doFinalization() override {
Chris Lattnercc9cbc62010-08-29 17:46:00 +0000138 assert(LoopToAliasSetMap.empty() && "Didn't free loop alias sets");
Devang Patel69730c92007-03-07 04:41:30 +0000139 return false;
140 }
141
Chris Lattner6ec05f52002-05-10 22:44:58 +0000142 private:
Chris Lattner45d67d62003-02-24 03:52:32 +0000143 AliasAnalysis *AA; // Current AliasAnalysis information
Chris Lattnerc0517682003-12-09 17:18:00 +0000144 LoopInfo *LI; // Current LoopInfo
Chris Lattnerabe61ef2010-08-29 06:49:44 +0000145 DominatorTree *DT; // Dominator Tree for the current Loop.
Chris Lattnerc0517682003-12-09 17:18:00 +0000146
Chad Rosier43a33062011-12-02 01:26:24 +0000147 TargetLibraryInfo *TLI; // TargetLibraryInfo for constant folding.
148
Chris Lattnercc9cbc62010-08-29 17:46:00 +0000149 // State that is updated as we process loops.
Chris Lattner45d67d62003-02-24 03:52:32 +0000150 bool Changed; // Set to true when we change anything.
151 BasicBlock *Preheader; // The preheader block of the current loop...
152 Loop *CurLoop; // The current loop we are working on...
Chris Lattner0592bb72003-03-03 23:32:45 +0000153 AliasSetTracker *CurAST; // AliasSet information for the current loop...
Chris Lattnercc9cbc62010-08-29 17:46:00 +0000154 DenseMap<Loop*, AliasSetTracker*> LoopToAliasSetMap;
Chris Lattner6ec05f52002-05-10 22:44:58 +0000155
Devang Patelb98a0972007-07-31 08:01:41 +0000156 /// cloneBasicBlockAnalysis - Simple Analysis hook. Clone alias set info.
Craig Topper3e4c6972014-03-05 09:10:37 +0000157 void cloneBasicBlockAnalysis(BasicBlock *From, BasicBlock *To,
158 Loop *L) override;
Devang Patelb98a0972007-07-31 08:01:41 +0000159
160 /// deleteAnalysisValue - Simple Analysis hook. Delete value V from alias
161 /// set.
Craig Topper3e4c6972014-03-05 09:10:37 +0000162 void deleteAnalysisValue(Value *V, Loop *L) override;
Devang Patelb98a0972007-07-31 08:01:41 +0000163
David Peixotto0d4d5e62014-09-24 16:48:31 +0000164 /// Simple Analysis hook. Delete loop L from alias set map.
165 void deleteAnalysisLoop(Loop *L) override;
Chris Lattner6ec05f52002-05-10 22:44:58 +0000166 };
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000167}
Chris Lattner6ec05f52002-05-10 22:44:58 +0000168
Dan Gohmand78c4002008-05-13 00:00:25 +0000169char LICM::ID = 0;
Owen Anderson8ac477f2010-10-12 19:48:12 +0000170INITIALIZE_PASS_BEGIN(LICM, "licm", "Loop Invariant Code Motion", false, false)
Chandler Carruth73523022014-01-13 13:07:17 +0000171INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
Chandler Carruth4f8f3072015-01-17 14:16:18 +0000172INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass)
Owen Anderson8ac477f2010-10-12 19:48:12 +0000173INITIALIZE_PASS_DEPENDENCY(LoopSimplify)
Chandler Carruth8765cf72014-01-25 04:07:24 +0000174INITIALIZE_PASS_DEPENDENCY(LCSSA)
Chandler Carruth2f1fd162015-08-17 02:08:17 +0000175INITIALIZE_PASS_DEPENDENCY(ScalarEvolutionWrapperPass)
Chandler Carruthb98f63d2015-01-15 10:41:28 +0000176INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass)
Chandler Carruth7b560d42015-09-09 17:55:00 +0000177INITIALIZE_PASS_DEPENDENCY(BasicAAWrapperPass)
178INITIALIZE_PASS_DEPENDENCY(AAResultsWrapperPass)
179INITIALIZE_PASS_DEPENDENCY(GlobalsAAWrapperPass)
180INITIALIZE_PASS_DEPENDENCY(SCEVAAWrapperPass)
Owen Anderson8ac477f2010-10-12 19:48:12 +0000181INITIALIZE_PASS_END(LICM, "licm", "Loop Invariant Code Motion", false, false)
Dan Gohmand78c4002008-05-13 00:00:25 +0000182
Daniel Dunbar7f39e2d2008-10-22 23:32:42 +0000183Pass *llvm::createLICMPass() { return new LICM(); }
Chris Lattner6ec05f52002-05-10 22:44:58 +0000184
Devang Pateld8b1ceb2007-07-31 16:52:25 +0000185/// Hoist expressions out of the specified loop. Note, alias info for inner
Tobias Grossera3928f52011-07-06 19:20:02 +0000186/// loop is not preserved so it is not a good idea to run LICM multiple
Devang Pateld8b1ceb2007-07-31 16:52:25 +0000187/// times on one loop.
Chris Lattnerf64f2d32002-09-26 16:52:07 +0000188///
Devang Patel69730c92007-03-07 04:41:30 +0000189bool LICM::runOnLoop(Loop *L, LPPassManager &LPM) {
Paul Robinsonaf4e64d2014-02-06 00:07:05 +0000190 if (skipOptnoneFunction(L))
191 return false;
192
Chris Lattner45d67d62003-02-24 03:52:32 +0000193 Changed = false;
Chris Lattner6ec05f52002-05-10 22:44:58 +0000194
Chris Lattner45d67d62003-02-24 03:52:32 +0000195 // Get our Loop and Alias Analysis information...
Chandler Carruth4f8f3072015-01-17 14:16:18 +0000196 LI = &getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
Chandler Carruth7b560d42015-09-09 17:55:00 +0000197 AA = &getAnalysis<AAResultsWrapperPass>().getAAResults();
Chandler Carruth73523022014-01-13 13:07:17 +0000198 DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree();
Chris Lattnera51fa882002-08-22 21:39:55 +0000199
Chandler Carruthb98f63d2015-01-15 10:41:28 +0000200 TLI = &getAnalysis<TargetLibraryInfoWrapperPass>().getTLI();
Chad Rosier43a33062011-12-02 01:26:24 +0000201
Chandler Carruthfc258542014-02-11 12:52:27 +0000202 assert(L->isLCSSAForm(*DT) && "Loop is not in LCSSA form.");
203
Devang Patel69730c92007-03-07 04:41:30 +0000204 CurAST = new AliasSetTracker(*AA);
Chris Lattnercc9cbc62010-08-29 17:46:00 +0000205 // Collect Alias info from subloops.
Devang Patel69730c92007-03-07 04:41:30 +0000206 for (Loop::iterator LoopItr = L->begin(), LoopItrE = L->end();
207 LoopItr != LoopItrE; ++LoopItr) {
208 Loop *InnerL = *LoopItr;
Chris Lattnercc9cbc62010-08-29 17:46:00 +0000209 AliasSetTracker *InnerAST = LoopToAliasSetMap[InnerL];
210 assert(InnerAST && "Where is my AST?");
Devang Patel69730c92007-03-07 04:41:30 +0000211
212 // What if InnerLoop was modified by other passes ?
213 CurAST->add(*InnerAST);
Tobias Grossera3928f52011-07-06 19:20:02 +0000214
Chris Lattnercc9cbc62010-08-29 17:46:00 +0000215 // Once we've incorporated the inner loop's AST into ours, we don't need the
216 // subloop's anymore.
217 delete InnerAST;
218 LoopToAliasSetMap.erase(InnerL);
Chris Lattner45d67d62003-02-24 03:52:32 +0000219 }
Tobias Grossera3928f52011-07-06 19:20:02 +0000220
Chris Lattner6ec05f52002-05-10 22:44:58 +0000221 CurLoop = L;
222
Chris Lattnerd57f3f52002-09-26 19:40:25 +0000223 // Get the preheader block to move instructions into...
224 Preheader = L->getLoopPreheader();
Chris Lattnerd57f3f52002-09-26 19:40:25 +0000225
Chris Lattner45d67d62003-02-24 03:52:32 +0000226 // Loop over the body of this loop, looking for calls, invokes, and stores.
Chris Lattner0592bb72003-03-03 23:32:45 +0000227 // Because subloops have already been incorporated into AST, we skip blocks in
Chris Lattner45d67d62003-02-24 03:52:32 +0000228 // subloops.
229 //
Dan Gohman90071072008-06-22 20:18:58 +0000230 for (Loop::block_iterator I = L->block_begin(), E = L->block_end();
231 I != E; ++I) {
232 BasicBlock *BB = *I;
Chris Lattnercc9cbc62010-08-29 17:46:00 +0000233 if (LI->getLoopFor(BB) == L) // Ignore blocks in subloops.
Dan Gohman90071072008-06-22 20:18:58 +0000234 CurAST->add(*BB); // Incorporate the specified basic block
235 }
Chris Lattner45d67d62003-02-24 03:52:32 +0000236
Hal Finkel3d4269a2015-02-22 18:35:32 +0000237 // Compute loop safety information.
238 LICMSafetyInfo SafetyInfo;
239 computeLICMSafetyInfo(&SafetyInfo, CurLoop);
Nadav Rotem03dcd852012-09-04 10:25:04 +0000240
Chris Lattner6ec05f52002-05-10 22:44:58 +0000241 // We want to visit all of the instructions in this loop... that are not parts
242 // of our subloops (they have already had their invariants hoisted out of
243 // their loop, into this loop, so there is no need to process the BODIES of
244 // the subloops).
245 //
Chris Lattner64437692002-09-29 21:46:09 +0000246 // Traverse the body of the loop in depth first order on the dominator tree so
247 // that we are guaranteed to see definitions before we see uses. This allows
Nick Lewyckya0d49da2007-08-18 15:08:56 +0000248 // us to sink instructions in one pass, without iteration. After sinking
Chris Lattner547192d62003-12-19 07:22:45 +0000249 // instructions, we perform another pass to hoist them out of the loop.
Chris Lattner64437692002-09-29 21:46:09 +0000250 //
Dan Gohmana83ac2d2009-11-05 21:11:53 +0000251 if (L->hasDedicatedExits())
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000252 Changed |= sinkRegion(DT->getNode(L->getHeader()), AA, LI, DT, TLI, CurLoop,
253 CurAST, &SafetyInfo);
Dan Gohmana83ac2d2009-11-05 21:11:53 +0000254 if (Preheader)
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000255 Changed |= hoistRegion(DT->getNode(L->getHeader()), AA, LI, DT, TLI,
Hal Finkel3d4269a2015-02-22 18:35:32 +0000256 CurLoop, CurAST, &SafetyInfo);
Chris Lattner6ec05f52002-05-10 22:44:58 +0000257
Chris Lattner45d67d62003-02-24 03:52:32 +0000258 // Now that all loop invariants have been removed from the loop, promote any
Chris Lattner1dc98b42010-08-29 06:43:52 +0000259 // memory references to scalars that we can.
Chandler Carruthcc497b62014-01-24 02:24:47 +0000260 if (!DisablePromotion && (Preheader || L->hasDedicatedExits())) {
Dan Gohmanb9487362012-08-08 00:00:26 +0000261 SmallVector<BasicBlock *, 8> ExitBlocks;
262 SmallVector<Instruction *, 8> InsertPts;
Chandler Carruthfc258542014-02-11 12:52:27 +0000263 PredIteratorCache PIC;
Dan Gohmanb9487362012-08-08 00:00:26 +0000264
Chris Lattner1dc98b42010-08-29 06:43:52 +0000265 // Loop over all of the alias sets in the tracker object.
266 for (AliasSetTracker::iterator I = CurAST->begin(), E = CurAST->end();
267 I != E; ++I)
Hal Finkel3d4269a2015-02-22 18:35:32 +0000268 Changed |= promoteLoopAccessesToScalars(*I, ExitBlocks, InsertPts,
269 PIC, LI, DT, CurLoop,
270 CurAST, &SafetyInfo);
Chandler Carruth16651522014-02-01 13:35:14 +0000271
272 // Once we have promoted values across the loop body we have to recursively
273 // reform LCSSA as any nested loop may now have values defined within the
274 // loop used in the outer loop.
275 // FIXME: This is really heavy handed. It would be a bit better to use an
276 // SSAUpdater strategy during promotion that was LCSSA aware and reformed
277 // it as it went.
Chandler Carruth2f1fd162015-08-17 02:08:17 +0000278 if (Changed) {
279 auto *SEWP = getAnalysisIfAvailable<ScalarEvolutionWrapperPass>();
280 formLCSSARecursively(*L, *DT, LI, SEWP ? &SEWP->getSE() : nullptr);
281 }
Chris Lattner1dc98b42010-08-29 06:43:52 +0000282 }
Tobias Grossera3928f52011-07-06 19:20:02 +0000283
Chandler Carruthfc258542014-02-11 12:52:27 +0000284 // Check that neither this loop nor its parent have had LCSSA broken. LICM is
285 // specifically moving instructions across the loop boundary and so it is
286 // especially in need of sanity checking here.
287 assert(L->isLCSSAForm(*DT) && "Loop not left in LCSSA form after LICM!");
288 assert((!L->getParentLoop() || L->getParentLoop()->isLCSSAForm(*DT)) &&
289 "Parent loop not left in LCSSA form after LICM!");
Chandler Carruth8765cf72014-01-25 04:07:24 +0000290
Chris Lattner6ec05f52002-05-10 22:44:58 +0000291 // Clear out loops state information for the next iteration
Craig Topperf40110f2014-04-25 05:29:35 +0000292 CurLoop = nullptr;
293 Preheader = nullptr;
Devang Patel69730c92007-03-07 04:41:30 +0000294
Chris Lattnercc9cbc62010-08-29 17:46:00 +0000295 // If this loop is nested inside of another one, save the alias information
296 // for when we process the outer loop.
297 if (L->getParentLoop())
298 LoopToAliasSetMap[L] = CurAST;
299 else
300 delete CurAST;
Devang Patel69730c92007-03-07 04:41:30 +0000301 return Changed;
Chris Lattner6ec05f52002-05-10 22:44:58 +0000302}
303
Hal Finkel3d4269a2015-02-22 18:35:32 +0000304/// Walk the specified region of the CFG (defined by all blocks dominated by
305/// the specified block, and that are in the current loop) in reverse depth
306/// first order w.r.t the DominatorTree. This allows us to visit uses before
307/// definitions, allowing us to sink a loop body in one pass without iteration.
Chris Lattner547192d62003-12-19 07:22:45 +0000308///
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000309bool llvm::sinkRegion(DomTreeNode *N, AliasAnalysis *AA, LoopInfo *LI,
310 DominatorTree *DT, TargetLibraryInfo *TLI, Loop *CurLoop,
311 AliasSetTracker *CurAST, LICMSafetyInfo *SafetyInfo) {
Chris Lattner547192d62003-12-19 07:22:45 +0000312
Hal Finkel3d4269a2015-02-22 18:35:32 +0000313 // Verify inputs.
314 assert(N != nullptr && AA != nullptr && LI != nullptr &&
315 DT != nullptr && CurLoop != nullptr && CurAST != nullptr &&
316 SafetyInfo != nullptr && "Unexpected input to sinkRegion");
317
318 // Set changed as false.
319 bool Changed = false;
320 // Get basic block
321 BasicBlock *BB = N->getBlock();
Chris Lattner547192d62003-12-19 07:22:45 +0000322 // If this subregion is not in the top level loop at all, exit.
Hal Finkel3d4269a2015-02-22 18:35:32 +0000323 if (!CurLoop->contains(BB)) return Changed;
Chris Lattner547192d62003-12-19 07:22:45 +0000324
Chris Lattner263f8042010-08-29 18:22:25 +0000325 // We are processing blocks in reverse dfo, so process children first.
Devang Patelbdd1aae2007-06-04 00:32:22 +0000326 const std::vector<DomTreeNode*> &Children = N->getChildren();
Chris Lattner547192d62003-12-19 07:22:45 +0000327 for (unsigned i = 0, e = Children.size(); i != e; ++i)
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000328 Changed |=
329 sinkRegion(Children[i], AA, LI, DT, TLI, CurLoop, CurAST, SafetyInfo);
Chris Lattner547192d62003-12-19 07:22:45 +0000330 // Only need to process the contents of this block if it is not part of a
331 // subloop (which would already have been processed).
Hal Finkel3d4269a2015-02-22 18:35:32 +0000332 if (inSubLoop(BB,CurLoop,LI)) return Changed;
Chris Lattner547192d62003-12-19 07:22:45 +0000333
Chris Lattner91846012003-12-19 08:18:16 +0000334 for (BasicBlock::iterator II = BB->end(); II != BB->begin(); ) {
335 Instruction &I = *--II;
Tobias Grossera3928f52011-07-06 19:20:02 +0000336
Chris Lattner263f8042010-08-29 18:22:25 +0000337 // If the instruction is dead, we would try to sink it because it isn't used
338 // in the loop, instead, just delete it.
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000339 if (isInstructionTriviallyDead(&I, TLI)) {
Chris Lattnerf58382e2010-08-29 18:42:23 +0000340 DEBUG(dbgs() << "LICM deleting dead inst: " << I << '\n');
Chris Lattner263f8042010-08-29 18:22:25 +0000341 ++II;
342 CurAST->deleteValue(&I);
343 I.eraseFromParent();
344 Changed = true;
345 continue;
346 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000347
Chris Lattner547192d62003-12-19 07:22:45 +0000348 // Check to see if we can sink this instruction to the exit blocks
349 // of the loop. We can do this if the all users of the instruction are
350 // outside of the loop. In this case, it doesn't even matter if the
351 // operands of the instruction are loop invariant.
352 //
David Majnemer42a07302016-01-04 03:37:39 +0000353 if (isNotUsedInLoop(I, CurLoop, SafetyInfo) &&
Sanjoy Dasf8a0db52015-05-18 18:07:00 +0000354 canSinkOrHoistInst(I, AA, DT, TLI, CurLoop, CurAST, SafetyInfo)) {
Chris Lattner91846012003-12-19 08:18:16 +0000355 ++II;
David Majnemer42a07302016-01-04 03:37:39 +0000356 Changed |= sink(I, LI, DT, CurLoop, CurAST, SafetyInfo);
Chris Lattner91846012003-12-19 08:18:16 +0000357 }
Chris Lattner547192d62003-12-19 07:22:45 +0000358 }
Hal Finkel3d4269a2015-02-22 18:35:32 +0000359 return Changed;
Chris Lattner547192d62003-12-19 07:22:45 +0000360}
361
Hal Finkel3d4269a2015-02-22 18:35:32 +0000362/// Walk the specified region of the CFG (defined by all blocks dominated by
363/// the specified block, and that are in the current loop) in depth first
364/// order w.r.t the DominatorTree. This allows us to visit definitions before
365/// uses, allowing us to hoist a loop body in one pass without iteration.
Chris Lattner64437692002-09-29 21:46:09 +0000366///
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000367bool llvm::hoistRegion(DomTreeNode *N, AliasAnalysis *AA, LoopInfo *LI,
368 DominatorTree *DT, TargetLibraryInfo *TLI, Loop *CurLoop,
369 AliasSetTracker *CurAST, LICMSafetyInfo *SafetyInfo) {
Hal Finkel3d4269a2015-02-22 18:35:32 +0000370 // Verify inputs.
371 assert(N != nullptr && AA != nullptr && LI != nullptr &&
372 DT != nullptr && CurLoop != nullptr && CurAST != nullptr &&
373 SafetyInfo != nullptr && "Unexpected input to hoistRegion");
374 // Set changed as false.
375 bool Changed = false;
376 // Get basic block
Owen Andersonc24701e2007-04-24 06:40:39 +0000377 BasicBlock *BB = N->getBlock();
Chris Lattner05e86302002-09-29 22:26:07 +0000378 // If this subregion is not in the top level loop at all, exit.
Hal Finkel3d4269a2015-02-22 18:35:32 +0000379 if (!CurLoop->contains(BB)) return Changed;
Chris Lattneraaaea512003-12-10 06:41:05 +0000380 // Only need to process the contents of this block if it is not part of a
381 // subloop (which would already have been processed).
Hal Finkel3d4269a2015-02-22 18:35:32 +0000382 if (!inSubLoop(BB, CurLoop, LI))
Chris Lattneraaaea512003-12-10 06:41:05 +0000383 for (BasicBlock::iterator II = BB->begin(), E = BB->end(); II != E; ) {
384 Instruction &I = *II++;
Chris Lattner030f0202010-08-31 23:00:16 +0000385 // Try constant folding this instruction. If all the operands are
386 // constants, it is technically hoistable, but it would be better to just
387 // fold it.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000388 if (Constant *C = ConstantFoldInstruction(
389 &I, I.getModule()->getDataLayout(), TLI)) {
Chris Lattner030f0202010-08-31 23:00:16 +0000390 DEBUG(dbgs() << "LICM folding inst: " << I << " --> " << *C << '\n');
391 CurAST->copyValue(&I, C);
392 CurAST->deleteValue(&I);
393 I.replaceAllUsesWith(C);
394 I.eraseFromParent();
395 continue;
396 }
Tobias Grossera3928f52011-07-06 19:20:02 +0000397
Chris Lattner547192d62003-12-19 07:22:45 +0000398 // Try hoisting the instruction out to the preheader. We can only do this
399 // if all of the operands of the instruction are loop invariant and if it
400 // is safe to hoist the instruction.
401 //
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000402 if (CurLoop->hasLoopInvariantOperands(&I) &&
Sanjoy Dasf8a0db52015-05-18 18:07:00 +0000403 canSinkOrHoistInst(I, AA, DT, TLI, CurLoop, CurAST, SafetyInfo) &&
Philip Reamesb47b9c22015-05-22 02:14:05 +0000404 isSafeToExecuteUnconditionally(I, DT, TLI, CurLoop, SafetyInfo,
405 CurLoop->getLoopPreheader()->getTerminator()))
Hal Finkel3d4269a2015-02-22 18:35:32 +0000406 Changed |= hoist(I, CurLoop->getLoopPreheader());
Chris Lattner030f0202010-08-31 23:00:16 +0000407 }
Chris Lattner64437692002-09-29 21:46:09 +0000408
Devang Patelbdd1aae2007-06-04 00:32:22 +0000409 const std::vector<DomTreeNode*> &Children = N->getChildren();
Chris Lattner64437692002-09-29 21:46:09 +0000410 for (unsigned i = 0, e = Children.size(); i != e; ++i)
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000411 Changed |=
412 hoistRegion(Children[i], AA, LI, DT, TLI, CurLoop, CurAST, SafetyInfo);
Hal Finkel3d4269a2015-02-22 18:35:32 +0000413 return Changed;
414}
415
416/// Computes loop safety information, checks loop body & header
Benjamin Kramerdf005cb2015-08-08 18:27:36 +0000417/// for the possibility of may throw exception.
Hal Finkel3d4269a2015-02-22 18:35:32 +0000418///
419void llvm::computeLICMSafetyInfo(LICMSafetyInfo * SafetyInfo, Loop * CurLoop) {
420 assert(CurLoop != nullptr && "CurLoop cant be null");
421 BasicBlock *Header = CurLoop->getHeader();
422 // Setting default safety values.
423 SafetyInfo->MayThrow = false;
424 SafetyInfo->HeaderMayThrow = false;
Benjamin Kramerdf005cb2015-08-08 18:27:36 +0000425 // Iterate over header and compute safety info.
Hal Finkel3d4269a2015-02-22 18:35:32 +0000426 for (BasicBlock::iterator I = Header->begin(), E = Header->end();
427 (I != E) && !SafetyInfo->HeaderMayThrow; ++I)
428 SafetyInfo->HeaderMayThrow |= I->mayThrow();
429
430 SafetyInfo->MayThrow = SafetyInfo->HeaderMayThrow;
431 // Iterate over loop instructions and compute safety info.
432 for (Loop::block_iterator BB = CurLoop->block_begin(),
433 BBE = CurLoop->block_end(); (BB != BBE) && !SafetyInfo->MayThrow ; ++BB)
434 for (BasicBlock::iterator I = (*BB)->begin(), E = (*BB)->end();
435 (I != E) && !SafetyInfo->MayThrow; ++I)
436 SafetyInfo->MayThrow |= I->mayThrow();
David Majnemer42a07302016-01-04 03:37:39 +0000437
438 // Compute funclet colors if we might sink/hoist in a function with a funclet
439 // personality routine.
440 Function *Fn = CurLoop->getHeader()->getParent();
441 if (Fn->hasPersonalityFn())
442 if (Constant *PersonalityFn = Fn->getPersonalityFn())
443 if (isFuncletEHPersonality(classifyEHPersonality(PersonalityFn)))
444 SafetyInfo->BlockColors = colorEHFunclets(*Fn);
Chris Lattner64437692002-09-29 21:46:09 +0000445}
446
Chris Lattneraaaea512003-12-10 06:41:05 +0000447/// canSinkOrHoistInst - Return true if the hoister and sinker can handle this
448/// instruction.
449///
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000450bool canSinkOrHoistInst(Instruction &I, AliasAnalysis *AA, DominatorTree *DT,
Sanjoy Dasf8a0db52015-05-18 18:07:00 +0000451 TargetLibraryInfo *TLI, Loop *CurLoop,
452 AliasSetTracker *CurAST, LICMSafetyInfo *SafetyInfo) {
Chris Lattner65c11932003-12-09 19:32:44 +0000453 // Loads have extra constraints we have to verify before we can hoist them.
454 if (LoadInst *LI = dyn_cast<LoadInst>(&I)) {
Eli Friedman91386c72011-08-15 20:52:09 +0000455 if (!LI->isUnordered())
456 return false; // Don't hoist volatile/atomic loads!
Chris Lattner65c11932003-12-09 19:32:44 +0000457
Chris Lattner8a8fb902008-07-23 05:06:28 +0000458 // Loads from constant memory are always safe to move, even if they end up
459 // in the same alias set as something that ends up being modified.
Dan Gohmancbc6ebb2009-11-19 19:00:10 +0000460 if (AA->pointsToConstantMemory(LI->getOperand(0)))
Chris Lattner8a8fb902008-07-23 05:06:28 +0000461 return true;
Philip Reames5a3f5f72014-10-21 00:13:20 +0000462 if (LI->getMetadata(LLVMContext::MD_invariant_load))
Pete Cooper9ee22092011-11-08 19:30:00 +0000463 return true;
Tobias Grossera3928f52011-07-06 19:20:02 +0000464
Chris Lattner65c11932003-12-09 19:32:44 +0000465 // Don't hoist loads which have may-aliased stores in loop.
Dan Gohmanf372cf82010-10-19 22:54:46 +0000466 uint64_t Size = 0;
Chris Lattnerb1374092004-11-26 21:20:09 +0000467 if (LI->getType()->isSized())
Chandler Carruth50fee932015-08-06 02:05:46 +0000468 Size = I.getModule()->getDataLayout().getTypeStoreSize(LI->getType());
Hal Finkelcc39b672014-07-24 12:16:19 +0000469
470 AAMDNodes AAInfo;
471 LI->getAAMetadata(AAInfo);
472
Hal Finkel3d4269a2015-02-22 18:35:32 +0000473 return !pointerInvalidatedByLoop(LI->getOperand(0), Size, AAInfo, CurAST);
Chris Lattner20cda262004-03-15 04:11:30 +0000474 } else if (CallInst *CI = dyn_cast<CallInst>(&I)) {
Eli Friedman942e1c12011-05-27 18:37:52 +0000475 // Don't sink or hoist dbg info; it's legal, but not useful.
476 if (isa<DbgInfoIntrinsic>(I))
477 return false;
478
David Majnemer42a07302016-01-04 03:37:39 +0000479 // Don't sink calls which can throw.
480 if (CI->mayThrow())
481 return false;
482
Eli Friedman942e1c12011-05-27 18:37:52 +0000483 // Handle simple cases by querying alias analysis.
Chandler Carruth194f59c2015-07-22 23:15:57 +0000484 FunctionModRefBehavior Behavior = AA->getModRefBehavior(CI);
485 if (Behavior == FMRB_DoesNotAccessMemory)
Duncan Sands68b6f502007-12-01 07:51:45 +0000486 return true;
Dan Gohman0f175072010-11-09 19:58:21 +0000487 if (AliasAnalysis::onlyReadsMemory(Behavior)) {
Philip Reames5f994232015-09-21 22:27:59 +0000488 // A readonly argmemonly function only reads from memory pointed to by
489 // it's arguments with arbitrary offsets. If we can prove there are no
490 // writes to this memory in the loop, we can hoist or sink.
491 if (AliasAnalysis::onlyAccessesArgPointees(Behavior)) {
492 for (Value *Op : CI->arg_operands())
493 if (Op->getType()->isPointerTy() &&
494 pointerInvalidatedByLoop(Op, MemoryLocation::UnknownSize,
495 AAMDNodes(), CurAST))
496 return false;
497 return true;
498 }
Duncan Sands68b6f502007-12-01 07:51:45 +0000499 // If this call only reads from memory and there are no writes to memory
500 // in the loop, we can hoist or sink the call as appropriate.
501 bool FoundMod = false;
502 for (AliasSetTracker::iterator I = CurAST->begin(), E = CurAST->end();
503 I != E; ++I) {
504 AliasSet &AS = *I;
505 if (!AS.isForwardingAliasSet() && AS.isMod()) {
506 FoundMod = true;
507 break;
Chris Lattner20cda262004-03-15 04:11:30 +0000508 }
Chris Lattner20cda262004-03-15 04:11:30 +0000509 }
Duncan Sands68b6f502007-12-01 07:51:45 +0000510 if (!FoundMod) return true;
Chris Lattner20cda262004-03-15 04:11:30 +0000511 }
512
Nadav Rotem03dcd852012-09-04 10:25:04 +0000513 // FIXME: This should use mod/ref information to see if we can hoist or
514 // sink the call.
Misha Brukmanb1c93172005-04-21 23:48:37 +0000515
Chris Lattner20cda262004-03-15 04:11:30 +0000516 return false;
Chris Lattner65c11932003-12-09 19:32:44 +0000517 }
518
Nadav Rotem03dcd852012-09-04 10:25:04 +0000519 // Only these instructions are hoistable/sinkable.
Benjamin Kramer130fcde2013-01-09 18:12:03 +0000520 if (!isa<BinaryOperator>(I) && !isa<CastInst>(I) && !isa<SelectInst>(I) &&
521 !isa<GetElementPtrInst>(I) && !isa<CmpInst>(I) &&
522 !isa<InsertElementInst>(I) && !isa<ExtractElementInst>(I) &&
523 !isa<ShuffleVectorInst>(I) && !isa<ExtractValueInst>(I) &&
524 !isa<InsertValueInst>(I))
525 return false;
Nadav Rotem03dcd852012-09-04 10:25:04 +0000526
Philip Reamesb47b9c22015-05-22 02:14:05 +0000527 // TODO: Plumb the context instruction through to make hoisting and sinking
528 // more powerful. Hoisting of loads already works due to the special casing
529 // above.
530 return isSafeToExecuteUnconditionally(I, DT, TLI, CurLoop, SafetyInfo,
531 nullptr);
Chris Lattneraaaea512003-12-10 06:41:05 +0000532}
533
Hal Finkel3d4269a2015-02-22 18:35:32 +0000534/// Returns true if a PHINode is a trivially replaceable with an
Chandler Carruth8765cf72014-01-25 04:07:24 +0000535/// Instruction.
Hal Finkel3d4269a2015-02-22 18:35:32 +0000536/// This is true when all incoming values are that instruction.
537/// This pattern occurs most often with LCSSA PHI nodes.
Chandler Carruth8765cf72014-01-25 04:07:24 +0000538///
Pete Cooper47e80cd2015-05-12 20:05:20 +0000539static bool isTriviallyReplacablePHI(const PHINode &PN, const Instruction &I) {
Pete Cooper833f34d2015-05-12 20:05:31 +0000540 for (const Value *IncValue : PN.incoming_values())
541 if (IncValue != &I)
Chandler Carruth8765cf72014-01-25 04:07:24 +0000542 return false;
543
544 return true;
545}
546
Hal Finkel3d4269a2015-02-22 18:35:32 +0000547/// Return true if the only users of this instruction are outside of
548/// the loop. If this is true, we can sink the instruction to the exit
549/// blocks of the loop.
Chris Lattneraaaea512003-12-10 06:41:05 +0000550///
David Majnemer42a07302016-01-04 03:37:39 +0000551static bool isNotUsedInLoop(const Instruction &I, const Loop *CurLoop,
552 const LICMSafetyInfo *SafetyInfo) {
553 const auto &BlockColors = SafetyInfo->BlockColors;
Pete Cooper0cabcf22015-05-13 01:12:18 +0000554 for (const User *U : I.users()) {
555 const Instruction *UI = cast<Instruction>(U);
556 if (const PHINode *PN = dyn_cast<PHINode>(UI)) {
David Majnemer42a07302016-01-04 03:37:39 +0000557 const BasicBlock *BB = PN->getParent();
558 // We cannot sink uses in catchswitches.
559 if (isa<CatchSwitchInst>(BB->getTerminator()))
560 return false;
561
562 // We need to sink a callsite to a unique funclet. Avoid sinking if the
563 // phi use is too muddled.
564 if (isa<CallInst>(I))
565 if (!BlockColors.empty() &&
566 BlockColors.find(const_cast<BasicBlock *>(BB))->second.size() != 1)
567 return false;
568
Chandler Carruth8765cf72014-01-25 04:07:24 +0000569 // A PHI node where all of the incoming values are this instruction are
570 // special -- they can just be RAUW'ed with the instruction and thus
571 // don't require a use in the predecessor. This is a particular important
572 // special case because it is the pattern found in LCSSA form.
573 if (isTriviallyReplacablePHI(*PN, I)) {
574 if (CurLoop->contains(PN))
575 return false;
576 else
577 continue;
578 }
579
580 // Otherwise, PHI node uses occur in predecessor blocks if the incoming
581 // values. Check for such a use being inside the loop.
Chris Lattner34399dd2003-12-11 22:23:32 +0000582 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
583 if (PN->getIncomingValue(i) == &I)
584 if (CurLoop->contains(PN->getIncomingBlock(i)))
585 return false;
Chandler Carruth8765cf72014-01-25 04:07:24 +0000586
587 continue;
Chris Lattner34399dd2003-12-11 22:23:32 +0000588 }
Chandler Carruth8765cf72014-01-25 04:07:24 +0000589
Chandler Carruthcdf47882014-03-09 03:16:01 +0000590 if (CurLoop->contains(UI))
Chandler Carruth8765cf72014-01-25 04:07:24 +0000591 return false;
Chris Lattner34399dd2003-12-11 22:23:32 +0000592 }
Chris Lattneraaaea512003-12-10 06:41:05 +0000593 return true;
594}
595
David Majnemer42a07302016-01-04 03:37:39 +0000596static Instruction *
597CloneInstructionInExitBlock(Instruction &I, BasicBlock &ExitBlock, PHINode &PN,
598 const LoopInfo *LI,
599 const LICMSafetyInfo *SafetyInfo) {
600 Instruction *New;
601 if (auto *CI = dyn_cast<CallInst>(&I)) {
602 const auto &BlockColors = SafetyInfo->BlockColors;
603
604 // Sinking call-sites need to be handled differently from other
605 // instructions. The cloned call-site needs a funclet bundle operand
606 // appropriate for it's location in the CFG.
607 SmallVector<OperandBundleDef, 1> OpBundles;
608 for (unsigned BundleIdx = 0, BundleEnd = CI->getNumOperandBundles();
609 BundleIdx != BundleEnd; ++BundleIdx) {
610 OperandBundleUse Bundle = CI->getOperandBundleAt(BundleIdx);
611 if (Bundle.getTagID() == LLVMContext::OB_funclet)
612 continue;
613
614 OpBundles.emplace_back(Bundle);
615 }
616
617 if (!BlockColors.empty()) {
618 const ColorVector &CV = BlockColors.find(&ExitBlock)->second;
619 assert(CV.size() == 1 && "non-unique color for exit block!");
620 BasicBlock *BBColor = CV.front();
621 Instruction *EHPad = BBColor->getFirstNonPHI();
622 if (EHPad->isEHPad())
623 OpBundles.emplace_back("funclet", EHPad);
624 }
625
626 New = CallInst::Create(CI, OpBundles);
627 } else {
628 New = I.clone();
629 }
630
Evgeniy Stepanovd99cca22014-06-25 09:17:21 +0000631 ExitBlock.getInstList().insert(ExitBlock.getFirstInsertionPt(), New);
632 if (!I.getName().empty()) New->setName(I.getName() + ".le");
633
634 // Build LCSSA PHI nodes for any in-loop operands. Note that this is
635 // particularly cheap because we can rip off the PHI node that we're
636 // replacing for the number and blocks of the predecessors.
637 // OPT: If this shows up in a profile, we can instead finish sinking all
638 // invariant instructions, and then walk their operands to re-establish
639 // LCSSA. That will eliminate creating PHI nodes just to nuke them when
640 // sinking bottom-up.
641 for (User::op_iterator OI = New->op_begin(), OE = New->op_end(); OI != OE;
642 ++OI)
643 if (Instruction *OInst = dyn_cast<Instruction>(*OI))
644 if (Loop *OLoop = LI->getLoopFor(OInst->getParent()))
645 if (!OLoop->contains(&PN)) {
646 PHINode *OpPN =
647 PHINode::Create(OInst->getType(), PN.getNumIncomingValues(),
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +0000648 OInst->getName() + ".lcssa", &ExitBlock.front());
Evgeniy Stepanovd99cca22014-06-25 09:17:21 +0000649 for (unsigned i = 0, e = PN.getNumIncomingValues(); i != e; ++i)
650 OpPN->addIncoming(OInst, PN.getIncomingBlock(i));
651 *OI = OpPN;
652 }
653 return New;
654}
655
Hal Finkel3d4269a2015-02-22 18:35:32 +0000656/// When an instruction is found to only be used outside of the loop, this
657/// function moves it to the exit blocks and patches up SSA form as needed.
Chris Lattner91846012003-12-19 08:18:16 +0000658/// This method is guaranteed to remove the original instruction from its
659/// position, and may either delete it or move it to outside of the loop.
Chris Lattneraaaea512003-12-10 06:41:05 +0000660///
Pete Cooper0cabcf22015-05-13 01:12:18 +0000661static bool sink(Instruction &I, const LoopInfo *LI, const DominatorTree *DT,
David Majnemer42a07302016-01-04 03:37:39 +0000662 const Loop *CurLoop, AliasSetTracker *CurAST,
663 const LICMSafetyInfo *SafetyInfo) {
Nick Lewycky299c6df2010-07-30 20:27:01 +0000664 DEBUG(dbgs() << "LICM sinking instruction: " << I << "\n");
Hal Finkel3d4269a2015-02-22 18:35:32 +0000665 bool Changed = false;
Chris Lattner55c21132003-12-10 20:43:29 +0000666 if (isa<LoadInst>(I)) ++NumMovedLoads;
Chris Lattner20cda262004-03-15 04:11:30 +0000667 else if (isa<CallInst>(I)) ++NumMovedCalls;
Chris Lattner55c21132003-12-10 20:43:29 +0000668 ++NumSunk;
669 Changed = true;
670
Chandler Carruthfc258542014-02-11 12:52:27 +0000671#ifndef NDEBUG
672 SmallVector<BasicBlock *, 32> ExitBlocks;
673 CurLoop->getUniqueExitBlocks(ExitBlocks);
Hal Finkel3d4269a2015-02-22 18:35:32 +0000674 SmallPtrSet<BasicBlock *, 32> ExitBlockSet(ExitBlocks.begin(),
675 ExitBlocks.end());
Chandler Carruthfc258542014-02-11 12:52:27 +0000676#endif
Chandler Carruth8765cf72014-01-25 04:07:24 +0000677
Evgeniy Stepanov10280da2014-06-25 07:54:58 +0000678 // Clones of this instruction. Don't create more than one per exit block!
679 SmallDenseMap<BasicBlock *, Instruction *, 32> SunkCopies;
680
Chandler Carruthfc258542014-02-11 12:52:27 +0000681 // If this instruction is only used outside of the loop, then all users are
682 // PHI nodes in exit blocks due to LCSSA form. Just RAUW them with clones of
683 // the instruction.
684 while (!I.use_empty()) {
David Majnemer6bc83e02015-07-12 03:53:05 +0000685 Value::user_iterator UI = I.user_begin();
686 auto *User = cast<Instruction>(*UI);
David Majnemer49428102014-09-02 16:22:00 +0000687 if (!DT->isReachableFromEntry(User->getParent())) {
688 User->replaceUsesOfWith(&I, UndefValue::get(I.getType()));
689 continue;
690 }
Chandler Carruthfc258542014-02-11 12:52:27 +0000691 // The user must be a PHI node.
David Majnemer49428102014-09-02 16:22:00 +0000692 PHINode *PN = cast<PHINode>(User);
Chris Lattnercc9cbc62010-08-29 17:46:00 +0000693
David Majnemer6bc83e02015-07-12 03:53:05 +0000694 // Surprisingly, instructions can be used outside of loops without any
695 // exits. This can only happen in PHI nodes if the incoming block is
696 // unreachable.
697 Use &U = UI.getUse();
698 BasicBlock *BB = PN->getIncomingBlock(U);
699 if (!DT->isReachableFromEntry(BB)) {
700 U = UndefValue::get(I.getType());
701 continue;
702 }
703
Chandler Carruthfc258542014-02-11 12:52:27 +0000704 BasicBlock *ExitBlock = PN->getParent();
705 assert(ExitBlockSet.count(ExitBlock) &&
706 "The LCSSA PHI is not in an exit block!");
707
Evgeniy Stepanov10280da2014-06-25 07:54:58 +0000708 Instruction *New;
709 auto It = SunkCopies.find(ExitBlock);
Evgeniy Stepanovd99cca22014-06-25 09:17:21 +0000710 if (It != SunkCopies.end())
Evgeniy Stepanov10280da2014-06-25 07:54:58 +0000711 New = It->second;
Evgeniy Stepanovd99cca22014-06-25 09:17:21 +0000712 else
713 New = SunkCopies[ExitBlock] =
David Majnemer42a07302016-01-04 03:37:39 +0000714 CloneInstructionInExitBlock(I, *ExitBlock, *PN, LI, SafetyInfo);
Chandler Carruthfc258542014-02-11 12:52:27 +0000715
716 PN->replaceAllUsesWith(New);
717 PN->eraseFromParent();
Chris Lattnercd96b4d2010-08-29 04:28:20 +0000718 }
Tobias Grossera3928f52011-07-06 19:20:02 +0000719
Chris Lattner1a1ed692010-08-29 18:00:00 +0000720 CurAST->deleteValue(&I);
Chandler Carruthfc258542014-02-11 12:52:27 +0000721 I.eraseFromParent();
Hal Finkel3d4269a2015-02-22 18:35:32 +0000722 return Changed;
Chris Lattneraaaea512003-12-10 06:41:05 +0000723}
Chris Lattner64437692002-09-29 21:46:09 +0000724
Hal Finkel3d4269a2015-02-22 18:35:32 +0000725/// When an instruction is found to only use loop invariant operands that
726/// is safe to hoist, this instruction is called to do the dirty work.
Chris Lattnerf64f2d32002-09-26 16:52:07 +0000727///
Hal Finkel3d4269a2015-02-22 18:35:32 +0000728static bool hoist(Instruction &I, BasicBlock *Preheader) {
David Greene0fd86222010-01-05 01:27:30 +0000729 DEBUG(dbgs() << "LICM hoisting to " << Preheader->getName() << ": "
Evan Chengf8158612009-10-12 22:25:23 +0000730 << I << "\n");
Chris Lattner6ac06592010-08-29 18:18:40 +0000731 // Move the new node to the Preheader, before its terminator.
732 I.moveBefore(Preheader->getTerminator());
Misha Brukmanb1c93172005-04-21 23:48:37 +0000733
Igor Laevsky7310c682015-11-18 14:50:18 +0000734 // Metadata can be dependent on the condition we are hoisting above.
735 // Conservatively strip all metadata on the instruction.
736 I.dropUnknownNonDebugMetadata();
737
Chris Lattneraaaea512003-12-10 06:41:05 +0000738 if (isa<LoadInst>(I)) ++NumMovedLoads;
Chris Lattner20cda262004-03-15 04:11:30 +0000739 else if (isa<CallInst>(I)) ++NumMovedCalls;
Chris Lattner718b2212002-09-26 16:38:03 +0000740 ++NumHoisted;
Hal Finkel3d4269a2015-02-22 18:35:32 +0000741 return true;
Chris Lattner6ec05f52002-05-10 22:44:58 +0000742}
743
Sanjoy Dasf8a0db52015-05-18 18:07:00 +0000744/// Only sink or hoist an instruction if it is not a trapping instruction,
745/// or if the instruction is known not to trap when moved to the preheader.
Hal Finkel3d4269a2015-02-22 18:35:32 +0000746/// or if it is a trapping instruction and is guaranteed to execute.
Sanjoy Dasf8a0db52015-05-18 18:07:00 +0000747static bool isSafeToExecuteUnconditionally(const Instruction &Inst,
Pete Cooper0cabcf22015-05-13 01:12:18 +0000748 const DominatorTree *DT,
Sanjoy Dasf8a0db52015-05-18 18:07:00 +0000749 const TargetLibraryInfo *TLI,
Pete Cooper0cabcf22015-05-13 01:12:18 +0000750 const Loop *CurLoop,
Philip Reamesb47b9c22015-05-22 02:14:05 +0000751 const LICMSafetyInfo *SafetyInfo,
752 const Instruction *CtxI) {
Sanjoy Dasf8a0db52015-05-18 18:07:00 +0000753 if (isSafeToSpeculativelyExecute(&Inst, CtxI, DT, TLI))
Eli Friedmanb8f6a4f2009-07-17 04:28:42 +0000754 return true;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000755
Hal Finkel3d4269a2015-02-22 18:35:32 +0000756 return isGuaranteedToExecute(Inst, DT, CurLoop, SafetyInfo);
Eli Friedman0cdc1482011-07-20 21:37:47 +0000757}
758
Pete Cooper0cabcf22015-05-13 01:12:18 +0000759static bool isGuaranteedToExecute(const Instruction &Inst,
760 const DominatorTree *DT,
761 const Loop *CurLoop,
762 const LICMSafetyInfo * SafetyInfo) {
Nadav Rotem03dcd852012-09-04 10:25:04 +0000763
Philip Reamesb35f46c2014-12-29 23:00:57 +0000764 // We have to check to make sure that the instruction dominates all
Chris Lattnerc0517682003-12-09 17:18:00 +0000765 // of the exit blocks. If it doesn't, then there is a path out of the loop
766 // which does not execute this instruction, so we can't hoist it.
Tanya Lattner57c03df2003-08-05 18:45:46 +0000767
Chris Lattnerc0517682003-12-09 17:18:00 +0000768 // If the instruction is in the header block for the loop (which is very
769 // common), it is always guaranteed to dominate the exit blocks. Since this
770 // is a common case, and can save some work, check it now.
Chris Lattneraaaea512003-12-10 06:41:05 +0000771 if (Inst.getParent() == CurLoop->getHeader())
Philip Reamesb35f46c2014-12-29 23:00:57 +0000772 // If there's a throw in the header block, we can't guarantee we'll reach
773 // Inst.
Hal Finkel3d4269a2015-02-22 18:35:32 +0000774 return !SafetyInfo->HeaderMayThrow;
Philip Reamesb35f46c2014-12-29 23:00:57 +0000775
776 // Somewhere in this loop there is an instruction which may throw and make us
777 // exit the loop.
Hal Finkel3d4269a2015-02-22 18:35:32 +0000778 if (SafetyInfo->MayThrow)
Philip Reamesb35f46c2014-12-29 23:00:57 +0000779 return false;
Tanya Lattner57c03df2003-08-05 18:45:46 +0000780
Chris Lattnerc0517682003-12-09 17:18:00 +0000781 // Get the exit blocks for the current loop.
Devang Patelb5933bb2007-08-21 00:31:24 +0000782 SmallVector<BasicBlock*, 8> ExitBlocks;
Chris Lattner35eaa552004-04-18 22:15:13 +0000783 CurLoop->getExitBlocks(ExitBlocks);
Chris Lattnerc0517682003-12-09 17:18:00 +0000784
Chris Lattner27497ec2011-01-02 18:45:39 +0000785 // Verify that the block dominates each of the exit blocks of the loop.
Chris Lattneraaaea512003-12-10 06:41:05 +0000786 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i)
Chris Lattner27497ec2011-01-02 18:45:39 +0000787 if (!DT->dominates(Inst.getParent(), ExitBlocks[i]))
Chris Lattneraaaea512003-12-10 06:41:05 +0000788 return false;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000789
Nick Lewycky78ee67e2012-05-01 04:03:01 +0000790 // As a degenerate case, if the loop is statically infinite then we haven't
791 // proven anything since there are no exit blocks.
792 if (ExitBlocks.empty())
793 return false;
794
Tanya Lattner57c03df2003-08-05 18:45:46 +0000795 return true;
796}
797
Chris Lattnerb68ec5c2011-01-15 00:12:35 +0000798namespace {
799 class LoopPromoter : public LoadAndStorePromoter {
800 Value *SomePtr; // Designated pointer to store to.
Craig Topper71b7b682014-08-21 05:55:13 +0000801 SmallPtrSetImpl<Value*> &PointerMustAliases;
Chris Lattnerb68ec5c2011-01-15 00:12:35 +0000802 SmallVectorImpl<BasicBlock*> &LoopExitBlocks;
Dan Gohmanb9487362012-08-08 00:00:26 +0000803 SmallVectorImpl<Instruction*> &LoopInsertPts;
Chandler Carruthfc258542014-02-11 12:52:27 +0000804 PredIteratorCache &PredCache;
Chris Lattnerb68ec5c2011-01-15 00:12:35 +0000805 AliasSetTracker &AST;
Chandler Carruthfc258542014-02-11 12:52:27 +0000806 LoopInfo &LI;
Eli Friedmanddf7f552011-05-27 20:31:51 +0000807 DebugLoc DL;
Tobias Grosser4a5d9a92011-07-06 19:19:55 +0000808 int Alignment;
Hal Finkelcc39b672014-07-24 12:16:19 +0000809 AAMDNodes AATags;
Chandler Carruthfc258542014-02-11 12:52:27 +0000810
811 Value *maybeInsertLCSSAPHI(Value *V, BasicBlock *BB) const {
812 if (Instruction *I = dyn_cast<Instruction>(V))
813 if (Loop *L = LI.getLoopFor(I->getParent()))
814 if (!L->contains(BB)) {
815 // We need to create an LCSSA PHI node for the incoming value and
816 // store that.
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +0000817 PHINode *PN =
818 PHINode::Create(I->getType(), PredCache.size(BB),
819 I->getName() + ".lcssa", &BB->front());
Daniel Berlinb4e7a4a2015-04-21 21:11:50 +0000820 for (BasicBlock *Pred : PredCache.get(BB))
821 PN->addIncoming(I, Pred);
Chandler Carruthfc258542014-02-11 12:52:27 +0000822 return PN;
823 }
824 return V;
825 }
826
Chris Lattnerb68ec5c2011-01-15 00:12:35 +0000827 public:
Pete Cooper41e0ee32015-05-13 01:12:16 +0000828 LoopPromoter(Value *SP,
829 ArrayRef<const Instruction *> Insts,
Craig Topper71b7b682014-08-21 05:55:13 +0000830 SSAUpdater &S, SmallPtrSetImpl<Value *> &PMA,
Chandler Carruthfc258542014-02-11 12:52:27 +0000831 SmallVectorImpl<BasicBlock *> &LEB,
832 SmallVectorImpl<Instruction *> &LIP, PredIteratorCache &PIC,
833 AliasSetTracker &ast, LoopInfo &li, DebugLoc dl, int alignment,
Hal Finkelcc39b672014-07-24 12:16:19 +0000834 const AAMDNodes &AATags)
Chandler Carruthfc258542014-02-11 12:52:27 +0000835 : LoadAndStorePromoter(Insts, S), SomePtr(SP), PointerMustAliases(PMA),
836 LoopExitBlocks(LEB), LoopInsertPts(LIP), PredCache(PIC), AST(ast),
Hal Finkelcc39b672014-07-24 12:16:19 +0000837 LI(li), DL(dl), Alignment(alignment), AATags(AATags) {}
Tobias Grossera3928f52011-07-06 19:20:02 +0000838
Craig Topper3e4c6972014-03-05 09:10:37 +0000839 bool isInstInList(Instruction *I,
840 const SmallVectorImpl<Instruction*> &) const override {
Chris Lattnerb68ec5c2011-01-15 00:12:35 +0000841 Value *Ptr;
842 if (LoadInst *LI = dyn_cast<LoadInst>(I))
843 Ptr = LI->getOperand(0);
844 else
845 Ptr = cast<StoreInst>(I)->getPointerOperand();
846 return PointerMustAliases.count(Ptr);
847 }
Tobias Grossera3928f52011-07-06 19:20:02 +0000848
Craig Topper3e4c6972014-03-05 09:10:37 +0000849 void doExtraRewritesBeforeFinalDeletion() const override {
Chris Lattnerb68ec5c2011-01-15 00:12:35 +0000850 // Insert stores after in the loop exit blocks. Each exit block gets a
851 // store of the live-out values that feed them. Since we've already told
852 // the SSA updater about the defs in the loop and the preheader
853 // definition, it is all set and we can start using it.
854 for (unsigned i = 0, e = LoopExitBlocks.size(); i != e; ++i) {
855 BasicBlock *ExitBlock = LoopExitBlocks[i];
856 Value *LiveInValue = SSA.GetValueInMiddleOfBlock(ExitBlock);
Chandler Carruthfc258542014-02-11 12:52:27 +0000857 LiveInValue = maybeInsertLCSSAPHI(LiveInValue, ExitBlock);
858 Value *Ptr = maybeInsertLCSSAPHI(SomePtr, ExitBlock);
Dan Gohmanb9487362012-08-08 00:00:26 +0000859 Instruction *InsertPos = LoopInsertPts[i];
Chandler Carruthfc258542014-02-11 12:52:27 +0000860 StoreInst *NewSI = new StoreInst(LiveInValue, Ptr, InsertPos);
Tobias Grosser4a5d9a92011-07-06 19:19:55 +0000861 NewSI->setAlignment(Alignment);
Eli Friedmanddf7f552011-05-27 20:31:51 +0000862 NewSI->setDebugLoc(DL);
Hal Finkelcc39b672014-07-24 12:16:19 +0000863 if (AATags) NewSI->setAAMetadata(AATags);
Chris Lattnerb68ec5c2011-01-15 00:12:35 +0000864 }
865 }
866
Craig Topper3e4c6972014-03-05 09:10:37 +0000867 void replaceLoadWithValue(LoadInst *LI, Value *V) const override {
Chris Lattnerb68ec5c2011-01-15 00:12:35 +0000868 // Update alias analysis.
869 AST.copyValue(LI, V);
870 }
Craig Topper3e4c6972014-03-05 09:10:37 +0000871 void instructionDeleted(Instruction *I) const override {
Chris Lattnerb68ec5c2011-01-15 00:12:35 +0000872 AST.deleteValue(I);
873 }
874 };
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000875} // end anon namespace
Chris Lattnerb68ec5c2011-01-15 00:12:35 +0000876
Hal Finkel3d4269a2015-02-22 18:35:32 +0000877/// Try to promote memory values to scalars by sinking stores out of the
878/// loop and moving loads to before the loop. We do this by looping over
879/// the stores in the loop, looking for stores to Must pointers which are
880/// loop invariant.
Chris Lattner45d67d62003-02-24 03:52:32 +0000881///
Hal Finkel3d4269a2015-02-22 18:35:32 +0000882bool llvm::promoteLoopAccessesToScalars(AliasSet &AS,
883 SmallVectorImpl<BasicBlock*>&ExitBlocks,
884 SmallVectorImpl<Instruction*>&InsertPts,
885 PredIteratorCache &PIC, LoopInfo *LI,
886 DominatorTree *DT, Loop *CurLoop,
887 AliasSetTracker *CurAST,
888 LICMSafetyInfo * SafetyInfo) {
889 // Verify inputs.
890 assert(LI != nullptr && DT != nullptr &&
891 CurLoop != nullptr && CurAST != nullptr &&
892 SafetyInfo != nullptr &&
893 "Unexpected Input to promoteLoopAccessesToScalars");
894 // Initially set Changed status to false.
895 bool Changed = false;
Chris Lattner1dc98b42010-08-29 06:43:52 +0000896 // We can promote this alias set if it has a store, if it is a "Must" alias
897 // set, if the pointer is loop invariant, and if we are not eliminating any
898 // volatile loads or stores.
899 if (AS.isForwardingAliasSet() || !AS.isMod() || !AS.isMustAlias() ||
900 AS.isVolatile() || !CurLoop->isLoopInvariant(AS.begin()->getValue()))
Hal Finkel3d4269a2015-02-22 18:35:32 +0000901 return Changed;
Tobias Grossera3928f52011-07-06 19:20:02 +0000902
Chris Lattner1dc98b42010-08-29 06:43:52 +0000903 assert(!AS.empty() &&
904 "Must alias set should have at least one pointer element in it!");
Hal Finkel3d4269a2015-02-22 18:35:32 +0000905
Chris Lattner1dc98b42010-08-29 06:43:52 +0000906 Value *SomePtr = AS.begin()->getValue();
Hal Finkel3d4269a2015-02-22 18:35:32 +0000907 BasicBlock * Preheader = CurLoop->getLoopPreheader();
Chris Lattner45d67d62003-02-24 03:52:32 +0000908
Chris Lattner1dc98b42010-08-29 06:43:52 +0000909 // It isn't safe to promote a load/store from the loop if the load/store is
910 // conditional. For example, turning:
Chris Lattner45d67d62003-02-24 03:52:32 +0000911 //
Chris Lattner1dc98b42010-08-29 06:43:52 +0000912 // for () { if (c) *P += 1; }
Chris Lattner45d67d62003-02-24 03:52:32 +0000913 //
Chris Lattner1dc98b42010-08-29 06:43:52 +0000914 // into:
915 //
916 // tmp = *P; for () { if (c) tmp +=1; } *P = tmp;
917 //
918 // is not safe, because *P may only be valid to access if 'c' is true.
Tobias Grossera3928f52011-07-06 19:20:02 +0000919 //
Chris Lattner1dc98b42010-08-29 06:43:52 +0000920 // It is safe to promote P if all uses are direct load/stores and if at
921 // least one is guaranteed to be executed.
922 bool GuaranteedToExecute = false;
Tobias Grosser4a5d9a92011-07-06 19:19:55 +0000923
Chris Lattner1dc98b42010-08-29 06:43:52 +0000924 SmallVector<Instruction*, 64> LoopUses;
925 SmallPtrSet<Value*, 4> PointerMustAliases;
Chris Lattner45d67d62003-02-24 03:52:32 +0000926
Tobias Grosser4a5d9a92011-07-06 19:19:55 +0000927 // We start with an alignment of one and try to find instructions that allow
928 // us to prove better alignment.
929 unsigned Alignment = 1;
Hal Finkelcc39b672014-07-24 12:16:19 +0000930 AAMDNodes AATags;
Bruno Cardoso Lopes46d5bf22014-11-28 19:47:46 +0000931 bool HasDedicatedExits = CurLoop->hasDedicatedExits();
Tobias Grosser4a5d9a92011-07-06 19:19:55 +0000932
Chris Lattner1dc98b42010-08-29 06:43:52 +0000933 // Check that all of the pointers in the alias set have the same type. We
934 // cannot (yet) promote a memory location that is loaded and stored in
Hal Finkelcc39b672014-07-24 12:16:19 +0000935 // different sizes. While we are at it, collect alignment and AA info.
Chris Lattner1dc98b42010-08-29 06:43:52 +0000936 for (AliasSet::iterator ASI = AS.begin(), E = AS.end(); ASI != E; ++ASI) {
937 Value *ASIV = ASI->getValue();
938 PointerMustAliases.insert(ASIV);
Tobias Grossera3928f52011-07-06 19:20:02 +0000939
Chris Lattnerf12c08d2008-05-22 00:53:38 +0000940 // Check that all of the pointers in the alias set have the same type. We
941 // cannot (yet) promote a memory location that is loaded and stored in
942 // different sizes.
Chris Lattner1dc98b42010-08-29 06:43:52 +0000943 if (SomePtr->getType() != ASIV->getType())
Hal Finkel3d4269a2015-02-22 18:35:32 +0000944 return Changed;
Tobias Grossera3928f52011-07-06 19:20:02 +0000945
Chandler Carruthcdf47882014-03-09 03:16:01 +0000946 for (User *U : ASIV->users()) {
Chris Lattner1dc98b42010-08-29 06:43:52 +0000947 // Ignore instructions that are outside the loop.
Chandler Carruthcdf47882014-03-09 03:16:01 +0000948 Instruction *UI = dyn_cast<Instruction>(U);
949 if (!UI || !CurLoop->contains(UI))
Chris Lattnerf12c08d2008-05-22 00:53:38 +0000950 continue;
Tobias Grossera3928f52011-07-06 19:20:02 +0000951
Chris Lattner1dc98b42010-08-29 06:43:52 +0000952 // If there is an non-load/store instruction in the loop, we can't promote
953 // it.
Pete Cooper0cabcf22015-05-13 01:12:18 +0000954 if (const LoadInst *load = dyn_cast<LoadInst>(UI)) {
Eli Friedman91386c72011-08-15 20:52:09 +0000955 assert(!load->isVolatile() && "AST broken");
956 if (!load->isSimple())
Hal Finkel3d4269a2015-02-22 18:35:32 +0000957 return Changed;
Pete Cooper0cabcf22015-05-13 01:12:18 +0000958 } else if (const StoreInst *store = dyn_cast<StoreInst>(UI)) {
Chris Lattner408a6842010-12-19 05:57:25 +0000959 // Stores *of* the pointer are not interesting, only stores *to* the
960 // pointer.
Chandler Carruthcdf47882014-03-09 03:16:01 +0000961 if (UI->getOperand(1) != ASIV)
Chris Lattner408a6842010-12-19 05:57:25 +0000962 continue;
Eli Friedman91386c72011-08-15 20:52:09 +0000963 assert(!store->isVolatile() && "AST broken");
964 if (!store->isSimple())
Hal Finkel3d4269a2015-02-22 18:35:32 +0000965 return Changed;
Bruno Cardoso Lopes46d5bf22014-11-28 19:47:46 +0000966 // Don't sink stores from loops without dedicated block exits. Exits
967 // containing indirect branches are not transformed by loop simplify,
Bruno Cardoso Lopesd035fbb2014-12-02 14:22:34 +0000968 // make sure we catch that. An additional load may be generated in the
969 // preheader for SSA updater, so also avoid sinking when no preheader
970 // is available.
971 if (!HasDedicatedExits || !Preheader)
Hal Finkel3d4269a2015-02-22 18:35:32 +0000972 return Changed;
Eli Friedman0cdc1482011-07-20 21:37:47 +0000973
974 // Note that we only check GuaranteedToExecute inside the store case
975 // so that we do not introduce stores where they did not exist before
976 // (which would break the LLVM concurrency model).
977
978 // If the alignment of this instruction allows us to specify a more
979 // restrictive (and performant) alignment and if we are sure this
980 // instruction will be executed, update the alignment.
981 // Larger is better, with the exception of 0 being the best alignment.
Eli Friedman91386c72011-08-15 20:52:09 +0000982 unsigned InstAlignment = store->getAlignment();
Chris Lattnerf5cca682012-12-31 08:37:17 +0000983 if ((InstAlignment > Alignment || InstAlignment == 0) && Alignment != 0)
Hal Finkel3d4269a2015-02-22 18:35:32 +0000984 if (isGuaranteedToExecute(*UI, DT, CurLoop, SafetyInfo)) {
Eli Friedman0cdc1482011-07-20 21:37:47 +0000985 GuaranteedToExecute = true;
986 Alignment = InstAlignment;
987 }
988
989 if (!GuaranteedToExecute)
Hal Finkel3d4269a2015-02-22 18:35:32 +0000990 GuaranteedToExecute = isGuaranteedToExecute(*UI, DT,
991 CurLoop, SafetyInfo);
Eli Friedman0cdc1482011-07-20 21:37:47 +0000992
Chris Lattnerbe901902010-09-06 05:11:24 +0000993 } else
Hal Finkel3d4269a2015-02-22 18:35:32 +0000994 return Changed; // Not a load or store.
Tobias Grosser4a5d9a92011-07-06 19:19:55 +0000995
Hal Finkelcc39b672014-07-24 12:16:19 +0000996 // Merge the AA tags.
Chris Lattnerf5cca682012-12-31 08:37:17 +0000997 if (LoopUses.empty()) {
Hal Finkelcc39b672014-07-24 12:16:19 +0000998 // On the first load/store, just take its AA tags.
999 UI->getAAMetadata(AATags);
1000 } else if (AATags) {
1001 UI->getAAMetadata(AATags, /* Merge = */ true);
Chris Lattnerf5cca682012-12-31 08:37:17 +00001002 }
Chandler Carruthcdf47882014-03-09 03:16:01 +00001003
1004 LoopUses.push_back(UI);
Chris Lattner1dc98b42010-08-29 06:43:52 +00001005 }
1006 }
Tobias Grosser4a5d9a92011-07-06 19:19:55 +00001007
Chris Lattner1dc98b42010-08-29 06:43:52 +00001008 // If there isn't a guaranteed-to-execute instruction, we can't promote.
1009 if (!GuaranteedToExecute)
Hal Finkel3d4269a2015-02-22 18:35:32 +00001010 return Changed;
Tobias Grossera3928f52011-07-06 19:20:02 +00001011
Chris Lattner1dc98b42010-08-29 06:43:52 +00001012 // Otherwise, this is safe to promote, lets do it!
Tobias Grossera3928f52011-07-06 19:20:02 +00001013 DEBUG(dbgs() << "LICM: Promoting value stored to in loop: " <<*SomePtr<<'\n');
Chris Lattner1dc98b42010-08-29 06:43:52 +00001014 Changed = true;
1015 ++NumPromoted;
1016
Eli Friedmanddf7f552011-05-27 20:31:51 +00001017 // Grab a debug location for the inserted loads/stores; given that the
1018 // inserted loads/stores have little relation to the original loads/stores,
1019 // this code just arbitrarily picks a location from one, since any debug
1020 // location is better than none.
1021 DebugLoc DL = LoopUses[0]->getDebugLoc();
1022
Dan Gohmanb9487362012-08-08 00:00:26 +00001023 // Figure out the loop exits and their insertion points, if this is the
1024 // first promotion.
1025 if (ExitBlocks.empty()) {
1026 CurLoop->getUniqueExitBlocks(ExitBlocks);
1027 InsertPts.resize(ExitBlocks.size());
1028 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i)
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +00001029 InsertPts[i] = &*ExitBlocks[i]->getFirstInsertionPt();
Dan Gohmanb9487362012-08-08 00:00:26 +00001030 }
Tobias Grossera3928f52011-07-06 19:20:02 +00001031
Chris Lattner1dc98b42010-08-29 06:43:52 +00001032 // We use the SSAUpdater interface to insert phi nodes as required.
1033 SmallVector<PHINode*, 16> NewPHIs;
1034 SSAUpdater SSA(&NewPHIs);
Pete Cooper7c4d7b82015-05-13 22:43:09 +00001035 LoopPromoter Promoter(SomePtr, LoopUses, SSA,
Pete Cooper41e0ee32015-05-13 01:12:16 +00001036 PointerMustAliases, ExitBlocks,
Hal Finkelcc39b672014-07-24 12:16:19 +00001037 InsertPts, PIC, *CurAST, *LI, DL, Alignment, AATags);
Tobias Grossera3928f52011-07-06 19:20:02 +00001038
Chris Lattnerb68ec5c2011-01-15 00:12:35 +00001039 // Set up the preheader to have a definition of the value. It is the live-out
1040 // value from the preheader that uses in the loop will use.
1041 LoadInst *PreheaderLoad =
1042 new LoadInst(SomePtr, SomePtr->getName()+".promoted",
1043 Preheader->getTerminator());
Tobias Grosser4a5d9a92011-07-06 19:19:55 +00001044 PreheaderLoad->setAlignment(Alignment);
Eli Friedmanddf7f552011-05-27 20:31:51 +00001045 PreheaderLoad->setDebugLoc(DL);
Hal Finkelcc39b672014-07-24 12:16:19 +00001046 if (AATags) PreheaderLoad->setAAMetadata(AATags);
Chris Lattner1dc98b42010-08-29 06:43:52 +00001047 SSA.AddAvailableValue(Preheader, PreheaderLoad);
1048
Chris Lattnerb68ec5c2011-01-15 00:12:35 +00001049 // Rewrite all the loads in the loop and remember all the definitions from
1050 // stores in the loop.
1051 Promoter.run(LoopUses);
Eli Friedmanc5f22a72011-04-07 01:35:06 +00001052
1053 // If the SSAUpdater didn't use the load in the preheader, just zap it now.
1054 if (PreheaderLoad->use_empty())
1055 PreheaderLoad->eraseFromParent();
Hal Finkel3d4269a2015-02-22 18:35:32 +00001056
1057 return Changed;
Chris Lattnera51fa882002-08-22 21:39:55 +00001058}
Devang Patelb98a0972007-07-31 08:01:41 +00001059
Ashutosh Nema47802622015-08-13 11:18:35 +00001060/// Simple analysis hook. Clone alias set info.
Hal Finkel3d4269a2015-02-22 18:35:32 +00001061///
Devang Patelb98a0972007-07-31 08:01:41 +00001062void LICM::cloneBasicBlockAnalysis(BasicBlock *From, BasicBlock *To, Loop *L) {
Chris Lattnercc9cbc62010-08-29 17:46:00 +00001063 AliasSetTracker *AST = LoopToAliasSetMap.lookup(L);
Devang Patelb98a0972007-07-31 08:01:41 +00001064 if (!AST)
1065 return;
1066
1067 AST->copyValue(From, To);
1068}
1069
Hal Finkel3d4269a2015-02-22 18:35:32 +00001070/// Simple Analysis hook. Delete value V from alias set
1071///
Devang Patelb98a0972007-07-31 08:01:41 +00001072void LICM::deleteAnalysisValue(Value *V, Loop *L) {
Chris Lattnercc9cbc62010-08-29 17:46:00 +00001073 AliasSetTracker *AST = LoopToAliasSetMap.lookup(L);
Devang Patelb98a0972007-07-31 08:01:41 +00001074 if (!AST)
1075 return;
1076
1077 AST->deleteValue(V);
1078}
David Peixotto0d4d5e62014-09-24 16:48:31 +00001079
1080/// Simple Analysis hook. Delete value L from alias set map.
Hal Finkel3d4269a2015-02-22 18:35:32 +00001081///
David Peixotto0d4d5e62014-09-24 16:48:31 +00001082void LICM::deleteAnalysisLoop(Loop *L) {
1083 AliasSetTracker *AST = LoopToAliasSetMap.lookup(L);
1084 if (!AST)
1085 return;
1086
1087 delete AST;
1088 LoopToAliasSetMap.erase(L);
1089}
Hal Finkel3d4269a2015-02-22 18:35:32 +00001090
1091
1092/// Return true if the body of this loop may store into the memory
1093/// location pointed to by V.
1094///
1095static bool pointerInvalidatedByLoop(Value *V, uint64_t Size,
1096 const AAMDNodes &AAInfo,
1097 AliasSetTracker *CurAST) {
1098 // Check to see if any of the basic blocks in CurLoop invalidate *V.
1099 return CurAST->getAliasSetForPointer(V, Size, AAInfo).isMod();
1100}
1101
1102/// Little predicate that returns true if the specified basic block is in
1103/// a subloop of the current one, not the current one itself.
1104///
1105static bool inSubLoop(BasicBlock *BB, Loop *CurLoop, LoopInfo *LI) {
1106 assert(CurLoop->contains(BB) && "Only valid if BB is IN the loop");
1107 return LI->getLoopFor(BB) != CurLoop;
1108}
1109