blob: 6cf1bd3deb51a05f6eb8cc0c96bb2cfb8ea5509e [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"
Dan Gohmana8702ea2010-10-18 20:44:50 +000039#include "llvm/LLVMContext.h"
Chris Lattnerf5e84aa2002-08-22 21:39:55 +000040#include "llvm/Analysis/AliasAnalysis.h"
Chris Lattner0252e492003-03-03 23:32:45 +000041#include "llvm/Analysis/AliasSetTracker.h"
Chris Lattner2ac6e232010-08-31 23:00:16 +000042#include "llvm/Analysis/ConstantFolding.h"
43#include "llvm/Analysis/LoopInfo.h"
44#include "llvm/Analysis/LoopPass.h"
Chris Lattner952eaee2002-09-29 21:46:09 +000045#include "llvm/Analysis/Dominators.h"
Chris Lattner0de5cad2010-08-29 18:22:25 +000046#include "llvm/Transforms/Utils/Local.h"
Chris Lattnera6a36f52010-08-29 04:55:06 +000047#include "llvm/Transforms/Utils/SSAUpdater.h"
Reid Spencer9133fe22007-02-05 23:32:05 +000048#include "llvm/Support/CFG.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000049#include "llvm/Support/CommandLine.h"
Daniel Dunbarce63ffb2009-07-25 00:23:56 +000050#include "llvm/Support/raw_ostream.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000051#include "llvm/Support/Debug.h"
52#include "llvm/ADT/Statistic.h"
Chris Lattnere0e734e2002-05-10 22:44:58 +000053#include <algorithm>
Chris Lattner92094b42003-12-09 17:18:00 +000054using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000055
Chris Lattner0e5f4992006-12-19 21:40:18 +000056STATISTIC(NumSunk , "Number of instructions sunk out of loop");
57STATISTIC(NumHoisted , "Number of instructions hoisted out of loop");
58STATISTIC(NumMovedLoads, "Number of load insts hoisted or sunk");
59STATISTIC(NumMovedCalls, "Number of call insts hoisted or sunk");
60STATISTIC(NumPromoted , "Number of memory locations promoted to registers");
61
Dan Gohman844731a2008-05-13 00:00:25 +000062static cl::opt<bool>
63DisablePromotion("disable-licm-promotion", cl::Hidden,
64 cl::desc("Disable memory promotion in LICM pass"));
Chris Lattner2e6e7412003-02-24 03:52:32 +000065
Dan Gohman844731a2008-05-13 00:00:25 +000066namespace {
Chris Lattner3e8b6632009-09-02 06:11:42 +000067 struct LICM : public LoopPass {
Nick Lewyckyecd94c82007-05-06 13:37:16 +000068 static char ID; // Pass identification, replacement for typeid
Owen Anderson081c34b2010-10-19 17:21:58 +000069 LICM() : LoopPass(ID) {
70 initializeLICMPass(*PassRegistry::getPassRegistry());
71 }
Devang Patel794fd752007-05-01 21:15:47 +000072
Devang Patel54959d62007-03-07 04:41:30 +000073 virtual bool runOnLoop(Loop *L, LPPassManager &LPM);
Chris Lattnere0e734e2002-05-10 22:44:58 +000074
Chris Lattner94170592002-09-26 16:52:07 +000075 /// This transformation requires natural loop information & requires that
76 /// loop preheaders be inserted into the CFG...
77 ///
Chris Lattnere0e734e2002-05-10 22:44:58 +000078 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattnercb2610e2002-10-21 20:00:28 +000079 AU.setPreservesCFG();
Owen Anderson3a2b58f2007-04-24 06:40:39 +000080 AU.addRequired<DominatorTree>();
Dan Gohman1e381fc2010-07-16 17:58:45 +000081 AU.addRequired<LoopInfo>();
82 AU.addRequiredID(LoopSimplifyID);
Chris Lattnerf5e84aa2002-08-22 21:39:55 +000083 AU.addRequired<AliasAnalysis>();
Chris Lattnere418ac82010-08-29 07:02:56 +000084 AU.addPreserved<AliasAnalysis>();
Dan Gohmana9b61e72010-11-17 20:50:07 +000085 AU.addPreserved("scalar-evolution");
Dan Gohman5c89b522009-09-08 15:45:00 +000086 AU.addPreservedID(LoopSimplifyID);
Chris Lattnere0e734e2002-05-10 22:44:58 +000087 }
88
Dan Gohman747603e2007-04-17 18:21:36 +000089 bool doFinalization() {
Chris Lattner4282e322010-08-29 17:46:00 +000090 assert(LoopToAliasSetMap.empty() && "Didn't free loop alias sets");
Devang Patel54959d62007-03-07 04:41:30 +000091 return false;
92 }
93
Chris Lattnere0e734e2002-05-10 22:44:58 +000094 private:
Chris Lattner2e6e7412003-02-24 03:52:32 +000095 AliasAnalysis *AA; // Current AliasAnalysis information
Chris Lattner92094b42003-12-09 17:18:00 +000096 LoopInfo *LI; // Current LoopInfo
Chris Lattner44e2bd32010-08-29 06:49:44 +000097 DominatorTree *DT; // Dominator Tree for the current Loop.
Chris Lattner92094b42003-12-09 17:18:00 +000098
Chris Lattner4282e322010-08-29 17:46:00 +000099 // State that is updated as we process loops.
Chris Lattner2e6e7412003-02-24 03:52:32 +0000100 bool Changed; // Set to true when we change anything.
101 BasicBlock *Preheader; // The preheader block of the current loop...
102 Loop *CurLoop; // The current loop we are working on...
Chris Lattner0252e492003-03-03 23:32:45 +0000103 AliasSetTracker *CurAST; // AliasSet information for the current loop...
Chris Lattner4282e322010-08-29 17:46:00 +0000104 DenseMap<Loop*, AliasSetTracker*> LoopToAliasSetMap;
Chris Lattnere0e734e2002-05-10 22:44:58 +0000105
Devang Patel91d22c82007-07-31 08:01:41 +0000106 /// cloneBasicBlockAnalysis - Simple Analysis hook. Clone alias set info.
107 void cloneBasicBlockAnalysis(BasicBlock *From, BasicBlock *To, Loop *L);
108
109 /// deleteAnalysisValue - Simple Analysis hook. Delete value V from alias
110 /// set.
111 void deleteAnalysisValue(Value *V, Loop *L);
112
Chris Lattnere4365b22003-12-19 07:22:45 +0000113 /// SinkRegion - Walk the specified region of the CFG (defined by all blocks
114 /// dominated by the specified block, and that are in the current loop) in
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000115 /// reverse depth first order w.r.t the DominatorTree. This allows us to
Chris Lattnere4365b22003-12-19 07:22:45 +0000116 /// visit uses before definitions, allowing us to sink a loop body in one
117 /// pass without iteration.
118 ///
Devang Patel26042422007-06-04 00:32:22 +0000119 void SinkRegion(DomTreeNode *N);
Chris Lattnere4365b22003-12-19 07:22:45 +0000120
Chris Lattner952eaee2002-09-29 21:46:09 +0000121 /// HoistRegion - Walk the specified region of the CFG (defined by all
122 /// blocks dominated by the specified block, and that are in the current
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000123 /// loop) in depth first order w.r.t the DominatorTree. This allows us to
Misha Brukmancf00c4a2003-10-10 17:57:28 +0000124 /// visit definitions before uses, allowing us to hoist a loop body in one
Chris Lattner952eaee2002-09-29 21:46:09 +0000125 /// pass without iteration.
126 ///
Devang Patel26042422007-06-04 00:32:22 +0000127 void HoistRegion(DomTreeNode *N);
Chris Lattner952eaee2002-09-29 21:46:09 +0000128
Chris Lattnerb4613732002-09-29 22:26:07 +0000129 /// inSubLoop - Little predicate that returns true if the specified basic
130 /// block is in a subloop of the current one, not the current one itself.
Chris Lattner94170592002-09-26 16:52:07 +0000131 ///
Chris Lattnerb4613732002-09-29 22:26:07 +0000132 bool inSubLoop(BasicBlock *BB) {
133 assert(CurLoop->contains(BB) && "Only valid if BB is IN the loop");
Chris Lattner81a866d2011-01-02 18:53:08 +0000134 return LI->getLoopFor(BB) != CurLoop;
Chris Lattnere0e734e2002-05-10 22:44:58 +0000135 }
136
Chris Lattnera2706512003-12-10 06:41:05 +0000137 /// sink - When an instruction is found to only be used outside of the loop,
138 /// this function moves it to the exit blocks and patches up SSA form as
139 /// needed.
140 ///
141 void sink(Instruction &I);
142
Chris Lattner94170592002-09-26 16:52:07 +0000143 /// hoist - When an instruction is found to only use loop invariant operands
144 /// that is safe to hoist, this instruction is called to do the dirty work.
145 ///
Chris Lattner7e708292002-06-25 16:13:24 +0000146 void hoist(Instruction &I);
Chris Lattnere0e734e2002-05-10 22:44:58 +0000147
Chris Lattnera2706512003-12-10 06:41:05 +0000148 /// isSafeToExecuteUnconditionally - Only sink or hoist an instruction if it
149 /// is not a trapping instruction or if it is a trapping instruction and is
150 /// guaranteed to execute.
Tanya Lattner9966c032003-08-05 18:45:46 +0000151 ///
Chris Lattnera2706512003-12-10 06:41:05 +0000152 bool isSafeToExecuteUnconditionally(Instruction &I);
Tanya Lattner9966c032003-08-05 18:45:46 +0000153
Chris Lattner94170592002-09-26 16:52:07 +0000154 /// pointerInvalidatedByLoop - Return true if the body of this loop may
155 /// store into the memory location pointed to by V.
Misha Brukmanfd939082005-04-21 23:48:37 +0000156 ///
Dan Gohman3da848b2010-10-19 22:54:46 +0000157 bool pointerInvalidatedByLoop(Value *V, uint64_t Size,
Dan Gohmana8702ea2010-10-18 20:44:50 +0000158 const MDNode *TBAAInfo) {
Chris Lattner0252e492003-03-03 23:32:45 +0000159 // Check to see if any of the basic blocks in CurLoop invalidate *V.
Dan Gohmana8702ea2010-10-18 20:44:50 +0000160 return CurAST->getAliasSetForPointer(V, Size, TBAAInfo).isMod();
Chris Lattner2e6e7412003-02-24 03:52:32 +0000161 }
Chris Lattnerf5e84aa2002-08-22 21:39:55 +0000162
Chris Lattnera2706512003-12-10 06:41:05 +0000163 bool canSinkOrHoistInst(Instruction &I);
Chris Lattnera2706512003-12-10 06:41:05 +0000164 bool isNotUsedInLoop(Instruction &I);
Chris Lattnere0e734e2002-05-10 22:44:58 +0000165
Chris Lattnere4880642010-08-29 06:43:52 +0000166 void PromoteAliasSet(AliasSet &AS);
Chris Lattnere0e734e2002-05-10 22:44:58 +0000167 };
168}
169
Dan Gohman844731a2008-05-13 00:00:25 +0000170char LICM::ID = 0;
Owen Anderson2ab36d32010-10-12 19:48:12 +0000171INITIALIZE_PASS_BEGIN(LICM, "licm", "Loop Invariant Code Motion", false, false)
172INITIALIZE_PASS_DEPENDENCY(DominatorTree)
173INITIALIZE_PASS_DEPENDENCY(LoopInfo)
Owen Anderson2ab36d32010-10-12 19:48:12 +0000174INITIALIZE_PASS_DEPENDENCY(LoopSimplify)
175INITIALIZE_AG_DEPENDENCY(AliasAnalysis)
176INITIALIZE_PASS_END(LICM, "licm", "Loop Invariant Code Motion", false, false)
Dan Gohman844731a2008-05-13 00:00:25 +0000177
Daniel Dunbar394f0442008-10-22 23:32:42 +0000178Pass *llvm::createLICMPass() { return new LICM(); }
Chris Lattnere0e734e2002-05-10 22:44:58 +0000179
Devang Patel8d246f02007-07-31 16:52:25 +0000180/// Hoist expressions out of the specified loop. Note, alias info for inner
181/// loop is not preserved so it is not a good idea to run LICM multiple
182/// times on one loop.
Chris Lattner94170592002-09-26 16:52:07 +0000183///
Devang Patel54959d62007-03-07 04:41:30 +0000184bool LICM::runOnLoop(Loop *L, LPPassManager &LPM) {
Chris Lattner2e6e7412003-02-24 03:52:32 +0000185 Changed = false;
Chris Lattnere0e734e2002-05-10 22:44:58 +0000186
Chris Lattner2e6e7412003-02-24 03:52:32 +0000187 // Get our Loop and Alias Analysis information...
188 LI = &getAnalysis<LoopInfo>();
Chris Lattnerf5e84aa2002-08-22 21:39:55 +0000189 AA = &getAnalysis<AliasAnalysis>();
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000190 DT = &getAnalysis<DominatorTree>();
Chris Lattnerf5e84aa2002-08-22 21:39:55 +0000191
Devang Patel54959d62007-03-07 04:41:30 +0000192 CurAST = new AliasSetTracker(*AA);
Chris Lattner4282e322010-08-29 17:46:00 +0000193 // Collect Alias info from subloops.
Devang Patel54959d62007-03-07 04:41:30 +0000194 for (Loop::iterator LoopItr = L->begin(), LoopItrE = L->end();
195 LoopItr != LoopItrE; ++LoopItr) {
196 Loop *InnerL = *LoopItr;
Chris Lattner4282e322010-08-29 17:46:00 +0000197 AliasSetTracker *InnerAST = LoopToAliasSetMap[InnerL];
198 assert(InnerAST && "Where is my AST?");
Devang Patel54959d62007-03-07 04:41:30 +0000199
200 // What if InnerLoop was modified by other passes ?
201 CurAST->add(*InnerAST);
Chris Lattner4282e322010-08-29 17:46:00 +0000202
203 // Once we've incorporated the inner loop's AST into ours, we don't need the
204 // subloop's anymore.
205 delete InnerAST;
206 LoopToAliasSetMap.erase(InnerL);
Chris Lattner2e6e7412003-02-24 03:52:32 +0000207 }
Devang Patel54959d62007-03-07 04:41:30 +0000208
Chris Lattnere0e734e2002-05-10 22:44:58 +0000209 CurLoop = L;
210
Chris Lattner99a57212002-09-26 19:40:25 +0000211 // Get the preheader block to move instructions into...
212 Preheader = L->getLoopPreheader();
Chris Lattner99a57212002-09-26 19:40:25 +0000213
Chris Lattner2e6e7412003-02-24 03:52:32 +0000214 // Loop over the body of this loop, looking for calls, invokes, and stores.
Chris Lattner0252e492003-03-03 23:32:45 +0000215 // Because subloops have already been incorporated into AST, we skip blocks in
Chris Lattner2e6e7412003-02-24 03:52:32 +0000216 // subloops.
217 //
Dan Gohman9b787632008-06-22 20:18:58 +0000218 for (Loop::block_iterator I = L->block_begin(), E = L->block_end();
219 I != E; ++I) {
220 BasicBlock *BB = *I;
Chris Lattner4282e322010-08-29 17:46:00 +0000221 if (LI->getLoopFor(BB) == L) // Ignore blocks in subloops.
Dan Gohman9b787632008-06-22 20:18:58 +0000222 CurAST->add(*BB); // Incorporate the specified basic block
223 }
Chris Lattner2e6e7412003-02-24 03:52:32 +0000224
Chris Lattnere0e734e2002-05-10 22:44:58 +0000225 // We want to visit all of the instructions in this loop... that are not parts
226 // of our subloops (they have already had their invariants hoisted out of
227 // their loop, into this loop, so there is no need to process the BODIES of
228 // the subloops).
229 //
Chris Lattner952eaee2002-09-29 21:46:09 +0000230 // Traverse the body of the loop in depth first order on the dominator tree so
231 // that we are guaranteed to see definitions before we see uses. This allows
Nick Lewyckyaf5cbc82007-08-18 15:08:56 +0000232 // us to sink instructions in one pass, without iteration. After sinking
Chris Lattnere4365b22003-12-19 07:22:45 +0000233 // instructions, we perform another pass to hoist them out of the loop.
Chris Lattner952eaee2002-09-29 21:46:09 +0000234 //
Dan Gohman03e896b2009-11-05 21:11:53 +0000235 if (L->hasDedicatedExits())
236 SinkRegion(DT->getNode(L->getHeader()));
237 if (Preheader)
238 HoistRegion(DT->getNode(L->getHeader()));
Chris Lattnere0e734e2002-05-10 22:44:58 +0000239
Chris Lattner2e6e7412003-02-24 03:52:32 +0000240 // Now that all loop invariants have been removed from the loop, promote any
Chris Lattnere4880642010-08-29 06:43:52 +0000241 // memory references to scalars that we can.
242 if (!DisablePromotion && Preheader && L->hasDedicatedExits()) {
243 // Loop over all of the alias sets in the tracker object.
244 for (AliasSetTracker::iterator I = CurAST->begin(), E = CurAST->end();
245 I != E; ++I)
246 PromoteAliasSet(*I);
247 }
248
Chris Lattnere0e734e2002-05-10 22:44:58 +0000249 // Clear out loops state information for the next iteration
250 CurLoop = 0;
Chris Lattner99a57212002-09-26 19:40:25 +0000251 Preheader = 0;
Devang Patel54959d62007-03-07 04:41:30 +0000252
Chris Lattner4282e322010-08-29 17:46:00 +0000253 // If this loop is nested inside of another one, save the alias information
254 // for when we process the outer loop.
255 if (L->getParentLoop())
256 LoopToAliasSetMap[L] = CurAST;
257 else
258 delete CurAST;
Devang Patel54959d62007-03-07 04:41:30 +0000259 return Changed;
Chris Lattnere0e734e2002-05-10 22:44:58 +0000260}
261
Chris Lattnere4365b22003-12-19 07:22:45 +0000262/// SinkRegion - Walk the specified region of the CFG (defined by all blocks
263/// dominated by the specified block, and that are in the current loop) in
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000264/// reverse depth first order w.r.t the DominatorTree. This allows us to visit
Chris Lattnere4365b22003-12-19 07:22:45 +0000265/// uses before definitions, allowing us to sink a loop body in one pass without
266/// iteration.
267///
Devang Patel26042422007-06-04 00:32:22 +0000268void LICM::SinkRegion(DomTreeNode *N) {
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000269 assert(N != 0 && "Null dominator tree node?");
270 BasicBlock *BB = N->getBlock();
Chris Lattnere4365b22003-12-19 07:22:45 +0000271
272 // If this subregion is not in the top level loop at all, exit.
273 if (!CurLoop->contains(BB)) return;
274
Chris Lattner0de5cad2010-08-29 18:22:25 +0000275 // We are processing blocks in reverse dfo, so process children first.
Devang Patel26042422007-06-04 00:32:22 +0000276 const std::vector<DomTreeNode*> &Children = N->getChildren();
Chris Lattnere4365b22003-12-19 07:22:45 +0000277 for (unsigned i = 0, e = Children.size(); i != e; ++i)
278 SinkRegion(Children[i]);
279
280 // Only need to process the contents of this block if it is not part of a
281 // subloop (which would already have been processed).
282 if (inSubLoop(BB)) return;
283
Chris Lattnera3df8a92003-12-19 08:18:16 +0000284 for (BasicBlock::iterator II = BB->end(); II != BB->begin(); ) {
285 Instruction &I = *--II;
Chris Lattner0de5cad2010-08-29 18:22:25 +0000286
287 // If the instruction is dead, we would try to sink it because it isn't used
288 // in the loop, instead, just delete it.
289 if (isInstructionTriviallyDead(&I)) {
Chris Lattnercb7f6532010-08-29 18:42:23 +0000290 DEBUG(dbgs() << "LICM deleting dead inst: " << I << '\n');
Chris Lattner0de5cad2010-08-29 18:22:25 +0000291 ++II;
292 CurAST->deleteValue(&I);
293 I.eraseFromParent();
294 Changed = true;
295 continue;
296 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000297
Chris Lattnere4365b22003-12-19 07:22:45 +0000298 // Check to see if we can sink this instruction to the exit blocks
299 // of the loop. We can do this if the all users of the instruction are
300 // outside of the loop. In this case, it doesn't even matter if the
301 // operands of the instruction are loop invariant.
302 //
Chris Lattner70ac2dc2005-03-25 00:22:36 +0000303 if (isNotUsedInLoop(I) && canSinkOrHoistInst(I)) {
Chris Lattnera3df8a92003-12-19 08:18:16 +0000304 ++II;
Chris Lattnere4365b22003-12-19 07:22:45 +0000305 sink(I);
Chris Lattnera3df8a92003-12-19 08:18:16 +0000306 }
Chris Lattnere4365b22003-12-19 07:22:45 +0000307 }
308}
309
Chris Lattner952eaee2002-09-29 21:46:09 +0000310/// HoistRegion - Walk the specified region of the CFG (defined by all blocks
311/// dominated by the specified block, and that are in the current loop) in depth
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000312/// first order w.r.t the DominatorTree. This allows us to visit definitions
Chris Lattner952eaee2002-09-29 21:46:09 +0000313/// before uses, allowing us to hoist a loop body in one pass without iteration.
314///
Devang Patel26042422007-06-04 00:32:22 +0000315void LICM::HoistRegion(DomTreeNode *N) {
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000316 assert(N != 0 && "Null dominator tree node?");
317 BasicBlock *BB = N->getBlock();
Chris Lattner952eaee2002-09-29 21:46:09 +0000318
Chris Lattnerb4613732002-09-29 22:26:07 +0000319 // If this subregion is not in the top level loop at all, exit.
Chris Lattnered6dfc22003-12-09 19:32:44 +0000320 if (!CurLoop->contains(BB)) return;
Chris Lattner952eaee2002-09-29 21:46:09 +0000321
Chris Lattnera2706512003-12-10 06:41:05 +0000322 // Only need to process the contents of this block if it is not part of a
323 // subloop (which would already have been processed).
Chris Lattnered6dfc22003-12-09 19:32:44 +0000324 if (!inSubLoop(BB))
Chris Lattnera2706512003-12-10 06:41:05 +0000325 for (BasicBlock::iterator II = BB->begin(), E = BB->end(); II != E; ) {
326 Instruction &I = *II++;
Misha Brukmanfd939082005-04-21 23:48:37 +0000327
Chris Lattner2ac6e232010-08-31 23:00:16 +0000328 // Try constant folding this instruction. If all the operands are
329 // constants, it is technically hoistable, but it would be better to just
330 // fold it.
331 if (Constant *C = ConstantFoldInstruction(&I)) {
332 DEBUG(dbgs() << "LICM folding inst: " << I << " --> " << *C << '\n');
333 CurAST->copyValue(&I, C);
334 CurAST->deleteValue(&I);
335 I.replaceAllUsesWith(C);
336 I.eraseFromParent();
337 continue;
338 }
339
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 //
Chris Lattneradc79912010-09-06 01:05:37 +0000344 if (CurLoop->hasLoopInvariantOperands(&I) && canSinkOrHoistInst(I) &&
Chris Lattnere4365b22003-12-19 07:22:45 +0000345 isSafeToExecuteUnconditionally(I))
Chris Lattner3c80a512006-06-26 19:10:05 +0000346 hoist(I);
Chris Lattner2ac6e232010-08-31 23:00:16 +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.
Dan Gohman3da848b2010-10-19 22:54:46 +0000369 uint64_t Size = 0;
Chris Lattnerf3e1d692004-11-26 21:20:09 +0000370 if (LI->getType()->isSized())
Dan Gohmanfc2a3ed2009-07-25 00:48:42 +0000371 Size = AA->getTypeStoreSize(LI->getType());
Dan Gohmana8702ea2010-10-18 20:44:50 +0000372 return !pointerInvalidatedByLoop(LI->getOperand(0), Size,
373 LI->getMetadata(LLVMContext::MD_tbaa));
Chris Lattner118dd0c2004-03-15 04:11:30 +0000374 } else if (CallInst *CI = dyn_cast<CallInst>(&I)) {
375 // Handle obvious cases efficiently.
Duncan Sandsdff67102007-12-01 07:51:45 +0000376 AliasAnalysis::ModRefBehavior Behavior = AA->getModRefBehavior(CI);
377 if (Behavior == AliasAnalysis::DoesNotAccessMemory)
378 return true;
Dan Gohmancd93f3b2010-11-09 19:58:21 +0000379 if (AliasAnalysis::onlyReadsMemory(Behavior)) {
Duncan Sandsdff67102007-12-01 07:51:45 +0000380 // If this call only reads from memory and there are no writes to memory
381 // in the loop, we can hoist or sink the call as appropriate.
382 bool FoundMod = false;
383 for (AliasSetTracker::iterator I = CurAST->begin(), E = CurAST->end();
384 I != E; ++I) {
385 AliasSet &AS = *I;
386 if (!AS.isForwardingAliasSet() && AS.isMod()) {
387 FoundMod = true;
388 break;
Chris Lattner118dd0c2004-03-15 04:11:30 +0000389 }
Chris Lattner118dd0c2004-03-15 04:11:30 +0000390 }
Duncan Sandsdff67102007-12-01 07:51:45 +0000391 if (!FoundMod) return true;
Chris Lattner118dd0c2004-03-15 04:11:30 +0000392 }
393
394 // FIXME: This should use mod/ref information to see if we can hoist or sink
395 // the call.
Misha Brukmanfd939082005-04-21 23:48:37 +0000396
Chris Lattner118dd0c2004-03-15 04:11:30 +0000397 return false;
Chris Lattnered6dfc22003-12-09 19:32:44 +0000398 }
399
Reid Spencer3da59db2006-11-27 01:05:10 +0000400 // Otherwise these instructions are hoistable/sinkable
Reid Spencer832254e2007-02-02 02:16:23 +0000401 return isa<BinaryOperator>(I) || isa<CastInst>(I) ||
Dan Gohmand8af90c2007-06-05 16:05:55 +0000402 isa<SelectInst>(I) || isa<GetElementPtrInst>(I) || isa<CmpInst>(I) ||
403 isa<InsertElementInst>(I) || isa<ExtractElementInst>(I) ||
404 isa<ShuffleVectorInst>(I);
Chris Lattnera2706512003-12-10 06:41:05 +0000405}
406
407/// isNotUsedInLoop - Return true if the only users of this instruction are
408/// outside of the loop. If this is true, we can sink the instruction to the
409/// exit blocks of the loop.
410///
411bool LICM::isNotUsedInLoop(Instruction &I) {
Chris Lattnerea9403f2003-12-11 22:23:32 +0000412 for (Value::use_iterator UI = I.use_begin(), E = I.use_end(); UI != E; ++UI) {
413 Instruction *User = cast<Instruction>(*UI);
414 if (PHINode *PN = dyn_cast<PHINode>(User)) {
415 // PHI node uses occur in predecessor blocks!
416 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
417 if (PN->getIncomingValue(i) == &I)
418 if (CurLoop->contains(PN->getIncomingBlock(i)))
419 return false;
Dan Gohman92329c72009-12-18 01:24:09 +0000420 } else if (CurLoop->contains(User)) {
Chris Lattnera2706512003-12-10 06:41:05 +0000421 return false;
Chris Lattnerea9403f2003-12-11 22:23:32 +0000422 }
423 }
Chris Lattnera2706512003-12-10 06:41:05 +0000424 return true;
425}
426
427
Chris Lattnera2706512003-12-10 06:41:05 +0000428/// sink - When an instruction is found to only be used outside of the loop,
Chris Lattnera3df8a92003-12-19 08:18:16 +0000429/// this function moves it to the exit blocks and patches up SSA form as needed.
430/// This method is guaranteed to remove the original instruction from its
431/// position, and may either delete it or move it to outside of the loop.
Chris Lattnera2706512003-12-10 06:41:05 +0000432///
433void LICM::sink(Instruction &I) {
Nick Lewycky39a38312010-07-30 20:27:01 +0000434 DEBUG(dbgs() << "LICM sinking instruction: " << I << "\n");
Chris Lattnera2706512003-12-10 06:41:05 +0000435
Devang Patelb7211a22007-08-21 00:31:24 +0000436 SmallVector<BasicBlock*, 8> ExitBlocks;
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000437 CurLoop->getUniqueExitBlocks(ExitBlocks);
Chris Lattnerdf45bd32003-12-10 20:43:29 +0000438
439 if (isa<LoadInst>(I)) ++NumMovedLoads;
Chris Lattner118dd0c2004-03-15 04:11:30 +0000440 else if (isa<CallInst>(I)) ++NumMovedCalls;
Chris Lattnerdf45bd32003-12-10 20:43:29 +0000441 ++NumSunk;
442 Changed = true;
443
Chris Lattnera2706512003-12-10 06:41:05 +0000444 // The case where there is only a single exit node of this loop is common
445 // enough that we handle it as a special (more efficient) case. It is more
446 // efficient to handle because there are no PHI nodes that need to be placed.
447 if (ExitBlocks.size() == 1) {
Devang Patel290342a2011-03-08 03:06:19 +0000448 if (!isa<DbgInfoIntrinsic>(I) &&
449 !DT->dominates(I.getParent(), ExitBlocks[0])) {
Chris Lattnera2706512003-12-10 06:41:05 +0000450 // Instruction is not used, just delete it.
Chris Lattner2741c972004-05-23 21:20:19 +0000451 CurAST->deleteValue(&I);
Devang Patel1bf5ebc2009-10-13 21:41:20 +0000452 // If I has users in unreachable blocks, eliminate.
Devang Patel228ebd02009-10-13 22:56:32 +0000453 // If I is not void type then replaceAllUsesWith undef.
454 // This allows ValueHandlers and custom metadata to adjust itself.
Chris Lattnera6a36f52010-08-29 04:55:06 +0000455 if (!I.use_empty())
Devang Patel228ebd02009-10-13 22:56:32 +0000456 I.replaceAllUsesWith(UndefValue::get(I.getType()));
Chris Lattner3c80a512006-06-26 19:10:05 +0000457 I.eraseFromParent();
Chris Lattnera2706512003-12-10 06:41:05 +0000458 } else {
459 // Move the instruction to the start of the exit block, after any PHI
460 // nodes in it.
Chris Lattnerd9a5dae2010-08-29 18:18:40 +0000461 I.moveBefore(ExitBlocks[0]->getFirstNonPHI());
Chris Lattner4282e322010-08-29 17:46:00 +0000462
463 // This instruction is no longer in the AST for the current loop, because
464 // we just sunk it out of the loop. If we just sunk it into an outer
465 // loop, we will rediscover the operation when we process it.
466 CurAST->deleteValue(&I);
Chris Lattnera2706512003-12-10 06:41:05 +0000467 }
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000468 return;
469 }
470
471 if (ExitBlocks.empty()) {
Chris Lattnera2706512003-12-10 06:41:05 +0000472 // The instruction is actually dead if there ARE NO exit blocks.
Chris Lattner2741c972004-05-23 21:20:19 +0000473 CurAST->deleteValue(&I);
Devang Patel1bf5ebc2009-10-13 21:41:20 +0000474 // If I has users in unreachable blocks, eliminate.
Devang Patel228ebd02009-10-13 22:56:32 +0000475 // If I is not void type then replaceAllUsesWith undef.
476 // This allows ValueHandlers and custom metadata to adjust itself.
Chris Lattnera6a36f52010-08-29 04:55:06 +0000477 if (!I.use_empty())
Devang Patel228ebd02009-10-13 22:56:32 +0000478 I.replaceAllUsesWith(UndefValue::get(I.getType()));
Chris Lattner3c80a512006-06-26 19:10:05 +0000479 I.eraseFromParent();
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000480 return;
481 }
482
Chris Lattnera6a36f52010-08-29 04:55:06 +0000483 // Otherwise, if we have multiple exits, use the SSAUpdater to do all of the
484 // hard work of inserting PHI nodes as necessary.
485 SmallVector<PHINode*, 8> NewPHIs;
486 SSAUpdater SSA(&NewPHIs);
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000487
Chris Lattnera6a36f52010-08-29 04:55:06 +0000488 if (!I.use_empty())
Duncan Sandsfc6e29d2010-09-02 08:14:03 +0000489 SSA.Initialize(I.getType(), I.getName());
Chris Lattnera6a36f52010-08-29 04:55:06 +0000490
491 // Insert a copy of the instruction in each exit block of the loop that is
492 // dominated by the instruction. Each exit block is known to only be in the
493 // ExitBlocks list once.
494 BasicBlock *InstOrigBB = I.getParent();
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000495 unsigned NumInserted = 0;
Chris Lattnera6a36f52010-08-29 04:55:06 +0000496
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000497 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i) {
498 BasicBlock *ExitBlock = ExitBlocks[i];
Chris Lattnera6a36f52010-08-29 04:55:06 +0000499
Chris Lattner83fc5842011-01-02 18:45:39 +0000500 if (!DT->dominates(InstOrigBB, ExitBlock))
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000501 continue;
502
Chris Lattnera6a36f52010-08-29 04:55:06 +0000503 // Insert the code after the last PHI node.
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000504 BasicBlock::iterator InsertPt = ExitBlock->getFirstNonPHI();
Chris Lattnera6a36f52010-08-29 04:55:06 +0000505
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000506 // If this is the first exit block processed, just move the original
507 // instruction, otherwise clone the original instruction and insert
508 // the copy.
509 Instruction *New;
Chris Lattnera6a36f52010-08-29 04:55:06 +0000510 if (NumInserted++ == 0) {
511 I.moveBefore(InsertPt);
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000512 New = &I;
513 } else {
514 New = I.clone();
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000515 if (!I.getName().empty())
516 New->setName(I.getName()+".le");
517 ExitBlock->getInstList().insert(InsertPt, New);
Chris Lattnereaa24302004-07-27 07:38:32 +0000518 }
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000519
Chris Lattnera6a36f52010-08-29 04:55:06 +0000520 // Now that we have inserted the instruction, inform SSAUpdater.
521 if (!I.use_empty())
522 SSA.AddAvailableValue(ExitBlock, New);
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000523 }
Chris Lattnera6a36f52010-08-29 04:55:06 +0000524
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000525 // If the instruction doesn't dominate any exit blocks, it must be dead.
526 if (NumInserted == 0) {
527 CurAST->deleteValue(&I);
Chris Lattnera6a36f52010-08-29 04:55:06 +0000528 if (!I.use_empty())
529 I.replaceAllUsesWith(UndefValue::get(I.getType()));
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000530 I.eraseFromParent();
Chris Lattnera6a36f52010-08-29 04:55:06 +0000531 return;
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000532 }
Chris Lattnera6a36f52010-08-29 04:55:06 +0000533
534 // Next, rewrite uses of the instruction, inserting PHI nodes as needed.
535 for (Value::use_iterator UI = I.use_begin(), UE = I.use_end(); UI != UE; ) {
536 // Grab the use before incrementing the iterator.
537 Use &U = UI.getUse();
538 // Increment the iterator before removing the use from the list.
539 ++UI;
540 SSA.RewriteUseAfterInsertions(U);
Chris Lattnera2706512003-12-10 06:41:05 +0000541 }
Chris Lattnera6a36f52010-08-29 04:55:06 +0000542
543 // Update CurAST for NewPHIs if I had pointer type.
544 if (I.getType()->isPointerTy())
545 for (unsigned i = 0, e = NewPHIs.size(); i != e; ++i)
Chris Lattner9c282012010-09-02 22:19:10 +0000546 CurAST->copyValue(&I, NewPHIs[i]);
Chris Lattner98917502010-08-29 18:00:00 +0000547
548 // Finally, remove the instruction from CurAST. It is no longer in the loop.
549 CurAST->deleteValue(&I);
Chris Lattnera2706512003-12-10 06:41:05 +0000550}
Chris Lattner952eaee2002-09-29 21:46:09 +0000551
Chris Lattner94170592002-09-26 16:52:07 +0000552/// hoist - When an instruction is found to only use loop invariant operands
553/// that is safe to hoist, this instruction is called to do the dirty work.
554///
Chris Lattnera2706512003-12-10 06:41:05 +0000555void LICM::hoist(Instruction &I) {
David Greenef1582692010-01-05 01:27:30 +0000556 DEBUG(dbgs() << "LICM hoisting to " << Preheader->getName() << ": "
Evan Cheng67d1d1f2009-10-12 22:25:23 +0000557 << I << "\n");
Chris Lattnered6dfc22003-12-09 19:32:44 +0000558
Chris Lattnerd9a5dae2010-08-29 18:18:40 +0000559 // Move the new node to the Preheader, before its terminator.
560 I.moveBefore(Preheader->getTerminator());
Misha Brukmanfd939082005-04-21 23:48:37 +0000561
Chris Lattnera2706512003-12-10 06:41:05 +0000562 if (isa<LoadInst>(I)) ++NumMovedLoads;
Chris Lattner118dd0c2004-03-15 04:11:30 +0000563 else if (isa<CallInst>(I)) ++NumMovedCalls;
Chris Lattner9646e6b2002-09-26 16:38:03 +0000564 ++NumHoisted;
Chris Lattnere0e734e2002-05-10 22:44:58 +0000565 Changed = true;
566}
567
Chris Lattnera2706512003-12-10 06:41:05 +0000568/// isSafeToExecuteUnconditionally - Only sink or hoist an instruction if it is
569/// not a trapping instruction or if it is a trapping instruction and is
570/// guaranteed to execute.
Tanya Lattner9966c032003-08-05 18:45:46 +0000571///
Chris Lattnera2706512003-12-10 06:41:05 +0000572bool LICM::isSafeToExecuteUnconditionally(Instruction &Inst) {
Chris Lattner92094b42003-12-09 17:18:00 +0000573 // If it is not a trapping instruction, it is always safe to hoist.
Eli Friedman0b79a772009-07-17 04:28:42 +0000574 if (Inst.isSafeToSpeculativelyExecute())
575 return true;
Misha Brukmanfd939082005-04-21 23:48:37 +0000576
Chris Lattner92094b42003-12-09 17:18:00 +0000577 // Otherwise we have to check to make sure that the instruction dominates all
578 // of the exit blocks. If it doesn't, then there is a path out of the loop
579 // which does not execute this instruction, so we can't hoist it.
Tanya Lattner9966c032003-08-05 18:45:46 +0000580
Chris Lattner92094b42003-12-09 17:18:00 +0000581 // If the instruction is in the header block for the loop (which is very
582 // common), it is always guaranteed to dominate the exit blocks. Since this
583 // is a common case, and can save some work, check it now.
Chris Lattnera2706512003-12-10 06:41:05 +0000584 if (Inst.getParent() == CurLoop->getHeader())
Chris Lattner92094b42003-12-09 17:18:00 +0000585 return true;
Tanya Lattner9966c032003-08-05 18:45:46 +0000586
Chris Lattner92094b42003-12-09 17:18:00 +0000587 // Get the exit blocks for the current loop.
Devang Patelb7211a22007-08-21 00:31:24 +0000588 SmallVector<BasicBlock*, 8> ExitBlocks;
Chris Lattner5fa802f2004-04-18 22:15:13 +0000589 CurLoop->getExitBlocks(ExitBlocks);
Chris Lattner92094b42003-12-09 17:18:00 +0000590
Chris Lattner83fc5842011-01-02 18:45:39 +0000591 // Verify that the block dominates each of the exit blocks of the loop.
Chris Lattnera2706512003-12-10 06:41:05 +0000592 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i)
Chris Lattner83fc5842011-01-02 18:45:39 +0000593 if (!DT->dominates(Inst.getParent(), ExitBlocks[i]))
Chris Lattnera2706512003-12-10 06:41:05 +0000594 return false;
Misha Brukmanfd939082005-04-21 23:48:37 +0000595
Tanya Lattner9966c032003-08-05 18:45:46 +0000596 return true;
597}
598
Chris Lattnerdeaf55f2011-01-15 00:12:35 +0000599namespace {
600 class LoopPromoter : public LoadAndStorePromoter {
601 Value *SomePtr; // Designated pointer to store to.
602 SmallPtrSet<Value*, 4> &PointerMustAliases;
603 SmallVectorImpl<BasicBlock*> &LoopExitBlocks;
604 AliasSetTracker &AST;
605 public:
606 LoopPromoter(Value *SP,
607 const SmallVectorImpl<Instruction*> &Insts, SSAUpdater &S,
608 SmallPtrSet<Value*, 4> &PMA,
609 SmallVectorImpl<BasicBlock*> &LEB, AliasSetTracker &ast)
610 : LoadAndStorePromoter(Insts, S), SomePtr(SP), PointerMustAliases(PMA),
611 LoopExitBlocks(LEB), AST(ast) {}
612
613 virtual bool isInstInList(Instruction *I,
614 const SmallVectorImpl<Instruction*> &) const {
615 Value *Ptr;
616 if (LoadInst *LI = dyn_cast<LoadInst>(I))
617 Ptr = LI->getOperand(0);
618 else
619 Ptr = cast<StoreInst>(I)->getPointerOperand();
620 return PointerMustAliases.count(Ptr);
621 }
622
623 virtual void doExtraRewritesBeforeFinalDeletion() const {
624 // Insert stores after in the loop exit blocks. Each exit block gets a
625 // store of the live-out values that feed them. Since we've already told
626 // the SSA updater about the defs in the loop and the preheader
627 // definition, it is all set and we can start using it.
628 for (unsigned i = 0, e = LoopExitBlocks.size(); i != e; ++i) {
629 BasicBlock *ExitBlock = LoopExitBlocks[i];
630 Value *LiveInValue = SSA.GetValueInMiddleOfBlock(ExitBlock);
631 Instruction *InsertPos = ExitBlock->getFirstNonPHI();
632 new StoreInst(LiveInValue, SomePtr, InsertPos);
633 }
634 }
635
636 virtual void replaceLoadWithValue(LoadInst *LI, Value *V) const {
637 // Update alias analysis.
638 AST.copyValue(LI, V);
639 }
640 virtual void instructionDeleted(Instruction *I) const {
641 AST.deleteValue(I);
642 }
643 };
644} // end anon namespace
645
Chris Lattnere4880642010-08-29 06:43:52 +0000646/// PromoteAliasSet - Try to promote memory values to scalars by sinking
Chris Lattner2e6e7412003-02-24 03:52:32 +0000647/// stores out of the loop and moving loads to before the loop. We do this by
648/// looping over the stores in the loop, looking for stores to Must pointers
Chris Lattnere4880642010-08-29 06:43:52 +0000649/// which are loop invariant.
Chris Lattner2e6e7412003-02-24 03:52:32 +0000650///
Chris Lattnere4880642010-08-29 06:43:52 +0000651void LICM::PromoteAliasSet(AliasSet &AS) {
652 // We can promote this alias set if it has a store, if it is a "Must" alias
653 // set, if the pointer is loop invariant, and if we are not eliminating any
654 // volatile loads or stores.
655 if (AS.isForwardingAliasSet() || !AS.isMod() || !AS.isMustAlias() ||
656 AS.isVolatile() || !CurLoop->isLoopInvariant(AS.begin()->getValue()))
657 return;
658
659 assert(!AS.empty() &&
660 "Must alias set should have at least one pointer element in it!");
661 Value *SomePtr = AS.begin()->getValue();
Chris Lattner2e6e7412003-02-24 03:52:32 +0000662
Chris Lattnere4880642010-08-29 06:43:52 +0000663 // It isn't safe to promote a load/store from the loop if the load/store is
664 // conditional. For example, turning:
Chris Lattner2e6e7412003-02-24 03:52:32 +0000665 //
Chris Lattnere4880642010-08-29 06:43:52 +0000666 // for () { if (c) *P += 1; }
Chris Lattner2e6e7412003-02-24 03:52:32 +0000667 //
Chris Lattnere4880642010-08-29 06:43:52 +0000668 // into:
669 //
670 // tmp = *P; for () { if (c) tmp +=1; } *P = tmp;
671 //
672 // is not safe, because *P may only be valid to access if 'c' is true.
673 //
674 // It is safe to promote P if all uses are direct load/stores and if at
675 // least one is guaranteed to be executed.
676 bool GuaranteedToExecute = false;
677
678 SmallVector<Instruction*, 64> LoopUses;
679 SmallPtrSet<Value*, 4> PointerMustAliases;
Chris Lattner2e6e7412003-02-24 03:52:32 +0000680
Chris Lattnere4880642010-08-29 06:43:52 +0000681 // Check that all of the pointers in the alias set have the same type. We
682 // cannot (yet) promote a memory location that is loaded and stored in
683 // different sizes.
684 for (AliasSet::iterator ASI = AS.begin(), E = AS.end(); ASI != E; ++ASI) {
685 Value *ASIV = ASI->getValue();
686 PointerMustAliases.insert(ASIV);
Chris Lattner29d92932008-05-22 00:53:38 +0000687
Chris Lattner29d92932008-05-22 00:53:38 +0000688 // Check that all of the pointers in the alias set have the same type. We
689 // cannot (yet) promote a memory location that is loaded and stored in
690 // different sizes.
Chris Lattnere4880642010-08-29 06:43:52 +0000691 if (SomePtr->getType() != ASIV->getType())
692 return;
693
694 for (Value::use_iterator UI = ASIV->use_begin(), UE = ASIV->use_end();
Chris Lattner19d9d432008-05-22 03:22:42 +0000695 UI != UE; ++UI) {
Chris Lattnere4880642010-08-29 06:43:52 +0000696 // Ignore instructions that are outside the loop.
Chris Lattner29d92932008-05-22 00:53:38 +0000697 Instruction *Use = dyn_cast<Instruction>(*UI);
Dan Gohman92329c72009-12-18 01:24:09 +0000698 if (!Use || !CurLoop->contains(Use))
Chris Lattner29d92932008-05-22 00:53:38 +0000699 continue;
Chris Lattnere4880642010-08-29 06:43:52 +0000700
701 // If there is an non-load/store instruction in the loop, we can't promote
702 // it.
703 if (isa<LoadInst>(Use))
704 assert(!cast<LoadInst>(Use)->isVolatile() && "AST broken");
Chris Lattner0cccd762010-09-06 05:11:24 +0000705 else if (isa<StoreInst>(Use)) {
Chris Lattner1dec0d22010-12-19 05:57:25 +0000706 // Stores *of* the pointer are not interesting, only stores *to* the
707 // pointer.
708 if (Use->getOperand(1) != ASIV)
709 continue;
Chris Lattner1c0af0e2010-12-19 05:51:54 +0000710 assert(!cast<StoreInst>(Use)->isVolatile() && "AST broken");
Chris Lattner0cccd762010-09-06 05:11:24 +0000711 } else
Chris Lattnere4880642010-08-29 06:43:52 +0000712 return; // Not a load or store.
Chris Lattner19d9d432008-05-22 03:22:42 +0000713
714 if (!GuaranteedToExecute)
715 GuaranteedToExecute = isSafeToExecuteUnconditionally(*Use);
Chris Lattnere4880642010-08-29 06:43:52 +0000716
717 LoopUses.push_back(Use);
718 }
719 }
720
721 // If there isn't a guaranteed-to-execute instruction, we can't promote.
722 if (!GuaranteedToExecute)
723 return;
724
725 // Otherwise, this is safe to promote, lets do it!
726 DEBUG(dbgs() << "LICM: Promoting value stored to in loop: " <<*SomePtr<<'\n');
727 Changed = true;
728 ++NumPromoted;
729
Chris Lattnerdeaf55f2011-01-15 00:12:35 +0000730 SmallVector<BasicBlock*, 8> ExitBlocks;
731 CurLoop->getUniqueExitBlocks(ExitBlocks);
732
Chris Lattnere4880642010-08-29 06:43:52 +0000733 // We use the SSAUpdater interface to insert phi nodes as required.
734 SmallVector<PHINode*, 16> NewPHIs;
735 SSAUpdater SSA(&NewPHIs);
Chris Lattnerdeaf55f2011-01-15 00:12:35 +0000736 LoopPromoter Promoter(SomePtr, LoopUses, SSA, PointerMustAliases, ExitBlocks,
737 *CurAST);
Chris Lattnere4880642010-08-29 06:43:52 +0000738
Chris Lattnerdeaf55f2011-01-15 00:12:35 +0000739 // Set up the preheader to have a definition of the value. It is the live-out
740 // value from the preheader that uses in the loop will use.
741 LoadInst *PreheaderLoad =
742 new LoadInst(SomePtr, SomePtr->getName()+".promoted",
743 Preheader->getTerminator());
Chris Lattnere4880642010-08-29 06:43:52 +0000744 SSA.AddAvailableValue(Preheader, PreheaderLoad);
745
Chris Lattnerdeaf55f2011-01-15 00:12:35 +0000746 // Copy any value stored to or loaded from a must-alias of the pointer.
747 if (PreheaderLoad->getType()->isPointerTy()) {
748 Value *SomeValue;
749 if (LoadInst *LI = dyn_cast<LoadInst>(LoopUses[0]))
750 SomeValue = LI;
751 else
752 SomeValue = cast<StoreInst>(LoopUses[0])->getValueOperand();
753
754 CurAST->copyValue(SomeValue, PreheaderLoad);
Chris Lattnere4880642010-08-29 06:43:52 +0000755 }
756
Chris Lattnerdeaf55f2011-01-15 00:12:35 +0000757 // Rewrite all the loads in the loop and remember all the definitions from
758 // stores in the loop.
759 Promoter.run(LoopUses);
Chris Lattnere4880642010-08-29 06:43:52 +0000760
Chris Lattner7abdb222010-09-14 00:19:00 +0000761 // If the preheader load is itself a pointer, we need to tell alias analysis
762 // about the new pointer we created in the preheader block and about any PHI
763 // nodes that just got inserted.
764 if (PreheaderLoad->getType()->isPointerTy()) {
Chris Lattner7abdb222010-09-14 00:19:00 +0000765 for (unsigned i = 0, e = NewPHIs.size(); i != e; ++i)
Chris Lattnerdeaf55f2011-01-15 00:12:35 +0000766 CurAST->copyValue(PreheaderLoad, NewPHIs[i]);
Chris Lattnere4880642010-08-29 06:43:52 +0000767 }
768
Chris Lattnere4880642010-08-29 06:43:52 +0000769 // fwew, we're done!
Chris Lattnerf5e84aa2002-08-22 21:39:55 +0000770}
Devang Patel91d22c82007-07-31 08:01:41 +0000771
Chris Lattnere4880642010-08-29 06:43:52 +0000772
Devang Patel91d22c82007-07-31 08:01:41 +0000773/// cloneBasicBlockAnalysis - Simple Analysis hook. Clone alias set info.
774void LICM::cloneBasicBlockAnalysis(BasicBlock *From, BasicBlock *To, Loop *L) {
Chris Lattner4282e322010-08-29 17:46:00 +0000775 AliasSetTracker *AST = LoopToAliasSetMap.lookup(L);
Devang Patel91d22c82007-07-31 08:01:41 +0000776 if (!AST)
777 return;
778
779 AST->copyValue(From, To);
780}
781
782/// deleteAnalysisValue - Simple Analysis hook. Delete value V from alias
783/// set.
784void LICM::deleteAnalysisValue(Value *V, Loop *L) {
Chris Lattner4282e322010-08-29 17:46:00 +0000785 AliasSetTracker *AST = LoopToAliasSetMap.lookup(L);
Devang Patel91d22c82007-07-31 08:01:41 +0000786 if (!AST)
787 return;
788
789 AST->deleteValue(V);
790}