blob: bdf7dee66203d204f8cd54a17dff683845624eb1 [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
29// the mem2reg functionality to construct the appropriate SSA form for the
30// variable.
Chris Lattnere0e734e2002-05-10 22:44:58 +000031//
Chris Lattnere0e734e2002-05-10 22:44:58 +000032//===----------------------------------------------------------------------===//
33
Chris Lattner1f309c12005-03-23 21:00:12 +000034#define DEBUG_TYPE "licm"
Chris Lattnere0e734e2002-05-10 22:44:58 +000035#include "llvm/Transforms/Scalar.h"
Chris Lattner79066fa2007-01-30 23:46:24 +000036#include "llvm/Constants.h"
Chris Lattner2741c972004-05-23 21:20:19 +000037#include "llvm/DerivedTypes.h"
38#include "llvm/Instructions.h"
Owen Anderson1ff50b32009-07-03 00:54:20 +000039#include "llvm/LLVMContext.h"
Chris Lattner2741c972004-05-23 21:20:19 +000040#include "llvm/Target/TargetData.h"
Chris Lattnere0e734e2002-05-10 22:44:58 +000041#include "llvm/Analysis/LoopInfo.h"
Devang Patel54959d62007-03-07 04:41:30 +000042#include "llvm/Analysis/LoopPass.h"
Chris Lattnerf5e84aa2002-08-22 21:39:55 +000043#include "llvm/Analysis/AliasAnalysis.h"
Chris Lattner0252e492003-03-03 23:32:45 +000044#include "llvm/Analysis/AliasSetTracker.h"
Chris Lattner952eaee2002-09-29 21:46:09 +000045#include "llvm/Analysis/Dominators.h"
Devang Patel96b651c2007-07-30 20:19:59 +000046#include "llvm/Analysis/ScalarEvolution.h"
Chris Lattner2741c972004-05-23 21:20:19 +000047#include "llvm/Transforms/Utils/PromoteMemToReg.h"
Reid Spencer9133fe22007-02-05 23:32:05 +000048#include "llvm/Support/CFG.h"
49#include "llvm/Support/Compiler.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000050#include "llvm/Support/CommandLine.h"
51#include "llvm/Support/Debug.h"
52#include "llvm/ADT/Statistic.h"
Chris Lattnere0e734e2002-05-10 22:44:58 +000053#include <algorithm>
Chris Lattner92094b42003-12-09 17:18:00 +000054using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000055
Chris Lattner0e5f4992006-12-19 21:40:18 +000056STATISTIC(NumSunk , "Number of instructions sunk out of loop");
57STATISTIC(NumHoisted , "Number of instructions hoisted out of loop");
58STATISTIC(NumMovedLoads, "Number of load insts hoisted or sunk");
59STATISTIC(NumMovedCalls, "Number of call insts hoisted or sunk");
60STATISTIC(NumPromoted , "Number of memory locations promoted to registers");
61
Dan Gohman844731a2008-05-13 00:00:25 +000062static cl::opt<bool>
63DisablePromotion("disable-licm-promotion", cl::Hidden,
64 cl::desc("Disable memory promotion in LICM pass"));
Chris Lattner2e6e7412003-02-24 03:52:32 +000065
Chris Lattnerd7168dd2009-03-09 05:11:09 +000066// This feature is currently disabled by default because CodeGen is not yet
67// capable of rematerializing these constants in PIC mode, so it can lead to
68// degraded performance. Compile test/CodeGen/X86/remat-constant.ll with
Dan Gohman3eee6542008-07-24 23:57:25 +000069// -relocation-model=pic to see an example of this.
70static cl::opt<bool>
71EnableLICMConstantMotion("enable-licm-constant-variables", cl::Hidden,
72 cl::desc("Enable hoisting/sinking of constant "
73 "global variables"));
74
Dan Gohman844731a2008-05-13 00:00:25 +000075namespace {
Devang Patel54959d62007-03-07 04:41:30 +000076 struct VISIBILITY_HIDDEN LICM : public LoopPass {
Nick Lewyckyecd94c82007-05-06 13:37:16 +000077 static char ID; // Pass identification, replacement for typeid
Dan Gohmanae73dc12008-09-04 17:05:41 +000078 LICM() : LoopPass(&ID) {}
Devang Patel794fd752007-05-01 21:15:47 +000079
Devang Patel54959d62007-03-07 04:41:30 +000080 virtual bool runOnLoop(Loop *L, LPPassManager &LPM);
Chris Lattnere0e734e2002-05-10 22:44:58 +000081
Chris Lattner94170592002-09-26 16:52:07 +000082 /// This transformation requires natural loop information & requires that
83 /// loop preheaders be inserted into the CFG...
84 ///
Chris Lattnere0e734e2002-05-10 22:44:58 +000085 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattnercb2610e2002-10-21 20:00:28 +000086 AU.setPreservesCFG();
Chris Lattner98bf4362003-10-12 21:52:28 +000087 AU.addRequiredID(LoopSimplifyID);
Chris Lattner5f0eb8d2002-08-08 19:01:30 +000088 AU.addRequired<LoopInfo>();
Owen Anderson3a2b58f2007-04-24 06:40:39 +000089 AU.addRequired<DominatorTree>();
Chris Lattner0252e492003-03-03 23:32:45 +000090 AU.addRequired<DominanceFrontier>(); // For scalar promotion (mem2reg)
Chris Lattnerf5e84aa2002-08-22 21:39:55 +000091 AU.addRequired<AliasAnalysis>();
Devang Patel96b651c2007-07-30 20:19:59 +000092 AU.addPreserved<ScalarEvolution>();
93 AU.addPreserved<DominanceFrontier>();
Chris Lattnere0e734e2002-05-10 22:44:58 +000094 }
95
Dan Gohman747603e2007-04-17 18:21:36 +000096 bool doFinalization() {
Anton Korobeynikovfd94dd52007-11-25 23:52:02 +000097 // Free the values stored in the map
98 for (std::map<Loop *, AliasSetTracker *>::iterator
99 I = LoopToAliasMap.begin(), E = LoopToAliasMap.end(); I != E; ++I)
100 delete I->second;
101
Devang Patel54959d62007-03-07 04:41:30 +0000102 LoopToAliasMap.clear();
103 return false;
104 }
105
Chris Lattnere0e734e2002-05-10 22:44:58 +0000106 private:
Chris Lattner92094b42003-12-09 17:18:00 +0000107 // Various analyses that we use...
Chris Lattner2e6e7412003-02-24 03:52:32 +0000108 AliasAnalysis *AA; // Current AliasAnalysis information
Chris Lattner92094b42003-12-09 17:18:00 +0000109 LoopInfo *LI; // Current LoopInfo
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000110 DominatorTree *DT; // Dominator Tree for the current Loop...
Chris Lattner43f820d2003-10-05 21:20:13 +0000111 DominanceFrontier *DF; // Current Dominance Frontier
Chris Lattner92094b42003-12-09 17:18:00 +0000112
113 // State that is updated as we process loops
Chris Lattner2e6e7412003-02-24 03:52:32 +0000114 bool Changed; // Set to true when we change anything.
115 BasicBlock *Preheader; // The preheader block of the current loop...
116 Loop *CurLoop; // The current loop we are working on...
Chris Lattner0252e492003-03-03 23:32:45 +0000117 AliasSetTracker *CurAST; // AliasSet information for the current loop...
Devang Patel54959d62007-03-07 04:41:30 +0000118 std::map<Loop *, AliasSetTracker *> LoopToAliasMap;
Chris Lattnere0e734e2002-05-10 22:44:58 +0000119
Devang Patel91d22c82007-07-31 08:01:41 +0000120 /// cloneBasicBlockAnalysis - Simple Analysis hook. Clone alias set info.
121 void cloneBasicBlockAnalysis(BasicBlock *From, BasicBlock *To, Loop *L);
122
123 /// deleteAnalysisValue - Simple Analysis hook. Delete value V from alias
124 /// set.
125 void deleteAnalysisValue(Value *V, Loop *L);
126
Chris Lattnere4365b22003-12-19 07:22:45 +0000127 /// SinkRegion - Walk the specified region of the CFG (defined by all blocks
128 /// dominated by the specified block, and that are in the current loop) in
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000129 /// reverse depth first order w.r.t the DominatorTree. This allows us to
Chris Lattnere4365b22003-12-19 07:22:45 +0000130 /// visit uses before definitions, allowing us to sink a loop body in one
131 /// pass without iteration.
132 ///
Devang Patel26042422007-06-04 00:32:22 +0000133 void SinkRegion(DomTreeNode *N);
Chris Lattnere4365b22003-12-19 07:22:45 +0000134
Chris Lattner952eaee2002-09-29 21:46:09 +0000135 /// HoistRegion - Walk the specified region of the CFG (defined by all
136 /// blocks dominated by the specified block, and that are in the current
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000137 /// loop) in depth first order w.r.t the DominatorTree. This allows us to
Misha Brukmancf00c4a2003-10-10 17:57:28 +0000138 /// visit definitions before uses, allowing us to hoist a loop body in one
Chris Lattner952eaee2002-09-29 21:46:09 +0000139 /// pass without iteration.
140 ///
Devang Patel26042422007-06-04 00:32:22 +0000141 void HoistRegion(DomTreeNode *N);
Chris Lattner952eaee2002-09-29 21:46:09 +0000142
Chris Lattnerb4613732002-09-29 22:26:07 +0000143 /// inSubLoop - Little predicate that returns true if the specified basic
144 /// block is in a subloop of the current one, not the current one itself.
Chris Lattner94170592002-09-26 16:52:07 +0000145 ///
Chris Lattnerb4613732002-09-29 22:26:07 +0000146 bool inSubLoop(BasicBlock *BB) {
147 assert(CurLoop->contains(BB) && "Only valid if BB is IN the loop");
Chris Lattner329c1c62004-01-08 00:09:44 +0000148 for (Loop::iterator I = CurLoop->begin(), E = CurLoop->end(); I != E; ++I)
149 if ((*I)->contains(BB))
Chris Lattnerb4613732002-09-29 22:26:07 +0000150 return true; // A subloop actually contains this block!
151 return false;
Chris Lattnere0e734e2002-05-10 22:44:58 +0000152 }
153
Chris Lattnera2706512003-12-10 06:41:05 +0000154 /// isExitBlockDominatedByBlockInLoop - This method checks to see if the
155 /// specified exit block of the loop is dominated by the specified block
156 /// that is in the body of the loop. We use these constraints to
157 /// dramatically limit the amount of the dominator tree that needs to be
158 /// searched.
159 bool isExitBlockDominatedByBlockInLoop(BasicBlock *ExitBlock,
160 BasicBlock *BlockInLoop) const {
161 // If the block in the loop is the loop header, it must be dominated!
162 BasicBlock *LoopHeader = CurLoop->getHeader();
163 if (BlockInLoop == LoopHeader)
164 return true;
Misha Brukmanfd939082005-04-21 23:48:37 +0000165
Devang Patel26042422007-06-04 00:32:22 +0000166 DomTreeNode *BlockInLoopNode = DT->getNode(BlockInLoop);
167 DomTreeNode *IDom = DT->getNode(ExitBlock);
Misha Brukmanfd939082005-04-21 23:48:37 +0000168
Chris Lattnera2706512003-12-10 06:41:05 +0000169 // Because the exit block is not in the loop, we know we have to get _at
Chris Lattner2741c972004-05-23 21:20:19 +0000170 // least_ its immediate dominator.
Chris Lattnera2706512003-12-10 06:41:05 +0000171 do {
172 // Get next Immediate Dominator.
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000173 IDom = IDom->getIDom();
Misha Brukmanfd939082005-04-21 23:48:37 +0000174
Chris Lattnera2706512003-12-10 06:41:05 +0000175 // If we have got to the header of the loop, then the instructions block
176 // did not dominate the exit node, so we can't hoist it.
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000177 if (IDom->getBlock() == LoopHeader)
Chris Lattnera2706512003-12-10 06:41:05 +0000178 return false;
Misha Brukmanfd939082005-04-21 23:48:37 +0000179
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000180 } while (IDom != BlockInLoopNode);
Chris Lattnera2706512003-12-10 06:41:05 +0000181
182 return true;
183 }
184
185 /// sink - When an instruction is found to only be used outside of the loop,
186 /// this function moves it to the exit blocks and patches up SSA form as
187 /// needed.
188 ///
189 void sink(Instruction &I);
190
Chris Lattner94170592002-09-26 16:52:07 +0000191 /// hoist - When an instruction is found to only use loop invariant operands
192 /// that is safe to hoist, this instruction is called to do the dirty work.
193 ///
Chris Lattner7e708292002-06-25 16:13:24 +0000194 void hoist(Instruction &I);
Chris Lattnere0e734e2002-05-10 22:44:58 +0000195
Chris Lattnera2706512003-12-10 06:41:05 +0000196 /// isSafeToExecuteUnconditionally - Only sink or hoist an instruction if it
197 /// is not a trapping instruction or if it is a trapping instruction and is
198 /// guaranteed to execute.
Tanya Lattner9966c032003-08-05 18:45:46 +0000199 ///
Chris Lattnera2706512003-12-10 06:41:05 +0000200 bool isSafeToExecuteUnconditionally(Instruction &I);
Tanya Lattner9966c032003-08-05 18:45:46 +0000201
Chris Lattner94170592002-09-26 16:52:07 +0000202 /// pointerInvalidatedByLoop - Return true if the body of this loop may
203 /// store into the memory location pointed to by V.
Misha Brukmanfd939082005-04-21 23:48:37 +0000204 ///
Chris Lattnerf3e1d692004-11-26 21:20:09 +0000205 bool pointerInvalidatedByLoop(Value *V, unsigned Size) {
Chris Lattner0252e492003-03-03 23:32:45 +0000206 // Check to see if any of the basic blocks in CurLoop invalidate *V.
Chris Lattnerf3e1d692004-11-26 21:20:09 +0000207 return CurAST->getAliasSetForPointer(V, Size).isMod();
Chris Lattner2e6e7412003-02-24 03:52:32 +0000208 }
Chris Lattnerf5e84aa2002-08-22 21:39:55 +0000209
Chris Lattnera2706512003-12-10 06:41:05 +0000210 bool canSinkOrHoistInst(Instruction &I);
211 bool isLoopInvariantInst(Instruction &I);
212 bool isNotUsedInLoop(Instruction &I);
Chris Lattnere0e734e2002-05-10 22:44:58 +0000213
Chris Lattner2e6e7412003-02-24 03:52:32 +0000214 /// PromoteValuesInLoop - Look at the stores in the loop and promote as many
215 /// to scalars as we can.
216 ///
217 void PromoteValuesInLoop();
218
Chris Lattnerfb3ee192004-09-15 01:04:07 +0000219 /// FindPromotableValuesInLoop - Check the current loop for stores to
Misha Brukman352361b2003-09-11 15:32:37 +0000220 /// definite pointers, which are not loaded and stored through may aliases.
Chris Lattner2e6e7412003-02-24 03:52:32 +0000221 /// If these are found, create an alloca for the value, add it to the
222 /// PromotedValues list, and keep track of the mapping from value to
223 /// alloca...
224 ///
Chris Lattnerfb3ee192004-09-15 01:04:07 +0000225 void FindPromotableValuesInLoop(
Chris Lattner2e6e7412003-02-24 03:52:32 +0000226 std::vector<std::pair<AllocaInst*, Value*> > &PromotedValues,
227 std::map<Value*, AllocaInst*> &Val2AlMap);
Chris Lattnere0e734e2002-05-10 22:44:58 +0000228 };
229}
230
Dan Gohman844731a2008-05-13 00:00:25 +0000231char LICM::ID = 0;
232static RegisterPass<LICM> X("licm", "Loop Invariant Code Motion");
233
Daniel Dunbar394f0442008-10-22 23:32:42 +0000234Pass *llvm::createLICMPass() { return new LICM(); }
Chris Lattnere0e734e2002-05-10 22:44:58 +0000235
Devang Patel8d246f02007-07-31 16:52:25 +0000236/// Hoist expressions out of the specified loop. Note, alias info for inner
237/// loop is not preserved so it is not a good idea to run LICM multiple
238/// times on one loop.
Chris Lattner94170592002-09-26 16:52:07 +0000239///
Devang Patel54959d62007-03-07 04:41:30 +0000240bool LICM::runOnLoop(Loop *L, LPPassManager &LPM) {
Chris Lattner2e6e7412003-02-24 03:52:32 +0000241 Changed = false;
Chris Lattnere0e734e2002-05-10 22:44:58 +0000242
Chris Lattner2e6e7412003-02-24 03:52:32 +0000243 // Get our Loop and Alias Analysis information...
244 LI = &getAnalysis<LoopInfo>();
Chris Lattnerf5e84aa2002-08-22 21:39:55 +0000245 AA = &getAnalysis<AliasAnalysis>();
Chris Lattner43f820d2003-10-05 21:20:13 +0000246 DF = &getAnalysis<DominanceFrontier>();
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000247 DT = &getAnalysis<DominatorTree>();
Chris Lattnerf5e84aa2002-08-22 21:39:55 +0000248
Devang Patel54959d62007-03-07 04:41:30 +0000249 CurAST = new AliasSetTracker(*AA);
Devang Patelf38ac5d2007-05-30 15:29:37 +0000250 // Collect Alias info from subloops
Devang Patel54959d62007-03-07 04:41:30 +0000251 for (Loop::iterator LoopItr = L->begin(), LoopItrE = L->end();
252 LoopItr != LoopItrE; ++LoopItr) {
253 Loop *InnerL = *LoopItr;
254 AliasSetTracker *InnerAST = LoopToAliasMap[InnerL];
255 assert (InnerAST && "Where is my AST?");
256
257 // What if InnerLoop was modified by other passes ?
258 CurAST->add(*InnerAST);
Chris Lattner2e6e7412003-02-24 03:52:32 +0000259 }
Devang Patel54959d62007-03-07 04:41:30 +0000260
Chris Lattnere0e734e2002-05-10 22:44:58 +0000261 CurLoop = L;
262
Chris Lattner99a57212002-09-26 19:40:25 +0000263 // Get the preheader block to move instructions into...
264 Preheader = L->getLoopPreheader();
265 assert(Preheader&&"Preheader insertion pass guarantees we have a preheader!");
266
Chris Lattner2e6e7412003-02-24 03:52:32 +0000267 // Loop over the body of this loop, looking for calls, invokes, and stores.
Chris Lattner0252e492003-03-03 23:32:45 +0000268 // Because subloops have already been incorporated into AST, we skip blocks in
Chris Lattner2e6e7412003-02-24 03:52:32 +0000269 // subloops.
270 //
Dan Gohman9b787632008-06-22 20:18:58 +0000271 for (Loop::block_iterator I = L->block_begin(), E = L->block_end();
272 I != E; ++I) {
273 BasicBlock *BB = *I;
274 if (LI->getLoopFor(BB) == L) // Ignore blocks in subloops...
275 CurAST->add(*BB); // Incorporate the specified basic block
276 }
Chris Lattner2e6e7412003-02-24 03:52:32 +0000277
Chris Lattnere0e734e2002-05-10 22:44:58 +0000278 // We want to visit all of the instructions in this loop... that are not parts
279 // of our subloops (they have already had their invariants hoisted out of
280 // their loop, into this loop, so there is no need to process the BODIES of
281 // the subloops).
282 //
Chris Lattner952eaee2002-09-29 21:46:09 +0000283 // Traverse the body of the loop in depth first order on the dominator tree so
284 // that we are guaranteed to see definitions before we see uses. This allows
Nick Lewyckyaf5cbc82007-08-18 15:08:56 +0000285 // us to sink instructions in one pass, without iteration. After sinking
Chris Lattnere4365b22003-12-19 07:22:45 +0000286 // instructions, we perform another pass to hoist them out of the loop.
Chris Lattner952eaee2002-09-29 21:46:09 +0000287 //
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000288 SinkRegion(DT->getNode(L->getHeader()));
289 HoistRegion(DT->getNode(L->getHeader()));
Chris Lattnere0e734e2002-05-10 22:44:58 +0000290
Chris Lattner2e6e7412003-02-24 03:52:32 +0000291 // Now that all loop invariants have been removed from the loop, promote any
292 // memory references to scalars that we can...
293 if (!DisablePromotion)
294 PromoteValuesInLoop();
295
Chris Lattnere0e734e2002-05-10 22:44:58 +0000296 // Clear out loops state information for the next iteration
297 CurLoop = 0;
Chris Lattner99a57212002-09-26 19:40:25 +0000298 Preheader = 0;
Devang Patel54959d62007-03-07 04:41:30 +0000299
300 LoopToAliasMap[L] = CurAST;
301 return Changed;
Chris Lattnere0e734e2002-05-10 22:44:58 +0000302}
303
Chris Lattnere4365b22003-12-19 07:22:45 +0000304/// SinkRegion - Walk the specified region of the CFG (defined by all blocks
305/// dominated by the specified block, and that are in the current loop) in
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000306/// reverse depth first order w.r.t the DominatorTree. This allows us to visit
Chris Lattnere4365b22003-12-19 07:22:45 +0000307/// uses before definitions, allowing us to sink a loop body in one pass without
308/// iteration.
309///
Devang Patel26042422007-06-04 00:32:22 +0000310void LICM::SinkRegion(DomTreeNode *N) {
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000311 assert(N != 0 && "Null dominator tree node?");
312 BasicBlock *BB = N->getBlock();
Chris Lattnere4365b22003-12-19 07:22:45 +0000313
314 // If this subregion is not in the top level loop at all, exit.
315 if (!CurLoop->contains(BB)) return;
316
317 // We are processing blocks in reverse dfo, so process children first...
Devang Patel26042422007-06-04 00:32:22 +0000318 const std::vector<DomTreeNode*> &Children = N->getChildren();
Chris Lattnere4365b22003-12-19 07:22:45 +0000319 for (unsigned i = 0, e = Children.size(); i != e; ++i)
320 SinkRegion(Children[i]);
321
322 // Only need to process the contents of this block if it is not part of a
323 // subloop (which would already have been processed).
324 if (inSubLoop(BB)) return;
325
Chris Lattnera3df8a92003-12-19 08:18:16 +0000326 for (BasicBlock::iterator II = BB->end(); II != BB->begin(); ) {
327 Instruction &I = *--II;
Misha Brukmanfd939082005-04-21 23:48:37 +0000328
Chris Lattnere4365b22003-12-19 07:22:45 +0000329 // Check to see if we can sink this instruction to the exit blocks
330 // of the loop. We can do this if the all users of the instruction are
331 // outside of the loop. In this case, it doesn't even matter if the
332 // operands of the instruction are loop invariant.
333 //
Chris Lattner70ac2dc2005-03-25 00:22:36 +0000334 if (isNotUsedInLoop(I) && canSinkOrHoistInst(I)) {
Chris Lattnera3df8a92003-12-19 08:18:16 +0000335 ++II;
Chris Lattnere4365b22003-12-19 07:22:45 +0000336 sink(I);
Chris Lattnera3df8a92003-12-19 08:18:16 +0000337 }
Chris Lattnere4365b22003-12-19 07:22:45 +0000338 }
339}
340
341
Chris Lattner952eaee2002-09-29 21:46:09 +0000342/// HoistRegion - Walk the specified region of the CFG (defined by all blocks
343/// dominated by the specified block, and that are in the current loop) in depth
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000344/// first order w.r.t the DominatorTree. This allows us to visit definitions
Chris Lattner952eaee2002-09-29 21:46:09 +0000345/// before uses, allowing us to hoist a loop body in one pass without iteration.
346///
Devang Patel26042422007-06-04 00:32:22 +0000347void LICM::HoistRegion(DomTreeNode *N) {
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000348 assert(N != 0 && "Null dominator tree node?");
349 BasicBlock *BB = N->getBlock();
Chris Lattner952eaee2002-09-29 21:46:09 +0000350
Chris Lattnerb4613732002-09-29 22:26:07 +0000351 // If this subregion is not in the top level loop at all, exit.
Chris Lattnered6dfc22003-12-09 19:32:44 +0000352 if (!CurLoop->contains(BB)) return;
Chris Lattner952eaee2002-09-29 21:46:09 +0000353
Chris Lattnera2706512003-12-10 06:41:05 +0000354 // Only need to process the contents of this block if it is not part of a
355 // subloop (which would already have been processed).
Chris Lattnered6dfc22003-12-09 19:32:44 +0000356 if (!inSubLoop(BB))
Chris Lattnera2706512003-12-10 06:41:05 +0000357 for (BasicBlock::iterator II = BB->begin(), E = BB->end(); II != E; ) {
358 Instruction &I = *II++;
Misha Brukmanfd939082005-04-21 23:48:37 +0000359
Chris Lattnere4365b22003-12-19 07:22:45 +0000360 // Try hoisting the instruction out to the preheader. We can only do this
361 // if all of the operands of the instruction are loop invariant and if it
362 // is safe to hoist the instruction.
363 //
Misha Brukmanfd939082005-04-21 23:48:37 +0000364 if (isLoopInvariantInst(I) && canSinkOrHoistInst(I) &&
Chris Lattnere4365b22003-12-19 07:22:45 +0000365 isSafeToExecuteUnconditionally(I))
Chris Lattner3c80a512006-06-26 19:10:05 +0000366 hoist(I);
Chris Lattnera2706512003-12-10 06:41:05 +0000367 }
Chris Lattner952eaee2002-09-29 21:46:09 +0000368
Devang Patel26042422007-06-04 00:32:22 +0000369 const std::vector<DomTreeNode*> &Children = N->getChildren();
Chris Lattner952eaee2002-09-29 21:46:09 +0000370 for (unsigned i = 0, e = Children.size(); i != e; ++i)
Chris Lattner56b7ee22004-06-19 20:23:35 +0000371 HoistRegion(Children[i]);
Chris Lattner952eaee2002-09-29 21:46:09 +0000372}
373
Chris Lattnera2706512003-12-10 06:41:05 +0000374/// canSinkOrHoistInst - Return true if the hoister and sinker can handle this
375/// instruction.
376///
377bool LICM::canSinkOrHoistInst(Instruction &I) {
Chris Lattnered6dfc22003-12-09 19:32:44 +0000378 // Loads have extra constraints we have to verify before we can hoist them.
379 if (LoadInst *LI = dyn_cast<LoadInst>(&I)) {
380 if (LI->isVolatile())
381 return false; // Don't hoist volatile loads!
382
Chris Lattner967948b2008-07-23 05:06:28 +0000383 // Loads from constant memory are always safe to move, even if they end up
384 // in the same alias set as something that ends up being modified.
Dan Gohman3eee6542008-07-24 23:57:25 +0000385 if (EnableLICMConstantMotion &&
386 AA->pointsToConstantMemory(LI->getOperand(0)))
Chris Lattner967948b2008-07-23 05:06:28 +0000387 return true;
388
Chris Lattnered6dfc22003-12-09 19:32:44 +0000389 // Don't hoist loads which have may-aliased stores in loop.
Chris Lattnerf3e1d692004-11-26 21:20:09 +0000390 unsigned Size = 0;
391 if (LI->getType()->isSized())
Duncan Sands514ab342007-11-01 20:53:16 +0000392 Size = AA->getTargetData().getTypeStoreSize(LI->getType());
Chris Lattnerf3e1d692004-11-26 21:20:09 +0000393 return !pointerInvalidatedByLoop(LI->getOperand(0), Size);
Chris Lattner118dd0c2004-03-15 04:11:30 +0000394 } else if (CallInst *CI = dyn_cast<CallInst>(&I)) {
395 // Handle obvious cases efficiently.
Duncan Sandsdff67102007-12-01 07:51:45 +0000396 AliasAnalysis::ModRefBehavior Behavior = AA->getModRefBehavior(CI);
397 if (Behavior == AliasAnalysis::DoesNotAccessMemory)
398 return true;
399 else if (Behavior == AliasAnalysis::OnlyReadsMemory) {
400 // If this call only reads from memory and there are no writes to memory
401 // in the loop, we can hoist or sink the call as appropriate.
402 bool FoundMod = false;
403 for (AliasSetTracker::iterator I = CurAST->begin(), E = CurAST->end();
404 I != E; ++I) {
405 AliasSet &AS = *I;
406 if (!AS.isForwardingAliasSet() && AS.isMod()) {
407 FoundMod = true;
408 break;
Chris Lattner118dd0c2004-03-15 04:11:30 +0000409 }
Chris Lattner118dd0c2004-03-15 04:11:30 +0000410 }
Duncan Sandsdff67102007-12-01 07:51:45 +0000411 if (!FoundMod) return true;
Chris Lattner118dd0c2004-03-15 04:11:30 +0000412 }
413
414 // FIXME: This should use mod/ref information to see if we can hoist or sink
415 // the call.
Misha Brukmanfd939082005-04-21 23:48:37 +0000416
Chris Lattner118dd0c2004-03-15 04:11:30 +0000417 return false;
Chris Lattnered6dfc22003-12-09 19:32:44 +0000418 }
419
Reid Spencer3da59db2006-11-27 01:05:10 +0000420 // Otherwise these instructions are hoistable/sinkable
Reid Spencer832254e2007-02-02 02:16:23 +0000421 return isa<BinaryOperator>(I) || isa<CastInst>(I) ||
Dan Gohmand8af90c2007-06-05 16:05:55 +0000422 isa<SelectInst>(I) || isa<GetElementPtrInst>(I) || isa<CmpInst>(I) ||
423 isa<InsertElementInst>(I) || isa<ExtractElementInst>(I) ||
424 isa<ShuffleVectorInst>(I);
Chris Lattnera2706512003-12-10 06:41:05 +0000425}
426
427/// isNotUsedInLoop - Return true if the only users of this instruction are
428/// outside of the loop. If this is true, we can sink the instruction to the
429/// exit blocks of the loop.
430///
431bool LICM::isNotUsedInLoop(Instruction &I) {
Chris Lattnerea9403f2003-12-11 22:23:32 +0000432 for (Value::use_iterator UI = I.use_begin(), E = I.use_end(); UI != E; ++UI) {
433 Instruction *User = cast<Instruction>(*UI);
434 if (PHINode *PN = dyn_cast<PHINode>(User)) {
435 // PHI node uses occur in predecessor blocks!
436 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
437 if (PN->getIncomingValue(i) == &I)
438 if (CurLoop->contains(PN->getIncomingBlock(i)))
439 return false;
440 } else if (CurLoop->contains(User->getParent())) {
Chris Lattnera2706512003-12-10 06:41:05 +0000441 return false;
Chris Lattnerea9403f2003-12-11 22:23:32 +0000442 }
443 }
Chris Lattnera2706512003-12-10 06:41:05 +0000444 return true;
445}
446
447
448/// isLoopInvariantInst - Return true if all operands of this instruction are
449/// loop invariant. We also filter out non-hoistable instructions here just for
450/// efficiency.
451///
452bool LICM::isLoopInvariantInst(Instruction &I) {
453 // The instruction is loop invariant if all of its operands are loop-invariant
454 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i)
Chris Lattner3280f7b2004-04-18 22:46:08 +0000455 if (!CurLoop->isLoopInvariant(I.getOperand(i)))
Chris Lattnera2706512003-12-10 06:41:05 +0000456 return false;
457
Chris Lattnered6dfc22003-12-09 19:32:44 +0000458 // If we got this far, the instruction is loop invariant!
459 return true;
460}
461
Chris Lattnera2706512003-12-10 06:41:05 +0000462/// sink - When an instruction is found to only be used outside of the loop,
Chris Lattnera3df8a92003-12-19 08:18:16 +0000463/// this function moves it to the exit blocks and patches up SSA form as needed.
464/// This method is guaranteed to remove the original instruction from its
465/// position, and may either delete it or move it to outside of the loop.
Chris Lattnera2706512003-12-10 06:41:05 +0000466///
467void LICM::sink(Instruction &I) {
Bill Wendlingb7427032006-11-26 09:46:52 +0000468 DOUT << "LICM sinking instruction: " << I;
Chris Lattnera2706512003-12-10 06:41:05 +0000469
Devang Patelb7211a22007-08-21 00:31:24 +0000470 SmallVector<BasicBlock*, 8> ExitBlocks;
Chris Lattner5fa802f2004-04-18 22:15:13 +0000471 CurLoop->getExitBlocks(ExitBlocks);
Chris Lattnerdf45bd32003-12-10 20:43:29 +0000472
473 if (isa<LoadInst>(I)) ++NumMovedLoads;
Chris Lattner118dd0c2004-03-15 04:11:30 +0000474 else if (isa<CallInst>(I)) ++NumMovedCalls;
Chris Lattnerdf45bd32003-12-10 20:43:29 +0000475 ++NumSunk;
476 Changed = true;
477
Chris Lattnera2706512003-12-10 06:41:05 +0000478 // The case where there is only a single exit node of this loop is common
479 // enough that we handle it as a special (more efficient) case. It is more
480 // efficient to handle because there are no PHI nodes that need to be placed.
481 if (ExitBlocks.size() == 1) {
482 if (!isExitBlockDominatedByBlockInLoop(ExitBlocks[0], I.getParent())) {
483 // Instruction is not used, just delete it.
Chris Lattner2741c972004-05-23 21:20:19 +0000484 CurAST->deleteValue(&I);
Chris Lattner92f73652006-09-12 19:17:09 +0000485 if (!I.use_empty()) // If I has users in unreachable blocks, eliminate.
Owen Anderson1ff50b32009-07-03 00:54:20 +0000486 I.replaceAllUsesWith(Context->getUndef(I.getType()));
Chris Lattner3c80a512006-06-26 19:10:05 +0000487 I.eraseFromParent();
Chris Lattnera2706512003-12-10 06:41:05 +0000488 } else {
489 // Move the instruction to the start of the exit block, after any PHI
490 // nodes in it.
Chris Lattner3c80a512006-06-26 19:10:05 +0000491 I.removeFromParent();
Misha Brukmanfd939082005-04-21 23:48:37 +0000492
Dan Gohman02dea8b2008-05-23 21:05:58 +0000493 BasicBlock::iterator InsertPt = ExitBlocks[0]->getFirstNonPHI();
Chris Lattnera2706512003-12-10 06:41:05 +0000494 ExitBlocks[0]->getInstList().insert(InsertPt, &I);
495 }
Dan Gohman30359592008-01-29 13:02:09 +0000496 } else if (ExitBlocks.empty()) {
Chris Lattnera2706512003-12-10 06:41:05 +0000497 // The instruction is actually dead if there ARE NO exit blocks.
Chris Lattner2741c972004-05-23 21:20:19 +0000498 CurAST->deleteValue(&I);
Chris Lattner92f73652006-09-12 19:17:09 +0000499 if (!I.use_empty()) // If I has users in unreachable blocks, eliminate.
Owen Anderson1ff50b32009-07-03 00:54:20 +0000500 I.replaceAllUsesWith(Context->getUndef(I.getType()));
Chris Lattner3c80a512006-06-26 19:10:05 +0000501 I.eraseFromParent();
Chris Lattnera2706512003-12-10 06:41:05 +0000502 } else {
503 // Otherwise, if we have multiple exits, use the PromoteMem2Reg function to
504 // do all of the hard work of inserting PHI nodes as necessary. We convert
505 // the value into a stack object to get it to do this.
506
507 // Firstly, we create a stack object to hold the value...
Chris Lattnereaa24302004-07-27 07:38:32 +0000508 AllocaInst *AI = 0;
Chris Lattnera2706512003-12-10 06:41:05 +0000509
Devang Patele7ae1a92007-06-01 22:15:31 +0000510 if (I.getType() != Type::VoidTy) {
Owen Anderson50dead02009-07-15 23:53:25 +0000511 AI = new AllocaInst(I.getType(), 0, I.getName(),
Dan Gohmanecb7a772007-03-22 16:38:57 +0000512 I.getParent()->getParent()->getEntryBlock().begin());
Devang Patele7ae1a92007-06-01 22:15:31 +0000513 CurAST->add(AI);
514 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000515
Chris Lattnera2706512003-12-10 06:41:05 +0000516 // Secondly, insert load instructions for each use of the instruction
517 // outside of the loop.
518 while (!I.use_empty()) {
519 Instruction *U = cast<Instruction>(I.use_back());
520
521 // If the user is a PHI Node, we actually have to insert load instructions
522 // in all predecessor blocks, not in the PHI block itself!
523 if (PHINode *UPN = dyn_cast<PHINode>(U)) {
524 // Only insert into each predecessor once, so that we don't have
525 // different incoming values from the same block!
526 std::map<BasicBlock*, Value*> InsertedBlocks;
527 for (unsigned i = 0, e = UPN->getNumIncomingValues(); i != e; ++i)
528 if (UPN->getIncomingValue(i) == &I) {
529 BasicBlock *Pred = UPN->getIncomingBlock(i);
530 Value *&PredVal = InsertedBlocks[Pred];
531 if (!PredVal) {
532 // Insert a new load instruction right before the terminator in
533 // the predecessor block.
534 PredVal = new LoadInst(AI, "", Pred->getTerminator());
Devang Patele7ae1a92007-06-01 22:15:31 +0000535 CurAST->add(cast<LoadInst>(PredVal));
Chris Lattnera2706512003-12-10 06:41:05 +0000536 }
537
538 UPN->setIncomingValue(i, PredVal);
539 }
540
541 } else {
542 LoadInst *L = new LoadInst(AI, "", U);
543 U->replaceUsesOfWith(&I, L);
Devang Patele7ae1a92007-06-01 22:15:31 +0000544 CurAST->add(L);
Chris Lattnera2706512003-12-10 06:41:05 +0000545 }
546 }
547
548 // Thirdly, insert a copy of the instruction in each exit block of the loop
549 // that is dominated by the instruction, storing the result into the memory
550 // location. Be careful not to insert the instruction into any particular
551 // basic block more than once.
552 std::set<BasicBlock*> InsertedBlocks;
553 BasicBlock *InstOrigBB = I.getParent();
554
555 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i) {
556 BasicBlock *ExitBlock = ExitBlocks[i];
557
558 if (isExitBlockDominatedByBlockInLoop(ExitBlock, InstOrigBB)) {
Chris Lattnera2706512003-12-10 06:41:05 +0000559 // If we haven't already processed this exit block, do so now.
Chris Lattnere3cfe8d2003-12-10 16:58:24 +0000560 if (InsertedBlocks.insert(ExitBlock).second) {
Chris Lattnera2706512003-12-10 06:41:05 +0000561 // Insert the code after the last PHI node...
Dan Gohman02dea8b2008-05-23 21:05:58 +0000562 BasicBlock::iterator InsertPt = ExitBlock->getFirstNonPHI();
Misha Brukmanfd939082005-04-21 23:48:37 +0000563
Chris Lattnera2706512003-12-10 06:41:05 +0000564 // If this is the first exit block processed, just move the original
565 // instruction, otherwise clone the original instruction and insert
566 // the copy.
567 Instruction *New;
Chris Lattner7d3ced92003-12-10 22:35:56 +0000568 if (InsertedBlocks.size() == 1) {
Chris Lattner3c80a512006-06-26 19:10:05 +0000569 I.removeFromParent();
Chris Lattnera2706512003-12-10 06:41:05 +0000570 ExitBlock->getInstList().insert(InsertPt, &I);
571 New = &I;
572 } else {
Owen Anderson333c4002009-07-09 23:48:35 +0000573 New = I.clone(*Context);
Chris Lattner70ac2dc2005-03-25 00:22:36 +0000574 CurAST->copyValue(&I, New);
Chris Lattnereaa24302004-07-27 07:38:32 +0000575 if (!I.getName().empty())
576 New->setName(I.getName()+".le");
Chris Lattnera2706512003-12-10 06:41:05 +0000577 ExitBlock->getInstList().insert(InsertPt, New);
578 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000579
Chris Lattnera2706512003-12-10 06:41:05 +0000580 // Now that we have inserted the instruction, store it into the alloca
Chris Lattnereaa24302004-07-27 07:38:32 +0000581 if (AI) new StoreInst(New, AI, InsertPt);
Chris Lattnera2706512003-12-10 06:41:05 +0000582 }
583 }
584 }
Chris Lattnera3df8a92003-12-19 08:18:16 +0000585
586 // If the instruction doesn't dominate any exit blocks, it must be dead.
587 if (InsertedBlocks.empty()) {
Chris Lattner2741c972004-05-23 21:20:19 +0000588 CurAST->deleteValue(&I);
Chris Lattner3c80a512006-06-26 19:10:05 +0000589 I.eraseFromParent();
Chris Lattnera3df8a92003-12-19 08:18:16 +0000590 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000591
Chris Lattnera2706512003-12-10 06:41:05 +0000592 // Finally, promote the fine value to SSA form.
Chris Lattnereaa24302004-07-27 07:38:32 +0000593 if (AI) {
594 std::vector<AllocaInst*> Allocas;
595 Allocas.push_back(AI);
Owen Anderson0a205a42009-07-05 22:41:43 +0000596 PromoteMemToReg(Allocas, *DT, *DF, Context, CurAST);
Chris Lattnereaa24302004-07-27 07:38:32 +0000597 }
Chris Lattnera2706512003-12-10 06:41:05 +0000598 }
Chris Lattnera2706512003-12-10 06:41:05 +0000599}
Chris Lattner952eaee2002-09-29 21:46:09 +0000600
Chris Lattner94170592002-09-26 16:52:07 +0000601/// hoist - When an instruction is found to only use loop invariant operands
602/// that is safe to hoist, this instruction is called to do the dirty work.
603///
Chris Lattnera2706512003-12-10 06:41:05 +0000604void LICM::hoist(Instruction &I) {
Bill Wendlingb7427032006-11-26 09:46:52 +0000605 DOUT << "LICM hoisting to " << Preheader->getName() << ": " << I;
Chris Lattnered6dfc22003-12-09 19:32:44 +0000606
Chris Lattner99a57212002-09-26 19:40:25 +0000607 // Remove the instruction from its current basic block... but don't delete the
608 // instruction.
Chris Lattner3c80a512006-06-26 19:10:05 +0000609 I.removeFromParent();
Chris Lattnere0e734e2002-05-10 22:44:58 +0000610
Chris Lattner9646e6b2002-09-26 16:38:03 +0000611 // Insert the new node in Preheader, before the terminator.
Chris Lattnera2706512003-12-10 06:41:05 +0000612 Preheader->getInstList().insert(Preheader->getTerminator(), &I);
Misha Brukmanfd939082005-04-21 23:48:37 +0000613
Chris Lattnera2706512003-12-10 06:41:05 +0000614 if (isa<LoadInst>(I)) ++NumMovedLoads;
Chris Lattner118dd0c2004-03-15 04:11:30 +0000615 else if (isa<CallInst>(I)) ++NumMovedCalls;
Chris Lattner9646e6b2002-09-26 16:38:03 +0000616 ++NumHoisted;
Chris Lattnere0e734e2002-05-10 22:44:58 +0000617 Changed = true;
618}
619
Chris Lattnera2706512003-12-10 06:41:05 +0000620/// isSafeToExecuteUnconditionally - Only sink or hoist an instruction if it is
621/// not a trapping instruction or if it is a trapping instruction and is
622/// guaranteed to execute.
Tanya Lattner9966c032003-08-05 18:45:46 +0000623///
Chris Lattnera2706512003-12-10 06:41:05 +0000624bool LICM::isSafeToExecuteUnconditionally(Instruction &Inst) {
Chris Lattner92094b42003-12-09 17:18:00 +0000625 // If it is not a trapping instruction, it is always safe to hoist.
Eli Friedman0b79a772009-07-17 04:28:42 +0000626 if (Inst.isSafeToSpeculativelyExecute())
627 return true;
Misha Brukmanfd939082005-04-21 23:48:37 +0000628
Chris Lattner92094b42003-12-09 17:18:00 +0000629 // Otherwise we have to check to make sure that the instruction dominates all
630 // of the exit blocks. If it doesn't, then there is a path out of the loop
631 // which does not execute this instruction, so we can't hoist it.
Tanya Lattner9966c032003-08-05 18:45:46 +0000632
Chris Lattner92094b42003-12-09 17:18:00 +0000633 // If the instruction is in the header block for the loop (which is very
634 // common), it is always guaranteed to dominate the exit blocks. Since this
635 // is a common case, and can save some work, check it now.
Chris Lattnera2706512003-12-10 06:41:05 +0000636 if (Inst.getParent() == CurLoop->getHeader())
Chris Lattner92094b42003-12-09 17:18:00 +0000637 return true;
Tanya Lattner9966c032003-08-05 18:45:46 +0000638
Chris Lattner92094b42003-12-09 17:18:00 +0000639 // Get the exit blocks for the current loop.
Devang Patelb7211a22007-08-21 00:31:24 +0000640 SmallVector<BasicBlock*, 8> ExitBlocks;
Chris Lattner5fa802f2004-04-18 22:15:13 +0000641 CurLoop->getExitBlocks(ExitBlocks);
Chris Lattner92094b42003-12-09 17:18:00 +0000642
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000643 // For each exit block, get the DT node and walk up the DT until the
Chris Lattner92094b42003-12-09 17:18:00 +0000644 // instruction's basic block is found or we exit the loop.
Chris Lattnera2706512003-12-10 06:41:05 +0000645 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i)
646 if (!isExitBlockDominatedByBlockInLoop(ExitBlocks[i], Inst.getParent()))
647 return false;
Misha Brukmanfd939082005-04-21 23:48:37 +0000648
Tanya Lattner9966c032003-08-05 18:45:46 +0000649 return true;
650}
651
Chris Lattnereb53ae42002-09-26 16:19:31 +0000652
Chris Lattner2e6e7412003-02-24 03:52:32 +0000653/// PromoteValuesInLoop - Try to promote memory values to scalars by sinking
654/// stores out of the loop and moving loads to before the loop. We do this by
655/// looping over the stores in the loop, looking for stores to Must pointers
656/// which are loop invariant. We promote these memory locations to use allocas
657/// instead. These allocas can easily be raised to register values by the
658/// PromoteMem2Reg functionality.
659///
660void LICM::PromoteValuesInLoop() {
661 // PromotedValues - List of values that are promoted out of the loop. Each
Chris Lattner065a6162003-09-10 05:29:43 +0000662 // value has an alloca instruction for it, and a canonical version of the
Chris Lattner2e6e7412003-02-24 03:52:32 +0000663 // pointer.
664 std::vector<std::pair<AllocaInst*, Value*> > PromotedValues;
665 std::map<Value*, AllocaInst*> ValueToAllocaMap; // Map of ptr to alloca
666
Chris Lattnerfb3ee192004-09-15 01:04:07 +0000667 FindPromotableValuesInLoop(PromotedValues, ValueToAllocaMap);
668 if (ValueToAllocaMap.empty()) return; // If there are values to promote.
Chris Lattner2e6e7412003-02-24 03:52:32 +0000669
670 Changed = true;
671 NumPromoted += PromotedValues.size();
672
Chris Lattnerfb3ee192004-09-15 01:04:07 +0000673 std::vector<Value*> PointerValueNumbers;
674
Chris Lattner2e6e7412003-02-24 03:52:32 +0000675 // Emit a copy from the value into the alloca'd value in the loop preheader
676 TerminatorInst *LoopPredInst = Preheader->getTerminator();
677 for (unsigned i = 0, e = PromotedValues.size(); i != e; ++i) {
Chris Lattnerfb3ee192004-09-15 01:04:07 +0000678 Value *Ptr = PromotedValues[i].second;
679
680 // If we are promoting a pointer value, update alias information for the
681 // inserted load.
682 Value *LoadValue = 0;
683 if (isa<PointerType>(cast<PointerType>(Ptr->getType())->getElementType())) {
684 // Locate a load or store through the pointer, and assign the same value
685 // to LI as we are loading or storing. Since we know that the value is
686 // stored in this loop, this will always succeed.
687 for (Value::use_iterator UI = Ptr->use_begin(), E = Ptr->use_end();
688 UI != E; ++UI)
689 if (LoadInst *LI = dyn_cast<LoadInst>(*UI)) {
690 LoadValue = LI;
691 break;
692 } else if (StoreInst *SI = dyn_cast<StoreInst>(*UI)) {
Chris Lattnerbdacd872004-09-15 02:34:40 +0000693 if (SI->getOperand(1) == Ptr) {
Chris Lattnerfb3ee192004-09-15 01:04:07 +0000694 LoadValue = SI->getOperand(0);
695 break;
696 }
697 }
698 assert(LoadValue && "No store through the pointer found!");
699 PointerValueNumbers.push_back(LoadValue); // Remember this for later.
700 }
701
702 // Load from the memory we are promoting.
703 LoadInst *LI = new LoadInst(Ptr, Ptr->getName()+".promoted", LoopPredInst);
704
705 if (LoadValue) CurAST->copyValue(LoadValue, LI);
706
707 // Store into the temporary alloca.
Chris Lattner2e6e7412003-02-24 03:52:32 +0000708 new StoreInst(LI, PromotedValues[i].first, LoopPredInst);
709 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000710
Chris Lattner2e6e7412003-02-24 03:52:32 +0000711 // Scan the basic blocks in the loop, replacing uses of our pointers with
Chris Lattner0ed2da92003-12-10 15:56:24 +0000712 // uses of the allocas in question.
Chris Lattner2e6e7412003-02-24 03:52:32 +0000713 //
Dan Gohman9b787632008-06-22 20:18:58 +0000714 for (Loop::block_iterator I = CurLoop->block_begin(),
715 E = CurLoop->block_end(); I != E; ++I) {
716 BasicBlock *BB = *I;
Chris Lattner2e6e7412003-02-24 03:52:32 +0000717 // Rewrite all loads and stores in the block of the pointer...
Dan Gohman9b787632008-06-22 20:18:58 +0000718 for (BasicBlock::iterator II = BB->begin(), E = BB->end(); II != E; ++II) {
Chris Lattnere408e252003-04-23 16:37:45 +0000719 if (LoadInst *L = dyn_cast<LoadInst>(II)) {
Chris Lattner2e6e7412003-02-24 03:52:32 +0000720 std::map<Value*, AllocaInst*>::iterator
721 I = ValueToAllocaMap.find(L->getOperand(0));
722 if (I != ValueToAllocaMap.end())
723 L->setOperand(0, I->second); // Rewrite load instruction...
Chris Lattnere408e252003-04-23 16:37:45 +0000724 } else if (StoreInst *S = dyn_cast<StoreInst>(II)) {
Chris Lattner2e6e7412003-02-24 03:52:32 +0000725 std::map<Value*, AllocaInst*>::iterator
726 I = ValueToAllocaMap.find(S->getOperand(1));
727 if (I != ValueToAllocaMap.end())
728 S->setOperand(1, I->second); // Rewrite store instruction...
729 }
730 }
Chris Lattner2e6e7412003-02-24 03:52:32 +0000731 }
732
Chris Lattner0ed2da92003-12-10 15:56:24 +0000733 // Now that the body of the loop uses the allocas instead of the original
734 // memory locations, insert code to copy the alloca value back into the
735 // original memory location on all exits from the loop. Note that we only
736 // want to insert one copy of the code in each exit block, though the loop may
737 // exit to the same block more than once.
738 //
Chris Lattner19d9d432008-05-22 03:22:42 +0000739 SmallPtrSet<BasicBlock*, 16> ProcessedBlocks;
Chris Lattner0ed2da92003-12-10 15:56:24 +0000740
Devang Patelb7211a22007-08-21 00:31:24 +0000741 SmallVector<BasicBlock*, 8> ExitBlocks;
Chris Lattner5fa802f2004-04-18 22:15:13 +0000742 CurLoop->getExitBlocks(ExitBlocks);
Chris Lattner19d9d432008-05-22 03:22:42 +0000743 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i) {
744 if (!ProcessedBlocks.insert(ExitBlocks[i]))
745 continue;
746
747 // Copy all of the allocas into their memory locations.
Dan Gohman02dea8b2008-05-23 21:05:58 +0000748 BasicBlock::iterator BI = ExitBlocks[i]->getFirstNonPHI();
Chris Lattner19d9d432008-05-22 03:22:42 +0000749 Instruction *InsertPos = BI;
750 unsigned PVN = 0;
751 for (unsigned i = 0, e = PromotedValues.size(); i != e; ++i) {
752 // Load from the alloca.
753 LoadInst *LI = new LoadInst(PromotedValues[i].first, "", InsertPos);
Chris Lattnerfb3ee192004-09-15 01:04:07 +0000754
Chris Lattner19d9d432008-05-22 03:22:42 +0000755 // If this is a pointer type, update alias info appropriately.
756 if (isa<PointerType>(LI->getType()))
757 CurAST->copyValue(PointerValueNumbers[PVN++], LI);
Chris Lattnerfb3ee192004-09-15 01:04:07 +0000758
Chris Lattner19d9d432008-05-22 03:22:42 +0000759 // Store into the memory we promoted.
760 new StoreInst(LI, PromotedValues[i].second, InsertPos);
Chris Lattner0ed2da92003-12-10 15:56:24 +0000761 }
Chris Lattner19d9d432008-05-22 03:22:42 +0000762 }
Chris Lattner0ed2da92003-12-10 15:56:24 +0000763
Chris Lattner2e6e7412003-02-24 03:52:32 +0000764 // Now that we have done the deed, use the mem2reg functionality to promote
Chris Lattnerfb3ee192004-09-15 01:04:07 +0000765 // all of the new allocas we just created into real SSA registers.
Chris Lattner2e6e7412003-02-24 03:52:32 +0000766 //
767 std::vector<AllocaInst*> PromotedAllocas;
768 PromotedAllocas.reserve(PromotedValues.size());
769 for (unsigned i = 0, e = PromotedValues.size(); i != e; ++i)
770 PromotedAllocas.push_back(PromotedValues[i].first);
Owen Anderson0a205a42009-07-05 22:41:43 +0000771 PromoteMemToReg(PromotedAllocas, *DT, *DF, Context, CurAST);
Chris Lattner2e6e7412003-02-24 03:52:32 +0000772}
773
Chris Lattnerfb3ee192004-09-15 01:04:07 +0000774/// FindPromotableValuesInLoop - Check the current loop for stores to definite
Devang Patelf2038b12007-09-19 20:18:51 +0000775/// pointers, which are not loaded and stored through may aliases and are safe
776/// for promotion. If these are found, create an alloca for the value, add it
777/// to the PromotedValues list, and keep track of the mapping from value to
778/// alloca.
Chris Lattnerfb3ee192004-09-15 01:04:07 +0000779void LICM::FindPromotableValuesInLoop(
Chris Lattner2e6e7412003-02-24 03:52:32 +0000780 std::vector<std::pair<AllocaInst*, Value*> > &PromotedValues,
781 std::map<Value*, AllocaInst*> &ValueToAllocaMap) {
782 Instruction *FnStart = CurLoop->getHeader()->getParent()->begin()->begin();
783
Chris Lattnerfb3ee192004-09-15 01:04:07 +0000784 // Loop over all of the alias sets in the tracker object.
Chris Lattner0252e492003-03-03 23:32:45 +0000785 for (AliasSetTracker::iterator I = CurAST->begin(), E = CurAST->end();
786 I != E; ++I) {
787 AliasSet &AS = *I;
788 // We can promote this alias set if it has a store, if it is a "Must" alias
Chris Lattnerfb3ee192004-09-15 01:04:07 +0000789 // set, if the pointer is loop invariant, and if we are not eliminating any
Chris Lattner118dd0c2004-03-15 04:11:30 +0000790 // volatile loads or stores.
Chris Lattner29d92932008-05-22 00:53:38 +0000791 if (AS.isForwardingAliasSet() || !AS.isMod() || !AS.isMustAlias() ||
Chris Lattnerd7168dd2009-03-09 05:11:09 +0000792 AS.isVolatile() || !CurLoop->isLoopInvariant(AS.begin()->getValue()))
Chris Lattner29d92932008-05-22 00:53:38 +0000793 continue;
794
795 assert(!AS.empty() &&
796 "Must alias set should have at least one pointer element in it!");
Chris Lattnerd7168dd2009-03-09 05:11:09 +0000797 Value *V = AS.begin()->getValue();
Chris Lattner2e6e7412003-02-24 03:52:32 +0000798
Chris Lattner29d92932008-05-22 00:53:38 +0000799 // Check that all of the pointers in the alias set have the same type. We
800 // cannot (yet) promote a memory location that is loaded and stored in
801 // different sizes.
802 {
Chris Lattner0252e492003-03-03 23:32:45 +0000803 bool PointerOk = true;
804 for (AliasSet::iterator I = AS.begin(), E = AS.end(); I != E; ++I)
Chris Lattnerd7168dd2009-03-09 05:11:09 +0000805 if (V->getType() != I->getValue()->getType()) {
Chris Lattner0252e492003-03-03 23:32:45 +0000806 PointerOk = false;
807 break;
Chris Lattner2e6e7412003-02-24 03:52:32 +0000808 }
Chris Lattner29d92932008-05-22 00:53:38 +0000809 if (!PointerOk)
810 continue;
Chris Lattner2e6e7412003-02-24 03:52:32 +0000811 }
Chris Lattner29d92932008-05-22 00:53:38 +0000812
Chris Lattner19d9d432008-05-22 03:22:42 +0000813 // It isn't safe to promote a load/store from the loop if the load/store is
814 // conditional. For example, turning:
815 //
816 // for () { if (c) *P += 1; }
817 //
818 // into:
819 //
820 // tmp = *P; for () { if (c) tmp +=1; } *P = tmp;
821 //
822 // is not safe, because *P may only be valid to access if 'c' is true.
823 //
824 // It is safe to promote P if all uses are direct load/stores and if at
825 // least one is guaranteed to be executed.
826 bool GuaranteedToExecute = false;
827 bool InvalidInst = false;
828 for (Value::use_iterator UI = V->use_begin(), UE = V->use_end();
829 UI != UE; ++UI) {
830 // Ignore instructions not in this loop.
Chris Lattner29d92932008-05-22 00:53:38 +0000831 Instruction *Use = dyn_cast<Instruction>(*UI);
832 if (!Use || !CurLoop->contains(Use->getParent()))
833 continue;
Chris Lattner29d92932008-05-22 00:53:38 +0000834
Chris Lattner19d9d432008-05-22 03:22:42 +0000835 if (!isa<LoadInst>(Use) && !isa<StoreInst>(Use)) {
836 InvalidInst = true;
Chris Lattner29d92932008-05-22 00:53:38 +0000837 break;
Chris Lattner19d9d432008-05-22 03:22:42 +0000838 }
839
840 if (!GuaranteedToExecute)
841 GuaranteedToExecute = isSafeToExecuteUnconditionally(*Use);
Chris Lattner29d92932008-05-22 00:53:38 +0000842 }
843
Chris Lattner19d9d432008-05-22 03:22:42 +0000844 // If there is an non-load/store instruction in the loop, we can't promote
845 // it. If there isn't a guaranteed-to-execute instruction, we can't
846 // promote.
847 if (InvalidInst || !GuaranteedToExecute)
Chris Lattner29d92932008-05-22 00:53:38 +0000848 continue;
849
850 const Type *Ty = cast<PointerType>(V->getType())->getElementType();
Owen Anderson50dead02009-07-15 23:53:25 +0000851 AllocaInst *AI = new AllocaInst(Ty, 0, V->getName()+".tmp", FnStart);
Chris Lattner29d92932008-05-22 00:53:38 +0000852 PromotedValues.push_back(std::make_pair(AI, V));
853
854 // Update the AST and alias analysis.
855 CurAST->copyValue(V, AI);
856
857 for (AliasSet::iterator I = AS.begin(), E = AS.end(); I != E; ++I)
Chris Lattnerd7168dd2009-03-09 05:11:09 +0000858 ValueToAllocaMap.insert(std::make_pair(I->getValue(), AI));
Chris Lattner29d92932008-05-22 00:53:38 +0000859
860 DOUT << "LICM: Promoting value: " << *V << "\n";
Chris Lattner2e6e7412003-02-24 03:52:32 +0000861 }
Chris Lattnerf5e84aa2002-08-22 21:39:55 +0000862}
Devang Patel91d22c82007-07-31 08:01:41 +0000863
864/// cloneBasicBlockAnalysis - Simple Analysis hook. Clone alias set info.
865void LICM::cloneBasicBlockAnalysis(BasicBlock *From, BasicBlock *To, Loop *L) {
866 AliasSetTracker *AST = LoopToAliasMap[L];
867 if (!AST)
868 return;
869
870 AST->copyValue(From, To);
871}
872
873/// deleteAnalysisValue - Simple Analysis hook. Delete value V from alias
874/// set.
875void LICM::deleteAnalysisValue(Value *V, Loop *L) {
876 AliasSetTracker *AST = LoopToAliasMap[L];
877 if (!AST)
878 return;
879
880 AST->deleteValue(V);
881}