blob: 1521c5f60dee6896c74f4e0b4cbbc435ccd00246 [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"
39#include "llvm/Target/TargetData.h"
Chris Lattnere0e734e2002-05-10 22:44:58 +000040#include "llvm/Analysis/LoopInfo.h"
Devang Patel54959d62007-03-07 04:41:30 +000041#include "llvm/Analysis/LoopPass.h"
Chris Lattnerf5e84aa2002-08-22 21:39:55 +000042#include "llvm/Analysis/AliasAnalysis.h"
Chris Lattner0252e492003-03-03 23:32:45 +000043#include "llvm/Analysis/AliasSetTracker.h"
Chris Lattner952eaee2002-09-29 21:46:09 +000044#include "llvm/Analysis/Dominators.h"
Devang Patel96b651c2007-07-30 20:19:59 +000045#include "llvm/Analysis/ScalarEvolution.h"
Chris Lattner2741c972004-05-23 21:20:19 +000046#include "llvm/Transforms/Utils/PromoteMemToReg.h"
Reid Spencer9133fe22007-02-05 23:32:05 +000047#include "llvm/Support/CFG.h"
48#include "llvm/Support/Compiler.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000049#include "llvm/Support/CommandLine.h"
50#include "llvm/Support/Debug.h"
51#include "llvm/ADT/Statistic.h"
Chris Lattnere0e734e2002-05-10 22:44:58 +000052#include <algorithm>
Chris Lattner92094b42003-12-09 17:18:00 +000053using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000054
Chris Lattner0e5f4992006-12-19 21:40:18 +000055STATISTIC(NumSunk , "Number of instructions sunk out of loop");
56STATISTIC(NumHoisted , "Number of instructions hoisted out of loop");
57STATISTIC(NumMovedLoads, "Number of load insts hoisted or sunk");
58STATISTIC(NumMovedCalls, "Number of call insts hoisted or sunk");
59STATISTIC(NumPromoted , "Number of memory locations promoted to registers");
60
Chris Lattnere0e734e2002-05-10 22:44:58 +000061namespace {
Chris Lattner4a650af2003-10-13 05:04:27 +000062 cl::opt<bool>
63 DisablePromotion("disable-licm-promotion", cl::Hidden,
64 cl::desc("Disable memory promotion in LICM pass"));
Chris Lattner2e6e7412003-02-24 03:52:32 +000065
Devang Patel54959d62007-03-07 04:41:30 +000066 struct VISIBILITY_HIDDEN LICM : public LoopPass {
Nick Lewyckyecd94c82007-05-06 13:37:16 +000067 static char ID; // Pass identification, replacement for typeid
Devang Patel794fd752007-05-01 21:15:47 +000068 LICM() : LoopPass((intptr_t)&ID) {}
69
Devang Patel54959d62007-03-07 04:41:30 +000070 virtual bool runOnLoop(Loop *L, LPPassManager &LPM);
Chris Lattnere0e734e2002-05-10 22:44:58 +000071
Chris Lattner94170592002-09-26 16:52:07 +000072 /// This transformation requires natural loop information & requires that
73 /// loop preheaders be inserted into the CFG...
74 ///
Chris Lattnere0e734e2002-05-10 22:44:58 +000075 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattnercb2610e2002-10-21 20:00:28 +000076 AU.setPreservesCFG();
Chris Lattner98bf4362003-10-12 21:52:28 +000077 AU.addRequiredID(LoopSimplifyID);
Chris Lattner5f0eb8d2002-08-08 19:01:30 +000078 AU.addRequired<LoopInfo>();
Owen Anderson3a2b58f2007-04-24 06:40:39 +000079 AU.addRequired<DominatorTree>();
Chris Lattner0252e492003-03-03 23:32:45 +000080 AU.addRequired<DominanceFrontier>(); // For scalar promotion (mem2reg)
Chris Lattnerf5e84aa2002-08-22 21:39:55 +000081 AU.addRequired<AliasAnalysis>();
Devang Patel96b651c2007-07-30 20:19:59 +000082 AU.addPreserved<ScalarEvolution>();
83 AU.addPreserved<DominanceFrontier>();
Chris Lattnere0e734e2002-05-10 22:44:58 +000084 }
85
Dan Gohman747603e2007-04-17 18:21:36 +000086 bool doFinalization() {
Anton Korobeynikovfd94dd52007-11-25 23:52:02 +000087 // Free the values stored in the map
88 for (std::map<Loop *, AliasSetTracker *>::iterator
89 I = LoopToAliasMap.begin(), E = LoopToAliasMap.end(); I != E; ++I)
90 delete I->second;
91
Devang Patel54959d62007-03-07 04:41:30 +000092 LoopToAliasMap.clear();
93 return false;
94 }
95
Chris Lattnere0e734e2002-05-10 22:44:58 +000096 private:
Chris Lattner92094b42003-12-09 17:18:00 +000097 // Various analyses that we use...
Chris Lattner2e6e7412003-02-24 03:52:32 +000098 AliasAnalysis *AA; // Current AliasAnalysis information
Chris Lattner92094b42003-12-09 17:18:00 +000099 LoopInfo *LI; // Current LoopInfo
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000100 DominatorTree *DT; // Dominator Tree for the current Loop...
Chris Lattner43f820d2003-10-05 21:20:13 +0000101 DominanceFrontier *DF; // Current Dominance Frontier
Chris Lattner92094b42003-12-09 17:18:00 +0000102
103 // State that is updated as we process loops
Chris Lattner2e6e7412003-02-24 03:52:32 +0000104 bool Changed; // Set to true when we change anything.
105 BasicBlock *Preheader; // The preheader block of the current loop...
106 Loop *CurLoop; // The current loop we are working on...
Chris Lattner0252e492003-03-03 23:32:45 +0000107 AliasSetTracker *CurAST; // AliasSet information for the current loop...
Devang Patel54959d62007-03-07 04:41:30 +0000108 std::map<Loop *, AliasSetTracker *> LoopToAliasMap;
Chris Lattnere0e734e2002-05-10 22:44:58 +0000109
Devang Patel91d22c82007-07-31 08:01:41 +0000110 /// cloneBasicBlockAnalysis - Simple Analysis hook. Clone alias set info.
111 void cloneBasicBlockAnalysis(BasicBlock *From, BasicBlock *To, Loop *L);
112
113 /// deleteAnalysisValue - Simple Analysis hook. Delete value V from alias
114 /// set.
115 void deleteAnalysisValue(Value *V, Loop *L);
116
Chris Lattnere4365b22003-12-19 07:22:45 +0000117 /// SinkRegion - Walk the specified region of the CFG (defined by all blocks
118 /// dominated by the specified block, and that are in the current loop) in
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000119 /// reverse depth first order w.r.t the DominatorTree. This allows us to
Chris Lattnere4365b22003-12-19 07:22:45 +0000120 /// visit uses before definitions, allowing us to sink a loop body in one
121 /// pass without iteration.
122 ///
Devang Patel26042422007-06-04 00:32:22 +0000123 void SinkRegion(DomTreeNode *N);
Chris Lattnere4365b22003-12-19 07:22:45 +0000124
Chris Lattner952eaee2002-09-29 21:46:09 +0000125 /// HoistRegion - Walk the specified region of the CFG (defined by all
126 /// blocks dominated by the specified block, and that are in the current
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000127 /// loop) in depth first order w.r.t the DominatorTree. This allows us to
Misha Brukmancf00c4a2003-10-10 17:57:28 +0000128 /// visit definitions before uses, allowing us to hoist a loop body in one
Chris Lattner952eaee2002-09-29 21:46:09 +0000129 /// pass without iteration.
130 ///
Devang Patel26042422007-06-04 00:32:22 +0000131 void HoistRegion(DomTreeNode *N);
Chris Lattner952eaee2002-09-29 21:46:09 +0000132
Chris Lattnerb4613732002-09-29 22:26:07 +0000133 /// inSubLoop - Little predicate that returns true if the specified basic
134 /// block is in a subloop of the current one, not the current one itself.
Chris Lattner94170592002-09-26 16:52:07 +0000135 ///
Chris Lattnerb4613732002-09-29 22:26:07 +0000136 bool inSubLoop(BasicBlock *BB) {
137 assert(CurLoop->contains(BB) && "Only valid if BB is IN the loop");
Chris Lattner329c1c62004-01-08 00:09:44 +0000138 for (Loop::iterator I = CurLoop->begin(), E = CurLoop->end(); I != E; ++I)
139 if ((*I)->contains(BB))
Chris Lattnerb4613732002-09-29 22:26:07 +0000140 return true; // A subloop actually contains this block!
141 return false;
Chris Lattnere0e734e2002-05-10 22:44:58 +0000142 }
143
Chris Lattnera2706512003-12-10 06:41:05 +0000144 /// isExitBlockDominatedByBlockInLoop - This method checks to see if the
145 /// specified exit block of the loop is dominated by the specified block
146 /// that is in the body of the loop. We use these constraints to
147 /// dramatically limit the amount of the dominator tree that needs to be
148 /// searched.
149 bool isExitBlockDominatedByBlockInLoop(BasicBlock *ExitBlock,
150 BasicBlock *BlockInLoop) const {
151 // If the block in the loop is the loop header, it must be dominated!
152 BasicBlock *LoopHeader = CurLoop->getHeader();
153 if (BlockInLoop == LoopHeader)
154 return true;
Misha Brukmanfd939082005-04-21 23:48:37 +0000155
Devang Patel26042422007-06-04 00:32:22 +0000156 DomTreeNode *BlockInLoopNode = DT->getNode(BlockInLoop);
157 DomTreeNode *IDom = DT->getNode(ExitBlock);
Misha Brukmanfd939082005-04-21 23:48:37 +0000158
Chris Lattnera2706512003-12-10 06:41:05 +0000159 // Because the exit block is not in the loop, we know we have to get _at
Chris Lattner2741c972004-05-23 21:20:19 +0000160 // least_ its immediate dominator.
Chris Lattnera2706512003-12-10 06:41:05 +0000161 do {
162 // Get next Immediate Dominator.
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000163 IDom = IDom->getIDom();
Misha Brukmanfd939082005-04-21 23:48:37 +0000164
Chris Lattnera2706512003-12-10 06:41:05 +0000165 // If we have got to the header of the loop, then the instructions block
166 // did not dominate the exit node, so we can't hoist it.
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000167 if (IDom->getBlock() == LoopHeader)
Chris Lattnera2706512003-12-10 06:41:05 +0000168 return false;
Misha Brukmanfd939082005-04-21 23:48:37 +0000169
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000170 } while (IDom != BlockInLoopNode);
Chris Lattnera2706512003-12-10 06:41:05 +0000171
172 return true;
173 }
174
175 /// sink - When an instruction is found to only be used outside of the loop,
176 /// this function moves it to the exit blocks and patches up SSA form as
177 /// needed.
178 ///
179 void sink(Instruction &I);
180
Chris Lattner94170592002-09-26 16:52:07 +0000181 /// hoist - When an instruction is found to only use loop invariant operands
182 /// that is safe to hoist, this instruction is called to do the dirty work.
183 ///
Chris Lattner7e708292002-06-25 16:13:24 +0000184 void hoist(Instruction &I);
Chris Lattnere0e734e2002-05-10 22:44:58 +0000185
Chris Lattnera2706512003-12-10 06:41:05 +0000186 /// isSafeToExecuteUnconditionally - Only sink or hoist an instruction if it
187 /// is not a trapping instruction or if it is a trapping instruction and is
188 /// guaranteed to execute.
Tanya Lattner9966c032003-08-05 18:45:46 +0000189 ///
Chris Lattnera2706512003-12-10 06:41:05 +0000190 bool isSafeToExecuteUnconditionally(Instruction &I);
Tanya Lattner9966c032003-08-05 18:45:46 +0000191
Chris Lattner94170592002-09-26 16:52:07 +0000192 /// pointerInvalidatedByLoop - Return true if the body of this loop may
193 /// store into the memory location pointed to by V.
Misha Brukmanfd939082005-04-21 23:48:37 +0000194 ///
Chris Lattnerf3e1d692004-11-26 21:20:09 +0000195 bool pointerInvalidatedByLoop(Value *V, unsigned Size) {
Chris Lattner0252e492003-03-03 23:32:45 +0000196 // Check to see if any of the basic blocks in CurLoop invalidate *V.
Chris Lattnerf3e1d692004-11-26 21:20:09 +0000197 return CurAST->getAliasSetForPointer(V, Size).isMod();
Chris Lattner2e6e7412003-02-24 03:52:32 +0000198 }
Chris Lattnerf5e84aa2002-08-22 21:39:55 +0000199
Chris Lattnera2706512003-12-10 06:41:05 +0000200 bool canSinkOrHoistInst(Instruction &I);
201 bool isLoopInvariantInst(Instruction &I);
202 bool isNotUsedInLoop(Instruction &I);
Chris Lattnere0e734e2002-05-10 22:44:58 +0000203
Chris Lattner2e6e7412003-02-24 03:52:32 +0000204 /// PromoteValuesInLoop - Look at the stores in the loop and promote as many
205 /// to scalars as we can.
206 ///
207 void PromoteValuesInLoop();
208
Chris Lattnerfb3ee192004-09-15 01:04:07 +0000209 /// FindPromotableValuesInLoop - Check the current loop for stores to
Misha Brukman352361b2003-09-11 15:32:37 +0000210 /// definite pointers, which are not loaded and stored through may aliases.
Chris Lattner2e6e7412003-02-24 03:52:32 +0000211 /// If these are found, create an alloca for the value, add it to the
212 /// PromotedValues list, and keep track of the mapping from value to
213 /// alloca...
214 ///
Chris Lattnerfb3ee192004-09-15 01:04:07 +0000215 void FindPromotableValuesInLoop(
Chris Lattner2e6e7412003-02-24 03:52:32 +0000216 std::vector<std::pair<AllocaInst*, Value*> > &PromotedValues,
217 std::map<Value*, AllocaInst*> &Val2AlMap);
Chris Lattnere0e734e2002-05-10 22:44:58 +0000218 };
Chris Lattnerf6293092002-07-23 18:06:35 +0000219
Devang Patel19974732007-05-03 01:11:54 +0000220 char LICM::ID = 0;
Chris Lattner7f8897f2006-08-27 22:42:52 +0000221 RegisterPass<LICM> X("licm", "Loop Invariant Code Motion");
Chris Lattnere0e734e2002-05-10 22:44:58 +0000222}
223
Devang Patel54959d62007-03-07 04:41:30 +0000224LoopPass *llvm::createLICMPass() { return new LICM(); }
Chris Lattnere0e734e2002-05-10 22:44:58 +0000225
Devang Patel8d246f02007-07-31 16:52:25 +0000226/// Hoist expressions out of the specified loop. Note, alias info for inner
227/// loop is not preserved so it is not a good idea to run LICM multiple
228/// times on one loop.
Chris Lattner94170592002-09-26 16:52:07 +0000229///
Devang Patel54959d62007-03-07 04:41:30 +0000230bool LICM::runOnLoop(Loop *L, LPPassManager &LPM) {
Chris Lattner2e6e7412003-02-24 03:52:32 +0000231 Changed = false;
Chris Lattnere0e734e2002-05-10 22:44:58 +0000232
Chris Lattner2e6e7412003-02-24 03:52:32 +0000233 // Get our Loop and Alias Analysis information...
234 LI = &getAnalysis<LoopInfo>();
Chris Lattnerf5e84aa2002-08-22 21:39:55 +0000235 AA = &getAnalysis<AliasAnalysis>();
Chris Lattner43f820d2003-10-05 21:20:13 +0000236 DF = &getAnalysis<DominanceFrontier>();
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000237 DT = &getAnalysis<DominatorTree>();
Chris Lattnerf5e84aa2002-08-22 21:39:55 +0000238
Devang Patel54959d62007-03-07 04:41:30 +0000239 CurAST = new AliasSetTracker(*AA);
Devang Patelf38ac5d2007-05-30 15:29:37 +0000240 // Collect Alias info from subloops
Devang Patel54959d62007-03-07 04:41:30 +0000241 for (Loop::iterator LoopItr = L->begin(), LoopItrE = L->end();
242 LoopItr != LoopItrE; ++LoopItr) {
243 Loop *InnerL = *LoopItr;
244 AliasSetTracker *InnerAST = LoopToAliasMap[InnerL];
245 assert (InnerAST && "Where is my AST?");
246
247 // What if InnerLoop was modified by other passes ?
248 CurAST->add(*InnerAST);
Chris Lattner2e6e7412003-02-24 03:52:32 +0000249 }
Devang Patel54959d62007-03-07 04:41:30 +0000250
Chris Lattnere0e734e2002-05-10 22:44:58 +0000251 CurLoop = L;
252
Chris Lattner99a57212002-09-26 19:40:25 +0000253 // Get the preheader block to move instructions into...
254 Preheader = L->getLoopPreheader();
255 assert(Preheader&&"Preheader insertion pass guarantees we have a preheader!");
256
Chris Lattner2e6e7412003-02-24 03:52:32 +0000257 // Loop over the body of this loop, looking for calls, invokes, and stores.
Chris Lattner0252e492003-03-03 23:32:45 +0000258 // Because subloops have already been incorporated into AST, we skip blocks in
Chris Lattner2e6e7412003-02-24 03:52:32 +0000259 // subloops.
260 //
Chris Lattnera2706512003-12-10 06:41:05 +0000261 for (std::vector<BasicBlock*>::const_iterator I = L->getBlocks().begin(),
262 E = L->getBlocks().end(); I != E; ++I)
Chris Lattner2e6e7412003-02-24 03:52:32 +0000263 if (LI->getLoopFor(*I) == L) // Ignore blocks in subloops...
Chris Lattnere34e9a22007-04-14 23:32:02 +0000264 CurAST->add(**I); // Incorporate the specified basic block
Chris Lattner2e6e7412003-02-24 03:52:32 +0000265
Chris Lattnere0e734e2002-05-10 22:44:58 +0000266 // We want to visit all of the instructions in this loop... that are not parts
267 // of our subloops (they have already had their invariants hoisted out of
268 // their loop, into this loop, so there is no need to process the BODIES of
269 // the subloops).
270 //
Chris Lattner952eaee2002-09-29 21:46:09 +0000271 // Traverse the body of the loop in depth first order on the dominator tree so
272 // that we are guaranteed to see definitions before we see uses. This allows
Nick Lewyckyaf5cbc82007-08-18 15:08:56 +0000273 // us to sink instructions in one pass, without iteration. After sinking
Chris Lattnere4365b22003-12-19 07:22:45 +0000274 // instructions, we perform another pass to hoist them out of the loop.
Chris Lattner952eaee2002-09-29 21:46:09 +0000275 //
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000276 SinkRegion(DT->getNode(L->getHeader()));
277 HoistRegion(DT->getNode(L->getHeader()));
Chris Lattnere0e734e2002-05-10 22:44:58 +0000278
Chris Lattner2e6e7412003-02-24 03:52:32 +0000279 // Now that all loop invariants have been removed from the loop, promote any
280 // memory references to scalars that we can...
281 if (!DisablePromotion)
282 PromoteValuesInLoop();
283
Chris Lattnere0e734e2002-05-10 22:44:58 +0000284 // Clear out loops state information for the next iteration
285 CurLoop = 0;
Chris Lattner99a57212002-09-26 19:40:25 +0000286 Preheader = 0;
Devang Patel54959d62007-03-07 04:41:30 +0000287
288 LoopToAliasMap[L] = CurAST;
289 return Changed;
Chris Lattnere0e734e2002-05-10 22:44:58 +0000290}
291
Chris Lattnere4365b22003-12-19 07:22:45 +0000292/// SinkRegion - Walk the specified region of the CFG (defined by all blocks
293/// dominated by the specified block, and that are in the current loop) in
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000294/// reverse depth first order w.r.t the DominatorTree. This allows us to visit
Chris Lattnere4365b22003-12-19 07:22:45 +0000295/// uses before definitions, allowing us to sink a loop body in one pass without
296/// iteration.
297///
Devang Patel26042422007-06-04 00:32:22 +0000298void LICM::SinkRegion(DomTreeNode *N) {
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000299 assert(N != 0 && "Null dominator tree node?");
300 BasicBlock *BB = N->getBlock();
Chris Lattnere4365b22003-12-19 07:22:45 +0000301
302 // If this subregion is not in the top level loop at all, exit.
303 if (!CurLoop->contains(BB)) return;
304
305 // We are processing blocks in reverse dfo, so process children first...
Devang Patel26042422007-06-04 00:32:22 +0000306 const std::vector<DomTreeNode*> &Children = N->getChildren();
Chris Lattnere4365b22003-12-19 07:22:45 +0000307 for (unsigned i = 0, e = Children.size(); i != e; ++i)
308 SinkRegion(Children[i]);
309
310 // Only need to process the contents of this block if it is not part of a
311 // subloop (which would already have been processed).
312 if (inSubLoop(BB)) return;
313
Chris Lattnera3df8a92003-12-19 08:18:16 +0000314 for (BasicBlock::iterator II = BB->end(); II != BB->begin(); ) {
315 Instruction &I = *--II;
Misha Brukmanfd939082005-04-21 23:48:37 +0000316
Chris Lattnere4365b22003-12-19 07:22:45 +0000317 // Check to see if we can sink this instruction to the exit blocks
318 // of the loop. We can do this if the all users of the instruction are
319 // outside of the loop. In this case, it doesn't even matter if the
320 // operands of the instruction are loop invariant.
321 //
Chris Lattner70ac2dc2005-03-25 00:22:36 +0000322 if (isNotUsedInLoop(I) && canSinkOrHoistInst(I)) {
Chris Lattnera3df8a92003-12-19 08:18:16 +0000323 ++II;
Chris Lattnere4365b22003-12-19 07:22:45 +0000324 sink(I);
Chris Lattnera3df8a92003-12-19 08:18:16 +0000325 }
Chris Lattnere4365b22003-12-19 07:22:45 +0000326 }
327}
328
329
Chris Lattner952eaee2002-09-29 21:46:09 +0000330/// HoistRegion - Walk the specified region of the CFG (defined by all blocks
331/// dominated by the specified block, and that are in the current loop) in depth
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000332/// first order w.r.t the DominatorTree. This allows us to visit definitions
Chris Lattner952eaee2002-09-29 21:46:09 +0000333/// before uses, allowing us to hoist a loop body in one pass without iteration.
334///
Devang Patel26042422007-06-04 00:32:22 +0000335void LICM::HoistRegion(DomTreeNode *N) {
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000336 assert(N != 0 && "Null dominator tree node?");
337 BasicBlock *BB = N->getBlock();
Chris Lattner952eaee2002-09-29 21:46:09 +0000338
Chris Lattnerb4613732002-09-29 22:26:07 +0000339 // If this subregion is not in the top level loop at all, exit.
Chris Lattnered6dfc22003-12-09 19:32:44 +0000340 if (!CurLoop->contains(BB)) return;
Chris Lattner952eaee2002-09-29 21:46:09 +0000341
Chris Lattnera2706512003-12-10 06:41:05 +0000342 // Only need to process the contents of this block if it is not part of a
343 // subloop (which would already have been processed).
Chris Lattnered6dfc22003-12-09 19:32:44 +0000344 if (!inSubLoop(BB))
Chris Lattnera2706512003-12-10 06:41:05 +0000345 for (BasicBlock::iterator II = BB->begin(), E = BB->end(); II != E; ) {
346 Instruction &I = *II++;
Misha Brukmanfd939082005-04-21 23:48:37 +0000347
Chris Lattnere4365b22003-12-19 07:22:45 +0000348 // Try hoisting the instruction out to the preheader. We can only do this
349 // if all of the operands of the instruction are loop invariant and if it
350 // is safe to hoist the instruction.
351 //
Misha Brukmanfd939082005-04-21 23:48:37 +0000352 if (isLoopInvariantInst(I) && canSinkOrHoistInst(I) &&
Chris Lattnere4365b22003-12-19 07:22:45 +0000353 isSafeToExecuteUnconditionally(I))
Chris Lattner3c80a512006-06-26 19:10:05 +0000354 hoist(I);
Chris Lattnera2706512003-12-10 06:41:05 +0000355 }
Chris Lattner952eaee2002-09-29 21:46:09 +0000356
Devang Patel26042422007-06-04 00:32:22 +0000357 const std::vector<DomTreeNode*> &Children = N->getChildren();
Chris Lattner952eaee2002-09-29 21:46:09 +0000358 for (unsigned i = 0, e = Children.size(); i != e; ++i)
Chris Lattner56b7ee22004-06-19 20:23:35 +0000359 HoistRegion(Children[i]);
Chris Lattner952eaee2002-09-29 21:46:09 +0000360}
361
Chris Lattnera2706512003-12-10 06:41:05 +0000362/// canSinkOrHoistInst - Return true if the hoister and sinker can handle this
363/// instruction.
364///
365bool LICM::canSinkOrHoistInst(Instruction &I) {
Chris Lattnered6dfc22003-12-09 19:32:44 +0000366 // Loads have extra constraints we have to verify before we can hoist them.
367 if (LoadInst *LI = dyn_cast<LoadInst>(&I)) {
368 if (LI->isVolatile())
369 return false; // Don't hoist volatile loads!
370
371 // Don't hoist loads which have may-aliased stores in loop.
Chris Lattnerf3e1d692004-11-26 21:20:09 +0000372 unsigned Size = 0;
373 if (LI->getType()->isSized())
Duncan Sands514ab342007-11-01 20:53:16 +0000374 Size = AA->getTargetData().getTypeStoreSize(LI->getType());
Chris Lattnerf3e1d692004-11-26 21:20:09 +0000375 return !pointerInvalidatedByLoop(LI->getOperand(0), Size);
Chris Lattner118dd0c2004-03-15 04:11:30 +0000376 } else if (CallInst *CI = dyn_cast<CallInst>(&I)) {
377 // Handle obvious cases efficiently.
Duncan Sandsdff67102007-12-01 07:51:45 +0000378 AliasAnalysis::ModRefBehavior Behavior = AA->getModRefBehavior(CI);
379 if (Behavior == AliasAnalysis::DoesNotAccessMemory)
380 return true;
381 else if (Behavior == AliasAnalysis::OnlyReadsMemory) {
382 // If this call only reads from memory and there are no writes to memory
383 // in the loop, we can hoist or sink the call as appropriate.
384 bool FoundMod = false;
385 for (AliasSetTracker::iterator I = CurAST->begin(), E = CurAST->end();
386 I != E; ++I) {
387 AliasSet &AS = *I;
388 if (!AS.isForwardingAliasSet() && AS.isMod()) {
389 FoundMod = true;
390 break;
Chris Lattner118dd0c2004-03-15 04:11:30 +0000391 }
Chris Lattner118dd0c2004-03-15 04:11:30 +0000392 }
Duncan Sandsdff67102007-12-01 07:51:45 +0000393 if (!FoundMod) return true;
Chris Lattner118dd0c2004-03-15 04:11:30 +0000394 }
395
396 // FIXME: This should use mod/ref information to see if we can hoist or sink
397 // the call.
Misha Brukmanfd939082005-04-21 23:48:37 +0000398
Chris Lattner118dd0c2004-03-15 04:11:30 +0000399 return false;
Chris Lattnered6dfc22003-12-09 19:32:44 +0000400 }
401
Reid Spencer3da59db2006-11-27 01:05:10 +0000402 // Otherwise these instructions are hoistable/sinkable
Reid Spencer832254e2007-02-02 02:16:23 +0000403 return isa<BinaryOperator>(I) || isa<CastInst>(I) ||
Dan Gohmand8af90c2007-06-05 16:05:55 +0000404 isa<SelectInst>(I) || isa<GetElementPtrInst>(I) || isa<CmpInst>(I) ||
405 isa<InsertElementInst>(I) || isa<ExtractElementInst>(I) ||
406 isa<ShuffleVectorInst>(I);
Chris Lattnera2706512003-12-10 06:41:05 +0000407}
408
409/// isNotUsedInLoop - Return true if the only users of this instruction are
410/// outside of the loop. If this is true, we can sink the instruction to the
411/// exit blocks of the loop.
412///
413bool LICM::isNotUsedInLoop(Instruction &I) {
Chris Lattnerea9403f2003-12-11 22:23:32 +0000414 for (Value::use_iterator UI = I.use_begin(), E = I.use_end(); UI != E; ++UI) {
415 Instruction *User = cast<Instruction>(*UI);
416 if (PHINode *PN = dyn_cast<PHINode>(User)) {
417 // PHI node uses occur in predecessor blocks!
418 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
419 if (PN->getIncomingValue(i) == &I)
420 if (CurLoop->contains(PN->getIncomingBlock(i)))
421 return false;
422 } else if (CurLoop->contains(User->getParent())) {
Chris Lattnera2706512003-12-10 06:41:05 +0000423 return false;
Chris Lattnerea9403f2003-12-11 22:23:32 +0000424 }
425 }
Chris Lattnera2706512003-12-10 06:41:05 +0000426 return true;
427}
428
429
430/// isLoopInvariantInst - Return true if all operands of this instruction are
431/// loop invariant. We also filter out non-hoistable instructions here just for
432/// efficiency.
433///
434bool LICM::isLoopInvariantInst(Instruction &I) {
435 // The instruction is loop invariant if all of its operands are loop-invariant
436 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i)
Chris Lattner3280f7b2004-04-18 22:46:08 +0000437 if (!CurLoop->isLoopInvariant(I.getOperand(i)))
Chris Lattnera2706512003-12-10 06:41:05 +0000438 return false;
439
Chris Lattnered6dfc22003-12-09 19:32:44 +0000440 // If we got this far, the instruction is loop invariant!
441 return true;
442}
443
Chris Lattnera2706512003-12-10 06:41:05 +0000444/// sink - When an instruction is found to only be used outside of the loop,
Chris Lattnera3df8a92003-12-19 08:18:16 +0000445/// this function moves it to the exit blocks and patches up SSA form as needed.
446/// This method is guaranteed to remove the original instruction from its
447/// position, and may either delete it or move it to outside of the loop.
Chris Lattnera2706512003-12-10 06:41:05 +0000448///
449void LICM::sink(Instruction &I) {
Bill Wendlingb7427032006-11-26 09:46:52 +0000450 DOUT << "LICM sinking instruction: " << I;
Chris Lattnera2706512003-12-10 06:41:05 +0000451
Devang Patelb7211a22007-08-21 00:31:24 +0000452 SmallVector<BasicBlock*, 8> ExitBlocks;
Chris Lattner5fa802f2004-04-18 22:15:13 +0000453 CurLoop->getExitBlocks(ExitBlocks);
Chris Lattnerdf45bd32003-12-10 20:43:29 +0000454
455 if (isa<LoadInst>(I)) ++NumMovedLoads;
Chris Lattner118dd0c2004-03-15 04:11:30 +0000456 else if (isa<CallInst>(I)) ++NumMovedCalls;
Chris Lattnerdf45bd32003-12-10 20:43:29 +0000457 ++NumSunk;
458 Changed = true;
459
Chris Lattnera2706512003-12-10 06:41:05 +0000460 // The case where there is only a single exit node of this loop is common
461 // enough that we handle it as a special (more efficient) case. It is more
462 // efficient to handle because there are no PHI nodes that need to be placed.
463 if (ExitBlocks.size() == 1) {
464 if (!isExitBlockDominatedByBlockInLoop(ExitBlocks[0], I.getParent())) {
465 // Instruction is not used, just delete it.
Chris Lattner2741c972004-05-23 21:20:19 +0000466 CurAST->deleteValue(&I);
Chris Lattner92f73652006-09-12 19:17:09 +0000467 if (!I.use_empty()) // If I has users in unreachable blocks, eliminate.
468 I.replaceAllUsesWith(UndefValue::get(I.getType()));
Chris Lattner3c80a512006-06-26 19:10:05 +0000469 I.eraseFromParent();
Chris Lattnera2706512003-12-10 06:41:05 +0000470 } else {
471 // Move the instruction to the start of the exit block, after any PHI
472 // nodes in it.
Chris Lattner3c80a512006-06-26 19:10:05 +0000473 I.removeFromParent();
Misha Brukmanfd939082005-04-21 23:48:37 +0000474
Chris Lattnera2706512003-12-10 06:41:05 +0000475 BasicBlock::iterator InsertPt = ExitBlocks[0]->begin();
476 while (isa<PHINode>(InsertPt)) ++InsertPt;
477 ExitBlocks[0]->getInstList().insert(InsertPt, &I);
478 }
479 } else if (ExitBlocks.size() == 0) {
480 // The instruction is actually dead if there ARE NO exit blocks.
Chris Lattner2741c972004-05-23 21:20:19 +0000481 CurAST->deleteValue(&I);
Chris Lattner92f73652006-09-12 19:17:09 +0000482 if (!I.use_empty()) // If I has users in unreachable blocks, eliminate.
483 I.replaceAllUsesWith(UndefValue::get(I.getType()));
Chris Lattner3c80a512006-06-26 19:10:05 +0000484 I.eraseFromParent();
Chris Lattnera2706512003-12-10 06:41:05 +0000485 } else {
486 // Otherwise, if we have multiple exits, use the PromoteMem2Reg function to
487 // do all of the hard work of inserting PHI nodes as necessary. We convert
488 // the value into a stack object to get it to do this.
489
490 // Firstly, we create a stack object to hold the value...
Chris Lattnereaa24302004-07-27 07:38:32 +0000491 AllocaInst *AI = 0;
Chris Lattnera2706512003-12-10 06:41:05 +0000492
Devang Patele7ae1a92007-06-01 22:15:31 +0000493 if (I.getType() != Type::VoidTy) {
Chris Lattnereaa24302004-07-27 07:38:32 +0000494 AI = new AllocaInst(I.getType(), 0, I.getName(),
Dan Gohmanecb7a772007-03-22 16:38:57 +0000495 I.getParent()->getParent()->getEntryBlock().begin());
Devang Patele7ae1a92007-06-01 22:15:31 +0000496 CurAST->add(AI);
497 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000498
Chris Lattnera2706512003-12-10 06:41:05 +0000499 // Secondly, insert load instructions for each use of the instruction
500 // outside of the loop.
501 while (!I.use_empty()) {
502 Instruction *U = cast<Instruction>(I.use_back());
503
504 // If the user is a PHI Node, we actually have to insert load instructions
505 // in all predecessor blocks, not in the PHI block itself!
506 if (PHINode *UPN = dyn_cast<PHINode>(U)) {
507 // Only insert into each predecessor once, so that we don't have
508 // different incoming values from the same block!
509 std::map<BasicBlock*, Value*> InsertedBlocks;
510 for (unsigned i = 0, e = UPN->getNumIncomingValues(); i != e; ++i)
511 if (UPN->getIncomingValue(i) == &I) {
512 BasicBlock *Pred = UPN->getIncomingBlock(i);
513 Value *&PredVal = InsertedBlocks[Pred];
514 if (!PredVal) {
515 // Insert a new load instruction right before the terminator in
516 // the predecessor block.
517 PredVal = new LoadInst(AI, "", Pred->getTerminator());
Devang Patele7ae1a92007-06-01 22:15:31 +0000518 CurAST->add(cast<LoadInst>(PredVal));
Chris Lattnera2706512003-12-10 06:41:05 +0000519 }
520
521 UPN->setIncomingValue(i, PredVal);
522 }
523
524 } else {
525 LoadInst *L = new LoadInst(AI, "", U);
526 U->replaceUsesOfWith(&I, L);
Devang Patele7ae1a92007-06-01 22:15:31 +0000527 CurAST->add(L);
Chris Lattnera2706512003-12-10 06:41:05 +0000528 }
529 }
530
531 // Thirdly, insert a copy of the instruction in each exit block of the loop
532 // that is dominated by the instruction, storing the result into the memory
533 // location. Be careful not to insert the instruction into any particular
534 // basic block more than once.
535 std::set<BasicBlock*> InsertedBlocks;
536 BasicBlock *InstOrigBB = I.getParent();
537
538 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i) {
539 BasicBlock *ExitBlock = ExitBlocks[i];
540
541 if (isExitBlockDominatedByBlockInLoop(ExitBlock, InstOrigBB)) {
Chris Lattnera2706512003-12-10 06:41:05 +0000542 // If we haven't already processed this exit block, do so now.
Chris Lattnere3cfe8d2003-12-10 16:58:24 +0000543 if (InsertedBlocks.insert(ExitBlock).second) {
Chris Lattnera2706512003-12-10 06:41:05 +0000544 // Insert the code after the last PHI node...
545 BasicBlock::iterator InsertPt = ExitBlock->begin();
546 while (isa<PHINode>(InsertPt)) ++InsertPt;
Misha Brukmanfd939082005-04-21 23:48:37 +0000547
Chris Lattnera2706512003-12-10 06:41:05 +0000548 // If this is the first exit block processed, just move the original
549 // instruction, otherwise clone the original instruction and insert
550 // the copy.
551 Instruction *New;
Chris Lattner7d3ced92003-12-10 22:35:56 +0000552 if (InsertedBlocks.size() == 1) {
Chris Lattner3c80a512006-06-26 19:10:05 +0000553 I.removeFromParent();
Chris Lattnera2706512003-12-10 06:41:05 +0000554 ExitBlock->getInstList().insert(InsertPt, &I);
555 New = &I;
556 } else {
557 New = I.clone();
Chris Lattner70ac2dc2005-03-25 00:22:36 +0000558 CurAST->copyValue(&I, New);
Chris Lattnereaa24302004-07-27 07:38:32 +0000559 if (!I.getName().empty())
560 New->setName(I.getName()+".le");
Chris Lattnera2706512003-12-10 06:41:05 +0000561 ExitBlock->getInstList().insert(InsertPt, New);
562 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000563
Chris Lattnera2706512003-12-10 06:41:05 +0000564 // Now that we have inserted the instruction, store it into the alloca
Chris Lattnereaa24302004-07-27 07:38:32 +0000565 if (AI) new StoreInst(New, AI, InsertPt);
Chris Lattnera2706512003-12-10 06:41:05 +0000566 }
567 }
568 }
Chris Lattnera3df8a92003-12-19 08:18:16 +0000569
570 // If the instruction doesn't dominate any exit blocks, it must be dead.
571 if (InsertedBlocks.empty()) {
Chris Lattner2741c972004-05-23 21:20:19 +0000572 CurAST->deleteValue(&I);
Chris Lattner3c80a512006-06-26 19:10:05 +0000573 I.eraseFromParent();
Chris Lattnera3df8a92003-12-19 08:18:16 +0000574 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000575
Chris Lattnera2706512003-12-10 06:41:05 +0000576 // Finally, promote the fine value to SSA form.
Chris Lattnereaa24302004-07-27 07:38:32 +0000577 if (AI) {
578 std::vector<AllocaInst*> Allocas;
579 Allocas.push_back(AI);
Devang Patel326821e2007-06-07 21:57:03 +0000580 PromoteMemToReg(Allocas, *DT, *DF, CurAST);
Chris Lattnereaa24302004-07-27 07:38:32 +0000581 }
Chris Lattnera2706512003-12-10 06:41:05 +0000582 }
Chris Lattnera2706512003-12-10 06:41:05 +0000583}
Chris Lattner952eaee2002-09-29 21:46:09 +0000584
Chris Lattner94170592002-09-26 16:52:07 +0000585/// hoist - When an instruction is found to only use loop invariant operands
586/// that is safe to hoist, this instruction is called to do the dirty work.
587///
Chris Lattnera2706512003-12-10 06:41:05 +0000588void LICM::hoist(Instruction &I) {
Bill Wendlingb7427032006-11-26 09:46:52 +0000589 DOUT << "LICM hoisting to " << Preheader->getName() << ": " << I;
Chris Lattnered6dfc22003-12-09 19:32:44 +0000590
Chris Lattner99a57212002-09-26 19:40:25 +0000591 // Remove the instruction from its current basic block... but don't delete the
592 // instruction.
Chris Lattner3c80a512006-06-26 19:10:05 +0000593 I.removeFromParent();
Chris Lattnere0e734e2002-05-10 22:44:58 +0000594
Chris Lattner9646e6b2002-09-26 16:38:03 +0000595 // Insert the new node in Preheader, before the terminator.
Chris Lattnera2706512003-12-10 06:41:05 +0000596 Preheader->getInstList().insert(Preheader->getTerminator(), &I);
Misha Brukmanfd939082005-04-21 23:48:37 +0000597
Chris Lattnera2706512003-12-10 06:41:05 +0000598 if (isa<LoadInst>(I)) ++NumMovedLoads;
Chris Lattner118dd0c2004-03-15 04:11:30 +0000599 else if (isa<CallInst>(I)) ++NumMovedCalls;
Chris Lattner9646e6b2002-09-26 16:38:03 +0000600 ++NumHoisted;
Chris Lattnere0e734e2002-05-10 22:44:58 +0000601 Changed = true;
602}
603
Chris Lattnera2706512003-12-10 06:41:05 +0000604/// isSafeToExecuteUnconditionally - Only sink or hoist an instruction if it is
605/// not a trapping instruction or if it is a trapping instruction and is
606/// guaranteed to execute.
Tanya Lattner9966c032003-08-05 18:45:46 +0000607///
Chris Lattnera2706512003-12-10 06:41:05 +0000608bool LICM::isSafeToExecuteUnconditionally(Instruction &Inst) {
Chris Lattner92094b42003-12-09 17:18:00 +0000609 // If it is not a trapping instruction, it is always safe to hoist.
610 if (!Inst.isTrapping()) return true;
Misha Brukmanfd939082005-04-21 23:48:37 +0000611
Chris Lattner92094b42003-12-09 17:18:00 +0000612 // Otherwise we have to check to make sure that the instruction dominates all
613 // of the exit blocks. If it doesn't, then there is a path out of the loop
614 // which does not execute this instruction, so we can't hoist it.
Tanya Lattner9966c032003-08-05 18:45:46 +0000615
Chris Lattner92094b42003-12-09 17:18:00 +0000616 // If the instruction is in the header block for the loop (which is very
617 // common), it is always guaranteed to dominate the exit blocks. Since this
618 // is a common case, and can save some work, check it now.
Chris Lattnera2706512003-12-10 06:41:05 +0000619 if (Inst.getParent() == CurLoop->getHeader())
Chris Lattner92094b42003-12-09 17:18:00 +0000620 return true;
Tanya Lattner9966c032003-08-05 18:45:46 +0000621
Chris Lattner8a919392004-11-29 21:26:12 +0000622 // It's always safe to load from a global or alloca.
623 if (isa<LoadInst>(Inst))
624 if (isa<AllocationInst>(Inst.getOperand(0)) ||
625 isa<GlobalVariable>(Inst.getOperand(0)))
626 return true;
627
Chris Lattner92094b42003-12-09 17:18:00 +0000628 // Get the exit blocks for the current loop.
Devang Patelb7211a22007-08-21 00:31:24 +0000629 SmallVector<BasicBlock*, 8> ExitBlocks;
Chris Lattner5fa802f2004-04-18 22:15:13 +0000630 CurLoop->getExitBlocks(ExitBlocks);
Chris Lattner92094b42003-12-09 17:18:00 +0000631
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000632 // For each exit block, get the DT node and walk up the DT until the
Chris Lattner92094b42003-12-09 17:18:00 +0000633 // instruction's basic block is found or we exit the loop.
Chris Lattnera2706512003-12-10 06:41:05 +0000634 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i)
635 if (!isExitBlockDominatedByBlockInLoop(ExitBlocks[i], Inst.getParent()))
636 return false;
Misha Brukmanfd939082005-04-21 23:48:37 +0000637
Tanya Lattner9966c032003-08-05 18:45:46 +0000638 return true;
639}
640
Chris Lattnereb53ae42002-09-26 16:19:31 +0000641
Chris Lattner2e6e7412003-02-24 03:52:32 +0000642/// PromoteValuesInLoop - Try to promote memory values to scalars by sinking
643/// stores out of the loop and moving loads to before the loop. We do this by
644/// looping over the stores in the loop, looking for stores to Must pointers
645/// which are loop invariant. We promote these memory locations to use allocas
646/// instead. These allocas can easily be raised to register values by the
647/// PromoteMem2Reg functionality.
648///
649void LICM::PromoteValuesInLoop() {
650 // PromotedValues - List of values that are promoted out of the loop. Each
Chris Lattner065a6162003-09-10 05:29:43 +0000651 // value has an alloca instruction for it, and a canonical version of the
Chris Lattner2e6e7412003-02-24 03:52:32 +0000652 // pointer.
653 std::vector<std::pair<AllocaInst*, Value*> > PromotedValues;
654 std::map<Value*, AllocaInst*> ValueToAllocaMap; // Map of ptr to alloca
655
Chris Lattnerfb3ee192004-09-15 01:04:07 +0000656 FindPromotableValuesInLoop(PromotedValues, ValueToAllocaMap);
657 if (ValueToAllocaMap.empty()) return; // If there are values to promote.
Chris Lattner2e6e7412003-02-24 03:52:32 +0000658
659 Changed = true;
660 NumPromoted += PromotedValues.size();
661
Chris Lattnerfb3ee192004-09-15 01:04:07 +0000662 std::vector<Value*> PointerValueNumbers;
663
Chris Lattner2e6e7412003-02-24 03:52:32 +0000664 // Emit a copy from the value into the alloca'd value in the loop preheader
665 TerminatorInst *LoopPredInst = Preheader->getTerminator();
666 for (unsigned i = 0, e = PromotedValues.size(); i != e; ++i) {
Chris Lattnerfb3ee192004-09-15 01:04:07 +0000667 Value *Ptr = PromotedValues[i].second;
668
669 // If we are promoting a pointer value, update alias information for the
670 // inserted load.
671 Value *LoadValue = 0;
672 if (isa<PointerType>(cast<PointerType>(Ptr->getType())->getElementType())) {
673 // Locate a load or store through the pointer, and assign the same value
674 // to LI as we are loading or storing. Since we know that the value is
675 // stored in this loop, this will always succeed.
676 for (Value::use_iterator UI = Ptr->use_begin(), E = Ptr->use_end();
677 UI != E; ++UI)
678 if (LoadInst *LI = dyn_cast<LoadInst>(*UI)) {
679 LoadValue = LI;
680 break;
681 } else if (StoreInst *SI = dyn_cast<StoreInst>(*UI)) {
Chris Lattnerbdacd872004-09-15 02:34:40 +0000682 if (SI->getOperand(1) == Ptr) {
Chris Lattnerfb3ee192004-09-15 01:04:07 +0000683 LoadValue = SI->getOperand(0);
684 break;
685 }
686 }
687 assert(LoadValue && "No store through the pointer found!");
688 PointerValueNumbers.push_back(LoadValue); // Remember this for later.
689 }
690
691 // Load from the memory we are promoting.
692 LoadInst *LI = new LoadInst(Ptr, Ptr->getName()+".promoted", LoopPredInst);
693
694 if (LoadValue) CurAST->copyValue(LoadValue, LI);
695
696 // Store into the temporary alloca.
Chris Lattner2e6e7412003-02-24 03:52:32 +0000697 new StoreInst(LI, PromotedValues[i].first, LoopPredInst);
698 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000699
Chris Lattner2e6e7412003-02-24 03:52:32 +0000700 // Scan the basic blocks in the loop, replacing uses of our pointers with
Chris Lattner0ed2da92003-12-10 15:56:24 +0000701 // uses of the allocas in question.
Chris Lattner2e6e7412003-02-24 03:52:32 +0000702 //
703 const std::vector<BasicBlock*> &LoopBBs = CurLoop->getBlocks();
704 for (std::vector<BasicBlock*>::const_iterator I = LoopBBs.begin(),
705 E = LoopBBs.end(); I != E; ++I) {
706 // Rewrite all loads and stores in the block of the pointer...
707 for (BasicBlock::iterator II = (*I)->begin(), E = (*I)->end();
708 II != E; ++II) {
Chris Lattnere408e252003-04-23 16:37:45 +0000709 if (LoadInst *L = dyn_cast<LoadInst>(II)) {
Chris Lattner2e6e7412003-02-24 03:52:32 +0000710 std::map<Value*, AllocaInst*>::iterator
711 I = ValueToAllocaMap.find(L->getOperand(0));
712 if (I != ValueToAllocaMap.end())
713 L->setOperand(0, I->second); // Rewrite load instruction...
Chris Lattnere408e252003-04-23 16:37:45 +0000714 } else if (StoreInst *S = dyn_cast<StoreInst>(II)) {
Chris Lattner2e6e7412003-02-24 03:52:32 +0000715 std::map<Value*, AllocaInst*>::iterator
716 I = ValueToAllocaMap.find(S->getOperand(1));
717 if (I != ValueToAllocaMap.end())
718 S->setOperand(1, I->second); // Rewrite store instruction...
719 }
720 }
Chris Lattner2e6e7412003-02-24 03:52:32 +0000721 }
722
Chris Lattner0ed2da92003-12-10 15:56:24 +0000723 // Now that the body of the loop uses the allocas instead of the original
724 // memory locations, insert code to copy the alloca value back into the
725 // original memory location on all exits from the loop. Note that we only
726 // want to insert one copy of the code in each exit block, though the loop may
727 // exit to the same block more than once.
728 //
729 std::set<BasicBlock*> ProcessedBlocks;
730
Devang Patelb7211a22007-08-21 00:31:24 +0000731 SmallVector<BasicBlock*, 8> ExitBlocks;
Chris Lattner5fa802f2004-04-18 22:15:13 +0000732 CurLoop->getExitBlocks(ExitBlocks);
Chris Lattner0ed2da92003-12-10 15:56:24 +0000733 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i)
Chris Lattnerf594a032003-12-10 16:57:24 +0000734 if (ProcessedBlocks.insert(ExitBlocks[i]).second) {
Chris Lattnerfb3ee192004-09-15 01:04:07 +0000735 // Copy all of the allocas into their memory locations.
Chris Lattner0ed2da92003-12-10 15:56:24 +0000736 BasicBlock::iterator BI = ExitBlocks[i]->begin();
737 while (isa<PHINode>(*BI))
Chris Lattnerfb3ee192004-09-15 01:04:07 +0000738 ++BI; // Skip over all of the phi nodes in the block.
Chris Lattner0ed2da92003-12-10 15:56:24 +0000739 Instruction *InsertPos = BI;
Chris Lattnerfb3ee192004-09-15 01:04:07 +0000740 unsigned PVN = 0;
Chris Lattner0ed2da92003-12-10 15:56:24 +0000741 for (unsigned i = 0, e = PromotedValues.size(); i != e; ++i) {
Chris Lattnerfb3ee192004-09-15 01:04:07 +0000742 // Load from the alloca.
Chris Lattner0ed2da92003-12-10 15:56:24 +0000743 LoadInst *LI = new LoadInst(PromotedValues[i].first, "", InsertPos);
Chris Lattnerfb3ee192004-09-15 01:04:07 +0000744
745 // If this is a pointer type, update alias info appropriately.
746 if (isa<PointerType>(LI->getType()))
747 CurAST->copyValue(PointerValueNumbers[PVN++], LI);
748
749 // Store into the memory we promoted.
Chris Lattner0ed2da92003-12-10 15:56:24 +0000750 new StoreInst(LI, PromotedValues[i].second, InsertPos);
751 }
752 }
753
Chris Lattner2e6e7412003-02-24 03:52:32 +0000754 // Now that we have done the deed, use the mem2reg functionality to promote
Chris Lattnerfb3ee192004-09-15 01:04:07 +0000755 // all of the new allocas we just created into real SSA registers.
Chris Lattner2e6e7412003-02-24 03:52:32 +0000756 //
757 std::vector<AllocaInst*> PromotedAllocas;
758 PromotedAllocas.reserve(PromotedValues.size());
759 for (unsigned i = 0, e = PromotedValues.size(); i != e; ++i)
760 PromotedAllocas.push_back(PromotedValues[i].first);
Devang Patel326821e2007-06-07 21:57:03 +0000761 PromoteMemToReg(PromotedAllocas, *DT, *DF, CurAST);
Chris Lattner2e6e7412003-02-24 03:52:32 +0000762}
763
Chris Lattnerfb3ee192004-09-15 01:04:07 +0000764/// FindPromotableValuesInLoop - Check the current loop for stores to definite
Devang Patelf2038b12007-09-19 20:18:51 +0000765/// pointers, which are not loaded and stored through may aliases and are safe
766/// for promotion. If these are found, create an alloca for the value, add it
767/// to the PromotedValues list, and keep track of the mapping from value to
768/// alloca.
Chris Lattnerfb3ee192004-09-15 01:04:07 +0000769void LICM::FindPromotableValuesInLoop(
Chris Lattner2e6e7412003-02-24 03:52:32 +0000770 std::vector<std::pair<AllocaInst*, Value*> > &PromotedValues,
771 std::map<Value*, AllocaInst*> &ValueToAllocaMap) {
772 Instruction *FnStart = CurLoop->getHeader()->getParent()->begin()->begin();
773
Devang Patelf2038b12007-09-19 20:18:51 +0000774 SmallVector<Instruction *, 4> LoopExits;
775 SmallVector<BasicBlock *, 4> Blocks;
776 CurLoop->getExitingBlocks(Blocks);
777 for (SmallVector<BasicBlock *, 4>::iterator BI = Blocks.begin(),
778 BE = Blocks.end(); BI != BE; ++BI) {
779 BasicBlock *BB = *BI;
780 LoopExits.push_back(BB->getTerminator());
781 }
782
Chris Lattnerfb3ee192004-09-15 01:04:07 +0000783 // Loop over all of the alias sets in the tracker object.
Chris Lattner0252e492003-03-03 23:32:45 +0000784 for (AliasSetTracker::iterator I = CurAST->begin(), E = CurAST->end();
785 I != E; ++I) {
786 AliasSet &AS = *I;
787 // We can promote this alias set if it has a store, if it is a "Must" alias
Chris Lattnerfb3ee192004-09-15 01:04:07 +0000788 // set, if the pointer is loop invariant, and if we are not eliminating any
Chris Lattner118dd0c2004-03-15 04:11:30 +0000789 // volatile loads or stores.
Chris Lattner0252e492003-03-03 23:32:45 +0000790 if (!AS.isForwardingAliasSet() && AS.isMod() && AS.isMustAlias() &&
Chris Lattner3280f7b2004-04-18 22:46:08 +0000791 !AS.isVolatile() && CurLoop->isLoopInvariant(AS.begin()->first)) {
Dan Gohmancb406c22007-10-03 19:26:29 +0000792 assert(!AS.empty() &&
Chris Lattner0252e492003-03-03 23:32:45 +0000793 "Must alias set should have at least one pointer element in it!");
794 Value *V = AS.begin()->first;
Chris Lattner2e6e7412003-02-24 03:52:32 +0000795
Chris Lattner0252e492003-03-03 23:32:45 +0000796 // Check that all of the pointers in the alias set have the same type. We
797 // cannot (yet) promote a memory location that is loaded and stored in
798 // different sizes.
799 bool PointerOk = true;
800 for (AliasSet::iterator I = AS.begin(), E = AS.end(); I != E; ++I)
801 if (V->getType() != I->first->getType()) {
802 PointerOk = false;
803 break;
Chris Lattner2e6e7412003-02-24 03:52:32 +0000804 }
Chris Lattner0252e492003-03-03 23:32:45 +0000805
Devang Patelbc2265a2007-10-01 18:12:58 +0000806 // If one use of value V inside the loop is safe then it is OK to promote
807 // this value. On the otherside if there is not any unsafe use inside the
Dan Gohmana24b2942007-10-31 14:35:39 +0000808 // loop then also it is OK to promote this value. Otherwise it is
Devang Patelbc2265a2007-10-01 18:12:58 +0000809 // unsafe to promote this value.
810 if (PointerOk) {
811 bool oneSafeUse = false;
812 bool oneUnsafeUse = false;
Devang Patel798b4af2007-09-25 17:55:50 +0000813 for(Value::use_iterator UI = V->use_begin(), UE = V->use_end();
Devang Patelbc2265a2007-10-01 18:12:58 +0000814 UI != UE; ++UI) {
Devang Patel798b4af2007-09-25 17:55:50 +0000815 Instruction *Use = dyn_cast<Instruction>(*UI);
816 if (!Use || !CurLoop->contains(Use->getParent()))
817 continue;
818 for (SmallVector<Instruction *, 4>::iterator
819 ExitI = LoopExits.begin(), ExitE = LoopExits.end();
820 ExitI != ExitE; ++ExitI) {
821 Instruction *Ex = *ExitI;
Devang Patelbc2265a2007-10-01 18:12:58 +0000822 if (!isa<PHINode>(Use) && DT->dominates(Use, Ex)) {
823 oneSafeUse = true;
Devang Patel798b4af2007-09-25 17:55:50 +0000824 break;
825 }
Devang Patelbc2265a2007-10-01 18:12:58 +0000826 else
827 oneUnsafeUse = true;
Devang Patel798b4af2007-09-25 17:55:50 +0000828 }
Devang Patelbc2265a2007-10-01 18:12:58 +0000829
830 if (oneSafeUse)
Devang Patel798b4af2007-09-25 17:55:50 +0000831 break;
832 }
Devang Patelbc2265a2007-10-01 18:12:58 +0000833
834 if (oneSafeUse)
835 PointerOk = true;
836 else if (!oneUnsafeUse)
837 PointerOk = true;
838 else
839 PointerOk = false;
840 }
Devang Patel798b4af2007-09-25 17:55:50 +0000841
Chris Lattner0252e492003-03-03 23:32:45 +0000842 if (PointerOk) {
843 const Type *Ty = cast<PointerType>(V->getType())->getElementType();
844 AllocaInst *AI = new AllocaInst(Ty, 0, V->getName()+".tmp", FnStart);
845 PromotedValues.push_back(std::make_pair(AI, V));
Chris Lattnerfb3ee192004-09-15 01:04:07 +0000846
847 // Update the AST and alias analysis.
848 CurAST->copyValue(V, AI);
Misha Brukmanfd939082005-04-21 23:48:37 +0000849
Chris Lattner0252e492003-03-03 23:32:45 +0000850 for (AliasSet::iterator I = AS.begin(), E = AS.end(); I != E; ++I)
851 ValueToAllocaMap.insert(std::make_pair(I->first, AI));
Misha Brukmanfd939082005-04-21 23:48:37 +0000852
Bill Wendlingb7427032006-11-26 09:46:52 +0000853 DOUT << "LICM: Promoting value: " << *V << "\n";
Chris Lattner2e6e7412003-02-24 03:52:32 +0000854 }
855 }
856 }
Chris Lattnerf5e84aa2002-08-22 21:39:55 +0000857}
Devang Patel91d22c82007-07-31 08:01:41 +0000858
859/// cloneBasicBlockAnalysis - Simple Analysis hook. Clone alias set info.
860void LICM::cloneBasicBlockAnalysis(BasicBlock *From, BasicBlock *To, Loop *L) {
861 AliasSetTracker *AST = LoopToAliasMap[L];
862 if (!AST)
863 return;
864
865 AST->copyValue(From, To);
866}
867
868/// deleteAnalysisValue - Simple Analysis hook. Delete value V from alias
869/// set.
870void LICM::deleteAnalysisValue(Value *V, Loop *L) {
871 AliasSetTracker *AST = LoopToAliasMap[L];
872 if (!AST)
873 return;
874
875 AST->deleteValue(V);
876}