blob: f94cd2a073efb70895510076168db6ef91e6b0a6 [file] [log] [blame]
Chris Lattnere0e734e2002-05-10 22:44:58 +00001//===-- LICM.cpp - Loop Invariant Code Motion Pass ------------------------===//
Misha Brukmanfd939082005-04-21 23:48:37 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-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 Brukmanfd939082005-04-21 23:48:37 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattnere0e734e2002-05-10 22:44:58 +00009//
Chris Lattner92094b42003-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 Lattnere4365b22003-12-19 07:22:45 +000014// live in registers, thus hoisting and sinking "invariant" loads and stores.
Chris Lattner92094b42003-12-09 17:18:00 +000015//
16// This pass uses alias analysis for two purposes:
Chris Lattner2e6e7412003-02-24 03:52:32 +000017//
Chris Lattner2741c972004-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 Lattner2e6e7412003-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 Lattnere4880642010-08-29 06:43:52 +000029// the SSAUpdater to construct the appropriate SSA form for the value.
Chris Lattnere0e734e2002-05-10 22:44:58 +000030//
Chris Lattnere0e734e2002-05-10 22:44:58 +000031//===----------------------------------------------------------------------===//
32
Chris Lattner1f309c12005-03-23 21:00:12 +000033#define DEBUG_TYPE "licm"
Chris Lattnere0e734e2002-05-10 22:44:58 +000034#include "llvm/Transforms/Scalar.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000035#include "llvm/ADT/Statistic.h"
Chris Lattnerf5e84aa2002-08-22 21:39:55 +000036#include "llvm/Analysis/AliasAnalysis.h"
Chris Lattner0252e492003-03-03 23:32:45 +000037#include "llvm/Analysis/AliasSetTracker.h"
Chris Lattner2ac6e232010-08-31 23:00:16 +000038#include "llvm/Analysis/ConstantFolding.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000039#include "llvm/Analysis/Dominators.h"
Chris Lattner2ac6e232010-08-31 23:00:16 +000040#include "llvm/Analysis/LoopInfo.h"
41#include "llvm/Analysis/LoopPass.h"
Dan Gohmanf0426602011-12-14 23:49:11 +000042#include "llvm/Analysis/ValueTracking.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000043#include "llvm/IR/Constants.h"
44#include "llvm/IR/DataLayout.h"
45#include "llvm/IR/DerivedTypes.h"
46#include "llvm/IR/Instructions.h"
47#include "llvm/IR/IntrinsicInst.h"
48#include "llvm/IR/LLVMContext.h"
Chris Lattner26130422013-01-05 16:44:07 +000049#include "llvm/IR/Metadata.h"
Reid Spencer9133fe22007-02-05 23:32:05 +000050#include "llvm/Support/CFG.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000051#include "llvm/Support/CommandLine.h"
52#include "llvm/Support/Debug.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000053#include "llvm/Support/raw_ostream.h"
54#include "llvm/Target/TargetLibraryInfo.h"
55#include "llvm/Transforms/Utils/Local.h"
56#include "llvm/Transforms/Utils/SSAUpdater.h"
Chris Lattnere0e734e2002-05-10 22:44:58 +000057#include <algorithm>
Chris Lattner92094b42003-12-09 17:18:00 +000058using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000059
Chris Lattner0e5f4992006-12-19 21:40:18 +000060STATISTIC(NumSunk , "Number of instructions sunk out of loop");
61STATISTIC(NumHoisted , "Number of instructions hoisted out of loop");
62STATISTIC(NumMovedLoads, "Number of load insts hoisted or sunk");
63STATISTIC(NumMovedCalls, "Number of call insts hoisted or sunk");
64STATISTIC(NumPromoted , "Number of memory locations promoted to registers");
65
Dan Gohman844731a2008-05-13 00:00:25 +000066static cl::opt<bool>
67DisablePromotion("disable-licm-promotion", cl::Hidden,
68 cl::desc("Disable memory promotion in LICM pass"));
Chris Lattner2e6e7412003-02-24 03:52:32 +000069
Dan Gohman844731a2008-05-13 00:00:25 +000070namespace {
Chris Lattner3e8b6632009-09-02 06:11:42 +000071 struct LICM : public LoopPass {
Nick Lewyckyecd94c82007-05-06 13:37:16 +000072 static char ID; // Pass identification, replacement for typeid
Owen Anderson081c34b2010-10-19 17:21:58 +000073 LICM() : LoopPass(ID) {
74 initializeLICMPass(*PassRegistry::getPassRegistry());
75 }
Devang Patel794fd752007-05-01 21:15:47 +000076
Devang Patel54959d62007-03-07 04:41:30 +000077 virtual bool runOnLoop(Loop *L, LPPassManager &LPM);
Chris Lattnere0e734e2002-05-10 22:44:58 +000078
Chris Lattner94170592002-09-26 16:52:07 +000079 /// This transformation requires natural loop information & requires that
80 /// loop preheaders be inserted into the CFG...
81 ///
Chris Lattnere0e734e2002-05-10 22:44:58 +000082 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattnercb2610e2002-10-21 20:00:28 +000083 AU.setPreservesCFG();
Owen Anderson3a2b58f2007-04-24 06:40:39 +000084 AU.addRequired<DominatorTree>();
Dan Gohman1e381fc2010-07-16 17:58:45 +000085 AU.addRequired<LoopInfo>();
86 AU.addRequiredID(LoopSimplifyID);
Chris Lattnerf5e84aa2002-08-22 21:39:55 +000087 AU.addRequired<AliasAnalysis>();
Chris Lattnere418ac82010-08-29 07:02:56 +000088 AU.addPreserved<AliasAnalysis>();
Dan Gohmana9b61e72010-11-17 20:50:07 +000089 AU.addPreserved("scalar-evolution");
Dan Gohman5c89b522009-09-08 15:45:00 +000090 AU.addPreservedID(LoopSimplifyID);
Chad Rosieraab8e282011-12-02 01:26:24 +000091 AU.addRequired<TargetLibraryInfo>();
Chris Lattnere0e734e2002-05-10 22:44:58 +000092 }
93
Matt Beaumont-Gayee721152012-12-04 05:41:27 +000094 using llvm::Pass::doFinalization;
95
Dan Gohman747603e2007-04-17 18:21:36 +000096 bool doFinalization() {
Chris Lattner4282e322010-08-29 17:46:00 +000097 assert(LoopToAliasSetMap.empty() && "Didn't free loop alias sets");
Devang Patel54959d62007-03-07 04:41:30 +000098 return false;
99 }
100
Chris Lattnere0e734e2002-05-10 22:44:58 +0000101 private:
Chris Lattner2e6e7412003-02-24 03:52:32 +0000102 AliasAnalysis *AA; // Current AliasAnalysis information
Chris Lattner92094b42003-12-09 17:18:00 +0000103 LoopInfo *LI; // Current LoopInfo
Chris Lattner44e2bd32010-08-29 06:49:44 +0000104 DominatorTree *DT; // Dominator Tree for the current Loop.
Chris Lattner92094b42003-12-09 17:18:00 +0000105
Micah Villmow3574eca2012-10-08 16:38:25 +0000106 DataLayout *TD; // DataLayout for constant folding.
Chad Rosieraab8e282011-12-02 01:26:24 +0000107 TargetLibraryInfo *TLI; // TargetLibraryInfo for constant folding.
108
Chris Lattner4282e322010-08-29 17:46:00 +0000109 // State that is updated as we process loops.
Chris Lattner2e6e7412003-02-24 03:52:32 +0000110 bool Changed; // Set to true when we change anything.
111 BasicBlock *Preheader; // The preheader block of the current loop...
112 Loop *CurLoop; // The current loop we are working on...
Chris Lattner0252e492003-03-03 23:32:45 +0000113 AliasSetTracker *CurAST; // AliasSet information for the current loop...
Nadav Rotem77654922012-09-04 10:25:04 +0000114 bool MayThrow; // The current loop contains an instruction which
115 // may throw, thus preventing code motion of
116 // instructions with side effects.
Chris Lattner4282e322010-08-29 17:46:00 +0000117 DenseMap<Loop*, AliasSetTracker*> LoopToAliasSetMap;
Chris Lattnere0e734e2002-05-10 22:44:58 +0000118
Devang Patel91d22c82007-07-31 08:01:41 +0000119 /// cloneBasicBlockAnalysis - Simple Analysis hook. Clone alias set info.
120 void cloneBasicBlockAnalysis(BasicBlock *From, BasicBlock *To, Loop *L);
121
122 /// deleteAnalysisValue - Simple Analysis hook. Delete value V from alias
123 /// set.
124 void deleteAnalysisValue(Value *V, Loop *L);
125
Chris Lattnere4365b22003-12-19 07:22:45 +0000126 /// SinkRegion - Walk the specified region of the CFG (defined by all blocks
127 /// dominated by the specified block, and that are in the current loop) in
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000128 /// reverse depth first order w.r.t the DominatorTree. This allows us to
Chris Lattnere4365b22003-12-19 07:22:45 +0000129 /// visit uses before definitions, allowing us to sink a loop body in one
130 /// pass without iteration.
131 ///
Devang Patel26042422007-06-04 00:32:22 +0000132 void SinkRegion(DomTreeNode *N);
Chris Lattnere4365b22003-12-19 07:22:45 +0000133
Chris Lattner952eaee2002-09-29 21:46:09 +0000134 /// HoistRegion - Walk the specified region of the CFG (defined by all
135 /// blocks dominated by the specified block, and that are in the current
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000136 /// loop) in depth first order w.r.t the DominatorTree. This allows us to
Misha Brukmancf00c4a2003-10-10 17:57:28 +0000137 /// visit definitions before uses, allowing us to hoist a loop body in one
Chris Lattner952eaee2002-09-29 21:46:09 +0000138 /// pass without iteration.
139 ///
Devang Patel26042422007-06-04 00:32:22 +0000140 void HoistRegion(DomTreeNode *N);
Chris Lattner952eaee2002-09-29 21:46:09 +0000141
Chris Lattnerb4613732002-09-29 22:26:07 +0000142 /// inSubLoop - Little predicate that returns true if the specified basic
143 /// block is in a subloop of the current one, not the current one itself.
Chris Lattner94170592002-09-26 16:52:07 +0000144 ///
Chris Lattnerb4613732002-09-29 22:26:07 +0000145 bool inSubLoop(BasicBlock *BB) {
146 assert(CurLoop->contains(BB) && "Only valid if BB is IN the loop");
Chris Lattner81a866d2011-01-02 18:53:08 +0000147 return LI->getLoopFor(BB) != CurLoop;
Chris Lattnere0e734e2002-05-10 22:44:58 +0000148 }
149
Chris Lattnera2706512003-12-10 06:41:05 +0000150 /// sink - When an instruction is found to only be used outside of the loop,
151 /// this function moves it to the exit blocks and patches up SSA form as
152 /// needed.
153 ///
154 void sink(Instruction &I);
155
Chris Lattner94170592002-09-26 16:52:07 +0000156 /// hoist - When an instruction is found to only use loop invariant operands
157 /// that is safe to hoist, this instruction is called to do the dirty work.
158 ///
Chris Lattner7e708292002-06-25 16:13:24 +0000159 void hoist(Instruction &I);
Chris Lattnere0e734e2002-05-10 22:44:58 +0000160
Chris Lattnera2706512003-12-10 06:41:05 +0000161 /// isSafeToExecuteUnconditionally - Only sink or hoist an instruction if it
162 /// is not a trapping instruction or if it is a trapping instruction and is
163 /// guaranteed to execute.
Tanya Lattner9966c032003-08-05 18:45:46 +0000164 ///
Chris Lattnera2706512003-12-10 06:41:05 +0000165 bool isSafeToExecuteUnconditionally(Instruction &I);
Tanya Lattner9966c032003-08-05 18:45:46 +0000166
Eli Friedman73bfa4a2011-07-20 21:37:47 +0000167 /// isGuaranteedToExecute - Check that the instruction is guaranteed to
168 /// execute.
169 ///
170 bool isGuaranteedToExecute(Instruction &I);
171
Chris Lattner94170592002-09-26 16:52:07 +0000172 /// pointerInvalidatedByLoop - Return true if the body of this loop may
173 /// store into the memory location pointed to by V.
Misha Brukmanfd939082005-04-21 23:48:37 +0000174 ///
Dan Gohman3da848b2010-10-19 22:54:46 +0000175 bool pointerInvalidatedByLoop(Value *V, uint64_t Size,
Dan Gohmana8702ea2010-10-18 20:44:50 +0000176 const MDNode *TBAAInfo) {
Chris Lattner0252e492003-03-03 23:32:45 +0000177 // Check to see if any of the basic blocks in CurLoop invalidate *V.
Dan Gohmana8702ea2010-10-18 20:44:50 +0000178 return CurAST->getAliasSetForPointer(V, Size, TBAAInfo).isMod();
Chris Lattner2e6e7412003-02-24 03:52:32 +0000179 }
Chris Lattnerf5e84aa2002-08-22 21:39:55 +0000180
Chris Lattnera2706512003-12-10 06:41:05 +0000181 bool canSinkOrHoistInst(Instruction &I);
Chris Lattnera2706512003-12-10 06:41:05 +0000182 bool isNotUsedInLoop(Instruction &I);
Chris Lattnere0e734e2002-05-10 22:44:58 +0000183
Dan Gohman9d1747c2012-08-08 00:00:26 +0000184 void PromoteAliasSet(AliasSet &AS,
185 SmallVectorImpl<BasicBlock*> &ExitBlocks,
186 SmallVectorImpl<Instruction*> &InsertPts);
Chris Lattnere0e734e2002-05-10 22:44:58 +0000187 };
188}
189
Dan Gohman844731a2008-05-13 00:00:25 +0000190char LICM::ID = 0;
Owen Anderson2ab36d32010-10-12 19:48:12 +0000191INITIALIZE_PASS_BEGIN(LICM, "licm", "Loop Invariant Code Motion", false, false)
192INITIALIZE_PASS_DEPENDENCY(DominatorTree)
193INITIALIZE_PASS_DEPENDENCY(LoopInfo)
Owen Anderson2ab36d32010-10-12 19:48:12 +0000194INITIALIZE_PASS_DEPENDENCY(LoopSimplify)
Chad Rosieraab8e282011-12-02 01:26:24 +0000195INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfo)
Owen Anderson2ab36d32010-10-12 19:48:12 +0000196INITIALIZE_AG_DEPENDENCY(AliasAnalysis)
197INITIALIZE_PASS_END(LICM, "licm", "Loop Invariant Code Motion", false, false)
Dan Gohman844731a2008-05-13 00:00:25 +0000198
Daniel Dunbar394f0442008-10-22 23:32:42 +0000199Pass *llvm::createLICMPass() { return new LICM(); }
Chris Lattnere0e734e2002-05-10 22:44:58 +0000200
Devang Patel8d246f02007-07-31 16:52:25 +0000201/// Hoist expressions out of the specified loop. Note, alias info for inner
Tobias Grossera3574fb2011-07-06 19:20:02 +0000202/// loop is not preserved so it is not a good idea to run LICM multiple
Devang Patel8d246f02007-07-31 16:52:25 +0000203/// times on one loop.
Chris Lattner94170592002-09-26 16:52:07 +0000204///
Devang Patel54959d62007-03-07 04:41:30 +0000205bool LICM::runOnLoop(Loop *L, LPPassManager &LPM) {
Chris Lattner2e6e7412003-02-24 03:52:32 +0000206 Changed = false;
Chris Lattnere0e734e2002-05-10 22:44:58 +0000207
Chris Lattner2e6e7412003-02-24 03:52:32 +0000208 // Get our Loop and Alias Analysis information...
209 LI = &getAnalysis<LoopInfo>();
Chris Lattnerf5e84aa2002-08-22 21:39:55 +0000210 AA = &getAnalysis<AliasAnalysis>();
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000211 DT = &getAnalysis<DominatorTree>();
Chris Lattnerf5e84aa2002-08-22 21:39:55 +0000212
Micah Villmow3574eca2012-10-08 16:38:25 +0000213 TD = getAnalysisIfAvailable<DataLayout>();
Chad Rosieraab8e282011-12-02 01:26:24 +0000214 TLI = &getAnalysis<TargetLibraryInfo>();
215
Devang Patel54959d62007-03-07 04:41:30 +0000216 CurAST = new AliasSetTracker(*AA);
Chris Lattner4282e322010-08-29 17:46:00 +0000217 // Collect Alias info from subloops.
Devang Patel54959d62007-03-07 04:41:30 +0000218 for (Loop::iterator LoopItr = L->begin(), LoopItrE = L->end();
219 LoopItr != LoopItrE; ++LoopItr) {
220 Loop *InnerL = *LoopItr;
Chris Lattner4282e322010-08-29 17:46:00 +0000221 AliasSetTracker *InnerAST = LoopToAliasSetMap[InnerL];
222 assert(InnerAST && "Where is my AST?");
Devang Patel54959d62007-03-07 04:41:30 +0000223
224 // What if InnerLoop was modified by other passes ?
225 CurAST->add(*InnerAST);
Tobias Grossera3574fb2011-07-06 19:20:02 +0000226
Chris Lattner4282e322010-08-29 17:46:00 +0000227 // Once we've incorporated the inner loop's AST into ours, we don't need the
228 // subloop's anymore.
229 delete InnerAST;
230 LoopToAliasSetMap.erase(InnerL);
Chris Lattner2e6e7412003-02-24 03:52:32 +0000231 }
Tobias Grossera3574fb2011-07-06 19:20:02 +0000232
Chris Lattnere0e734e2002-05-10 22:44:58 +0000233 CurLoop = L;
234
Chris Lattner99a57212002-09-26 19:40:25 +0000235 // Get the preheader block to move instructions into...
236 Preheader = L->getLoopPreheader();
Chris Lattner99a57212002-09-26 19:40:25 +0000237
Chris Lattner2e6e7412003-02-24 03:52:32 +0000238 // Loop over the body of this loop, looking for calls, invokes, and stores.
Chris Lattner0252e492003-03-03 23:32:45 +0000239 // Because subloops have already been incorporated into AST, we skip blocks in
Chris Lattner2e6e7412003-02-24 03:52:32 +0000240 // subloops.
241 //
Dan Gohman9b787632008-06-22 20:18:58 +0000242 for (Loop::block_iterator I = L->block_begin(), E = L->block_end();
243 I != E; ++I) {
244 BasicBlock *BB = *I;
Chris Lattner4282e322010-08-29 17:46:00 +0000245 if (LI->getLoopFor(BB) == L) // Ignore blocks in subloops.
Dan Gohman9b787632008-06-22 20:18:58 +0000246 CurAST->add(*BB); // Incorporate the specified basic block
247 }
Chris Lattner2e6e7412003-02-24 03:52:32 +0000248
Nadav Rotem77654922012-09-04 10:25:04 +0000249 MayThrow = false;
250 // TODO: We've already searched for instructions which may throw in subloops.
251 // We may want to reuse this information.
252 for (Loop::block_iterator BB = L->block_begin(), BBE = L->block_end();
253 (BB != BBE) && !MayThrow ; ++BB)
254 for (BasicBlock::iterator I = (*BB)->begin(), E = (*BB)->end();
255 (I != E) && !MayThrow; ++I)
256 MayThrow |= I->mayThrow();
257
Chris Lattnere0e734e2002-05-10 22:44:58 +0000258 // We want to visit all of the instructions in this loop... that are not parts
259 // of our subloops (they have already had their invariants hoisted out of
260 // their loop, into this loop, so there is no need to process the BODIES of
261 // the subloops).
262 //
Chris Lattner952eaee2002-09-29 21:46:09 +0000263 // Traverse the body of the loop in depth first order on the dominator tree so
264 // that we are guaranteed to see definitions before we see uses. This allows
Nick Lewyckyaf5cbc82007-08-18 15:08:56 +0000265 // us to sink instructions in one pass, without iteration. After sinking
Chris Lattnere4365b22003-12-19 07:22:45 +0000266 // instructions, we perform another pass to hoist them out of the loop.
Chris Lattner952eaee2002-09-29 21:46:09 +0000267 //
Dan Gohman03e896b2009-11-05 21:11:53 +0000268 if (L->hasDedicatedExits())
269 SinkRegion(DT->getNode(L->getHeader()));
270 if (Preheader)
271 HoistRegion(DT->getNode(L->getHeader()));
Chris Lattnere0e734e2002-05-10 22:44:58 +0000272
Chris Lattner2e6e7412003-02-24 03:52:32 +0000273 // Now that all loop invariants have been removed from the loop, promote any
Chris Lattnere4880642010-08-29 06:43:52 +0000274 // memory references to scalars that we can.
275 if (!DisablePromotion && Preheader && L->hasDedicatedExits()) {
Dan Gohman9d1747c2012-08-08 00:00:26 +0000276 SmallVector<BasicBlock *, 8> ExitBlocks;
277 SmallVector<Instruction *, 8> InsertPts;
278
Chris Lattnere4880642010-08-29 06:43:52 +0000279 // Loop over all of the alias sets in the tracker object.
280 for (AliasSetTracker::iterator I = CurAST->begin(), E = CurAST->end();
281 I != E; ++I)
Dan Gohman9d1747c2012-08-08 00:00:26 +0000282 PromoteAliasSet(*I, ExitBlocks, InsertPts);
Chris Lattnere4880642010-08-29 06:43:52 +0000283 }
Tobias Grossera3574fb2011-07-06 19:20:02 +0000284
Chris Lattnere0e734e2002-05-10 22:44:58 +0000285 // Clear out loops state information for the next iteration
286 CurLoop = 0;
Chris Lattner99a57212002-09-26 19:40:25 +0000287 Preheader = 0;
Devang Patel54959d62007-03-07 04:41:30 +0000288
Chris Lattner4282e322010-08-29 17:46:00 +0000289 // If this loop is nested inside of another one, save the alias information
290 // for when we process the outer loop.
291 if (L->getParentLoop())
292 LoopToAliasSetMap[L] = CurAST;
293 else
294 delete CurAST;
Devang Patel54959d62007-03-07 04:41:30 +0000295 return Changed;
Chris Lattnere0e734e2002-05-10 22:44:58 +0000296}
297
Chris Lattnere4365b22003-12-19 07:22:45 +0000298/// SinkRegion - Walk the specified region of the CFG (defined by all blocks
299/// dominated by the specified block, and that are in the current loop) in
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000300/// reverse depth first order w.r.t the DominatorTree. This allows us to visit
Chris Lattnere4365b22003-12-19 07:22:45 +0000301/// uses before definitions, allowing us to sink a loop body in one pass without
302/// iteration.
303///
Devang Patel26042422007-06-04 00:32:22 +0000304void LICM::SinkRegion(DomTreeNode *N) {
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000305 assert(N != 0 && "Null dominator tree node?");
306 BasicBlock *BB = N->getBlock();
Chris Lattnere4365b22003-12-19 07:22:45 +0000307
308 // If this subregion is not in the top level loop at all, exit.
309 if (!CurLoop->contains(BB)) return;
310
Chris Lattner0de5cad2010-08-29 18:22:25 +0000311 // We are processing blocks in reverse dfo, so process children first.
Devang Patel26042422007-06-04 00:32:22 +0000312 const std::vector<DomTreeNode*> &Children = N->getChildren();
Chris Lattnere4365b22003-12-19 07:22:45 +0000313 for (unsigned i = 0, e = Children.size(); i != e; ++i)
314 SinkRegion(Children[i]);
315
316 // Only need to process the contents of this block if it is not part of a
317 // subloop (which would already have been processed).
318 if (inSubLoop(BB)) return;
319
Chris Lattnera3df8a92003-12-19 08:18:16 +0000320 for (BasicBlock::iterator II = BB->end(); II != BB->begin(); ) {
321 Instruction &I = *--II;
Tobias Grossera3574fb2011-07-06 19:20:02 +0000322
Chris Lattner0de5cad2010-08-29 18:22:25 +0000323 // If the instruction is dead, we would try to sink it because it isn't used
324 // in the loop, instead, just delete it.
Benjamin Kramer8e0d1c02012-08-29 15:32:21 +0000325 if (isInstructionTriviallyDead(&I, TLI)) {
Chris Lattnercb7f6532010-08-29 18:42:23 +0000326 DEBUG(dbgs() << "LICM deleting dead inst: " << I << '\n');
Chris Lattner0de5cad2010-08-29 18:22:25 +0000327 ++II;
328 CurAST->deleteValue(&I);
329 I.eraseFromParent();
330 Changed = true;
331 continue;
332 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000333
Chris Lattnere4365b22003-12-19 07:22:45 +0000334 // Check to see if we can sink this instruction to the exit blocks
335 // of the loop. We can do this if the all users of the instruction are
336 // outside of the loop. In this case, it doesn't even matter if the
337 // operands of the instruction are loop invariant.
338 //
Chris Lattner70ac2dc2005-03-25 00:22:36 +0000339 if (isNotUsedInLoop(I) && canSinkOrHoistInst(I)) {
Chris Lattnera3df8a92003-12-19 08:18:16 +0000340 ++II;
Chris Lattnere4365b22003-12-19 07:22:45 +0000341 sink(I);
Chris Lattnera3df8a92003-12-19 08:18:16 +0000342 }
Chris Lattnere4365b22003-12-19 07:22:45 +0000343 }
344}
345
Chris Lattner952eaee2002-09-29 21:46:09 +0000346/// HoistRegion - Walk the specified region of the CFG (defined by all blocks
347/// dominated by the specified block, and that are in the current loop) in depth
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000348/// first order w.r.t the DominatorTree. This allows us to visit definitions
Chris Lattner952eaee2002-09-29 21:46:09 +0000349/// before uses, allowing us to hoist a loop body in one pass without iteration.
350///
Devang Patel26042422007-06-04 00:32:22 +0000351void LICM::HoistRegion(DomTreeNode *N) {
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000352 assert(N != 0 && "Null dominator tree node?");
353 BasicBlock *BB = N->getBlock();
Chris Lattner952eaee2002-09-29 21:46:09 +0000354
Chris Lattnerb4613732002-09-29 22:26:07 +0000355 // If this subregion is not in the top level loop at all, exit.
Chris Lattnered6dfc22003-12-09 19:32:44 +0000356 if (!CurLoop->contains(BB)) return;
Chris Lattner952eaee2002-09-29 21:46:09 +0000357
Chris Lattnera2706512003-12-10 06:41:05 +0000358 // Only need to process the contents of this block if it is not part of a
359 // subloop (which would already have been processed).
Chris Lattnered6dfc22003-12-09 19:32:44 +0000360 if (!inSubLoop(BB))
Chris Lattnera2706512003-12-10 06:41:05 +0000361 for (BasicBlock::iterator II = BB->begin(), E = BB->end(); II != E; ) {
362 Instruction &I = *II++;
Misha Brukmanfd939082005-04-21 23:48:37 +0000363
Chris Lattner2ac6e232010-08-31 23:00:16 +0000364 // Try constant folding this instruction. If all the operands are
365 // constants, it is technically hoistable, but it would be better to just
366 // fold it.
Chad Rosieraab8e282011-12-02 01:26:24 +0000367 if (Constant *C = ConstantFoldInstruction(&I, TD, TLI)) {
Chris Lattner2ac6e232010-08-31 23:00:16 +0000368 DEBUG(dbgs() << "LICM folding inst: " << I << " --> " << *C << '\n');
369 CurAST->copyValue(&I, C);
370 CurAST->deleteValue(&I);
371 I.replaceAllUsesWith(C);
372 I.eraseFromParent();
373 continue;
374 }
Tobias Grossera3574fb2011-07-06 19:20:02 +0000375
Chris Lattnere4365b22003-12-19 07:22:45 +0000376 // Try hoisting the instruction out to the preheader. We can only do this
377 // if all of the operands of the instruction are loop invariant and if it
378 // is safe to hoist the instruction.
379 //
Chris Lattneradc79912010-09-06 01:05:37 +0000380 if (CurLoop->hasLoopInvariantOperands(&I) && canSinkOrHoistInst(I) &&
Chris Lattnere4365b22003-12-19 07:22:45 +0000381 isSafeToExecuteUnconditionally(I))
Chris Lattner3c80a512006-06-26 19:10:05 +0000382 hoist(I);
Chris Lattner2ac6e232010-08-31 23:00:16 +0000383 }
Chris Lattner952eaee2002-09-29 21:46:09 +0000384
Devang Patel26042422007-06-04 00:32:22 +0000385 const std::vector<DomTreeNode*> &Children = N->getChildren();
Chris Lattner952eaee2002-09-29 21:46:09 +0000386 for (unsigned i = 0, e = Children.size(); i != e; ++i)
Chris Lattner56b7ee22004-06-19 20:23:35 +0000387 HoistRegion(Children[i]);
Chris Lattner952eaee2002-09-29 21:46:09 +0000388}
389
Chris Lattnera2706512003-12-10 06:41:05 +0000390/// canSinkOrHoistInst - Return true if the hoister and sinker can handle this
391/// instruction.
392///
393bool LICM::canSinkOrHoistInst(Instruction &I) {
Chris Lattnered6dfc22003-12-09 19:32:44 +0000394 // Loads have extra constraints we have to verify before we can hoist them.
395 if (LoadInst *LI = dyn_cast<LoadInst>(&I)) {
Eli Friedman97671562011-08-15 20:52:09 +0000396 if (!LI->isUnordered())
397 return false; // Don't hoist volatile/atomic loads!
Chris Lattnered6dfc22003-12-09 19:32:44 +0000398
Chris Lattner967948b2008-07-23 05:06:28 +0000399 // Loads from constant memory are always safe to move, even if they end up
400 // in the same alias set as something that ends up being modified.
Dan Gohmandab249b2009-11-19 19:00:10 +0000401 if (AA->pointsToConstantMemory(LI->getOperand(0)))
Chris Lattner967948b2008-07-23 05:06:28 +0000402 return true;
Benjamin Kramer85dadec2011-12-06 11:50:26 +0000403 if (LI->getMetadata("invariant.load"))
Pete Cooper2d76a782011-11-08 19:30:00 +0000404 return true;
Tobias Grossera3574fb2011-07-06 19:20:02 +0000405
Chris Lattnered6dfc22003-12-09 19:32:44 +0000406 // Don't hoist loads which have may-aliased stores in loop.
Dan Gohman3da848b2010-10-19 22:54:46 +0000407 uint64_t Size = 0;
Chris Lattnerf3e1d692004-11-26 21:20:09 +0000408 if (LI->getType()->isSized())
Dan Gohmanfc2a3ed2009-07-25 00:48:42 +0000409 Size = AA->getTypeStoreSize(LI->getType());
Dan Gohmana8702ea2010-10-18 20:44:50 +0000410 return !pointerInvalidatedByLoop(LI->getOperand(0), Size,
411 LI->getMetadata(LLVMContext::MD_tbaa));
Chris Lattner118dd0c2004-03-15 04:11:30 +0000412 } else if (CallInst *CI = dyn_cast<CallInst>(&I)) {
Eli Friedman30a121b2011-05-27 18:37:52 +0000413 // Don't sink or hoist dbg info; it's legal, but not useful.
414 if (isa<DbgInfoIntrinsic>(I))
415 return false;
416
417 // Handle simple cases by querying alias analysis.
Duncan Sandsdff67102007-12-01 07:51:45 +0000418 AliasAnalysis::ModRefBehavior Behavior = AA->getModRefBehavior(CI);
419 if (Behavior == AliasAnalysis::DoesNotAccessMemory)
420 return true;
Dan Gohmancd93f3b2010-11-09 19:58:21 +0000421 if (AliasAnalysis::onlyReadsMemory(Behavior)) {
Duncan Sandsdff67102007-12-01 07:51:45 +0000422 // If this call only reads from memory and there are no writes to memory
423 // in the loop, we can hoist or sink the call as appropriate.
424 bool FoundMod = false;
425 for (AliasSetTracker::iterator I = CurAST->begin(), E = CurAST->end();
426 I != E; ++I) {
427 AliasSet &AS = *I;
428 if (!AS.isForwardingAliasSet() && AS.isMod()) {
429 FoundMod = true;
430 break;
Chris Lattner118dd0c2004-03-15 04:11:30 +0000431 }
Chris Lattner118dd0c2004-03-15 04:11:30 +0000432 }
Duncan Sandsdff67102007-12-01 07:51:45 +0000433 if (!FoundMod) return true;
Chris Lattner118dd0c2004-03-15 04:11:30 +0000434 }
435
Nadav Rotem77654922012-09-04 10:25:04 +0000436 // FIXME: This should use mod/ref information to see if we can hoist or
437 // sink the call.
Misha Brukmanfd939082005-04-21 23:48:37 +0000438
Chris Lattner118dd0c2004-03-15 04:11:30 +0000439 return false;
Chris Lattnered6dfc22003-12-09 19:32:44 +0000440 }
441
Nadav Rotem77654922012-09-04 10:25:04 +0000442 // Only these instructions are hoistable/sinkable.
Benjamin Kramerd9cc8652013-01-09 18:12:03 +0000443 if (!isa<BinaryOperator>(I) && !isa<CastInst>(I) && !isa<SelectInst>(I) &&
444 !isa<GetElementPtrInst>(I) && !isa<CmpInst>(I) &&
445 !isa<InsertElementInst>(I) && !isa<ExtractElementInst>(I) &&
446 !isa<ShuffleVectorInst>(I) && !isa<ExtractValueInst>(I) &&
447 !isa<InsertValueInst>(I))
448 return false;
Nadav Rotem77654922012-09-04 10:25:04 +0000449
450 return isSafeToExecuteUnconditionally(I);
Chris Lattnera2706512003-12-10 06:41:05 +0000451}
452
453/// isNotUsedInLoop - Return true if the only users of this instruction are
454/// outside of the loop. If this is true, we can sink the instruction to the
455/// exit blocks of the loop.
456///
457bool LICM::isNotUsedInLoop(Instruction &I) {
Chris Lattnerea9403f2003-12-11 22:23:32 +0000458 for (Value::use_iterator UI = I.use_begin(), E = I.use_end(); UI != E; ++UI) {
459 Instruction *User = cast<Instruction>(*UI);
460 if (PHINode *PN = dyn_cast<PHINode>(User)) {
461 // PHI node uses occur in predecessor blocks!
462 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
463 if (PN->getIncomingValue(i) == &I)
464 if (CurLoop->contains(PN->getIncomingBlock(i)))
465 return false;
Dan Gohman92329c72009-12-18 01:24:09 +0000466 } else if (CurLoop->contains(User)) {
Chris Lattnera2706512003-12-10 06:41:05 +0000467 return false;
Chris Lattnerea9403f2003-12-11 22:23:32 +0000468 }
469 }
Chris Lattnera2706512003-12-10 06:41:05 +0000470 return true;
471}
472
473
Chris Lattnera2706512003-12-10 06:41:05 +0000474/// sink - When an instruction is found to only be used outside of the loop,
Chris Lattnera3df8a92003-12-19 08:18:16 +0000475/// this function moves it to the exit blocks and patches up SSA form as needed.
476/// This method is guaranteed to remove the original instruction from its
477/// position, and may either delete it or move it to outside of the loop.
Chris Lattnera2706512003-12-10 06:41:05 +0000478///
479void LICM::sink(Instruction &I) {
Nick Lewycky39a38312010-07-30 20:27:01 +0000480 DEBUG(dbgs() << "LICM sinking instruction: " << I << "\n");
Chris Lattnera2706512003-12-10 06:41:05 +0000481
Devang Patelb7211a22007-08-21 00:31:24 +0000482 SmallVector<BasicBlock*, 8> ExitBlocks;
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000483 CurLoop->getUniqueExitBlocks(ExitBlocks);
Chris Lattnerdf45bd32003-12-10 20:43:29 +0000484
485 if (isa<LoadInst>(I)) ++NumMovedLoads;
Chris Lattner118dd0c2004-03-15 04:11:30 +0000486 else if (isa<CallInst>(I)) ++NumMovedCalls;
Chris Lattnerdf45bd32003-12-10 20:43:29 +0000487 ++NumSunk;
488 Changed = true;
489
Chris Lattnera2706512003-12-10 06:41:05 +0000490 // The case where there is only a single exit node of this loop is common
491 // enough that we handle it as a special (more efficient) case. It is more
492 // efficient to handle because there are no PHI nodes that need to be placed.
493 if (ExitBlocks.size() == 1) {
Eli Friedman30a121b2011-05-27 18:37:52 +0000494 if (!DT->dominates(I.getParent(), ExitBlocks[0])) {
Chris Lattnera2706512003-12-10 06:41:05 +0000495 // Instruction is not used, just delete it.
Chris Lattner2741c972004-05-23 21:20:19 +0000496 CurAST->deleteValue(&I);
Devang Patel1bf5ebc2009-10-13 21:41:20 +0000497 // If I has users in unreachable blocks, eliminate.
Devang Patel228ebd02009-10-13 22:56:32 +0000498 // If I is not void type then replaceAllUsesWith undef.
499 // This allows ValueHandlers and custom metadata to adjust itself.
Chris Lattnera6a36f52010-08-29 04:55:06 +0000500 if (!I.use_empty())
Devang Patel228ebd02009-10-13 22:56:32 +0000501 I.replaceAllUsesWith(UndefValue::get(I.getType()));
Chris Lattner3c80a512006-06-26 19:10:05 +0000502 I.eraseFromParent();
Chris Lattnera2706512003-12-10 06:41:05 +0000503 } else {
504 // Move the instruction to the start of the exit block, after any PHI
505 // nodes in it.
Bill Wendling26665de2011-08-18 23:42:36 +0000506 I.moveBefore(ExitBlocks[0]->getFirstInsertionPt());
Chris Lattner4282e322010-08-29 17:46:00 +0000507
508 // This instruction is no longer in the AST for the current loop, because
509 // we just sunk it out of the loop. If we just sunk it into an outer
510 // loop, we will rediscover the operation when we process it.
511 CurAST->deleteValue(&I);
Chris Lattnera2706512003-12-10 06:41:05 +0000512 }
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000513 return;
514 }
Tobias Grossera3574fb2011-07-06 19:20:02 +0000515
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000516 if (ExitBlocks.empty()) {
Chris Lattnera2706512003-12-10 06:41:05 +0000517 // The instruction is actually dead if there ARE NO exit blocks.
Chris Lattner2741c972004-05-23 21:20:19 +0000518 CurAST->deleteValue(&I);
Devang Patel1bf5ebc2009-10-13 21:41:20 +0000519 // If I has users in unreachable blocks, eliminate.
Devang Patel228ebd02009-10-13 22:56:32 +0000520 // If I is not void type then replaceAllUsesWith undef.
521 // This allows ValueHandlers and custom metadata to adjust itself.
Chris Lattnera6a36f52010-08-29 04:55:06 +0000522 if (!I.use_empty())
Devang Patel228ebd02009-10-13 22:56:32 +0000523 I.replaceAllUsesWith(UndefValue::get(I.getType()));
Chris Lattner3c80a512006-06-26 19:10:05 +0000524 I.eraseFromParent();
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000525 return;
526 }
Tobias Grossera3574fb2011-07-06 19:20:02 +0000527
Chris Lattnera6a36f52010-08-29 04:55:06 +0000528 // Otherwise, if we have multiple exits, use the SSAUpdater to do all of the
529 // hard work of inserting PHI nodes as necessary.
530 SmallVector<PHINode*, 8> NewPHIs;
531 SSAUpdater SSA(&NewPHIs);
Tobias Grossera3574fb2011-07-06 19:20:02 +0000532
Chris Lattnera6a36f52010-08-29 04:55:06 +0000533 if (!I.use_empty())
Duncan Sandsfc6e29d2010-09-02 08:14:03 +0000534 SSA.Initialize(I.getType(), I.getName());
Tobias Grossera3574fb2011-07-06 19:20:02 +0000535
Chris Lattnera6a36f52010-08-29 04:55:06 +0000536 // Insert a copy of the instruction in each exit block of the loop that is
537 // dominated by the instruction. Each exit block is known to only be in the
538 // ExitBlocks list once.
539 BasicBlock *InstOrigBB = I.getParent();
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000540 unsigned NumInserted = 0;
Tobias Grossera3574fb2011-07-06 19:20:02 +0000541
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000542 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i) {
543 BasicBlock *ExitBlock = ExitBlocks[i];
Tobias Grossera3574fb2011-07-06 19:20:02 +0000544
Chris Lattner83fc5842011-01-02 18:45:39 +0000545 if (!DT->dominates(InstOrigBB, ExitBlock))
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000546 continue;
Tobias Grossera3574fb2011-07-06 19:20:02 +0000547
Chris Lattnera6a36f52010-08-29 04:55:06 +0000548 // Insert the code after the last PHI node.
Bill Wendling26665de2011-08-18 23:42:36 +0000549 BasicBlock::iterator InsertPt = ExitBlock->getFirstInsertionPt();
Tobias Grossera3574fb2011-07-06 19:20:02 +0000550
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000551 // If this is the first exit block processed, just move the original
552 // instruction, otherwise clone the original instruction and insert
553 // the copy.
554 Instruction *New;
Chris Lattnera6a36f52010-08-29 04:55:06 +0000555 if (NumInserted++ == 0) {
556 I.moveBefore(InsertPt);
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000557 New = &I;
558 } else {
559 New = I.clone();
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000560 if (!I.getName().empty())
561 New->setName(I.getName()+".le");
562 ExitBlock->getInstList().insert(InsertPt, New);
Chris Lattnereaa24302004-07-27 07:38:32 +0000563 }
Tobias Grossera3574fb2011-07-06 19:20:02 +0000564
Chris Lattnera6a36f52010-08-29 04:55:06 +0000565 // Now that we have inserted the instruction, inform SSAUpdater.
566 if (!I.use_empty())
567 SSA.AddAvailableValue(ExitBlock, New);
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000568 }
Tobias Grossera3574fb2011-07-06 19:20:02 +0000569
Eli Friedmanc955d212011-05-27 18:04:04 +0000570 // If the instruction doesn't dominate any exit blocks, it must be dead.
571 if (NumInserted == 0) {
572 CurAST->deleteValue(&I);
573 if (!I.use_empty())
574 I.replaceAllUsesWith(UndefValue::get(I.getType()));
575 I.eraseFromParent();
576 return;
577 }
Tobias Grossera3574fb2011-07-06 19:20:02 +0000578
Chris Lattnera6a36f52010-08-29 04:55:06 +0000579 // Next, rewrite uses of the instruction, inserting PHI nodes as needed.
580 for (Value::use_iterator UI = I.use_begin(), UE = I.use_end(); UI != UE; ) {
581 // Grab the use before incrementing the iterator.
582 Use &U = UI.getUse();
583 // Increment the iterator before removing the use from the list.
584 ++UI;
585 SSA.RewriteUseAfterInsertions(U);
Chris Lattnera2706512003-12-10 06:41:05 +0000586 }
Tobias Grossera3574fb2011-07-06 19:20:02 +0000587
Chris Lattnera6a36f52010-08-29 04:55:06 +0000588 // Update CurAST for NewPHIs if I had pointer type.
589 if (I.getType()->isPointerTy())
590 for (unsigned i = 0, e = NewPHIs.size(); i != e; ++i)
Chris Lattner9c282012010-09-02 22:19:10 +0000591 CurAST->copyValue(&I, NewPHIs[i]);
Tobias Grossera3574fb2011-07-06 19:20:02 +0000592
Chris Lattner98917502010-08-29 18:00:00 +0000593 // Finally, remove the instruction from CurAST. It is no longer in the loop.
594 CurAST->deleteValue(&I);
Chris Lattnera2706512003-12-10 06:41:05 +0000595}
Chris Lattner952eaee2002-09-29 21:46:09 +0000596
Chris Lattner94170592002-09-26 16:52:07 +0000597/// hoist - When an instruction is found to only use loop invariant operands
598/// that is safe to hoist, this instruction is called to do the dirty work.
599///
Chris Lattnera2706512003-12-10 06:41:05 +0000600void LICM::hoist(Instruction &I) {
David Greenef1582692010-01-05 01:27:30 +0000601 DEBUG(dbgs() << "LICM hoisting to " << Preheader->getName() << ": "
Evan Cheng67d1d1f2009-10-12 22:25:23 +0000602 << I << "\n");
Chris Lattnered6dfc22003-12-09 19:32:44 +0000603
Chris Lattnerd9a5dae2010-08-29 18:18:40 +0000604 // Move the new node to the Preheader, before its terminator.
605 I.moveBefore(Preheader->getTerminator());
Misha Brukmanfd939082005-04-21 23:48:37 +0000606
Chris Lattnera2706512003-12-10 06:41:05 +0000607 if (isa<LoadInst>(I)) ++NumMovedLoads;
Chris Lattner118dd0c2004-03-15 04:11:30 +0000608 else if (isa<CallInst>(I)) ++NumMovedCalls;
Chris Lattner9646e6b2002-09-26 16:38:03 +0000609 ++NumHoisted;
Chris Lattnere0e734e2002-05-10 22:44:58 +0000610 Changed = true;
611}
612
Chris Lattnera2706512003-12-10 06:41:05 +0000613/// isSafeToExecuteUnconditionally - Only sink or hoist an instruction if it is
614/// not a trapping instruction or if it is a trapping instruction and is
615/// guaranteed to execute.
Tanya Lattner9966c032003-08-05 18:45:46 +0000616///
Chris Lattnera2706512003-12-10 06:41:05 +0000617bool LICM::isSafeToExecuteUnconditionally(Instruction &Inst) {
Chris Lattner92094b42003-12-09 17:18:00 +0000618 // If it is not a trapping instruction, it is always safe to hoist.
Dan Gohmanf0426602011-12-14 23:49:11 +0000619 if (isSafeToSpeculativelyExecute(&Inst))
Eli Friedman0b79a772009-07-17 04:28:42 +0000620 return true;
Misha Brukmanfd939082005-04-21 23:48:37 +0000621
Eli Friedman73bfa4a2011-07-20 21:37:47 +0000622 return isGuaranteedToExecute(Inst);
623}
624
625bool LICM::isGuaranteedToExecute(Instruction &Inst) {
Nadav Rotem77654922012-09-04 10:25:04 +0000626
627 // Somewhere in this loop there is an instruction which may throw and make us
628 // exit the loop.
629 if (MayThrow)
630 return false;
631
Chris Lattner92094b42003-12-09 17:18:00 +0000632 // Otherwise we have to check to make sure that the instruction dominates all
633 // of the exit blocks. If it doesn't, then there is a path out of the loop
634 // which does not execute this instruction, so we can't hoist it.
Tanya Lattner9966c032003-08-05 18:45:46 +0000635
Chris Lattner92094b42003-12-09 17:18:00 +0000636 // If the instruction is in the header block for the loop (which is very
637 // common), it is always guaranteed to dominate the exit blocks. Since this
638 // is a common case, and can save some work, check it now.
Chris Lattnera2706512003-12-10 06:41:05 +0000639 if (Inst.getParent() == CurLoop->getHeader())
Chris Lattner92094b42003-12-09 17:18:00 +0000640 return true;
Tanya Lattner9966c032003-08-05 18:45:46 +0000641
Chris Lattner92094b42003-12-09 17:18:00 +0000642 // Get the exit blocks for the current loop.
Devang Patelb7211a22007-08-21 00:31:24 +0000643 SmallVector<BasicBlock*, 8> ExitBlocks;
Chris Lattner5fa802f2004-04-18 22:15:13 +0000644 CurLoop->getExitBlocks(ExitBlocks);
Chris Lattner92094b42003-12-09 17:18:00 +0000645
Chris Lattner83fc5842011-01-02 18:45:39 +0000646 // Verify that the block dominates each of the exit blocks of the loop.
Chris Lattnera2706512003-12-10 06:41:05 +0000647 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i)
Chris Lattner83fc5842011-01-02 18:45:39 +0000648 if (!DT->dominates(Inst.getParent(), ExitBlocks[i]))
Chris Lattnera2706512003-12-10 06:41:05 +0000649 return false;
Misha Brukmanfd939082005-04-21 23:48:37 +0000650
Nick Lewycky4056a732012-05-01 04:03:01 +0000651 // As a degenerate case, if the loop is statically infinite then we haven't
652 // proven anything since there are no exit blocks.
653 if (ExitBlocks.empty())
654 return false;
655
Tanya Lattner9966c032003-08-05 18:45:46 +0000656 return true;
657}
658
Chris Lattnerdeaf55f2011-01-15 00:12:35 +0000659namespace {
660 class LoopPromoter : public LoadAndStorePromoter {
661 Value *SomePtr; // Designated pointer to store to.
662 SmallPtrSet<Value*, 4> &PointerMustAliases;
663 SmallVectorImpl<BasicBlock*> &LoopExitBlocks;
Dan Gohman9d1747c2012-08-08 00:00:26 +0000664 SmallVectorImpl<Instruction*> &LoopInsertPts;
Chris Lattnerdeaf55f2011-01-15 00:12:35 +0000665 AliasSetTracker &AST;
Eli Friedmandda266d2011-05-27 20:31:51 +0000666 DebugLoc DL;
Tobias Grosserdf7102b2011-07-06 19:19:55 +0000667 int Alignment;
Chris Lattner503fc1c2012-12-31 08:37:17 +0000668 MDNode *TBAATag;
Chris Lattnerdeaf55f2011-01-15 00:12:35 +0000669 public:
670 LoopPromoter(Value *SP,
671 const SmallVectorImpl<Instruction*> &Insts, SSAUpdater &S,
672 SmallPtrSet<Value*, 4> &PMA,
Dan Gohman9d1747c2012-08-08 00:00:26 +0000673 SmallVectorImpl<BasicBlock*> &LEB,
674 SmallVectorImpl<Instruction*> &LIP,
Chris Lattner503fc1c2012-12-31 08:37:17 +0000675 AliasSetTracker &ast, DebugLoc dl, int alignment,
676 MDNode *TBAATag)
Devang Patel231a5ab2011-07-06 21:09:55 +0000677 : LoadAndStorePromoter(Insts, S), SomePtr(SP),
Dan Gohman9d1747c2012-08-08 00:00:26 +0000678 PointerMustAliases(PMA), LoopExitBlocks(LEB), LoopInsertPts(LIP),
Chris Lattner503fc1c2012-12-31 08:37:17 +0000679 AST(ast), DL(dl), Alignment(alignment), TBAATag(TBAATag) {}
Tobias Grossera3574fb2011-07-06 19:20:02 +0000680
Chris Lattnerdeaf55f2011-01-15 00:12:35 +0000681 virtual bool isInstInList(Instruction *I,
682 const SmallVectorImpl<Instruction*> &) const {
683 Value *Ptr;
684 if (LoadInst *LI = dyn_cast<LoadInst>(I))
685 Ptr = LI->getOperand(0);
686 else
687 Ptr = cast<StoreInst>(I)->getPointerOperand();
688 return PointerMustAliases.count(Ptr);
689 }
Tobias Grossera3574fb2011-07-06 19:20:02 +0000690
Chris Lattnerdeaf55f2011-01-15 00:12:35 +0000691 virtual void doExtraRewritesBeforeFinalDeletion() const {
692 // Insert stores after in the loop exit blocks. Each exit block gets a
693 // store of the live-out values that feed them. Since we've already told
694 // the SSA updater about the defs in the loop and the preheader
695 // definition, it is all set and we can start using it.
696 for (unsigned i = 0, e = LoopExitBlocks.size(); i != e; ++i) {
697 BasicBlock *ExitBlock = LoopExitBlocks[i];
698 Value *LiveInValue = SSA.GetValueInMiddleOfBlock(ExitBlock);
Dan Gohman9d1747c2012-08-08 00:00:26 +0000699 Instruction *InsertPos = LoopInsertPts[i];
Eli Friedmandda266d2011-05-27 20:31:51 +0000700 StoreInst *NewSI = new StoreInst(LiveInValue, SomePtr, InsertPos);
Tobias Grosserdf7102b2011-07-06 19:19:55 +0000701 NewSI->setAlignment(Alignment);
Eli Friedmandda266d2011-05-27 20:31:51 +0000702 NewSI->setDebugLoc(DL);
Chris Lattner503fc1c2012-12-31 08:37:17 +0000703 if (TBAATag) NewSI->setMetadata(LLVMContext::MD_tbaa, TBAATag);
Chris Lattnerdeaf55f2011-01-15 00:12:35 +0000704 }
705 }
706
707 virtual void replaceLoadWithValue(LoadInst *LI, Value *V) const {
708 // Update alias analysis.
709 AST.copyValue(LI, V);
710 }
711 virtual void instructionDeleted(Instruction *I) const {
712 AST.deleteValue(I);
713 }
714 };
715} // end anon namespace
716
Chris Lattnere4880642010-08-29 06:43:52 +0000717/// PromoteAliasSet - Try to promote memory values to scalars by sinking
Chris Lattner2e6e7412003-02-24 03:52:32 +0000718/// stores out of the loop and moving loads to before the loop. We do this by
719/// looping over the stores in the loop, looking for stores to Must pointers
Chris Lattnere4880642010-08-29 06:43:52 +0000720/// which are loop invariant.
Chris Lattner2e6e7412003-02-24 03:52:32 +0000721///
Dan Gohman9d1747c2012-08-08 00:00:26 +0000722void LICM::PromoteAliasSet(AliasSet &AS,
723 SmallVectorImpl<BasicBlock*> &ExitBlocks,
724 SmallVectorImpl<Instruction*> &InsertPts) {
Chris Lattnere4880642010-08-29 06:43:52 +0000725 // We can promote this alias set if it has a store, if it is a "Must" alias
726 // set, if the pointer is loop invariant, and if we are not eliminating any
727 // volatile loads or stores.
728 if (AS.isForwardingAliasSet() || !AS.isMod() || !AS.isMustAlias() ||
729 AS.isVolatile() || !CurLoop->isLoopInvariant(AS.begin()->getValue()))
730 return;
Tobias Grossera3574fb2011-07-06 19:20:02 +0000731
Chris Lattnere4880642010-08-29 06:43:52 +0000732 assert(!AS.empty() &&
733 "Must alias set should have at least one pointer element in it!");
734 Value *SomePtr = AS.begin()->getValue();
Chris Lattner2e6e7412003-02-24 03:52:32 +0000735
Chris Lattnere4880642010-08-29 06:43:52 +0000736 // It isn't safe to promote a load/store from the loop if the load/store is
737 // conditional. For example, turning:
Chris Lattner2e6e7412003-02-24 03:52:32 +0000738 //
Chris Lattnere4880642010-08-29 06:43:52 +0000739 // for () { if (c) *P += 1; }
Chris Lattner2e6e7412003-02-24 03:52:32 +0000740 //
Chris Lattnere4880642010-08-29 06:43:52 +0000741 // into:
742 //
743 // tmp = *P; for () { if (c) tmp +=1; } *P = tmp;
744 //
745 // is not safe, because *P may only be valid to access if 'c' is true.
Tobias Grossera3574fb2011-07-06 19:20:02 +0000746 //
Chris Lattnere4880642010-08-29 06:43:52 +0000747 // It is safe to promote P if all uses are direct load/stores and if at
748 // least one is guaranteed to be executed.
749 bool GuaranteedToExecute = false;
Tobias Grosserdf7102b2011-07-06 19:19:55 +0000750
Chris Lattnere4880642010-08-29 06:43:52 +0000751 SmallVector<Instruction*, 64> LoopUses;
752 SmallPtrSet<Value*, 4> PointerMustAliases;
Chris Lattner2e6e7412003-02-24 03:52:32 +0000753
Tobias Grosserdf7102b2011-07-06 19:19:55 +0000754 // We start with an alignment of one and try to find instructions that allow
755 // us to prove better alignment.
756 unsigned Alignment = 1;
Chris Lattner503fc1c2012-12-31 08:37:17 +0000757 MDNode *TBAATag = 0;
Tobias Grosserdf7102b2011-07-06 19:19:55 +0000758
Chris Lattnere4880642010-08-29 06:43:52 +0000759 // Check that all of the pointers in the alias set have the same type. We
760 // cannot (yet) promote a memory location that is loaded and stored in
Chris Lattner503fc1c2012-12-31 08:37:17 +0000761 // different sizes. While we are at it, collect alignment and TBAA info.
Chris Lattnere4880642010-08-29 06:43:52 +0000762 for (AliasSet::iterator ASI = AS.begin(), E = AS.end(); ASI != E; ++ASI) {
763 Value *ASIV = ASI->getValue();
764 PointerMustAliases.insert(ASIV);
Tobias Grossera3574fb2011-07-06 19:20:02 +0000765
Chris Lattner29d92932008-05-22 00:53:38 +0000766 // Check that all of the pointers in the alias set have the same type. We
767 // cannot (yet) promote a memory location that is loaded and stored in
768 // different sizes.
Chris Lattnere4880642010-08-29 06:43:52 +0000769 if (SomePtr->getType() != ASIV->getType())
770 return;
Tobias Grossera3574fb2011-07-06 19:20:02 +0000771
Chris Lattnere4880642010-08-29 06:43:52 +0000772 for (Value::use_iterator UI = ASIV->use_begin(), UE = ASIV->use_end();
Chris Lattner19d9d432008-05-22 03:22:42 +0000773 UI != UE; ++UI) {
Chris Lattnere4880642010-08-29 06:43:52 +0000774 // Ignore instructions that are outside the loop.
Chris Lattner29d92932008-05-22 00:53:38 +0000775 Instruction *Use = dyn_cast<Instruction>(*UI);
Dan Gohman92329c72009-12-18 01:24:09 +0000776 if (!Use || !CurLoop->contains(Use))
Chris Lattner29d92932008-05-22 00:53:38 +0000777 continue;
Tobias Grossera3574fb2011-07-06 19:20:02 +0000778
Chris Lattnere4880642010-08-29 06:43:52 +0000779 // If there is an non-load/store instruction in the loop, we can't promote
780 // it.
Eli Friedman97671562011-08-15 20:52:09 +0000781 if (LoadInst *load = dyn_cast<LoadInst>(Use)) {
782 assert(!load->isVolatile() && "AST broken");
783 if (!load->isSimple())
784 return;
Tobias Grosserdf7102b2011-07-06 19:19:55 +0000785 } else if (StoreInst *store = dyn_cast<StoreInst>(Use)) {
Chris Lattner1dec0d22010-12-19 05:57:25 +0000786 // Stores *of* the pointer are not interesting, only stores *to* the
787 // pointer.
788 if (Use->getOperand(1) != ASIV)
789 continue;
Eli Friedman97671562011-08-15 20:52:09 +0000790 assert(!store->isVolatile() && "AST broken");
791 if (!store->isSimple())
792 return;
Eli Friedman73bfa4a2011-07-20 21:37:47 +0000793
794 // Note that we only check GuaranteedToExecute inside the store case
795 // so that we do not introduce stores where they did not exist before
796 // (which would break the LLVM concurrency model).
797
798 // If the alignment of this instruction allows us to specify a more
799 // restrictive (and performant) alignment and if we are sure this
800 // instruction will be executed, update the alignment.
801 // Larger is better, with the exception of 0 being the best alignment.
Eli Friedman97671562011-08-15 20:52:09 +0000802 unsigned InstAlignment = store->getAlignment();
Chris Lattner503fc1c2012-12-31 08:37:17 +0000803 if ((InstAlignment > Alignment || InstAlignment == 0) && Alignment != 0)
Eli Friedman73bfa4a2011-07-20 21:37:47 +0000804 if (isGuaranteedToExecute(*Use)) {
805 GuaranteedToExecute = true;
806 Alignment = InstAlignment;
807 }
808
809 if (!GuaranteedToExecute)
810 GuaranteedToExecute = isGuaranteedToExecute(*Use);
811
Chris Lattner0cccd762010-09-06 05:11:24 +0000812 } else
Chris Lattnere4880642010-08-29 06:43:52 +0000813 return; // Not a load or store.
Tobias Grosserdf7102b2011-07-06 19:19:55 +0000814
Chris Lattner503fc1c2012-12-31 08:37:17 +0000815 // Merge the TBAA tags.
816 if (LoopUses.empty()) {
817 // On the first load/store, just take its TBAA tag.
818 TBAATag = Use->getMetadata(LLVMContext::MD_tbaa);
Chris Lattner26130422013-01-05 16:44:07 +0000819 } else if (TBAATag) {
820 TBAATag = MDNode::getMostGenericTBAA(TBAATag,
821 Use->getMetadata(LLVMContext::MD_tbaa));
Chris Lattner503fc1c2012-12-31 08:37:17 +0000822 }
Chris Lattner26130422013-01-05 16:44:07 +0000823
Chris Lattnere4880642010-08-29 06:43:52 +0000824 LoopUses.push_back(Use);
825 }
826 }
Tobias Grosserdf7102b2011-07-06 19:19:55 +0000827
Chris Lattnere4880642010-08-29 06:43:52 +0000828 // If there isn't a guaranteed-to-execute instruction, we can't promote.
829 if (!GuaranteedToExecute)
830 return;
Tobias Grossera3574fb2011-07-06 19:20:02 +0000831
Chris Lattnere4880642010-08-29 06:43:52 +0000832 // Otherwise, this is safe to promote, lets do it!
Tobias Grossera3574fb2011-07-06 19:20:02 +0000833 DEBUG(dbgs() << "LICM: Promoting value stored to in loop: " <<*SomePtr<<'\n');
Chris Lattnere4880642010-08-29 06:43:52 +0000834 Changed = true;
835 ++NumPromoted;
836
Eli Friedmandda266d2011-05-27 20:31:51 +0000837 // Grab a debug location for the inserted loads/stores; given that the
838 // inserted loads/stores have little relation to the original loads/stores,
839 // this code just arbitrarily picks a location from one, since any debug
840 // location is better than none.
841 DebugLoc DL = LoopUses[0]->getDebugLoc();
842
Dan Gohman9d1747c2012-08-08 00:00:26 +0000843 // Figure out the loop exits and their insertion points, if this is the
844 // first promotion.
845 if (ExitBlocks.empty()) {
846 CurLoop->getUniqueExitBlocks(ExitBlocks);
847 InsertPts.resize(ExitBlocks.size());
848 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i)
849 InsertPts[i] = ExitBlocks[i]->getFirstInsertionPt();
850 }
Tobias Grossera3574fb2011-07-06 19:20:02 +0000851
Chris Lattnere4880642010-08-29 06:43:52 +0000852 // We use the SSAUpdater interface to insert phi nodes as required.
853 SmallVector<PHINode*, 16> NewPHIs;
854 SSAUpdater SSA(&NewPHIs);
Chris Lattnerdeaf55f2011-01-15 00:12:35 +0000855 LoopPromoter Promoter(SomePtr, LoopUses, SSA, PointerMustAliases, ExitBlocks,
Chris Lattner503fc1c2012-12-31 08:37:17 +0000856 InsertPts, *CurAST, DL, Alignment, TBAATag);
Tobias Grossera3574fb2011-07-06 19:20:02 +0000857
Chris Lattnerdeaf55f2011-01-15 00:12:35 +0000858 // Set up the preheader to have a definition of the value. It is the live-out
859 // value from the preheader that uses in the loop will use.
860 LoadInst *PreheaderLoad =
861 new LoadInst(SomePtr, SomePtr->getName()+".promoted",
862 Preheader->getTerminator());
Tobias Grosserdf7102b2011-07-06 19:19:55 +0000863 PreheaderLoad->setAlignment(Alignment);
Eli Friedmandda266d2011-05-27 20:31:51 +0000864 PreheaderLoad->setDebugLoc(DL);
Chris Lattner503fc1c2012-12-31 08:37:17 +0000865 if (TBAATag) PreheaderLoad->setMetadata(LLVMContext::MD_tbaa, TBAATag);
Chris Lattnere4880642010-08-29 06:43:52 +0000866 SSA.AddAvailableValue(Preheader, PreheaderLoad);
867
Chris Lattnerdeaf55f2011-01-15 00:12:35 +0000868 // Rewrite all the loads in the loop and remember all the definitions from
869 // stores in the loop.
870 Promoter.run(LoopUses);
Eli Friedman0e382192011-04-07 01:35:06 +0000871
872 // If the SSAUpdater didn't use the load in the preheader, just zap it now.
873 if (PreheaderLoad->use_empty())
874 PreheaderLoad->eraseFromParent();
Chris Lattnerf5e84aa2002-08-22 21:39:55 +0000875}
Devang Patel91d22c82007-07-31 08:01:41 +0000876
Chris Lattnere4880642010-08-29 06:43:52 +0000877
Devang Patel91d22c82007-07-31 08:01:41 +0000878/// cloneBasicBlockAnalysis - Simple Analysis hook. Clone alias set info.
879void LICM::cloneBasicBlockAnalysis(BasicBlock *From, BasicBlock *To, Loop *L) {
Chris Lattner4282e322010-08-29 17:46:00 +0000880 AliasSetTracker *AST = LoopToAliasSetMap.lookup(L);
Devang Patel91d22c82007-07-31 08:01:41 +0000881 if (!AST)
882 return;
883
884 AST->copyValue(From, To);
885}
886
887/// deleteAnalysisValue - Simple Analysis hook. Delete value V from alias
888/// set.
889void LICM::deleteAnalysisValue(Value *V, Loop *L) {
Chris Lattner4282e322010-08-29 17:46:00 +0000890 AliasSetTracker *AST = LoopToAliasSetMap.lookup(L);
Devang Patel91d22c82007-07-31 08:01:41 +0000891 if (!AST)
892 return;
893
894 AST->deleteValue(V);
895}