blob: 41d9e4c260d1598ab9861362f4dd7f5297d9542b [file] [log] [blame]
Chris Lattnere0e734e2002-05-10 22:44:58 +00001//===-- LICM.cpp - Loop Invariant Code Motion Pass ------------------------===//
Misha Brukmanfd939082005-04-21 23:48:37 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanfd939082005-04-21 23:48:37 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattnere0e734e2002-05-10 22:44:58 +00009//
Chris Lattner92094b42003-12-09 17:18:00 +000010// This pass performs loop invariant code motion, attempting to remove as much
11// code from the body of a loop as possible. It does this by either hoisting
12// code into the preheader block, or by sinking code to the exit blocks if it is
13// safe. This pass also promotes must-aliased memory locations in the loop to
Chris Lattnere4365b22003-12-19 07:22:45 +000014// live in registers, thus hoisting and sinking "invariant" loads and stores.
Chris Lattner92094b42003-12-09 17:18:00 +000015//
16// This pass uses alias analysis for two purposes:
Chris Lattner2e6e7412003-02-24 03:52:32 +000017//
Chris Lattner2741c972004-05-23 21:20:19 +000018// 1. Moving loop invariant loads and calls out of loops. If we can determine
19// that a load or call inside of a loop never aliases anything stored to,
20// we can hoist it or sink it like any other instruction.
Chris Lattner2e6e7412003-02-24 03:52:32 +000021// 2. Scalar Promotion of Memory - If there is a store instruction inside of
22// the loop, we try to move the store to happen AFTER the loop instead of
23// inside of the loop. This can only happen if a few conditions are true:
24// A. The pointer stored through is loop invariant
25// B. There are no stores or loads in the loop which _may_ alias the
26// pointer. There are no calls in the loop which mod/ref the pointer.
27// If these conditions are true, we can promote the loads and stores in the
28// loop of the pointer to use a temporary alloca'd variable. We then use
Chris Lattnere4880642010-08-29 06:43:52 +000029// the SSAUpdater to construct the appropriate SSA form for the value.
Chris Lattnere0e734e2002-05-10 22:44:58 +000030//
Chris Lattnere0e734e2002-05-10 22:44:58 +000031//===----------------------------------------------------------------------===//
32
Chris Lattner1f309c12005-03-23 21:00:12 +000033#define DEBUG_TYPE "licm"
Chris Lattnere0e734e2002-05-10 22:44:58 +000034#include "llvm/Transforms/Scalar.h"
Chris Lattner79066fa2007-01-30 23:46:24 +000035#include "llvm/Constants.h"
Chris Lattner2741c972004-05-23 21:20:19 +000036#include "llvm/DerivedTypes.h"
Torok Edwin9289ae82009-10-11 19:15:54 +000037#include "llvm/IntrinsicInst.h"
Chris Lattner2741c972004-05-23 21:20:19 +000038#include "llvm/Instructions.h"
39#include "llvm/Target/TargetData.h"
Chris Lattnere0e734e2002-05-10 22:44:58 +000040#include "llvm/Analysis/LoopInfo.h"
Devang Patel54959d62007-03-07 04:41:30 +000041#include "llvm/Analysis/LoopPass.h"
Chris Lattnerf5e84aa2002-08-22 21:39:55 +000042#include "llvm/Analysis/AliasAnalysis.h"
Chris Lattner0252e492003-03-03 23:32:45 +000043#include "llvm/Analysis/AliasSetTracker.h"
Chris Lattner952eaee2002-09-29 21:46:09 +000044#include "llvm/Analysis/Dominators.h"
Devang Patel96b651c2007-07-30 20:19:59 +000045#include "llvm/Analysis/ScalarEvolution.h"
Chris Lattnera6a36f52010-08-29 04:55:06 +000046#include "llvm/Transforms/Utils/SSAUpdater.h"
Reid Spencer9133fe22007-02-05 23:32:05 +000047#include "llvm/Support/CFG.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000048#include "llvm/Support/CommandLine.h"
Daniel Dunbarce63ffb2009-07-25 00:23:56 +000049#include "llvm/Support/raw_ostream.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000050#include "llvm/Support/Debug.h"
51#include "llvm/ADT/Statistic.h"
Chris Lattnere0e734e2002-05-10 22:44:58 +000052#include <algorithm>
Chris Lattner92094b42003-12-09 17:18:00 +000053using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000054
Chris Lattner0e5f4992006-12-19 21:40:18 +000055STATISTIC(NumSunk , "Number of instructions sunk out of loop");
56STATISTIC(NumHoisted , "Number of instructions hoisted out of loop");
57STATISTIC(NumMovedLoads, "Number of load insts hoisted or sunk");
58STATISTIC(NumMovedCalls, "Number of call insts hoisted or sunk");
59STATISTIC(NumPromoted , "Number of memory locations promoted to registers");
60
Dan Gohman844731a2008-05-13 00:00:25 +000061static cl::opt<bool>
62DisablePromotion("disable-licm-promotion", cl::Hidden,
63 cl::desc("Disable memory promotion in LICM pass"));
Chris Lattner2e6e7412003-02-24 03:52:32 +000064
Dan Gohman844731a2008-05-13 00:00:25 +000065namespace {
Chris Lattner3e8b6632009-09-02 06:11:42 +000066 struct LICM : public LoopPass {
Nick Lewyckyecd94c82007-05-06 13:37:16 +000067 static char ID; // Pass identification, replacement for typeid
Owen Anderson90c579d2010-08-06 18:33:48 +000068 LICM() : LoopPass(ID) {}
Devang Patel794fd752007-05-01 21:15:47 +000069
Devang Patel54959d62007-03-07 04:41:30 +000070 virtual bool runOnLoop(Loop *L, LPPassManager &LPM);
Chris Lattnere0e734e2002-05-10 22:44:58 +000071
Chris Lattner94170592002-09-26 16:52:07 +000072 /// This transformation requires natural loop information & requires that
73 /// loop preheaders be inserted into the CFG...
74 ///
Chris Lattnere0e734e2002-05-10 22:44:58 +000075 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattnercb2610e2002-10-21 20:00:28 +000076 AU.setPreservesCFG();
Owen Anderson3a2b58f2007-04-24 06:40:39 +000077 AU.addRequired<DominatorTree>();
Dan Gohman1e381fc2010-07-16 17:58:45 +000078 AU.addRequired<LoopInfo>();
79 AU.addRequiredID(LoopSimplifyID);
Chris Lattnerf5e84aa2002-08-22 21:39:55 +000080 AU.addRequired<AliasAnalysis>();
Devang Patel96b651c2007-07-30 20:19:59 +000081 AU.addPreserved<ScalarEvolution>();
82 AU.addPreserved<DominanceFrontier>();
Dan Gohman5c89b522009-09-08 15:45:00 +000083 AU.addPreservedID(LoopSimplifyID);
Chris Lattnere0e734e2002-05-10 22:44:58 +000084 }
85
Dan Gohman747603e2007-04-17 18:21:36 +000086 bool doFinalization() {
Anton Korobeynikovfd94dd52007-11-25 23:52:02 +000087 // Free the values stored in the map
88 for (std::map<Loop *, AliasSetTracker *>::iterator
89 I = LoopToAliasMap.begin(), E = LoopToAliasMap.end(); I != E; ++I)
90 delete I->second;
91
Devang Patel54959d62007-03-07 04:41:30 +000092 LoopToAliasMap.clear();
93 return false;
94 }
95
Chris Lattnere0e734e2002-05-10 22:44:58 +000096 private:
Chris Lattner92094b42003-12-09 17:18:00 +000097 // Various analyses that we use...
Chris Lattner2e6e7412003-02-24 03:52:32 +000098 AliasAnalysis *AA; // Current AliasAnalysis information
Chris Lattner92094b42003-12-09 17:18:00 +000099 LoopInfo *LI; // Current LoopInfo
Chris Lattner44e2bd32010-08-29 06:49:44 +0000100 DominatorTree *DT; // Dominator Tree for the current Loop.
Chris Lattner92094b42003-12-09 17:18:00 +0000101
102 // State that is updated as we process loops
Chris Lattner2e6e7412003-02-24 03:52:32 +0000103 bool Changed; // Set to true when we change anything.
104 BasicBlock *Preheader; // The preheader block of the current loop...
105 Loop *CurLoop; // The current loop we are working on...
Chris Lattner0252e492003-03-03 23:32:45 +0000106 AliasSetTracker *CurAST; // AliasSet information for the current loop...
Devang Patel54959d62007-03-07 04:41:30 +0000107 std::map<Loop *, AliasSetTracker *> LoopToAliasMap;
Chris Lattnere0e734e2002-05-10 22:44:58 +0000108
Devang Patel91d22c82007-07-31 08:01:41 +0000109 /// cloneBasicBlockAnalysis - Simple Analysis hook. Clone alias set info.
110 void cloneBasicBlockAnalysis(BasicBlock *From, BasicBlock *To, Loop *L);
111
112 /// deleteAnalysisValue - Simple Analysis hook. Delete value V from alias
113 /// set.
114 void deleteAnalysisValue(Value *V, Loop *L);
115
Chris Lattnere4365b22003-12-19 07:22:45 +0000116 /// SinkRegion - Walk the specified region of the CFG (defined by all blocks
117 /// dominated by the specified block, and that are in the current loop) in
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000118 /// reverse depth first order w.r.t the DominatorTree. This allows us to
Chris Lattnere4365b22003-12-19 07:22:45 +0000119 /// visit uses before definitions, allowing us to sink a loop body in one
120 /// pass without iteration.
121 ///
Devang Patel26042422007-06-04 00:32:22 +0000122 void SinkRegion(DomTreeNode *N);
Chris Lattnere4365b22003-12-19 07:22:45 +0000123
Chris Lattner952eaee2002-09-29 21:46:09 +0000124 /// HoistRegion - Walk the specified region of the CFG (defined by all
125 /// blocks dominated by the specified block, and that are in the current
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000126 /// loop) in depth first order w.r.t the DominatorTree. This allows us to
Misha Brukmancf00c4a2003-10-10 17:57:28 +0000127 /// visit definitions before uses, allowing us to hoist a loop body in one
Chris Lattner952eaee2002-09-29 21:46:09 +0000128 /// pass without iteration.
129 ///
Devang Patel26042422007-06-04 00:32:22 +0000130 void HoistRegion(DomTreeNode *N);
Chris Lattner952eaee2002-09-29 21:46:09 +0000131
Chris Lattnerb4613732002-09-29 22:26:07 +0000132 /// inSubLoop - Little predicate that returns true if the specified basic
133 /// block is in a subloop of the current one, not the current one itself.
Chris Lattner94170592002-09-26 16:52:07 +0000134 ///
Chris Lattnerb4613732002-09-29 22:26:07 +0000135 bool inSubLoop(BasicBlock *BB) {
136 assert(CurLoop->contains(BB) && "Only valid if BB is IN the loop");
Chris Lattner329c1c62004-01-08 00:09:44 +0000137 for (Loop::iterator I = CurLoop->begin(), E = CurLoop->end(); I != E; ++I)
138 if ((*I)->contains(BB))
Chris Lattnerb4613732002-09-29 22:26:07 +0000139 return true; // A subloop actually contains this block!
140 return false;
Chris Lattnere0e734e2002-05-10 22:44:58 +0000141 }
142
Chris Lattnera2706512003-12-10 06:41:05 +0000143 /// isExitBlockDominatedByBlockInLoop - This method checks to see if the
144 /// specified exit block of the loop is dominated by the specified block
145 /// that is in the body of the loop. We use these constraints to
146 /// dramatically limit the amount of the dominator tree that needs to be
147 /// searched.
148 bool isExitBlockDominatedByBlockInLoop(BasicBlock *ExitBlock,
149 BasicBlock *BlockInLoop) const {
150 // If the block in the loop is the loop header, it must be dominated!
151 BasicBlock *LoopHeader = CurLoop->getHeader();
152 if (BlockInLoop == LoopHeader)
153 return true;
Misha Brukmanfd939082005-04-21 23:48:37 +0000154
Devang Patel26042422007-06-04 00:32:22 +0000155 DomTreeNode *BlockInLoopNode = DT->getNode(BlockInLoop);
156 DomTreeNode *IDom = DT->getNode(ExitBlock);
Misha Brukmanfd939082005-04-21 23:48:37 +0000157
Chris Lattnera2706512003-12-10 06:41:05 +0000158 // Because the exit block is not in the loop, we know we have to get _at
Chris Lattner2741c972004-05-23 21:20:19 +0000159 // least_ its immediate dominator.
Eric Christopher3472ae12009-12-10 00:25:41 +0000160 IDom = IDom->getIDom();
161
162 while (IDom && IDom != BlockInLoopNode) {
Chris Lattnera2706512003-12-10 06:41:05 +0000163 // If we have got to the header of the loop, then the instructions block
164 // did not dominate the exit node, so we can't hoist it.
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000165 if (IDom->getBlock() == LoopHeader)
Chris Lattnera2706512003-12-10 06:41:05 +0000166 return false;
Misha Brukmanfd939082005-04-21 23:48:37 +0000167
Eric Christopher3472ae12009-12-10 00:25:41 +0000168 // Get next Immediate Dominator.
169 IDom = IDom->getIDom();
170 };
Chris Lattnera2706512003-12-10 06:41:05 +0000171
172 return true;
173 }
174
175 /// sink - When an instruction is found to only be used outside of the loop,
176 /// this function moves it to the exit blocks and patches up SSA form as
177 /// needed.
178 ///
179 void sink(Instruction &I);
180
Chris Lattner94170592002-09-26 16:52:07 +0000181 /// hoist - When an instruction is found to only use loop invariant operands
182 /// that is safe to hoist, this instruction is called to do the dirty work.
183 ///
Chris Lattner7e708292002-06-25 16:13:24 +0000184 void hoist(Instruction &I);
Chris Lattnere0e734e2002-05-10 22:44:58 +0000185
Chris Lattnera2706512003-12-10 06:41:05 +0000186 /// isSafeToExecuteUnconditionally - Only sink or hoist an instruction if it
187 /// is not a trapping instruction or if it is a trapping instruction and is
188 /// guaranteed to execute.
Tanya Lattner9966c032003-08-05 18:45:46 +0000189 ///
Chris Lattnera2706512003-12-10 06:41:05 +0000190 bool isSafeToExecuteUnconditionally(Instruction &I);
Tanya Lattner9966c032003-08-05 18:45:46 +0000191
Chris Lattner94170592002-09-26 16:52:07 +0000192 /// pointerInvalidatedByLoop - Return true if the body of this loop may
193 /// store into the memory location pointed to by V.
Misha Brukmanfd939082005-04-21 23:48:37 +0000194 ///
Chris Lattnerf3e1d692004-11-26 21:20:09 +0000195 bool pointerInvalidatedByLoop(Value *V, unsigned Size) {
Chris Lattner0252e492003-03-03 23:32:45 +0000196 // Check to see if any of the basic blocks in CurLoop invalidate *V.
Chris Lattnerf3e1d692004-11-26 21:20:09 +0000197 return CurAST->getAliasSetForPointer(V, Size).isMod();
Chris Lattner2e6e7412003-02-24 03:52:32 +0000198 }
Chris Lattnerf5e84aa2002-08-22 21:39:55 +0000199
Chris Lattnera2706512003-12-10 06:41:05 +0000200 bool canSinkOrHoistInst(Instruction &I);
201 bool isLoopInvariantInst(Instruction &I);
202 bool isNotUsedInLoop(Instruction &I);
Chris Lattnere0e734e2002-05-10 22:44:58 +0000203
Chris Lattnere4880642010-08-29 06:43:52 +0000204 void PromoteAliasSet(AliasSet &AS);
Chris Lattnere0e734e2002-05-10 22:44:58 +0000205 };
206}
207
Dan Gohman844731a2008-05-13 00:00:25 +0000208char LICM::ID = 0;
Owen Andersond13db2c2010-07-21 22:09:45 +0000209INITIALIZE_PASS(LICM, "licm", "Loop Invariant Code Motion", false, false);
Dan Gohman844731a2008-05-13 00:00:25 +0000210
Daniel Dunbar394f0442008-10-22 23:32:42 +0000211Pass *llvm::createLICMPass() { return new LICM(); }
Chris Lattnere0e734e2002-05-10 22:44:58 +0000212
Devang Patel8d246f02007-07-31 16:52:25 +0000213/// Hoist expressions out of the specified loop. Note, alias info for inner
214/// loop is not preserved so it is not a good idea to run LICM multiple
215/// times on one loop.
Chris Lattner94170592002-09-26 16:52:07 +0000216///
Devang Patel54959d62007-03-07 04:41:30 +0000217bool LICM::runOnLoop(Loop *L, LPPassManager &LPM) {
Chris Lattner2e6e7412003-02-24 03:52:32 +0000218 Changed = false;
Chris Lattnere0e734e2002-05-10 22:44:58 +0000219
Chris Lattner2e6e7412003-02-24 03:52:32 +0000220 // Get our Loop and Alias Analysis information...
221 LI = &getAnalysis<LoopInfo>();
Chris Lattnerf5e84aa2002-08-22 21:39:55 +0000222 AA = &getAnalysis<AliasAnalysis>();
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000223 DT = &getAnalysis<DominatorTree>();
Chris Lattnerf5e84aa2002-08-22 21:39:55 +0000224
Devang Patel54959d62007-03-07 04:41:30 +0000225 CurAST = new AliasSetTracker(*AA);
Devang Patelf38ac5d2007-05-30 15:29:37 +0000226 // Collect Alias info from subloops
Devang Patel54959d62007-03-07 04:41:30 +0000227 for (Loop::iterator LoopItr = L->begin(), LoopItrE = L->end();
228 LoopItr != LoopItrE; ++LoopItr) {
229 Loop *InnerL = *LoopItr;
230 AliasSetTracker *InnerAST = LoopToAliasMap[InnerL];
231 assert (InnerAST && "Where is my AST?");
232
233 // What if InnerLoop was modified by other passes ?
234 CurAST->add(*InnerAST);
Chris Lattner2e6e7412003-02-24 03:52:32 +0000235 }
Devang Patel54959d62007-03-07 04:41:30 +0000236
Chris Lattnere0e734e2002-05-10 22:44:58 +0000237 CurLoop = L;
238
Chris Lattner99a57212002-09-26 19:40:25 +0000239 // Get the preheader block to move instructions into...
240 Preheader = L->getLoopPreheader();
Chris Lattner99a57212002-09-26 19:40:25 +0000241
Chris Lattner2e6e7412003-02-24 03:52:32 +0000242 // Loop over the body of this loop, looking for calls, invokes, and stores.
Chris Lattner0252e492003-03-03 23:32:45 +0000243 // Because subloops have already been incorporated into AST, we skip blocks in
Chris Lattner2e6e7412003-02-24 03:52:32 +0000244 // subloops.
245 //
Dan Gohman9b787632008-06-22 20:18:58 +0000246 for (Loop::block_iterator I = L->block_begin(), E = L->block_end();
247 I != E; ++I) {
248 BasicBlock *BB = *I;
249 if (LI->getLoopFor(BB) == L) // Ignore blocks in subloops...
250 CurAST->add(*BB); // Incorporate the specified basic block
251 }
Chris Lattner2e6e7412003-02-24 03:52:32 +0000252
Chris Lattnere0e734e2002-05-10 22:44:58 +0000253 // We want to visit all of the instructions in this loop... that are not parts
254 // of our subloops (they have already had their invariants hoisted out of
255 // their loop, into this loop, so there is no need to process the BODIES of
256 // the subloops).
257 //
Chris Lattner952eaee2002-09-29 21:46:09 +0000258 // Traverse the body of the loop in depth first order on the dominator tree so
259 // that we are guaranteed to see definitions before we see uses. This allows
Nick Lewyckyaf5cbc82007-08-18 15:08:56 +0000260 // us to sink instructions in one pass, without iteration. After sinking
Chris Lattnere4365b22003-12-19 07:22:45 +0000261 // instructions, we perform another pass to hoist them out of the loop.
Chris Lattner952eaee2002-09-29 21:46:09 +0000262 //
Dan Gohman03e896b2009-11-05 21:11:53 +0000263 if (L->hasDedicatedExits())
264 SinkRegion(DT->getNode(L->getHeader()));
265 if (Preheader)
266 HoistRegion(DT->getNode(L->getHeader()));
Chris Lattnere0e734e2002-05-10 22:44:58 +0000267
Chris Lattner2e6e7412003-02-24 03:52:32 +0000268 // Now that all loop invariants have been removed from the loop, promote any
Chris Lattnere4880642010-08-29 06:43:52 +0000269 // memory references to scalars that we can.
270 if (!DisablePromotion && Preheader && L->hasDedicatedExits()) {
271 // Loop over all of the alias sets in the tracker object.
272 for (AliasSetTracker::iterator I = CurAST->begin(), E = CurAST->end();
273 I != E; ++I)
274 PromoteAliasSet(*I);
275 }
276
Chris Lattnere0e734e2002-05-10 22:44:58 +0000277 // Clear out loops state information for the next iteration
278 CurLoop = 0;
Chris Lattner99a57212002-09-26 19:40:25 +0000279 Preheader = 0;
Devang Patel54959d62007-03-07 04:41:30 +0000280
281 LoopToAliasMap[L] = CurAST;
282 return Changed;
Chris Lattnere0e734e2002-05-10 22:44:58 +0000283}
284
Chris Lattnere4365b22003-12-19 07:22:45 +0000285/// SinkRegion - Walk the specified region of the CFG (defined by all blocks
286/// dominated by the specified block, and that are in the current loop) in
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000287/// reverse depth first order w.r.t the DominatorTree. This allows us to visit
Chris Lattnere4365b22003-12-19 07:22:45 +0000288/// uses before definitions, allowing us to sink a loop body in one pass without
289/// iteration.
290///
Devang Patel26042422007-06-04 00:32:22 +0000291void LICM::SinkRegion(DomTreeNode *N) {
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000292 assert(N != 0 && "Null dominator tree node?");
293 BasicBlock *BB = N->getBlock();
Chris Lattnere4365b22003-12-19 07:22:45 +0000294
295 // If this subregion is not in the top level loop at all, exit.
296 if (!CurLoop->contains(BB)) return;
297
298 // We are processing blocks in reverse dfo, so process children first...
Devang Patel26042422007-06-04 00:32:22 +0000299 const std::vector<DomTreeNode*> &Children = N->getChildren();
Chris Lattnere4365b22003-12-19 07:22:45 +0000300 for (unsigned i = 0, e = Children.size(); i != e; ++i)
301 SinkRegion(Children[i]);
302
303 // Only need to process the contents of this block if it is not part of a
304 // subloop (which would already have been processed).
305 if (inSubLoop(BB)) return;
306
Chris Lattnera3df8a92003-12-19 08:18:16 +0000307 for (BasicBlock::iterator II = BB->end(); II != BB->begin(); ) {
308 Instruction &I = *--II;
Misha Brukmanfd939082005-04-21 23:48:37 +0000309
Chris Lattnere4365b22003-12-19 07:22:45 +0000310 // Check to see if we can sink this instruction to the exit blocks
311 // of the loop. We can do this if the all users of the instruction are
312 // outside of the loop. In this case, it doesn't even matter if the
313 // operands of the instruction are loop invariant.
314 //
Chris Lattner70ac2dc2005-03-25 00:22:36 +0000315 if (isNotUsedInLoop(I) && canSinkOrHoistInst(I)) {
Chris Lattnera3df8a92003-12-19 08:18:16 +0000316 ++II;
Chris Lattnere4365b22003-12-19 07:22:45 +0000317 sink(I);
Chris Lattnera3df8a92003-12-19 08:18:16 +0000318 }
Chris Lattnere4365b22003-12-19 07:22:45 +0000319 }
320}
321
Chris Lattner952eaee2002-09-29 21:46:09 +0000322/// HoistRegion - Walk the specified region of the CFG (defined by all blocks
323/// dominated by the specified block, and that are in the current loop) in depth
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000324/// first order w.r.t the DominatorTree. This allows us to visit definitions
Chris Lattner952eaee2002-09-29 21:46:09 +0000325/// before uses, allowing us to hoist a loop body in one pass without iteration.
326///
Devang Patel26042422007-06-04 00:32:22 +0000327void LICM::HoistRegion(DomTreeNode *N) {
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000328 assert(N != 0 && "Null dominator tree node?");
329 BasicBlock *BB = N->getBlock();
Chris Lattner952eaee2002-09-29 21:46:09 +0000330
Chris Lattnerb4613732002-09-29 22:26:07 +0000331 // If this subregion is not in the top level loop at all, exit.
Chris Lattnered6dfc22003-12-09 19:32:44 +0000332 if (!CurLoop->contains(BB)) return;
Chris Lattner952eaee2002-09-29 21:46:09 +0000333
Chris Lattnera2706512003-12-10 06:41:05 +0000334 // Only need to process the contents of this block if it is not part of a
335 // subloop (which would already have been processed).
Chris Lattnered6dfc22003-12-09 19:32:44 +0000336 if (!inSubLoop(BB))
Chris Lattnera2706512003-12-10 06:41:05 +0000337 for (BasicBlock::iterator II = BB->begin(), E = BB->end(); II != E; ) {
338 Instruction &I = *II++;
Misha Brukmanfd939082005-04-21 23:48:37 +0000339
Chris Lattnere4365b22003-12-19 07:22:45 +0000340 // Try hoisting the instruction out to the preheader. We can only do this
341 // if all of the operands of the instruction are loop invariant and if it
342 // is safe to hoist the instruction.
343 //
Misha Brukmanfd939082005-04-21 23:48:37 +0000344 if (isLoopInvariantInst(I) && canSinkOrHoistInst(I) &&
Chris Lattnere4365b22003-12-19 07:22:45 +0000345 isSafeToExecuteUnconditionally(I))
Chris Lattner3c80a512006-06-26 19:10:05 +0000346 hoist(I);
Chris Lattnera2706512003-12-10 06:41:05 +0000347 }
Chris Lattner952eaee2002-09-29 21:46:09 +0000348
Devang Patel26042422007-06-04 00:32:22 +0000349 const std::vector<DomTreeNode*> &Children = N->getChildren();
Chris Lattner952eaee2002-09-29 21:46:09 +0000350 for (unsigned i = 0, e = Children.size(); i != e; ++i)
Chris Lattner56b7ee22004-06-19 20:23:35 +0000351 HoistRegion(Children[i]);
Chris Lattner952eaee2002-09-29 21:46:09 +0000352}
353
Chris Lattnera2706512003-12-10 06:41:05 +0000354/// canSinkOrHoistInst - Return true if the hoister and sinker can handle this
355/// instruction.
356///
357bool LICM::canSinkOrHoistInst(Instruction &I) {
Chris Lattnered6dfc22003-12-09 19:32:44 +0000358 // Loads have extra constraints we have to verify before we can hoist them.
359 if (LoadInst *LI = dyn_cast<LoadInst>(&I)) {
360 if (LI->isVolatile())
361 return false; // Don't hoist volatile loads!
362
Chris Lattner967948b2008-07-23 05:06:28 +0000363 // Loads from constant memory are always safe to move, even if they end up
364 // in the same alias set as something that ends up being modified.
Dan Gohmandab249b2009-11-19 19:00:10 +0000365 if (AA->pointsToConstantMemory(LI->getOperand(0)))
Chris Lattner967948b2008-07-23 05:06:28 +0000366 return true;
367
Chris Lattnered6dfc22003-12-09 19:32:44 +0000368 // Don't hoist loads which have may-aliased stores in loop.
Chris Lattnerf3e1d692004-11-26 21:20:09 +0000369 unsigned Size = 0;
370 if (LI->getType()->isSized())
Dan Gohmanfc2a3ed2009-07-25 00:48:42 +0000371 Size = AA->getTypeStoreSize(LI->getType());
Chris Lattnerf3e1d692004-11-26 21:20:09 +0000372 return !pointerInvalidatedByLoop(LI->getOperand(0), Size);
Chris Lattner118dd0c2004-03-15 04:11:30 +0000373 } else if (CallInst *CI = dyn_cast<CallInst>(&I)) {
374 // Handle obvious cases efficiently.
Duncan Sandsdff67102007-12-01 07:51:45 +0000375 AliasAnalysis::ModRefBehavior Behavior = AA->getModRefBehavior(CI);
376 if (Behavior == AliasAnalysis::DoesNotAccessMemory)
377 return true;
378 else if (Behavior == AliasAnalysis::OnlyReadsMemory) {
379 // If this call only reads from memory and there are no writes to memory
380 // in the loop, we can hoist or sink the call as appropriate.
381 bool FoundMod = false;
382 for (AliasSetTracker::iterator I = CurAST->begin(), E = CurAST->end();
383 I != E; ++I) {
384 AliasSet &AS = *I;
385 if (!AS.isForwardingAliasSet() && AS.isMod()) {
386 FoundMod = true;
387 break;
Chris Lattner118dd0c2004-03-15 04:11:30 +0000388 }
Chris Lattner118dd0c2004-03-15 04:11:30 +0000389 }
Duncan Sandsdff67102007-12-01 07:51:45 +0000390 if (!FoundMod) return true;
Chris Lattner118dd0c2004-03-15 04:11:30 +0000391 }
392
393 // FIXME: This should use mod/ref information to see if we can hoist or sink
394 // the call.
Misha Brukmanfd939082005-04-21 23:48:37 +0000395
Chris Lattner118dd0c2004-03-15 04:11:30 +0000396 return false;
Chris Lattnered6dfc22003-12-09 19:32:44 +0000397 }
398
Reid Spencer3da59db2006-11-27 01:05:10 +0000399 // Otherwise these instructions are hoistable/sinkable
Reid Spencer832254e2007-02-02 02:16:23 +0000400 return isa<BinaryOperator>(I) || isa<CastInst>(I) ||
Dan Gohmand8af90c2007-06-05 16:05:55 +0000401 isa<SelectInst>(I) || isa<GetElementPtrInst>(I) || isa<CmpInst>(I) ||
402 isa<InsertElementInst>(I) || isa<ExtractElementInst>(I) ||
403 isa<ShuffleVectorInst>(I);
Chris Lattnera2706512003-12-10 06:41:05 +0000404}
405
406/// isNotUsedInLoop - Return true if the only users of this instruction are
407/// outside of the loop. If this is true, we can sink the instruction to the
408/// exit blocks of the loop.
409///
410bool LICM::isNotUsedInLoop(Instruction &I) {
Chris Lattnerea9403f2003-12-11 22:23:32 +0000411 for (Value::use_iterator UI = I.use_begin(), E = I.use_end(); UI != E; ++UI) {
412 Instruction *User = cast<Instruction>(*UI);
413 if (PHINode *PN = dyn_cast<PHINode>(User)) {
414 // PHI node uses occur in predecessor blocks!
415 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
416 if (PN->getIncomingValue(i) == &I)
417 if (CurLoop->contains(PN->getIncomingBlock(i)))
418 return false;
Dan Gohman92329c72009-12-18 01:24:09 +0000419 } else if (CurLoop->contains(User)) {
Chris Lattnera2706512003-12-10 06:41:05 +0000420 return false;
Chris Lattnerea9403f2003-12-11 22:23:32 +0000421 }
422 }
Chris Lattnera2706512003-12-10 06:41:05 +0000423 return true;
424}
425
426
427/// isLoopInvariantInst - Return true if all operands of this instruction are
428/// loop invariant. We also filter out non-hoistable instructions here just for
429/// efficiency.
430///
431bool LICM::isLoopInvariantInst(Instruction &I) {
432 // The instruction is loop invariant if all of its operands are loop-invariant
433 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i)
Chris Lattner3280f7b2004-04-18 22:46:08 +0000434 if (!CurLoop->isLoopInvariant(I.getOperand(i)))
Chris Lattnera2706512003-12-10 06:41:05 +0000435 return false;
436
Chris Lattnered6dfc22003-12-09 19:32:44 +0000437 // If we got this far, the instruction is loop invariant!
438 return true;
439}
440
Chris Lattnera2706512003-12-10 06:41:05 +0000441/// sink - When an instruction is found to only be used outside of the loop,
Chris Lattnera3df8a92003-12-19 08:18:16 +0000442/// this function moves it to the exit blocks and patches up SSA form as needed.
443/// This method is guaranteed to remove the original instruction from its
444/// position, and may either delete it or move it to outside of the loop.
Chris Lattnera2706512003-12-10 06:41:05 +0000445///
446void LICM::sink(Instruction &I) {
Nick Lewycky39a38312010-07-30 20:27:01 +0000447 DEBUG(dbgs() << "LICM sinking instruction: " << I << "\n");
Chris Lattnera2706512003-12-10 06:41:05 +0000448
Devang Patelb7211a22007-08-21 00:31:24 +0000449 SmallVector<BasicBlock*, 8> ExitBlocks;
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000450 CurLoop->getUniqueExitBlocks(ExitBlocks);
Chris Lattnerdf45bd32003-12-10 20:43:29 +0000451
452 if (isa<LoadInst>(I)) ++NumMovedLoads;
Chris Lattner118dd0c2004-03-15 04:11:30 +0000453 else if (isa<CallInst>(I)) ++NumMovedCalls;
Chris Lattnerdf45bd32003-12-10 20:43:29 +0000454 ++NumSunk;
455 Changed = true;
456
Chris Lattnera2706512003-12-10 06:41:05 +0000457 // The case where there is only a single exit node of this loop is common
458 // enough that we handle it as a special (more efficient) case. It is more
459 // efficient to handle because there are no PHI nodes that need to be placed.
460 if (ExitBlocks.size() == 1) {
461 if (!isExitBlockDominatedByBlockInLoop(ExitBlocks[0], I.getParent())) {
462 // Instruction is not used, just delete it.
Chris Lattner2741c972004-05-23 21:20:19 +0000463 CurAST->deleteValue(&I);
Devang Patel1bf5ebc2009-10-13 21:41:20 +0000464 // If I has users in unreachable blocks, eliminate.
Devang Patel228ebd02009-10-13 22:56:32 +0000465 // If I is not void type then replaceAllUsesWith undef.
466 // This allows ValueHandlers and custom metadata to adjust itself.
Chris Lattnera6a36f52010-08-29 04:55:06 +0000467 if (!I.use_empty())
Devang Patel228ebd02009-10-13 22:56:32 +0000468 I.replaceAllUsesWith(UndefValue::get(I.getType()));
Chris Lattner3c80a512006-06-26 19:10:05 +0000469 I.eraseFromParent();
Chris Lattnera2706512003-12-10 06:41:05 +0000470 } else {
471 // Move the instruction to the start of the exit block, after any PHI
472 // nodes in it.
Chris Lattner3c80a512006-06-26 19:10:05 +0000473 I.removeFromParent();
Dan Gohman02dea8b2008-05-23 21:05:58 +0000474 BasicBlock::iterator InsertPt = ExitBlocks[0]->getFirstNonPHI();
Chris Lattnera2706512003-12-10 06:41:05 +0000475 ExitBlocks[0]->getInstList().insert(InsertPt, &I);
476 }
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000477 return;
478 }
479
480 if (ExitBlocks.empty()) {
Chris Lattnera2706512003-12-10 06:41:05 +0000481 // The instruction is actually dead if there ARE NO exit blocks.
Chris Lattner2741c972004-05-23 21:20:19 +0000482 CurAST->deleteValue(&I);
Devang Patel1bf5ebc2009-10-13 21:41:20 +0000483 // If I has users in unreachable blocks, eliminate.
Devang Patel228ebd02009-10-13 22:56:32 +0000484 // If I is not void type then replaceAllUsesWith undef.
485 // This allows ValueHandlers and custom metadata to adjust itself.
Chris Lattnera6a36f52010-08-29 04:55:06 +0000486 if (!I.use_empty())
Devang Patel228ebd02009-10-13 22:56:32 +0000487 I.replaceAllUsesWith(UndefValue::get(I.getType()));
Chris Lattner3c80a512006-06-26 19:10:05 +0000488 I.eraseFromParent();
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000489 return;
490 }
491
Chris Lattnera6a36f52010-08-29 04:55:06 +0000492 // Otherwise, if we have multiple exits, use the SSAUpdater to do all of the
493 // hard work of inserting PHI nodes as necessary.
494 SmallVector<PHINode*, 8> NewPHIs;
495 SSAUpdater SSA(&NewPHIs);
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000496
Chris Lattnera6a36f52010-08-29 04:55:06 +0000497 if (!I.use_empty())
498 SSA.Initialize(&I);
499
500 // Insert a copy of the instruction in each exit block of the loop that is
501 // dominated by the instruction. Each exit block is known to only be in the
502 // ExitBlocks list once.
503 BasicBlock *InstOrigBB = I.getParent();
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000504 unsigned NumInserted = 0;
Chris Lattnera6a36f52010-08-29 04:55:06 +0000505
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000506 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i) {
507 BasicBlock *ExitBlock = ExitBlocks[i];
Chris Lattnera6a36f52010-08-29 04:55:06 +0000508
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000509 if (!isExitBlockDominatedByBlockInLoop(ExitBlock, InstOrigBB))
510 continue;
511
Chris Lattnera6a36f52010-08-29 04:55:06 +0000512 // Insert the code after the last PHI node.
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000513 BasicBlock::iterator InsertPt = ExitBlock->getFirstNonPHI();
Chris Lattnera6a36f52010-08-29 04:55:06 +0000514
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000515 // If this is the first exit block processed, just move the original
516 // instruction, otherwise clone the original instruction and insert
517 // the copy.
518 Instruction *New;
Chris Lattnera6a36f52010-08-29 04:55:06 +0000519 if (NumInserted++ == 0) {
520 I.moveBefore(InsertPt);
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000521 New = &I;
522 } else {
523 New = I.clone();
524 CurAST->copyValue(&I, New);
525 if (!I.getName().empty())
526 New->setName(I.getName()+".le");
527 ExitBlock->getInstList().insert(InsertPt, New);
Chris Lattnereaa24302004-07-27 07:38:32 +0000528 }
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000529
Chris Lattnera6a36f52010-08-29 04:55:06 +0000530 // Now that we have inserted the instruction, inform SSAUpdater.
531 if (!I.use_empty())
532 SSA.AddAvailableValue(ExitBlock, New);
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000533 }
Chris Lattnera6a36f52010-08-29 04:55:06 +0000534
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000535 // If the instruction doesn't dominate any exit blocks, it must be dead.
536 if (NumInserted == 0) {
537 CurAST->deleteValue(&I);
Chris Lattnera6a36f52010-08-29 04:55:06 +0000538 if (!I.use_empty())
539 I.replaceAllUsesWith(UndefValue::get(I.getType()));
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000540 I.eraseFromParent();
Chris Lattnera6a36f52010-08-29 04:55:06 +0000541 return;
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000542 }
Chris Lattnera6a36f52010-08-29 04:55:06 +0000543
544 // Next, rewrite uses of the instruction, inserting PHI nodes as needed.
545 for (Value::use_iterator UI = I.use_begin(), UE = I.use_end(); UI != UE; ) {
546 // Grab the use before incrementing the iterator.
547 Use &U = UI.getUse();
548 // Increment the iterator before removing the use from the list.
549 ++UI;
550 SSA.RewriteUseAfterInsertions(U);
Chris Lattnera2706512003-12-10 06:41:05 +0000551 }
Chris Lattnera6a36f52010-08-29 04:55:06 +0000552
553 // Update CurAST for NewPHIs if I had pointer type.
554 if (I.getType()->isPointerTy())
555 for (unsigned i = 0, e = NewPHIs.size(); i != e; ++i)
556 CurAST->copyValue(NewPHIs[i], &I);
Chris Lattnera2706512003-12-10 06:41:05 +0000557}
Chris Lattner952eaee2002-09-29 21:46:09 +0000558
Chris Lattner94170592002-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 Lattnera2706512003-12-10 06:41:05 +0000562void LICM::hoist(Instruction &I) {
David Greenef1582692010-01-05 01:27:30 +0000563 DEBUG(dbgs() << "LICM hoisting to " << Preheader->getName() << ": "
Evan Cheng67d1d1f2009-10-12 22:25:23 +0000564 << I << "\n");
Chris Lattnered6dfc22003-12-09 19:32:44 +0000565
Chris Lattner99a57212002-09-26 19:40:25 +0000566 // Remove the instruction from its current basic block... but don't delete the
567 // instruction.
Chris Lattner3c80a512006-06-26 19:10:05 +0000568 I.removeFromParent();
Chris Lattnere0e734e2002-05-10 22:44:58 +0000569
Chris Lattner9646e6b2002-09-26 16:38:03 +0000570 // Insert the new node in Preheader, before the terminator.
Chris Lattnera2706512003-12-10 06:41:05 +0000571 Preheader->getInstList().insert(Preheader->getTerminator(), &I);
Misha Brukmanfd939082005-04-21 23:48:37 +0000572
Chris Lattnera2706512003-12-10 06:41:05 +0000573 if (isa<LoadInst>(I)) ++NumMovedLoads;
Chris Lattner118dd0c2004-03-15 04:11:30 +0000574 else if (isa<CallInst>(I)) ++NumMovedCalls;
Chris Lattner9646e6b2002-09-26 16:38:03 +0000575 ++NumHoisted;
Chris Lattnere0e734e2002-05-10 22:44:58 +0000576 Changed = true;
577}
578
Chris Lattnera2706512003-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 Lattner9966c032003-08-05 18:45:46 +0000582///
Chris Lattnera2706512003-12-10 06:41:05 +0000583bool LICM::isSafeToExecuteUnconditionally(Instruction &Inst) {
Chris Lattner92094b42003-12-09 17:18:00 +0000584 // If it is not a trapping instruction, it is always safe to hoist.
Eli Friedman0b79a772009-07-17 04:28:42 +0000585 if (Inst.isSafeToSpeculativelyExecute())
586 return true;
Misha Brukmanfd939082005-04-21 23:48:37 +0000587
Chris Lattner92094b42003-12-09 17:18:00 +0000588 // Otherwise we have to check to make sure that the instruction dominates all
589 // of the exit blocks. If it doesn't, then there is a path out of the loop
590 // which does not execute this instruction, so we can't hoist it.
Tanya Lattner9966c032003-08-05 18:45:46 +0000591
Chris Lattner92094b42003-12-09 17:18:00 +0000592 // If the instruction is in the header block for the loop (which is very
593 // common), it is always guaranteed to dominate the exit blocks. Since this
594 // is a common case, and can save some work, check it now.
Chris Lattnera2706512003-12-10 06:41:05 +0000595 if (Inst.getParent() == CurLoop->getHeader())
Chris Lattner92094b42003-12-09 17:18:00 +0000596 return true;
Tanya Lattner9966c032003-08-05 18:45:46 +0000597
Chris Lattner92094b42003-12-09 17:18:00 +0000598 // Get the exit blocks for the current loop.
Devang Patelb7211a22007-08-21 00:31:24 +0000599 SmallVector<BasicBlock*, 8> ExitBlocks;
Chris Lattner5fa802f2004-04-18 22:15:13 +0000600 CurLoop->getExitBlocks(ExitBlocks);
Chris Lattner92094b42003-12-09 17:18:00 +0000601
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000602 // For each exit block, get the DT node and walk up the DT until the
Chris Lattner92094b42003-12-09 17:18:00 +0000603 // instruction's basic block is found or we exit the loop.
Chris Lattnera2706512003-12-10 06:41:05 +0000604 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i)
605 if (!isExitBlockDominatedByBlockInLoop(ExitBlocks[i], Inst.getParent()))
606 return false;
Misha Brukmanfd939082005-04-21 23:48:37 +0000607
Tanya Lattner9966c032003-08-05 18:45:46 +0000608 return true;
609}
610
Chris Lattnere4880642010-08-29 06:43:52 +0000611/// PromoteAliasSet - Try to promote memory values to scalars by sinking
Chris Lattner2e6e7412003-02-24 03:52:32 +0000612/// stores out of the loop and moving loads to before the loop. We do this by
613/// looping over the stores in the loop, looking for stores to Must pointers
Chris Lattnere4880642010-08-29 06:43:52 +0000614/// which are loop invariant.
Chris Lattner2e6e7412003-02-24 03:52:32 +0000615///
Chris Lattnere4880642010-08-29 06:43:52 +0000616void LICM::PromoteAliasSet(AliasSet &AS) {
617 // We can promote this alias set if it has a store, if it is a "Must" alias
618 // set, if the pointer is loop invariant, and if we are not eliminating any
619 // volatile loads or stores.
620 if (AS.isForwardingAliasSet() || !AS.isMod() || !AS.isMustAlias() ||
621 AS.isVolatile() || !CurLoop->isLoopInvariant(AS.begin()->getValue()))
622 return;
623
624 assert(!AS.empty() &&
625 "Must alias set should have at least one pointer element in it!");
626 Value *SomePtr = AS.begin()->getValue();
Chris Lattner2e6e7412003-02-24 03:52:32 +0000627
Chris Lattnere4880642010-08-29 06:43:52 +0000628 // It isn't safe to promote a load/store from the loop if the load/store is
629 // conditional. For example, turning:
Chris Lattner2e6e7412003-02-24 03:52:32 +0000630 //
Chris Lattnere4880642010-08-29 06:43:52 +0000631 // for () { if (c) *P += 1; }
Chris Lattner2e6e7412003-02-24 03:52:32 +0000632 //
Chris Lattnere4880642010-08-29 06:43:52 +0000633 // into:
634 //
635 // tmp = *P; for () { if (c) tmp +=1; } *P = tmp;
636 //
637 // is not safe, because *P may only be valid to access if 'c' is true.
638 //
639 // It is safe to promote P if all uses are direct load/stores and if at
640 // least one is guaranteed to be executed.
641 bool GuaranteedToExecute = false;
642
643 SmallVector<Instruction*, 64> LoopUses;
644 SmallPtrSet<Value*, 4> PointerMustAliases;
Chris Lattner2e6e7412003-02-24 03:52:32 +0000645
Chris Lattnere4880642010-08-29 06:43:52 +0000646 // Check that all of the pointers in the alias set have the same type. We
647 // cannot (yet) promote a memory location that is loaded and stored in
648 // different sizes.
649 for (AliasSet::iterator ASI = AS.begin(), E = AS.end(); ASI != E; ++ASI) {
650 Value *ASIV = ASI->getValue();
651 PointerMustAliases.insert(ASIV);
Chris Lattner29d92932008-05-22 00:53:38 +0000652
Chris Lattner29d92932008-05-22 00:53:38 +0000653 // Check that all of the pointers in the alias set have the same type. We
654 // cannot (yet) promote a memory location that is loaded and stored in
655 // different sizes.
Chris Lattnere4880642010-08-29 06:43:52 +0000656 if (SomePtr->getType() != ASIV->getType())
657 return;
658
659 for (Value::use_iterator UI = ASIV->use_begin(), UE = ASIV->use_end();
Chris Lattner19d9d432008-05-22 03:22:42 +0000660 UI != UE; ++UI) {
Chris Lattnere4880642010-08-29 06:43:52 +0000661 // Ignore instructions that are outside the loop.
Chris Lattner29d92932008-05-22 00:53:38 +0000662 Instruction *Use = dyn_cast<Instruction>(*UI);
Dan Gohman92329c72009-12-18 01:24:09 +0000663 if (!Use || !CurLoop->contains(Use))
Chris Lattner29d92932008-05-22 00:53:38 +0000664 continue;
Chris Lattnere4880642010-08-29 06:43:52 +0000665
666 // If there is an non-load/store instruction in the loop, we can't promote
667 // it.
668 if (isa<LoadInst>(Use))
669 assert(!cast<LoadInst>(Use)->isVolatile() && "AST broken");
670 else if (isa<StoreInst>(Use))
671 assert(!cast<StoreInst>(Use)->isVolatile() &&
672 Use->getOperand(0) != ASIV && "AST broken");
673 else
674 return; // Not a load or store.
Chris Lattner19d9d432008-05-22 03:22:42 +0000675
676 if (!GuaranteedToExecute)
677 GuaranteedToExecute = isSafeToExecuteUnconditionally(*Use);
Chris Lattnere4880642010-08-29 06:43:52 +0000678
679 LoopUses.push_back(Use);
680 }
681 }
682
683 // If there isn't a guaranteed-to-execute instruction, we can't promote.
684 if (!GuaranteedToExecute)
685 return;
686
687 // Otherwise, this is safe to promote, lets do it!
688 DEBUG(dbgs() << "LICM: Promoting value stored to in loop: " <<*SomePtr<<'\n');
689 Changed = true;
690 ++NumPromoted;
691
692 // We use the SSAUpdater interface to insert phi nodes as required.
693 SmallVector<PHINode*, 16> NewPHIs;
694 SSAUpdater SSA(&NewPHIs);
695
696 // It wants to know some value of the same type as what we'll be inserting.
697 Value *SomeValue;
698 if (isa<LoadInst>(LoopUses[0]))
699 SomeValue = LoopUses[0];
700 else
701 SomeValue = cast<StoreInst>(LoopUses[0])->getOperand(0);
702 SSA.Initialize(SomeValue);
703
704 // First step: bucket up uses of the pointers by the block they occur in.
705 // This is important because we have to handle multiple defs/uses in a block
706 // ourselves: SSAUpdater is purely for cross-block references.
707 // FIXME: Want a TinyVector<Instruction*> since there is usually 0/1 element.
708 DenseMap<BasicBlock*, std::vector<Instruction*> > UsesByBlock;
709 for (unsigned i = 0, e = LoopUses.size(); i != e; ++i) {
710 Instruction *User = LoopUses[i];
711 UsesByBlock[User->getParent()].push_back(User);
712 }
713
714 // Okay, now we can iterate over all the blocks in the loop with uses,
715 // processing them. Keep track of which loads are loading a live-in value.
716 SmallVector<LoadInst*, 32> LiveInLoads;
717
718 for (unsigned LoopUse = 0, e = LoopUses.size(); LoopUse != e; ++LoopUse) {
719 Instruction *User = LoopUses[LoopUse];
720 std::vector<Instruction*> &BlockUses = UsesByBlock[User->getParent()];
721
722 // If this block has already been processed, ignore this repeat use.
723 if (BlockUses.empty()) continue;
724
725 // Okay, this is the first use in the block. If this block just has a
726 // single user in it, we can rewrite it trivially.
727 if (BlockUses.size() == 1) {
728 // If it is a store, it is a trivial def of the value in the block.
729 if (isa<StoreInst>(User)) {
730 SSA.AddAvailableValue(User->getParent(),
731 cast<StoreInst>(User)->getOperand(0));
732 } else {
733 // Otherwise it is a load, queue it to rewrite as a live-in load.
734 LiveInLoads.push_back(cast<LoadInst>(User));
735 }
736 BlockUses.clear();
737 continue;
738 }
739
740 // Otherwise, check to see if this block is all loads. If so, we can queue
741 // them all as live in loads.
742 bool HasStore = false;
743 for (unsigned i = 0, e = BlockUses.size(); i != e; ++i) {
744 if (isa<StoreInst>(BlockUses[i])) {
745 HasStore = true;
746 break;
747 }
748 }
749
750 if (!HasStore) {
751 for (unsigned i = 0, e = BlockUses.size(); i != e; ++i)
752 LiveInLoads.push_back(cast<LoadInst>(BlockUses[i]));
753 BlockUses.clear();
754 continue;
Chris Lattner29d92932008-05-22 00:53:38 +0000755 }
756
Chris Lattnere4880642010-08-29 06:43:52 +0000757 // Otherwise, we have mixed loads and stores (or just a bunch of stores).
758 // Since SSAUpdater is purely for cross-block values, we need to determine
759 // the order of these instructions in the block. If the first use in the
760 // block is a load, then it uses the live in value. The last store defines
761 // the live out value. We handle this by doing a linear scan of the block.
762 BasicBlock *BB = User->getParent();
763 Value *StoredValue = 0;
764 for (BasicBlock::iterator II = BB->begin(), E = BB->end(); II != E; ++II) {
765 if (LoadInst *L = dyn_cast<LoadInst>(II)) {
766 // If this is a load to an unrelated pointer, ignore it.
767 if (!PointerMustAliases.count(L->getOperand(0))) continue;
768
769 // If we haven't seen a store yet, this is a live in use, otherwise
770 // use the stored value.
771 if (StoredValue)
772 L->replaceAllUsesWith(StoredValue);
773 else
774 LiveInLoads.push_back(L);
775 continue;
776 }
777
778 if (StoreInst *S = dyn_cast<StoreInst>(II)) {
779 // If this is a load to an unrelated pointer, ignore it.
780 if (!PointerMustAliases.count(S->getOperand(1))) continue;
781
782 // Remember that this is the active value in the block.
783 StoredValue = S->getOperand(0);
784 }
785 }
Chris Lattner29d92932008-05-22 00:53:38 +0000786
Chris Lattnere4880642010-08-29 06:43:52 +0000787 // The last stored value that happened is the live-out for the block.
788 assert(StoredValue && "Already checked that there is a store in block");
789 SSA.AddAvailableValue(BB, StoredValue);
790 BlockUses.clear();
Chris Lattner2e6e7412003-02-24 03:52:32 +0000791 }
Chris Lattnere4880642010-08-29 06:43:52 +0000792
793 // Now that all the intra-loop values are classified, set up the preheader.
794 // It gets a load of the pointer we're promoting, and it is the live-out value
795 // from the preheader.
796 LoadInst *PreheaderLoad = new LoadInst(SomePtr,SomePtr->getName()+".promoted",
797 Preheader->getTerminator());
798 SSA.AddAvailableValue(Preheader, PreheaderLoad);
799
800 // Now that the preheader is good to go, set up the exit blocks. Each exit
801 // block gets a store of the live-out values that feed them. Since we've
802 // already told the SSA updater about the defs in the loop and the preheader
803 // definition, it is all set and we can start using it.
804 SmallVector<BasicBlock*, 8> ExitBlocks;
805 CurLoop->getUniqueExitBlocks(ExitBlocks);
806 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i) {
807 BasicBlock *ExitBlock = ExitBlocks[i];
808 Value *LiveInValue = SSA.GetValueInMiddleOfBlock(ExitBlock);
809 Instruction *InsertPos = ExitBlock->getFirstNonPHI();
810 new StoreInst(LiveInValue, SomePtr, InsertPos);
811 }
812
813 // Okay, now we rewrite all loads that use live-in values in the loop,
814 // inserting PHI nodes as necessary.
815 for (unsigned i = 0, e = LiveInLoads.size(); i != e; ++i) {
816 LoadInst *ALoad = LiveInLoads[i];
817 ALoad->replaceAllUsesWith(SSA.GetValueInMiddleOfBlock(ALoad->getParent()));
818 }
819
820 // Now that everything is rewritten, delete the old instructions from the body
821 // of the loop. They should all be dead now.
822 for (unsigned i = 0, e = LoopUses.size(); i != e; ++i) {
823 Instruction *User = LoopUses[i];
824 CurAST->deleteValue(User);
825 User->eraseFromParent();
826 }
827
828 // If the preheader load is itself a pointer, we need to tell alias analysis
829 // about the new pointer we created in the preheader block and about any PHI
830 // nodes that just got inserted.
831 if (PreheaderLoad->getType()->isPointerTy()) {
832 // Copy any value stored to or loaded from a must-alias of the pointer.
833 CurAST->copyValue(SomeValue, PreheaderLoad);
834
835 for (unsigned i = 0, e = NewPHIs.size(); i != e; ++i)
836 CurAST->copyValue(SomeValue, NewPHIs[i]);
837 }
838
839 // fwew, we're done!
Chris Lattnerf5e84aa2002-08-22 21:39:55 +0000840}
Devang Patel91d22c82007-07-31 08:01:41 +0000841
Chris Lattnere4880642010-08-29 06:43:52 +0000842
Devang Patel91d22c82007-07-31 08:01:41 +0000843/// cloneBasicBlockAnalysis - Simple Analysis hook. Clone alias set info.
844void LICM::cloneBasicBlockAnalysis(BasicBlock *From, BasicBlock *To, Loop *L) {
845 AliasSetTracker *AST = LoopToAliasMap[L];
846 if (!AST)
847 return;
848
849 AST->copyValue(From, To);
850}
851
852/// deleteAnalysisValue - Simple Analysis hook. Delete value V from alias
853/// set.
854void LICM::deleteAnalysisValue(Value *V, Loop *L) {
855 AliasSetTracker *AST = LoopToAliasMap[L];
856 if (!AST)
857 return;
858
859 AST->deleteValue(V);
860}