blob: 43247ea9b76b94de57e6d8a5f6e90a42218e76c0 [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
Chris Lattner1c790bf2005-03-23 21:00:12 +000033#define DEBUG_TYPE "licm"
Chris Lattner6ec05f52002-05-10 22:44:58 +000034#include "llvm/Transforms/Scalar.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000035#include "llvm/ADT/Statistic.h"
Chris Lattnera51fa882002-08-22 21:39:55 +000036#include "llvm/Analysis/AliasAnalysis.h"
Chris Lattner0592bb72003-03-03 23:32:45 +000037#include "llvm/Analysis/AliasSetTracker.h"
Chris Lattner030f0202010-08-31 23:00:16 +000038#include "llvm/Analysis/ConstantFolding.h"
39#include "llvm/Analysis/LoopInfo.h"
40#include "llvm/Analysis/LoopPass.h"
Chandler Carruthabfa3e52014-01-24 01:59:49 +000041#include "llvm/Analysis/ScalarEvolution.h"
Dan Gohman75d7d5e2011-12-14 23:49:11 +000042#include "llvm/Analysis/ValueTracking.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000043#include "llvm/IR/Constants.h"
44#include "llvm/IR/DataLayout.h"
45#include "llvm/IR/DerivedTypes.h"
Chandler Carruth5ad5f152014-01-13 09:26:24 +000046#include "llvm/IR/Dominators.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000047#include "llvm/IR/Instructions.h"
48#include "llvm/IR/IntrinsicInst.h"
49#include "llvm/IR/LLVMContext.h"
Chris Lattner473988c2013-01-05 16:44:07 +000050#include "llvm/IR/Metadata.h"
Reid Spencer557ab152007-02-05 23:32:05 +000051#include "llvm/Support/CFG.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000052#include "llvm/Support/CommandLine.h"
53#include "llvm/Support/Debug.h"
Chandler Carruthfc258542014-02-11 12:52:27 +000054#include "llvm/Support/PredIteratorCache.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000055#include "llvm/Support/raw_ostream.h"
56#include "llvm/Target/TargetLibraryInfo.h"
57#include "llvm/Transforms/Utils/Local.h"
Chandler Carruth8765cf72014-01-25 04:07:24 +000058#include "llvm/Transforms/Utils/LoopUtils.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000059#include "llvm/Transforms/Utils/SSAUpdater.h"
Chris Lattner6ec05f52002-05-10 22:44:58 +000060#include <algorithm>
Chris Lattnerc0517682003-12-09 17:18:00 +000061using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000062
Chris Lattner79a42ac2006-12-19 21:40:18 +000063STATISTIC(NumSunk , "Number of instructions sunk out of loop");
64STATISTIC(NumHoisted , "Number of instructions hoisted out of loop");
65STATISTIC(NumMovedLoads, "Number of load insts hoisted or sunk");
66STATISTIC(NumMovedCalls, "Number of call insts hoisted or sunk");
67STATISTIC(NumPromoted , "Number of memory locations promoted to registers");
68
Dan Gohmand78c4002008-05-13 00:00:25 +000069static cl::opt<bool>
70DisablePromotion("disable-licm-promotion", cl::Hidden,
71 cl::desc("Disable memory promotion in LICM pass"));
Chris Lattner45d67d62003-02-24 03:52:32 +000072
Dan Gohmand78c4002008-05-13 00:00:25 +000073namespace {
Chris Lattner2dd09db2009-09-02 06:11:42 +000074 struct LICM : public LoopPass {
Nick Lewyckye7da2d62007-05-06 13:37:16 +000075 static char ID; // Pass identification, replacement for typeid
Owen Anderson6c18d1a2010-10-19 17:21:58 +000076 LICM() : LoopPass(ID) {
77 initializeLICMPass(*PassRegistry::getPassRegistry());
78 }
Devang Patel09f162c2007-05-01 21:15:47 +000079
Devang Patel69730c92007-03-07 04:41:30 +000080 virtual bool runOnLoop(Loop *L, LPPassManager &LPM);
Chris Lattner6ec05f52002-05-10 22:44:58 +000081
Chris Lattnerf64f2d32002-09-26 16:52:07 +000082 /// This transformation requires natural loop information & requires that
83 /// loop preheaders be inserted into the CFG...
84 ///
Chris Lattner6ec05f52002-05-10 22:44:58 +000085 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattner820d9712002-10-21 20:00:28 +000086 AU.setPreservesCFG();
Chandler Carruth73523022014-01-13 13:07:17 +000087 AU.addRequired<DominatorTreeWrapperPass>();
Dan Gohmanefd7f9c2010-07-16 17:58:45 +000088 AU.addRequired<LoopInfo>();
89 AU.addRequiredID(LoopSimplifyID);
Chandler Carruth8765cf72014-01-25 04:07:24 +000090 AU.addPreservedID(LoopSimplifyID);
91 AU.addRequiredID(LCSSAID);
92 AU.addPreservedID(LCSSAID);
Chris Lattnera51fa882002-08-22 21:39:55 +000093 AU.addRequired<AliasAnalysis>();
Chris Lattnerf94f6bb2010-08-29 07:02:56 +000094 AU.addPreserved<AliasAnalysis>();
Chandler Carruthabfa3e52014-01-24 01:59:49 +000095 AU.addPreserved<ScalarEvolution>();
Chad Rosier43a33062011-12-02 01:26:24 +000096 AU.addRequired<TargetLibraryInfo>();
Chris Lattner6ec05f52002-05-10 22:44:58 +000097 }
98
Matt Beaumont-Gayabfc4462012-12-04 05:41:27 +000099 using llvm::Pass::doFinalization;
100
Dan Gohman2ce11162007-04-17 18:21:36 +0000101 bool doFinalization() {
Chris Lattnercc9cbc62010-08-29 17:46:00 +0000102 assert(LoopToAliasSetMap.empty() && "Didn't free loop alias sets");
Devang Patel69730c92007-03-07 04:41:30 +0000103 return false;
104 }
105
Chris Lattner6ec05f52002-05-10 22:44:58 +0000106 private:
Chris Lattner45d67d62003-02-24 03:52:32 +0000107 AliasAnalysis *AA; // Current AliasAnalysis information
Chris Lattnerc0517682003-12-09 17:18:00 +0000108 LoopInfo *LI; // Current LoopInfo
Chris Lattnerabe61ef2010-08-29 06:49:44 +0000109 DominatorTree *DT; // Dominator Tree for the current Loop.
Chris Lattnerc0517682003-12-09 17:18:00 +0000110
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000111 DataLayout *TD; // DataLayout for constant folding.
Chad Rosier43a33062011-12-02 01:26:24 +0000112 TargetLibraryInfo *TLI; // TargetLibraryInfo for constant folding.
113
Chris Lattnercc9cbc62010-08-29 17:46:00 +0000114 // State that is updated as we process loops.
Chris Lattner45d67d62003-02-24 03:52:32 +0000115 bool Changed; // Set to true when we change anything.
116 BasicBlock *Preheader; // The preheader block of the current loop...
117 Loop *CurLoop; // The current loop we are working on...
Chris Lattner0592bb72003-03-03 23:32:45 +0000118 AliasSetTracker *CurAST; // AliasSet information for the current loop...
Nadav Rotem03dcd852012-09-04 10:25:04 +0000119 bool MayThrow; // The current loop contains an instruction which
120 // may throw, thus preventing code motion of
121 // instructions with side effects.
Chris Lattnercc9cbc62010-08-29 17:46:00 +0000122 DenseMap<Loop*, AliasSetTracker*> LoopToAliasSetMap;
Chris Lattner6ec05f52002-05-10 22:44:58 +0000123
Devang Patelb98a0972007-07-31 08:01:41 +0000124 /// cloneBasicBlockAnalysis - Simple Analysis hook. Clone alias set info.
125 void cloneBasicBlockAnalysis(BasicBlock *From, BasicBlock *To, Loop *L);
126
127 /// deleteAnalysisValue - Simple Analysis hook. Delete value V from alias
128 /// set.
129 void deleteAnalysisValue(Value *V, Loop *L);
130
Chris Lattner547192d62003-12-19 07:22:45 +0000131 /// SinkRegion - Walk the specified region of the CFG (defined by all blocks
132 /// dominated by the specified block, and that are in the current loop) in
Owen Andersonc24701e2007-04-24 06:40:39 +0000133 /// reverse depth first order w.r.t the DominatorTree. This allows us to
Chris Lattner547192d62003-12-19 07:22:45 +0000134 /// visit uses before definitions, allowing us to sink a loop body in one
135 /// pass without iteration.
136 ///
Devang Patelbdd1aae2007-06-04 00:32:22 +0000137 void SinkRegion(DomTreeNode *N);
Chris Lattner547192d62003-12-19 07:22:45 +0000138
Chris Lattner64437692002-09-29 21:46:09 +0000139 /// HoistRegion - Walk the specified region of the CFG (defined by all
140 /// blocks dominated by the specified block, and that are in the current
Owen Andersonc24701e2007-04-24 06:40:39 +0000141 /// loop) in depth first order w.r.t the DominatorTree. This allows us to
Misha Brukman8b2bd4e2003-10-10 17:57:28 +0000142 /// visit definitions before uses, allowing us to hoist a loop body in one
Chris Lattner64437692002-09-29 21:46:09 +0000143 /// pass without iteration.
144 ///
Devang Patelbdd1aae2007-06-04 00:32:22 +0000145 void HoistRegion(DomTreeNode *N);
Chris Lattner64437692002-09-29 21:46:09 +0000146
Chris Lattner05e86302002-09-29 22:26:07 +0000147 /// inSubLoop - Little predicate that returns true if the specified basic
148 /// block is in a subloop of the current one, not the current one itself.
Chris Lattnerf64f2d32002-09-26 16:52:07 +0000149 ///
Chris Lattner05e86302002-09-29 22:26:07 +0000150 bool inSubLoop(BasicBlock *BB) {
151 assert(CurLoop->contains(BB) && "Only valid if BB is IN the loop");
Chris Lattner0cdc6f62011-01-02 18:53:08 +0000152 return LI->getLoopFor(BB) != CurLoop;
Chris Lattner6ec05f52002-05-10 22:44:58 +0000153 }
154
Chris Lattneraaaea512003-12-10 06:41:05 +0000155 /// sink - When an instruction is found to only be used outside of the loop,
156 /// this function moves it to the exit blocks and patches up SSA form as
157 /// needed.
158 ///
159 void sink(Instruction &I);
160
Chris Lattnerf64f2d32002-09-26 16:52:07 +0000161 /// hoist - When an instruction is found to only use loop invariant operands
162 /// that is safe to hoist, this instruction is called to do the dirty work.
163 ///
Chris Lattner113f4f42002-06-25 16:13:24 +0000164 void hoist(Instruction &I);
Chris Lattner6ec05f52002-05-10 22:44:58 +0000165
Chris Lattneraaaea512003-12-10 06:41:05 +0000166 /// isSafeToExecuteUnconditionally - Only sink or hoist an instruction if it
167 /// is not a trapping instruction or if it is a trapping instruction and is
168 /// guaranteed to execute.
Tanya Lattner57c03df2003-08-05 18:45:46 +0000169 ///
Chris Lattneraaaea512003-12-10 06:41:05 +0000170 bool isSafeToExecuteUnconditionally(Instruction &I);
Tanya Lattner57c03df2003-08-05 18:45:46 +0000171
Eli Friedman0cdc1482011-07-20 21:37:47 +0000172 /// isGuaranteedToExecute - Check that the instruction is guaranteed to
173 /// execute.
174 ///
175 bool isGuaranteedToExecute(Instruction &I);
176
Chris Lattnerf64f2d32002-09-26 16:52:07 +0000177 /// pointerInvalidatedByLoop - Return true if the body of this loop may
178 /// store into the memory location pointed to by V.
Misha Brukmanb1c93172005-04-21 23:48:37 +0000179 ///
Dan Gohmanf372cf82010-10-19 22:54:46 +0000180 bool pointerInvalidatedByLoop(Value *V, uint64_t Size,
Dan Gohman71af9db2010-10-18 20:44:50 +0000181 const MDNode *TBAAInfo) {
Chris Lattner0592bb72003-03-03 23:32:45 +0000182 // Check to see if any of the basic blocks in CurLoop invalidate *V.
Dan Gohman71af9db2010-10-18 20:44:50 +0000183 return CurAST->getAliasSetForPointer(V, Size, TBAAInfo).isMod();
Chris Lattner45d67d62003-02-24 03:52:32 +0000184 }
Chris Lattnera51fa882002-08-22 21:39:55 +0000185
Chris Lattneraaaea512003-12-10 06:41:05 +0000186 bool canSinkOrHoistInst(Instruction &I);
Chris Lattneraaaea512003-12-10 06:41:05 +0000187 bool isNotUsedInLoop(Instruction &I);
Chris Lattner6ec05f52002-05-10 22:44:58 +0000188
Dan Gohmanb9487362012-08-08 00:00:26 +0000189 void PromoteAliasSet(AliasSet &AS,
190 SmallVectorImpl<BasicBlock*> &ExitBlocks,
Chandler Carruthfc258542014-02-11 12:52:27 +0000191 SmallVectorImpl<Instruction*> &InsertPts,
192 PredIteratorCache &PIC);
Chris Lattner6ec05f52002-05-10 22:44:58 +0000193 };
194}
195
Dan Gohmand78c4002008-05-13 00:00:25 +0000196char LICM::ID = 0;
Owen Anderson8ac477f2010-10-12 19:48:12 +0000197INITIALIZE_PASS_BEGIN(LICM, "licm", "Loop Invariant Code Motion", false, false)
Chandler Carruth73523022014-01-13 13:07:17 +0000198INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
Owen Anderson8ac477f2010-10-12 19:48:12 +0000199INITIALIZE_PASS_DEPENDENCY(LoopInfo)
Owen Anderson8ac477f2010-10-12 19:48:12 +0000200INITIALIZE_PASS_DEPENDENCY(LoopSimplify)
Chandler Carruth8765cf72014-01-25 04:07:24 +0000201INITIALIZE_PASS_DEPENDENCY(LCSSA)
202INITIALIZE_PASS_DEPENDENCY(ScalarEvolution)
Chad Rosier43a33062011-12-02 01:26:24 +0000203INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfo)
Owen Anderson8ac477f2010-10-12 19:48:12 +0000204INITIALIZE_AG_DEPENDENCY(AliasAnalysis)
205INITIALIZE_PASS_END(LICM, "licm", "Loop Invariant Code Motion", false, false)
Dan Gohmand78c4002008-05-13 00:00:25 +0000206
Daniel Dunbar7f39e2d2008-10-22 23:32:42 +0000207Pass *llvm::createLICMPass() { return new LICM(); }
Chris Lattner6ec05f52002-05-10 22:44:58 +0000208
Devang Pateld8b1ceb2007-07-31 16:52:25 +0000209/// Hoist expressions out of the specified loop. Note, alias info for inner
Tobias Grossera3928f52011-07-06 19:20:02 +0000210/// loop is not preserved so it is not a good idea to run LICM multiple
Devang Pateld8b1ceb2007-07-31 16:52:25 +0000211/// times on one loop.
Chris Lattnerf64f2d32002-09-26 16:52:07 +0000212///
Devang Patel69730c92007-03-07 04:41:30 +0000213bool LICM::runOnLoop(Loop *L, LPPassManager &LPM) {
Paul Robinsonaf4e64d2014-02-06 00:07:05 +0000214 if (skipOptnoneFunction(L))
215 return false;
216
Chris Lattner45d67d62003-02-24 03:52:32 +0000217 Changed = false;
Chris Lattner6ec05f52002-05-10 22:44:58 +0000218
Chris Lattner45d67d62003-02-24 03:52:32 +0000219 // Get our Loop and Alias Analysis information...
220 LI = &getAnalysis<LoopInfo>();
Chris Lattnera51fa882002-08-22 21:39:55 +0000221 AA = &getAnalysis<AliasAnalysis>();
Chandler Carruth73523022014-01-13 13:07:17 +0000222 DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree();
Chris Lattnera51fa882002-08-22 21:39:55 +0000223
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000224 TD = getAnalysisIfAvailable<DataLayout>();
Chad Rosier43a33062011-12-02 01:26:24 +0000225 TLI = &getAnalysis<TargetLibraryInfo>();
226
Chandler Carruthfc258542014-02-11 12:52:27 +0000227 assert(L->isLCSSAForm(*DT) && "Loop is not in LCSSA form.");
228
Devang Patel69730c92007-03-07 04:41:30 +0000229 CurAST = new AliasSetTracker(*AA);
Chris Lattnercc9cbc62010-08-29 17:46:00 +0000230 // Collect Alias info from subloops.
Devang Patel69730c92007-03-07 04:41:30 +0000231 for (Loop::iterator LoopItr = L->begin(), LoopItrE = L->end();
232 LoopItr != LoopItrE; ++LoopItr) {
233 Loop *InnerL = *LoopItr;
Chris Lattnercc9cbc62010-08-29 17:46:00 +0000234 AliasSetTracker *InnerAST = LoopToAliasSetMap[InnerL];
235 assert(InnerAST && "Where is my AST?");
Devang Patel69730c92007-03-07 04:41:30 +0000236
237 // What if InnerLoop was modified by other passes ?
238 CurAST->add(*InnerAST);
Tobias Grossera3928f52011-07-06 19:20:02 +0000239
Chris Lattnercc9cbc62010-08-29 17:46:00 +0000240 // Once we've incorporated the inner loop's AST into ours, we don't need the
241 // subloop's anymore.
242 delete InnerAST;
243 LoopToAliasSetMap.erase(InnerL);
Chris Lattner45d67d62003-02-24 03:52:32 +0000244 }
Tobias Grossera3928f52011-07-06 19:20:02 +0000245
Chris Lattner6ec05f52002-05-10 22:44:58 +0000246 CurLoop = L;
247
Chris Lattnerd57f3f52002-09-26 19:40:25 +0000248 // Get the preheader block to move instructions into...
249 Preheader = L->getLoopPreheader();
Chris Lattnerd57f3f52002-09-26 19:40:25 +0000250
Chris Lattner45d67d62003-02-24 03:52:32 +0000251 // Loop over the body of this loop, looking for calls, invokes, and stores.
Chris Lattner0592bb72003-03-03 23:32:45 +0000252 // Because subloops have already been incorporated into AST, we skip blocks in
Chris Lattner45d67d62003-02-24 03:52:32 +0000253 // subloops.
254 //
Dan Gohman90071072008-06-22 20:18:58 +0000255 for (Loop::block_iterator I = L->block_begin(), E = L->block_end();
256 I != E; ++I) {
257 BasicBlock *BB = *I;
Chris Lattnercc9cbc62010-08-29 17:46:00 +0000258 if (LI->getLoopFor(BB) == L) // Ignore blocks in subloops.
Dan Gohman90071072008-06-22 20:18:58 +0000259 CurAST->add(*BB); // Incorporate the specified basic block
260 }
Chris Lattner45d67d62003-02-24 03:52:32 +0000261
Nadav Rotem03dcd852012-09-04 10:25:04 +0000262 MayThrow = false;
263 // TODO: We've already searched for instructions which may throw in subloops.
264 // We may want to reuse this information.
265 for (Loop::block_iterator BB = L->block_begin(), BBE = L->block_end();
266 (BB != BBE) && !MayThrow ; ++BB)
267 for (BasicBlock::iterator I = (*BB)->begin(), E = (*BB)->end();
268 (I != E) && !MayThrow; ++I)
269 MayThrow |= I->mayThrow();
270
Chris Lattner6ec05f52002-05-10 22:44:58 +0000271 // We want to visit all of the instructions in this loop... that are not parts
272 // of our subloops (they have already had their invariants hoisted out of
273 // their loop, into this loop, so there is no need to process the BODIES of
274 // the subloops).
275 //
Chris Lattner64437692002-09-29 21:46:09 +0000276 // Traverse the body of the loop in depth first order on the dominator tree so
277 // that we are guaranteed to see definitions before we see uses. This allows
Nick Lewyckya0d49da2007-08-18 15:08:56 +0000278 // us to sink instructions in one pass, without iteration. After sinking
Chris Lattner547192d62003-12-19 07:22:45 +0000279 // instructions, we perform another pass to hoist them out of the loop.
Chris Lattner64437692002-09-29 21:46:09 +0000280 //
Dan Gohmana83ac2d2009-11-05 21:11:53 +0000281 if (L->hasDedicatedExits())
282 SinkRegion(DT->getNode(L->getHeader()));
283 if (Preheader)
284 HoistRegion(DT->getNode(L->getHeader()));
Chris Lattner6ec05f52002-05-10 22:44:58 +0000285
Chris Lattner45d67d62003-02-24 03:52:32 +0000286 // Now that all loop invariants have been removed from the loop, promote any
Chris Lattner1dc98b42010-08-29 06:43:52 +0000287 // memory references to scalars that we can.
Chandler Carruthcc497b62014-01-24 02:24:47 +0000288 if (!DisablePromotion && (Preheader || L->hasDedicatedExits())) {
Dan Gohmanb9487362012-08-08 00:00:26 +0000289 SmallVector<BasicBlock *, 8> ExitBlocks;
290 SmallVector<Instruction *, 8> InsertPts;
Chandler Carruthfc258542014-02-11 12:52:27 +0000291 PredIteratorCache PIC;
Dan Gohmanb9487362012-08-08 00:00:26 +0000292
Chris Lattner1dc98b42010-08-29 06:43:52 +0000293 // Loop over all of the alias sets in the tracker object.
294 for (AliasSetTracker::iterator I = CurAST->begin(), E = CurAST->end();
295 I != E; ++I)
Chandler Carruthfc258542014-02-11 12:52:27 +0000296 PromoteAliasSet(*I, ExitBlocks, InsertPts, PIC);
Chandler Carruth16651522014-02-01 13:35:14 +0000297
298 // Once we have promoted values across the loop body we have to recursively
299 // reform LCSSA as any nested loop may now have values defined within the
300 // loop used in the outer loop.
301 // FIXME: This is really heavy handed. It would be a bit better to use an
302 // SSAUpdater strategy during promotion that was LCSSA aware and reformed
303 // it as it went.
304 if (Changed)
305 formLCSSARecursively(*L, *DT, getAnalysisIfAvailable<ScalarEvolution>());
Chris Lattner1dc98b42010-08-29 06:43:52 +0000306 }
Tobias Grossera3928f52011-07-06 19:20:02 +0000307
Chandler Carruthfc258542014-02-11 12:52:27 +0000308 // Check that neither this loop nor its parent have had LCSSA broken. LICM is
309 // specifically moving instructions across the loop boundary and so it is
310 // especially in need of sanity checking here.
311 assert(L->isLCSSAForm(*DT) && "Loop not left in LCSSA form after LICM!");
312 assert((!L->getParentLoop() || L->getParentLoop()->isLCSSAForm(*DT)) &&
313 "Parent loop not left in LCSSA form after LICM!");
Chandler Carruth8765cf72014-01-25 04:07:24 +0000314
Chris Lattner6ec05f52002-05-10 22:44:58 +0000315 // Clear out loops state information for the next iteration
316 CurLoop = 0;
Chris Lattnerd57f3f52002-09-26 19:40:25 +0000317 Preheader = 0;
Devang Patel69730c92007-03-07 04:41:30 +0000318
Chris Lattnercc9cbc62010-08-29 17:46:00 +0000319 // If this loop is nested inside of another one, save the alias information
320 // for when we process the outer loop.
321 if (L->getParentLoop())
322 LoopToAliasSetMap[L] = CurAST;
323 else
324 delete CurAST;
Devang Patel69730c92007-03-07 04:41:30 +0000325 return Changed;
Chris Lattner6ec05f52002-05-10 22:44:58 +0000326}
327
Chris Lattner547192d62003-12-19 07:22:45 +0000328/// SinkRegion - Walk the specified region of the CFG (defined by all blocks
329/// dominated by the specified block, and that are in the current loop) in
Owen Andersonc24701e2007-04-24 06:40:39 +0000330/// reverse depth first order w.r.t the DominatorTree. This allows us to visit
Chris Lattner547192d62003-12-19 07:22:45 +0000331/// uses before definitions, allowing us to sink a loop body in one pass without
332/// iteration.
333///
Devang Patelbdd1aae2007-06-04 00:32:22 +0000334void LICM::SinkRegion(DomTreeNode *N) {
Owen Andersonc24701e2007-04-24 06:40:39 +0000335 assert(N != 0 && "Null dominator tree node?");
336 BasicBlock *BB = N->getBlock();
Chris Lattner547192d62003-12-19 07:22:45 +0000337
338 // If this subregion is not in the top level loop at all, exit.
339 if (!CurLoop->contains(BB)) return;
340
Chris Lattner263f8042010-08-29 18:22:25 +0000341 // We are processing blocks in reverse dfo, so process children first.
Devang Patelbdd1aae2007-06-04 00:32:22 +0000342 const std::vector<DomTreeNode*> &Children = N->getChildren();
Chris Lattner547192d62003-12-19 07:22:45 +0000343 for (unsigned i = 0, e = Children.size(); i != e; ++i)
344 SinkRegion(Children[i]);
345
346 // Only need to process the contents of this block if it is not part of a
347 // subloop (which would already have been processed).
348 if (inSubLoop(BB)) return;
349
Chris Lattner91846012003-12-19 08:18:16 +0000350 for (BasicBlock::iterator II = BB->end(); II != BB->begin(); ) {
351 Instruction &I = *--II;
Tobias Grossera3928f52011-07-06 19:20:02 +0000352
Chris Lattner263f8042010-08-29 18:22:25 +0000353 // If the instruction is dead, we would try to sink it because it isn't used
354 // in the loop, instead, just delete it.
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000355 if (isInstructionTriviallyDead(&I, TLI)) {
Chris Lattnerf58382e2010-08-29 18:42:23 +0000356 DEBUG(dbgs() << "LICM deleting dead inst: " << I << '\n');
Chris Lattner263f8042010-08-29 18:22:25 +0000357 ++II;
358 CurAST->deleteValue(&I);
359 I.eraseFromParent();
360 Changed = true;
361 continue;
362 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000363
Chris Lattner547192d62003-12-19 07:22:45 +0000364 // Check to see if we can sink this instruction to the exit blocks
365 // of the loop. We can do this if the all users of the instruction are
366 // outside of the loop. In this case, it doesn't even matter if the
367 // operands of the instruction are loop invariant.
368 //
Chris Lattnerfaf77912005-03-25 00:22:36 +0000369 if (isNotUsedInLoop(I) && canSinkOrHoistInst(I)) {
Chris Lattner91846012003-12-19 08:18:16 +0000370 ++II;
Chris Lattner547192d62003-12-19 07:22:45 +0000371 sink(I);
Chris Lattner91846012003-12-19 08:18:16 +0000372 }
Chris Lattner547192d62003-12-19 07:22:45 +0000373 }
374}
375
Chris Lattner64437692002-09-29 21:46:09 +0000376/// HoistRegion - Walk the specified region of the CFG (defined by all blocks
377/// dominated by the specified block, and that are in the current loop) in depth
Owen Andersonc24701e2007-04-24 06:40:39 +0000378/// first order w.r.t the DominatorTree. This allows us to visit definitions
Chris Lattner64437692002-09-29 21:46:09 +0000379/// before uses, allowing us to hoist a loop body in one pass without iteration.
380///
Devang Patelbdd1aae2007-06-04 00:32:22 +0000381void LICM::HoistRegion(DomTreeNode *N) {
Owen Andersonc24701e2007-04-24 06:40:39 +0000382 assert(N != 0 && "Null dominator tree node?");
383 BasicBlock *BB = N->getBlock();
Chris Lattner64437692002-09-29 21:46:09 +0000384
Chris Lattner05e86302002-09-29 22:26:07 +0000385 // If this subregion is not in the top level loop at all, exit.
Chris Lattner65c11932003-12-09 19:32:44 +0000386 if (!CurLoop->contains(BB)) return;
Chris Lattner64437692002-09-29 21:46:09 +0000387
Chris Lattneraaaea512003-12-10 06:41:05 +0000388 // Only need to process the contents of this block if it is not part of a
389 // subloop (which would already have been processed).
Chris Lattner65c11932003-12-09 19:32:44 +0000390 if (!inSubLoop(BB))
Chris Lattneraaaea512003-12-10 06:41:05 +0000391 for (BasicBlock::iterator II = BB->begin(), E = BB->end(); II != E; ) {
392 Instruction &I = *II++;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000393
Chris Lattner030f0202010-08-31 23:00:16 +0000394 // Try constant folding this instruction. If all the operands are
395 // constants, it is technically hoistable, but it would be better to just
396 // fold it.
Chad Rosier43a33062011-12-02 01:26:24 +0000397 if (Constant *C = ConstantFoldInstruction(&I, TD, TLI)) {
Chris Lattner030f0202010-08-31 23:00:16 +0000398 DEBUG(dbgs() << "LICM folding inst: " << I << " --> " << *C << '\n');
399 CurAST->copyValue(&I, C);
400 CurAST->deleteValue(&I);
401 I.replaceAllUsesWith(C);
402 I.eraseFromParent();
403 continue;
404 }
Tobias Grossera3928f52011-07-06 19:20:02 +0000405
Chris Lattner547192d62003-12-19 07:22:45 +0000406 // Try hoisting the instruction out to the preheader. We can only do this
407 // if all of the operands of the instruction are loop invariant and if it
408 // is safe to hoist the instruction.
409 //
Chris Lattnerda24b9a2010-09-06 01:05:37 +0000410 if (CurLoop->hasLoopInvariantOperands(&I) && canSinkOrHoistInst(I) &&
Chris Lattner547192d62003-12-19 07:22:45 +0000411 isSafeToExecuteUnconditionally(I))
Chris Lattner49771a02006-06-26 19:10:05 +0000412 hoist(I);
Chris Lattner030f0202010-08-31 23:00:16 +0000413 }
Chris Lattner64437692002-09-29 21:46:09 +0000414
Devang Patelbdd1aae2007-06-04 00:32:22 +0000415 const std::vector<DomTreeNode*> &Children = N->getChildren();
Chris Lattner64437692002-09-29 21:46:09 +0000416 for (unsigned i = 0, e = Children.size(); i != e; ++i)
Chris Lattner42ad6462004-06-19 20:23:35 +0000417 HoistRegion(Children[i]);
Chris Lattner64437692002-09-29 21:46:09 +0000418}
419
Chris Lattneraaaea512003-12-10 06:41:05 +0000420/// canSinkOrHoistInst - Return true if the hoister and sinker can handle this
421/// instruction.
422///
423bool LICM::canSinkOrHoistInst(Instruction &I) {
Chris Lattner65c11932003-12-09 19:32:44 +0000424 // Loads have extra constraints we have to verify before we can hoist them.
425 if (LoadInst *LI = dyn_cast<LoadInst>(&I)) {
Eli Friedman91386c72011-08-15 20:52:09 +0000426 if (!LI->isUnordered())
427 return false; // Don't hoist volatile/atomic loads!
Chris Lattner65c11932003-12-09 19:32:44 +0000428
Chris Lattner8a8fb902008-07-23 05:06:28 +0000429 // Loads from constant memory are always safe to move, even if they end up
430 // in the same alias set as something that ends up being modified.
Dan Gohmancbc6ebb2009-11-19 19:00:10 +0000431 if (AA->pointsToConstantMemory(LI->getOperand(0)))
Chris Lattner8a8fb902008-07-23 05:06:28 +0000432 return true;
Benjamin Kramerb3bd0192011-12-06 11:50:26 +0000433 if (LI->getMetadata("invariant.load"))
Pete Cooper9ee22092011-11-08 19:30:00 +0000434 return true;
Tobias Grossera3928f52011-07-06 19:20:02 +0000435
Chris Lattner65c11932003-12-09 19:32:44 +0000436 // Don't hoist loads which have may-aliased stores in loop.
Dan Gohmanf372cf82010-10-19 22:54:46 +0000437 uint64_t Size = 0;
Chris Lattnerb1374092004-11-26 21:20:09 +0000438 if (LI->getType()->isSized())
Dan Gohman43d19d62009-07-25 00:48:42 +0000439 Size = AA->getTypeStoreSize(LI->getType());
Dan Gohman71af9db2010-10-18 20:44:50 +0000440 return !pointerInvalidatedByLoop(LI->getOperand(0), Size,
441 LI->getMetadata(LLVMContext::MD_tbaa));
Chris Lattner20cda262004-03-15 04:11:30 +0000442 } else if (CallInst *CI = dyn_cast<CallInst>(&I)) {
Eli Friedman942e1c12011-05-27 18:37:52 +0000443 // Don't sink or hoist dbg info; it's legal, but not useful.
444 if (isa<DbgInfoIntrinsic>(I))
445 return false;
446
447 // Handle simple cases by querying alias analysis.
Duncan Sands68b6f502007-12-01 07:51:45 +0000448 AliasAnalysis::ModRefBehavior Behavior = AA->getModRefBehavior(CI);
449 if (Behavior == AliasAnalysis::DoesNotAccessMemory)
450 return true;
Dan Gohman0f175072010-11-09 19:58:21 +0000451 if (AliasAnalysis::onlyReadsMemory(Behavior)) {
Duncan Sands68b6f502007-12-01 07:51:45 +0000452 // If this call only reads from memory and there are no writes to memory
453 // in the loop, we can hoist or sink the call as appropriate.
454 bool FoundMod = false;
455 for (AliasSetTracker::iterator I = CurAST->begin(), E = CurAST->end();
456 I != E; ++I) {
457 AliasSet &AS = *I;
458 if (!AS.isForwardingAliasSet() && AS.isMod()) {
459 FoundMod = true;
460 break;
Chris Lattner20cda262004-03-15 04:11:30 +0000461 }
Chris Lattner20cda262004-03-15 04:11:30 +0000462 }
Duncan Sands68b6f502007-12-01 07:51:45 +0000463 if (!FoundMod) return true;
Chris Lattner20cda262004-03-15 04:11:30 +0000464 }
465
Nadav Rotem03dcd852012-09-04 10:25:04 +0000466 // FIXME: This should use mod/ref information to see if we can hoist or
467 // sink the call.
Misha Brukmanb1c93172005-04-21 23:48:37 +0000468
Chris Lattner20cda262004-03-15 04:11:30 +0000469 return false;
Chris Lattner65c11932003-12-09 19:32:44 +0000470 }
471
Nadav Rotem03dcd852012-09-04 10:25:04 +0000472 // Only these instructions are hoistable/sinkable.
Benjamin Kramer130fcde2013-01-09 18:12:03 +0000473 if (!isa<BinaryOperator>(I) && !isa<CastInst>(I) && !isa<SelectInst>(I) &&
474 !isa<GetElementPtrInst>(I) && !isa<CmpInst>(I) &&
475 !isa<InsertElementInst>(I) && !isa<ExtractElementInst>(I) &&
476 !isa<ShuffleVectorInst>(I) && !isa<ExtractValueInst>(I) &&
477 !isa<InsertValueInst>(I))
478 return false;
Nadav Rotem03dcd852012-09-04 10:25:04 +0000479
480 return isSafeToExecuteUnconditionally(I);
Chris Lattneraaaea512003-12-10 06:41:05 +0000481}
482
Chandler Carruth8765cf72014-01-25 04:07:24 +0000483/// \brief Returns true if a PHINode is a trivially replaceable with an
484/// Instruction.
485///
486/// This is true when all incoming values are that instruction. This pattern
487/// occurs most often with LCSSA PHI nodes.
488static bool isTriviallyReplacablePHI(PHINode &PN, Instruction &I) {
489 for (unsigned i = 0, e = PN.getNumIncomingValues(); i != e; ++i)
490 if (PN.getIncomingValue(i) != &I)
491 return false;
492
493 return true;
494}
495
Chris Lattneraaaea512003-12-10 06:41:05 +0000496/// isNotUsedInLoop - Return true if the only users of this instruction are
497/// outside of the loop. If this is true, we can sink the instruction to the
498/// exit blocks of the loop.
499///
500bool LICM::isNotUsedInLoop(Instruction &I) {
Chris Lattner34399dd2003-12-11 22:23:32 +0000501 for (Value::use_iterator UI = I.use_begin(), E = I.use_end(); UI != E; ++UI) {
502 Instruction *User = cast<Instruction>(*UI);
503 if (PHINode *PN = dyn_cast<PHINode>(User)) {
Chandler Carruth8765cf72014-01-25 04:07:24 +0000504 // A PHI node where all of the incoming values are this instruction are
505 // special -- they can just be RAUW'ed with the instruction and thus
506 // don't require a use in the predecessor. This is a particular important
507 // special case because it is the pattern found in LCSSA form.
508 if (isTriviallyReplacablePHI(*PN, I)) {
509 if (CurLoop->contains(PN))
510 return false;
511 else
512 continue;
513 }
514
515 // Otherwise, PHI node uses occur in predecessor blocks if the incoming
516 // values. Check for such a use being inside the loop.
Chris Lattner34399dd2003-12-11 22:23:32 +0000517 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
518 if (PN->getIncomingValue(i) == &I)
519 if (CurLoop->contains(PN->getIncomingBlock(i)))
520 return false;
Chandler Carruth8765cf72014-01-25 04:07:24 +0000521
522 continue;
Chris Lattner34399dd2003-12-11 22:23:32 +0000523 }
Chandler Carruth8765cf72014-01-25 04:07:24 +0000524
525 if (CurLoop->contains(User))
526 return false;
Chris Lattner34399dd2003-12-11 22:23:32 +0000527 }
Chris Lattneraaaea512003-12-10 06:41:05 +0000528 return true;
529}
530
Chris Lattneraaaea512003-12-10 06:41:05 +0000531/// sink - When an instruction is found to only be used outside of the loop,
Chris Lattner91846012003-12-19 08:18:16 +0000532/// this function moves it to the exit blocks and patches up SSA form as needed.
533/// This method is guaranteed to remove the original instruction from its
534/// position, and may either delete it or move it to outside of the loop.
Chris Lattneraaaea512003-12-10 06:41:05 +0000535///
536void LICM::sink(Instruction &I) {
Nick Lewycky299c6df2010-07-30 20:27:01 +0000537 DEBUG(dbgs() << "LICM sinking instruction: " << I << "\n");
Chris Lattneraaaea512003-12-10 06:41:05 +0000538
Chris Lattner55c21132003-12-10 20:43:29 +0000539 if (isa<LoadInst>(I)) ++NumMovedLoads;
Chris Lattner20cda262004-03-15 04:11:30 +0000540 else if (isa<CallInst>(I)) ++NumMovedCalls;
Chris Lattner55c21132003-12-10 20:43:29 +0000541 ++NumSunk;
542 Changed = true;
543
Chandler Carruthfc258542014-02-11 12:52:27 +0000544#ifndef NDEBUG
545 SmallVector<BasicBlock *, 32> ExitBlocks;
546 CurLoop->getUniqueExitBlocks(ExitBlocks);
547 SmallPtrSet<BasicBlock *, 32> ExitBlockSet(ExitBlocks.begin(), ExitBlocks.end());
548#endif
Chandler Carruth8765cf72014-01-25 04:07:24 +0000549
Chandler Carruthfc258542014-02-11 12:52:27 +0000550 // If this instruction is only used outside of the loop, then all users are
551 // PHI nodes in exit blocks due to LCSSA form. Just RAUW them with clones of
552 // the instruction.
553 while (!I.use_empty()) {
554 // The user must be a PHI node.
555 PHINode *PN = cast<PHINode>(I.use_back());
Chris Lattnercc9cbc62010-08-29 17:46:00 +0000556
Chandler Carruthfc258542014-02-11 12:52:27 +0000557 BasicBlock *ExitBlock = PN->getParent();
558 assert(ExitBlockSet.count(ExitBlock) &&
559 "The LCSSA PHI is not in an exit block!");
560
561 Instruction *New = I.clone();
562 ExitBlock->getInstList().insert(ExitBlock->getFirstInsertionPt(), New);
563 if (!I.getName().empty())
564 New->setName(I.getName() + ".le");
565
566 // Build LCSSA PHI nodes for any in-loop operands. Note that this is
567 // particularly cheap because we can rip off the PHI node that we're
568 // replacing for the number and blocks of the predecessors.
569 // OPT: If this shows up in a profile, we can instead finish sinking all
570 // invariant instructions, and then walk their operands to re-establish
571 // LCSSA. That will eliminate creating PHI nodes just to nuke them when
572 // sinking bottom-up.
573 for (User::op_iterator OI = New->op_begin(), OE = New->op_end(); OI != OE;
574 ++OI)
575 if (Instruction *OInst = dyn_cast<Instruction>(*OI))
576 if (Loop *OLoop = LI->getLoopFor(OInst->getParent()))
577 if (!OLoop->contains(PN)) {
578 PHINode *OpPN = PHINode::Create(
579 OInst->getType(), PN->getNumIncomingValues(),
580 OInst->getName() + ".lcssa", ExitBlock->begin());
581 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
582 OpPN->addIncoming(OInst, PN->getIncomingBlock(i));
583 *OI = OpPN;
584 }
585
586 PN->replaceAllUsesWith(New);
587 PN->eraseFromParent();
Chris Lattnercd96b4d2010-08-29 04:28:20 +0000588 }
Tobias Grossera3928f52011-07-06 19:20:02 +0000589
Chris Lattner1a1ed692010-08-29 18:00:00 +0000590 CurAST->deleteValue(&I);
Chandler Carruthfc258542014-02-11 12:52:27 +0000591 I.eraseFromParent();
Chris Lattneraaaea512003-12-10 06:41:05 +0000592}
Chris Lattner64437692002-09-29 21:46:09 +0000593
Chris Lattnerf64f2d32002-09-26 16:52:07 +0000594/// hoist - When an instruction is found to only use loop invariant operands
595/// that is safe to hoist, this instruction is called to do the dirty work.
596///
Chris Lattneraaaea512003-12-10 06:41:05 +0000597void LICM::hoist(Instruction &I) {
David Greene0fd86222010-01-05 01:27:30 +0000598 DEBUG(dbgs() << "LICM hoisting to " << Preheader->getName() << ": "
Evan Chengf8158612009-10-12 22:25:23 +0000599 << I << "\n");
Chris Lattner65c11932003-12-09 19:32:44 +0000600
Chris Lattner6ac06592010-08-29 18:18:40 +0000601 // Move the new node to the Preheader, before its terminator.
602 I.moveBefore(Preheader->getTerminator());
Misha Brukmanb1c93172005-04-21 23:48:37 +0000603
Chris Lattneraaaea512003-12-10 06:41:05 +0000604 if (isa<LoadInst>(I)) ++NumMovedLoads;
Chris Lattner20cda262004-03-15 04:11:30 +0000605 else if (isa<CallInst>(I)) ++NumMovedCalls;
Chris Lattner718b2212002-09-26 16:38:03 +0000606 ++NumHoisted;
Chris Lattner6ec05f52002-05-10 22:44:58 +0000607 Changed = true;
608}
609
Chris Lattneraaaea512003-12-10 06:41:05 +0000610/// isSafeToExecuteUnconditionally - Only sink or hoist an instruction if it is
611/// not a trapping instruction or if it is a trapping instruction and is
612/// guaranteed to execute.
Tanya Lattner57c03df2003-08-05 18:45:46 +0000613///
Chris Lattneraaaea512003-12-10 06:41:05 +0000614bool LICM::isSafeToExecuteUnconditionally(Instruction &Inst) {
Chris Lattnerc0517682003-12-09 17:18:00 +0000615 // If it is not a trapping instruction, it is always safe to hoist.
Dan Gohman75d7d5e2011-12-14 23:49:11 +0000616 if (isSafeToSpeculativelyExecute(&Inst))
Eli Friedmanb8f6a4f2009-07-17 04:28:42 +0000617 return true;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000618
Eli Friedman0cdc1482011-07-20 21:37:47 +0000619 return isGuaranteedToExecute(Inst);
620}
621
622bool LICM::isGuaranteedToExecute(Instruction &Inst) {
Nadav Rotem03dcd852012-09-04 10:25:04 +0000623
624 // Somewhere in this loop there is an instruction which may throw and make us
625 // exit the loop.
626 if (MayThrow)
627 return false;
628
Chris Lattnerc0517682003-12-09 17:18:00 +0000629 // Otherwise we have to check to make sure that the instruction dominates all
630 // of the exit blocks. If it doesn't, then there is a path out of the loop
631 // which does not execute this instruction, so we can't hoist it.
Tanya Lattner57c03df2003-08-05 18:45:46 +0000632
Chris Lattnerc0517682003-12-09 17:18:00 +0000633 // If the instruction is in the header block for the loop (which is very
634 // common), it is always guaranteed to dominate the exit blocks. Since this
635 // is a common case, and can save some work, check it now.
Chris Lattneraaaea512003-12-10 06:41:05 +0000636 if (Inst.getParent() == CurLoop->getHeader())
Chris Lattnerc0517682003-12-09 17:18:00 +0000637 return true;
Tanya Lattner57c03df2003-08-05 18:45:46 +0000638
Chris Lattnerc0517682003-12-09 17:18:00 +0000639 // Get the exit blocks for the current loop.
Devang Patelb5933bb2007-08-21 00:31:24 +0000640 SmallVector<BasicBlock*, 8> ExitBlocks;
Chris Lattner35eaa552004-04-18 22:15:13 +0000641 CurLoop->getExitBlocks(ExitBlocks);
Chris Lattnerc0517682003-12-09 17:18:00 +0000642
Chris Lattner27497ec2011-01-02 18:45:39 +0000643 // Verify that the block dominates each of the exit blocks of the loop.
Chris Lattneraaaea512003-12-10 06:41:05 +0000644 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i)
Chris Lattner27497ec2011-01-02 18:45:39 +0000645 if (!DT->dominates(Inst.getParent(), ExitBlocks[i]))
Chris Lattneraaaea512003-12-10 06:41:05 +0000646 return false;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000647
Nick Lewycky78ee67e2012-05-01 04:03:01 +0000648 // As a degenerate case, if the loop is statically infinite then we haven't
649 // proven anything since there are no exit blocks.
650 if (ExitBlocks.empty())
651 return false;
652
Tanya Lattner57c03df2003-08-05 18:45:46 +0000653 return true;
654}
655
Chris Lattnerb68ec5c2011-01-15 00:12:35 +0000656namespace {
657 class LoopPromoter : public LoadAndStorePromoter {
658 Value *SomePtr; // Designated pointer to store to.
659 SmallPtrSet<Value*, 4> &PointerMustAliases;
660 SmallVectorImpl<BasicBlock*> &LoopExitBlocks;
Dan Gohmanb9487362012-08-08 00:00:26 +0000661 SmallVectorImpl<Instruction*> &LoopInsertPts;
Chandler Carruthfc258542014-02-11 12:52:27 +0000662 PredIteratorCache &PredCache;
Chris Lattnerb68ec5c2011-01-15 00:12:35 +0000663 AliasSetTracker &AST;
Chandler Carruthfc258542014-02-11 12:52:27 +0000664 LoopInfo &LI;
Eli Friedmanddf7f552011-05-27 20:31:51 +0000665 DebugLoc DL;
Tobias Grosser4a5d9a92011-07-06 19:19:55 +0000666 int Alignment;
Chris Lattnerf5cca682012-12-31 08:37:17 +0000667 MDNode *TBAATag;
Chandler Carruthfc258542014-02-11 12:52:27 +0000668
669 Value *maybeInsertLCSSAPHI(Value *V, BasicBlock *BB) const {
670 if (Instruction *I = dyn_cast<Instruction>(V))
671 if (Loop *L = LI.getLoopFor(I->getParent()))
672 if (!L->contains(BB)) {
673 // We need to create an LCSSA PHI node for the incoming value and
674 // store that.
675 PHINode *PN = PHINode::Create(
676 I->getType(), PredCache.GetNumPreds(BB),
677 I->getName() + ".lcssa", BB->begin());
678 for (BasicBlock **PI = PredCache.GetPreds(BB); *PI; ++PI)
679 PN->addIncoming(I, *PI);
680 return PN;
681 }
682 return V;
683 }
684
Chris Lattnerb68ec5c2011-01-15 00:12:35 +0000685 public:
Chandler Carruthfc258542014-02-11 12:52:27 +0000686 LoopPromoter(Value *SP, const SmallVectorImpl<Instruction *> &Insts,
687 SSAUpdater &S, SmallPtrSet<Value *, 4> &PMA,
688 SmallVectorImpl<BasicBlock *> &LEB,
689 SmallVectorImpl<Instruction *> &LIP, PredIteratorCache &PIC,
690 AliasSetTracker &ast, LoopInfo &li, DebugLoc dl, int alignment,
Chris Lattnerf5cca682012-12-31 08:37:17 +0000691 MDNode *TBAATag)
Chandler Carruthfc258542014-02-11 12:52:27 +0000692 : LoadAndStorePromoter(Insts, S), SomePtr(SP), PointerMustAliases(PMA),
693 LoopExitBlocks(LEB), LoopInsertPts(LIP), PredCache(PIC), AST(ast),
694 LI(li), DL(dl), Alignment(alignment), TBAATag(TBAATag) {}
Tobias Grossera3928f52011-07-06 19:20:02 +0000695
Chris Lattnerb68ec5c2011-01-15 00:12:35 +0000696 virtual bool isInstInList(Instruction *I,
697 const SmallVectorImpl<Instruction*> &) const {
698 Value *Ptr;
699 if (LoadInst *LI = dyn_cast<LoadInst>(I))
700 Ptr = LI->getOperand(0);
701 else
702 Ptr = cast<StoreInst>(I)->getPointerOperand();
703 return PointerMustAliases.count(Ptr);
704 }
Tobias Grossera3928f52011-07-06 19:20:02 +0000705
Chris Lattnerb68ec5c2011-01-15 00:12:35 +0000706 virtual void doExtraRewritesBeforeFinalDeletion() const {
707 // Insert stores after in the loop exit blocks. Each exit block gets a
708 // store of the live-out values that feed them. Since we've already told
709 // the SSA updater about the defs in the loop and the preheader
710 // definition, it is all set and we can start using it.
711 for (unsigned i = 0, e = LoopExitBlocks.size(); i != e; ++i) {
712 BasicBlock *ExitBlock = LoopExitBlocks[i];
713 Value *LiveInValue = SSA.GetValueInMiddleOfBlock(ExitBlock);
Chandler Carruthfc258542014-02-11 12:52:27 +0000714 LiveInValue = maybeInsertLCSSAPHI(LiveInValue, ExitBlock);
715 Value *Ptr = maybeInsertLCSSAPHI(SomePtr, ExitBlock);
Dan Gohmanb9487362012-08-08 00:00:26 +0000716 Instruction *InsertPos = LoopInsertPts[i];
Chandler Carruthfc258542014-02-11 12:52:27 +0000717 StoreInst *NewSI = new StoreInst(LiveInValue, Ptr, InsertPos);
Tobias Grosser4a5d9a92011-07-06 19:19:55 +0000718 NewSI->setAlignment(Alignment);
Eli Friedmanddf7f552011-05-27 20:31:51 +0000719 NewSI->setDebugLoc(DL);
Chris Lattnerf5cca682012-12-31 08:37:17 +0000720 if (TBAATag) NewSI->setMetadata(LLVMContext::MD_tbaa, TBAATag);
Chris Lattnerb68ec5c2011-01-15 00:12:35 +0000721 }
722 }
723
724 virtual void replaceLoadWithValue(LoadInst *LI, Value *V) const {
725 // Update alias analysis.
726 AST.copyValue(LI, V);
727 }
728 virtual void instructionDeleted(Instruction *I) const {
729 AST.deleteValue(I);
730 }
731 };
732} // end anon namespace
733
Chris Lattner1dc98b42010-08-29 06:43:52 +0000734/// PromoteAliasSet - Try to promote memory values to scalars by sinking
Chris Lattner45d67d62003-02-24 03:52:32 +0000735/// stores out of the loop and moving loads to before the loop. We do this by
736/// looping over the stores in the loop, looking for stores to Must pointers
Chris Lattner1dc98b42010-08-29 06:43:52 +0000737/// which are loop invariant.
Chris Lattner45d67d62003-02-24 03:52:32 +0000738///
Dan Gohmanb9487362012-08-08 00:00:26 +0000739void LICM::PromoteAliasSet(AliasSet &AS,
740 SmallVectorImpl<BasicBlock*> &ExitBlocks,
Chandler Carruthfc258542014-02-11 12:52:27 +0000741 SmallVectorImpl<Instruction*> &InsertPts,
742 PredIteratorCache &PIC) {
Chris Lattner1dc98b42010-08-29 06:43:52 +0000743 // We can promote this alias set if it has a store, if it is a "Must" alias
744 // set, if the pointer is loop invariant, and if we are not eliminating any
745 // volatile loads or stores.
746 if (AS.isForwardingAliasSet() || !AS.isMod() || !AS.isMustAlias() ||
747 AS.isVolatile() || !CurLoop->isLoopInvariant(AS.begin()->getValue()))
748 return;
Tobias Grossera3928f52011-07-06 19:20:02 +0000749
Chris Lattner1dc98b42010-08-29 06:43:52 +0000750 assert(!AS.empty() &&
751 "Must alias set should have at least one pointer element in it!");
752 Value *SomePtr = AS.begin()->getValue();
Chris Lattner45d67d62003-02-24 03:52:32 +0000753
Chris Lattner1dc98b42010-08-29 06:43:52 +0000754 // It isn't safe to promote a load/store from the loop if the load/store is
755 // conditional. For example, turning:
Chris Lattner45d67d62003-02-24 03:52:32 +0000756 //
Chris Lattner1dc98b42010-08-29 06:43:52 +0000757 // for () { if (c) *P += 1; }
Chris Lattner45d67d62003-02-24 03:52:32 +0000758 //
Chris Lattner1dc98b42010-08-29 06:43:52 +0000759 // into:
760 //
761 // tmp = *P; for () { if (c) tmp +=1; } *P = tmp;
762 //
763 // is not safe, because *P may only be valid to access if 'c' is true.
Tobias Grossera3928f52011-07-06 19:20:02 +0000764 //
Chris Lattner1dc98b42010-08-29 06:43:52 +0000765 // It is safe to promote P if all uses are direct load/stores and if at
766 // least one is guaranteed to be executed.
767 bool GuaranteedToExecute = false;
Tobias Grosser4a5d9a92011-07-06 19:19:55 +0000768
Chris Lattner1dc98b42010-08-29 06:43:52 +0000769 SmallVector<Instruction*, 64> LoopUses;
770 SmallPtrSet<Value*, 4> PointerMustAliases;
Chris Lattner45d67d62003-02-24 03:52:32 +0000771
Tobias Grosser4a5d9a92011-07-06 19:19:55 +0000772 // We start with an alignment of one and try to find instructions that allow
773 // us to prove better alignment.
774 unsigned Alignment = 1;
Chris Lattnerf5cca682012-12-31 08:37:17 +0000775 MDNode *TBAATag = 0;
Tobias Grosser4a5d9a92011-07-06 19:19:55 +0000776
Chris Lattner1dc98b42010-08-29 06:43:52 +0000777 // Check that all of the pointers in the alias set have the same type. We
778 // cannot (yet) promote a memory location that is loaded and stored in
Chris Lattnerf5cca682012-12-31 08:37:17 +0000779 // different sizes. While we are at it, collect alignment and TBAA info.
Chris Lattner1dc98b42010-08-29 06:43:52 +0000780 for (AliasSet::iterator ASI = AS.begin(), E = AS.end(); ASI != E; ++ASI) {
781 Value *ASIV = ASI->getValue();
782 PointerMustAliases.insert(ASIV);
Tobias Grossera3928f52011-07-06 19:20:02 +0000783
Chris Lattnerf12c08d2008-05-22 00:53:38 +0000784 // Check that all of the pointers in the alias set have the same type. We
785 // cannot (yet) promote a memory location that is loaded and stored in
786 // different sizes.
Chris Lattner1dc98b42010-08-29 06:43:52 +0000787 if (SomePtr->getType() != ASIV->getType())
788 return;
Tobias Grossera3928f52011-07-06 19:20:02 +0000789
Chris Lattner1dc98b42010-08-29 06:43:52 +0000790 for (Value::use_iterator UI = ASIV->use_begin(), UE = ASIV->use_end();
Chris Lattnerc5ec1e12008-05-22 03:22:42 +0000791 UI != UE; ++UI) {
Chris Lattner1dc98b42010-08-29 06:43:52 +0000792 // Ignore instructions that are outside the loop.
Chris Lattnerf12c08d2008-05-22 00:53:38 +0000793 Instruction *Use = dyn_cast<Instruction>(*UI);
Dan Gohman18fa5682009-12-18 01:24:09 +0000794 if (!Use || !CurLoop->contains(Use))
Chris Lattnerf12c08d2008-05-22 00:53:38 +0000795 continue;
Tobias Grossera3928f52011-07-06 19:20:02 +0000796
Chris Lattner1dc98b42010-08-29 06:43:52 +0000797 // If there is an non-load/store instruction in the loop, we can't promote
798 // it.
Eli Friedman91386c72011-08-15 20:52:09 +0000799 if (LoadInst *load = dyn_cast<LoadInst>(Use)) {
800 assert(!load->isVolatile() && "AST broken");
801 if (!load->isSimple())
802 return;
Tobias Grosser4a5d9a92011-07-06 19:19:55 +0000803 } else if (StoreInst *store = dyn_cast<StoreInst>(Use)) {
Chris Lattner408a6842010-12-19 05:57:25 +0000804 // Stores *of* the pointer are not interesting, only stores *to* the
805 // pointer.
806 if (Use->getOperand(1) != ASIV)
807 continue;
Eli Friedman91386c72011-08-15 20:52:09 +0000808 assert(!store->isVolatile() && "AST broken");
809 if (!store->isSimple())
810 return;
Eli Friedman0cdc1482011-07-20 21:37:47 +0000811
812 // Note that we only check GuaranteedToExecute inside the store case
813 // so that we do not introduce stores where they did not exist before
814 // (which would break the LLVM concurrency model).
815
816 // If the alignment of this instruction allows us to specify a more
817 // restrictive (and performant) alignment and if we are sure this
818 // instruction will be executed, update the alignment.
819 // Larger is better, with the exception of 0 being the best alignment.
Eli Friedman91386c72011-08-15 20:52:09 +0000820 unsigned InstAlignment = store->getAlignment();
Chris Lattnerf5cca682012-12-31 08:37:17 +0000821 if ((InstAlignment > Alignment || InstAlignment == 0) && Alignment != 0)
Eli Friedman0cdc1482011-07-20 21:37:47 +0000822 if (isGuaranteedToExecute(*Use)) {
823 GuaranteedToExecute = true;
824 Alignment = InstAlignment;
825 }
826
827 if (!GuaranteedToExecute)
828 GuaranteedToExecute = isGuaranteedToExecute(*Use);
829
Chris Lattnerbe901902010-09-06 05:11:24 +0000830 } else
Chris Lattner1dc98b42010-08-29 06:43:52 +0000831 return; // Not a load or store.
Tobias Grosser4a5d9a92011-07-06 19:19:55 +0000832
Chris Lattnerf5cca682012-12-31 08:37:17 +0000833 // Merge the TBAA tags.
834 if (LoopUses.empty()) {
835 // On the first load/store, just take its TBAA tag.
836 TBAATag = Use->getMetadata(LLVMContext::MD_tbaa);
Chris Lattner473988c2013-01-05 16:44:07 +0000837 } else if (TBAATag) {
838 TBAATag = MDNode::getMostGenericTBAA(TBAATag,
839 Use->getMetadata(LLVMContext::MD_tbaa));
Chris Lattnerf5cca682012-12-31 08:37:17 +0000840 }
Chris Lattner473988c2013-01-05 16:44:07 +0000841
Chris Lattner1dc98b42010-08-29 06:43:52 +0000842 LoopUses.push_back(Use);
843 }
844 }
Tobias Grosser4a5d9a92011-07-06 19:19:55 +0000845
Chris Lattner1dc98b42010-08-29 06:43:52 +0000846 // If there isn't a guaranteed-to-execute instruction, we can't promote.
847 if (!GuaranteedToExecute)
848 return;
Tobias Grossera3928f52011-07-06 19:20:02 +0000849
Chris Lattner1dc98b42010-08-29 06:43:52 +0000850 // Otherwise, this is safe to promote, lets do it!
Tobias Grossera3928f52011-07-06 19:20:02 +0000851 DEBUG(dbgs() << "LICM: Promoting value stored to in loop: " <<*SomePtr<<'\n');
Chris Lattner1dc98b42010-08-29 06:43:52 +0000852 Changed = true;
853 ++NumPromoted;
854
Eli Friedmanddf7f552011-05-27 20:31:51 +0000855 // Grab a debug location for the inserted loads/stores; given that the
856 // inserted loads/stores have little relation to the original loads/stores,
857 // this code just arbitrarily picks a location from one, since any debug
858 // location is better than none.
859 DebugLoc DL = LoopUses[0]->getDebugLoc();
860
Dan Gohmanb9487362012-08-08 00:00:26 +0000861 // Figure out the loop exits and their insertion points, if this is the
862 // first promotion.
863 if (ExitBlocks.empty()) {
864 CurLoop->getUniqueExitBlocks(ExitBlocks);
865 InsertPts.resize(ExitBlocks.size());
866 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i)
867 InsertPts[i] = ExitBlocks[i]->getFirstInsertionPt();
868 }
Tobias Grossera3928f52011-07-06 19:20:02 +0000869
Chris Lattner1dc98b42010-08-29 06:43:52 +0000870 // We use the SSAUpdater interface to insert phi nodes as required.
871 SmallVector<PHINode*, 16> NewPHIs;
872 SSAUpdater SSA(&NewPHIs);
Chris Lattnerb68ec5c2011-01-15 00:12:35 +0000873 LoopPromoter Promoter(SomePtr, LoopUses, SSA, PointerMustAliases, ExitBlocks,
Chandler Carruthfc258542014-02-11 12:52:27 +0000874 InsertPts, PIC, *CurAST, *LI, DL, Alignment, TBAATag);
Tobias Grossera3928f52011-07-06 19:20:02 +0000875
Chris Lattnerb68ec5c2011-01-15 00:12:35 +0000876 // Set up the preheader to have a definition of the value. It is the live-out
877 // value from the preheader that uses in the loop will use.
878 LoadInst *PreheaderLoad =
879 new LoadInst(SomePtr, SomePtr->getName()+".promoted",
880 Preheader->getTerminator());
Tobias Grosser4a5d9a92011-07-06 19:19:55 +0000881 PreheaderLoad->setAlignment(Alignment);
Eli Friedmanddf7f552011-05-27 20:31:51 +0000882 PreheaderLoad->setDebugLoc(DL);
Chris Lattnerf5cca682012-12-31 08:37:17 +0000883 if (TBAATag) PreheaderLoad->setMetadata(LLVMContext::MD_tbaa, TBAATag);
Chris Lattner1dc98b42010-08-29 06:43:52 +0000884 SSA.AddAvailableValue(Preheader, PreheaderLoad);
885
Chris Lattnerb68ec5c2011-01-15 00:12:35 +0000886 // Rewrite all the loads in the loop and remember all the definitions from
887 // stores in the loop.
888 Promoter.run(LoopUses);
Eli Friedmanc5f22a72011-04-07 01:35:06 +0000889
890 // If the SSAUpdater didn't use the load in the preheader, just zap it now.
891 if (PreheaderLoad->use_empty())
892 PreheaderLoad->eraseFromParent();
Chris Lattnera51fa882002-08-22 21:39:55 +0000893}
Devang Patelb98a0972007-07-31 08:01:41 +0000894
Chris Lattner1dc98b42010-08-29 06:43:52 +0000895
Devang Patelb98a0972007-07-31 08:01:41 +0000896/// cloneBasicBlockAnalysis - Simple Analysis hook. Clone alias set info.
897void LICM::cloneBasicBlockAnalysis(BasicBlock *From, BasicBlock *To, Loop *L) {
Chris Lattnercc9cbc62010-08-29 17:46:00 +0000898 AliasSetTracker *AST = LoopToAliasSetMap.lookup(L);
Devang Patelb98a0972007-07-31 08:01:41 +0000899 if (!AST)
900 return;
901
902 AST->copyValue(From, To);
903}
904
905/// deleteAnalysisValue - Simple Analysis hook. Delete value V from alias
906/// set.
907void LICM::deleteAnalysisValue(Value *V, Loop *L) {
Chris Lattnercc9cbc62010-08-29 17:46:00 +0000908 AliasSetTracker *AST = LoopToAliasSetMap.lookup(L);
Devang Patelb98a0972007-07-31 08:01:41 +0000909 if (!AST)
910 return;
911
912 AST->deleteValue(V);
913}