blob: e6a8b2d572ea554f8be51d76fb9264303ed11409 [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>();
Chris Lattnere418ac82010-08-29 07:02:56 +000081 AU.addPreserved<AliasAnalysis>();
Devang Patel96b651c2007-07-30 20:19:59 +000082 AU.addPreserved<ScalarEvolution>();
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() {
Chris Lattner4282e322010-08-29 17:46:00 +000087 assert(LoopToAliasSetMap.empty() && "Didn't free loop alias sets");
Devang Patel54959d62007-03-07 04:41:30 +000088 return false;
89 }
90
Chris Lattnere0e734e2002-05-10 22:44:58 +000091 private:
Chris Lattner2e6e7412003-02-24 03:52:32 +000092 AliasAnalysis *AA; // Current AliasAnalysis information
Chris Lattner92094b42003-12-09 17:18:00 +000093 LoopInfo *LI; // Current LoopInfo
Chris Lattner44e2bd32010-08-29 06:49:44 +000094 DominatorTree *DT; // Dominator Tree for the current Loop.
Chris Lattner92094b42003-12-09 17:18:00 +000095
Chris Lattner4282e322010-08-29 17:46:00 +000096 // State that is updated as we process loops.
Chris Lattner2e6e7412003-02-24 03:52:32 +000097 bool Changed; // Set to true when we change anything.
98 BasicBlock *Preheader; // The preheader block of the current loop...
99 Loop *CurLoop; // The current loop we are working on...
Chris Lattner0252e492003-03-03 23:32:45 +0000100 AliasSetTracker *CurAST; // AliasSet information for the current loop...
Chris Lattner4282e322010-08-29 17:46:00 +0000101 DenseMap<Loop*, AliasSetTracker*> LoopToAliasSetMap;
Chris Lattnere0e734e2002-05-10 22:44:58 +0000102
Devang Patel91d22c82007-07-31 08:01:41 +0000103 /// cloneBasicBlockAnalysis - Simple Analysis hook. Clone alias set info.
104 void cloneBasicBlockAnalysis(BasicBlock *From, BasicBlock *To, Loop *L);
105
106 /// deleteAnalysisValue - Simple Analysis hook. Delete value V from alias
107 /// set.
108 void deleteAnalysisValue(Value *V, Loop *L);
109
Chris Lattnere4365b22003-12-19 07:22:45 +0000110 /// SinkRegion - Walk the specified region of the CFG (defined by all blocks
111 /// dominated by the specified block, and that are in the current loop) in
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000112 /// reverse depth first order w.r.t the DominatorTree. This allows us to
Chris Lattnere4365b22003-12-19 07:22:45 +0000113 /// visit uses before definitions, allowing us to sink a loop body in one
114 /// pass without iteration.
115 ///
Devang Patel26042422007-06-04 00:32:22 +0000116 void SinkRegion(DomTreeNode *N);
Chris Lattnere4365b22003-12-19 07:22:45 +0000117
Chris Lattner952eaee2002-09-29 21:46:09 +0000118 /// HoistRegion - Walk the specified region of the CFG (defined by all
119 /// blocks dominated by the specified block, and that are in the current
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000120 /// loop) in depth first order w.r.t the DominatorTree. This allows us to
Misha Brukmancf00c4a2003-10-10 17:57:28 +0000121 /// visit definitions before uses, allowing us to hoist a loop body in one
Chris Lattner952eaee2002-09-29 21:46:09 +0000122 /// pass without iteration.
123 ///
Devang Patel26042422007-06-04 00:32:22 +0000124 void HoistRegion(DomTreeNode *N);
Chris Lattner952eaee2002-09-29 21:46:09 +0000125
Chris Lattnerb4613732002-09-29 22:26:07 +0000126 /// inSubLoop - Little predicate that returns true if the specified basic
127 /// block is in a subloop of the current one, not the current one itself.
Chris Lattner94170592002-09-26 16:52:07 +0000128 ///
Chris Lattnerb4613732002-09-29 22:26:07 +0000129 bool inSubLoop(BasicBlock *BB) {
130 assert(CurLoop->contains(BB) && "Only valid if BB is IN the loop");
Chris Lattner329c1c62004-01-08 00:09:44 +0000131 for (Loop::iterator I = CurLoop->begin(), E = CurLoop->end(); I != E; ++I)
132 if ((*I)->contains(BB))
Chris Lattnerb4613732002-09-29 22:26:07 +0000133 return true; // A subloop actually contains this block!
134 return false;
Chris Lattnere0e734e2002-05-10 22:44:58 +0000135 }
136
Chris Lattnera2706512003-12-10 06:41:05 +0000137 /// isExitBlockDominatedByBlockInLoop - This method checks to see if the
138 /// specified exit block of the loop is dominated by the specified block
139 /// that is in the body of the loop. We use these constraints to
140 /// dramatically limit the amount of the dominator tree that needs to be
141 /// searched.
142 bool isExitBlockDominatedByBlockInLoop(BasicBlock *ExitBlock,
143 BasicBlock *BlockInLoop) const {
144 // If the block in the loop is the loop header, it must be dominated!
145 BasicBlock *LoopHeader = CurLoop->getHeader();
146 if (BlockInLoop == LoopHeader)
147 return true;
Misha Brukmanfd939082005-04-21 23:48:37 +0000148
Devang Patel26042422007-06-04 00:32:22 +0000149 DomTreeNode *BlockInLoopNode = DT->getNode(BlockInLoop);
150 DomTreeNode *IDom = DT->getNode(ExitBlock);
Misha Brukmanfd939082005-04-21 23:48:37 +0000151
Chris Lattnera2706512003-12-10 06:41:05 +0000152 // Because the exit block is not in the loop, we know we have to get _at
Chris Lattner2741c972004-05-23 21:20:19 +0000153 // least_ its immediate dominator.
Eric Christopher3472ae12009-12-10 00:25:41 +0000154 IDom = IDom->getIDom();
155
156 while (IDom && IDom != BlockInLoopNode) {
Chris Lattnera2706512003-12-10 06:41:05 +0000157 // If we have got to the header of the loop, then the instructions block
158 // did not dominate the exit node, so we can't hoist it.
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000159 if (IDom->getBlock() == LoopHeader)
Chris Lattnera2706512003-12-10 06:41:05 +0000160 return false;
Misha Brukmanfd939082005-04-21 23:48:37 +0000161
Eric Christopher3472ae12009-12-10 00:25:41 +0000162 // Get next Immediate Dominator.
163 IDom = IDom->getIDom();
164 };
Chris Lattnera2706512003-12-10 06:41:05 +0000165
166 return true;
167 }
168
169 /// sink - When an instruction is found to only be used outside of the loop,
170 /// this function moves it to the exit blocks and patches up SSA form as
171 /// needed.
172 ///
173 void sink(Instruction &I);
174
Chris Lattner94170592002-09-26 16:52:07 +0000175 /// hoist - When an instruction is found to only use loop invariant operands
176 /// that is safe to hoist, this instruction is called to do the dirty work.
177 ///
Chris Lattner7e708292002-06-25 16:13:24 +0000178 void hoist(Instruction &I);
Chris Lattnere0e734e2002-05-10 22:44:58 +0000179
Chris Lattnera2706512003-12-10 06:41:05 +0000180 /// isSafeToExecuteUnconditionally - Only sink or hoist an instruction if it
181 /// is not a trapping instruction or if it is a trapping instruction and is
182 /// guaranteed to execute.
Tanya Lattner9966c032003-08-05 18:45:46 +0000183 ///
Chris Lattnera2706512003-12-10 06:41:05 +0000184 bool isSafeToExecuteUnconditionally(Instruction &I);
Tanya Lattner9966c032003-08-05 18:45:46 +0000185
Chris Lattner94170592002-09-26 16:52:07 +0000186 /// pointerInvalidatedByLoop - Return true if the body of this loop may
187 /// store into the memory location pointed to by V.
Misha Brukmanfd939082005-04-21 23:48:37 +0000188 ///
Chris Lattnerf3e1d692004-11-26 21:20:09 +0000189 bool pointerInvalidatedByLoop(Value *V, unsigned Size) {
Chris Lattner0252e492003-03-03 23:32:45 +0000190 // Check to see if any of the basic blocks in CurLoop invalidate *V.
Chris Lattnerf3e1d692004-11-26 21:20:09 +0000191 return CurAST->getAliasSetForPointer(V, Size).isMod();
Chris Lattner2e6e7412003-02-24 03:52:32 +0000192 }
Chris Lattnerf5e84aa2002-08-22 21:39:55 +0000193
Chris Lattnera2706512003-12-10 06:41:05 +0000194 bool canSinkOrHoistInst(Instruction &I);
195 bool isLoopInvariantInst(Instruction &I);
196 bool isNotUsedInLoop(Instruction &I);
Chris Lattnere0e734e2002-05-10 22:44:58 +0000197
Chris Lattnere4880642010-08-29 06:43:52 +0000198 void PromoteAliasSet(AliasSet &AS);
Chris Lattnere0e734e2002-05-10 22:44:58 +0000199 };
200}
201
Dan Gohman844731a2008-05-13 00:00:25 +0000202char LICM::ID = 0;
Owen Andersond13db2c2010-07-21 22:09:45 +0000203INITIALIZE_PASS(LICM, "licm", "Loop Invariant Code Motion", false, false);
Dan Gohman844731a2008-05-13 00:00:25 +0000204
Daniel Dunbar394f0442008-10-22 23:32:42 +0000205Pass *llvm::createLICMPass() { return new LICM(); }
Chris Lattnere0e734e2002-05-10 22:44:58 +0000206
Devang Patel8d246f02007-07-31 16:52:25 +0000207/// Hoist expressions out of the specified loop. Note, alias info for inner
208/// loop is not preserved so it is not a good idea to run LICM multiple
209/// times on one loop.
Chris Lattner94170592002-09-26 16:52:07 +0000210///
Devang Patel54959d62007-03-07 04:41:30 +0000211bool LICM::runOnLoop(Loop *L, LPPassManager &LPM) {
Chris Lattner2e6e7412003-02-24 03:52:32 +0000212 Changed = false;
Chris Lattnere0e734e2002-05-10 22:44:58 +0000213
Chris Lattner2e6e7412003-02-24 03:52:32 +0000214 // Get our Loop and Alias Analysis information...
215 LI = &getAnalysis<LoopInfo>();
Chris Lattnerf5e84aa2002-08-22 21:39:55 +0000216 AA = &getAnalysis<AliasAnalysis>();
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000217 DT = &getAnalysis<DominatorTree>();
Chris Lattnerf5e84aa2002-08-22 21:39:55 +0000218
Devang Patel54959d62007-03-07 04:41:30 +0000219 CurAST = new AliasSetTracker(*AA);
Chris Lattner4282e322010-08-29 17:46:00 +0000220 // Collect Alias info from subloops.
Devang Patel54959d62007-03-07 04:41:30 +0000221 for (Loop::iterator LoopItr = L->begin(), LoopItrE = L->end();
222 LoopItr != LoopItrE; ++LoopItr) {
223 Loop *InnerL = *LoopItr;
Chris Lattner4282e322010-08-29 17:46:00 +0000224 AliasSetTracker *InnerAST = LoopToAliasSetMap[InnerL];
225 assert(InnerAST && "Where is my AST?");
Devang Patel54959d62007-03-07 04:41:30 +0000226
227 // What if InnerLoop was modified by other passes ?
228 CurAST->add(*InnerAST);
Chris Lattner4282e322010-08-29 17:46:00 +0000229
230 // Once we've incorporated the inner loop's AST into ours, we don't need the
231 // subloop's anymore.
232 delete InnerAST;
233 LoopToAliasSetMap.erase(InnerL);
Chris Lattner2e6e7412003-02-24 03:52:32 +0000234 }
Devang Patel54959d62007-03-07 04:41:30 +0000235
Chris Lattnere0e734e2002-05-10 22:44:58 +0000236 CurLoop = L;
237
Chris Lattner99a57212002-09-26 19:40:25 +0000238 // Get the preheader block to move instructions into...
239 Preheader = L->getLoopPreheader();
Chris Lattner99a57212002-09-26 19:40:25 +0000240
Chris Lattner2e6e7412003-02-24 03:52:32 +0000241 // Loop over the body of this loop, looking for calls, invokes, and stores.
Chris Lattner0252e492003-03-03 23:32:45 +0000242 // Because subloops have already been incorporated into AST, we skip blocks in
Chris Lattner2e6e7412003-02-24 03:52:32 +0000243 // subloops.
244 //
Dan Gohman9b787632008-06-22 20:18:58 +0000245 for (Loop::block_iterator I = L->block_begin(), E = L->block_end();
246 I != E; ++I) {
247 BasicBlock *BB = *I;
Chris Lattner4282e322010-08-29 17:46:00 +0000248 if (LI->getLoopFor(BB) == L) // Ignore blocks in subloops.
Dan Gohman9b787632008-06-22 20:18:58 +0000249 CurAST->add(*BB); // Incorporate the specified basic block
250 }
Chris Lattner2e6e7412003-02-24 03:52:32 +0000251
Chris Lattnere0e734e2002-05-10 22:44:58 +0000252 // We want to visit all of the instructions in this loop... that are not parts
253 // of our subloops (they have already had their invariants hoisted out of
254 // their loop, into this loop, so there is no need to process the BODIES of
255 // the subloops).
256 //
Chris Lattner952eaee2002-09-29 21:46:09 +0000257 // Traverse the body of the loop in depth first order on the dominator tree so
258 // that we are guaranteed to see definitions before we see uses. This allows
Nick Lewyckyaf5cbc82007-08-18 15:08:56 +0000259 // us to sink instructions in one pass, without iteration. After sinking
Chris Lattnere4365b22003-12-19 07:22:45 +0000260 // instructions, we perform another pass to hoist them out of the loop.
Chris Lattner952eaee2002-09-29 21:46:09 +0000261 //
Dan Gohman03e896b2009-11-05 21:11:53 +0000262 if (L->hasDedicatedExits())
263 SinkRegion(DT->getNode(L->getHeader()));
264 if (Preheader)
265 HoistRegion(DT->getNode(L->getHeader()));
Chris Lattnere0e734e2002-05-10 22:44:58 +0000266
Chris Lattner2e6e7412003-02-24 03:52:32 +0000267 // Now that all loop invariants have been removed from the loop, promote any
Chris Lattnere4880642010-08-29 06:43:52 +0000268 // memory references to scalars that we can.
269 if (!DisablePromotion && Preheader && L->hasDedicatedExits()) {
270 // Loop over all of the alias sets in the tracker object.
271 for (AliasSetTracker::iterator I = CurAST->begin(), E = CurAST->end();
272 I != E; ++I)
273 PromoteAliasSet(*I);
274 }
275
Chris Lattnere0e734e2002-05-10 22:44:58 +0000276 // Clear out loops state information for the next iteration
277 CurLoop = 0;
Chris Lattner99a57212002-09-26 19:40:25 +0000278 Preheader = 0;
Devang Patel54959d62007-03-07 04:41:30 +0000279
Chris Lattner4282e322010-08-29 17:46:00 +0000280 // If this loop is nested inside of another one, save the alias information
281 // for when we process the outer loop.
282 if (L->getParentLoop())
283 LoopToAliasSetMap[L] = CurAST;
284 else
285 delete CurAST;
Devang Patel54959d62007-03-07 04:41:30 +0000286 return Changed;
Chris Lattnere0e734e2002-05-10 22:44:58 +0000287}
288
Chris Lattnere4365b22003-12-19 07:22:45 +0000289/// SinkRegion - Walk the specified region of the CFG (defined by all blocks
290/// dominated by the specified block, and that are in the current loop) in
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000291/// reverse depth first order w.r.t the DominatorTree. This allows us to visit
Chris Lattnere4365b22003-12-19 07:22:45 +0000292/// uses before definitions, allowing us to sink a loop body in one pass without
293/// iteration.
294///
Devang Patel26042422007-06-04 00:32:22 +0000295void LICM::SinkRegion(DomTreeNode *N) {
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000296 assert(N != 0 && "Null dominator tree node?");
297 BasicBlock *BB = N->getBlock();
Chris Lattnere4365b22003-12-19 07:22:45 +0000298
299 // If this subregion is not in the top level loop at all, exit.
300 if (!CurLoop->contains(BB)) return;
301
302 // We are processing blocks in reverse dfo, so process children first...
Devang Patel26042422007-06-04 00:32:22 +0000303 const std::vector<DomTreeNode*> &Children = N->getChildren();
Chris Lattnere4365b22003-12-19 07:22:45 +0000304 for (unsigned i = 0, e = Children.size(); i != e; ++i)
305 SinkRegion(Children[i]);
306
307 // Only need to process the contents of this block if it is not part of a
308 // subloop (which would already have been processed).
309 if (inSubLoop(BB)) return;
310
Chris Lattnera3df8a92003-12-19 08:18:16 +0000311 for (BasicBlock::iterator II = BB->end(); II != BB->begin(); ) {
312 Instruction &I = *--II;
Misha Brukmanfd939082005-04-21 23:48:37 +0000313
Chris Lattnere4365b22003-12-19 07:22:45 +0000314 // Check to see if we can sink this instruction to the exit blocks
315 // of the loop. We can do this if the all users of the instruction are
316 // outside of the loop. In this case, it doesn't even matter if the
317 // operands of the instruction are loop invariant.
318 //
Chris Lattner70ac2dc2005-03-25 00:22:36 +0000319 if (isNotUsedInLoop(I) && canSinkOrHoistInst(I)) {
Chris Lattnera3df8a92003-12-19 08:18:16 +0000320 ++II;
Chris Lattnere4365b22003-12-19 07:22:45 +0000321 sink(I);
Chris Lattnera3df8a92003-12-19 08:18:16 +0000322 }
Chris Lattnere4365b22003-12-19 07:22:45 +0000323 }
324}
325
Chris Lattner952eaee2002-09-29 21:46:09 +0000326/// HoistRegion - Walk the specified region of the CFG (defined by all blocks
327/// dominated by the specified block, and that are in the current loop) in depth
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000328/// first order w.r.t the DominatorTree. This allows us to visit definitions
Chris Lattner952eaee2002-09-29 21:46:09 +0000329/// before uses, allowing us to hoist a loop body in one pass without iteration.
330///
Devang Patel26042422007-06-04 00:32:22 +0000331void LICM::HoistRegion(DomTreeNode *N) {
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000332 assert(N != 0 && "Null dominator tree node?");
333 BasicBlock *BB = N->getBlock();
Chris Lattner952eaee2002-09-29 21:46:09 +0000334
Chris Lattnerb4613732002-09-29 22:26:07 +0000335 // If this subregion is not in the top level loop at all, exit.
Chris Lattnered6dfc22003-12-09 19:32:44 +0000336 if (!CurLoop->contains(BB)) return;
Chris Lattner952eaee2002-09-29 21:46:09 +0000337
Chris Lattnera2706512003-12-10 06:41:05 +0000338 // Only need to process the contents of this block if it is not part of a
339 // subloop (which would already have been processed).
Chris Lattnered6dfc22003-12-09 19:32:44 +0000340 if (!inSubLoop(BB))
Chris Lattnera2706512003-12-10 06:41:05 +0000341 for (BasicBlock::iterator II = BB->begin(), E = BB->end(); II != E; ) {
342 Instruction &I = *II++;
Misha Brukmanfd939082005-04-21 23:48:37 +0000343
Chris Lattnere4365b22003-12-19 07:22:45 +0000344 // Try hoisting the instruction out to the preheader. We can only do this
345 // if all of the operands of the instruction are loop invariant and if it
346 // is safe to hoist the instruction.
347 //
Misha Brukmanfd939082005-04-21 23:48:37 +0000348 if (isLoopInvariantInst(I) && canSinkOrHoistInst(I) &&
Chris Lattnere4365b22003-12-19 07:22:45 +0000349 isSafeToExecuteUnconditionally(I))
Chris Lattner3c80a512006-06-26 19:10:05 +0000350 hoist(I);
Chris Lattnera2706512003-12-10 06:41:05 +0000351 }
Chris Lattner952eaee2002-09-29 21:46:09 +0000352
Devang Patel26042422007-06-04 00:32:22 +0000353 const std::vector<DomTreeNode*> &Children = N->getChildren();
Chris Lattner952eaee2002-09-29 21:46:09 +0000354 for (unsigned i = 0, e = Children.size(); i != e; ++i)
Chris Lattner56b7ee22004-06-19 20:23:35 +0000355 HoistRegion(Children[i]);
Chris Lattner952eaee2002-09-29 21:46:09 +0000356}
357
Chris Lattnera2706512003-12-10 06:41:05 +0000358/// canSinkOrHoistInst - Return true if the hoister and sinker can handle this
359/// instruction.
360///
361bool LICM::canSinkOrHoistInst(Instruction &I) {
Chris Lattnered6dfc22003-12-09 19:32:44 +0000362 // Loads have extra constraints we have to verify before we can hoist them.
363 if (LoadInst *LI = dyn_cast<LoadInst>(&I)) {
364 if (LI->isVolatile())
365 return false; // Don't hoist volatile loads!
366
Chris Lattner967948b2008-07-23 05:06:28 +0000367 // Loads from constant memory are always safe to move, even if they end up
368 // in the same alias set as something that ends up being modified.
Dan Gohmandab249b2009-11-19 19:00:10 +0000369 if (AA->pointsToConstantMemory(LI->getOperand(0)))
Chris Lattner967948b2008-07-23 05:06:28 +0000370 return true;
371
Chris Lattnered6dfc22003-12-09 19:32:44 +0000372 // Don't hoist loads which have may-aliased stores in loop.
Chris Lattnerf3e1d692004-11-26 21:20:09 +0000373 unsigned Size = 0;
374 if (LI->getType()->isSized())
Dan Gohmanfc2a3ed2009-07-25 00:48:42 +0000375 Size = AA->getTypeStoreSize(LI->getType());
Chris Lattnerf3e1d692004-11-26 21:20:09 +0000376 return !pointerInvalidatedByLoop(LI->getOperand(0), Size);
Chris Lattner118dd0c2004-03-15 04:11:30 +0000377 } else if (CallInst *CI = dyn_cast<CallInst>(&I)) {
378 // Handle obvious cases efficiently.
Duncan Sandsdff67102007-12-01 07:51:45 +0000379 AliasAnalysis::ModRefBehavior Behavior = AA->getModRefBehavior(CI);
380 if (Behavior == AliasAnalysis::DoesNotAccessMemory)
381 return true;
382 else if (Behavior == AliasAnalysis::OnlyReadsMemory) {
383 // If this call only reads from memory and there are no writes to memory
384 // in the loop, we can hoist or sink the call as appropriate.
385 bool FoundMod = false;
386 for (AliasSetTracker::iterator I = CurAST->begin(), E = CurAST->end();
387 I != E; ++I) {
388 AliasSet &AS = *I;
389 if (!AS.isForwardingAliasSet() && AS.isMod()) {
390 FoundMod = true;
391 break;
Chris Lattner118dd0c2004-03-15 04:11:30 +0000392 }
Chris Lattner118dd0c2004-03-15 04:11:30 +0000393 }
Duncan Sandsdff67102007-12-01 07:51:45 +0000394 if (!FoundMod) return true;
Chris Lattner118dd0c2004-03-15 04:11:30 +0000395 }
396
397 // FIXME: This should use mod/ref information to see if we can hoist or sink
398 // the call.
Misha Brukmanfd939082005-04-21 23:48:37 +0000399
Chris Lattner118dd0c2004-03-15 04:11:30 +0000400 return false;
Chris Lattnered6dfc22003-12-09 19:32:44 +0000401 }
402
Reid Spencer3da59db2006-11-27 01:05:10 +0000403 // Otherwise these instructions are hoistable/sinkable
Reid Spencer832254e2007-02-02 02:16:23 +0000404 return isa<BinaryOperator>(I) || isa<CastInst>(I) ||
Dan Gohmand8af90c2007-06-05 16:05:55 +0000405 isa<SelectInst>(I) || isa<GetElementPtrInst>(I) || isa<CmpInst>(I) ||
406 isa<InsertElementInst>(I) || isa<ExtractElementInst>(I) ||
407 isa<ShuffleVectorInst>(I);
Chris Lattnera2706512003-12-10 06:41:05 +0000408}
409
410/// isNotUsedInLoop - Return true if the only users of this instruction are
411/// outside of the loop. If this is true, we can sink the instruction to the
412/// exit blocks of the loop.
413///
414bool LICM::isNotUsedInLoop(Instruction &I) {
Chris Lattnerea9403f2003-12-11 22:23:32 +0000415 for (Value::use_iterator UI = I.use_begin(), E = I.use_end(); UI != E; ++UI) {
416 Instruction *User = cast<Instruction>(*UI);
417 if (PHINode *PN = dyn_cast<PHINode>(User)) {
418 // PHI node uses occur in predecessor blocks!
419 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
420 if (PN->getIncomingValue(i) == &I)
421 if (CurLoop->contains(PN->getIncomingBlock(i)))
422 return false;
Dan Gohman92329c72009-12-18 01:24:09 +0000423 } else if (CurLoop->contains(User)) {
Chris Lattnera2706512003-12-10 06:41:05 +0000424 return false;
Chris Lattnerea9403f2003-12-11 22:23:32 +0000425 }
426 }
Chris Lattnera2706512003-12-10 06:41:05 +0000427 return true;
428}
429
430
431/// isLoopInvariantInst - Return true if all operands of this instruction are
432/// loop invariant. We also filter out non-hoistable instructions here just for
433/// efficiency.
434///
435bool LICM::isLoopInvariantInst(Instruction &I) {
436 // The instruction is loop invariant if all of its operands are loop-invariant
437 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i)
Chris Lattner3280f7b2004-04-18 22:46:08 +0000438 if (!CurLoop->isLoopInvariant(I.getOperand(i)))
Chris Lattnera2706512003-12-10 06:41:05 +0000439 return false;
440
Chris Lattnered6dfc22003-12-09 19:32:44 +0000441 // If we got this far, the instruction is loop invariant!
442 return true;
443}
444
Chris Lattnera2706512003-12-10 06:41:05 +0000445/// sink - When an instruction is found to only be used outside of the loop,
Chris Lattnera3df8a92003-12-19 08:18:16 +0000446/// this function moves it to the exit blocks and patches up SSA form as needed.
447/// This method is guaranteed to remove the original instruction from its
448/// position, and may either delete it or move it to outside of the loop.
Chris Lattnera2706512003-12-10 06:41:05 +0000449///
450void LICM::sink(Instruction &I) {
Nick Lewycky39a38312010-07-30 20:27:01 +0000451 DEBUG(dbgs() << "LICM sinking instruction: " << I << "\n");
Chris Lattnera2706512003-12-10 06:41:05 +0000452
Devang Patelb7211a22007-08-21 00:31:24 +0000453 SmallVector<BasicBlock*, 8> ExitBlocks;
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000454 CurLoop->getUniqueExitBlocks(ExitBlocks);
Chris Lattnerdf45bd32003-12-10 20:43:29 +0000455
456 if (isa<LoadInst>(I)) ++NumMovedLoads;
Chris Lattner118dd0c2004-03-15 04:11:30 +0000457 else if (isa<CallInst>(I)) ++NumMovedCalls;
Chris Lattnerdf45bd32003-12-10 20:43:29 +0000458 ++NumSunk;
459 Changed = true;
460
Chris Lattnera2706512003-12-10 06:41:05 +0000461 // The case where there is only a single exit node of this loop is common
462 // enough that we handle it as a special (more efficient) case. It is more
463 // efficient to handle because there are no PHI nodes that need to be placed.
464 if (ExitBlocks.size() == 1) {
465 if (!isExitBlockDominatedByBlockInLoop(ExitBlocks[0], I.getParent())) {
466 // Instruction is not used, just delete it.
Chris Lattner2741c972004-05-23 21:20:19 +0000467 CurAST->deleteValue(&I);
Devang Patel1bf5ebc2009-10-13 21:41:20 +0000468 // If I has users in unreachable blocks, eliminate.
Devang Patel228ebd02009-10-13 22:56:32 +0000469 // If I is not void type then replaceAllUsesWith undef.
470 // This allows ValueHandlers and custom metadata to adjust itself.
Chris Lattnera6a36f52010-08-29 04:55:06 +0000471 if (!I.use_empty())
Devang Patel228ebd02009-10-13 22:56:32 +0000472 I.replaceAllUsesWith(UndefValue::get(I.getType()));
Chris Lattner3c80a512006-06-26 19:10:05 +0000473 I.eraseFromParent();
Chris Lattnera2706512003-12-10 06:41:05 +0000474 } else {
475 // Move the instruction to the start of the exit block, after any PHI
476 // nodes in it.
Chris Lattner3c80a512006-06-26 19:10:05 +0000477 I.removeFromParent();
Dan Gohman02dea8b2008-05-23 21:05:58 +0000478 BasicBlock::iterator InsertPt = ExitBlocks[0]->getFirstNonPHI();
Chris Lattnera2706512003-12-10 06:41:05 +0000479 ExitBlocks[0]->getInstList().insert(InsertPt, &I);
Chris Lattner4282e322010-08-29 17:46:00 +0000480
481 // This instruction is no longer in the AST for the current loop, because
482 // we just sunk it out of the loop. If we just sunk it into an outer
483 // loop, we will rediscover the operation when we process it.
484 CurAST->deleteValue(&I);
Chris Lattnera2706512003-12-10 06:41:05 +0000485 }
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000486 return;
487 }
488
489 if (ExitBlocks.empty()) {
Chris Lattnera2706512003-12-10 06:41:05 +0000490 // The instruction is actually dead if there ARE NO exit blocks.
Chris Lattner2741c972004-05-23 21:20:19 +0000491 CurAST->deleteValue(&I);
Devang Patel1bf5ebc2009-10-13 21:41:20 +0000492 // If I has users in unreachable blocks, eliminate.
Devang Patel228ebd02009-10-13 22:56:32 +0000493 // If I is not void type then replaceAllUsesWith undef.
494 // This allows ValueHandlers and custom metadata to adjust itself.
Chris Lattnera6a36f52010-08-29 04:55:06 +0000495 if (!I.use_empty())
Devang Patel228ebd02009-10-13 22:56:32 +0000496 I.replaceAllUsesWith(UndefValue::get(I.getType()));
Chris Lattner3c80a512006-06-26 19:10:05 +0000497 I.eraseFromParent();
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000498 return;
499 }
500
Chris Lattnera6a36f52010-08-29 04:55:06 +0000501 // Otherwise, if we have multiple exits, use the SSAUpdater to do all of the
502 // hard work of inserting PHI nodes as necessary.
503 SmallVector<PHINode*, 8> NewPHIs;
504 SSAUpdater SSA(&NewPHIs);
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000505
Chris Lattnera6a36f52010-08-29 04:55:06 +0000506 if (!I.use_empty())
507 SSA.Initialize(&I);
508
509 // Insert a copy of the instruction in each exit block of the loop that is
510 // dominated by the instruction. Each exit block is known to only be in the
511 // ExitBlocks list once.
512 BasicBlock *InstOrigBB = I.getParent();
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000513 unsigned NumInserted = 0;
Chris Lattnera6a36f52010-08-29 04:55:06 +0000514
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000515 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i) {
516 BasicBlock *ExitBlock = ExitBlocks[i];
Chris Lattnera6a36f52010-08-29 04:55:06 +0000517
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000518 if (!isExitBlockDominatedByBlockInLoop(ExitBlock, InstOrigBB))
519 continue;
520
Chris Lattnera6a36f52010-08-29 04:55:06 +0000521 // Insert the code after the last PHI node.
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000522 BasicBlock::iterator InsertPt = ExitBlock->getFirstNonPHI();
Chris Lattnera6a36f52010-08-29 04:55:06 +0000523
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000524 // If this is the first exit block processed, just move the original
525 // instruction, otherwise clone the original instruction and insert
526 // the copy.
527 Instruction *New;
Chris Lattnera6a36f52010-08-29 04:55:06 +0000528 if (NumInserted++ == 0) {
529 I.moveBefore(InsertPt);
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000530 New = &I;
531 } else {
532 New = I.clone();
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000533 if (!I.getName().empty())
534 New->setName(I.getName()+".le");
535 ExitBlock->getInstList().insert(InsertPt, New);
Chris Lattnereaa24302004-07-27 07:38:32 +0000536 }
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000537
Chris Lattnera6a36f52010-08-29 04:55:06 +0000538 // Now that we have inserted the instruction, inform SSAUpdater.
539 if (!I.use_empty())
540 SSA.AddAvailableValue(ExitBlock, New);
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000541 }
Chris Lattnera6a36f52010-08-29 04:55:06 +0000542
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000543 // If the instruction doesn't dominate any exit blocks, it must be dead.
544 if (NumInserted == 0) {
545 CurAST->deleteValue(&I);
Chris Lattnera6a36f52010-08-29 04:55:06 +0000546 if (!I.use_empty())
547 I.replaceAllUsesWith(UndefValue::get(I.getType()));
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000548 I.eraseFromParent();
Chris Lattnera6a36f52010-08-29 04:55:06 +0000549 return;
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000550 }
Chris Lattnera6a36f52010-08-29 04:55:06 +0000551
552 // Next, rewrite uses of the instruction, inserting PHI nodes as needed.
553 for (Value::use_iterator UI = I.use_begin(), UE = I.use_end(); UI != UE; ) {
554 // Grab the use before incrementing the iterator.
555 Use &U = UI.getUse();
556 // Increment the iterator before removing the use from the list.
557 ++UI;
558 SSA.RewriteUseAfterInsertions(U);
Chris Lattnera2706512003-12-10 06:41:05 +0000559 }
Chris Lattnera6a36f52010-08-29 04:55:06 +0000560
561 // Update CurAST for NewPHIs if I had pointer type.
562 if (I.getType()->isPointerTy())
563 for (unsigned i = 0, e = NewPHIs.size(); i != e; ++i)
564 CurAST->copyValue(NewPHIs[i], &I);
Chris Lattner98917502010-08-29 18:00:00 +0000565
566 // Finally, remove the instruction from CurAST. It is no longer in the loop.
567 CurAST->deleteValue(&I);
Chris Lattnera2706512003-12-10 06:41:05 +0000568}
Chris Lattner952eaee2002-09-29 21:46:09 +0000569
Chris Lattner94170592002-09-26 16:52:07 +0000570/// hoist - When an instruction is found to only use loop invariant operands
571/// that is safe to hoist, this instruction is called to do the dirty work.
572///
Chris Lattnera2706512003-12-10 06:41:05 +0000573void LICM::hoist(Instruction &I) {
David Greenef1582692010-01-05 01:27:30 +0000574 DEBUG(dbgs() << "LICM hoisting to " << Preheader->getName() << ": "
Evan Cheng67d1d1f2009-10-12 22:25:23 +0000575 << I << "\n");
Chris Lattnered6dfc22003-12-09 19:32:44 +0000576
Chris Lattner99a57212002-09-26 19:40:25 +0000577 // Remove the instruction from its current basic block... but don't delete the
578 // instruction.
Chris Lattner3c80a512006-06-26 19:10:05 +0000579 I.removeFromParent();
Chris Lattnere0e734e2002-05-10 22:44:58 +0000580
Chris Lattner9646e6b2002-09-26 16:38:03 +0000581 // Insert the new node in Preheader, before the terminator.
Chris Lattnera2706512003-12-10 06:41:05 +0000582 Preheader->getInstList().insert(Preheader->getTerminator(), &I);
Misha Brukmanfd939082005-04-21 23:48:37 +0000583
Chris Lattnera2706512003-12-10 06:41:05 +0000584 if (isa<LoadInst>(I)) ++NumMovedLoads;
Chris Lattner118dd0c2004-03-15 04:11:30 +0000585 else if (isa<CallInst>(I)) ++NumMovedCalls;
Chris Lattner9646e6b2002-09-26 16:38:03 +0000586 ++NumHoisted;
Chris Lattnere0e734e2002-05-10 22:44:58 +0000587 Changed = true;
588}
589
Chris Lattnera2706512003-12-10 06:41:05 +0000590/// isSafeToExecuteUnconditionally - Only sink or hoist an instruction if it is
591/// not a trapping instruction or if it is a trapping instruction and is
592/// guaranteed to execute.
Tanya Lattner9966c032003-08-05 18:45:46 +0000593///
Chris Lattnera2706512003-12-10 06:41:05 +0000594bool LICM::isSafeToExecuteUnconditionally(Instruction &Inst) {
Chris Lattner92094b42003-12-09 17:18:00 +0000595 // If it is not a trapping instruction, it is always safe to hoist.
Eli Friedman0b79a772009-07-17 04:28:42 +0000596 if (Inst.isSafeToSpeculativelyExecute())
597 return true;
Misha Brukmanfd939082005-04-21 23:48:37 +0000598
Chris Lattner92094b42003-12-09 17:18:00 +0000599 // Otherwise we have to check to make sure that the instruction dominates all
600 // of the exit blocks. If it doesn't, then there is a path out of the loop
601 // which does not execute this instruction, so we can't hoist it.
Tanya Lattner9966c032003-08-05 18:45:46 +0000602
Chris Lattner92094b42003-12-09 17:18:00 +0000603 // If the instruction is in the header block for the loop (which is very
604 // common), it is always guaranteed to dominate the exit blocks. Since this
605 // is a common case, and can save some work, check it now.
Chris Lattnera2706512003-12-10 06:41:05 +0000606 if (Inst.getParent() == CurLoop->getHeader())
Chris Lattner92094b42003-12-09 17:18:00 +0000607 return true;
Tanya Lattner9966c032003-08-05 18:45:46 +0000608
Chris Lattner92094b42003-12-09 17:18:00 +0000609 // Get the exit blocks for the current loop.
Devang Patelb7211a22007-08-21 00:31:24 +0000610 SmallVector<BasicBlock*, 8> ExitBlocks;
Chris Lattner5fa802f2004-04-18 22:15:13 +0000611 CurLoop->getExitBlocks(ExitBlocks);
Chris Lattner92094b42003-12-09 17:18:00 +0000612
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000613 // For each exit block, get the DT node and walk up the DT until the
Chris Lattner92094b42003-12-09 17:18:00 +0000614 // instruction's basic block is found or we exit the loop.
Chris Lattnera2706512003-12-10 06:41:05 +0000615 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i)
616 if (!isExitBlockDominatedByBlockInLoop(ExitBlocks[i], Inst.getParent()))
617 return false;
Misha Brukmanfd939082005-04-21 23:48:37 +0000618
Tanya Lattner9966c032003-08-05 18:45:46 +0000619 return true;
620}
621
Chris Lattnere4880642010-08-29 06:43:52 +0000622/// PromoteAliasSet - Try to promote memory values to scalars by sinking
Chris Lattner2e6e7412003-02-24 03:52:32 +0000623/// stores out of the loop and moving loads to before the loop. We do this by
624/// looping over the stores in the loop, looking for stores to Must pointers
Chris Lattnere4880642010-08-29 06:43:52 +0000625/// which are loop invariant.
Chris Lattner2e6e7412003-02-24 03:52:32 +0000626///
Chris Lattnere4880642010-08-29 06:43:52 +0000627void LICM::PromoteAliasSet(AliasSet &AS) {
628 // We can promote this alias set if it has a store, if it is a "Must" alias
629 // set, if the pointer is loop invariant, and if we are not eliminating any
630 // volatile loads or stores.
631 if (AS.isForwardingAliasSet() || !AS.isMod() || !AS.isMustAlias() ||
632 AS.isVolatile() || !CurLoop->isLoopInvariant(AS.begin()->getValue()))
633 return;
634
635 assert(!AS.empty() &&
636 "Must alias set should have at least one pointer element in it!");
637 Value *SomePtr = AS.begin()->getValue();
Chris Lattner2e6e7412003-02-24 03:52:32 +0000638
Chris Lattnere4880642010-08-29 06:43:52 +0000639 // It isn't safe to promote a load/store from the loop if the load/store is
640 // conditional. For example, turning:
Chris Lattner2e6e7412003-02-24 03:52:32 +0000641 //
Chris Lattnere4880642010-08-29 06:43:52 +0000642 // for () { if (c) *P += 1; }
Chris Lattner2e6e7412003-02-24 03:52:32 +0000643 //
Chris Lattnere4880642010-08-29 06:43:52 +0000644 // into:
645 //
646 // tmp = *P; for () { if (c) tmp +=1; } *P = tmp;
647 //
648 // is not safe, because *P may only be valid to access if 'c' is true.
649 //
650 // It is safe to promote P if all uses are direct load/stores and if at
651 // least one is guaranteed to be executed.
652 bool GuaranteedToExecute = false;
653
654 SmallVector<Instruction*, 64> LoopUses;
655 SmallPtrSet<Value*, 4> PointerMustAliases;
Chris Lattner2e6e7412003-02-24 03:52:32 +0000656
Chris Lattnere4880642010-08-29 06:43:52 +0000657 // Check that all of the pointers in the alias set have the same type. We
658 // cannot (yet) promote a memory location that is loaded and stored in
659 // different sizes.
660 for (AliasSet::iterator ASI = AS.begin(), E = AS.end(); ASI != E; ++ASI) {
661 Value *ASIV = ASI->getValue();
662 PointerMustAliases.insert(ASIV);
Chris Lattner29d92932008-05-22 00:53:38 +0000663
Chris Lattner29d92932008-05-22 00:53:38 +0000664 // Check that all of the pointers in the alias set have the same type. We
665 // cannot (yet) promote a memory location that is loaded and stored in
666 // different sizes.
Chris Lattnere4880642010-08-29 06:43:52 +0000667 if (SomePtr->getType() != ASIV->getType())
668 return;
669
670 for (Value::use_iterator UI = ASIV->use_begin(), UE = ASIV->use_end();
Chris Lattner19d9d432008-05-22 03:22:42 +0000671 UI != UE; ++UI) {
Chris Lattnere4880642010-08-29 06:43:52 +0000672 // Ignore instructions that are outside the loop.
Chris Lattner29d92932008-05-22 00:53:38 +0000673 Instruction *Use = dyn_cast<Instruction>(*UI);
Dan Gohman92329c72009-12-18 01:24:09 +0000674 if (!Use || !CurLoop->contains(Use))
Chris Lattner29d92932008-05-22 00:53:38 +0000675 continue;
Chris Lattnere4880642010-08-29 06:43:52 +0000676
677 // If there is an non-load/store instruction in the loop, we can't promote
678 // it.
679 if (isa<LoadInst>(Use))
680 assert(!cast<LoadInst>(Use)->isVolatile() && "AST broken");
681 else if (isa<StoreInst>(Use))
682 assert(!cast<StoreInst>(Use)->isVolatile() &&
683 Use->getOperand(0) != ASIV && "AST broken");
684 else
685 return; // Not a load or store.
Chris Lattner19d9d432008-05-22 03:22:42 +0000686
687 if (!GuaranteedToExecute)
688 GuaranteedToExecute = isSafeToExecuteUnconditionally(*Use);
Chris Lattnere4880642010-08-29 06:43:52 +0000689
690 LoopUses.push_back(Use);
691 }
692 }
693
694 // If there isn't a guaranteed-to-execute instruction, we can't promote.
695 if (!GuaranteedToExecute)
696 return;
697
698 // Otherwise, this is safe to promote, lets do it!
699 DEBUG(dbgs() << "LICM: Promoting value stored to in loop: " <<*SomePtr<<'\n');
700 Changed = true;
701 ++NumPromoted;
702
703 // We use the SSAUpdater interface to insert phi nodes as required.
704 SmallVector<PHINode*, 16> NewPHIs;
705 SSAUpdater SSA(&NewPHIs);
706
707 // It wants to know some value of the same type as what we'll be inserting.
708 Value *SomeValue;
709 if (isa<LoadInst>(LoopUses[0]))
710 SomeValue = LoopUses[0];
711 else
712 SomeValue = cast<StoreInst>(LoopUses[0])->getOperand(0);
713 SSA.Initialize(SomeValue);
714
715 // First step: bucket up uses of the pointers by the block they occur in.
716 // This is important because we have to handle multiple defs/uses in a block
717 // ourselves: SSAUpdater is purely for cross-block references.
718 // FIXME: Want a TinyVector<Instruction*> since there is usually 0/1 element.
719 DenseMap<BasicBlock*, std::vector<Instruction*> > UsesByBlock;
720 for (unsigned i = 0, e = LoopUses.size(); i != e; ++i) {
721 Instruction *User = LoopUses[i];
722 UsesByBlock[User->getParent()].push_back(User);
723 }
724
725 // Okay, now we can iterate over all the blocks in the loop with uses,
726 // processing them. Keep track of which loads are loading a live-in value.
727 SmallVector<LoadInst*, 32> LiveInLoads;
728
729 for (unsigned LoopUse = 0, e = LoopUses.size(); LoopUse != e; ++LoopUse) {
730 Instruction *User = LoopUses[LoopUse];
731 std::vector<Instruction*> &BlockUses = UsesByBlock[User->getParent()];
732
733 // If this block has already been processed, ignore this repeat use.
734 if (BlockUses.empty()) continue;
735
736 // Okay, this is the first use in the block. If this block just has a
737 // single user in it, we can rewrite it trivially.
738 if (BlockUses.size() == 1) {
739 // If it is a store, it is a trivial def of the value in the block.
740 if (isa<StoreInst>(User)) {
741 SSA.AddAvailableValue(User->getParent(),
742 cast<StoreInst>(User)->getOperand(0));
743 } else {
744 // Otherwise it is a load, queue it to rewrite as a live-in load.
745 LiveInLoads.push_back(cast<LoadInst>(User));
746 }
747 BlockUses.clear();
748 continue;
749 }
750
751 // Otherwise, check to see if this block is all loads. If so, we can queue
752 // them all as live in loads.
753 bool HasStore = false;
754 for (unsigned i = 0, e = BlockUses.size(); i != e; ++i) {
755 if (isa<StoreInst>(BlockUses[i])) {
756 HasStore = true;
757 break;
758 }
759 }
760
761 if (!HasStore) {
762 for (unsigned i = 0, e = BlockUses.size(); i != e; ++i)
763 LiveInLoads.push_back(cast<LoadInst>(BlockUses[i]));
764 BlockUses.clear();
765 continue;
Chris Lattner29d92932008-05-22 00:53:38 +0000766 }
767
Chris Lattnere4880642010-08-29 06:43:52 +0000768 // Otherwise, we have mixed loads and stores (or just a bunch of stores).
769 // Since SSAUpdater is purely for cross-block values, we need to determine
770 // the order of these instructions in the block. If the first use in the
771 // block is a load, then it uses the live in value. The last store defines
772 // the live out value. We handle this by doing a linear scan of the block.
773 BasicBlock *BB = User->getParent();
774 Value *StoredValue = 0;
775 for (BasicBlock::iterator II = BB->begin(), E = BB->end(); II != E; ++II) {
776 if (LoadInst *L = dyn_cast<LoadInst>(II)) {
777 // If this is a load to an unrelated pointer, ignore it.
778 if (!PointerMustAliases.count(L->getOperand(0))) continue;
779
780 // If we haven't seen a store yet, this is a live in use, otherwise
781 // use the stored value.
782 if (StoredValue)
783 L->replaceAllUsesWith(StoredValue);
784 else
785 LiveInLoads.push_back(L);
786 continue;
787 }
788
789 if (StoreInst *S = dyn_cast<StoreInst>(II)) {
790 // If this is a load to an unrelated pointer, ignore it.
791 if (!PointerMustAliases.count(S->getOperand(1))) continue;
792
793 // Remember that this is the active value in the block.
794 StoredValue = S->getOperand(0);
795 }
796 }
Chris Lattner29d92932008-05-22 00:53:38 +0000797
Chris Lattnere4880642010-08-29 06:43:52 +0000798 // The last stored value that happened is the live-out for the block.
799 assert(StoredValue && "Already checked that there is a store in block");
800 SSA.AddAvailableValue(BB, StoredValue);
801 BlockUses.clear();
Chris Lattner2e6e7412003-02-24 03:52:32 +0000802 }
Chris Lattnere4880642010-08-29 06:43:52 +0000803
804 // Now that all the intra-loop values are classified, set up the preheader.
805 // It gets a load of the pointer we're promoting, and it is the live-out value
806 // from the preheader.
807 LoadInst *PreheaderLoad = new LoadInst(SomePtr,SomePtr->getName()+".promoted",
808 Preheader->getTerminator());
809 SSA.AddAvailableValue(Preheader, PreheaderLoad);
810
811 // Now that the preheader is good to go, set up the exit blocks. Each exit
812 // block gets a store of the live-out values that feed them. Since we've
813 // already told the SSA updater about the defs in the loop and the preheader
814 // definition, it is all set and we can start using it.
815 SmallVector<BasicBlock*, 8> ExitBlocks;
816 CurLoop->getUniqueExitBlocks(ExitBlocks);
817 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i) {
818 BasicBlock *ExitBlock = ExitBlocks[i];
819 Value *LiveInValue = SSA.GetValueInMiddleOfBlock(ExitBlock);
820 Instruction *InsertPos = ExitBlock->getFirstNonPHI();
821 new StoreInst(LiveInValue, SomePtr, InsertPos);
822 }
823
824 // Okay, now we rewrite all loads that use live-in values in the loop,
825 // inserting PHI nodes as necessary.
826 for (unsigned i = 0, e = LiveInLoads.size(); i != e; ++i) {
827 LoadInst *ALoad = LiveInLoads[i];
828 ALoad->replaceAllUsesWith(SSA.GetValueInMiddleOfBlock(ALoad->getParent()));
829 }
830
831 // Now that everything is rewritten, delete the old instructions from the body
832 // of the loop. They should all be dead now.
833 for (unsigned i = 0, e = LoopUses.size(); i != e; ++i) {
834 Instruction *User = LoopUses[i];
835 CurAST->deleteValue(User);
836 User->eraseFromParent();
837 }
838
839 // If the preheader load is itself a pointer, we need to tell alias analysis
840 // about the new pointer we created in the preheader block and about any PHI
841 // nodes that just got inserted.
842 if (PreheaderLoad->getType()->isPointerTy()) {
843 // Copy any value stored to or loaded from a must-alias of the pointer.
844 CurAST->copyValue(SomeValue, PreheaderLoad);
845
846 for (unsigned i = 0, e = NewPHIs.size(); i != e; ++i)
847 CurAST->copyValue(SomeValue, NewPHIs[i]);
848 }
849
850 // fwew, we're done!
Chris Lattnerf5e84aa2002-08-22 21:39:55 +0000851}
Devang Patel91d22c82007-07-31 08:01:41 +0000852
Chris Lattnere4880642010-08-29 06:43:52 +0000853
Devang Patel91d22c82007-07-31 08:01:41 +0000854/// cloneBasicBlockAnalysis - Simple Analysis hook. Clone alias set info.
855void LICM::cloneBasicBlockAnalysis(BasicBlock *From, BasicBlock *To, Loop *L) {
Chris Lattner4282e322010-08-29 17:46:00 +0000856 AliasSetTracker *AST = LoopToAliasSetMap.lookup(L);
Devang Patel91d22c82007-07-31 08:01:41 +0000857 if (!AST)
858 return;
859
860 AST->copyValue(From, To);
861}
862
863/// deleteAnalysisValue - Simple Analysis hook. Delete value V from alias
864/// set.
865void LICM::deleteAnalysisValue(Value *V, Loop *L) {
Chris Lattner4282e322010-08-29 17:46:00 +0000866 AliasSetTracker *AST = LoopToAliasSetMap.lookup(L);
Devang Patel91d22c82007-07-31 08:01:41 +0000867 if (!AST)
868 return;
869
870 AST->deleteValue(V);
871}