blob: 2a790f21a76c761423d311b9ebdb4dc35e615f7f [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//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source 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 Lattner2741c972004-05-23 21:20:19 +000036#include "llvm/DerivedTypes.h"
37#include "llvm/Instructions.h"
38#include "llvm/Target/TargetData.h"
Chris Lattnere0e734e2002-05-10 22:44:58 +000039#include "llvm/Analysis/LoopInfo.h"
Chris Lattnerf5e84aa2002-08-22 21:39:55 +000040#include "llvm/Analysis/AliasAnalysis.h"
Chris Lattner0252e492003-03-03 23:32:45 +000041#include "llvm/Analysis/AliasSetTracker.h"
Chris Lattner952eaee2002-09-29 21:46:09 +000042#include "llvm/Analysis/Dominators.h"
Chris Lattner2e6e7412003-02-24 03:52:32 +000043#include "llvm/Support/CFG.h"
Chris Lattner2741c972004-05-23 21:20:19 +000044#include "llvm/Transforms/Utils/PromoteMemToReg.h"
45#include "llvm/Transforms/Utils/Local.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000046#include "llvm/Support/CommandLine.h"
47#include "llvm/Support/Debug.h"
48#include "llvm/ADT/Statistic.h"
Chris Lattnere0e734e2002-05-10 22:44:58 +000049#include <algorithm>
Chris Lattner92094b42003-12-09 17:18:00 +000050using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000051
Chris Lattnere0e734e2002-05-10 22:44:58 +000052namespace {
Chris Lattner4a650af2003-10-13 05:04:27 +000053 cl::opt<bool>
54 DisablePromotion("disable-licm-promotion", cl::Hidden,
55 cl::desc("Disable memory promotion in LICM pass"));
Chris Lattner2e6e7412003-02-24 03:52:32 +000056
Chris Lattnera2706512003-12-10 06:41:05 +000057 Statistic<> NumSunk("licm", "Number of instructions sunk out of loop");
Chris Lattnera92f6962002-10-01 22:38:41 +000058 Statistic<> NumHoisted("licm", "Number of instructions hoisted out of loop");
Chris Lattnera2706512003-12-10 06:41:05 +000059 Statistic<> NumMovedLoads("licm", "Number of load insts hoisted or sunk");
Chris Lattner118dd0c2004-03-15 04:11:30 +000060 Statistic<> NumMovedCalls("licm", "Number of call insts hoisted or sunk");
Chris Lattner4a650af2003-10-13 05:04:27 +000061 Statistic<> NumPromoted("licm",
62 "Number of memory locations promoted to registers");
Chris Lattner9646e6b2002-09-26 16:38:03 +000063
Chris Lattnered6dfc22003-12-09 19:32:44 +000064 struct LICM : public FunctionPass {
Chris Lattner7e708292002-06-25 16:13:24 +000065 virtual bool runOnFunction(Function &F);
Chris Lattnere0e734e2002-05-10 22:44:58 +000066
Chris Lattner94170592002-09-26 16:52:07 +000067 /// This transformation requires natural loop information & requires that
68 /// loop preheaders be inserted into the CFG...
69 ///
Chris Lattnere0e734e2002-05-10 22:44:58 +000070 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattnercb2610e2002-10-21 20:00:28 +000071 AU.setPreservesCFG();
Chris Lattner98bf4362003-10-12 21:52:28 +000072 AU.addRequiredID(LoopSimplifyID);
Chris Lattner5f0eb8d2002-08-08 19:01:30 +000073 AU.addRequired<LoopInfo>();
Chris Lattner952eaee2002-09-29 21:46:09 +000074 AU.addRequired<DominatorTree>();
Chris Lattner0252e492003-03-03 23:32:45 +000075 AU.addRequired<DominanceFrontier>(); // For scalar promotion (mem2reg)
Chris Lattnerf5e84aa2002-08-22 21:39:55 +000076 AU.addRequired<AliasAnalysis>();
Chris Lattnere0e734e2002-05-10 22:44:58 +000077 }
78
79 private:
Chris Lattner92094b42003-12-09 17:18:00 +000080 // Various analyses that we use...
Chris Lattner2e6e7412003-02-24 03:52:32 +000081 AliasAnalysis *AA; // Current AliasAnalysis information
Chris Lattner92094b42003-12-09 17:18:00 +000082 LoopInfo *LI; // Current LoopInfo
83 DominatorTree *DT; // Dominator Tree for the current Loop...
Chris Lattner43f820d2003-10-05 21:20:13 +000084 DominanceFrontier *DF; // Current Dominance Frontier
Chris Lattner92094b42003-12-09 17:18:00 +000085
86 // State that is updated as we process loops
Chris Lattner2e6e7412003-02-24 03:52:32 +000087 bool Changed; // Set to true when we change anything.
88 BasicBlock *Preheader; // The preheader block of the current loop...
89 Loop *CurLoop; // The current loop we are working on...
Chris Lattner0252e492003-03-03 23:32:45 +000090 AliasSetTracker *CurAST; // AliasSet information for the current loop...
Chris Lattnere0e734e2002-05-10 22:44:58 +000091
Misha Brukmanfd939082005-04-21 23:48:37 +000092 /// visitLoop - Hoist expressions out of the specified loop...
Chris Lattner94170592002-09-26 16:52:07 +000093 ///
Chris Lattner0252e492003-03-03 23:32:45 +000094 void visitLoop(Loop *L, AliasSetTracker &AST);
Chris Lattnere0e734e2002-05-10 22:44:58 +000095
Chris Lattnere4365b22003-12-19 07:22:45 +000096 /// SinkRegion - Walk the specified region of the CFG (defined by all blocks
97 /// dominated by the specified block, and that are in the current loop) in
98 /// reverse depth first order w.r.t the DominatorTree. This allows us to
99 /// visit uses before definitions, allowing us to sink a loop body in one
100 /// pass without iteration.
101 ///
102 void SinkRegion(DominatorTree::Node *N);
103
Chris Lattner952eaee2002-09-29 21:46:09 +0000104 /// HoistRegion - Walk the specified region of the CFG (defined by all
105 /// blocks dominated by the specified block, and that are in the current
106 /// loop) in depth first order w.r.t the DominatorTree. This allows us to
Misha Brukmancf00c4a2003-10-10 17:57:28 +0000107 /// visit definitions before uses, allowing us to hoist a loop body in one
Chris Lattner952eaee2002-09-29 21:46:09 +0000108 /// pass without iteration.
109 ///
110 void HoistRegion(DominatorTree::Node *N);
111
Chris Lattnerb4613732002-09-29 22:26:07 +0000112 /// inSubLoop - Little predicate that returns true if the specified basic
113 /// block is in a subloop of the current one, not the current one itself.
Chris Lattner94170592002-09-26 16:52:07 +0000114 ///
Chris Lattnerb4613732002-09-29 22:26:07 +0000115 bool inSubLoop(BasicBlock *BB) {
116 assert(CurLoop->contains(BB) && "Only valid if BB is IN the loop");
Chris Lattner329c1c62004-01-08 00:09:44 +0000117 for (Loop::iterator I = CurLoop->begin(), E = CurLoop->end(); I != E; ++I)
118 if ((*I)->contains(BB))
Chris Lattnerb4613732002-09-29 22:26:07 +0000119 return true; // A subloop actually contains this block!
120 return false;
Chris Lattnere0e734e2002-05-10 22:44:58 +0000121 }
122
Chris Lattnera2706512003-12-10 06:41:05 +0000123 /// isExitBlockDominatedByBlockInLoop - This method checks to see if the
124 /// specified exit block of the loop is dominated by the specified block
125 /// that is in the body of the loop. We use these constraints to
126 /// dramatically limit the amount of the dominator tree that needs to be
127 /// searched.
128 bool isExitBlockDominatedByBlockInLoop(BasicBlock *ExitBlock,
129 BasicBlock *BlockInLoop) const {
130 // If the block in the loop is the loop header, it must be dominated!
131 BasicBlock *LoopHeader = CurLoop->getHeader();
132 if (BlockInLoop == LoopHeader)
133 return true;
Misha Brukmanfd939082005-04-21 23:48:37 +0000134
Chris Lattnera2706512003-12-10 06:41:05 +0000135 DominatorTree::Node *BlockInLoopNode = DT->getNode(BlockInLoop);
136 DominatorTree::Node *IDom = DT->getNode(ExitBlock);
Misha Brukmanfd939082005-04-21 23:48:37 +0000137
Chris Lattnera2706512003-12-10 06:41:05 +0000138 // Because the exit block is not in the loop, we know we have to get _at
Chris Lattner2741c972004-05-23 21:20:19 +0000139 // least_ its immediate dominator.
Chris Lattnera2706512003-12-10 06:41:05 +0000140 do {
141 // Get next Immediate Dominator.
142 IDom = IDom->getIDom();
Misha Brukmanfd939082005-04-21 23:48:37 +0000143
Chris Lattnera2706512003-12-10 06:41:05 +0000144 // If we have got to the header of the loop, then the instructions block
145 // did not dominate the exit node, so we can't hoist it.
146 if (IDom->getBlock() == LoopHeader)
147 return false;
Misha Brukmanfd939082005-04-21 23:48:37 +0000148
Chris Lattnera2706512003-12-10 06:41:05 +0000149 } while (IDom != BlockInLoopNode);
150
151 return true;
152 }
153
154 /// sink - When an instruction is found to only be used outside of the loop,
155 /// this function moves it to the exit blocks and patches up SSA form as
156 /// needed.
157 ///
158 void sink(Instruction &I);
159
Chris Lattner94170592002-09-26 16:52:07 +0000160 /// hoist - When an instruction is found to only use loop invariant operands
161 /// that is safe to hoist, this instruction is called to do the dirty work.
162 ///
Chris Lattner7e708292002-06-25 16:13:24 +0000163 void hoist(Instruction &I);
Chris Lattnere0e734e2002-05-10 22:44:58 +0000164
Chris Lattnera2706512003-12-10 06:41:05 +0000165 /// isSafeToExecuteUnconditionally - Only sink or hoist an instruction if it
166 /// is not a trapping instruction or if it is a trapping instruction and is
167 /// guaranteed to execute.
Tanya Lattner9966c032003-08-05 18:45:46 +0000168 ///
Chris Lattnera2706512003-12-10 06:41:05 +0000169 bool isSafeToExecuteUnconditionally(Instruction &I);
Tanya Lattner9966c032003-08-05 18:45:46 +0000170
Chris Lattner94170592002-09-26 16:52:07 +0000171 /// pointerInvalidatedByLoop - Return true if the body of this loop may
172 /// store into the memory location pointed to by V.
Misha Brukmanfd939082005-04-21 23:48:37 +0000173 ///
Chris Lattnerf3e1d692004-11-26 21:20:09 +0000174 bool pointerInvalidatedByLoop(Value *V, unsigned Size) {
Chris Lattner0252e492003-03-03 23:32:45 +0000175 // Check to see if any of the basic blocks in CurLoop invalidate *V.
Chris Lattnerf3e1d692004-11-26 21:20:09 +0000176 return CurAST->getAliasSetForPointer(V, Size).isMod();
Chris Lattner2e6e7412003-02-24 03:52:32 +0000177 }
Chris Lattnerf5e84aa2002-08-22 21:39:55 +0000178
Chris Lattnera2706512003-12-10 06:41:05 +0000179 bool canSinkOrHoistInst(Instruction &I);
180 bool isLoopInvariantInst(Instruction &I);
181 bool isNotUsedInLoop(Instruction &I);
Chris Lattnere0e734e2002-05-10 22:44:58 +0000182
Chris Lattner2e6e7412003-02-24 03:52:32 +0000183 /// PromoteValuesInLoop - Look at the stores in the loop and promote as many
184 /// to scalars as we can.
185 ///
186 void PromoteValuesInLoop();
187
Chris Lattnerfb3ee192004-09-15 01:04:07 +0000188 /// FindPromotableValuesInLoop - Check the current loop for stores to
Misha Brukman352361b2003-09-11 15:32:37 +0000189 /// definite pointers, which are not loaded and stored through may aliases.
Chris Lattner2e6e7412003-02-24 03:52:32 +0000190 /// If these are found, create an alloca for the value, add it to the
191 /// PromotedValues list, and keep track of the mapping from value to
192 /// alloca...
193 ///
Chris Lattnerfb3ee192004-09-15 01:04:07 +0000194 void FindPromotableValuesInLoop(
Chris Lattner2e6e7412003-02-24 03:52:32 +0000195 std::vector<std::pair<AllocaInst*, Value*> > &PromotedValues,
196 std::map<Value*, AllocaInst*> &Val2AlMap);
Chris Lattnere0e734e2002-05-10 22:44:58 +0000197 };
Chris Lattnerf6293092002-07-23 18:06:35 +0000198
Chris Lattner7f8897f2006-08-27 22:42:52 +0000199 RegisterPass<LICM> X("licm", "Loop Invariant Code Motion");
Chris Lattnere0e734e2002-05-10 22:44:58 +0000200}
201
Chris Lattner92094b42003-12-09 17:18:00 +0000202FunctionPass *llvm::createLICMPass() { return new LICM(); }
Chris Lattnere0e734e2002-05-10 22:44:58 +0000203
Chris Lattner94170592002-09-26 16:52:07 +0000204/// runOnFunction - For LICM, this simply traverses the loop structure of the
205/// function, hoisting expressions out of loops if possible.
206///
Chris Lattner56b7ee22004-06-19 20:23:35 +0000207bool LICM::runOnFunction(Function &) {
Chris Lattner2e6e7412003-02-24 03:52:32 +0000208 Changed = false;
Chris Lattnere0e734e2002-05-10 22:44:58 +0000209
Chris Lattner2e6e7412003-02-24 03:52:32 +0000210 // Get our Loop and Alias Analysis information...
211 LI = &getAnalysis<LoopInfo>();
Chris Lattnerf5e84aa2002-08-22 21:39:55 +0000212 AA = &getAnalysis<AliasAnalysis>();
Chris Lattner43f820d2003-10-05 21:20:13 +0000213 DF = &getAnalysis<DominanceFrontier>();
Tanya Lattner11a49a72003-08-05 20:39:02 +0000214 DT = &getAnalysis<DominatorTree>();
Chris Lattnerf5e84aa2002-08-22 21:39:55 +0000215
Chris Lattner2e6e7412003-02-24 03:52:32 +0000216 // Hoist expressions out of all of the top-level loops.
Chris Lattner329c1c62004-01-08 00:09:44 +0000217 for (LoopInfo::iterator I = LI->begin(), E = LI->end(); I != E; ++I) {
Chris Lattner0252e492003-03-03 23:32:45 +0000218 AliasSetTracker AST(*AA);
Chris Lattnered6dfc22003-12-09 19:32:44 +0000219 visitLoop(*I, AST);
Chris Lattner2e6e7412003-02-24 03:52:32 +0000220 }
Chris Lattnere0e734e2002-05-10 22:44:58 +0000221 return Changed;
222}
223
Chris Lattner94170592002-09-26 16:52:07 +0000224
Misha Brukmanfd939082005-04-21 23:48:37 +0000225/// visitLoop - Hoist expressions out of the specified loop...
Chris Lattner94170592002-09-26 16:52:07 +0000226///
Chris Lattner0252e492003-03-03 23:32:45 +0000227void LICM::visitLoop(Loop *L, AliasSetTracker &AST) {
Chris Lattnere0e734e2002-05-10 22:44:58 +0000228 // Recurse through all subloops before we process this loop...
Chris Lattner329c1c62004-01-08 00:09:44 +0000229 for (Loop::iterator I = L->begin(), E = L->end(); I != E; ++I) {
Chris Lattner0252e492003-03-03 23:32:45 +0000230 AliasSetTracker SubAST(*AA);
Chris Lattnered6dfc22003-12-09 19:32:44 +0000231 visitLoop(*I, SubAST);
Chris Lattner2e6e7412003-02-24 03:52:32 +0000232
233 // Incorporate information about the subloops into this loop...
Chris Lattner0252e492003-03-03 23:32:45 +0000234 AST.add(SubAST);
Chris Lattner2e6e7412003-02-24 03:52:32 +0000235 }
Chris Lattnere0e734e2002-05-10 22:44:58 +0000236 CurLoop = L;
Chris Lattner0252e492003-03-03 23:32:45 +0000237 CurAST = &AST;
Chris Lattnere0e734e2002-05-10 22:44:58 +0000238
Chris Lattner99a57212002-09-26 19:40:25 +0000239 // Get the preheader block to move instructions into...
240 Preheader = L->getLoopPreheader();
241 assert(Preheader&&"Preheader insertion pass guarantees we have a preheader!");
242
Chris Lattner2e6e7412003-02-24 03:52:32 +0000243 // Loop over the body of this loop, looking for calls, invokes, and stores.
Chris Lattner0252e492003-03-03 23:32:45 +0000244 // Because subloops have already been incorporated into AST, we skip blocks in
Chris Lattner2e6e7412003-02-24 03:52:32 +0000245 // subloops.
246 //
Chris Lattnera2706512003-12-10 06:41:05 +0000247 for (std::vector<BasicBlock*>::const_iterator I = L->getBlocks().begin(),
248 E = L->getBlocks().end(); I != E; ++I)
Chris Lattner2e6e7412003-02-24 03:52:32 +0000249 if (LI->getLoopFor(*I) == L) // Ignore blocks in subloops...
Chris Lattner0252e492003-03-03 23:32:45 +0000250 AST.add(**I); // Incorporate the specified basic block
Chris Lattner2e6e7412003-02-24 03:52:32 +0000251
Chris Lattnere0e734e2002-05-10 22:44:58 +0000252 // We want to visit all of the instructions in this loop... that are not parts
253 // of our subloops (they have already had their invariants hoisted out of
254 // their loop, into this loop, so there is no need to process the BODIES of
255 // the subloops).
256 //
Chris Lattner952eaee2002-09-29 21:46:09 +0000257 // Traverse the body of the loop in depth first order on the dominator tree so
258 // that we are guaranteed to see definitions before we see uses. This allows
Chris Lattnere4365b22003-12-19 07:22:45 +0000259 // us to sink instructions in one pass, without iteration. AFter sinking
260 // instructions, we perform another pass to hoist them out of the loop.
Chris Lattner952eaee2002-09-29 21:46:09 +0000261 //
Chris Lattnere4365b22003-12-19 07:22:45 +0000262 SinkRegion(DT->getNode(L->getHeader()));
Tanya Lattner11a49a72003-08-05 20:39:02 +0000263 HoistRegion(DT->getNode(L->getHeader()));
Chris Lattnere0e734e2002-05-10 22:44:58 +0000264
Chris Lattner2e6e7412003-02-24 03:52:32 +0000265 // Now that all loop invariants have been removed from the loop, promote any
266 // memory references to scalars that we can...
267 if (!DisablePromotion)
268 PromoteValuesInLoop();
269
Chris Lattnere0e734e2002-05-10 22:44:58 +0000270 // Clear out loops state information for the next iteration
271 CurLoop = 0;
Chris Lattner99a57212002-09-26 19:40:25 +0000272 Preheader = 0;
Chris Lattnere0e734e2002-05-10 22:44:58 +0000273}
274
Chris Lattnere4365b22003-12-19 07:22:45 +0000275/// SinkRegion - Walk the specified region of the CFG (defined by all blocks
276/// dominated by the specified block, and that are in the current loop) in
277/// reverse depth first order w.r.t the DominatorTree. This allows us to visit
278/// uses before definitions, allowing us to sink a loop body in one pass without
279/// iteration.
280///
281void LICM::SinkRegion(DominatorTree::Node *N) {
282 assert(N != 0 && "Null dominator tree node?");
283 BasicBlock *BB = N->getBlock();
284
285 // If this subregion is not in the top level loop at all, exit.
286 if (!CurLoop->contains(BB)) return;
287
288 // We are processing blocks in reverse dfo, so process children first...
289 const std::vector<DominatorTree::Node*> &Children = N->getChildren();
290 for (unsigned i = 0, e = Children.size(); i != e; ++i)
291 SinkRegion(Children[i]);
292
293 // Only need to process the contents of this block if it is not part of a
294 // subloop (which would already have been processed).
295 if (inSubLoop(BB)) return;
296
Chris Lattnera3df8a92003-12-19 08:18:16 +0000297 for (BasicBlock::iterator II = BB->end(); II != BB->begin(); ) {
298 Instruction &I = *--II;
Misha Brukmanfd939082005-04-21 23:48:37 +0000299
Chris Lattnere4365b22003-12-19 07:22:45 +0000300 // Check to see if we can sink this instruction to the exit blocks
301 // of the loop. We can do this if the all users of the instruction are
302 // outside of the loop. In this case, it doesn't even matter if the
303 // operands of the instruction are loop invariant.
304 //
Chris Lattner70ac2dc2005-03-25 00:22:36 +0000305 if (isNotUsedInLoop(I) && canSinkOrHoistInst(I)) {
Chris Lattnera3df8a92003-12-19 08:18:16 +0000306 ++II;
Chris Lattnere4365b22003-12-19 07:22:45 +0000307 sink(I);
Chris Lattnera3df8a92003-12-19 08:18:16 +0000308 }
Chris Lattnere4365b22003-12-19 07:22:45 +0000309 }
310}
311
312
Chris Lattner952eaee2002-09-29 21:46:09 +0000313/// HoistRegion - Walk the specified region of the CFG (defined by all blocks
314/// dominated by the specified block, and that are in the current loop) in depth
Misha Brukmancf00c4a2003-10-10 17:57:28 +0000315/// first order w.r.t the DominatorTree. This allows us to visit definitions
Chris Lattner952eaee2002-09-29 21:46:09 +0000316/// before uses, allowing us to hoist a loop body in one pass without iteration.
317///
318void LICM::HoistRegion(DominatorTree::Node *N) {
319 assert(N != 0 && "Null dominator tree node?");
Chris Lattnered6dfc22003-12-09 19:32:44 +0000320 BasicBlock *BB = N->getBlock();
Chris Lattner952eaee2002-09-29 21:46:09 +0000321
Chris Lattnerb4613732002-09-29 22:26:07 +0000322 // If this subregion is not in the top level loop at all, exit.
Chris Lattnered6dfc22003-12-09 19:32:44 +0000323 if (!CurLoop->contains(BB)) return;
Chris Lattner952eaee2002-09-29 21:46:09 +0000324
Chris Lattnera2706512003-12-10 06:41:05 +0000325 // Only need to process the contents of this block if it is not part of a
326 // subloop (which would already have been processed).
Chris Lattnered6dfc22003-12-09 19:32:44 +0000327 if (!inSubLoop(BB))
Chris Lattnera2706512003-12-10 06:41:05 +0000328 for (BasicBlock::iterator II = BB->begin(), E = BB->end(); II != E; ) {
329 Instruction &I = *II++;
Misha Brukmanfd939082005-04-21 23:48:37 +0000330
Chris Lattnere4365b22003-12-19 07:22:45 +0000331 // Try hoisting the instruction out to the preheader. We can only do this
332 // if all of the operands of the instruction are loop invariant and if it
333 // is safe to hoist the instruction.
334 //
Misha Brukmanfd939082005-04-21 23:48:37 +0000335 if (isLoopInvariantInst(I) && canSinkOrHoistInst(I) &&
Chris Lattnere4365b22003-12-19 07:22:45 +0000336 isSafeToExecuteUnconditionally(I))
Chris Lattner3c80a512006-06-26 19:10:05 +0000337 hoist(I);
Chris Lattnera2706512003-12-10 06:41:05 +0000338 }
Chris Lattner952eaee2002-09-29 21:46:09 +0000339
340 const std::vector<DominatorTree::Node*> &Children = N->getChildren();
341 for (unsigned i = 0, e = Children.size(); i != e; ++i)
Chris Lattner56b7ee22004-06-19 20:23:35 +0000342 HoistRegion(Children[i]);
Chris Lattner952eaee2002-09-29 21:46:09 +0000343}
344
Chris Lattnera2706512003-12-10 06:41:05 +0000345/// canSinkOrHoistInst - Return true if the hoister and sinker can handle this
346/// instruction.
347///
348bool LICM::canSinkOrHoistInst(Instruction &I) {
Chris Lattnered6dfc22003-12-09 19:32:44 +0000349 // Loads have extra constraints we have to verify before we can hoist them.
350 if (LoadInst *LI = dyn_cast<LoadInst>(&I)) {
351 if (LI->isVolatile())
352 return false; // Don't hoist volatile loads!
353
354 // Don't hoist loads which have may-aliased stores in loop.
Chris Lattnerf3e1d692004-11-26 21:20:09 +0000355 unsigned Size = 0;
356 if (LI->getType()->isSized())
357 Size = AA->getTargetData().getTypeSize(LI->getType());
358 return !pointerInvalidatedByLoop(LI->getOperand(0), Size);
Chris Lattner118dd0c2004-03-15 04:11:30 +0000359 } else if (CallInst *CI = dyn_cast<CallInst>(&I)) {
360 // Handle obvious cases efficiently.
361 if (Function *Callee = CI->getCalledFunction()) {
Chris Lattner68a9d3e2004-12-15 07:22:25 +0000362 AliasAnalysis::ModRefBehavior Behavior =AA->getModRefBehavior(Callee, CI);
363 if (Behavior == AliasAnalysis::DoesNotAccessMemory)
Chris Lattner118dd0c2004-03-15 04:11:30 +0000364 return true;
Chris Lattner68a9d3e2004-12-15 07:22:25 +0000365 else if (Behavior == AliasAnalysis::OnlyReadsMemory) {
Chris Lattner118dd0c2004-03-15 04:11:30 +0000366 // If this call only reads from memory and there are no writes to memory
367 // in the loop, we can hoist or sink the call as appropriate.
368 bool FoundMod = false;
369 for (AliasSetTracker::iterator I = CurAST->begin(), E = CurAST->end();
370 I != E; ++I) {
371 AliasSet &AS = *I;
372 if (!AS.isForwardingAliasSet() && AS.isMod()) {
373 FoundMod = true;
374 break;
375 }
376 }
377 if (!FoundMod) return true;
378 }
379 }
380
381 // FIXME: This should use mod/ref information to see if we can hoist or sink
382 // the call.
Misha Brukmanfd939082005-04-21 23:48:37 +0000383
Chris Lattner118dd0c2004-03-15 04:11:30 +0000384 return false;
Chris Lattnered6dfc22003-12-09 19:32:44 +0000385 }
386
Misha Brukmanfd939082005-04-21 23:48:37 +0000387 return isa<BinaryOperator>(I) || isa<ShiftInst>(I) || isa<CastInst>(I) ||
Chris Lattner3c80a512006-06-26 19:10:05 +0000388 isa<SelectInst>(I) || isa<GetElementPtrInst>(I);
Chris Lattnera2706512003-12-10 06:41:05 +0000389}
390
391/// isNotUsedInLoop - Return true if the only users of this instruction are
392/// outside of the loop. If this is true, we can sink the instruction to the
393/// exit blocks of the loop.
394///
395bool LICM::isNotUsedInLoop(Instruction &I) {
Chris Lattnerea9403f2003-12-11 22:23:32 +0000396 for (Value::use_iterator UI = I.use_begin(), E = I.use_end(); UI != E; ++UI) {
397 Instruction *User = cast<Instruction>(*UI);
398 if (PHINode *PN = dyn_cast<PHINode>(User)) {
399 // PHI node uses occur in predecessor blocks!
400 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
401 if (PN->getIncomingValue(i) == &I)
402 if (CurLoop->contains(PN->getIncomingBlock(i)))
403 return false;
404 } else if (CurLoop->contains(User->getParent())) {
Chris Lattnera2706512003-12-10 06:41:05 +0000405 return false;
Chris Lattnerea9403f2003-12-11 22:23:32 +0000406 }
407 }
Chris Lattnera2706512003-12-10 06:41:05 +0000408 return true;
409}
410
411
412/// isLoopInvariantInst - Return true if all operands of this instruction are
413/// loop invariant. We also filter out non-hoistable instructions here just for
414/// efficiency.
415///
416bool LICM::isLoopInvariantInst(Instruction &I) {
417 // The instruction is loop invariant if all of its operands are loop-invariant
418 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i)
Chris Lattner3280f7b2004-04-18 22:46:08 +0000419 if (!CurLoop->isLoopInvariant(I.getOperand(i)))
Chris Lattnera2706512003-12-10 06:41:05 +0000420 return false;
421
Chris Lattnered6dfc22003-12-09 19:32:44 +0000422 // If we got this far, the instruction is loop invariant!
423 return true;
424}
425
Chris Lattnera2706512003-12-10 06:41:05 +0000426/// sink - When an instruction is found to only be used outside of the loop,
Chris Lattnera3df8a92003-12-19 08:18:16 +0000427/// this function moves it to the exit blocks and patches up SSA form as needed.
428/// This method is guaranteed to remove the original instruction from its
429/// position, and may either delete it or move it to outside of the loop.
Chris Lattnera2706512003-12-10 06:41:05 +0000430///
431void LICM::sink(Instruction &I) {
Bill Wendlingb7427032006-11-26 09:46:52 +0000432 DOUT << "LICM sinking instruction: " << I;
Chris Lattnera2706512003-12-10 06:41:05 +0000433
Chris Lattner5fa802f2004-04-18 22:15:13 +0000434 std::vector<BasicBlock*> ExitBlocks;
435 CurLoop->getExitBlocks(ExitBlocks);
Chris Lattnerdf45bd32003-12-10 20:43:29 +0000436
437 if (isa<LoadInst>(I)) ++NumMovedLoads;
Chris Lattner118dd0c2004-03-15 04:11:30 +0000438 else if (isa<CallInst>(I)) ++NumMovedCalls;
Chris Lattnerdf45bd32003-12-10 20:43:29 +0000439 ++NumSunk;
440 Changed = true;
441
Chris Lattnera2706512003-12-10 06:41:05 +0000442 // The case where there is only a single exit node of this loop is common
443 // enough that we handle it as a special (more efficient) case. It is more
444 // efficient to handle because there are no PHI nodes that need to be placed.
445 if (ExitBlocks.size() == 1) {
446 if (!isExitBlockDominatedByBlockInLoop(ExitBlocks[0], I.getParent())) {
447 // Instruction is not used, just delete it.
Chris Lattner2741c972004-05-23 21:20:19 +0000448 CurAST->deleteValue(&I);
Chris Lattner92f73652006-09-12 19:17:09 +0000449 if (!I.use_empty()) // If I has users in unreachable blocks, eliminate.
450 I.replaceAllUsesWith(UndefValue::get(I.getType()));
Chris Lattner3c80a512006-06-26 19:10:05 +0000451 I.eraseFromParent();
Chris Lattnera2706512003-12-10 06:41:05 +0000452 } else {
453 // Move the instruction to the start of the exit block, after any PHI
454 // nodes in it.
Chris Lattner3c80a512006-06-26 19:10:05 +0000455 I.removeFromParent();
Misha Brukmanfd939082005-04-21 23:48:37 +0000456
Chris Lattnera2706512003-12-10 06:41:05 +0000457 BasicBlock::iterator InsertPt = ExitBlocks[0]->begin();
458 while (isa<PHINode>(InsertPt)) ++InsertPt;
459 ExitBlocks[0]->getInstList().insert(InsertPt, &I);
460 }
461 } else if (ExitBlocks.size() == 0) {
462 // The instruction is actually dead if there ARE NO exit blocks.
Chris Lattner2741c972004-05-23 21:20:19 +0000463 CurAST->deleteValue(&I);
Chris Lattner92f73652006-09-12 19:17:09 +0000464 if (!I.use_empty()) // If I has users in unreachable blocks, eliminate.
465 I.replaceAllUsesWith(UndefValue::get(I.getType()));
Chris Lattner3c80a512006-06-26 19:10:05 +0000466 I.eraseFromParent();
Chris Lattnera2706512003-12-10 06:41:05 +0000467 } else {
468 // Otherwise, if we have multiple exits, use the PromoteMem2Reg function to
469 // do all of the hard work of inserting PHI nodes as necessary. We convert
470 // the value into a stack object to get it to do this.
471
472 // Firstly, we create a stack object to hold the value...
Chris Lattnereaa24302004-07-27 07:38:32 +0000473 AllocaInst *AI = 0;
Chris Lattnera2706512003-12-10 06:41:05 +0000474
Chris Lattnereaa24302004-07-27 07:38:32 +0000475 if (I.getType() != Type::VoidTy)
476 AI = new AllocaInst(I.getType(), 0, I.getName(),
477 I.getParent()->getParent()->front().begin());
Misha Brukmanfd939082005-04-21 23:48:37 +0000478
Chris Lattnera2706512003-12-10 06:41:05 +0000479 // Secondly, insert load instructions for each use of the instruction
480 // outside of the loop.
481 while (!I.use_empty()) {
482 Instruction *U = cast<Instruction>(I.use_back());
483
484 // If the user is a PHI Node, we actually have to insert load instructions
485 // in all predecessor blocks, not in the PHI block itself!
486 if (PHINode *UPN = dyn_cast<PHINode>(U)) {
487 // Only insert into each predecessor once, so that we don't have
488 // different incoming values from the same block!
489 std::map<BasicBlock*, Value*> InsertedBlocks;
490 for (unsigned i = 0, e = UPN->getNumIncomingValues(); i != e; ++i)
491 if (UPN->getIncomingValue(i) == &I) {
492 BasicBlock *Pred = UPN->getIncomingBlock(i);
493 Value *&PredVal = InsertedBlocks[Pred];
494 if (!PredVal) {
495 // Insert a new load instruction right before the terminator in
496 // the predecessor block.
497 PredVal = new LoadInst(AI, "", Pred->getTerminator());
498 }
499
500 UPN->setIncomingValue(i, PredVal);
501 }
502
503 } else {
504 LoadInst *L = new LoadInst(AI, "", U);
505 U->replaceUsesOfWith(&I, L);
506 }
507 }
508
509 // Thirdly, insert a copy of the instruction in each exit block of the loop
510 // that is dominated by the instruction, storing the result into the memory
511 // location. Be careful not to insert the instruction into any particular
512 // basic block more than once.
513 std::set<BasicBlock*> InsertedBlocks;
514 BasicBlock *InstOrigBB = I.getParent();
515
516 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i) {
517 BasicBlock *ExitBlock = ExitBlocks[i];
518
519 if (isExitBlockDominatedByBlockInLoop(ExitBlock, InstOrigBB)) {
Chris Lattnera2706512003-12-10 06:41:05 +0000520 // If we haven't already processed this exit block, do so now.
Chris Lattnere3cfe8d2003-12-10 16:58:24 +0000521 if (InsertedBlocks.insert(ExitBlock).second) {
Chris Lattnera2706512003-12-10 06:41:05 +0000522 // Insert the code after the last PHI node...
523 BasicBlock::iterator InsertPt = ExitBlock->begin();
524 while (isa<PHINode>(InsertPt)) ++InsertPt;
Misha Brukmanfd939082005-04-21 23:48:37 +0000525
Chris Lattnera2706512003-12-10 06:41:05 +0000526 // If this is the first exit block processed, just move the original
527 // instruction, otherwise clone the original instruction and insert
528 // the copy.
529 Instruction *New;
Chris Lattner7d3ced92003-12-10 22:35:56 +0000530 if (InsertedBlocks.size() == 1) {
Chris Lattner3c80a512006-06-26 19:10:05 +0000531 I.removeFromParent();
Chris Lattnera2706512003-12-10 06:41:05 +0000532 ExitBlock->getInstList().insert(InsertPt, &I);
533 New = &I;
534 } else {
535 New = I.clone();
Chris Lattner70ac2dc2005-03-25 00:22:36 +0000536 CurAST->copyValue(&I, New);
Chris Lattnereaa24302004-07-27 07:38:32 +0000537 if (!I.getName().empty())
538 New->setName(I.getName()+".le");
Chris Lattnera2706512003-12-10 06:41:05 +0000539 ExitBlock->getInstList().insert(InsertPt, New);
540 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000541
Chris Lattnera2706512003-12-10 06:41:05 +0000542 // Now that we have inserted the instruction, store it into the alloca
Chris Lattnereaa24302004-07-27 07:38:32 +0000543 if (AI) new StoreInst(New, AI, InsertPt);
Chris Lattnera2706512003-12-10 06:41:05 +0000544 }
545 }
546 }
Chris Lattnera3df8a92003-12-19 08:18:16 +0000547
548 // If the instruction doesn't dominate any exit blocks, it must be dead.
549 if (InsertedBlocks.empty()) {
Chris Lattner2741c972004-05-23 21:20:19 +0000550 CurAST->deleteValue(&I);
Chris Lattner3c80a512006-06-26 19:10:05 +0000551 I.eraseFromParent();
Chris Lattnera3df8a92003-12-19 08:18:16 +0000552 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000553
Chris Lattnera2706512003-12-10 06:41:05 +0000554 // Finally, promote the fine value to SSA form.
Chris Lattnereaa24302004-07-27 07:38:32 +0000555 if (AI) {
556 std::vector<AllocaInst*> Allocas;
557 Allocas.push_back(AI);
Chris Lattnerfb3ee192004-09-15 01:04:07 +0000558 PromoteMemToReg(Allocas, *DT, *DF, AA->getTargetData(), CurAST);
Chris Lattnereaa24302004-07-27 07:38:32 +0000559 }
Chris Lattnera2706512003-12-10 06:41:05 +0000560 }
Chris Lattnera2706512003-12-10 06:41:05 +0000561}
Chris Lattner952eaee2002-09-29 21:46:09 +0000562
Chris Lattner94170592002-09-26 16:52:07 +0000563/// hoist - When an instruction is found to only use loop invariant operands
564/// that is safe to hoist, this instruction is called to do the dirty work.
565///
Chris Lattnera2706512003-12-10 06:41:05 +0000566void LICM::hoist(Instruction &I) {
Bill Wendlingb7427032006-11-26 09:46:52 +0000567 DOUT << "LICM hoisting to " << Preheader->getName() << ": " << I;
Chris Lattnered6dfc22003-12-09 19:32:44 +0000568
Chris Lattner99a57212002-09-26 19:40:25 +0000569 // Remove the instruction from its current basic block... but don't delete the
570 // instruction.
Chris Lattner3c80a512006-06-26 19:10:05 +0000571 I.removeFromParent();
Chris Lattnere0e734e2002-05-10 22:44:58 +0000572
Chris Lattner9646e6b2002-09-26 16:38:03 +0000573 // Insert the new node in Preheader, before the terminator.
Chris Lattnera2706512003-12-10 06:41:05 +0000574 Preheader->getInstList().insert(Preheader->getTerminator(), &I);
Misha Brukmanfd939082005-04-21 23:48:37 +0000575
Chris Lattnera2706512003-12-10 06:41:05 +0000576 if (isa<LoadInst>(I)) ++NumMovedLoads;
Chris Lattner118dd0c2004-03-15 04:11:30 +0000577 else if (isa<CallInst>(I)) ++NumMovedCalls;
Chris Lattner9646e6b2002-09-26 16:38:03 +0000578 ++NumHoisted;
Chris Lattnere0e734e2002-05-10 22:44:58 +0000579 Changed = true;
580}
581
Chris Lattnera2706512003-12-10 06:41:05 +0000582/// isSafeToExecuteUnconditionally - Only sink or hoist an instruction if it is
583/// not a trapping instruction or if it is a trapping instruction and is
584/// guaranteed to execute.
Tanya Lattner9966c032003-08-05 18:45:46 +0000585///
Chris Lattnera2706512003-12-10 06:41:05 +0000586bool LICM::isSafeToExecuteUnconditionally(Instruction &Inst) {
Chris Lattner92094b42003-12-09 17:18:00 +0000587 // If it is not a trapping instruction, it is always safe to hoist.
588 if (!Inst.isTrapping()) return true;
Misha Brukmanfd939082005-04-21 23:48:37 +0000589
Chris Lattner92094b42003-12-09 17:18:00 +0000590 // Otherwise we have to check to make sure that the instruction dominates all
591 // of the exit blocks. If it doesn't, then there is a path out of the loop
592 // which does not execute this instruction, so we can't hoist it.
Tanya Lattner9966c032003-08-05 18:45:46 +0000593
Chris Lattner92094b42003-12-09 17:18:00 +0000594 // If the instruction is in the header block for the loop (which is very
595 // common), it is always guaranteed to dominate the exit blocks. Since this
596 // is a common case, and can save some work, check it now.
Chris Lattnera2706512003-12-10 06:41:05 +0000597 if (Inst.getParent() == CurLoop->getHeader())
Chris Lattner92094b42003-12-09 17:18:00 +0000598 return true;
Tanya Lattner9966c032003-08-05 18:45:46 +0000599
Chris Lattner8a919392004-11-29 21:26:12 +0000600 // It's always safe to load from a global or alloca.
601 if (isa<LoadInst>(Inst))
602 if (isa<AllocationInst>(Inst.getOperand(0)) ||
603 isa<GlobalVariable>(Inst.getOperand(0)))
604 return true;
605
Chris Lattner92094b42003-12-09 17:18:00 +0000606 // Get the exit blocks for the current loop.
Chris Lattner5fa802f2004-04-18 22:15:13 +0000607 std::vector<BasicBlock*> ExitBlocks;
608 CurLoop->getExitBlocks(ExitBlocks);
Chris Lattner92094b42003-12-09 17:18:00 +0000609
610 // For each exit block, get the DT node and walk up the DT until the
611 // instruction's basic block is found or we exit the loop.
Chris Lattnera2706512003-12-10 06:41:05 +0000612 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i)
613 if (!isExitBlockDominatedByBlockInLoop(ExitBlocks[i], Inst.getParent()))
614 return false;
Misha Brukmanfd939082005-04-21 23:48:37 +0000615
Tanya Lattner9966c032003-08-05 18:45:46 +0000616 return true;
617}
618
Chris Lattnereb53ae42002-09-26 16:19:31 +0000619
Chris Lattner2e6e7412003-02-24 03:52:32 +0000620/// PromoteValuesInLoop - Try to promote memory values to scalars by sinking
621/// stores out of the loop and moving loads to before the loop. We do this by
622/// looping over the stores in the loop, looking for stores to Must pointers
623/// which are loop invariant. We promote these memory locations to use allocas
624/// instead. These allocas can easily be raised to register values by the
625/// PromoteMem2Reg functionality.
626///
627void LICM::PromoteValuesInLoop() {
628 // PromotedValues - List of values that are promoted out of the loop. Each
Chris Lattner065a6162003-09-10 05:29:43 +0000629 // value has an alloca instruction for it, and a canonical version of the
Chris Lattner2e6e7412003-02-24 03:52:32 +0000630 // pointer.
631 std::vector<std::pair<AllocaInst*, Value*> > PromotedValues;
632 std::map<Value*, AllocaInst*> ValueToAllocaMap; // Map of ptr to alloca
633
Chris Lattnerfb3ee192004-09-15 01:04:07 +0000634 FindPromotableValuesInLoop(PromotedValues, ValueToAllocaMap);
635 if (ValueToAllocaMap.empty()) return; // If there are values to promote.
Chris Lattner2e6e7412003-02-24 03:52:32 +0000636
637 Changed = true;
638 NumPromoted += PromotedValues.size();
639
Chris Lattnerfb3ee192004-09-15 01:04:07 +0000640 std::vector<Value*> PointerValueNumbers;
641
Chris Lattner2e6e7412003-02-24 03:52:32 +0000642 // Emit a copy from the value into the alloca'd value in the loop preheader
643 TerminatorInst *LoopPredInst = Preheader->getTerminator();
644 for (unsigned i = 0, e = PromotedValues.size(); i != e; ++i) {
Chris Lattnerfb3ee192004-09-15 01:04:07 +0000645 Value *Ptr = PromotedValues[i].second;
646
647 // If we are promoting a pointer value, update alias information for the
648 // inserted load.
649 Value *LoadValue = 0;
650 if (isa<PointerType>(cast<PointerType>(Ptr->getType())->getElementType())) {
651 // Locate a load or store through the pointer, and assign the same value
652 // to LI as we are loading or storing. Since we know that the value is
653 // stored in this loop, this will always succeed.
654 for (Value::use_iterator UI = Ptr->use_begin(), E = Ptr->use_end();
655 UI != E; ++UI)
656 if (LoadInst *LI = dyn_cast<LoadInst>(*UI)) {
657 LoadValue = LI;
658 break;
659 } else if (StoreInst *SI = dyn_cast<StoreInst>(*UI)) {
Chris Lattnerbdacd872004-09-15 02:34:40 +0000660 if (SI->getOperand(1) == Ptr) {
Chris Lattnerfb3ee192004-09-15 01:04:07 +0000661 LoadValue = SI->getOperand(0);
662 break;
663 }
664 }
665 assert(LoadValue && "No store through the pointer found!");
666 PointerValueNumbers.push_back(LoadValue); // Remember this for later.
667 }
668
669 // Load from the memory we are promoting.
670 LoadInst *LI = new LoadInst(Ptr, Ptr->getName()+".promoted", LoopPredInst);
671
672 if (LoadValue) CurAST->copyValue(LoadValue, LI);
673
674 // Store into the temporary alloca.
Chris Lattner2e6e7412003-02-24 03:52:32 +0000675 new StoreInst(LI, PromotedValues[i].first, LoopPredInst);
676 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000677
Chris Lattner2e6e7412003-02-24 03:52:32 +0000678 // Scan the basic blocks in the loop, replacing uses of our pointers with
Chris Lattner0ed2da92003-12-10 15:56:24 +0000679 // uses of the allocas in question.
Chris Lattner2e6e7412003-02-24 03:52:32 +0000680 //
681 const std::vector<BasicBlock*> &LoopBBs = CurLoop->getBlocks();
682 for (std::vector<BasicBlock*>::const_iterator I = LoopBBs.begin(),
683 E = LoopBBs.end(); I != E; ++I) {
684 // Rewrite all loads and stores in the block of the pointer...
685 for (BasicBlock::iterator II = (*I)->begin(), E = (*I)->end();
686 II != E; ++II) {
Chris Lattnere408e252003-04-23 16:37:45 +0000687 if (LoadInst *L = dyn_cast<LoadInst>(II)) {
Chris Lattner2e6e7412003-02-24 03:52:32 +0000688 std::map<Value*, AllocaInst*>::iterator
689 I = ValueToAllocaMap.find(L->getOperand(0));
690 if (I != ValueToAllocaMap.end())
691 L->setOperand(0, I->second); // Rewrite load instruction...
Chris Lattnere408e252003-04-23 16:37:45 +0000692 } else if (StoreInst *S = dyn_cast<StoreInst>(II)) {
Chris Lattner2e6e7412003-02-24 03:52:32 +0000693 std::map<Value*, AllocaInst*>::iterator
694 I = ValueToAllocaMap.find(S->getOperand(1));
695 if (I != ValueToAllocaMap.end())
696 S->setOperand(1, I->second); // Rewrite store instruction...
697 }
698 }
Chris Lattner2e6e7412003-02-24 03:52:32 +0000699 }
700
Chris Lattner0ed2da92003-12-10 15:56:24 +0000701 // Now that the body of the loop uses the allocas instead of the original
702 // memory locations, insert code to copy the alloca value back into the
703 // original memory location on all exits from the loop. Note that we only
704 // want to insert one copy of the code in each exit block, though the loop may
705 // exit to the same block more than once.
706 //
707 std::set<BasicBlock*> ProcessedBlocks;
708
Chris Lattner5fa802f2004-04-18 22:15:13 +0000709 std::vector<BasicBlock*> ExitBlocks;
710 CurLoop->getExitBlocks(ExitBlocks);
Chris Lattner0ed2da92003-12-10 15:56:24 +0000711 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i)
Chris Lattnerf594a032003-12-10 16:57:24 +0000712 if (ProcessedBlocks.insert(ExitBlocks[i]).second) {
Chris Lattnerfb3ee192004-09-15 01:04:07 +0000713 // Copy all of the allocas into their memory locations.
Chris Lattner0ed2da92003-12-10 15:56:24 +0000714 BasicBlock::iterator BI = ExitBlocks[i]->begin();
715 while (isa<PHINode>(*BI))
Chris Lattnerfb3ee192004-09-15 01:04:07 +0000716 ++BI; // Skip over all of the phi nodes in the block.
Chris Lattner0ed2da92003-12-10 15:56:24 +0000717 Instruction *InsertPos = BI;
Chris Lattnerfb3ee192004-09-15 01:04:07 +0000718 unsigned PVN = 0;
Chris Lattner0ed2da92003-12-10 15:56:24 +0000719 for (unsigned i = 0, e = PromotedValues.size(); i != e; ++i) {
Chris Lattnerfb3ee192004-09-15 01:04:07 +0000720 // Load from the alloca.
Chris Lattner0ed2da92003-12-10 15:56:24 +0000721 LoadInst *LI = new LoadInst(PromotedValues[i].first, "", InsertPos);
Chris Lattnerfb3ee192004-09-15 01:04:07 +0000722
723 // If this is a pointer type, update alias info appropriately.
724 if (isa<PointerType>(LI->getType()))
725 CurAST->copyValue(PointerValueNumbers[PVN++], LI);
726
727 // Store into the memory we promoted.
Chris Lattner0ed2da92003-12-10 15:56:24 +0000728 new StoreInst(LI, PromotedValues[i].second, InsertPos);
729 }
730 }
731
Chris Lattner2e6e7412003-02-24 03:52:32 +0000732 // Now that we have done the deed, use the mem2reg functionality to promote
Chris Lattnerfb3ee192004-09-15 01:04:07 +0000733 // all of the new allocas we just created into real SSA registers.
Chris Lattner2e6e7412003-02-24 03:52:32 +0000734 //
735 std::vector<AllocaInst*> PromotedAllocas;
736 PromotedAllocas.reserve(PromotedValues.size());
737 for (unsigned i = 0, e = PromotedValues.size(); i != e; ++i)
738 PromotedAllocas.push_back(PromotedValues[i].first);
Chris Lattnerfb3ee192004-09-15 01:04:07 +0000739 PromoteMemToReg(PromotedAllocas, *DT, *DF, AA->getTargetData(), CurAST);
Chris Lattner2e6e7412003-02-24 03:52:32 +0000740}
741
Chris Lattnerfb3ee192004-09-15 01:04:07 +0000742/// FindPromotableValuesInLoop - Check the current loop for stores to definite
Chris Lattner2e6e7412003-02-24 03:52:32 +0000743/// pointers, which are not loaded and stored through may aliases. If these are
744/// found, create an alloca for the value, add it to the PromotedValues list,
Chris Lattnerfb3ee192004-09-15 01:04:07 +0000745/// and keep track of the mapping from value to alloca.
Chris Lattner2e6e7412003-02-24 03:52:32 +0000746///
Chris Lattnerfb3ee192004-09-15 01:04:07 +0000747void LICM::FindPromotableValuesInLoop(
Chris Lattner2e6e7412003-02-24 03:52:32 +0000748 std::vector<std::pair<AllocaInst*, Value*> > &PromotedValues,
749 std::map<Value*, AllocaInst*> &ValueToAllocaMap) {
750 Instruction *FnStart = CurLoop->getHeader()->getParent()->begin()->begin();
751
Chris Lattnerfb3ee192004-09-15 01:04:07 +0000752 // Loop over all of the alias sets in the tracker object.
Chris Lattner0252e492003-03-03 23:32:45 +0000753 for (AliasSetTracker::iterator I = CurAST->begin(), E = CurAST->end();
754 I != E; ++I) {
755 AliasSet &AS = *I;
756 // We can promote this alias set if it has a store, if it is a "Must" alias
Chris Lattnerfb3ee192004-09-15 01:04:07 +0000757 // set, if the pointer is loop invariant, and if we are not eliminating any
Chris Lattner118dd0c2004-03-15 04:11:30 +0000758 // volatile loads or stores.
Chris Lattner0252e492003-03-03 23:32:45 +0000759 if (!AS.isForwardingAliasSet() && AS.isMod() && AS.isMustAlias() &&
Chris Lattner3280f7b2004-04-18 22:46:08 +0000760 !AS.isVolatile() && CurLoop->isLoopInvariant(AS.begin()->first)) {
Chris Lattner0252e492003-03-03 23:32:45 +0000761 assert(AS.begin() != AS.end() &&
762 "Must alias set should have at least one pointer element in it!");
763 Value *V = AS.begin()->first;
Chris Lattner2e6e7412003-02-24 03:52:32 +0000764
Chris Lattner0252e492003-03-03 23:32:45 +0000765 // Check that all of the pointers in the alias set have the same type. We
766 // cannot (yet) promote a memory location that is loaded and stored in
767 // different sizes.
768 bool PointerOk = true;
769 for (AliasSet::iterator I = AS.begin(), E = AS.end(); I != E; ++I)
770 if (V->getType() != I->first->getType()) {
771 PointerOk = false;
772 break;
Chris Lattner2e6e7412003-02-24 03:52:32 +0000773 }
Chris Lattner0252e492003-03-03 23:32:45 +0000774
775 if (PointerOk) {
776 const Type *Ty = cast<PointerType>(V->getType())->getElementType();
777 AllocaInst *AI = new AllocaInst(Ty, 0, V->getName()+".tmp", FnStart);
778 PromotedValues.push_back(std::make_pair(AI, V));
Chris Lattnerfb3ee192004-09-15 01:04:07 +0000779
780 // Update the AST and alias analysis.
781 CurAST->copyValue(V, AI);
Misha Brukmanfd939082005-04-21 23:48:37 +0000782
Chris Lattner0252e492003-03-03 23:32:45 +0000783 for (AliasSet::iterator I = AS.begin(), E = AS.end(); I != E; ++I)
784 ValueToAllocaMap.insert(std::make_pair(I->first, AI));
Misha Brukmanfd939082005-04-21 23:48:37 +0000785
Bill Wendlingb7427032006-11-26 09:46:52 +0000786 DOUT << "LICM: Promoting value: " << *V << "\n";
Chris Lattner2e6e7412003-02-24 03:52:32 +0000787 }
788 }
789 }
Chris Lattnerf5e84aa2002-08-22 21:39:55 +0000790}