blob: d9d5f0f75cb6433eb07028cb9b9b2e202f968e56 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- LICM.cpp - Loop Invariant Code Motion Pass ------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// 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
14// live in registers, thus hoisting and sinking "invariant" loads and stores.
15//
16// This pass uses alias analysis for two purposes:
17//
18// 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.
21// 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.
31//
32//===----------------------------------------------------------------------===//
33
34#define DEBUG_TYPE "licm"
35#include "llvm/Transforms/Scalar.h"
36#include "llvm/Constants.h"
37#include "llvm/DerivedTypes.h"
38#include "llvm/Instructions.h"
39#include "llvm/Target/TargetData.h"
40#include "llvm/Analysis/LoopInfo.h"
41#include "llvm/Analysis/LoopPass.h"
42#include "llvm/Analysis/AliasAnalysis.h"
43#include "llvm/Analysis/AliasSetTracker.h"
44#include "llvm/Analysis/Dominators.h"
Devang Patel05b69282007-07-30 20:19:59 +000045#include "llvm/Analysis/ScalarEvolution.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000046#include "llvm/Transforms/Utils/PromoteMemToReg.h"
47#include "llvm/Support/CFG.h"
48#include "llvm/Support/Compiler.h"
49#include "llvm/Support/CommandLine.h"
50#include "llvm/Support/Debug.h"
51#include "llvm/ADT/Statistic.h"
52#include <algorithm>
53using namespace llvm;
54
55STATISTIC(NumSunk , "Number of instructions sunk out of loop");
56STATISTIC(NumHoisted , "Number of instructions hoisted out of loop");
57STATISTIC(NumMovedLoads, "Number of load insts hoisted or sunk");
58STATISTIC(NumMovedCalls, "Number of call insts hoisted or sunk");
59STATISTIC(NumPromoted , "Number of memory locations promoted to registers");
60
Dan Gohman089efff2008-05-13 00:00:25 +000061static cl::opt<bool>
62DisablePromotion("disable-licm-promotion", cl::Hidden,
63 cl::desc("Disable memory promotion in LICM pass"));
Dan Gohmanf17a25c2007-07-18 16:29:46 +000064
Dan Gohman089efff2008-05-13 00:00:25 +000065namespace {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000066 struct VISIBILITY_HIDDEN LICM : public LoopPass {
67 static char ID; // Pass identification, replacement for typeid
68 LICM() : LoopPass((intptr_t)&ID) {}
69
70 virtual bool runOnLoop(Loop *L, LPPassManager &LPM);
71
72 /// This transformation requires natural loop information & requires that
73 /// loop preheaders be inserted into the CFG...
74 ///
75 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
76 AU.setPreservesCFG();
77 AU.addRequiredID(LoopSimplifyID);
78 AU.addRequired<LoopInfo>();
79 AU.addRequired<DominatorTree>();
80 AU.addRequired<DominanceFrontier>(); // For scalar promotion (mem2reg)
81 AU.addRequired<AliasAnalysis>();
Devang Patel05b69282007-07-30 20:19:59 +000082 AU.addPreserved<ScalarEvolution>();
83 AU.addPreserved<DominanceFrontier>();
Dan Gohmanf17a25c2007-07-18 16:29:46 +000084 }
85
86 bool doFinalization() {
Anton Korobeynikovb421ad42007-11-25 23:52:02 +000087 // Free the values stored in the map
88 for (std::map<Loop *, AliasSetTracker *>::iterator
89 I = LoopToAliasMap.begin(), E = LoopToAliasMap.end(); I != E; ++I)
90 delete I->second;
91
Dan Gohmanf17a25c2007-07-18 16:29:46 +000092 LoopToAliasMap.clear();
93 return false;
94 }
95
96 private:
97 // Various analyses that we use...
98 AliasAnalysis *AA; // Current AliasAnalysis information
99 LoopInfo *LI; // Current LoopInfo
100 DominatorTree *DT; // Dominator Tree for the current Loop...
101 DominanceFrontier *DF; // Current Dominance Frontier
102
103 // State that is updated as we process loops
104 bool Changed; // Set to true when we change anything.
105 BasicBlock *Preheader; // The preheader block of the current loop...
106 Loop *CurLoop; // The current loop we are working on...
107 AliasSetTracker *CurAST; // AliasSet information for the current loop...
108 std::map<Loop *, AliasSetTracker *> LoopToAliasMap;
109
Devang Patel09e66c02007-07-31 08:01:41 +0000110 /// cloneBasicBlockAnalysis - Simple Analysis hook. Clone alias set info.
111 void cloneBasicBlockAnalysis(BasicBlock *From, BasicBlock *To, Loop *L);
112
113 /// deleteAnalysisValue - Simple Analysis hook. Delete value V from alias
114 /// set.
115 void deleteAnalysisValue(Value *V, Loop *L);
116
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000117 /// SinkRegion - Walk the specified region of the CFG (defined by all blocks
118 /// dominated by the specified block, and that are in the current loop) in
119 /// reverse depth first order w.r.t the DominatorTree. This allows us to
120 /// visit uses before definitions, allowing us to sink a loop body in one
121 /// pass without iteration.
122 ///
123 void SinkRegion(DomTreeNode *N);
124
125 /// HoistRegion - Walk the specified region of the CFG (defined by all
126 /// blocks dominated by the specified block, and that are in the current
127 /// loop) in depth first order w.r.t the DominatorTree. This allows us to
128 /// visit definitions before uses, allowing us to hoist a loop body in one
129 /// pass without iteration.
130 ///
131 void HoistRegion(DomTreeNode *N);
132
133 /// inSubLoop - Little predicate that returns true if the specified basic
134 /// block is in a subloop of the current one, not the current one itself.
135 ///
136 bool inSubLoop(BasicBlock *BB) {
137 assert(CurLoop->contains(BB) && "Only valid if BB is IN the loop");
138 for (Loop::iterator I = CurLoop->begin(), E = CurLoop->end(); I != E; ++I)
139 if ((*I)->contains(BB))
140 return true; // A subloop actually contains this block!
141 return false;
142 }
143
144 /// isExitBlockDominatedByBlockInLoop - This method checks to see if the
145 /// specified exit block of the loop is dominated by the specified block
146 /// that is in the body of the loop. We use these constraints to
147 /// dramatically limit the amount of the dominator tree that needs to be
148 /// searched.
149 bool isExitBlockDominatedByBlockInLoop(BasicBlock *ExitBlock,
150 BasicBlock *BlockInLoop) const {
151 // If the block in the loop is the loop header, it must be dominated!
152 BasicBlock *LoopHeader = CurLoop->getHeader();
153 if (BlockInLoop == LoopHeader)
154 return true;
155
156 DomTreeNode *BlockInLoopNode = DT->getNode(BlockInLoop);
157 DomTreeNode *IDom = DT->getNode(ExitBlock);
158
159 // Because the exit block is not in the loop, we know we have to get _at
160 // least_ its immediate dominator.
161 do {
162 // Get next Immediate Dominator.
163 IDom = IDom->getIDom();
164
165 // If we have got to the header of the loop, then the instructions block
166 // did not dominate the exit node, so we can't hoist it.
167 if (IDom->getBlock() == LoopHeader)
168 return false;
169
170 } while (IDom != BlockInLoopNode);
171
172 return true;
173 }
174
175 /// sink - When an instruction is found to only be used outside of the loop,
176 /// this function moves it to the exit blocks and patches up SSA form as
177 /// needed.
178 ///
179 void sink(Instruction &I);
180
181 /// hoist - When an instruction is found to only use loop invariant operands
182 /// that is safe to hoist, this instruction is called to do the dirty work.
183 ///
184 void hoist(Instruction &I);
185
186 /// isSafeToExecuteUnconditionally - Only sink or hoist an instruction if it
187 /// is not a trapping instruction or if it is a trapping instruction and is
188 /// guaranteed to execute.
189 ///
190 bool isSafeToExecuteUnconditionally(Instruction &I);
191
192 /// pointerInvalidatedByLoop - Return true if the body of this loop may
193 /// store into the memory location pointed to by V.
194 ///
195 bool pointerInvalidatedByLoop(Value *V, unsigned Size) {
196 // Check to see if any of the basic blocks in CurLoop invalidate *V.
197 return CurAST->getAliasSetForPointer(V, Size).isMod();
198 }
199
200 bool canSinkOrHoistInst(Instruction &I);
201 bool isLoopInvariantInst(Instruction &I);
202 bool isNotUsedInLoop(Instruction &I);
203
204 /// PromoteValuesInLoop - Look at the stores in the loop and promote as many
205 /// to scalars as we can.
206 ///
207 void PromoteValuesInLoop();
208
209 /// FindPromotableValuesInLoop - Check the current loop for stores to
210 /// definite pointers, which are not loaded and stored through may aliases.
211 /// If these are found, create an alloca for the value, add it to the
212 /// PromotedValues list, and keep track of the mapping from value to
213 /// alloca...
214 ///
215 void FindPromotableValuesInLoop(
216 std::vector<std::pair<AllocaInst*, Value*> > &PromotedValues,
217 std::map<Value*, AllocaInst*> &Val2AlMap);
218 };
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000219}
220
Dan Gohman089efff2008-05-13 00:00:25 +0000221char LICM::ID = 0;
222static RegisterPass<LICM> X("licm", "Loop Invariant Code Motion");
223
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000224LoopPass *llvm::createLICMPass() { return new LICM(); }
225
Devang Patelb6858ae2007-07-31 16:52:25 +0000226/// Hoist expressions out of the specified loop. Note, alias info for inner
227/// loop is not preserved so it is not a good idea to run LICM multiple
228/// times on one loop.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000229///
230bool LICM::runOnLoop(Loop *L, LPPassManager &LPM) {
231 Changed = false;
232
233 // Get our Loop and Alias Analysis information...
234 LI = &getAnalysis<LoopInfo>();
235 AA = &getAnalysis<AliasAnalysis>();
236 DF = &getAnalysis<DominanceFrontier>();
237 DT = &getAnalysis<DominatorTree>();
238
239 CurAST = new AliasSetTracker(*AA);
240 // Collect Alias info from subloops
241 for (Loop::iterator LoopItr = L->begin(), LoopItrE = L->end();
242 LoopItr != LoopItrE; ++LoopItr) {
243 Loop *InnerL = *LoopItr;
244 AliasSetTracker *InnerAST = LoopToAliasMap[InnerL];
245 assert (InnerAST && "Where is my AST?");
246
247 // What if InnerLoop was modified by other passes ?
248 CurAST->add(*InnerAST);
249 }
250
251 CurLoop = L;
252
253 // Get the preheader block to move instructions into...
254 Preheader = L->getLoopPreheader();
255 assert(Preheader&&"Preheader insertion pass guarantees we have a preheader!");
256
257 // Loop over the body of this loop, looking for calls, invokes, and stores.
258 // Because subloops have already been incorporated into AST, we skip blocks in
259 // subloops.
260 //
261 for (std::vector<BasicBlock*>::const_iterator I = L->getBlocks().begin(),
262 E = L->getBlocks().end(); I != E; ++I)
263 if (LI->getLoopFor(*I) == L) // Ignore blocks in subloops...
264 CurAST->add(**I); // Incorporate the specified basic block
265
266 // We want to visit all of the instructions in this loop... that are not parts
267 // of our subloops (they have already had their invariants hoisted out of
268 // their loop, into this loop, so there is no need to process the BODIES of
269 // the subloops).
270 //
271 // Traverse the body of the loop in depth first order on the dominator tree so
272 // that we are guaranteed to see definitions before we see uses. This allows
Nick Lewyckyd97cbf12007-08-18 15:08:56 +0000273 // us to sink instructions in one pass, without iteration. After sinking
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000274 // instructions, we perform another pass to hoist them out of the loop.
275 //
276 SinkRegion(DT->getNode(L->getHeader()));
277 HoistRegion(DT->getNode(L->getHeader()));
278
279 // Now that all loop invariants have been removed from the loop, promote any
280 // memory references to scalars that we can...
281 if (!DisablePromotion)
282 PromoteValuesInLoop();
283
284 // Clear out loops state information for the next iteration
285 CurLoop = 0;
286 Preheader = 0;
287
288 LoopToAliasMap[L] = CurAST;
289 return Changed;
290}
291
292/// SinkRegion - Walk the specified region of the CFG (defined by all blocks
293/// dominated by the specified block, and that are in the current loop) in
294/// reverse depth first order w.r.t the DominatorTree. This allows us to visit
295/// uses before definitions, allowing us to sink a loop body in one pass without
296/// iteration.
297///
298void LICM::SinkRegion(DomTreeNode *N) {
299 assert(N != 0 && "Null dominator tree node?");
300 BasicBlock *BB = N->getBlock();
301
302 // If this subregion is not in the top level loop at all, exit.
303 if (!CurLoop->contains(BB)) return;
304
305 // We are processing blocks in reverse dfo, so process children first...
306 const std::vector<DomTreeNode*> &Children = N->getChildren();
307 for (unsigned i = 0, e = Children.size(); i != e; ++i)
308 SinkRegion(Children[i]);
309
310 // Only need to process the contents of this block if it is not part of a
311 // subloop (which would already have been processed).
312 if (inSubLoop(BB)) return;
313
314 for (BasicBlock::iterator II = BB->end(); II != BB->begin(); ) {
315 Instruction &I = *--II;
316
317 // Check to see if we can sink this instruction to the exit blocks
318 // of the loop. We can do this if the all users of the instruction are
319 // outside of the loop. In this case, it doesn't even matter if the
320 // operands of the instruction are loop invariant.
321 //
322 if (isNotUsedInLoop(I) && canSinkOrHoistInst(I)) {
323 ++II;
324 sink(I);
325 }
326 }
327}
328
329
330/// HoistRegion - Walk the specified region of the CFG (defined by all blocks
331/// dominated by the specified block, and that are in the current loop) in depth
332/// first order w.r.t the DominatorTree. This allows us to visit definitions
333/// before uses, allowing us to hoist a loop body in one pass without iteration.
334///
335void LICM::HoistRegion(DomTreeNode *N) {
336 assert(N != 0 && "Null dominator tree node?");
337 BasicBlock *BB = N->getBlock();
338
339 // If this subregion is not in the top level loop at all, exit.
340 if (!CurLoop->contains(BB)) return;
341
342 // Only need to process the contents of this block if it is not part of a
343 // subloop (which would already have been processed).
344 if (!inSubLoop(BB))
345 for (BasicBlock::iterator II = BB->begin(), E = BB->end(); II != E; ) {
346 Instruction &I = *II++;
347
348 // Try hoisting the instruction out to the preheader. We can only do this
349 // if all of the operands of the instruction are loop invariant and if it
350 // is safe to hoist the instruction.
351 //
352 if (isLoopInvariantInst(I) && canSinkOrHoistInst(I) &&
353 isSafeToExecuteUnconditionally(I))
354 hoist(I);
355 }
356
357 const std::vector<DomTreeNode*> &Children = N->getChildren();
358 for (unsigned i = 0, e = Children.size(); i != e; ++i)
359 HoistRegion(Children[i]);
360}
361
362/// canSinkOrHoistInst - Return true if the hoister and sinker can handle this
363/// instruction.
364///
365bool LICM::canSinkOrHoistInst(Instruction &I) {
366 // Loads have extra constraints we have to verify before we can hoist them.
367 if (LoadInst *LI = dyn_cast<LoadInst>(&I)) {
368 if (LI->isVolatile())
369 return false; // Don't hoist volatile loads!
370
371 // Don't hoist loads which have may-aliased stores in loop.
372 unsigned Size = 0;
373 if (LI->getType()->isSized())
Duncan Sandsf99fdc62007-11-01 20:53:16 +0000374 Size = AA->getTargetData().getTypeStoreSize(LI->getType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000375 return !pointerInvalidatedByLoop(LI->getOperand(0), Size);
376 } else if (CallInst *CI = dyn_cast<CallInst>(&I)) {
377 // Handle obvious cases efficiently.
Duncan Sands00b24b52007-12-01 07:51:45 +0000378 AliasAnalysis::ModRefBehavior Behavior = AA->getModRefBehavior(CI);
379 if (Behavior == AliasAnalysis::DoesNotAccessMemory)
380 return true;
381 else if (Behavior == AliasAnalysis::OnlyReadsMemory) {
382 // If this call only reads from memory and there are no writes to memory
383 // in the loop, we can hoist or sink the call as appropriate.
384 bool FoundMod = false;
385 for (AliasSetTracker::iterator I = CurAST->begin(), E = CurAST->end();
386 I != E; ++I) {
387 AliasSet &AS = *I;
388 if (!AS.isForwardingAliasSet() && AS.isMod()) {
389 FoundMod = true;
390 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000391 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000392 }
Duncan Sands00b24b52007-12-01 07:51:45 +0000393 if (!FoundMod) return true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000394 }
395
396 // FIXME: This should use mod/ref information to see if we can hoist or sink
397 // the call.
398
399 return false;
400 }
401
402 // Otherwise these instructions are hoistable/sinkable
403 return isa<BinaryOperator>(I) || isa<CastInst>(I) ||
404 isa<SelectInst>(I) || isa<GetElementPtrInst>(I) || isa<CmpInst>(I) ||
405 isa<InsertElementInst>(I) || isa<ExtractElementInst>(I) ||
406 isa<ShuffleVectorInst>(I);
407}
408
409/// isNotUsedInLoop - Return true if the only users of this instruction are
410/// outside of the loop. If this is true, we can sink the instruction to the
411/// exit blocks of the loop.
412///
413bool LICM::isNotUsedInLoop(Instruction &I) {
414 for (Value::use_iterator UI = I.use_begin(), E = I.use_end(); UI != E; ++UI) {
415 Instruction *User = cast<Instruction>(*UI);
416 if (PHINode *PN = dyn_cast<PHINode>(User)) {
417 // PHI node uses occur in predecessor blocks!
418 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
419 if (PN->getIncomingValue(i) == &I)
420 if (CurLoop->contains(PN->getIncomingBlock(i)))
421 return false;
422 } else if (CurLoop->contains(User->getParent())) {
423 return false;
424 }
425 }
426 return true;
427}
428
429
430/// isLoopInvariantInst - Return true if all operands of this instruction are
431/// loop invariant. We also filter out non-hoistable instructions here just for
432/// efficiency.
433///
434bool LICM::isLoopInvariantInst(Instruction &I) {
435 // The instruction is loop invariant if all of its operands are loop-invariant
436 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i)
437 if (!CurLoop->isLoopInvariant(I.getOperand(i)))
438 return false;
439
440 // If we got this far, the instruction is loop invariant!
441 return true;
442}
443
444/// sink - When an instruction is found to only be used outside of the loop,
445/// this function moves it to the exit blocks and patches up SSA form as needed.
446/// This method is guaranteed to remove the original instruction from its
447/// position, and may either delete it or move it to outside of the loop.
448///
449void LICM::sink(Instruction &I) {
450 DOUT << "LICM sinking instruction: " << I;
451
Devang Patel02451fa2007-08-21 00:31:24 +0000452 SmallVector<BasicBlock*, 8> ExitBlocks;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000453 CurLoop->getExitBlocks(ExitBlocks);
454
455 if (isa<LoadInst>(I)) ++NumMovedLoads;
456 else if (isa<CallInst>(I)) ++NumMovedCalls;
457 ++NumSunk;
458 Changed = true;
459
460 // The case where there is only a single exit node of this loop is common
461 // enough that we handle it as a special (more efficient) case. It is more
462 // efficient to handle because there are no PHI nodes that need to be placed.
463 if (ExitBlocks.size() == 1) {
464 if (!isExitBlockDominatedByBlockInLoop(ExitBlocks[0], I.getParent())) {
465 // Instruction is not used, just delete it.
466 CurAST->deleteValue(&I);
467 if (!I.use_empty()) // If I has users in unreachable blocks, eliminate.
468 I.replaceAllUsesWith(UndefValue::get(I.getType()));
469 I.eraseFromParent();
470 } else {
471 // Move the instruction to the start of the exit block, after any PHI
472 // nodes in it.
473 I.removeFromParent();
474
Dan Gohman514277c2008-05-23 21:05:58 +0000475 BasicBlock::iterator InsertPt = ExitBlocks[0]->getFirstNonPHI();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000476 ExitBlocks[0]->getInstList().insert(InsertPt, &I);
477 }
Dan Gohman301f4052008-01-29 13:02:09 +0000478 } else if (ExitBlocks.empty()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000479 // The instruction is actually dead if there ARE NO exit blocks.
480 CurAST->deleteValue(&I);
481 if (!I.use_empty()) // If I has users in unreachable blocks, eliminate.
482 I.replaceAllUsesWith(UndefValue::get(I.getType()));
483 I.eraseFromParent();
484 } else {
485 // Otherwise, if we have multiple exits, use the PromoteMem2Reg function to
486 // do all of the hard work of inserting PHI nodes as necessary. We convert
487 // the value into a stack object to get it to do this.
488
489 // Firstly, we create a stack object to hold the value...
490 AllocaInst *AI = 0;
491
492 if (I.getType() != Type::VoidTy) {
493 AI = new AllocaInst(I.getType(), 0, I.getName(),
494 I.getParent()->getParent()->getEntryBlock().begin());
495 CurAST->add(AI);
496 }
497
498 // Secondly, insert load instructions for each use of the instruction
499 // outside of the loop.
500 while (!I.use_empty()) {
501 Instruction *U = cast<Instruction>(I.use_back());
502
503 // If the user is a PHI Node, we actually have to insert load instructions
504 // in all predecessor blocks, not in the PHI block itself!
505 if (PHINode *UPN = dyn_cast<PHINode>(U)) {
506 // Only insert into each predecessor once, so that we don't have
507 // different incoming values from the same block!
508 std::map<BasicBlock*, Value*> InsertedBlocks;
509 for (unsigned i = 0, e = UPN->getNumIncomingValues(); i != e; ++i)
510 if (UPN->getIncomingValue(i) == &I) {
511 BasicBlock *Pred = UPN->getIncomingBlock(i);
512 Value *&PredVal = InsertedBlocks[Pred];
513 if (!PredVal) {
514 // Insert a new load instruction right before the terminator in
515 // the predecessor block.
516 PredVal = new LoadInst(AI, "", Pred->getTerminator());
517 CurAST->add(cast<LoadInst>(PredVal));
518 }
519
520 UPN->setIncomingValue(i, PredVal);
521 }
522
523 } else {
524 LoadInst *L = new LoadInst(AI, "", U);
525 U->replaceUsesOfWith(&I, L);
526 CurAST->add(L);
527 }
528 }
529
530 // Thirdly, insert a copy of the instruction in each exit block of the loop
531 // that is dominated by the instruction, storing the result into the memory
532 // location. Be careful not to insert the instruction into any particular
533 // basic block more than once.
534 std::set<BasicBlock*> InsertedBlocks;
535 BasicBlock *InstOrigBB = I.getParent();
536
537 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i) {
538 BasicBlock *ExitBlock = ExitBlocks[i];
539
540 if (isExitBlockDominatedByBlockInLoop(ExitBlock, InstOrigBB)) {
541 // If we haven't already processed this exit block, do so now.
542 if (InsertedBlocks.insert(ExitBlock).second) {
543 // Insert the code after the last PHI node...
Dan Gohman514277c2008-05-23 21:05:58 +0000544 BasicBlock::iterator InsertPt = ExitBlock->getFirstNonPHI();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000545
546 // If this is the first exit block processed, just move the original
547 // instruction, otherwise clone the original instruction and insert
548 // the copy.
549 Instruction *New;
550 if (InsertedBlocks.size() == 1) {
551 I.removeFromParent();
552 ExitBlock->getInstList().insert(InsertPt, &I);
553 New = &I;
554 } else {
555 New = I.clone();
556 CurAST->copyValue(&I, New);
557 if (!I.getName().empty())
558 New->setName(I.getName()+".le");
559 ExitBlock->getInstList().insert(InsertPt, New);
560 }
561
562 // Now that we have inserted the instruction, store it into the alloca
563 if (AI) new StoreInst(New, AI, InsertPt);
564 }
565 }
566 }
567
568 // If the instruction doesn't dominate any exit blocks, it must be dead.
569 if (InsertedBlocks.empty()) {
570 CurAST->deleteValue(&I);
571 I.eraseFromParent();
572 }
573
574 // Finally, promote the fine value to SSA form.
575 if (AI) {
576 std::vector<AllocaInst*> Allocas;
577 Allocas.push_back(AI);
578 PromoteMemToReg(Allocas, *DT, *DF, CurAST);
579 }
580 }
581}
582
583/// hoist - When an instruction is found to only use loop invariant operands
584/// that is safe to hoist, this instruction is called to do the dirty work.
585///
586void LICM::hoist(Instruction &I) {
587 DOUT << "LICM hoisting to " << Preheader->getName() << ": " << I;
588
589 // Remove the instruction from its current basic block... but don't delete the
590 // instruction.
591 I.removeFromParent();
592
593 // Insert the new node in Preheader, before the terminator.
594 Preheader->getInstList().insert(Preheader->getTerminator(), &I);
595
596 if (isa<LoadInst>(I)) ++NumMovedLoads;
597 else if (isa<CallInst>(I)) ++NumMovedCalls;
598 ++NumHoisted;
599 Changed = true;
600}
601
602/// isSafeToExecuteUnconditionally - Only sink or hoist an instruction if it is
603/// not a trapping instruction or if it is a trapping instruction and is
604/// guaranteed to execute.
605///
606bool LICM::isSafeToExecuteUnconditionally(Instruction &Inst) {
607 // If it is not a trapping instruction, it is always safe to hoist.
608 if (!Inst.isTrapping()) return true;
609
610 // Otherwise we have to check to make sure that the instruction dominates all
611 // of the exit blocks. If it doesn't, then there is a path out of the loop
612 // which does not execute this instruction, so we can't hoist it.
613
614 // If the instruction is in the header block for the loop (which is very
615 // common), it is always guaranteed to dominate the exit blocks. Since this
616 // is a common case, and can save some work, check it now.
617 if (Inst.getParent() == CurLoop->getHeader())
618 return true;
619
620 // It's always safe to load from a global or alloca.
621 if (isa<LoadInst>(Inst))
622 if (isa<AllocationInst>(Inst.getOperand(0)) ||
623 isa<GlobalVariable>(Inst.getOperand(0)))
624 return true;
625
626 // Get the exit blocks for the current loop.
Devang Patel02451fa2007-08-21 00:31:24 +0000627 SmallVector<BasicBlock*, 8> ExitBlocks;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000628 CurLoop->getExitBlocks(ExitBlocks);
629
630 // For each exit block, get the DT node and walk up the DT until the
631 // instruction's basic block is found or we exit the loop.
632 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i)
633 if (!isExitBlockDominatedByBlockInLoop(ExitBlocks[i], Inst.getParent()))
634 return false;
635
636 return true;
637}
638
639
640/// PromoteValuesInLoop - Try to promote memory values to scalars by sinking
641/// stores out of the loop and moving loads to before the loop. We do this by
642/// looping over the stores in the loop, looking for stores to Must pointers
643/// which are loop invariant. We promote these memory locations to use allocas
644/// instead. These allocas can easily be raised to register values by the
645/// PromoteMem2Reg functionality.
646///
647void LICM::PromoteValuesInLoop() {
648 // PromotedValues - List of values that are promoted out of the loop. Each
649 // value has an alloca instruction for it, and a canonical version of the
650 // pointer.
651 std::vector<std::pair<AllocaInst*, Value*> > PromotedValues;
652 std::map<Value*, AllocaInst*> ValueToAllocaMap; // Map of ptr to alloca
653
654 FindPromotableValuesInLoop(PromotedValues, ValueToAllocaMap);
655 if (ValueToAllocaMap.empty()) return; // If there are values to promote.
656
657 Changed = true;
658 NumPromoted += PromotedValues.size();
659
660 std::vector<Value*> PointerValueNumbers;
661
662 // Emit a copy from the value into the alloca'd value in the loop preheader
663 TerminatorInst *LoopPredInst = Preheader->getTerminator();
664 for (unsigned i = 0, e = PromotedValues.size(); i != e; ++i) {
665 Value *Ptr = PromotedValues[i].second;
666
667 // If we are promoting a pointer value, update alias information for the
668 // inserted load.
669 Value *LoadValue = 0;
670 if (isa<PointerType>(cast<PointerType>(Ptr->getType())->getElementType())) {
671 // Locate a load or store through the pointer, and assign the same value
672 // to LI as we are loading or storing. Since we know that the value is
673 // stored in this loop, this will always succeed.
674 for (Value::use_iterator UI = Ptr->use_begin(), E = Ptr->use_end();
675 UI != E; ++UI)
676 if (LoadInst *LI = dyn_cast<LoadInst>(*UI)) {
677 LoadValue = LI;
678 break;
679 } else if (StoreInst *SI = dyn_cast<StoreInst>(*UI)) {
680 if (SI->getOperand(1) == Ptr) {
681 LoadValue = SI->getOperand(0);
682 break;
683 }
684 }
685 assert(LoadValue && "No store through the pointer found!");
686 PointerValueNumbers.push_back(LoadValue); // Remember this for later.
687 }
688
689 // Load from the memory we are promoting.
690 LoadInst *LI = new LoadInst(Ptr, Ptr->getName()+".promoted", LoopPredInst);
691
692 if (LoadValue) CurAST->copyValue(LoadValue, LI);
693
694 // Store into the temporary alloca.
695 new StoreInst(LI, PromotedValues[i].first, LoopPredInst);
696 }
697
698 // Scan the basic blocks in the loop, replacing uses of our pointers with
699 // uses of the allocas in question.
700 //
701 const std::vector<BasicBlock*> &LoopBBs = CurLoop->getBlocks();
702 for (std::vector<BasicBlock*>::const_iterator I = LoopBBs.begin(),
703 E = LoopBBs.end(); I != E; ++I) {
704 // Rewrite all loads and stores in the block of the pointer...
705 for (BasicBlock::iterator II = (*I)->begin(), E = (*I)->end();
706 II != E; ++II) {
707 if (LoadInst *L = dyn_cast<LoadInst>(II)) {
708 std::map<Value*, AllocaInst*>::iterator
709 I = ValueToAllocaMap.find(L->getOperand(0));
710 if (I != ValueToAllocaMap.end())
711 L->setOperand(0, I->second); // Rewrite load instruction...
712 } else if (StoreInst *S = dyn_cast<StoreInst>(II)) {
713 std::map<Value*, AllocaInst*>::iterator
714 I = ValueToAllocaMap.find(S->getOperand(1));
715 if (I != ValueToAllocaMap.end())
716 S->setOperand(1, I->second); // Rewrite store instruction...
717 }
718 }
719 }
720
721 // Now that the body of the loop uses the allocas instead of the original
722 // memory locations, insert code to copy the alloca value back into the
723 // original memory location on all exits from the loop. Note that we only
724 // want to insert one copy of the code in each exit block, though the loop may
725 // exit to the same block more than once.
726 //
Chris Lattnera5f1b672008-05-22 03:22:42 +0000727 SmallPtrSet<BasicBlock*, 16> ProcessedBlocks;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000728
Devang Patel02451fa2007-08-21 00:31:24 +0000729 SmallVector<BasicBlock*, 8> ExitBlocks;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000730 CurLoop->getExitBlocks(ExitBlocks);
Chris Lattnera5f1b672008-05-22 03:22:42 +0000731 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i) {
732 if (!ProcessedBlocks.insert(ExitBlocks[i]))
733 continue;
734
735 // Copy all of the allocas into their memory locations.
Dan Gohman514277c2008-05-23 21:05:58 +0000736 BasicBlock::iterator BI = ExitBlocks[i]->getFirstNonPHI();
Chris Lattnera5f1b672008-05-22 03:22:42 +0000737 Instruction *InsertPos = BI;
738 unsigned PVN = 0;
739 for (unsigned i = 0, e = PromotedValues.size(); i != e; ++i) {
740 // Load from the alloca.
741 LoadInst *LI = new LoadInst(PromotedValues[i].first, "", InsertPos);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000742
Chris Lattnera5f1b672008-05-22 03:22:42 +0000743 // If this is a pointer type, update alias info appropriately.
744 if (isa<PointerType>(LI->getType()))
745 CurAST->copyValue(PointerValueNumbers[PVN++], LI);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000746
Chris Lattnera5f1b672008-05-22 03:22:42 +0000747 // Store into the memory we promoted.
748 new StoreInst(LI, PromotedValues[i].second, InsertPos);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000749 }
Chris Lattnera5f1b672008-05-22 03:22:42 +0000750 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000751
752 // Now that we have done the deed, use the mem2reg functionality to promote
753 // all of the new allocas we just created into real SSA registers.
754 //
755 std::vector<AllocaInst*> PromotedAllocas;
756 PromotedAllocas.reserve(PromotedValues.size());
757 for (unsigned i = 0, e = PromotedValues.size(); i != e; ++i)
758 PromotedAllocas.push_back(PromotedValues[i].first);
759 PromoteMemToReg(PromotedAllocas, *DT, *DF, CurAST);
760}
761
762/// FindPromotableValuesInLoop - Check the current loop for stores to definite
Devang Patelf8209df2007-09-19 20:18:51 +0000763/// pointers, which are not loaded and stored through may aliases and are safe
764/// for promotion. If these are found, create an alloca for the value, add it
765/// to the PromotedValues list, and keep track of the mapping from value to
766/// alloca.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000767void LICM::FindPromotableValuesInLoop(
768 std::vector<std::pair<AllocaInst*, Value*> > &PromotedValues,
769 std::map<Value*, AllocaInst*> &ValueToAllocaMap) {
770 Instruction *FnStart = CurLoop->getHeader()->getParent()->begin()->begin();
771
Chris Lattnera5f1b672008-05-22 03:22:42 +0000772 SmallVector<BasicBlock*, 4> ExitingBlocks;
773 CurLoop->getExitingBlocks(ExitingBlocks);
Devang Patelf8209df2007-09-19 20:18:51 +0000774
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000775 // Loop over all of the alias sets in the tracker object.
776 for (AliasSetTracker::iterator I = CurAST->begin(), E = CurAST->end();
777 I != E; ++I) {
778 AliasSet &AS = *I;
779 // We can promote this alias set if it has a store, if it is a "Must" alias
780 // set, if the pointer is loop invariant, and if we are not eliminating any
781 // volatile loads or stores.
Chris Lattner3e9bf262008-05-22 00:53:38 +0000782 if (AS.isForwardingAliasSet() || !AS.isMod() || !AS.isMustAlias() ||
783 AS.isVolatile() || !CurLoop->isLoopInvariant(AS.begin()->first))
784 continue;
785
786 assert(!AS.empty() &&
787 "Must alias set should have at least one pointer element in it!");
788 Value *V = AS.begin()->first;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000789
Chris Lattner3e9bf262008-05-22 00:53:38 +0000790 // Check that all of the pointers in the alias set have the same type. We
791 // cannot (yet) promote a memory location that is loaded and stored in
792 // different sizes.
793 {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000794 bool PointerOk = true;
795 for (AliasSet::iterator I = AS.begin(), E = AS.end(); I != E; ++I)
796 if (V->getType() != I->first->getType()) {
797 PointerOk = false;
798 break;
799 }
Chris Lattner3e9bf262008-05-22 00:53:38 +0000800 if (!PointerOk)
801 continue;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000802 }
Chris Lattner3e9bf262008-05-22 00:53:38 +0000803
Chris Lattnera5f1b672008-05-22 03:22:42 +0000804 // It isn't safe to promote a load/store from the loop if the load/store is
805 // conditional. For example, turning:
806 //
807 // for () { if (c) *P += 1; }
808 //
809 // into:
810 //
811 // tmp = *P; for () { if (c) tmp +=1; } *P = tmp;
812 //
813 // is not safe, because *P may only be valid to access if 'c' is true.
814 //
815 // It is safe to promote P if all uses are direct load/stores and if at
816 // least one is guaranteed to be executed.
817 bool GuaranteedToExecute = false;
818 bool InvalidInst = false;
819 for (Value::use_iterator UI = V->use_begin(), UE = V->use_end();
820 UI != UE; ++UI) {
821 // Ignore instructions not in this loop.
Chris Lattner3e9bf262008-05-22 00:53:38 +0000822 Instruction *Use = dyn_cast<Instruction>(*UI);
823 if (!Use || !CurLoop->contains(Use->getParent()))
824 continue;
Chris Lattner3e9bf262008-05-22 00:53:38 +0000825
Chris Lattnera5f1b672008-05-22 03:22:42 +0000826 if (!isa<LoadInst>(Use) && !isa<StoreInst>(Use)) {
827 InvalidInst = true;
Chris Lattner3e9bf262008-05-22 00:53:38 +0000828 break;
Chris Lattnera5f1b672008-05-22 03:22:42 +0000829 }
830
831 if (!GuaranteedToExecute)
832 GuaranteedToExecute = isSafeToExecuteUnconditionally(*Use);
Chris Lattner3e9bf262008-05-22 00:53:38 +0000833 }
834
Chris Lattnera5f1b672008-05-22 03:22:42 +0000835 // If there is an non-load/store instruction in the loop, we can't promote
836 // it. If there isn't a guaranteed-to-execute instruction, we can't
837 // promote.
838 if (InvalidInst || !GuaranteedToExecute)
Chris Lattner3e9bf262008-05-22 00:53:38 +0000839 continue;
840
841 const Type *Ty = cast<PointerType>(V->getType())->getElementType();
842 AllocaInst *AI = new AllocaInst(Ty, 0, V->getName()+".tmp", FnStart);
843 PromotedValues.push_back(std::make_pair(AI, V));
844
845 // Update the AST and alias analysis.
846 CurAST->copyValue(V, AI);
847
848 for (AliasSet::iterator I = AS.begin(), E = AS.end(); I != E; ++I)
849 ValueToAllocaMap.insert(std::make_pair(I->first, AI));
850
851 DOUT << "LICM: Promoting value: " << *V << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000852 }
853}
Devang Patel09e66c02007-07-31 08:01:41 +0000854
855/// cloneBasicBlockAnalysis - Simple Analysis hook. Clone alias set info.
856void LICM::cloneBasicBlockAnalysis(BasicBlock *From, BasicBlock *To, Loop *L) {
857 AliasSetTracker *AST = LoopToAliasMap[L];
858 if (!AST)
859 return;
860
861 AST->copyValue(From, To);
862}
863
864/// deleteAnalysisValue - Simple Analysis hook. Delete value V from alias
865/// set.
866void LICM::deleteAnalysisValue(Value *V, Loop *L) {
867 AliasSetTracker *AST = LoopToAliasMap[L];
868 if (!AST)
869 return;
870
871 AST->deleteValue(V);
872}