blob: f8fba1b3b432f0653d27cb324837c029113f3fde [file] [log] [blame]
Chris Lattner6ec05f52002-05-10 22:44:58 +00001//===-- LICM.cpp - Loop Invariant Code Motion Pass ------------------------===//
John Criswell482202a2003-10-20 19:43:21 +00002//
3// 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.
7//
8//===----------------------------------------------------------------------===//
Chris Lattner6ec05f52002-05-10 22:44:58 +00009//
Chris Lattnerc0517682003-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 Lattner547192d62003-12-19 07:22:45 +000014// live in registers, thus hoisting and sinking "invariant" loads and stores.
Chris Lattnerc0517682003-12-09 17:18:00 +000015//
16// This pass uses alias analysis for two purposes:
Chris Lattner45d67d62003-02-24 03:52:32 +000017//
Chris Lattner289ba2a2004-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 Lattner45d67d62003-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 Lattner6ec05f52002-05-10 22:44:58 +000031//
Chris Lattner6ec05f52002-05-10 22:44:58 +000032//===----------------------------------------------------------------------===//
33
Chris Lattner1c790bf2005-03-23 21:00:12 +000034#define DEBUG_TYPE "licm"
Chris Lattner6ec05f52002-05-10 22:44:58 +000035#include "llvm/Transforms/Scalar.h"
Chris Lattner289ba2a2004-05-23 21:20:19 +000036#include "llvm/DerivedTypes.h"
37#include "llvm/Instructions.h"
38#include "llvm/Target/TargetData.h"
Chris Lattner6ec05f52002-05-10 22:44:58 +000039#include "llvm/Analysis/LoopInfo.h"
Chris Lattnera51fa882002-08-22 21:39:55 +000040#include "llvm/Analysis/AliasAnalysis.h"
Chris Lattner0592bb72003-03-03 23:32:45 +000041#include "llvm/Analysis/AliasSetTracker.h"
Chris Lattner64437692002-09-29 21:46:09 +000042#include "llvm/Analysis/Dominators.h"
Chris Lattner45d67d62003-02-24 03:52:32 +000043#include "llvm/Support/CFG.h"
Chris Lattner289ba2a2004-05-23 21:20:19 +000044#include "llvm/Transforms/Utils/PromoteMemToReg.h"
45#include "llvm/Transforms/Utils/Local.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000046#include "llvm/Support/CommandLine.h"
47#include "llvm/Support/Debug.h"
48#include "llvm/ADT/Statistic.h"
Chris Lattner6ec05f52002-05-10 22:44:58 +000049#include <algorithm>
Chris Lattnerc0517682003-12-09 17:18:00 +000050using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000051
Chris Lattner6ec05f52002-05-10 22:44:58 +000052namespace {
Chris Lattner17895702003-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 Lattner45d67d62003-02-24 03:52:32 +000056
Chris Lattneraaaea512003-12-10 06:41:05 +000057 Statistic<> NumSunk("licm", "Number of instructions sunk out of loop");
Chris Lattnerbf3a0992002-10-01 22:38:41 +000058 Statistic<> NumHoisted("licm", "Number of instructions hoisted out of loop");
Chris Lattneraaaea512003-12-10 06:41:05 +000059 Statistic<> NumMovedLoads("licm", "Number of load insts hoisted or sunk");
Chris Lattner20cda262004-03-15 04:11:30 +000060 Statistic<> NumMovedCalls("licm", "Number of call insts hoisted or sunk");
Chris Lattner17895702003-10-13 05:04:27 +000061 Statistic<> NumPromoted("licm",
62 "Number of memory locations promoted to registers");
Chris Lattner718b2212002-09-26 16:38:03 +000063
Chris Lattner65c11932003-12-09 19:32:44 +000064 struct LICM : public FunctionPass {
Chris Lattner113f4f42002-06-25 16:13:24 +000065 virtual bool runOnFunction(Function &F);
Chris Lattner6ec05f52002-05-10 22:44:58 +000066
Chris Lattnerf64f2d32002-09-26 16:52:07 +000067 /// This transformation requires natural loop information & requires that
68 /// loop preheaders be inserted into the CFG...
69 ///
Chris Lattner6ec05f52002-05-10 22:44:58 +000070 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattner820d9712002-10-21 20:00:28 +000071 AU.setPreservesCFG();
Chris Lattner72272a72003-10-12 21:52:28 +000072 AU.addRequiredID(LoopSimplifyID);
Chris Lattnerf0ed55d2002-08-08 19:01:30 +000073 AU.addRequired<LoopInfo>();
Chris Lattner64437692002-09-29 21:46:09 +000074 AU.addRequired<DominatorTree>();
Chris Lattner0592bb72003-03-03 23:32:45 +000075 AU.addRequired<DominanceFrontier>(); // For scalar promotion (mem2reg)
Chris Lattnera51fa882002-08-22 21:39:55 +000076 AU.addRequired<AliasAnalysis>();
Chris Lattner6ec05f52002-05-10 22:44:58 +000077 }
78
79 private:
Chris Lattnerc0517682003-12-09 17:18:00 +000080 // Various analyses that we use...
Chris Lattner45d67d62003-02-24 03:52:32 +000081 AliasAnalysis *AA; // Current AliasAnalysis information
Chris Lattnerc0517682003-12-09 17:18:00 +000082 LoopInfo *LI; // Current LoopInfo
83 DominatorTree *DT; // Dominator Tree for the current Loop...
Chris Lattnera906bac2003-10-05 21:20:13 +000084 DominanceFrontier *DF; // Current Dominance Frontier
Chris Lattnerc0517682003-12-09 17:18:00 +000085
86 // State that is updated as we process loops
Chris Lattner45d67d62003-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 Lattner0592bb72003-03-03 23:32:45 +000090 AliasSetTracker *CurAST; // AliasSet information for the current loop...
Chris Lattner6ec05f52002-05-10 22:44:58 +000091
Chris Lattnerf64f2d32002-09-26 16:52:07 +000092 /// visitLoop - Hoist expressions out of the specified loop...
93 ///
Chris Lattner0592bb72003-03-03 23:32:45 +000094 void visitLoop(Loop *L, AliasSetTracker &AST);
Chris Lattner6ec05f52002-05-10 22:44:58 +000095
Chris Lattner547192d62003-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 Lattner64437692002-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 Brukman8b2bd4e2003-10-10 17:57:28 +0000107 /// visit definitions before uses, allowing us to hoist a loop body in one
Chris Lattner64437692002-09-29 21:46:09 +0000108 /// pass without iteration.
109 ///
110 void HoistRegion(DominatorTree::Node *N);
111
Chris Lattner05e86302002-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 Lattnerf64f2d32002-09-26 16:52:07 +0000114 ///
Chris Lattner05e86302002-09-29 22:26:07 +0000115 bool inSubLoop(BasicBlock *BB) {
116 assert(CurLoop->contains(BB) && "Only valid if BB is IN the loop");
Chris Lattner59d2d7f2004-01-08 00:09:44 +0000117 for (Loop::iterator I = CurLoop->begin(), E = CurLoop->end(); I != E; ++I)
118 if ((*I)->contains(BB))
Chris Lattner05e86302002-09-29 22:26:07 +0000119 return true; // A subloop actually contains this block!
120 return false;
Chris Lattner6ec05f52002-05-10 22:44:58 +0000121 }
122
Chris Lattneraaaea512003-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;
134
135 DominatorTree::Node *BlockInLoopNode = DT->getNode(BlockInLoop);
136 DominatorTree::Node *IDom = DT->getNode(ExitBlock);
137
138 // Because the exit block is not in the loop, we know we have to get _at
Chris Lattner289ba2a2004-05-23 21:20:19 +0000139 // least_ its immediate dominator.
Chris Lattneraaaea512003-12-10 06:41:05 +0000140 do {
141 // Get next Immediate Dominator.
142 IDom = IDom->getIDom();
143
144 // 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;
148
149 } 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 Lattnerf64f2d32002-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 Lattner113f4f42002-06-25 16:13:24 +0000163 void hoist(Instruction &I);
Chris Lattner6ec05f52002-05-10 22:44:58 +0000164
Chris Lattneraaaea512003-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 Lattner57c03df2003-08-05 18:45:46 +0000168 ///
Chris Lattneraaaea512003-12-10 06:41:05 +0000169 bool isSafeToExecuteUnconditionally(Instruction &I);
Tanya Lattner57c03df2003-08-05 18:45:46 +0000170
Chris Lattnerf64f2d32002-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.
173 ///
Chris Lattnerb1374092004-11-26 21:20:09 +0000174 bool pointerInvalidatedByLoop(Value *V, unsigned Size) {
Chris Lattner0592bb72003-03-03 23:32:45 +0000175 // Check to see if any of the basic blocks in CurLoop invalidate *V.
Chris Lattnerb1374092004-11-26 21:20:09 +0000176 return CurAST->getAliasSetForPointer(V, Size).isMod();
Chris Lattner45d67d62003-02-24 03:52:32 +0000177 }
Chris Lattnera51fa882002-08-22 21:39:55 +0000178
Chris Lattneraaaea512003-12-10 06:41:05 +0000179 bool canSinkOrHoistInst(Instruction &I);
180 bool isLoopInvariantInst(Instruction &I);
181 bool isNotUsedInLoop(Instruction &I);
Chris Lattner6ec05f52002-05-10 22:44:58 +0000182
Chris Lattner45d67d62003-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 Lattnera3465782004-09-15 01:04:07 +0000188 /// FindPromotableValuesInLoop - Check the current loop for stores to
Misha Brukman9b8d3392003-09-11 15:32:37 +0000189 /// definite pointers, which are not loaded and stored through may aliases.
Chris Lattner45d67d62003-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 Lattnera3465782004-09-15 01:04:07 +0000194 void FindPromotableValuesInLoop(
Chris Lattner45d67d62003-02-24 03:52:32 +0000195 std::vector<std::pair<AllocaInst*, Value*> > &PromotedValues,
196 std::map<Value*, AllocaInst*> &Val2AlMap);
Chris Lattner6ec05f52002-05-10 22:44:58 +0000197 };
Chris Lattnerb28b6802002-07-23 18:06:35 +0000198
Chris Lattnerc8b70922002-07-26 21:12:46 +0000199 RegisterOpt<LICM> X("licm", "Loop Invariant Code Motion");
Chris Lattner6ec05f52002-05-10 22:44:58 +0000200}
201
Chris Lattnerc0517682003-12-09 17:18:00 +0000202FunctionPass *llvm::createLICMPass() { return new LICM(); }
Chris Lattner6ec05f52002-05-10 22:44:58 +0000203
Chris Lattnerf64f2d32002-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 Lattner42ad6462004-06-19 20:23:35 +0000207bool LICM::runOnFunction(Function &) {
Chris Lattner45d67d62003-02-24 03:52:32 +0000208 Changed = false;
Chris Lattner6ec05f52002-05-10 22:44:58 +0000209
Chris Lattner45d67d62003-02-24 03:52:32 +0000210 // Get our Loop and Alias Analysis information...
211 LI = &getAnalysis<LoopInfo>();
Chris Lattnera51fa882002-08-22 21:39:55 +0000212 AA = &getAnalysis<AliasAnalysis>();
Chris Lattnera906bac2003-10-05 21:20:13 +0000213 DF = &getAnalysis<DominanceFrontier>();
Tanya Lattnerdc3c9a82003-08-05 20:39:02 +0000214 DT = &getAnalysis<DominatorTree>();
Chris Lattnera51fa882002-08-22 21:39:55 +0000215
Chris Lattner45d67d62003-02-24 03:52:32 +0000216 // Hoist expressions out of all of the top-level loops.
Chris Lattner59d2d7f2004-01-08 00:09:44 +0000217 for (LoopInfo::iterator I = LI->begin(), E = LI->end(); I != E; ++I) {
Chris Lattner0592bb72003-03-03 23:32:45 +0000218 AliasSetTracker AST(*AA);
Chris Lattner65c11932003-12-09 19:32:44 +0000219 visitLoop(*I, AST);
Chris Lattner45d67d62003-02-24 03:52:32 +0000220 }
Chris Lattner6ec05f52002-05-10 22:44:58 +0000221 return Changed;
222}
223
Chris Lattnerf64f2d32002-09-26 16:52:07 +0000224
225/// visitLoop - Hoist expressions out of the specified loop...
226///
Chris Lattner0592bb72003-03-03 23:32:45 +0000227void LICM::visitLoop(Loop *L, AliasSetTracker &AST) {
Chris Lattner6ec05f52002-05-10 22:44:58 +0000228 // Recurse through all subloops before we process this loop...
Chris Lattner59d2d7f2004-01-08 00:09:44 +0000229 for (Loop::iterator I = L->begin(), E = L->end(); I != E; ++I) {
Chris Lattner0592bb72003-03-03 23:32:45 +0000230 AliasSetTracker SubAST(*AA);
Chris Lattner65c11932003-12-09 19:32:44 +0000231 visitLoop(*I, SubAST);
Chris Lattner45d67d62003-02-24 03:52:32 +0000232
233 // Incorporate information about the subloops into this loop...
Chris Lattner0592bb72003-03-03 23:32:45 +0000234 AST.add(SubAST);
Chris Lattner45d67d62003-02-24 03:52:32 +0000235 }
Chris Lattner6ec05f52002-05-10 22:44:58 +0000236 CurLoop = L;
Chris Lattner0592bb72003-03-03 23:32:45 +0000237 CurAST = &AST;
Chris Lattner6ec05f52002-05-10 22:44:58 +0000238
Chris Lattnerd57f3f52002-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 Lattner45d67d62003-02-24 03:52:32 +0000243 // Loop over the body of this loop, looking for calls, invokes, and stores.
Chris Lattner0592bb72003-03-03 23:32:45 +0000244 // Because subloops have already been incorporated into AST, we skip blocks in
Chris Lattner45d67d62003-02-24 03:52:32 +0000245 // subloops.
246 //
Chris Lattneraaaea512003-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 Lattner45d67d62003-02-24 03:52:32 +0000249 if (LI->getLoopFor(*I) == L) // Ignore blocks in subloops...
Chris Lattner0592bb72003-03-03 23:32:45 +0000250 AST.add(**I); // Incorporate the specified basic block
Chris Lattner45d67d62003-02-24 03:52:32 +0000251
Chris Lattner6ec05f52002-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 Lattner64437692002-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 Lattner547192d62003-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 Lattner64437692002-09-29 21:46:09 +0000261 //
Chris Lattner547192d62003-12-19 07:22:45 +0000262 SinkRegion(DT->getNode(L->getHeader()));
Tanya Lattnerdc3c9a82003-08-05 20:39:02 +0000263 HoistRegion(DT->getNode(L->getHeader()));
Chris Lattner6ec05f52002-05-10 22:44:58 +0000264
Chris Lattner45d67d62003-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 Lattner6ec05f52002-05-10 22:44:58 +0000270 // Clear out loops state information for the next iteration
271 CurLoop = 0;
Chris Lattnerd57f3f52002-09-26 19:40:25 +0000272 Preheader = 0;
Chris Lattner6ec05f52002-05-10 22:44:58 +0000273}
274
Chris Lattner547192d62003-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 Lattner91846012003-12-19 08:18:16 +0000297 for (BasicBlock::iterator II = BB->end(); II != BB->begin(); ) {
298 Instruction &I = *--II;
Chris Lattner547192d62003-12-19 07:22:45 +0000299
300 // 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 Lattner91846012003-12-19 08:18:16 +0000305 if (canSinkOrHoistInst(I) && isNotUsedInLoop(I)) {
306 ++II;
Chris Lattner547192d62003-12-19 07:22:45 +0000307 sink(I);
Chris Lattner91846012003-12-19 08:18:16 +0000308 }
Chris Lattner547192d62003-12-19 07:22:45 +0000309 }
310}
311
312
Chris Lattner64437692002-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 Brukman8b2bd4e2003-10-10 17:57:28 +0000315/// first order w.r.t the DominatorTree. This allows us to visit definitions
Chris Lattner64437692002-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 Lattner65c11932003-12-09 19:32:44 +0000320 BasicBlock *BB = N->getBlock();
Chris Lattner64437692002-09-29 21:46:09 +0000321
Chris Lattner05e86302002-09-29 22:26:07 +0000322 // If this subregion is not in the top level loop at all, exit.
Chris Lattner65c11932003-12-09 19:32:44 +0000323 if (!CurLoop->contains(BB)) return;
Chris Lattner64437692002-09-29 21:46:09 +0000324
Chris Lattneraaaea512003-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 Lattner65c11932003-12-09 19:32:44 +0000327 if (!inSubLoop(BB))
Chris Lattneraaaea512003-12-10 06:41:05 +0000328 for (BasicBlock::iterator II = BB->begin(), E = BB->end(); II != E; ) {
329 Instruction &I = *II++;
Chris Lattner547192d62003-12-19 07:22:45 +0000330
331 // 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 //
335 if (isLoopInvariantInst(I) && canSinkOrHoistInst(I) &&
336 isSafeToExecuteUnconditionally(I))
Chris Lattneraaaea512003-12-10 06:41:05 +0000337 hoist(I);
338 }
Chris Lattner64437692002-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 Lattner42ad6462004-06-19 20:23:35 +0000342 HoistRegion(Children[i]);
Chris Lattner64437692002-09-29 21:46:09 +0000343}
344
Chris Lattneraaaea512003-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 Lattner65c11932003-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 Lattnerb1374092004-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 Lattner20cda262004-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 Lattnerb17f3e12004-12-15 07:22:25 +0000362 AliasAnalysis::ModRefBehavior Behavior =AA->getModRefBehavior(Callee, CI);
363 if (Behavior == AliasAnalysis::DoesNotAccessMemory)
Chris Lattner20cda262004-03-15 04:11:30 +0000364 return true;
Chris Lattnerb17f3e12004-12-15 07:22:25 +0000365 else if (Behavior == AliasAnalysis::OnlyReadsMemory) {
Chris Lattner20cda262004-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.
383
384 return false;
Chris Lattner65c11932003-12-09 19:32:44 +0000385 }
386
Chris Lattneraaaea512003-12-10 06:41:05 +0000387 return isa<BinaryOperator>(I) || isa<ShiftInst>(I) || isa<CastInst>(I) ||
Chris Lattner20cda262004-03-15 04:11:30 +0000388 isa<SelectInst>(I) ||
Chris Lattneraaaea512003-12-10 06:41:05 +0000389 isa<GetElementPtrInst>(I) || isa<VANextInst>(I) || isa<VAArgInst>(I);
390}
391
392/// isNotUsedInLoop - Return true if the only users of this instruction are
393/// outside of the loop. If this is true, we can sink the instruction to the
394/// exit blocks of the loop.
395///
396bool LICM::isNotUsedInLoop(Instruction &I) {
Chris Lattner34399dd2003-12-11 22:23:32 +0000397 for (Value::use_iterator UI = I.use_begin(), E = I.use_end(); UI != E; ++UI) {
398 Instruction *User = cast<Instruction>(*UI);
399 if (PHINode *PN = dyn_cast<PHINode>(User)) {
400 // PHI node uses occur in predecessor blocks!
401 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
402 if (PN->getIncomingValue(i) == &I)
403 if (CurLoop->contains(PN->getIncomingBlock(i)))
404 return false;
405 } else if (CurLoop->contains(User->getParent())) {
Chris Lattneraaaea512003-12-10 06:41:05 +0000406 return false;
Chris Lattner34399dd2003-12-11 22:23:32 +0000407 }
408 }
Chris Lattneraaaea512003-12-10 06:41:05 +0000409 return true;
410}
411
412
413/// isLoopInvariantInst - Return true if all operands of this instruction are
414/// loop invariant. We also filter out non-hoistable instructions here just for
415/// efficiency.
416///
417bool LICM::isLoopInvariantInst(Instruction &I) {
418 // The instruction is loop invariant if all of its operands are loop-invariant
419 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i)
Chris Lattnerfc44a252004-04-18 22:46:08 +0000420 if (!CurLoop->isLoopInvariant(I.getOperand(i)))
Chris Lattneraaaea512003-12-10 06:41:05 +0000421 return false;
422
Chris Lattner65c11932003-12-09 19:32:44 +0000423 // If we got this far, the instruction is loop invariant!
424 return true;
425}
426
Chris Lattneraaaea512003-12-10 06:41:05 +0000427/// sink - When an instruction is found to only be used outside of the loop,
Chris Lattner91846012003-12-19 08:18:16 +0000428/// this function moves it to the exit blocks and patches up SSA form as needed.
429/// This method is guaranteed to remove the original instruction from its
430/// position, and may either delete it or move it to outside of the loop.
Chris Lattneraaaea512003-12-10 06:41:05 +0000431///
432void LICM::sink(Instruction &I) {
433 DEBUG(std::cerr << "LICM sinking instruction: " << I);
434
Chris Lattner35eaa552004-04-18 22:15:13 +0000435 std::vector<BasicBlock*> ExitBlocks;
436 CurLoop->getExitBlocks(ExitBlocks);
Chris Lattner55c21132003-12-10 20:43:29 +0000437
438 if (isa<LoadInst>(I)) ++NumMovedLoads;
Chris Lattner20cda262004-03-15 04:11:30 +0000439 else if (isa<CallInst>(I)) ++NumMovedCalls;
Chris Lattner55c21132003-12-10 20:43:29 +0000440 ++NumSunk;
441 Changed = true;
442
Chris Lattneraaaea512003-12-10 06:41:05 +0000443 // The case where there is only a single exit node of this loop is common
444 // enough that we handle it as a special (more efficient) case. It is more
445 // efficient to handle because there are no PHI nodes that need to be placed.
446 if (ExitBlocks.size() == 1) {
447 if (!isExitBlockDominatedByBlockInLoop(ExitBlocks[0], I.getParent())) {
448 // Instruction is not used, just delete it.
Chris Lattner289ba2a2004-05-23 21:20:19 +0000449 CurAST->deleteValue(&I);
Chris Lattneraaaea512003-12-10 06:41:05 +0000450 I.getParent()->getInstList().erase(&I);
451 } else {
452 // Move the instruction to the start of the exit block, after any PHI
453 // nodes in it.
454 I.getParent()->getInstList().remove(&I);
455
456 BasicBlock::iterator InsertPt = ExitBlocks[0]->begin();
457 while (isa<PHINode>(InsertPt)) ++InsertPt;
458 ExitBlocks[0]->getInstList().insert(InsertPt, &I);
459 }
460 } else if (ExitBlocks.size() == 0) {
461 // The instruction is actually dead if there ARE NO exit blocks.
Chris Lattner289ba2a2004-05-23 21:20:19 +0000462 CurAST->deleteValue(&I);
Chris Lattneraaaea512003-12-10 06:41:05 +0000463 I.getParent()->getInstList().erase(&I);
Chris Lattneraaaea512003-12-10 06:41:05 +0000464 } else {
465 // Otherwise, if we have multiple exits, use the PromoteMem2Reg function to
466 // do all of the hard work of inserting PHI nodes as necessary. We convert
467 // the value into a stack object to get it to do this.
468
469 // Firstly, we create a stack object to hold the value...
Chris Lattner50eb7712004-07-27 07:38:32 +0000470 AllocaInst *AI = 0;
Chris Lattneraaaea512003-12-10 06:41:05 +0000471
Chris Lattner50eb7712004-07-27 07:38:32 +0000472 if (I.getType() != Type::VoidTy)
473 AI = new AllocaInst(I.getType(), 0, I.getName(),
474 I.getParent()->getParent()->front().begin());
475
Chris Lattneraaaea512003-12-10 06:41:05 +0000476 // Secondly, insert load instructions for each use of the instruction
477 // outside of the loop.
478 while (!I.use_empty()) {
479 Instruction *U = cast<Instruction>(I.use_back());
480
481 // If the user is a PHI Node, we actually have to insert load instructions
482 // in all predecessor blocks, not in the PHI block itself!
483 if (PHINode *UPN = dyn_cast<PHINode>(U)) {
484 // Only insert into each predecessor once, so that we don't have
485 // different incoming values from the same block!
486 std::map<BasicBlock*, Value*> InsertedBlocks;
487 for (unsigned i = 0, e = UPN->getNumIncomingValues(); i != e; ++i)
488 if (UPN->getIncomingValue(i) == &I) {
489 BasicBlock *Pred = UPN->getIncomingBlock(i);
490 Value *&PredVal = InsertedBlocks[Pred];
491 if (!PredVal) {
492 // Insert a new load instruction right before the terminator in
493 // the predecessor block.
494 PredVal = new LoadInst(AI, "", Pred->getTerminator());
495 }
496
497 UPN->setIncomingValue(i, PredVal);
498 }
499
500 } else {
501 LoadInst *L = new LoadInst(AI, "", U);
502 U->replaceUsesOfWith(&I, L);
503 }
504 }
505
506 // Thirdly, insert a copy of the instruction in each exit block of the loop
507 // that is dominated by the instruction, storing the result into the memory
508 // location. Be careful not to insert the instruction into any particular
509 // basic block more than once.
510 std::set<BasicBlock*> InsertedBlocks;
511 BasicBlock *InstOrigBB = I.getParent();
512
513 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i) {
514 BasicBlock *ExitBlock = ExitBlocks[i];
515
516 if (isExitBlockDominatedByBlockInLoop(ExitBlock, InstOrigBB)) {
Chris Lattneraaaea512003-12-10 06:41:05 +0000517 // If we haven't already processed this exit block, do so now.
Chris Lattner63643142003-12-10 16:58:24 +0000518 if (InsertedBlocks.insert(ExitBlock).second) {
Chris Lattneraaaea512003-12-10 06:41:05 +0000519 // Insert the code after the last PHI node...
520 BasicBlock::iterator InsertPt = ExitBlock->begin();
521 while (isa<PHINode>(InsertPt)) ++InsertPt;
522
523 // If this is the first exit block processed, just move the original
524 // instruction, otherwise clone the original instruction and insert
525 // the copy.
526 Instruction *New;
Chris Lattner6281fd32003-12-10 22:35:56 +0000527 if (InsertedBlocks.size() == 1) {
Chris Lattneraaaea512003-12-10 06:41:05 +0000528 I.getParent()->getInstList().remove(&I);
529 ExitBlock->getInstList().insert(InsertPt, &I);
530 New = &I;
531 } else {
532 New = I.clone();
Chris Lattner50eb7712004-07-27 07:38:32 +0000533 if (!I.getName().empty())
534 New->setName(I.getName()+".le");
Chris Lattneraaaea512003-12-10 06:41:05 +0000535 ExitBlock->getInstList().insert(InsertPt, New);
536 }
537
538 // Now that we have inserted the instruction, store it into the alloca
Chris Lattner50eb7712004-07-27 07:38:32 +0000539 if (AI) new StoreInst(New, AI, InsertPt);
Chris Lattneraaaea512003-12-10 06:41:05 +0000540 }
541 }
542 }
Chris Lattner91846012003-12-19 08:18:16 +0000543
544 // If the instruction doesn't dominate any exit blocks, it must be dead.
545 if (InsertedBlocks.empty()) {
Chris Lattner289ba2a2004-05-23 21:20:19 +0000546 CurAST->deleteValue(&I);
Chris Lattner91846012003-12-19 08:18:16 +0000547 I.getParent()->getInstList().erase(&I);
548 }
Chris Lattneraaaea512003-12-10 06:41:05 +0000549
550 // Finally, promote the fine value to SSA form.
Chris Lattner50eb7712004-07-27 07:38:32 +0000551 if (AI) {
552 std::vector<AllocaInst*> Allocas;
553 Allocas.push_back(AI);
Chris Lattnera3465782004-09-15 01:04:07 +0000554 PromoteMemToReg(Allocas, *DT, *DF, AA->getTargetData(), CurAST);
Chris Lattner50eb7712004-07-27 07:38:32 +0000555 }
Chris Lattneraaaea512003-12-10 06:41:05 +0000556 }
Chris Lattneraaaea512003-12-10 06:41:05 +0000557}
Chris Lattner64437692002-09-29 21:46:09 +0000558
Chris Lattnerf64f2d32002-09-26 16:52:07 +0000559/// hoist - When an instruction is found to only use loop invariant operands
560/// that is safe to hoist, this instruction is called to do the dirty work.
561///
Chris Lattneraaaea512003-12-10 06:41:05 +0000562void LICM::hoist(Instruction &I) {
Brian Gaeke661963c2004-06-17 07:26:52 +0000563 DEBUG(std::cerr << "LICM hoisting to " << Preheader->getName()
Chris Lattner289ba2a2004-05-23 21:20:19 +0000564 << ": " << I);
Chris Lattner65c11932003-12-09 19:32:44 +0000565
Chris Lattnerd57f3f52002-09-26 19:40:25 +0000566 // Remove the instruction from its current basic block... but don't delete the
567 // instruction.
Chris Lattneraaaea512003-12-10 06:41:05 +0000568 I.getParent()->getInstList().remove(&I);
Chris Lattner6ec05f52002-05-10 22:44:58 +0000569
Chris Lattner718b2212002-09-26 16:38:03 +0000570 // Insert the new node in Preheader, before the terminator.
Chris Lattneraaaea512003-12-10 06:41:05 +0000571 Preheader->getInstList().insert(Preheader->getTerminator(), &I);
Chris Lattner718b2212002-09-26 16:38:03 +0000572
Chris Lattneraaaea512003-12-10 06:41:05 +0000573 if (isa<LoadInst>(I)) ++NumMovedLoads;
Chris Lattner20cda262004-03-15 04:11:30 +0000574 else if (isa<CallInst>(I)) ++NumMovedCalls;
Chris Lattner718b2212002-09-26 16:38:03 +0000575 ++NumHoisted;
Chris Lattner6ec05f52002-05-10 22:44:58 +0000576 Changed = true;
577}
578
Chris Lattneraaaea512003-12-10 06:41:05 +0000579/// isSafeToExecuteUnconditionally - Only sink or hoist an instruction if it is
580/// not a trapping instruction or if it is a trapping instruction and is
581/// guaranteed to execute.
Tanya Lattner57c03df2003-08-05 18:45:46 +0000582///
Chris Lattneraaaea512003-12-10 06:41:05 +0000583bool LICM::isSafeToExecuteUnconditionally(Instruction &Inst) {
Chris Lattnerc0517682003-12-09 17:18:00 +0000584 // If it is not a trapping instruction, it is always safe to hoist.
585 if (!Inst.isTrapping()) return true;
586
587 // Otherwise we have to check to make sure that the instruction dominates all
588 // of the exit blocks. If it doesn't, then there is a path out of the loop
589 // which does not execute this instruction, so we can't hoist it.
Tanya Lattner57c03df2003-08-05 18:45:46 +0000590
Chris Lattnerc0517682003-12-09 17:18:00 +0000591 // If the instruction is in the header block for the loop (which is very
592 // common), it is always guaranteed to dominate the exit blocks. Since this
593 // is a common case, and can save some work, check it now.
Chris Lattneraaaea512003-12-10 06:41:05 +0000594 if (Inst.getParent() == CurLoop->getHeader())
Chris Lattnerc0517682003-12-09 17:18:00 +0000595 return true;
Tanya Lattner57c03df2003-08-05 18:45:46 +0000596
Chris Lattner6e455602004-11-29 21:26:12 +0000597 // It's always safe to load from a global or alloca.
598 if (isa<LoadInst>(Inst))
599 if (isa<AllocationInst>(Inst.getOperand(0)) ||
600 isa<GlobalVariable>(Inst.getOperand(0)))
601 return true;
602
Chris Lattnerc0517682003-12-09 17:18:00 +0000603 // Get the exit blocks for the current loop.
Chris Lattner35eaa552004-04-18 22:15:13 +0000604 std::vector<BasicBlock*> ExitBlocks;
605 CurLoop->getExitBlocks(ExitBlocks);
Chris Lattnerc0517682003-12-09 17:18:00 +0000606
607 // For each exit block, get the DT node and walk up the DT until the
608 // instruction's basic block is found or we exit the loop.
Chris Lattneraaaea512003-12-10 06:41:05 +0000609 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i)
610 if (!isExitBlockDominatedByBlockInLoop(ExitBlocks[i], Inst.getParent()))
611 return false;
Tanya Lattnerdc3c9a82003-08-05 20:39:02 +0000612
Tanya Lattner57c03df2003-08-05 18:45:46 +0000613 return true;
614}
615
Chris Lattnerd771fdf2002-09-26 16:19:31 +0000616
Chris Lattner45d67d62003-02-24 03:52:32 +0000617/// PromoteValuesInLoop - Try to promote memory values to scalars by sinking
618/// stores out of the loop and moving loads to before the loop. We do this by
619/// looping over the stores in the loop, looking for stores to Must pointers
620/// which are loop invariant. We promote these memory locations to use allocas
621/// instead. These allocas can easily be raised to register values by the
622/// PromoteMem2Reg functionality.
623///
624void LICM::PromoteValuesInLoop() {
625 // PromotedValues - List of values that are promoted out of the loop. Each
Chris Lattner216c7b82003-09-10 05:29:43 +0000626 // value has an alloca instruction for it, and a canonical version of the
Chris Lattner45d67d62003-02-24 03:52:32 +0000627 // pointer.
628 std::vector<std::pair<AllocaInst*, Value*> > PromotedValues;
629 std::map<Value*, AllocaInst*> ValueToAllocaMap; // Map of ptr to alloca
630
Chris Lattnera3465782004-09-15 01:04:07 +0000631 FindPromotableValuesInLoop(PromotedValues, ValueToAllocaMap);
632 if (ValueToAllocaMap.empty()) return; // If there are values to promote.
Chris Lattner45d67d62003-02-24 03:52:32 +0000633
634 Changed = true;
635 NumPromoted += PromotedValues.size();
636
Chris Lattnera3465782004-09-15 01:04:07 +0000637 std::vector<Value*> PointerValueNumbers;
638
Chris Lattner45d67d62003-02-24 03:52:32 +0000639 // Emit a copy from the value into the alloca'd value in the loop preheader
640 TerminatorInst *LoopPredInst = Preheader->getTerminator();
641 for (unsigned i = 0, e = PromotedValues.size(); i != e; ++i) {
Chris Lattnera3465782004-09-15 01:04:07 +0000642 Value *Ptr = PromotedValues[i].second;
643
644 // If we are promoting a pointer value, update alias information for the
645 // inserted load.
646 Value *LoadValue = 0;
647 if (isa<PointerType>(cast<PointerType>(Ptr->getType())->getElementType())) {
648 // Locate a load or store through the pointer, and assign the same value
649 // to LI as we are loading or storing. Since we know that the value is
650 // stored in this loop, this will always succeed.
651 for (Value::use_iterator UI = Ptr->use_begin(), E = Ptr->use_end();
652 UI != E; ++UI)
653 if (LoadInst *LI = dyn_cast<LoadInst>(*UI)) {
654 LoadValue = LI;
655 break;
656 } else if (StoreInst *SI = dyn_cast<StoreInst>(*UI)) {
Chris Lattnerf11216d2004-09-15 02:34:40 +0000657 if (SI->getOperand(1) == Ptr) {
Chris Lattnera3465782004-09-15 01:04:07 +0000658 LoadValue = SI->getOperand(0);
659 break;
660 }
661 }
662 assert(LoadValue && "No store through the pointer found!");
663 PointerValueNumbers.push_back(LoadValue); // Remember this for later.
664 }
665
666 // Load from the memory we are promoting.
667 LoadInst *LI = new LoadInst(Ptr, Ptr->getName()+".promoted", LoopPredInst);
668
669 if (LoadValue) CurAST->copyValue(LoadValue, LI);
670
671 // Store into the temporary alloca.
Chris Lattner45d67d62003-02-24 03:52:32 +0000672 new StoreInst(LI, PromotedValues[i].first, LoopPredInst);
673 }
674
675 // Scan the basic blocks in the loop, replacing uses of our pointers with
Chris Lattneredda1af2003-12-10 15:56:24 +0000676 // uses of the allocas in question.
Chris Lattner45d67d62003-02-24 03:52:32 +0000677 //
678 const std::vector<BasicBlock*> &LoopBBs = CurLoop->getBlocks();
679 for (std::vector<BasicBlock*>::const_iterator I = LoopBBs.begin(),
680 E = LoopBBs.end(); I != E; ++I) {
681 // Rewrite all loads and stores in the block of the pointer...
682 for (BasicBlock::iterator II = (*I)->begin(), E = (*I)->end();
683 II != E; ++II) {
Chris Lattner889f6202003-04-23 16:37:45 +0000684 if (LoadInst *L = dyn_cast<LoadInst>(II)) {
Chris Lattner45d67d62003-02-24 03:52:32 +0000685 std::map<Value*, AllocaInst*>::iterator
686 I = ValueToAllocaMap.find(L->getOperand(0));
687 if (I != ValueToAllocaMap.end())
688 L->setOperand(0, I->second); // Rewrite load instruction...
Chris Lattner889f6202003-04-23 16:37:45 +0000689 } else if (StoreInst *S = dyn_cast<StoreInst>(II)) {
Chris Lattner45d67d62003-02-24 03:52:32 +0000690 std::map<Value*, AllocaInst*>::iterator
691 I = ValueToAllocaMap.find(S->getOperand(1));
692 if (I != ValueToAllocaMap.end())
693 S->setOperand(1, I->second); // Rewrite store instruction...
694 }
695 }
Chris Lattner45d67d62003-02-24 03:52:32 +0000696 }
697
Chris Lattneredda1af2003-12-10 15:56:24 +0000698 // Now that the body of the loop uses the allocas instead of the original
699 // memory locations, insert code to copy the alloca value back into the
700 // original memory location on all exits from the loop. Note that we only
701 // want to insert one copy of the code in each exit block, though the loop may
702 // exit to the same block more than once.
703 //
704 std::set<BasicBlock*> ProcessedBlocks;
705
Chris Lattner35eaa552004-04-18 22:15:13 +0000706 std::vector<BasicBlock*> ExitBlocks;
707 CurLoop->getExitBlocks(ExitBlocks);
Chris Lattneredda1af2003-12-10 15:56:24 +0000708 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i)
Chris Lattner48b4b852003-12-10 16:57:24 +0000709 if (ProcessedBlocks.insert(ExitBlocks[i]).second) {
Chris Lattnera3465782004-09-15 01:04:07 +0000710 // Copy all of the allocas into their memory locations.
Chris Lattneredda1af2003-12-10 15:56:24 +0000711 BasicBlock::iterator BI = ExitBlocks[i]->begin();
712 while (isa<PHINode>(*BI))
Chris Lattnera3465782004-09-15 01:04:07 +0000713 ++BI; // Skip over all of the phi nodes in the block.
Chris Lattneredda1af2003-12-10 15:56:24 +0000714 Instruction *InsertPos = BI;
Chris Lattnera3465782004-09-15 01:04:07 +0000715 unsigned PVN = 0;
Chris Lattneredda1af2003-12-10 15:56:24 +0000716 for (unsigned i = 0, e = PromotedValues.size(); i != e; ++i) {
Chris Lattnera3465782004-09-15 01:04:07 +0000717 // Load from the alloca.
Chris Lattneredda1af2003-12-10 15:56:24 +0000718 LoadInst *LI = new LoadInst(PromotedValues[i].first, "", InsertPos);
Chris Lattnera3465782004-09-15 01:04:07 +0000719
720 // If this is a pointer type, update alias info appropriately.
721 if (isa<PointerType>(LI->getType()))
722 CurAST->copyValue(PointerValueNumbers[PVN++], LI);
723
724 // Store into the memory we promoted.
Chris Lattneredda1af2003-12-10 15:56:24 +0000725 new StoreInst(LI, PromotedValues[i].second, InsertPos);
726 }
727 }
728
Chris Lattner45d67d62003-02-24 03:52:32 +0000729 // Now that we have done the deed, use the mem2reg functionality to promote
Chris Lattnera3465782004-09-15 01:04:07 +0000730 // all of the new allocas we just created into real SSA registers.
Chris Lattner45d67d62003-02-24 03:52:32 +0000731 //
732 std::vector<AllocaInst*> PromotedAllocas;
733 PromotedAllocas.reserve(PromotedValues.size());
734 for (unsigned i = 0, e = PromotedValues.size(); i != e; ++i)
735 PromotedAllocas.push_back(PromotedValues[i].first);
Chris Lattnera3465782004-09-15 01:04:07 +0000736 PromoteMemToReg(PromotedAllocas, *DT, *DF, AA->getTargetData(), CurAST);
Chris Lattner45d67d62003-02-24 03:52:32 +0000737}
738
Chris Lattnera3465782004-09-15 01:04:07 +0000739/// FindPromotableValuesInLoop - Check the current loop for stores to definite
Chris Lattner45d67d62003-02-24 03:52:32 +0000740/// pointers, which are not loaded and stored through may aliases. If these are
741/// found, create an alloca for the value, add it to the PromotedValues list,
Chris Lattnera3465782004-09-15 01:04:07 +0000742/// and keep track of the mapping from value to alloca.
Chris Lattner45d67d62003-02-24 03:52:32 +0000743///
Chris Lattnera3465782004-09-15 01:04:07 +0000744void LICM::FindPromotableValuesInLoop(
Chris Lattner45d67d62003-02-24 03:52:32 +0000745 std::vector<std::pair<AllocaInst*, Value*> > &PromotedValues,
746 std::map<Value*, AllocaInst*> &ValueToAllocaMap) {
747 Instruction *FnStart = CurLoop->getHeader()->getParent()->begin()->begin();
748
Chris Lattnera3465782004-09-15 01:04:07 +0000749 // Loop over all of the alias sets in the tracker object.
Chris Lattner0592bb72003-03-03 23:32:45 +0000750 for (AliasSetTracker::iterator I = CurAST->begin(), E = CurAST->end();
751 I != E; ++I) {
752 AliasSet &AS = *I;
753 // We can promote this alias set if it has a store, if it is a "Must" alias
Chris Lattnera3465782004-09-15 01:04:07 +0000754 // set, if the pointer is loop invariant, and if we are not eliminating any
Chris Lattner20cda262004-03-15 04:11:30 +0000755 // volatile loads or stores.
Chris Lattner0592bb72003-03-03 23:32:45 +0000756 if (!AS.isForwardingAliasSet() && AS.isMod() && AS.isMustAlias() &&
Chris Lattnerfc44a252004-04-18 22:46:08 +0000757 !AS.isVolatile() && CurLoop->isLoopInvariant(AS.begin()->first)) {
Chris Lattner0592bb72003-03-03 23:32:45 +0000758 assert(AS.begin() != AS.end() &&
759 "Must alias set should have at least one pointer element in it!");
760 Value *V = AS.begin()->first;
Chris Lattner45d67d62003-02-24 03:52:32 +0000761
Chris Lattner0592bb72003-03-03 23:32:45 +0000762 // Check that all of the pointers in the alias set have the same type. We
763 // cannot (yet) promote a memory location that is loaded and stored in
764 // different sizes.
765 bool PointerOk = true;
766 for (AliasSet::iterator I = AS.begin(), E = AS.end(); I != E; ++I)
767 if (V->getType() != I->first->getType()) {
768 PointerOk = false;
769 break;
Chris Lattner45d67d62003-02-24 03:52:32 +0000770 }
Chris Lattner0592bb72003-03-03 23:32:45 +0000771
772 if (PointerOk) {
773 const Type *Ty = cast<PointerType>(V->getType())->getElementType();
774 AllocaInst *AI = new AllocaInst(Ty, 0, V->getName()+".tmp", FnStart);
775 PromotedValues.push_back(std::make_pair(AI, V));
Chris Lattnera3465782004-09-15 01:04:07 +0000776
777 // Update the AST and alias analysis.
778 CurAST->copyValue(V, AI);
Chris Lattner0592bb72003-03-03 23:32:45 +0000779
780 for (AliasSet::iterator I = AS.begin(), E = AS.end(); I != E; ++I)
781 ValueToAllocaMap.insert(std::make_pair(I->first, AI));
782
783 DEBUG(std::cerr << "LICM: Promoting value: " << *V << "\n");
Chris Lattner45d67d62003-02-24 03:52:32 +0000784 }
785 }
786 }
Chris Lattnera51fa882002-08-22 21:39:55 +0000787}