blob: 99bedce6c71dbe168486b23b1de5ab058482a1d3 [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"
Chris Lattner79066fa2007-01-30 23:46:24 +000035#include "llvm/Constants.h"
Chris Lattner2741c972004-05-23 21:20:19 +000036#include "llvm/DerivedTypes.h"
Torok Edwin9289ae82009-10-11 19:15:54 +000037#include "llvm/IntrinsicInst.h"
Chris Lattner2741c972004-05-23 21:20:19 +000038#include "llvm/Instructions.h"
Dan Gohmana8702ea2010-10-18 20:44:50 +000039#include "llvm/LLVMContext.h"
Chris Lattnerf5e84aa2002-08-22 21:39:55 +000040#include "llvm/Analysis/AliasAnalysis.h"
Chris Lattner0252e492003-03-03 23:32:45 +000041#include "llvm/Analysis/AliasSetTracker.h"
Chris Lattner2ac6e232010-08-31 23:00:16 +000042#include "llvm/Analysis/ConstantFolding.h"
43#include "llvm/Analysis/LoopInfo.h"
44#include "llvm/Analysis/LoopPass.h"
Chris Lattner952eaee2002-09-29 21:46:09 +000045#include "llvm/Analysis/Dominators.h"
Dan Gohmanf0426602011-12-14 23:49:11 +000046#include "llvm/Analysis/ValueTracking.h"
Chris Lattner0de5cad2010-08-29 18:22:25 +000047#include "llvm/Transforms/Utils/Local.h"
Chris Lattnera6a36f52010-08-29 04:55:06 +000048#include "llvm/Transforms/Utils/SSAUpdater.h"
Chad Rosieraab8e282011-12-02 01:26:24 +000049#include "llvm/Target/TargetData.h"
50#include "llvm/Target/TargetLibraryInfo.h"
Reid Spencer9133fe22007-02-05 23:32:05 +000051#include "llvm/Support/CFG.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000052#include "llvm/Support/CommandLine.h"
Daniel Dunbarce63ffb2009-07-25 00:23:56 +000053#include "llvm/Support/raw_ostream.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000054#include "llvm/Support/Debug.h"
55#include "llvm/ADT/Statistic.h"
Chris Lattnere0e734e2002-05-10 22:44:58 +000056#include <algorithm>
Chris Lattner92094b42003-12-09 17:18:00 +000057using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000058
Chris Lattner0e5f4992006-12-19 21:40:18 +000059STATISTIC(NumSunk , "Number of instructions sunk out of loop");
60STATISTIC(NumHoisted , "Number of instructions hoisted out of loop");
61STATISTIC(NumMovedLoads, "Number of load insts hoisted or sunk");
62STATISTIC(NumMovedCalls, "Number of call insts hoisted or sunk");
63STATISTIC(NumPromoted , "Number of memory locations promoted to registers");
64
Dan Gohman844731a2008-05-13 00:00:25 +000065static cl::opt<bool>
66DisablePromotion("disable-licm-promotion", cl::Hidden,
67 cl::desc("Disable memory promotion in LICM pass"));
Chris Lattner2e6e7412003-02-24 03:52:32 +000068
Dan Gohman844731a2008-05-13 00:00:25 +000069namespace {
Chris Lattner3e8b6632009-09-02 06:11:42 +000070 struct LICM : public LoopPass {
Nick Lewyckyecd94c82007-05-06 13:37:16 +000071 static char ID; // Pass identification, replacement for typeid
Owen Anderson081c34b2010-10-19 17:21:58 +000072 LICM() : LoopPass(ID) {
73 initializeLICMPass(*PassRegistry::getPassRegistry());
74 }
Devang Patel794fd752007-05-01 21:15:47 +000075
Devang Patel54959d62007-03-07 04:41:30 +000076 virtual bool runOnLoop(Loop *L, LPPassManager &LPM);
Chris Lattnere0e734e2002-05-10 22:44:58 +000077
Chris Lattner94170592002-09-26 16:52:07 +000078 /// This transformation requires natural loop information & requires that
79 /// loop preheaders be inserted into the CFG...
80 ///
Chris Lattnere0e734e2002-05-10 22:44:58 +000081 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattnercb2610e2002-10-21 20:00:28 +000082 AU.setPreservesCFG();
Owen Anderson3a2b58f2007-04-24 06:40:39 +000083 AU.addRequired<DominatorTree>();
Dan Gohman1e381fc2010-07-16 17:58:45 +000084 AU.addRequired<LoopInfo>();
85 AU.addRequiredID(LoopSimplifyID);
Chris Lattnerf5e84aa2002-08-22 21:39:55 +000086 AU.addRequired<AliasAnalysis>();
Chris Lattnere418ac82010-08-29 07:02:56 +000087 AU.addPreserved<AliasAnalysis>();
Dan Gohmana9b61e72010-11-17 20:50:07 +000088 AU.addPreserved("scalar-evolution");
Dan Gohman5c89b522009-09-08 15:45:00 +000089 AU.addPreservedID(LoopSimplifyID);
Chad Rosieraab8e282011-12-02 01:26:24 +000090 AU.addRequired<TargetLibraryInfo>();
Chris Lattnere0e734e2002-05-10 22:44:58 +000091 }
92
Dan Gohman747603e2007-04-17 18:21:36 +000093 bool doFinalization() {
Chris Lattner4282e322010-08-29 17:46:00 +000094 assert(LoopToAliasSetMap.empty() && "Didn't free loop alias sets");
Devang Patel54959d62007-03-07 04:41:30 +000095 return false;
96 }
97
Chris Lattnere0e734e2002-05-10 22:44:58 +000098 private:
Chris Lattner2e6e7412003-02-24 03:52:32 +000099 AliasAnalysis *AA; // Current AliasAnalysis information
Chris Lattner92094b42003-12-09 17:18:00 +0000100 LoopInfo *LI; // Current LoopInfo
Chris Lattner44e2bd32010-08-29 06:49:44 +0000101 DominatorTree *DT; // Dominator Tree for the current Loop.
Chris Lattner92094b42003-12-09 17:18:00 +0000102
Chad Rosieraab8e282011-12-02 01:26:24 +0000103 TargetData *TD; // TargetData for constant folding.
104 TargetLibraryInfo *TLI; // TargetLibraryInfo for constant folding.
105
Chris Lattner4282e322010-08-29 17:46:00 +0000106 // State that is updated as we process loops.
Chris Lattner2e6e7412003-02-24 03:52:32 +0000107 bool Changed; // Set to true when we change anything.
108 BasicBlock *Preheader; // The preheader block of the current loop...
109 Loop *CurLoop; // The current loop we are working on...
Chris Lattner0252e492003-03-03 23:32:45 +0000110 AliasSetTracker *CurAST; // AliasSet information for the current loop...
Nadav Rotem77654922012-09-04 10:25:04 +0000111 bool MayThrow; // The current loop contains an instruction which
112 // may throw, thus preventing code motion of
113 // instructions with side effects.
Chris Lattner4282e322010-08-29 17:46:00 +0000114 DenseMap<Loop*, AliasSetTracker*> LoopToAliasSetMap;
Chris Lattnere0e734e2002-05-10 22:44:58 +0000115
Devang Patel91d22c82007-07-31 08:01:41 +0000116 /// cloneBasicBlockAnalysis - Simple Analysis hook. Clone alias set info.
117 void cloneBasicBlockAnalysis(BasicBlock *From, BasicBlock *To, Loop *L);
118
119 /// deleteAnalysisValue - Simple Analysis hook. Delete value V from alias
120 /// set.
121 void deleteAnalysisValue(Value *V, Loop *L);
122
Chris Lattnere4365b22003-12-19 07:22:45 +0000123 /// SinkRegion - Walk the specified region of the CFG (defined by all blocks
124 /// dominated by the specified block, and that are in the current loop) in
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000125 /// reverse depth first order w.r.t the DominatorTree. This allows us to
Chris Lattnere4365b22003-12-19 07:22:45 +0000126 /// visit uses before definitions, allowing us to sink a loop body in one
127 /// pass without iteration.
128 ///
Devang Patel26042422007-06-04 00:32:22 +0000129 void SinkRegion(DomTreeNode *N);
Chris Lattnere4365b22003-12-19 07:22:45 +0000130
Chris Lattner952eaee2002-09-29 21:46:09 +0000131 /// HoistRegion - Walk the specified region of the CFG (defined by all
132 /// blocks dominated by the specified block, and that are in the current
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000133 /// loop) in depth first order w.r.t the DominatorTree. This allows us to
Misha Brukmancf00c4a2003-10-10 17:57:28 +0000134 /// visit definitions before uses, allowing us to hoist a loop body in one
Chris Lattner952eaee2002-09-29 21:46:09 +0000135 /// pass without iteration.
136 ///
Devang Patel26042422007-06-04 00:32:22 +0000137 void HoistRegion(DomTreeNode *N);
Chris Lattner952eaee2002-09-29 21:46:09 +0000138
Chris Lattnerb4613732002-09-29 22:26:07 +0000139 /// inSubLoop - Little predicate that returns true if the specified basic
140 /// block is in a subloop of the current one, not the current one itself.
Chris Lattner94170592002-09-26 16:52:07 +0000141 ///
Chris Lattnerb4613732002-09-29 22:26:07 +0000142 bool inSubLoop(BasicBlock *BB) {
143 assert(CurLoop->contains(BB) && "Only valid if BB is IN the loop");
Chris Lattner81a866d2011-01-02 18:53:08 +0000144 return LI->getLoopFor(BB) != CurLoop;
Chris Lattnere0e734e2002-05-10 22:44:58 +0000145 }
146
Chris Lattnera2706512003-12-10 06:41:05 +0000147 /// sink - When an instruction is found to only be used outside of the loop,
148 /// this function moves it to the exit blocks and patches up SSA form as
149 /// needed.
150 ///
151 void sink(Instruction &I);
152
Chris Lattner94170592002-09-26 16:52:07 +0000153 /// hoist - When an instruction is found to only use loop invariant operands
154 /// that is safe to hoist, this instruction is called to do the dirty work.
155 ///
Chris Lattner7e708292002-06-25 16:13:24 +0000156 void hoist(Instruction &I);
Chris Lattnere0e734e2002-05-10 22:44:58 +0000157
Chris Lattnera2706512003-12-10 06:41:05 +0000158 /// isSafeToExecuteUnconditionally - Only sink or hoist an instruction if it
159 /// is not a trapping instruction or if it is a trapping instruction and is
160 /// guaranteed to execute.
Tanya Lattner9966c032003-08-05 18:45:46 +0000161 ///
Chris Lattnera2706512003-12-10 06:41:05 +0000162 bool isSafeToExecuteUnconditionally(Instruction &I);
Tanya Lattner9966c032003-08-05 18:45:46 +0000163
Eli Friedman73bfa4a2011-07-20 21:37:47 +0000164 /// isGuaranteedToExecute - Check that the instruction is guaranteed to
165 /// execute.
166 ///
167 bool isGuaranteedToExecute(Instruction &I);
168
Chris Lattner94170592002-09-26 16:52:07 +0000169 /// pointerInvalidatedByLoop - Return true if the body of this loop may
170 /// store into the memory location pointed to by V.
Misha Brukmanfd939082005-04-21 23:48:37 +0000171 ///
Dan Gohman3da848b2010-10-19 22:54:46 +0000172 bool pointerInvalidatedByLoop(Value *V, uint64_t Size,
Dan Gohmana8702ea2010-10-18 20:44:50 +0000173 const MDNode *TBAAInfo) {
Chris Lattner0252e492003-03-03 23:32:45 +0000174 // Check to see if any of the basic blocks in CurLoop invalidate *V.
Dan Gohmana8702ea2010-10-18 20:44:50 +0000175 return CurAST->getAliasSetForPointer(V, Size, TBAAInfo).isMod();
Chris Lattner2e6e7412003-02-24 03:52:32 +0000176 }
Chris Lattnerf5e84aa2002-08-22 21:39:55 +0000177
Chris Lattnera2706512003-12-10 06:41:05 +0000178 bool canSinkOrHoistInst(Instruction &I);
Chris Lattnera2706512003-12-10 06:41:05 +0000179 bool isNotUsedInLoop(Instruction &I);
Chris Lattnere0e734e2002-05-10 22:44:58 +0000180
Dan Gohman9d1747c2012-08-08 00:00:26 +0000181 void PromoteAliasSet(AliasSet &AS,
182 SmallVectorImpl<BasicBlock*> &ExitBlocks,
183 SmallVectorImpl<Instruction*> &InsertPts);
Chris Lattnere0e734e2002-05-10 22:44:58 +0000184 };
185}
186
Dan Gohman844731a2008-05-13 00:00:25 +0000187char LICM::ID = 0;
Owen Anderson2ab36d32010-10-12 19:48:12 +0000188INITIALIZE_PASS_BEGIN(LICM, "licm", "Loop Invariant Code Motion", false, false)
189INITIALIZE_PASS_DEPENDENCY(DominatorTree)
190INITIALIZE_PASS_DEPENDENCY(LoopInfo)
Owen Anderson2ab36d32010-10-12 19:48:12 +0000191INITIALIZE_PASS_DEPENDENCY(LoopSimplify)
Chad Rosieraab8e282011-12-02 01:26:24 +0000192INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfo)
Owen Anderson2ab36d32010-10-12 19:48:12 +0000193INITIALIZE_AG_DEPENDENCY(AliasAnalysis)
194INITIALIZE_PASS_END(LICM, "licm", "Loop Invariant Code Motion", false, false)
Dan Gohman844731a2008-05-13 00:00:25 +0000195
Daniel Dunbar394f0442008-10-22 23:32:42 +0000196Pass *llvm::createLICMPass() { return new LICM(); }
Chris Lattnere0e734e2002-05-10 22:44:58 +0000197
Devang Patel8d246f02007-07-31 16:52:25 +0000198/// Hoist expressions out of the specified loop. Note, alias info for inner
Tobias Grossera3574fb2011-07-06 19:20:02 +0000199/// loop is not preserved so it is not a good idea to run LICM multiple
Devang Patel8d246f02007-07-31 16:52:25 +0000200/// times on one loop.
Chris Lattner94170592002-09-26 16:52:07 +0000201///
Devang Patel54959d62007-03-07 04:41:30 +0000202bool LICM::runOnLoop(Loop *L, LPPassManager &LPM) {
Chris Lattner2e6e7412003-02-24 03:52:32 +0000203 Changed = false;
Chris Lattnere0e734e2002-05-10 22:44:58 +0000204
Chris Lattner2e6e7412003-02-24 03:52:32 +0000205 // Get our Loop and Alias Analysis information...
206 LI = &getAnalysis<LoopInfo>();
Chris Lattnerf5e84aa2002-08-22 21:39:55 +0000207 AA = &getAnalysis<AliasAnalysis>();
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000208 DT = &getAnalysis<DominatorTree>();
Chris Lattnerf5e84aa2002-08-22 21:39:55 +0000209
Chad Rosieraab8e282011-12-02 01:26:24 +0000210 TD = getAnalysisIfAvailable<TargetData>();
211 TLI = &getAnalysis<TargetLibraryInfo>();
212
Devang Patel54959d62007-03-07 04:41:30 +0000213 CurAST = new AliasSetTracker(*AA);
Chris Lattner4282e322010-08-29 17:46:00 +0000214 // Collect Alias info from subloops.
Devang Patel54959d62007-03-07 04:41:30 +0000215 for (Loop::iterator LoopItr = L->begin(), LoopItrE = L->end();
216 LoopItr != LoopItrE; ++LoopItr) {
217 Loop *InnerL = *LoopItr;
Chris Lattner4282e322010-08-29 17:46:00 +0000218 AliasSetTracker *InnerAST = LoopToAliasSetMap[InnerL];
219 assert(InnerAST && "Where is my AST?");
Devang Patel54959d62007-03-07 04:41:30 +0000220
221 // What if InnerLoop was modified by other passes ?
222 CurAST->add(*InnerAST);
Tobias Grossera3574fb2011-07-06 19:20:02 +0000223
Chris Lattner4282e322010-08-29 17:46:00 +0000224 // Once we've incorporated the inner loop's AST into ours, we don't need the
225 // subloop's anymore.
226 delete InnerAST;
227 LoopToAliasSetMap.erase(InnerL);
Chris Lattner2e6e7412003-02-24 03:52:32 +0000228 }
Tobias Grossera3574fb2011-07-06 19:20:02 +0000229
Chris Lattnere0e734e2002-05-10 22:44:58 +0000230 CurLoop = L;
231
Chris Lattner99a57212002-09-26 19:40:25 +0000232 // Get the preheader block to move instructions into...
233 Preheader = L->getLoopPreheader();
Chris Lattner99a57212002-09-26 19:40:25 +0000234
Chris Lattner2e6e7412003-02-24 03:52:32 +0000235 // Loop over the body of this loop, looking for calls, invokes, and stores.
Chris Lattner0252e492003-03-03 23:32:45 +0000236 // Because subloops have already been incorporated into AST, we skip blocks in
Chris Lattner2e6e7412003-02-24 03:52:32 +0000237 // subloops.
238 //
Dan Gohman9b787632008-06-22 20:18:58 +0000239 for (Loop::block_iterator I = L->block_begin(), E = L->block_end();
240 I != E; ++I) {
241 BasicBlock *BB = *I;
Chris Lattner4282e322010-08-29 17:46:00 +0000242 if (LI->getLoopFor(BB) == L) // Ignore blocks in subloops.
Dan Gohman9b787632008-06-22 20:18:58 +0000243 CurAST->add(*BB); // Incorporate the specified basic block
244 }
Chris Lattner2e6e7412003-02-24 03:52:32 +0000245
Nadav Rotem77654922012-09-04 10:25:04 +0000246 MayThrow = false;
247 // TODO: We've already searched for instructions which may throw in subloops.
248 // We may want to reuse this information.
249 for (Loop::block_iterator BB = L->block_begin(), BBE = L->block_end();
250 (BB != BBE) && !MayThrow ; ++BB)
251 for (BasicBlock::iterator I = (*BB)->begin(), E = (*BB)->end();
252 (I != E) && !MayThrow; ++I)
253 MayThrow |= I->mayThrow();
254
Chris Lattnere0e734e2002-05-10 22:44:58 +0000255 // We want to visit all of the instructions in this loop... that are not parts
256 // of our subloops (they have already had their invariants hoisted out of
257 // their loop, into this loop, so there is no need to process the BODIES of
258 // the subloops).
259 //
Chris Lattner952eaee2002-09-29 21:46:09 +0000260 // Traverse the body of the loop in depth first order on the dominator tree so
261 // that we are guaranteed to see definitions before we see uses. This allows
Nick Lewyckyaf5cbc82007-08-18 15:08:56 +0000262 // us to sink instructions in one pass, without iteration. After sinking
Chris Lattnere4365b22003-12-19 07:22:45 +0000263 // instructions, we perform another pass to hoist them out of the loop.
Chris Lattner952eaee2002-09-29 21:46:09 +0000264 //
Dan Gohman03e896b2009-11-05 21:11:53 +0000265 if (L->hasDedicatedExits())
266 SinkRegion(DT->getNode(L->getHeader()));
267 if (Preheader)
268 HoistRegion(DT->getNode(L->getHeader()));
Chris Lattnere0e734e2002-05-10 22:44:58 +0000269
Chris Lattner2e6e7412003-02-24 03:52:32 +0000270 // Now that all loop invariants have been removed from the loop, promote any
Chris Lattnere4880642010-08-29 06:43:52 +0000271 // memory references to scalars that we can.
272 if (!DisablePromotion && Preheader && L->hasDedicatedExits()) {
Dan Gohman9d1747c2012-08-08 00:00:26 +0000273 SmallVector<BasicBlock *, 8> ExitBlocks;
274 SmallVector<Instruction *, 8> InsertPts;
275
Chris Lattnere4880642010-08-29 06:43:52 +0000276 // Loop over all of the alias sets in the tracker object.
277 for (AliasSetTracker::iterator I = CurAST->begin(), E = CurAST->end();
278 I != E; ++I)
Dan Gohman9d1747c2012-08-08 00:00:26 +0000279 PromoteAliasSet(*I, ExitBlocks, InsertPts);
Chris Lattnere4880642010-08-29 06:43:52 +0000280 }
Tobias Grossera3574fb2011-07-06 19:20:02 +0000281
Chris Lattnere0e734e2002-05-10 22:44:58 +0000282 // Clear out loops state information for the next iteration
283 CurLoop = 0;
Chris Lattner99a57212002-09-26 19:40:25 +0000284 Preheader = 0;
Devang Patel54959d62007-03-07 04:41:30 +0000285
Chris Lattner4282e322010-08-29 17:46:00 +0000286 // If this loop is nested inside of another one, save the alias information
287 // for when we process the outer loop.
288 if (L->getParentLoop())
289 LoopToAliasSetMap[L] = CurAST;
290 else
291 delete CurAST;
Devang Patel54959d62007-03-07 04:41:30 +0000292 return Changed;
Chris Lattnere0e734e2002-05-10 22:44:58 +0000293}
294
Chris Lattnere4365b22003-12-19 07:22:45 +0000295/// SinkRegion - Walk the specified region of the CFG (defined by all blocks
296/// dominated by the specified block, and that are in the current loop) in
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000297/// reverse depth first order w.r.t the DominatorTree. This allows us to visit
Chris Lattnere4365b22003-12-19 07:22:45 +0000298/// uses before definitions, allowing us to sink a loop body in one pass without
299/// iteration.
300///
Devang Patel26042422007-06-04 00:32:22 +0000301void LICM::SinkRegion(DomTreeNode *N) {
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000302 assert(N != 0 && "Null dominator tree node?");
303 BasicBlock *BB = N->getBlock();
Chris Lattnere4365b22003-12-19 07:22:45 +0000304
305 // If this subregion is not in the top level loop at all, exit.
306 if (!CurLoop->contains(BB)) return;
307
Chris Lattner0de5cad2010-08-29 18:22:25 +0000308 // We are processing blocks in reverse dfo, so process children first.
Devang Patel26042422007-06-04 00:32:22 +0000309 const std::vector<DomTreeNode*> &Children = N->getChildren();
Chris Lattnere4365b22003-12-19 07:22:45 +0000310 for (unsigned i = 0, e = Children.size(); i != e; ++i)
311 SinkRegion(Children[i]);
312
313 // Only need to process the contents of this block if it is not part of a
314 // subloop (which would already have been processed).
315 if (inSubLoop(BB)) return;
316
Chris Lattnera3df8a92003-12-19 08:18:16 +0000317 for (BasicBlock::iterator II = BB->end(); II != BB->begin(); ) {
318 Instruction &I = *--II;
Tobias Grossera3574fb2011-07-06 19:20:02 +0000319
Chris Lattner0de5cad2010-08-29 18:22:25 +0000320 // If the instruction is dead, we would try to sink it because it isn't used
321 // in the loop, instead, just delete it.
Benjamin Kramer8e0d1c02012-08-29 15:32:21 +0000322 if (isInstructionTriviallyDead(&I, TLI)) {
Chris Lattnercb7f6532010-08-29 18:42:23 +0000323 DEBUG(dbgs() << "LICM deleting dead inst: " << I << '\n');
Chris Lattner0de5cad2010-08-29 18:22:25 +0000324 ++II;
325 CurAST->deleteValue(&I);
326 I.eraseFromParent();
327 Changed = true;
328 continue;
329 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000330
Chris Lattnere4365b22003-12-19 07:22:45 +0000331 // Check to see if we can sink this instruction to the exit blocks
332 // of the loop. We can do this if the all users of the instruction are
333 // outside of the loop. In this case, it doesn't even matter if the
334 // operands of the instruction are loop invariant.
335 //
Chris Lattner70ac2dc2005-03-25 00:22:36 +0000336 if (isNotUsedInLoop(I) && canSinkOrHoistInst(I)) {
Chris Lattnera3df8a92003-12-19 08:18:16 +0000337 ++II;
Chris Lattnere4365b22003-12-19 07:22:45 +0000338 sink(I);
Chris Lattnera3df8a92003-12-19 08:18:16 +0000339 }
Chris Lattnere4365b22003-12-19 07:22:45 +0000340 }
341}
342
Chris Lattner952eaee2002-09-29 21:46:09 +0000343/// HoistRegion - Walk the specified region of the CFG (defined by all blocks
344/// dominated by the specified block, and that are in the current loop) in depth
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000345/// first order w.r.t the DominatorTree. This allows us to visit definitions
Chris Lattner952eaee2002-09-29 21:46:09 +0000346/// before uses, allowing us to hoist a loop body in one pass without iteration.
347///
Devang Patel26042422007-06-04 00:32:22 +0000348void LICM::HoistRegion(DomTreeNode *N) {
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000349 assert(N != 0 && "Null dominator tree node?");
350 BasicBlock *BB = N->getBlock();
Chris Lattner952eaee2002-09-29 21:46:09 +0000351
Chris Lattnerb4613732002-09-29 22:26:07 +0000352 // If this subregion is not in the top level loop at all, exit.
Chris Lattnered6dfc22003-12-09 19:32:44 +0000353 if (!CurLoop->contains(BB)) return;
Chris Lattner952eaee2002-09-29 21:46:09 +0000354
Chris Lattnera2706512003-12-10 06:41:05 +0000355 // Only need to process the contents of this block if it is not part of a
356 // subloop (which would already have been processed).
Chris Lattnered6dfc22003-12-09 19:32:44 +0000357 if (!inSubLoop(BB))
Chris Lattnera2706512003-12-10 06:41:05 +0000358 for (BasicBlock::iterator II = BB->begin(), E = BB->end(); II != E; ) {
359 Instruction &I = *II++;
Misha Brukmanfd939082005-04-21 23:48:37 +0000360
Chris Lattner2ac6e232010-08-31 23:00:16 +0000361 // Try constant folding this instruction. If all the operands are
362 // constants, it is technically hoistable, but it would be better to just
363 // fold it.
Chad Rosieraab8e282011-12-02 01:26:24 +0000364 if (Constant *C = ConstantFoldInstruction(&I, TD, TLI)) {
Chris Lattner2ac6e232010-08-31 23:00:16 +0000365 DEBUG(dbgs() << "LICM folding inst: " << I << " --> " << *C << '\n');
366 CurAST->copyValue(&I, C);
367 CurAST->deleteValue(&I);
368 I.replaceAllUsesWith(C);
369 I.eraseFromParent();
370 continue;
371 }
Tobias Grossera3574fb2011-07-06 19:20:02 +0000372
Chris Lattnere4365b22003-12-19 07:22:45 +0000373 // Try hoisting the instruction out to the preheader. We can only do this
374 // if all of the operands of the instruction are loop invariant and if it
375 // is safe to hoist the instruction.
376 //
Chris Lattneradc79912010-09-06 01:05:37 +0000377 if (CurLoop->hasLoopInvariantOperands(&I) && canSinkOrHoistInst(I) &&
Chris Lattnere4365b22003-12-19 07:22:45 +0000378 isSafeToExecuteUnconditionally(I))
Chris Lattner3c80a512006-06-26 19:10:05 +0000379 hoist(I);
Chris Lattner2ac6e232010-08-31 23:00:16 +0000380 }
Chris Lattner952eaee2002-09-29 21:46:09 +0000381
Devang Patel26042422007-06-04 00:32:22 +0000382 const std::vector<DomTreeNode*> &Children = N->getChildren();
Chris Lattner952eaee2002-09-29 21:46:09 +0000383 for (unsigned i = 0, e = Children.size(); i != e; ++i)
Chris Lattner56b7ee22004-06-19 20:23:35 +0000384 HoistRegion(Children[i]);
Chris Lattner952eaee2002-09-29 21:46:09 +0000385}
386
Chris Lattnera2706512003-12-10 06:41:05 +0000387/// canSinkOrHoistInst - Return true if the hoister and sinker can handle this
388/// instruction.
389///
390bool LICM::canSinkOrHoistInst(Instruction &I) {
Chris Lattnered6dfc22003-12-09 19:32:44 +0000391 // Loads have extra constraints we have to verify before we can hoist them.
392 if (LoadInst *LI = dyn_cast<LoadInst>(&I)) {
Eli Friedman97671562011-08-15 20:52:09 +0000393 if (!LI->isUnordered())
394 return false; // Don't hoist volatile/atomic loads!
Chris Lattnered6dfc22003-12-09 19:32:44 +0000395
Chris Lattner967948b2008-07-23 05:06:28 +0000396 // Loads from constant memory are always safe to move, even if they end up
397 // in the same alias set as something that ends up being modified.
Dan Gohmandab249b2009-11-19 19:00:10 +0000398 if (AA->pointsToConstantMemory(LI->getOperand(0)))
Chris Lattner967948b2008-07-23 05:06:28 +0000399 return true;
Benjamin Kramer85dadec2011-12-06 11:50:26 +0000400 if (LI->getMetadata("invariant.load"))
Pete Cooper2d76a782011-11-08 19:30:00 +0000401 return true;
Tobias Grossera3574fb2011-07-06 19:20:02 +0000402
Chris Lattnered6dfc22003-12-09 19:32:44 +0000403 // Don't hoist loads which have may-aliased stores in loop.
Dan Gohman3da848b2010-10-19 22:54:46 +0000404 uint64_t Size = 0;
Chris Lattnerf3e1d692004-11-26 21:20:09 +0000405 if (LI->getType()->isSized())
Dan Gohmanfc2a3ed2009-07-25 00:48:42 +0000406 Size = AA->getTypeStoreSize(LI->getType());
Dan Gohmana8702ea2010-10-18 20:44:50 +0000407 return !pointerInvalidatedByLoop(LI->getOperand(0), Size,
408 LI->getMetadata(LLVMContext::MD_tbaa));
Chris Lattner118dd0c2004-03-15 04:11:30 +0000409 } else if (CallInst *CI = dyn_cast<CallInst>(&I)) {
Eli Friedman30a121b2011-05-27 18:37:52 +0000410 // Don't sink or hoist dbg info; it's legal, but not useful.
411 if (isa<DbgInfoIntrinsic>(I))
412 return false;
413
414 // Handle simple cases by querying alias analysis.
Duncan Sandsdff67102007-12-01 07:51:45 +0000415 AliasAnalysis::ModRefBehavior Behavior = AA->getModRefBehavior(CI);
416 if (Behavior == AliasAnalysis::DoesNotAccessMemory)
417 return true;
Dan Gohmancd93f3b2010-11-09 19:58:21 +0000418 if (AliasAnalysis::onlyReadsMemory(Behavior)) {
Duncan Sandsdff67102007-12-01 07:51:45 +0000419 // If this call only reads from memory and there are no writes to memory
420 // in the loop, we can hoist or sink the call as appropriate.
421 bool FoundMod = false;
422 for (AliasSetTracker::iterator I = CurAST->begin(), E = CurAST->end();
423 I != E; ++I) {
424 AliasSet &AS = *I;
425 if (!AS.isForwardingAliasSet() && AS.isMod()) {
426 FoundMod = true;
427 break;
Chris Lattner118dd0c2004-03-15 04:11:30 +0000428 }
Chris Lattner118dd0c2004-03-15 04:11:30 +0000429 }
Duncan Sandsdff67102007-12-01 07:51:45 +0000430 if (!FoundMod) return true;
Chris Lattner118dd0c2004-03-15 04:11:30 +0000431 }
432
Nadav Rotem77654922012-09-04 10:25:04 +0000433 // FIXME: This should use mod/ref information to see if we can hoist or
434 // sink the call.
Misha Brukmanfd939082005-04-21 23:48:37 +0000435
Chris Lattner118dd0c2004-03-15 04:11:30 +0000436 return false;
Chris Lattnered6dfc22003-12-09 19:32:44 +0000437 }
438
Nadav Rotem77654922012-09-04 10:25:04 +0000439 // Only these instructions are hoistable/sinkable.
440 bool HoistableKind = (isa<BinaryOperator>(I) || isa<CastInst>(I) ||
441 isa<SelectInst>(I) || isa<GetElementPtrInst>(I) ||
442 isa<CmpInst>(I) || isa<InsertElementInst>(I) ||
443 isa<ExtractElementInst>(I) ||
444 isa<ShuffleVectorInst>(I));
445 if (!HoistableKind)
446 return false;
447
448 return isSafeToExecuteUnconditionally(I);
Chris Lattnera2706512003-12-10 06:41:05 +0000449}
450
451/// isNotUsedInLoop - Return true if the only users of this instruction are
452/// outside of the loop. If this is true, we can sink the instruction to the
453/// exit blocks of the loop.
454///
455bool LICM::isNotUsedInLoop(Instruction &I) {
Chris Lattnerea9403f2003-12-11 22:23:32 +0000456 for (Value::use_iterator UI = I.use_begin(), E = I.use_end(); UI != E; ++UI) {
457 Instruction *User = cast<Instruction>(*UI);
458 if (PHINode *PN = dyn_cast<PHINode>(User)) {
459 // PHI node uses occur in predecessor blocks!
460 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
461 if (PN->getIncomingValue(i) == &I)
462 if (CurLoop->contains(PN->getIncomingBlock(i)))
463 return false;
Dan Gohman92329c72009-12-18 01:24:09 +0000464 } else if (CurLoop->contains(User)) {
Chris Lattnera2706512003-12-10 06:41:05 +0000465 return false;
Chris Lattnerea9403f2003-12-11 22:23:32 +0000466 }
467 }
Chris Lattnera2706512003-12-10 06:41:05 +0000468 return true;
469}
470
471
Chris Lattnera2706512003-12-10 06:41:05 +0000472/// sink - When an instruction is found to only be used outside of the loop,
Chris Lattnera3df8a92003-12-19 08:18:16 +0000473/// this function moves it to the exit blocks and patches up SSA form as needed.
474/// This method is guaranteed to remove the original instruction from its
475/// position, and may either delete it or move it to outside of the loop.
Chris Lattnera2706512003-12-10 06:41:05 +0000476///
477void LICM::sink(Instruction &I) {
Nick Lewycky39a38312010-07-30 20:27:01 +0000478 DEBUG(dbgs() << "LICM sinking instruction: " << I << "\n");
Chris Lattnera2706512003-12-10 06:41:05 +0000479
Devang Patelb7211a22007-08-21 00:31:24 +0000480 SmallVector<BasicBlock*, 8> ExitBlocks;
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000481 CurLoop->getUniqueExitBlocks(ExitBlocks);
Chris Lattnerdf45bd32003-12-10 20:43:29 +0000482
483 if (isa<LoadInst>(I)) ++NumMovedLoads;
Chris Lattner118dd0c2004-03-15 04:11:30 +0000484 else if (isa<CallInst>(I)) ++NumMovedCalls;
Chris Lattnerdf45bd32003-12-10 20:43:29 +0000485 ++NumSunk;
486 Changed = true;
487
Chris Lattnera2706512003-12-10 06:41:05 +0000488 // The case where there is only a single exit node of this loop is common
489 // enough that we handle it as a special (more efficient) case. It is more
490 // efficient to handle because there are no PHI nodes that need to be placed.
491 if (ExitBlocks.size() == 1) {
Eli Friedman30a121b2011-05-27 18:37:52 +0000492 if (!DT->dominates(I.getParent(), ExitBlocks[0])) {
Chris Lattnera2706512003-12-10 06:41:05 +0000493 // Instruction is not used, just delete it.
Chris Lattner2741c972004-05-23 21:20:19 +0000494 CurAST->deleteValue(&I);
Devang Patel1bf5ebc2009-10-13 21:41:20 +0000495 // If I has users in unreachable blocks, eliminate.
Devang Patel228ebd02009-10-13 22:56:32 +0000496 // If I is not void type then replaceAllUsesWith undef.
497 // This allows ValueHandlers and custom metadata to adjust itself.
Chris Lattnera6a36f52010-08-29 04:55:06 +0000498 if (!I.use_empty())
Devang Patel228ebd02009-10-13 22:56:32 +0000499 I.replaceAllUsesWith(UndefValue::get(I.getType()));
Chris Lattner3c80a512006-06-26 19:10:05 +0000500 I.eraseFromParent();
Chris Lattnera2706512003-12-10 06:41:05 +0000501 } else {
502 // Move the instruction to the start of the exit block, after any PHI
503 // nodes in it.
Bill Wendling26665de2011-08-18 23:42:36 +0000504 I.moveBefore(ExitBlocks[0]->getFirstInsertionPt());
Chris Lattner4282e322010-08-29 17:46:00 +0000505
506 // This instruction is no longer in the AST for the current loop, because
507 // we just sunk it out of the loop. If we just sunk it into an outer
508 // loop, we will rediscover the operation when we process it.
509 CurAST->deleteValue(&I);
Chris Lattnera2706512003-12-10 06:41:05 +0000510 }
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000511 return;
512 }
Tobias Grossera3574fb2011-07-06 19:20:02 +0000513
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000514 if (ExitBlocks.empty()) {
Chris Lattnera2706512003-12-10 06:41:05 +0000515 // The instruction is actually dead if there ARE NO exit blocks.
Chris Lattner2741c972004-05-23 21:20:19 +0000516 CurAST->deleteValue(&I);
Devang Patel1bf5ebc2009-10-13 21:41:20 +0000517 // If I has users in unreachable blocks, eliminate.
Devang Patel228ebd02009-10-13 22:56:32 +0000518 // If I is not void type then replaceAllUsesWith undef.
519 // This allows ValueHandlers and custom metadata to adjust itself.
Chris Lattnera6a36f52010-08-29 04:55:06 +0000520 if (!I.use_empty())
Devang Patel228ebd02009-10-13 22:56:32 +0000521 I.replaceAllUsesWith(UndefValue::get(I.getType()));
Chris Lattner3c80a512006-06-26 19:10:05 +0000522 I.eraseFromParent();
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000523 return;
524 }
Tobias Grossera3574fb2011-07-06 19:20:02 +0000525
Chris Lattnera6a36f52010-08-29 04:55:06 +0000526 // Otherwise, if we have multiple exits, use the SSAUpdater to do all of the
527 // hard work of inserting PHI nodes as necessary.
528 SmallVector<PHINode*, 8> NewPHIs;
529 SSAUpdater SSA(&NewPHIs);
Tobias Grossera3574fb2011-07-06 19:20:02 +0000530
Chris Lattnera6a36f52010-08-29 04:55:06 +0000531 if (!I.use_empty())
Duncan Sandsfc6e29d2010-09-02 08:14:03 +0000532 SSA.Initialize(I.getType(), I.getName());
Tobias Grossera3574fb2011-07-06 19:20:02 +0000533
Chris Lattnera6a36f52010-08-29 04:55:06 +0000534 // Insert a copy of the instruction in each exit block of the loop that is
535 // dominated by the instruction. Each exit block is known to only be in the
536 // ExitBlocks list once.
537 BasicBlock *InstOrigBB = I.getParent();
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000538 unsigned NumInserted = 0;
Tobias Grossera3574fb2011-07-06 19:20:02 +0000539
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000540 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i) {
541 BasicBlock *ExitBlock = ExitBlocks[i];
Tobias Grossera3574fb2011-07-06 19:20:02 +0000542
Chris Lattner83fc5842011-01-02 18:45:39 +0000543 if (!DT->dominates(InstOrigBB, ExitBlock))
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000544 continue;
Tobias Grossera3574fb2011-07-06 19:20:02 +0000545
Chris Lattnera6a36f52010-08-29 04:55:06 +0000546 // Insert the code after the last PHI node.
Bill Wendling26665de2011-08-18 23:42:36 +0000547 BasicBlock::iterator InsertPt = ExitBlock->getFirstInsertionPt();
Tobias Grossera3574fb2011-07-06 19:20:02 +0000548
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000549 // If this is the first exit block processed, just move the original
550 // instruction, otherwise clone the original instruction and insert
551 // the copy.
552 Instruction *New;
Chris Lattnera6a36f52010-08-29 04:55:06 +0000553 if (NumInserted++ == 0) {
554 I.moveBefore(InsertPt);
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000555 New = &I;
556 } else {
557 New = I.clone();
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000558 if (!I.getName().empty())
559 New->setName(I.getName()+".le");
560 ExitBlock->getInstList().insert(InsertPt, New);
Chris Lattnereaa24302004-07-27 07:38:32 +0000561 }
Tobias Grossera3574fb2011-07-06 19:20:02 +0000562
Chris Lattnera6a36f52010-08-29 04:55:06 +0000563 // Now that we have inserted the instruction, inform SSAUpdater.
564 if (!I.use_empty())
565 SSA.AddAvailableValue(ExitBlock, New);
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000566 }
Tobias Grossera3574fb2011-07-06 19:20:02 +0000567
Eli Friedmanc955d212011-05-27 18:04:04 +0000568 // If the instruction doesn't dominate any exit blocks, it must be dead.
569 if (NumInserted == 0) {
570 CurAST->deleteValue(&I);
571 if (!I.use_empty())
572 I.replaceAllUsesWith(UndefValue::get(I.getType()));
573 I.eraseFromParent();
574 return;
575 }
Tobias Grossera3574fb2011-07-06 19:20:02 +0000576
Chris Lattnera6a36f52010-08-29 04:55:06 +0000577 // Next, rewrite uses of the instruction, inserting PHI nodes as needed.
578 for (Value::use_iterator UI = I.use_begin(), UE = I.use_end(); UI != UE; ) {
579 // Grab the use before incrementing the iterator.
580 Use &U = UI.getUse();
581 // Increment the iterator before removing the use from the list.
582 ++UI;
583 SSA.RewriteUseAfterInsertions(U);
Chris Lattnera2706512003-12-10 06:41:05 +0000584 }
Tobias Grossera3574fb2011-07-06 19:20:02 +0000585
Chris Lattnera6a36f52010-08-29 04:55:06 +0000586 // Update CurAST for NewPHIs if I had pointer type.
587 if (I.getType()->isPointerTy())
588 for (unsigned i = 0, e = NewPHIs.size(); i != e; ++i)
Chris Lattner9c282012010-09-02 22:19:10 +0000589 CurAST->copyValue(&I, NewPHIs[i]);
Tobias Grossera3574fb2011-07-06 19:20:02 +0000590
Chris Lattner98917502010-08-29 18:00:00 +0000591 // Finally, remove the instruction from CurAST. It is no longer in the loop.
592 CurAST->deleteValue(&I);
Chris Lattnera2706512003-12-10 06:41:05 +0000593}
Chris Lattner952eaee2002-09-29 21:46:09 +0000594
Chris Lattner94170592002-09-26 16:52:07 +0000595/// hoist - When an instruction is found to only use loop invariant operands
596/// that is safe to hoist, this instruction is called to do the dirty work.
597///
Chris Lattnera2706512003-12-10 06:41:05 +0000598void LICM::hoist(Instruction &I) {
David Greenef1582692010-01-05 01:27:30 +0000599 DEBUG(dbgs() << "LICM hoisting to " << Preheader->getName() << ": "
Evan Cheng67d1d1f2009-10-12 22:25:23 +0000600 << I << "\n");
Chris Lattnered6dfc22003-12-09 19:32:44 +0000601
Chris Lattnerd9a5dae2010-08-29 18:18:40 +0000602 // Move the new node to the Preheader, before its terminator.
603 I.moveBefore(Preheader->getTerminator());
Misha Brukmanfd939082005-04-21 23:48:37 +0000604
Chris Lattnera2706512003-12-10 06:41:05 +0000605 if (isa<LoadInst>(I)) ++NumMovedLoads;
Chris Lattner118dd0c2004-03-15 04:11:30 +0000606 else if (isa<CallInst>(I)) ++NumMovedCalls;
Chris Lattner9646e6b2002-09-26 16:38:03 +0000607 ++NumHoisted;
Chris Lattnere0e734e2002-05-10 22:44:58 +0000608 Changed = true;
609}
610
Chris Lattnera2706512003-12-10 06:41:05 +0000611/// isSafeToExecuteUnconditionally - Only sink or hoist an instruction if it is
612/// not a trapping instruction or if it is a trapping instruction and is
613/// guaranteed to execute.
Tanya Lattner9966c032003-08-05 18:45:46 +0000614///
Chris Lattnera2706512003-12-10 06:41:05 +0000615bool LICM::isSafeToExecuteUnconditionally(Instruction &Inst) {
Chris Lattner92094b42003-12-09 17:18:00 +0000616 // If it is not a trapping instruction, it is always safe to hoist.
Dan Gohmanf0426602011-12-14 23:49:11 +0000617 if (isSafeToSpeculativelyExecute(&Inst))
Eli Friedman0b79a772009-07-17 04:28:42 +0000618 return true;
Misha Brukmanfd939082005-04-21 23:48:37 +0000619
Eli Friedman73bfa4a2011-07-20 21:37:47 +0000620 return isGuaranteedToExecute(Inst);
621}
622
623bool LICM::isGuaranteedToExecute(Instruction &Inst) {
Nadav Rotem77654922012-09-04 10:25:04 +0000624
625 // Somewhere in this loop there is an instruction which may throw and make us
626 // exit the loop.
627 if (MayThrow)
628 return false;
629
Chris Lattner92094b42003-12-09 17:18:00 +0000630 // Otherwise we have to check to make sure that the instruction dominates all
631 // of the exit blocks. If it doesn't, then there is a path out of the loop
632 // which does not execute this instruction, so we can't hoist it.
Tanya Lattner9966c032003-08-05 18:45:46 +0000633
Chris Lattner92094b42003-12-09 17:18:00 +0000634 // If the instruction is in the header block for the loop (which is very
635 // common), it is always guaranteed to dominate the exit blocks. Since this
636 // is a common case, and can save some work, check it now.
Chris Lattnera2706512003-12-10 06:41:05 +0000637 if (Inst.getParent() == CurLoop->getHeader())
Chris Lattner92094b42003-12-09 17:18:00 +0000638 return true;
Tanya Lattner9966c032003-08-05 18:45:46 +0000639
Chris Lattner92094b42003-12-09 17:18:00 +0000640 // Get the exit blocks for the current loop.
Devang Patelb7211a22007-08-21 00:31:24 +0000641 SmallVector<BasicBlock*, 8> ExitBlocks;
Chris Lattner5fa802f2004-04-18 22:15:13 +0000642 CurLoop->getExitBlocks(ExitBlocks);
Chris Lattner92094b42003-12-09 17:18:00 +0000643
Chris Lattner83fc5842011-01-02 18:45:39 +0000644 // Verify that the block dominates each of the exit blocks of the loop.
Chris Lattnera2706512003-12-10 06:41:05 +0000645 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i)
Chris Lattner83fc5842011-01-02 18:45:39 +0000646 if (!DT->dominates(Inst.getParent(), ExitBlocks[i]))
Chris Lattnera2706512003-12-10 06:41:05 +0000647 return false;
Misha Brukmanfd939082005-04-21 23:48:37 +0000648
Nick Lewycky4056a732012-05-01 04:03:01 +0000649 // As a degenerate case, if the loop is statically infinite then we haven't
650 // proven anything since there are no exit blocks.
651 if (ExitBlocks.empty())
652 return false;
653
Tanya Lattner9966c032003-08-05 18:45:46 +0000654 return true;
655}
656
Chris Lattnerdeaf55f2011-01-15 00:12:35 +0000657namespace {
658 class LoopPromoter : public LoadAndStorePromoter {
659 Value *SomePtr; // Designated pointer to store to.
660 SmallPtrSet<Value*, 4> &PointerMustAliases;
661 SmallVectorImpl<BasicBlock*> &LoopExitBlocks;
Dan Gohman9d1747c2012-08-08 00:00:26 +0000662 SmallVectorImpl<Instruction*> &LoopInsertPts;
Chris Lattnerdeaf55f2011-01-15 00:12:35 +0000663 AliasSetTracker &AST;
Eli Friedmandda266d2011-05-27 20:31:51 +0000664 DebugLoc DL;
Tobias Grosserdf7102b2011-07-06 19:19:55 +0000665 int Alignment;
Chris Lattnerdeaf55f2011-01-15 00:12:35 +0000666 public:
667 LoopPromoter(Value *SP,
668 const SmallVectorImpl<Instruction*> &Insts, SSAUpdater &S,
669 SmallPtrSet<Value*, 4> &PMA,
Dan Gohman9d1747c2012-08-08 00:00:26 +0000670 SmallVectorImpl<BasicBlock*> &LEB,
671 SmallVectorImpl<Instruction*> &LIP,
672 AliasSetTracker &ast, DebugLoc dl, int alignment)
Devang Patel231a5ab2011-07-06 21:09:55 +0000673 : LoadAndStorePromoter(Insts, S), SomePtr(SP),
Dan Gohman9d1747c2012-08-08 00:00:26 +0000674 PointerMustAliases(PMA), LoopExitBlocks(LEB), LoopInsertPts(LIP),
675 AST(ast), DL(dl), Alignment(alignment) {}
Tobias Grossera3574fb2011-07-06 19:20:02 +0000676
Chris Lattnerdeaf55f2011-01-15 00:12:35 +0000677 virtual bool isInstInList(Instruction *I,
678 const SmallVectorImpl<Instruction*> &) const {
679 Value *Ptr;
680 if (LoadInst *LI = dyn_cast<LoadInst>(I))
681 Ptr = LI->getOperand(0);
682 else
683 Ptr = cast<StoreInst>(I)->getPointerOperand();
684 return PointerMustAliases.count(Ptr);
685 }
Tobias Grossera3574fb2011-07-06 19:20:02 +0000686
Chris Lattnerdeaf55f2011-01-15 00:12:35 +0000687 virtual void doExtraRewritesBeforeFinalDeletion() const {
688 // Insert stores after in the loop exit blocks. Each exit block gets a
689 // store of the live-out values that feed them. Since we've already told
690 // the SSA updater about the defs in the loop and the preheader
691 // definition, it is all set and we can start using it.
692 for (unsigned i = 0, e = LoopExitBlocks.size(); i != e; ++i) {
693 BasicBlock *ExitBlock = LoopExitBlocks[i];
694 Value *LiveInValue = SSA.GetValueInMiddleOfBlock(ExitBlock);
Dan Gohman9d1747c2012-08-08 00:00:26 +0000695 Instruction *InsertPos = LoopInsertPts[i];
Eli Friedmandda266d2011-05-27 20:31:51 +0000696 StoreInst *NewSI = new StoreInst(LiveInValue, SomePtr, InsertPos);
Tobias Grosserdf7102b2011-07-06 19:19:55 +0000697 NewSI->setAlignment(Alignment);
Eli Friedmandda266d2011-05-27 20:31:51 +0000698 NewSI->setDebugLoc(DL);
Chris Lattnerdeaf55f2011-01-15 00:12:35 +0000699 }
700 }
701
702 virtual void replaceLoadWithValue(LoadInst *LI, Value *V) const {
703 // Update alias analysis.
704 AST.copyValue(LI, V);
705 }
706 virtual void instructionDeleted(Instruction *I) const {
707 AST.deleteValue(I);
708 }
709 };
710} // end anon namespace
711
Chris Lattnere4880642010-08-29 06:43:52 +0000712/// PromoteAliasSet - Try to promote memory values to scalars by sinking
Chris Lattner2e6e7412003-02-24 03:52:32 +0000713/// stores out of the loop and moving loads to before the loop. We do this by
714/// looping over the stores in the loop, looking for stores to Must pointers
Chris Lattnere4880642010-08-29 06:43:52 +0000715/// which are loop invariant.
Chris Lattner2e6e7412003-02-24 03:52:32 +0000716///
Dan Gohman9d1747c2012-08-08 00:00:26 +0000717void LICM::PromoteAliasSet(AliasSet &AS,
718 SmallVectorImpl<BasicBlock*> &ExitBlocks,
719 SmallVectorImpl<Instruction*> &InsertPts) {
Chris Lattnere4880642010-08-29 06:43:52 +0000720 // We can promote this alias set if it has a store, if it is a "Must" alias
721 // set, if the pointer is loop invariant, and if we are not eliminating any
722 // volatile loads or stores.
723 if (AS.isForwardingAliasSet() || !AS.isMod() || !AS.isMustAlias() ||
724 AS.isVolatile() || !CurLoop->isLoopInvariant(AS.begin()->getValue()))
725 return;
Tobias Grossera3574fb2011-07-06 19:20:02 +0000726
Chris Lattnere4880642010-08-29 06:43:52 +0000727 assert(!AS.empty() &&
728 "Must alias set should have at least one pointer element in it!");
729 Value *SomePtr = AS.begin()->getValue();
Chris Lattner2e6e7412003-02-24 03:52:32 +0000730
Chris Lattnere4880642010-08-29 06:43:52 +0000731 // It isn't safe to promote a load/store from the loop if the load/store is
732 // conditional. For example, turning:
Chris Lattner2e6e7412003-02-24 03:52:32 +0000733 //
Chris Lattnere4880642010-08-29 06:43:52 +0000734 // for () { if (c) *P += 1; }
Chris Lattner2e6e7412003-02-24 03:52:32 +0000735 //
Chris Lattnere4880642010-08-29 06:43:52 +0000736 // into:
737 //
738 // tmp = *P; for () { if (c) tmp +=1; } *P = tmp;
739 //
740 // is not safe, because *P may only be valid to access if 'c' is true.
Tobias Grossera3574fb2011-07-06 19:20:02 +0000741 //
Chris Lattnere4880642010-08-29 06:43:52 +0000742 // It is safe to promote P if all uses are direct load/stores and if at
743 // least one is guaranteed to be executed.
744 bool GuaranteedToExecute = false;
Tobias Grosserdf7102b2011-07-06 19:19:55 +0000745
Chris Lattnere4880642010-08-29 06:43:52 +0000746 SmallVector<Instruction*, 64> LoopUses;
747 SmallPtrSet<Value*, 4> PointerMustAliases;
Chris Lattner2e6e7412003-02-24 03:52:32 +0000748
Tobias Grosserdf7102b2011-07-06 19:19:55 +0000749 // We start with an alignment of one and try to find instructions that allow
750 // us to prove better alignment.
751 unsigned Alignment = 1;
752
Chris Lattnere4880642010-08-29 06:43:52 +0000753 // Check that all of the pointers in the alias set have the same type. We
754 // cannot (yet) promote a memory location that is loaded and stored in
755 // different sizes.
756 for (AliasSet::iterator ASI = AS.begin(), E = AS.end(); ASI != E; ++ASI) {
757 Value *ASIV = ASI->getValue();
758 PointerMustAliases.insert(ASIV);
Tobias Grossera3574fb2011-07-06 19:20:02 +0000759
Chris Lattner29d92932008-05-22 00:53:38 +0000760 // Check that all of the pointers in the alias set have the same type. We
761 // cannot (yet) promote a memory location that is loaded and stored in
762 // different sizes.
Chris Lattnere4880642010-08-29 06:43:52 +0000763 if (SomePtr->getType() != ASIV->getType())
764 return;
Tobias Grossera3574fb2011-07-06 19:20:02 +0000765
Chris Lattnere4880642010-08-29 06:43:52 +0000766 for (Value::use_iterator UI = ASIV->use_begin(), UE = ASIV->use_end();
Chris Lattner19d9d432008-05-22 03:22:42 +0000767 UI != UE; ++UI) {
Chris Lattnere4880642010-08-29 06:43:52 +0000768 // Ignore instructions that are outside the loop.
Chris Lattner29d92932008-05-22 00:53:38 +0000769 Instruction *Use = dyn_cast<Instruction>(*UI);
Dan Gohman92329c72009-12-18 01:24:09 +0000770 if (!Use || !CurLoop->contains(Use))
Chris Lattner29d92932008-05-22 00:53:38 +0000771 continue;
Tobias Grossera3574fb2011-07-06 19:20:02 +0000772
Chris Lattnere4880642010-08-29 06:43:52 +0000773 // If there is an non-load/store instruction in the loop, we can't promote
774 // it.
Eli Friedman97671562011-08-15 20:52:09 +0000775 if (LoadInst *load = dyn_cast<LoadInst>(Use)) {
776 assert(!load->isVolatile() && "AST broken");
777 if (!load->isSimple())
778 return;
Tobias Grosserdf7102b2011-07-06 19:19:55 +0000779 } else if (StoreInst *store = dyn_cast<StoreInst>(Use)) {
Chris Lattner1dec0d22010-12-19 05:57:25 +0000780 // Stores *of* the pointer are not interesting, only stores *to* the
781 // pointer.
782 if (Use->getOperand(1) != ASIV)
783 continue;
Eli Friedman97671562011-08-15 20:52:09 +0000784 assert(!store->isVolatile() && "AST broken");
785 if (!store->isSimple())
786 return;
Eli Friedman73bfa4a2011-07-20 21:37:47 +0000787
788 // Note that we only check GuaranteedToExecute inside the store case
789 // so that we do not introduce stores where they did not exist before
790 // (which would break the LLVM concurrency model).
791
792 // If the alignment of this instruction allows us to specify a more
793 // restrictive (and performant) alignment and if we are sure this
794 // instruction will be executed, update the alignment.
795 // Larger is better, with the exception of 0 being the best alignment.
Eli Friedman97671562011-08-15 20:52:09 +0000796 unsigned InstAlignment = store->getAlignment();
Eli Friedman73bfa4a2011-07-20 21:37:47 +0000797 if ((InstAlignment > Alignment || InstAlignment == 0)
798 && (Alignment != 0))
799 if (isGuaranteedToExecute(*Use)) {
800 GuaranteedToExecute = true;
801 Alignment = InstAlignment;
802 }
803
804 if (!GuaranteedToExecute)
805 GuaranteedToExecute = isGuaranteedToExecute(*Use);
806
Chris Lattner0cccd762010-09-06 05:11:24 +0000807 } else
Chris Lattnere4880642010-08-29 06:43:52 +0000808 return; // Not a load or store.
Tobias Grosserdf7102b2011-07-06 19:19:55 +0000809
Chris Lattnere4880642010-08-29 06:43:52 +0000810 LoopUses.push_back(Use);
811 }
812 }
Tobias Grosserdf7102b2011-07-06 19:19:55 +0000813
Chris Lattnere4880642010-08-29 06:43:52 +0000814 // If there isn't a guaranteed-to-execute instruction, we can't promote.
815 if (!GuaranteedToExecute)
816 return;
Tobias Grossera3574fb2011-07-06 19:20:02 +0000817
Chris Lattnere4880642010-08-29 06:43:52 +0000818 // Otherwise, this is safe to promote, lets do it!
Tobias Grossera3574fb2011-07-06 19:20:02 +0000819 DEBUG(dbgs() << "LICM: Promoting value stored to in loop: " <<*SomePtr<<'\n');
Chris Lattnere4880642010-08-29 06:43:52 +0000820 Changed = true;
821 ++NumPromoted;
822
Eli Friedmandda266d2011-05-27 20:31:51 +0000823 // Grab a debug location for the inserted loads/stores; given that the
824 // inserted loads/stores have little relation to the original loads/stores,
825 // this code just arbitrarily picks a location from one, since any debug
826 // location is better than none.
827 DebugLoc DL = LoopUses[0]->getDebugLoc();
828
Dan Gohman9d1747c2012-08-08 00:00:26 +0000829 // Figure out the loop exits and their insertion points, if this is the
830 // first promotion.
831 if (ExitBlocks.empty()) {
832 CurLoop->getUniqueExitBlocks(ExitBlocks);
833 InsertPts.resize(ExitBlocks.size());
834 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i)
835 InsertPts[i] = ExitBlocks[i]->getFirstInsertionPt();
836 }
Tobias Grossera3574fb2011-07-06 19:20:02 +0000837
Chris Lattnere4880642010-08-29 06:43:52 +0000838 // We use the SSAUpdater interface to insert phi nodes as required.
839 SmallVector<PHINode*, 16> NewPHIs;
840 SSAUpdater SSA(&NewPHIs);
Chris Lattnerdeaf55f2011-01-15 00:12:35 +0000841 LoopPromoter Promoter(SomePtr, LoopUses, SSA, PointerMustAliases, ExitBlocks,
Dan Gohman9d1747c2012-08-08 00:00:26 +0000842 InsertPts, *CurAST, DL, Alignment);
Tobias Grossera3574fb2011-07-06 19:20:02 +0000843
Chris Lattnerdeaf55f2011-01-15 00:12:35 +0000844 // Set up the preheader to have a definition of the value. It is the live-out
845 // value from the preheader that uses in the loop will use.
846 LoadInst *PreheaderLoad =
847 new LoadInst(SomePtr, SomePtr->getName()+".promoted",
848 Preheader->getTerminator());
Tobias Grosserdf7102b2011-07-06 19:19:55 +0000849 PreheaderLoad->setAlignment(Alignment);
Eli Friedmandda266d2011-05-27 20:31:51 +0000850 PreheaderLoad->setDebugLoc(DL);
Chris Lattnere4880642010-08-29 06:43:52 +0000851 SSA.AddAvailableValue(Preheader, PreheaderLoad);
852
Chris Lattnerdeaf55f2011-01-15 00:12:35 +0000853 // Rewrite all the loads in the loop and remember all the definitions from
854 // stores in the loop.
855 Promoter.run(LoopUses);
Eli Friedman0e382192011-04-07 01:35:06 +0000856
857 // If the SSAUpdater didn't use the load in the preheader, just zap it now.
858 if (PreheaderLoad->use_empty())
859 PreheaderLoad->eraseFromParent();
Chris Lattnerf5e84aa2002-08-22 21:39:55 +0000860}
Devang Patel91d22c82007-07-31 08:01:41 +0000861
Chris Lattnere4880642010-08-29 06:43:52 +0000862
Devang Patel91d22c82007-07-31 08:01:41 +0000863/// cloneBasicBlockAnalysis - Simple Analysis hook. Clone alias set info.
864void LICM::cloneBasicBlockAnalysis(BasicBlock *From, BasicBlock *To, Loop *L) {
Chris Lattner4282e322010-08-29 17:46:00 +0000865 AliasSetTracker *AST = LoopToAliasSetMap.lookup(L);
Devang Patel91d22c82007-07-31 08:01:41 +0000866 if (!AST)
867 return;
868
869 AST->copyValue(From, To);
870}
871
872/// deleteAnalysisValue - Simple Analysis hook. Delete value V from alias
873/// set.
874void LICM::deleteAnalysisValue(Value *V, Loop *L) {
Chris Lattner4282e322010-08-29 17:46:00 +0000875 AliasSetTracker *AST = LoopToAliasSetMap.lookup(L);
Devang Patel91d22c82007-07-31 08:01:41 +0000876 if (!AST)
877 return;
878
879 AST->deleteValue(V);
880}