blob: 3fe256dba7c08e8b607f335eb53b2c1e2d8471ac [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"
Devang Patel96b651c2007-07-30 20:19:59 +000046#include "llvm/Analysis/ScalarEvolution.h"
Chris Lattner0de5cad2010-08-29 18:22:25 +000047#include "llvm/Transforms/Utils/Local.h"
Chris Lattnera6a36f52010-08-29 04:55:06 +000048#include "llvm/Transforms/Utils/SSAUpdater.h"
Reid Spencer9133fe22007-02-05 23:32:05 +000049#include "llvm/Support/CFG.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000050#include "llvm/Support/CommandLine.h"
Daniel Dunbarce63ffb2009-07-25 00:23:56 +000051#include "llvm/Support/raw_ostream.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000052#include "llvm/Support/Debug.h"
53#include "llvm/ADT/Statistic.h"
Chris Lattnere0e734e2002-05-10 22:44:58 +000054#include <algorithm>
Chris Lattner92094b42003-12-09 17:18:00 +000055using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000056
Chris Lattner0e5f4992006-12-19 21:40:18 +000057STATISTIC(NumSunk , "Number of instructions sunk out of loop");
58STATISTIC(NumHoisted , "Number of instructions hoisted out of loop");
59STATISTIC(NumMovedLoads, "Number of load insts hoisted or sunk");
60STATISTIC(NumMovedCalls, "Number of call insts hoisted or sunk");
61STATISTIC(NumPromoted , "Number of memory locations promoted to registers");
62
Dan Gohman844731a2008-05-13 00:00:25 +000063static cl::opt<bool>
64DisablePromotion("disable-licm-promotion", cl::Hidden,
65 cl::desc("Disable memory promotion in LICM pass"));
Chris Lattner2e6e7412003-02-24 03:52:32 +000066
Dan Gohman844731a2008-05-13 00:00:25 +000067namespace {
Chris Lattner3e8b6632009-09-02 06:11:42 +000068 struct LICM : public LoopPass {
Nick Lewyckyecd94c82007-05-06 13:37:16 +000069 static char ID; // Pass identification, replacement for typeid
Owen Anderson081c34b2010-10-19 17:21:58 +000070 LICM() : LoopPass(ID) {
71 initializeLICMPass(*PassRegistry::getPassRegistry());
72 }
Devang Patel794fd752007-05-01 21:15:47 +000073
Devang Patel54959d62007-03-07 04:41:30 +000074 virtual bool runOnLoop(Loop *L, LPPassManager &LPM);
Chris Lattnere0e734e2002-05-10 22:44:58 +000075
Chris Lattner94170592002-09-26 16:52:07 +000076 /// This transformation requires natural loop information & requires that
77 /// loop preheaders be inserted into the CFG...
78 ///
Chris Lattnere0e734e2002-05-10 22:44:58 +000079 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattnercb2610e2002-10-21 20:00:28 +000080 AU.setPreservesCFG();
Owen Anderson3a2b58f2007-04-24 06:40:39 +000081 AU.addRequired<DominatorTree>();
Dan Gohman1e381fc2010-07-16 17:58:45 +000082 AU.addRequired<LoopInfo>();
83 AU.addRequiredID(LoopSimplifyID);
Chris Lattnerf5e84aa2002-08-22 21:39:55 +000084 AU.addRequired<AliasAnalysis>();
Chris Lattnere418ac82010-08-29 07:02:56 +000085 AU.addPreserved<AliasAnalysis>();
Devang Patel96b651c2007-07-30 20:19:59 +000086 AU.addPreserved<ScalarEvolution>();
Dan Gohman5c89b522009-09-08 15:45:00 +000087 AU.addPreservedID(LoopSimplifyID);
Chris Lattnere0e734e2002-05-10 22:44:58 +000088 }
89
Dan Gohman747603e2007-04-17 18:21:36 +000090 bool doFinalization() {
Chris Lattner4282e322010-08-29 17:46:00 +000091 assert(LoopToAliasSetMap.empty() && "Didn't free loop alias sets");
Devang Patel54959d62007-03-07 04:41:30 +000092 return false;
93 }
94
Chris Lattnere0e734e2002-05-10 22:44:58 +000095 private:
Chris Lattner2e6e7412003-02-24 03:52:32 +000096 AliasAnalysis *AA; // Current AliasAnalysis information
Chris Lattner92094b42003-12-09 17:18:00 +000097 LoopInfo *LI; // Current LoopInfo
Chris Lattner44e2bd32010-08-29 06:49:44 +000098 DominatorTree *DT; // Dominator Tree for the current Loop.
Chris Lattner92094b42003-12-09 17:18:00 +000099
Chris Lattner4282e322010-08-29 17:46:00 +0000100 // State that is updated as we process loops.
Chris Lattner2e6e7412003-02-24 03:52:32 +0000101 bool Changed; // Set to true when we change anything.
102 BasicBlock *Preheader; // The preheader block of the current loop...
103 Loop *CurLoop; // The current loop we are working on...
Chris Lattner0252e492003-03-03 23:32:45 +0000104 AliasSetTracker *CurAST; // AliasSet information for the current loop...
Chris Lattner4282e322010-08-29 17:46:00 +0000105 DenseMap<Loop*, AliasSetTracker*> LoopToAliasSetMap;
Chris Lattnere0e734e2002-05-10 22:44:58 +0000106
Devang Patel91d22c82007-07-31 08:01:41 +0000107 /// cloneBasicBlockAnalysis - Simple Analysis hook. Clone alias set info.
108 void cloneBasicBlockAnalysis(BasicBlock *From, BasicBlock *To, Loop *L);
109
110 /// deleteAnalysisValue - Simple Analysis hook. Delete value V from alias
111 /// set.
112 void deleteAnalysisValue(Value *V, Loop *L);
113
Chris Lattnere4365b22003-12-19 07:22:45 +0000114 /// SinkRegion - Walk the specified region of the CFG (defined by all blocks
115 /// dominated by the specified block, and that are in the current loop) in
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000116 /// reverse depth first order w.r.t the DominatorTree. This allows us to
Chris Lattnere4365b22003-12-19 07:22:45 +0000117 /// visit uses before definitions, allowing us to sink a loop body in one
118 /// pass without iteration.
119 ///
Devang Patel26042422007-06-04 00:32:22 +0000120 void SinkRegion(DomTreeNode *N);
Chris Lattnere4365b22003-12-19 07:22:45 +0000121
Chris Lattner952eaee2002-09-29 21:46:09 +0000122 /// HoistRegion - Walk the specified region of the CFG (defined by all
123 /// blocks dominated by the specified block, and that are in the current
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000124 /// loop) in depth first order w.r.t the DominatorTree. This allows us to
Misha Brukmancf00c4a2003-10-10 17:57:28 +0000125 /// visit definitions before uses, allowing us to hoist a loop body in one
Chris Lattner952eaee2002-09-29 21:46:09 +0000126 /// pass without iteration.
127 ///
Devang Patel26042422007-06-04 00:32:22 +0000128 void HoistRegion(DomTreeNode *N);
Chris Lattner952eaee2002-09-29 21:46:09 +0000129
Chris Lattnerb4613732002-09-29 22:26:07 +0000130 /// inSubLoop - Little predicate that returns true if the specified basic
131 /// block is in a subloop of the current one, not the current one itself.
Chris Lattner94170592002-09-26 16:52:07 +0000132 ///
Chris Lattnerb4613732002-09-29 22:26:07 +0000133 bool inSubLoop(BasicBlock *BB) {
134 assert(CurLoop->contains(BB) && "Only valid if BB is IN the loop");
Chris Lattner329c1c62004-01-08 00:09:44 +0000135 for (Loop::iterator I = CurLoop->begin(), E = CurLoop->end(); I != E; ++I)
136 if ((*I)->contains(BB))
Chris Lattnerb4613732002-09-29 22:26:07 +0000137 return true; // A subloop actually contains this block!
138 return false;
Chris Lattnere0e734e2002-05-10 22:44:58 +0000139 }
140
Chris Lattnera2706512003-12-10 06:41:05 +0000141 /// isExitBlockDominatedByBlockInLoop - This method checks to see if the
142 /// specified exit block of the loop is dominated by the specified block
143 /// that is in the body of the loop. We use these constraints to
144 /// dramatically limit the amount of the dominator tree that needs to be
145 /// searched.
146 bool isExitBlockDominatedByBlockInLoop(BasicBlock *ExitBlock,
147 BasicBlock *BlockInLoop) const {
148 // If the block in the loop is the loop header, it must be dominated!
149 BasicBlock *LoopHeader = CurLoop->getHeader();
150 if (BlockInLoop == LoopHeader)
151 return true;
Misha Brukmanfd939082005-04-21 23:48:37 +0000152
Devang Patel26042422007-06-04 00:32:22 +0000153 DomTreeNode *BlockInLoopNode = DT->getNode(BlockInLoop);
154 DomTreeNode *IDom = DT->getNode(ExitBlock);
Misha Brukmanfd939082005-04-21 23:48:37 +0000155
Chris Lattnera2706512003-12-10 06:41:05 +0000156 // Because the exit block is not in the loop, we know we have to get _at
Chris Lattner2741c972004-05-23 21:20:19 +0000157 // least_ its immediate dominator.
Eric Christopher3472ae12009-12-10 00:25:41 +0000158 IDom = IDom->getIDom();
159
160 while (IDom && IDom != BlockInLoopNode) {
Chris Lattnera2706512003-12-10 06:41:05 +0000161 // If we have got to the header of the loop, then the instructions block
162 // did not dominate the exit node, so we can't hoist it.
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000163 if (IDom->getBlock() == LoopHeader)
Chris Lattnera2706512003-12-10 06:41:05 +0000164 return false;
Misha Brukmanfd939082005-04-21 23:48:37 +0000165
Eric Christopher3472ae12009-12-10 00:25:41 +0000166 // Get next Immediate Dominator.
167 IDom = IDom->getIDom();
168 };
Chris Lattnera2706512003-12-10 06:41:05 +0000169
170 return true;
171 }
172
173 /// sink - When an instruction is found to only be used outside of the loop,
174 /// this function moves it to the exit blocks and patches up SSA form as
175 /// needed.
176 ///
177 void sink(Instruction &I);
178
Chris Lattner94170592002-09-26 16:52:07 +0000179 /// hoist - When an instruction is found to only use loop invariant operands
180 /// that is safe to hoist, this instruction is called to do the dirty work.
181 ///
Chris Lattner7e708292002-06-25 16:13:24 +0000182 void hoist(Instruction &I);
Chris Lattnere0e734e2002-05-10 22:44:58 +0000183
Chris Lattnera2706512003-12-10 06:41:05 +0000184 /// isSafeToExecuteUnconditionally - Only sink or hoist an instruction if it
185 /// is not a trapping instruction or if it is a trapping instruction and is
186 /// guaranteed to execute.
Tanya Lattner9966c032003-08-05 18:45:46 +0000187 ///
Chris Lattnera2706512003-12-10 06:41:05 +0000188 bool isSafeToExecuteUnconditionally(Instruction &I);
Tanya Lattner9966c032003-08-05 18:45:46 +0000189
Chris Lattner94170592002-09-26 16:52:07 +0000190 /// pointerInvalidatedByLoop - Return true if the body of this loop may
191 /// store into the memory location pointed to by V.
Misha Brukmanfd939082005-04-21 23:48:37 +0000192 ///
Dan Gohmana8702ea2010-10-18 20:44:50 +0000193 bool pointerInvalidatedByLoop(Value *V, unsigned Size,
194 const MDNode *TBAAInfo) {
Chris Lattner0252e492003-03-03 23:32:45 +0000195 // Check to see if any of the basic blocks in CurLoop invalidate *V.
Dan Gohmana8702ea2010-10-18 20:44:50 +0000196 return CurAST->getAliasSetForPointer(V, Size, TBAAInfo).isMod();
Chris Lattner2e6e7412003-02-24 03:52:32 +0000197 }
Chris Lattnerf5e84aa2002-08-22 21:39:55 +0000198
Chris Lattnera2706512003-12-10 06:41:05 +0000199 bool canSinkOrHoistInst(Instruction &I);
Chris Lattnera2706512003-12-10 06:41:05 +0000200 bool isNotUsedInLoop(Instruction &I);
Chris Lattnere0e734e2002-05-10 22:44:58 +0000201
Chris Lattnere4880642010-08-29 06:43:52 +0000202 void PromoteAliasSet(AliasSet &AS);
Chris Lattnere0e734e2002-05-10 22:44:58 +0000203 };
204}
205
Dan Gohman844731a2008-05-13 00:00:25 +0000206char LICM::ID = 0;
Owen Anderson2ab36d32010-10-12 19:48:12 +0000207INITIALIZE_PASS_BEGIN(LICM, "licm", "Loop Invariant Code Motion", false, false)
208INITIALIZE_PASS_DEPENDENCY(DominatorTree)
209INITIALIZE_PASS_DEPENDENCY(LoopInfo)
210INITIALIZE_PASS_DEPENDENCY(ScalarEvolution)
211INITIALIZE_PASS_DEPENDENCY(LoopSimplify)
212INITIALIZE_AG_DEPENDENCY(AliasAnalysis)
213INITIALIZE_PASS_END(LICM, "licm", "Loop Invariant Code Motion", false, false)
Dan Gohman844731a2008-05-13 00:00:25 +0000214
Daniel Dunbar394f0442008-10-22 23:32:42 +0000215Pass *llvm::createLICMPass() { return new LICM(); }
Chris Lattnere0e734e2002-05-10 22:44:58 +0000216
Devang Patel8d246f02007-07-31 16:52:25 +0000217/// Hoist expressions out of the specified loop. Note, alias info for inner
218/// loop is not preserved so it is not a good idea to run LICM multiple
219/// times on one loop.
Chris Lattner94170592002-09-26 16:52:07 +0000220///
Devang Patel54959d62007-03-07 04:41:30 +0000221bool LICM::runOnLoop(Loop *L, LPPassManager &LPM) {
Chris Lattner2e6e7412003-02-24 03:52:32 +0000222 Changed = false;
Chris Lattnere0e734e2002-05-10 22:44:58 +0000223
Chris Lattner2e6e7412003-02-24 03:52:32 +0000224 // Get our Loop and Alias Analysis information...
225 LI = &getAnalysis<LoopInfo>();
Chris Lattnerf5e84aa2002-08-22 21:39:55 +0000226 AA = &getAnalysis<AliasAnalysis>();
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000227 DT = &getAnalysis<DominatorTree>();
Chris Lattnerf5e84aa2002-08-22 21:39:55 +0000228
Devang Patel54959d62007-03-07 04:41:30 +0000229 CurAST = new AliasSetTracker(*AA);
Chris Lattner4282e322010-08-29 17:46:00 +0000230 // Collect Alias info from subloops.
Devang Patel54959d62007-03-07 04:41:30 +0000231 for (Loop::iterator LoopItr = L->begin(), LoopItrE = L->end();
232 LoopItr != LoopItrE; ++LoopItr) {
233 Loop *InnerL = *LoopItr;
Chris Lattner4282e322010-08-29 17:46:00 +0000234 AliasSetTracker *InnerAST = LoopToAliasSetMap[InnerL];
235 assert(InnerAST && "Where is my AST?");
Devang Patel54959d62007-03-07 04:41:30 +0000236
237 // What if InnerLoop was modified by other passes ?
238 CurAST->add(*InnerAST);
Chris Lattner4282e322010-08-29 17:46:00 +0000239
240 // Once we've incorporated the inner loop's AST into ours, we don't need the
241 // subloop's anymore.
242 delete InnerAST;
243 LoopToAliasSetMap.erase(InnerL);
Chris Lattner2e6e7412003-02-24 03:52:32 +0000244 }
Devang Patel54959d62007-03-07 04:41:30 +0000245
Chris Lattnere0e734e2002-05-10 22:44:58 +0000246 CurLoop = L;
247
Chris Lattner99a57212002-09-26 19:40:25 +0000248 // Get the preheader block to move instructions into...
249 Preheader = L->getLoopPreheader();
Chris Lattner99a57212002-09-26 19:40:25 +0000250
Chris Lattner2e6e7412003-02-24 03:52:32 +0000251 // Loop over the body of this loop, looking for calls, invokes, and stores.
Chris Lattner0252e492003-03-03 23:32:45 +0000252 // Because subloops have already been incorporated into AST, we skip blocks in
Chris Lattner2e6e7412003-02-24 03:52:32 +0000253 // subloops.
254 //
Dan Gohman9b787632008-06-22 20:18:58 +0000255 for (Loop::block_iterator I = L->block_begin(), E = L->block_end();
256 I != E; ++I) {
257 BasicBlock *BB = *I;
Chris Lattner4282e322010-08-29 17:46:00 +0000258 if (LI->getLoopFor(BB) == L) // Ignore blocks in subloops.
Dan Gohman9b787632008-06-22 20:18:58 +0000259 CurAST->add(*BB); // Incorporate the specified basic block
260 }
Chris Lattner2e6e7412003-02-24 03:52:32 +0000261
Chris Lattnere0e734e2002-05-10 22:44:58 +0000262 // We want to visit all of the instructions in this loop... that are not parts
263 // of our subloops (they have already had their invariants hoisted out of
264 // their loop, into this loop, so there is no need to process the BODIES of
265 // the subloops).
266 //
Chris Lattner952eaee2002-09-29 21:46:09 +0000267 // Traverse the body of the loop in depth first order on the dominator tree so
268 // that we are guaranteed to see definitions before we see uses. This allows
Nick Lewyckyaf5cbc82007-08-18 15:08:56 +0000269 // us to sink instructions in one pass, without iteration. After sinking
Chris Lattnere4365b22003-12-19 07:22:45 +0000270 // instructions, we perform another pass to hoist them out of the loop.
Chris Lattner952eaee2002-09-29 21:46:09 +0000271 //
Dan Gohman03e896b2009-11-05 21:11:53 +0000272 if (L->hasDedicatedExits())
273 SinkRegion(DT->getNode(L->getHeader()));
274 if (Preheader)
275 HoistRegion(DT->getNode(L->getHeader()));
Chris Lattnere0e734e2002-05-10 22:44:58 +0000276
Chris Lattner2e6e7412003-02-24 03:52:32 +0000277 // Now that all loop invariants have been removed from the loop, promote any
Chris Lattnere4880642010-08-29 06:43:52 +0000278 // memory references to scalars that we can.
279 if (!DisablePromotion && Preheader && L->hasDedicatedExits()) {
280 // Loop over all of the alias sets in the tracker object.
281 for (AliasSetTracker::iterator I = CurAST->begin(), E = CurAST->end();
282 I != E; ++I)
283 PromoteAliasSet(*I);
284 }
285
Chris Lattnere0e734e2002-05-10 22:44:58 +0000286 // Clear out loops state information for the next iteration
287 CurLoop = 0;
Chris Lattner99a57212002-09-26 19:40:25 +0000288 Preheader = 0;
Devang Patel54959d62007-03-07 04:41:30 +0000289
Chris Lattner4282e322010-08-29 17:46:00 +0000290 // If this loop is nested inside of another one, save the alias information
291 // for when we process the outer loop.
292 if (L->getParentLoop())
293 LoopToAliasSetMap[L] = CurAST;
294 else
295 delete CurAST;
Devang Patel54959d62007-03-07 04:41:30 +0000296 return Changed;
Chris Lattnere0e734e2002-05-10 22:44:58 +0000297}
298
Chris Lattnere4365b22003-12-19 07:22:45 +0000299/// SinkRegion - Walk the specified region of the CFG (defined by all blocks
300/// dominated by the specified block, and that are in the current loop) in
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000301/// reverse depth first order w.r.t the DominatorTree. This allows us to visit
Chris Lattnere4365b22003-12-19 07:22:45 +0000302/// uses before definitions, allowing us to sink a loop body in one pass without
303/// iteration.
304///
Devang Patel26042422007-06-04 00:32:22 +0000305void LICM::SinkRegion(DomTreeNode *N) {
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000306 assert(N != 0 && "Null dominator tree node?");
307 BasicBlock *BB = N->getBlock();
Chris Lattnere4365b22003-12-19 07:22:45 +0000308
309 // If this subregion is not in the top level loop at all, exit.
310 if (!CurLoop->contains(BB)) return;
311
Chris Lattner0de5cad2010-08-29 18:22:25 +0000312 // We are processing blocks in reverse dfo, so process children first.
Devang Patel26042422007-06-04 00:32:22 +0000313 const std::vector<DomTreeNode*> &Children = N->getChildren();
Chris Lattnere4365b22003-12-19 07:22:45 +0000314 for (unsigned i = 0, e = Children.size(); i != e; ++i)
315 SinkRegion(Children[i]);
316
317 // Only need to process the contents of this block if it is not part of a
318 // subloop (which would already have been processed).
319 if (inSubLoop(BB)) return;
320
Chris Lattnera3df8a92003-12-19 08:18:16 +0000321 for (BasicBlock::iterator II = BB->end(); II != BB->begin(); ) {
322 Instruction &I = *--II;
Chris Lattner0de5cad2010-08-29 18:22:25 +0000323
324 // If the instruction is dead, we would try to sink it because it isn't used
325 // in the loop, instead, just delete it.
326 if (isInstructionTriviallyDead(&I)) {
Chris Lattnercb7f6532010-08-29 18:42:23 +0000327 DEBUG(dbgs() << "LICM deleting dead inst: " << I << '\n');
Chris Lattner0de5cad2010-08-29 18:22:25 +0000328 ++II;
329 CurAST->deleteValue(&I);
330 I.eraseFromParent();
331 Changed = true;
332 continue;
333 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000334
Chris Lattnere4365b22003-12-19 07:22:45 +0000335 // Check to see if we can sink this instruction to the exit blocks
336 // of the loop. We can do this if the all users of the instruction are
337 // outside of the loop. In this case, it doesn't even matter if the
338 // operands of the instruction are loop invariant.
339 //
Chris Lattner70ac2dc2005-03-25 00:22:36 +0000340 if (isNotUsedInLoop(I) && canSinkOrHoistInst(I)) {
Chris Lattnera3df8a92003-12-19 08:18:16 +0000341 ++II;
Chris Lattnere4365b22003-12-19 07:22:45 +0000342 sink(I);
Chris Lattnera3df8a92003-12-19 08:18:16 +0000343 }
Chris Lattnere4365b22003-12-19 07:22:45 +0000344 }
345}
346
Chris Lattner952eaee2002-09-29 21:46:09 +0000347/// HoistRegion - Walk the specified region of the CFG (defined by all blocks
348/// dominated by the specified block, and that are in the current loop) in depth
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000349/// first order w.r.t the DominatorTree. This allows us to visit definitions
Chris Lattner952eaee2002-09-29 21:46:09 +0000350/// before uses, allowing us to hoist a loop body in one pass without iteration.
351///
Devang Patel26042422007-06-04 00:32:22 +0000352void LICM::HoistRegion(DomTreeNode *N) {
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000353 assert(N != 0 && "Null dominator tree node?");
354 BasicBlock *BB = N->getBlock();
Chris Lattner952eaee2002-09-29 21:46:09 +0000355
Chris Lattnerb4613732002-09-29 22:26:07 +0000356 // If this subregion is not in the top level loop at all, exit.
Chris Lattnered6dfc22003-12-09 19:32:44 +0000357 if (!CurLoop->contains(BB)) return;
Chris Lattner952eaee2002-09-29 21:46:09 +0000358
Chris Lattnera2706512003-12-10 06:41:05 +0000359 // Only need to process the contents of this block if it is not part of a
360 // subloop (which would already have been processed).
Chris Lattnered6dfc22003-12-09 19:32:44 +0000361 if (!inSubLoop(BB))
Chris Lattnera2706512003-12-10 06:41:05 +0000362 for (BasicBlock::iterator II = BB->begin(), E = BB->end(); II != E; ) {
363 Instruction &I = *II++;
Misha Brukmanfd939082005-04-21 23:48:37 +0000364
Chris Lattner2ac6e232010-08-31 23:00:16 +0000365 // Try constant folding this instruction. If all the operands are
366 // constants, it is technically hoistable, but it would be better to just
367 // fold it.
368 if (Constant *C = ConstantFoldInstruction(&I)) {
369 DEBUG(dbgs() << "LICM folding inst: " << I << " --> " << *C << '\n');
370 CurAST->copyValue(&I, C);
371 CurAST->deleteValue(&I);
372 I.replaceAllUsesWith(C);
373 I.eraseFromParent();
374 continue;
375 }
376
Chris Lattnere4365b22003-12-19 07:22:45 +0000377 // Try hoisting the instruction out to the preheader. We can only do this
378 // if all of the operands of the instruction are loop invariant and if it
379 // is safe to hoist the instruction.
380 //
Chris Lattneradc79912010-09-06 01:05:37 +0000381 if (CurLoop->hasLoopInvariantOperands(&I) && canSinkOrHoistInst(I) &&
Chris Lattnere4365b22003-12-19 07:22:45 +0000382 isSafeToExecuteUnconditionally(I))
Chris Lattner3c80a512006-06-26 19:10:05 +0000383 hoist(I);
Chris Lattner2ac6e232010-08-31 23:00:16 +0000384 }
Chris Lattner952eaee2002-09-29 21:46:09 +0000385
Devang Patel26042422007-06-04 00:32:22 +0000386 const std::vector<DomTreeNode*> &Children = N->getChildren();
Chris Lattner952eaee2002-09-29 21:46:09 +0000387 for (unsigned i = 0, e = Children.size(); i != e; ++i)
Chris Lattner56b7ee22004-06-19 20:23:35 +0000388 HoistRegion(Children[i]);
Chris Lattner952eaee2002-09-29 21:46:09 +0000389}
390
Chris Lattnera2706512003-12-10 06:41:05 +0000391/// canSinkOrHoistInst - Return true if the hoister and sinker can handle this
392/// instruction.
393///
394bool LICM::canSinkOrHoistInst(Instruction &I) {
Chris Lattnered6dfc22003-12-09 19:32:44 +0000395 // Loads have extra constraints we have to verify before we can hoist them.
396 if (LoadInst *LI = dyn_cast<LoadInst>(&I)) {
397 if (LI->isVolatile())
398 return false; // Don't hoist volatile loads!
399
Chris Lattner967948b2008-07-23 05:06:28 +0000400 // Loads from constant memory are always safe to move, even if they end up
401 // in the same alias set as something that ends up being modified.
Dan Gohmandab249b2009-11-19 19:00:10 +0000402 if (AA->pointsToConstantMemory(LI->getOperand(0)))
Chris Lattner967948b2008-07-23 05:06:28 +0000403 return true;
404
Chris Lattnered6dfc22003-12-09 19:32:44 +0000405 // Don't hoist loads which have may-aliased stores in loop.
Chris Lattnerf3e1d692004-11-26 21:20:09 +0000406 unsigned Size = 0;
407 if (LI->getType()->isSized())
Dan Gohmanfc2a3ed2009-07-25 00:48:42 +0000408 Size = AA->getTypeStoreSize(LI->getType());
Dan Gohmana8702ea2010-10-18 20:44:50 +0000409 return !pointerInvalidatedByLoop(LI->getOperand(0), Size,
410 LI->getMetadata(LLVMContext::MD_tbaa));
Chris Lattner118dd0c2004-03-15 04:11:30 +0000411 } else if (CallInst *CI = dyn_cast<CallInst>(&I)) {
412 // Handle obvious cases efficiently.
Duncan Sandsdff67102007-12-01 07:51:45 +0000413 AliasAnalysis::ModRefBehavior Behavior = AA->getModRefBehavior(CI);
414 if (Behavior == AliasAnalysis::DoesNotAccessMemory)
415 return true;
416 else if (Behavior == AliasAnalysis::OnlyReadsMemory) {
417 // If this call only reads from memory and there are no writes to memory
418 // in the loop, we can hoist or sink the call as appropriate.
419 bool FoundMod = false;
420 for (AliasSetTracker::iterator I = CurAST->begin(), E = CurAST->end();
421 I != E; ++I) {
422 AliasSet &AS = *I;
423 if (!AS.isForwardingAliasSet() && AS.isMod()) {
424 FoundMod = true;
425 break;
Chris Lattner118dd0c2004-03-15 04:11:30 +0000426 }
Chris Lattner118dd0c2004-03-15 04:11:30 +0000427 }
Duncan Sandsdff67102007-12-01 07:51:45 +0000428 if (!FoundMod) return true;
Chris Lattner118dd0c2004-03-15 04:11:30 +0000429 }
430
431 // FIXME: This should use mod/ref information to see if we can hoist or sink
432 // the call.
Misha Brukmanfd939082005-04-21 23:48:37 +0000433
Chris Lattner118dd0c2004-03-15 04:11:30 +0000434 return false;
Chris Lattnered6dfc22003-12-09 19:32:44 +0000435 }
436
Reid Spencer3da59db2006-11-27 01:05:10 +0000437 // Otherwise these instructions are hoistable/sinkable
Reid Spencer832254e2007-02-02 02:16:23 +0000438 return isa<BinaryOperator>(I) || isa<CastInst>(I) ||
Dan Gohmand8af90c2007-06-05 16:05:55 +0000439 isa<SelectInst>(I) || isa<GetElementPtrInst>(I) || isa<CmpInst>(I) ||
440 isa<InsertElementInst>(I) || isa<ExtractElementInst>(I) ||
441 isa<ShuffleVectorInst>(I);
Chris Lattnera2706512003-12-10 06:41:05 +0000442}
443
444/// isNotUsedInLoop - Return true if the only users of this instruction are
445/// outside of the loop. If this is true, we can sink the instruction to the
446/// exit blocks of the loop.
447///
448bool LICM::isNotUsedInLoop(Instruction &I) {
Chris Lattnerea9403f2003-12-11 22:23:32 +0000449 for (Value::use_iterator UI = I.use_begin(), E = I.use_end(); UI != E; ++UI) {
450 Instruction *User = cast<Instruction>(*UI);
451 if (PHINode *PN = dyn_cast<PHINode>(User)) {
452 // PHI node uses occur in predecessor blocks!
453 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
454 if (PN->getIncomingValue(i) == &I)
455 if (CurLoop->contains(PN->getIncomingBlock(i)))
456 return false;
Dan Gohman92329c72009-12-18 01:24:09 +0000457 } else if (CurLoop->contains(User)) {
Chris Lattnera2706512003-12-10 06:41:05 +0000458 return false;
Chris Lattnerea9403f2003-12-11 22:23:32 +0000459 }
460 }
Chris Lattnera2706512003-12-10 06:41:05 +0000461 return true;
462}
463
464
Chris Lattnera2706512003-12-10 06:41:05 +0000465/// sink - When an instruction is found to only be used outside of the loop,
Chris Lattnera3df8a92003-12-19 08:18:16 +0000466/// this function moves it to the exit blocks and patches up SSA form as needed.
467/// This method is guaranteed to remove the original instruction from its
468/// position, and may either delete it or move it to outside of the loop.
Chris Lattnera2706512003-12-10 06:41:05 +0000469///
470void LICM::sink(Instruction &I) {
Nick Lewycky39a38312010-07-30 20:27:01 +0000471 DEBUG(dbgs() << "LICM sinking instruction: " << I << "\n");
Chris Lattnera2706512003-12-10 06:41:05 +0000472
Devang Patelb7211a22007-08-21 00:31:24 +0000473 SmallVector<BasicBlock*, 8> ExitBlocks;
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000474 CurLoop->getUniqueExitBlocks(ExitBlocks);
Chris Lattnerdf45bd32003-12-10 20:43:29 +0000475
476 if (isa<LoadInst>(I)) ++NumMovedLoads;
Chris Lattner118dd0c2004-03-15 04:11:30 +0000477 else if (isa<CallInst>(I)) ++NumMovedCalls;
Chris Lattnerdf45bd32003-12-10 20:43:29 +0000478 ++NumSunk;
479 Changed = true;
480
Chris Lattnera2706512003-12-10 06:41:05 +0000481 // The case where there is only a single exit node of this loop is common
482 // enough that we handle it as a special (more efficient) case. It is more
483 // efficient to handle because there are no PHI nodes that need to be placed.
484 if (ExitBlocks.size() == 1) {
485 if (!isExitBlockDominatedByBlockInLoop(ExitBlocks[0], I.getParent())) {
486 // Instruction is not used, just delete it.
Chris Lattner2741c972004-05-23 21:20:19 +0000487 CurAST->deleteValue(&I);
Devang Patel1bf5ebc2009-10-13 21:41:20 +0000488 // If I has users in unreachable blocks, eliminate.
Devang Patel228ebd02009-10-13 22:56:32 +0000489 // If I is not void type then replaceAllUsesWith undef.
490 // This allows ValueHandlers and custom metadata to adjust itself.
Chris Lattnera6a36f52010-08-29 04:55:06 +0000491 if (!I.use_empty())
Devang Patel228ebd02009-10-13 22:56:32 +0000492 I.replaceAllUsesWith(UndefValue::get(I.getType()));
Chris Lattner3c80a512006-06-26 19:10:05 +0000493 I.eraseFromParent();
Chris Lattnera2706512003-12-10 06:41:05 +0000494 } else {
495 // Move the instruction to the start of the exit block, after any PHI
496 // nodes in it.
Chris Lattnerd9a5dae2010-08-29 18:18:40 +0000497 I.moveBefore(ExitBlocks[0]->getFirstNonPHI());
Chris Lattner4282e322010-08-29 17:46:00 +0000498
499 // This instruction is no longer in the AST for the current loop, because
500 // we just sunk it out of the loop. If we just sunk it into an outer
501 // loop, we will rediscover the operation when we process it.
502 CurAST->deleteValue(&I);
Chris Lattnera2706512003-12-10 06:41:05 +0000503 }
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000504 return;
505 }
506
507 if (ExitBlocks.empty()) {
Chris Lattnera2706512003-12-10 06:41:05 +0000508 // The instruction is actually dead if there ARE NO exit blocks.
Chris Lattner2741c972004-05-23 21:20:19 +0000509 CurAST->deleteValue(&I);
Devang Patel1bf5ebc2009-10-13 21:41:20 +0000510 // If I has users in unreachable blocks, eliminate.
Devang Patel228ebd02009-10-13 22:56:32 +0000511 // If I is not void type then replaceAllUsesWith undef.
512 // This allows ValueHandlers and custom metadata to adjust itself.
Chris Lattnera6a36f52010-08-29 04:55:06 +0000513 if (!I.use_empty())
Devang Patel228ebd02009-10-13 22:56:32 +0000514 I.replaceAllUsesWith(UndefValue::get(I.getType()));
Chris Lattner3c80a512006-06-26 19:10:05 +0000515 I.eraseFromParent();
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000516 return;
517 }
518
Chris Lattnera6a36f52010-08-29 04:55:06 +0000519 // Otherwise, if we have multiple exits, use the SSAUpdater to do all of the
520 // hard work of inserting PHI nodes as necessary.
521 SmallVector<PHINode*, 8> NewPHIs;
522 SSAUpdater SSA(&NewPHIs);
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000523
Chris Lattnera6a36f52010-08-29 04:55:06 +0000524 if (!I.use_empty())
Duncan Sandsfc6e29d2010-09-02 08:14:03 +0000525 SSA.Initialize(I.getType(), I.getName());
Chris Lattnera6a36f52010-08-29 04:55:06 +0000526
527 // Insert a copy of the instruction in each exit block of the loop that is
528 // dominated by the instruction. Each exit block is known to only be in the
529 // ExitBlocks list once.
530 BasicBlock *InstOrigBB = I.getParent();
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000531 unsigned NumInserted = 0;
Chris Lattnera6a36f52010-08-29 04:55:06 +0000532
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000533 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i) {
534 BasicBlock *ExitBlock = ExitBlocks[i];
Chris Lattnera6a36f52010-08-29 04:55:06 +0000535
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000536 if (!isExitBlockDominatedByBlockInLoop(ExitBlock, InstOrigBB))
537 continue;
538
Chris Lattnera6a36f52010-08-29 04:55:06 +0000539 // Insert the code after the last PHI node.
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000540 BasicBlock::iterator InsertPt = ExitBlock->getFirstNonPHI();
Chris Lattnera6a36f52010-08-29 04:55:06 +0000541
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000542 // If this is the first exit block processed, just move the original
543 // instruction, otherwise clone the original instruction and insert
544 // the copy.
545 Instruction *New;
Chris Lattnera6a36f52010-08-29 04:55:06 +0000546 if (NumInserted++ == 0) {
547 I.moveBefore(InsertPt);
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000548 New = &I;
549 } else {
550 New = I.clone();
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000551 if (!I.getName().empty())
552 New->setName(I.getName()+".le");
553 ExitBlock->getInstList().insert(InsertPt, New);
Chris Lattnereaa24302004-07-27 07:38:32 +0000554 }
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000555
Chris Lattnera6a36f52010-08-29 04:55:06 +0000556 // Now that we have inserted the instruction, inform SSAUpdater.
557 if (!I.use_empty())
558 SSA.AddAvailableValue(ExitBlock, New);
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000559 }
Chris Lattnera6a36f52010-08-29 04:55:06 +0000560
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000561 // If the instruction doesn't dominate any exit blocks, it must be dead.
562 if (NumInserted == 0) {
563 CurAST->deleteValue(&I);
Chris Lattnera6a36f52010-08-29 04:55:06 +0000564 if (!I.use_empty())
565 I.replaceAllUsesWith(UndefValue::get(I.getType()));
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000566 I.eraseFromParent();
Chris Lattnera6a36f52010-08-29 04:55:06 +0000567 return;
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000568 }
Chris Lattnera6a36f52010-08-29 04:55:06 +0000569
570 // Next, rewrite uses of the instruction, inserting PHI nodes as needed.
571 for (Value::use_iterator UI = I.use_begin(), UE = I.use_end(); UI != UE; ) {
572 // Grab the use before incrementing the iterator.
573 Use &U = UI.getUse();
574 // Increment the iterator before removing the use from the list.
575 ++UI;
576 SSA.RewriteUseAfterInsertions(U);
Chris Lattnera2706512003-12-10 06:41:05 +0000577 }
Chris Lattnera6a36f52010-08-29 04:55:06 +0000578
579 // Update CurAST for NewPHIs if I had pointer type.
580 if (I.getType()->isPointerTy())
581 for (unsigned i = 0, e = NewPHIs.size(); i != e; ++i)
Chris Lattner9c282012010-09-02 22:19:10 +0000582 CurAST->copyValue(&I, NewPHIs[i]);
Chris Lattner98917502010-08-29 18:00:00 +0000583
584 // Finally, remove the instruction from CurAST. It is no longer in the loop.
585 CurAST->deleteValue(&I);
Chris Lattnera2706512003-12-10 06:41:05 +0000586}
Chris Lattner952eaee2002-09-29 21:46:09 +0000587
Chris Lattner94170592002-09-26 16:52:07 +0000588/// hoist - When an instruction is found to only use loop invariant operands
589/// that is safe to hoist, this instruction is called to do the dirty work.
590///
Chris Lattnera2706512003-12-10 06:41:05 +0000591void LICM::hoist(Instruction &I) {
David Greenef1582692010-01-05 01:27:30 +0000592 DEBUG(dbgs() << "LICM hoisting to " << Preheader->getName() << ": "
Evan Cheng67d1d1f2009-10-12 22:25:23 +0000593 << I << "\n");
Chris Lattnered6dfc22003-12-09 19:32:44 +0000594
Chris Lattnerd9a5dae2010-08-29 18:18:40 +0000595 // Move the new node to the Preheader, before its terminator.
596 I.moveBefore(Preheader->getTerminator());
Misha Brukmanfd939082005-04-21 23:48:37 +0000597
Chris Lattnera2706512003-12-10 06:41:05 +0000598 if (isa<LoadInst>(I)) ++NumMovedLoads;
Chris Lattner118dd0c2004-03-15 04:11:30 +0000599 else if (isa<CallInst>(I)) ++NumMovedCalls;
Chris Lattner9646e6b2002-09-26 16:38:03 +0000600 ++NumHoisted;
Chris Lattnere0e734e2002-05-10 22:44:58 +0000601 Changed = true;
602}
603
Chris Lattnera2706512003-12-10 06:41:05 +0000604/// isSafeToExecuteUnconditionally - Only sink or hoist an instruction if it is
605/// not a trapping instruction or if it is a trapping instruction and is
606/// guaranteed to execute.
Tanya Lattner9966c032003-08-05 18:45:46 +0000607///
Chris Lattnera2706512003-12-10 06:41:05 +0000608bool LICM::isSafeToExecuteUnconditionally(Instruction &Inst) {
Chris Lattner92094b42003-12-09 17:18:00 +0000609 // If it is not a trapping instruction, it is always safe to hoist.
Eli Friedman0b79a772009-07-17 04:28:42 +0000610 if (Inst.isSafeToSpeculativelyExecute())
611 return true;
Misha Brukmanfd939082005-04-21 23:48:37 +0000612
Chris Lattner92094b42003-12-09 17:18:00 +0000613 // Otherwise we have to check to make sure that the instruction dominates all
614 // of the exit blocks. If it doesn't, then there is a path out of the loop
615 // which does not execute this instruction, so we can't hoist it.
Tanya Lattner9966c032003-08-05 18:45:46 +0000616
Chris Lattner92094b42003-12-09 17:18:00 +0000617 // If the instruction is in the header block for the loop (which is very
618 // common), it is always guaranteed to dominate the exit blocks. Since this
619 // is a common case, and can save some work, check it now.
Chris Lattnera2706512003-12-10 06:41:05 +0000620 if (Inst.getParent() == CurLoop->getHeader())
Chris Lattner92094b42003-12-09 17:18:00 +0000621 return true;
Tanya Lattner9966c032003-08-05 18:45:46 +0000622
Chris Lattner92094b42003-12-09 17:18:00 +0000623 // Get the exit blocks for the current loop.
Devang Patelb7211a22007-08-21 00:31:24 +0000624 SmallVector<BasicBlock*, 8> ExitBlocks;
Chris Lattner5fa802f2004-04-18 22:15:13 +0000625 CurLoop->getExitBlocks(ExitBlocks);
Chris Lattner92094b42003-12-09 17:18:00 +0000626
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000627 // For each exit block, get the DT node and walk up the DT until the
Chris Lattner92094b42003-12-09 17:18:00 +0000628 // instruction's basic block is found or we exit the loop.
Chris Lattnera2706512003-12-10 06:41:05 +0000629 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i)
630 if (!isExitBlockDominatedByBlockInLoop(ExitBlocks[i], Inst.getParent()))
631 return false;
Misha Brukmanfd939082005-04-21 23:48:37 +0000632
Tanya Lattner9966c032003-08-05 18:45:46 +0000633 return true;
634}
635
Chris Lattnere4880642010-08-29 06:43:52 +0000636/// PromoteAliasSet - Try to promote memory values to scalars by sinking
Chris Lattner2e6e7412003-02-24 03:52:32 +0000637/// stores out of the loop and moving loads to before the loop. We do this by
638/// looping over the stores in the loop, looking for stores to Must pointers
Chris Lattnere4880642010-08-29 06:43:52 +0000639/// which are loop invariant.
Chris Lattner2e6e7412003-02-24 03:52:32 +0000640///
Chris Lattnere4880642010-08-29 06:43:52 +0000641void LICM::PromoteAliasSet(AliasSet &AS) {
642 // We can promote this alias set if it has a store, if it is a "Must" alias
643 // set, if the pointer is loop invariant, and if we are not eliminating any
644 // volatile loads or stores.
645 if (AS.isForwardingAliasSet() || !AS.isMod() || !AS.isMustAlias() ||
646 AS.isVolatile() || !CurLoop->isLoopInvariant(AS.begin()->getValue()))
647 return;
648
649 assert(!AS.empty() &&
650 "Must alias set should have at least one pointer element in it!");
651 Value *SomePtr = AS.begin()->getValue();
Chris Lattner2e6e7412003-02-24 03:52:32 +0000652
Chris Lattnere4880642010-08-29 06:43:52 +0000653 // It isn't safe to promote a load/store from the loop if the load/store is
654 // conditional. For example, turning:
Chris Lattner2e6e7412003-02-24 03:52:32 +0000655 //
Chris Lattnere4880642010-08-29 06:43:52 +0000656 // for () { if (c) *P += 1; }
Chris Lattner2e6e7412003-02-24 03:52:32 +0000657 //
Chris Lattnere4880642010-08-29 06:43:52 +0000658 // into:
659 //
660 // tmp = *P; for () { if (c) tmp +=1; } *P = tmp;
661 //
662 // is not safe, because *P may only be valid to access if 'c' is true.
663 //
664 // It is safe to promote P if all uses are direct load/stores and if at
665 // least one is guaranteed to be executed.
666 bool GuaranteedToExecute = false;
667
668 SmallVector<Instruction*, 64> LoopUses;
669 SmallPtrSet<Value*, 4> PointerMustAliases;
Chris Lattner2e6e7412003-02-24 03:52:32 +0000670
Chris Lattnere4880642010-08-29 06:43:52 +0000671 // Check that all of the pointers in the alias set have the same type. We
672 // cannot (yet) promote a memory location that is loaded and stored in
673 // different sizes.
674 for (AliasSet::iterator ASI = AS.begin(), E = AS.end(); ASI != E; ++ASI) {
675 Value *ASIV = ASI->getValue();
676 PointerMustAliases.insert(ASIV);
Chris Lattner29d92932008-05-22 00:53:38 +0000677
Chris Lattner29d92932008-05-22 00:53:38 +0000678 // Check that all of the pointers in the alias set have the same type. We
679 // cannot (yet) promote a memory location that is loaded and stored in
680 // different sizes.
Chris Lattnere4880642010-08-29 06:43:52 +0000681 if (SomePtr->getType() != ASIV->getType())
682 return;
683
684 for (Value::use_iterator UI = ASIV->use_begin(), UE = ASIV->use_end();
Chris Lattner19d9d432008-05-22 03:22:42 +0000685 UI != UE; ++UI) {
Chris Lattnere4880642010-08-29 06:43:52 +0000686 // Ignore instructions that are outside the loop.
Chris Lattner29d92932008-05-22 00:53:38 +0000687 Instruction *Use = dyn_cast<Instruction>(*UI);
Dan Gohman92329c72009-12-18 01:24:09 +0000688 if (!Use || !CurLoop->contains(Use))
Chris Lattner29d92932008-05-22 00:53:38 +0000689 continue;
Chris Lattnere4880642010-08-29 06:43:52 +0000690
691 // If there is an non-load/store instruction in the loop, we can't promote
692 // it.
693 if (isa<LoadInst>(Use))
694 assert(!cast<LoadInst>(Use)->isVolatile() && "AST broken");
Chris Lattner0cccd762010-09-06 05:11:24 +0000695 else if (isa<StoreInst>(Use)) {
696 assert(!cast<StoreInst>(Use)->isVolatile() && "AST broken");
697 if (Use->getOperand(0) == ASIV) return;
698 } else
Chris Lattnere4880642010-08-29 06:43:52 +0000699 return; // Not a load or store.
Chris Lattner19d9d432008-05-22 03:22:42 +0000700
701 if (!GuaranteedToExecute)
702 GuaranteedToExecute = isSafeToExecuteUnconditionally(*Use);
Chris Lattnere4880642010-08-29 06:43:52 +0000703
704 LoopUses.push_back(Use);
705 }
706 }
707
708 // If there isn't a guaranteed-to-execute instruction, we can't promote.
709 if (!GuaranteedToExecute)
710 return;
711
712 // Otherwise, this is safe to promote, lets do it!
713 DEBUG(dbgs() << "LICM: Promoting value stored to in loop: " <<*SomePtr<<'\n');
714 Changed = true;
715 ++NumPromoted;
716
717 // We use the SSAUpdater interface to insert phi nodes as required.
718 SmallVector<PHINode*, 16> NewPHIs;
719 SSAUpdater SSA(&NewPHIs);
720
721 // It wants to know some value of the same type as what we'll be inserting.
722 Value *SomeValue;
723 if (isa<LoadInst>(LoopUses[0]))
724 SomeValue = LoopUses[0];
725 else
726 SomeValue = cast<StoreInst>(LoopUses[0])->getOperand(0);
Duncan Sandsfc6e29d2010-09-02 08:14:03 +0000727 SSA.Initialize(SomeValue->getType(), SomeValue->getName());
Chris Lattnere4880642010-08-29 06:43:52 +0000728
729 // First step: bucket up uses of the pointers by the block they occur in.
730 // This is important because we have to handle multiple defs/uses in a block
731 // ourselves: SSAUpdater is purely for cross-block references.
732 // FIXME: Want a TinyVector<Instruction*> since there is usually 0/1 element.
733 DenseMap<BasicBlock*, std::vector<Instruction*> > UsesByBlock;
734 for (unsigned i = 0, e = LoopUses.size(); i != e; ++i) {
735 Instruction *User = LoopUses[i];
736 UsesByBlock[User->getParent()].push_back(User);
737 }
738
739 // Okay, now we can iterate over all the blocks in the loop with uses,
740 // processing them. Keep track of which loads are loading a live-in value.
741 SmallVector<LoadInst*, 32> LiveInLoads;
Chris Lattner46999642010-09-04 00:12:30 +0000742 DenseMap<Value*, Value*> ReplacedLoads;
Chris Lattnere4880642010-08-29 06:43:52 +0000743
744 for (unsigned LoopUse = 0, e = LoopUses.size(); LoopUse != e; ++LoopUse) {
745 Instruction *User = LoopUses[LoopUse];
746 std::vector<Instruction*> &BlockUses = UsesByBlock[User->getParent()];
747
748 // If this block has already been processed, ignore this repeat use.
749 if (BlockUses.empty()) continue;
750
751 // Okay, this is the first use in the block. If this block just has a
752 // single user in it, we can rewrite it trivially.
753 if (BlockUses.size() == 1) {
754 // If it is a store, it is a trivial def of the value in the block.
755 if (isa<StoreInst>(User)) {
756 SSA.AddAvailableValue(User->getParent(),
757 cast<StoreInst>(User)->getOperand(0));
758 } else {
759 // Otherwise it is a load, queue it to rewrite as a live-in load.
760 LiveInLoads.push_back(cast<LoadInst>(User));
761 }
762 BlockUses.clear();
763 continue;
764 }
765
766 // Otherwise, check to see if this block is all loads. If so, we can queue
767 // them all as live in loads.
768 bool HasStore = false;
769 for (unsigned i = 0, e = BlockUses.size(); i != e; ++i) {
770 if (isa<StoreInst>(BlockUses[i])) {
771 HasStore = true;
772 break;
773 }
774 }
775
776 if (!HasStore) {
777 for (unsigned i = 0, e = BlockUses.size(); i != e; ++i)
778 LiveInLoads.push_back(cast<LoadInst>(BlockUses[i]));
779 BlockUses.clear();
780 continue;
Chris Lattner29d92932008-05-22 00:53:38 +0000781 }
782
Chris Lattnere4880642010-08-29 06:43:52 +0000783 // Otherwise, we have mixed loads and stores (or just a bunch of stores).
784 // Since SSAUpdater is purely for cross-block values, we need to determine
785 // the order of these instructions in the block. If the first use in the
786 // block is a load, then it uses the live in value. The last store defines
787 // the live out value. We handle this by doing a linear scan of the block.
788 BasicBlock *BB = User->getParent();
789 Value *StoredValue = 0;
790 for (BasicBlock::iterator II = BB->begin(), E = BB->end(); II != E; ++II) {
791 if (LoadInst *L = dyn_cast<LoadInst>(II)) {
Chris Lattner46999642010-09-04 00:12:30 +0000792 // If this is a load from an unrelated pointer, ignore it.
Chris Lattnere4880642010-08-29 06:43:52 +0000793 if (!PointerMustAliases.count(L->getOperand(0))) continue;
794
795 // If we haven't seen a store yet, this is a live in use, otherwise
796 // use the stored value.
Chris Lattner46999642010-09-04 00:12:30 +0000797 if (StoredValue) {
Chris Lattnere4880642010-08-29 06:43:52 +0000798 L->replaceAllUsesWith(StoredValue);
Chris Lattner46999642010-09-04 00:12:30 +0000799 ReplacedLoads[L] = StoredValue;
800 } else {
Chris Lattnere4880642010-08-29 06:43:52 +0000801 LiveInLoads.push_back(L);
Chris Lattner46999642010-09-04 00:12:30 +0000802 }
Chris Lattnere4880642010-08-29 06:43:52 +0000803 continue;
804 }
805
806 if (StoreInst *S = dyn_cast<StoreInst>(II)) {
Chris Lattner44556082010-08-29 19:54:28 +0000807 // If this is a store to an unrelated pointer, ignore it.
Chris Lattnere4880642010-08-29 06:43:52 +0000808 if (!PointerMustAliases.count(S->getOperand(1))) continue;
809
810 // Remember that this is the active value in the block.
811 StoredValue = S->getOperand(0);
812 }
813 }
Chris Lattner29d92932008-05-22 00:53:38 +0000814
Chris Lattnere4880642010-08-29 06:43:52 +0000815 // The last stored value that happened is the live-out for the block.
816 assert(StoredValue && "Already checked that there is a store in block");
817 SSA.AddAvailableValue(BB, StoredValue);
818 BlockUses.clear();
Chris Lattner2e6e7412003-02-24 03:52:32 +0000819 }
Chris Lattnere4880642010-08-29 06:43:52 +0000820
821 // Now that all the intra-loop values are classified, set up the preheader.
822 // It gets a load of the pointer we're promoting, and it is the live-out value
823 // from the preheader.
824 LoadInst *PreheaderLoad = new LoadInst(SomePtr,SomePtr->getName()+".promoted",
825 Preheader->getTerminator());
826 SSA.AddAvailableValue(Preheader, PreheaderLoad);
827
828 // Now that the preheader is good to go, set up the exit blocks. Each exit
829 // block gets a store of the live-out values that feed them. Since we've
830 // already told the SSA updater about the defs in the loop and the preheader
831 // definition, it is all set and we can start using it.
832 SmallVector<BasicBlock*, 8> ExitBlocks;
833 CurLoop->getUniqueExitBlocks(ExitBlocks);
834 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i) {
835 BasicBlock *ExitBlock = ExitBlocks[i];
836 Value *LiveInValue = SSA.GetValueInMiddleOfBlock(ExitBlock);
837 Instruction *InsertPos = ExitBlock->getFirstNonPHI();
838 new StoreInst(LiveInValue, SomePtr, InsertPos);
839 }
840
841 // Okay, now we rewrite all loads that use live-in values in the loop,
842 // inserting PHI nodes as necessary.
843 for (unsigned i = 0, e = LiveInLoads.size(); i != e; ++i) {
844 LoadInst *ALoad = LiveInLoads[i];
Chris Lattner9c282012010-09-02 22:19:10 +0000845 Value *NewVal = SSA.GetValueInMiddleOfBlock(ALoad->getParent());
846 ALoad->replaceAllUsesWith(NewVal);
847 CurAST->copyValue(ALoad, NewVal);
Chris Lattner46999642010-09-04 00:12:30 +0000848 ReplacedLoads[ALoad] = NewVal;
Chris Lattnere4880642010-08-29 06:43:52 +0000849 }
850
Chris Lattner7abdb222010-09-14 00:19:00 +0000851 // If the preheader load is itself a pointer, we need to tell alias analysis
852 // about the new pointer we created in the preheader block and about any PHI
853 // nodes that just got inserted.
854 if (PreheaderLoad->getType()->isPointerTy()) {
855 // Copy any value stored to or loaded from a must-alias of the pointer.
856 CurAST->copyValue(SomeValue, PreheaderLoad);
857
858 for (unsigned i = 0, e = NewPHIs.size(); i != e; ++i)
859 CurAST->copyValue(SomeValue, NewPHIs[i]);
860 }
861
Chris Lattnere4880642010-08-29 06:43:52 +0000862 // Now that everything is rewritten, delete the old instructions from the body
863 // of the loop. They should all be dead now.
864 for (unsigned i = 0, e = LoopUses.size(); i != e; ++i) {
865 Instruction *User = LoopUses[i];
Chris Lattner46999642010-09-04 00:12:30 +0000866
867 // If this is a load that still has uses, then the load must have been added
868 // as a live value in the SSAUpdate data structure for a block (e.g. because
869 // the loaded value was stored later). In this case, we need to recursively
870 // propagate the updates until we get to the real value.
871 if (!User->use_empty()) {
872 Value *NewVal = ReplacedLoads[User];
873 assert(NewVal && "not a replaced load?");
874
875 // Propagate down to the ultimate replacee. The intermediately loads
876 // could theoretically already have been deleted, so we don't want to
877 // dereference the Value*'s.
878 DenseMap<Value*, Value*>::iterator RLI = ReplacedLoads.find(NewVal);
879 while (RLI != ReplacedLoads.end()) {
880 NewVal = RLI->second;
881 RLI = ReplacedLoads.find(NewVal);
882 }
883
884 User->replaceAllUsesWith(NewVal);
885 CurAST->copyValue(User, NewVal);
886 }
887
Chris Lattnere4880642010-08-29 06:43:52 +0000888 CurAST->deleteValue(User);
889 User->eraseFromParent();
890 }
891
Chris Lattnere4880642010-08-29 06:43:52 +0000892 // fwew, we're done!
Chris Lattnerf5e84aa2002-08-22 21:39:55 +0000893}
Devang Patel91d22c82007-07-31 08:01:41 +0000894
Chris Lattnere4880642010-08-29 06:43:52 +0000895
Devang Patel91d22c82007-07-31 08:01:41 +0000896/// cloneBasicBlockAnalysis - Simple Analysis hook. Clone alias set info.
897void LICM::cloneBasicBlockAnalysis(BasicBlock *From, BasicBlock *To, Loop *L) {
Chris Lattner4282e322010-08-29 17:46:00 +0000898 AliasSetTracker *AST = LoopToAliasSetMap.lookup(L);
Devang Patel91d22c82007-07-31 08:01:41 +0000899 if (!AST)
900 return;
901
902 AST->copyValue(From, To);
903}
904
905/// deleteAnalysisValue - Simple Analysis hook. Delete value V from alias
906/// set.
907void LICM::deleteAnalysisValue(Value *V, Loop *L) {
Chris Lattner4282e322010-08-29 17:46:00 +0000908 AliasSetTracker *AST = LoopToAliasSetMap.lookup(L);
Devang Patel91d22c82007-07-31 08:01:41 +0000909 if (!AST)
910 return;
911
912 AST->deleteValue(V);
913}