blob: bf06fee6efb9b5565def4396136a3dd6b417087c [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"
Chris Lattnerf5e84aa2002-08-22 21:39:55 +000039#include "llvm/Analysis/AliasAnalysis.h"
Chris Lattner0252e492003-03-03 23:32:45 +000040#include "llvm/Analysis/AliasSetTracker.h"
Chris Lattner2ac6e232010-08-31 23:00:16 +000041#include "llvm/Analysis/ConstantFolding.h"
42#include "llvm/Analysis/LoopInfo.h"
43#include "llvm/Analysis/LoopPass.h"
Chris Lattner952eaee2002-09-29 21:46:09 +000044#include "llvm/Analysis/Dominators.h"
Devang Patel96b651c2007-07-30 20:19:59 +000045#include "llvm/Analysis/ScalarEvolution.h"
Chris 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 Anderson90c579d2010-08-06 18:33:48 +000069 LICM() : LoopPass(ID) {}
Devang Patel794fd752007-05-01 21:15:47 +000070
Devang Patel54959d62007-03-07 04:41:30 +000071 virtual bool runOnLoop(Loop *L, LPPassManager &LPM);
Chris Lattnere0e734e2002-05-10 22:44:58 +000072
Chris Lattner94170592002-09-26 16:52:07 +000073 /// This transformation requires natural loop information & requires that
74 /// loop preheaders be inserted into the CFG...
75 ///
Chris Lattnere0e734e2002-05-10 22:44:58 +000076 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattnercb2610e2002-10-21 20:00:28 +000077 AU.setPreservesCFG();
Owen Anderson3a2b58f2007-04-24 06:40:39 +000078 AU.addRequired<DominatorTree>();
Dan Gohman1e381fc2010-07-16 17:58:45 +000079 AU.addRequired<LoopInfo>();
80 AU.addRequiredID(LoopSimplifyID);
Chris Lattnerf5e84aa2002-08-22 21:39:55 +000081 AU.addRequired<AliasAnalysis>();
Chris Lattnere418ac82010-08-29 07:02:56 +000082 AU.addPreserved<AliasAnalysis>();
Devang Patel96b651c2007-07-30 20:19:59 +000083 AU.addPreserved<ScalarEvolution>();
Dan Gohman5c89b522009-09-08 15:45:00 +000084 AU.addPreservedID(LoopSimplifyID);
Chris Lattnere0e734e2002-05-10 22:44:58 +000085 }
86
Dan Gohman747603e2007-04-17 18:21:36 +000087 bool doFinalization() {
Chris Lattner4282e322010-08-29 17:46:00 +000088 assert(LoopToAliasSetMap.empty() && "Didn't free loop alias sets");
Devang Patel54959d62007-03-07 04:41:30 +000089 return false;
90 }
91
Chris Lattnere0e734e2002-05-10 22:44:58 +000092 private:
Chris Lattner2e6e7412003-02-24 03:52:32 +000093 AliasAnalysis *AA; // Current AliasAnalysis information
Chris Lattner92094b42003-12-09 17:18:00 +000094 LoopInfo *LI; // Current LoopInfo
Chris Lattner44e2bd32010-08-29 06:49:44 +000095 DominatorTree *DT; // Dominator Tree for the current Loop.
Chris Lattner92094b42003-12-09 17:18:00 +000096
Chris Lattner4282e322010-08-29 17:46:00 +000097 // State that is updated as we process loops.
Chris Lattner2e6e7412003-02-24 03:52:32 +000098 bool Changed; // Set to true when we change anything.
99 BasicBlock *Preheader; // The preheader block of the current loop...
100 Loop *CurLoop; // The current loop we are working on...
Chris Lattner0252e492003-03-03 23:32:45 +0000101 AliasSetTracker *CurAST; // AliasSet information for the current loop...
Chris Lattner4282e322010-08-29 17:46:00 +0000102 DenseMap<Loop*, AliasSetTracker*> LoopToAliasSetMap;
Chris Lattnere0e734e2002-05-10 22:44:58 +0000103
Devang Patel91d22c82007-07-31 08:01:41 +0000104 /// cloneBasicBlockAnalysis - Simple Analysis hook. Clone alias set info.
105 void cloneBasicBlockAnalysis(BasicBlock *From, BasicBlock *To, Loop *L);
106
107 /// deleteAnalysisValue - Simple Analysis hook. Delete value V from alias
108 /// set.
109 void deleteAnalysisValue(Value *V, Loop *L);
110
Chris Lattnere4365b22003-12-19 07:22:45 +0000111 /// SinkRegion - Walk the specified region of the CFG (defined by all blocks
112 /// dominated by the specified block, and that are in the current loop) in
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000113 /// reverse depth first order w.r.t the DominatorTree. This allows us to
Chris Lattnere4365b22003-12-19 07:22:45 +0000114 /// visit uses before definitions, allowing us to sink a loop body in one
115 /// pass without iteration.
116 ///
Devang Patel26042422007-06-04 00:32:22 +0000117 void SinkRegion(DomTreeNode *N);
Chris Lattnere4365b22003-12-19 07:22:45 +0000118
Chris Lattner952eaee2002-09-29 21:46:09 +0000119 /// HoistRegion - Walk the specified region of the CFG (defined by all
120 /// blocks dominated by the specified block, and that are in the current
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000121 /// loop) in depth first order w.r.t the DominatorTree. This allows us to
Misha Brukmancf00c4a2003-10-10 17:57:28 +0000122 /// visit definitions before uses, allowing us to hoist a loop body in one
Chris Lattner952eaee2002-09-29 21:46:09 +0000123 /// pass without iteration.
124 ///
Devang Patel26042422007-06-04 00:32:22 +0000125 void HoistRegion(DomTreeNode *N);
Chris Lattner952eaee2002-09-29 21:46:09 +0000126
Chris Lattnerb4613732002-09-29 22:26:07 +0000127 /// inSubLoop - Little predicate that returns true if the specified basic
128 /// block is in a subloop of the current one, not the current one itself.
Chris Lattner94170592002-09-26 16:52:07 +0000129 ///
Chris Lattnerb4613732002-09-29 22:26:07 +0000130 bool inSubLoop(BasicBlock *BB) {
131 assert(CurLoop->contains(BB) && "Only valid if BB is IN the loop");
Chris Lattner329c1c62004-01-08 00:09:44 +0000132 for (Loop::iterator I = CurLoop->begin(), E = CurLoop->end(); I != E; ++I)
133 if ((*I)->contains(BB))
Chris Lattnerb4613732002-09-29 22:26:07 +0000134 return true; // A subloop actually contains this block!
135 return false;
Chris Lattnere0e734e2002-05-10 22:44:58 +0000136 }
137
Chris Lattnera2706512003-12-10 06:41:05 +0000138 /// isExitBlockDominatedByBlockInLoop - This method checks to see if the
139 /// specified exit block of the loop is dominated by the specified block
140 /// that is in the body of the loop. We use these constraints to
141 /// dramatically limit the amount of the dominator tree that needs to be
142 /// searched.
143 bool isExitBlockDominatedByBlockInLoop(BasicBlock *ExitBlock,
144 BasicBlock *BlockInLoop) const {
145 // If the block in the loop is the loop header, it must be dominated!
146 BasicBlock *LoopHeader = CurLoop->getHeader();
147 if (BlockInLoop == LoopHeader)
148 return true;
Misha Brukmanfd939082005-04-21 23:48:37 +0000149
Devang Patel26042422007-06-04 00:32:22 +0000150 DomTreeNode *BlockInLoopNode = DT->getNode(BlockInLoop);
151 DomTreeNode *IDom = DT->getNode(ExitBlock);
Misha Brukmanfd939082005-04-21 23:48:37 +0000152
Chris Lattnera2706512003-12-10 06:41:05 +0000153 // Because the exit block is not in the loop, we know we have to get _at
Chris Lattner2741c972004-05-23 21:20:19 +0000154 // least_ its immediate dominator.
Eric Christopher3472ae12009-12-10 00:25:41 +0000155 IDom = IDom->getIDom();
156
157 while (IDom && IDom != BlockInLoopNode) {
Chris Lattnera2706512003-12-10 06:41:05 +0000158 // If we have got to the header of the loop, then the instructions block
159 // did not dominate the exit node, so we can't hoist it.
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000160 if (IDom->getBlock() == LoopHeader)
Chris Lattnera2706512003-12-10 06:41:05 +0000161 return false;
Misha Brukmanfd939082005-04-21 23:48:37 +0000162
Eric Christopher3472ae12009-12-10 00:25:41 +0000163 // Get next Immediate Dominator.
164 IDom = IDom->getIDom();
165 };
Chris Lattnera2706512003-12-10 06:41:05 +0000166
167 return true;
168 }
169
170 /// sink - When an instruction is found to only be used outside of the loop,
171 /// this function moves it to the exit blocks and patches up SSA form as
172 /// needed.
173 ///
174 void sink(Instruction &I);
175
Chris Lattner94170592002-09-26 16:52:07 +0000176 /// hoist - When an instruction is found to only use loop invariant operands
177 /// that is safe to hoist, this instruction is called to do the dirty work.
178 ///
Chris Lattner7e708292002-06-25 16:13:24 +0000179 void hoist(Instruction &I);
Chris Lattnere0e734e2002-05-10 22:44:58 +0000180
Chris Lattnera2706512003-12-10 06:41:05 +0000181 /// isSafeToExecuteUnconditionally - Only sink or hoist an instruction if it
182 /// is not a trapping instruction or if it is a trapping instruction and is
183 /// guaranteed to execute.
Tanya Lattner9966c032003-08-05 18:45:46 +0000184 ///
Chris Lattnera2706512003-12-10 06:41:05 +0000185 bool isSafeToExecuteUnconditionally(Instruction &I);
Tanya Lattner9966c032003-08-05 18:45:46 +0000186
Chris Lattner94170592002-09-26 16:52:07 +0000187 /// pointerInvalidatedByLoop - Return true if the body of this loop may
188 /// store into the memory location pointed to by V.
Misha Brukmanfd939082005-04-21 23:48:37 +0000189 ///
Chris Lattnerf3e1d692004-11-26 21:20:09 +0000190 bool pointerInvalidatedByLoop(Value *V, unsigned Size) {
Chris Lattner0252e492003-03-03 23:32:45 +0000191 // Check to see if any of the basic blocks in CurLoop invalidate *V.
Chris Lattnerf3e1d692004-11-26 21:20:09 +0000192 return CurAST->getAliasSetForPointer(V, Size).isMod();
Chris Lattner2e6e7412003-02-24 03:52:32 +0000193 }
Chris Lattnerf5e84aa2002-08-22 21:39:55 +0000194
Chris Lattnera2706512003-12-10 06:41:05 +0000195 bool canSinkOrHoistInst(Instruction &I);
196 bool isLoopInvariantInst(Instruction &I);
197 bool isNotUsedInLoop(Instruction &I);
Chris Lattnere0e734e2002-05-10 22:44:58 +0000198
Chris Lattnere4880642010-08-29 06:43:52 +0000199 void PromoteAliasSet(AliasSet &AS);
Chris Lattnere0e734e2002-05-10 22:44:58 +0000200 };
201}
202
Dan Gohman844731a2008-05-13 00:00:25 +0000203char LICM::ID = 0;
Owen Andersond13db2c2010-07-21 22:09:45 +0000204INITIALIZE_PASS(LICM, "licm", "Loop Invariant Code Motion", false, false);
Dan Gohman844731a2008-05-13 00:00:25 +0000205
Daniel Dunbar394f0442008-10-22 23:32:42 +0000206Pass *llvm::createLICMPass() { return new LICM(); }
Chris Lattnere0e734e2002-05-10 22:44:58 +0000207
Devang Patel8d246f02007-07-31 16:52:25 +0000208/// Hoist expressions out of the specified loop. Note, alias info for inner
209/// loop is not preserved so it is not a good idea to run LICM multiple
210/// times on one loop.
Chris Lattner94170592002-09-26 16:52:07 +0000211///
Devang Patel54959d62007-03-07 04:41:30 +0000212bool LICM::runOnLoop(Loop *L, LPPassManager &LPM) {
Chris Lattner2e6e7412003-02-24 03:52:32 +0000213 Changed = false;
Chris Lattnere0e734e2002-05-10 22:44:58 +0000214
Chris Lattner2e6e7412003-02-24 03:52:32 +0000215 // Get our Loop and Alias Analysis information...
216 LI = &getAnalysis<LoopInfo>();
Chris Lattnerf5e84aa2002-08-22 21:39:55 +0000217 AA = &getAnalysis<AliasAnalysis>();
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000218 DT = &getAnalysis<DominatorTree>();
Chris Lattnerf5e84aa2002-08-22 21:39:55 +0000219
Devang Patel54959d62007-03-07 04:41:30 +0000220 CurAST = new AliasSetTracker(*AA);
Chris Lattner4282e322010-08-29 17:46:00 +0000221 // Collect Alias info from subloops.
Devang Patel54959d62007-03-07 04:41:30 +0000222 for (Loop::iterator LoopItr = L->begin(), LoopItrE = L->end();
223 LoopItr != LoopItrE; ++LoopItr) {
224 Loop *InnerL = *LoopItr;
Chris Lattner4282e322010-08-29 17:46:00 +0000225 AliasSetTracker *InnerAST = LoopToAliasSetMap[InnerL];
226 assert(InnerAST && "Where is my AST?");
Devang Patel54959d62007-03-07 04:41:30 +0000227
228 // What if InnerLoop was modified by other passes ?
229 CurAST->add(*InnerAST);
Chris Lattner4282e322010-08-29 17:46:00 +0000230
231 // Once we've incorporated the inner loop's AST into ours, we don't need the
232 // subloop's anymore.
233 delete InnerAST;
234 LoopToAliasSetMap.erase(InnerL);
Chris Lattner2e6e7412003-02-24 03:52:32 +0000235 }
Devang Patel54959d62007-03-07 04:41:30 +0000236
Chris Lattnere0e734e2002-05-10 22:44:58 +0000237 CurLoop = L;
238
Chris Lattner99a57212002-09-26 19:40:25 +0000239 // Get the preheader block to move instructions into...
240 Preheader = L->getLoopPreheader();
Chris Lattner99a57212002-09-26 19:40:25 +0000241
Chris Lattner2e6e7412003-02-24 03:52:32 +0000242 // Loop over the body of this loop, looking for calls, invokes, and stores.
Chris Lattner0252e492003-03-03 23:32:45 +0000243 // Because subloops have already been incorporated into AST, we skip blocks in
Chris Lattner2e6e7412003-02-24 03:52:32 +0000244 // subloops.
245 //
Dan Gohman9b787632008-06-22 20:18:58 +0000246 for (Loop::block_iterator I = L->block_begin(), E = L->block_end();
247 I != E; ++I) {
248 BasicBlock *BB = *I;
Chris Lattner4282e322010-08-29 17:46:00 +0000249 if (LI->getLoopFor(BB) == L) // Ignore blocks in subloops.
Dan Gohman9b787632008-06-22 20:18:58 +0000250 CurAST->add(*BB); // Incorporate the specified basic block
251 }
Chris Lattner2e6e7412003-02-24 03:52:32 +0000252
Chris Lattnere0e734e2002-05-10 22:44:58 +0000253 // We want to visit all of the instructions in this loop... that are not parts
254 // of our subloops (they have already had their invariants hoisted out of
255 // their loop, into this loop, so there is no need to process the BODIES of
256 // the subloops).
257 //
Chris Lattner952eaee2002-09-29 21:46:09 +0000258 // Traverse the body of the loop in depth first order on the dominator tree so
259 // that we are guaranteed to see definitions before we see uses. This allows
Nick Lewyckyaf5cbc82007-08-18 15:08:56 +0000260 // us to sink instructions in one pass, without iteration. After sinking
Chris Lattnere4365b22003-12-19 07:22:45 +0000261 // instructions, we perform another pass to hoist them out of the loop.
Chris Lattner952eaee2002-09-29 21:46:09 +0000262 //
Dan Gohman03e896b2009-11-05 21:11:53 +0000263 if (L->hasDedicatedExits())
264 SinkRegion(DT->getNode(L->getHeader()));
265 if (Preheader)
266 HoistRegion(DT->getNode(L->getHeader()));
Chris Lattnere0e734e2002-05-10 22:44:58 +0000267
Chris Lattner2e6e7412003-02-24 03:52:32 +0000268 // Now that all loop invariants have been removed from the loop, promote any
Chris Lattnere4880642010-08-29 06:43:52 +0000269 // memory references to scalars that we can.
270 if (!DisablePromotion && Preheader && L->hasDedicatedExits()) {
271 // Loop over all of the alias sets in the tracker object.
272 for (AliasSetTracker::iterator I = CurAST->begin(), E = CurAST->end();
273 I != E; ++I)
274 PromoteAliasSet(*I);
275 }
276
Chris Lattnere0e734e2002-05-10 22:44:58 +0000277 // Clear out loops state information for the next iteration
278 CurLoop = 0;
Chris Lattner99a57212002-09-26 19:40:25 +0000279 Preheader = 0;
Devang Patel54959d62007-03-07 04:41:30 +0000280
Chris Lattner4282e322010-08-29 17:46:00 +0000281 // If this loop is nested inside of another one, save the alias information
282 // for when we process the outer loop.
283 if (L->getParentLoop())
284 LoopToAliasSetMap[L] = CurAST;
285 else
286 delete CurAST;
Devang Patel54959d62007-03-07 04:41:30 +0000287 return Changed;
Chris Lattnere0e734e2002-05-10 22:44:58 +0000288}
289
Chris Lattnere4365b22003-12-19 07:22:45 +0000290/// SinkRegion - Walk the specified region of the CFG (defined by all blocks
291/// dominated by the specified block, and that are in the current loop) in
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000292/// reverse depth first order w.r.t the DominatorTree. This allows us to visit
Chris Lattnere4365b22003-12-19 07:22:45 +0000293/// uses before definitions, allowing us to sink a loop body in one pass without
294/// iteration.
295///
Devang Patel26042422007-06-04 00:32:22 +0000296void LICM::SinkRegion(DomTreeNode *N) {
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000297 assert(N != 0 && "Null dominator tree node?");
298 BasicBlock *BB = N->getBlock();
Chris Lattnere4365b22003-12-19 07:22:45 +0000299
300 // If this subregion is not in the top level loop at all, exit.
301 if (!CurLoop->contains(BB)) return;
302
Chris Lattner0de5cad2010-08-29 18:22:25 +0000303 // We are processing blocks in reverse dfo, so process children first.
Devang Patel26042422007-06-04 00:32:22 +0000304 const std::vector<DomTreeNode*> &Children = N->getChildren();
Chris Lattnere4365b22003-12-19 07:22:45 +0000305 for (unsigned i = 0, e = Children.size(); i != e; ++i)
306 SinkRegion(Children[i]);
307
308 // Only need to process the contents of this block if it is not part of a
309 // subloop (which would already have been processed).
310 if (inSubLoop(BB)) return;
311
Chris Lattnera3df8a92003-12-19 08:18:16 +0000312 for (BasicBlock::iterator II = BB->end(); II != BB->begin(); ) {
313 Instruction &I = *--II;
Chris Lattner0de5cad2010-08-29 18:22:25 +0000314
315 // If the instruction is dead, we would try to sink it because it isn't used
316 // in the loop, instead, just delete it.
317 if (isInstructionTriviallyDead(&I)) {
Chris Lattnercb7f6532010-08-29 18:42:23 +0000318 DEBUG(dbgs() << "LICM deleting dead inst: " << I << '\n');
Chris Lattner0de5cad2010-08-29 18:22:25 +0000319 ++II;
320 CurAST->deleteValue(&I);
321 I.eraseFromParent();
322 Changed = true;
323 continue;
324 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000325
Chris Lattnere4365b22003-12-19 07:22:45 +0000326 // Check to see if we can sink this instruction to the exit blocks
327 // of the loop. We can do this if the all users of the instruction are
328 // outside of the loop. In this case, it doesn't even matter if the
329 // operands of the instruction are loop invariant.
330 //
Chris Lattner70ac2dc2005-03-25 00:22:36 +0000331 if (isNotUsedInLoop(I) && canSinkOrHoistInst(I)) {
Chris Lattnera3df8a92003-12-19 08:18:16 +0000332 ++II;
Chris Lattnere4365b22003-12-19 07:22:45 +0000333 sink(I);
Chris Lattnera3df8a92003-12-19 08:18:16 +0000334 }
Chris Lattnere4365b22003-12-19 07:22:45 +0000335 }
336}
337
Chris Lattner952eaee2002-09-29 21:46:09 +0000338/// HoistRegion - Walk the specified region of the CFG (defined by all blocks
339/// dominated by the specified block, and that are in the current loop) in depth
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000340/// first order w.r.t the DominatorTree. This allows us to visit definitions
Chris Lattner952eaee2002-09-29 21:46:09 +0000341/// before uses, allowing us to hoist a loop body in one pass without iteration.
342///
Devang Patel26042422007-06-04 00:32:22 +0000343void LICM::HoistRegion(DomTreeNode *N) {
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000344 assert(N != 0 && "Null dominator tree node?");
345 BasicBlock *BB = N->getBlock();
Chris Lattner952eaee2002-09-29 21:46:09 +0000346
Chris Lattnerb4613732002-09-29 22:26:07 +0000347 // If this subregion is not in the top level loop at all, exit.
Chris Lattnered6dfc22003-12-09 19:32:44 +0000348 if (!CurLoop->contains(BB)) return;
Chris Lattner952eaee2002-09-29 21:46:09 +0000349
Chris Lattnera2706512003-12-10 06:41:05 +0000350 // Only need to process the contents of this block if it is not part of a
351 // subloop (which would already have been processed).
Chris Lattnered6dfc22003-12-09 19:32:44 +0000352 if (!inSubLoop(BB))
Chris Lattnera2706512003-12-10 06:41:05 +0000353 for (BasicBlock::iterator II = BB->begin(), E = BB->end(); II != E; ) {
354 Instruction &I = *II++;
Misha Brukmanfd939082005-04-21 23:48:37 +0000355
Chris Lattner2ac6e232010-08-31 23:00:16 +0000356 // Try constant folding this instruction. If all the operands are
357 // constants, it is technically hoistable, but it would be better to just
358 // fold it.
359 if (Constant *C = ConstantFoldInstruction(&I)) {
360 DEBUG(dbgs() << "LICM folding inst: " << I << " --> " << *C << '\n');
361 CurAST->copyValue(&I, C);
362 CurAST->deleteValue(&I);
363 I.replaceAllUsesWith(C);
364 I.eraseFromParent();
365 continue;
366 }
367
Chris Lattnere4365b22003-12-19 07:22:45 +0000368 // Try hoisting the instruction out to the preheader. We can only do this
369 // if all of the operands of the instruction are loop invariant and if it
370 // is safe to hoist the instruction.
371 //
Misha Brukmanfd939082005-04-21 23:48:37 +0000372 if (isLoopInvariantInst(I) && canSinkOrHoistInst(I) &&
Chris Lattnere4365b22003-12-19 07:22:45 +0000373 isSafeToExecuteUnconditionally(I))
Chris Lattner3c80a512006-06-26 19:10:05 +0000374 hoist(I);
Chris Lattner2ac6e232010-08-31 23:00:16 +0000375 }
Chris Lattner952eaee2002-09-29 21:46:09 +0000376
Devang Patel26042422007-06-04 00:32:22 +0000377 const std::vector<DomTreeNode*> &Children = N->getChildren();
Chris Lattner952eaee2002-09-29 21:46:09 +0000378 for (unsigned i = 0, e = Children.size(); i != e; ++i)
Chris Lattner56b7ee22004-06-19 20:23:35 +0000379 HoistRegion(Children[i]);
Chris Lattner952eaee2002-09-29 21:46:09 +0000380}
381
Chris Lattnera2706512003-12-10 06:41:05 +0000382/// canSinkOrHoistInst - Return true if the hoister and sinker can handle this
383/// instruction.
384///
385bool LICM::canSinkOrHoistInst(Instruction &I) {
Chris Lattnered6dfc22003-12-09 19:32:44 +0000386 // Loads have extra constraints we have to verify before we can hoist them.
387 if (LoadInst *LI = dyn_cast<LoadInst>(&I)) {
388 if (LI->isVolatile())
389 return false; // Don't hoist volatile loads!
390
Chris Lattner967948b2008-07-23 05:06:28 +0000391 // Loads from constant memory are always safe to move, even if they end up
392 // in the same alias set as something that ends up being modified.
Dan Gohmandab249b2009-11-19 19:00:10 +0000393 if (AA->pointsToConstantMemory(LI->getOperand(0)))
Chris Lattner967948b2008-07-23 05:06:28 +0000394 return true;
395
Chris Lattnered6dfc22003-12-09 19:32:44 +0000396 // Don't hoist loads which have may-aliased stores in loop.
Chris Lattnerf3e1d692004-11-26 21:20:09 +0000397 unsigned Size = 0;
398 if (LI->getType()->isSized())
Dan Gohmanfc2a3ed2009-07-25 00:48:42 +0000399 Size = AA->getTypeStoreSize(LI->getType());
Chris Lattnerf3e1d692004-11-26 21:20:09 +0000400 return !pointerInvalidatedByLoop(LI->getOperand(0), Size);
Chris Lattner118dd0c2004-03-15 04:11:30 +0000401 } else if (CallInst *CI = dyn_cast<CallInst>(&I)) {
402 // Handle obvious cases efficiently.
Duncan Sandsdff67102007-12-01 07:51:45 +0000403 AliasAnalysis::ModRefBehavior Behavior = AA->getModRefBehavior(CI);
404 if (Behavior == AliasAnalysis::DoesNotAccessMemory)
405 return true;
406 else if (Behavior == AliasAnalysis::OnlyReadsMemory) {
407 // If this call only reads from memory and there are no writes to memory
408 // in the loop, we can hoist or sink the call as appropriate.
409 bool FoundMod = false;
410 for (AliasSetTracker::iterator I = CurAST->begin(), E = CurAST->end();
411 I != E; ++I) {
412 AliasSet &AS = *I;
413 if (!AS.isForwardingAliasSet() && AS.isMod()) {
414 FoundMod = true;
415 break;
Chris Lattner118dd0c2004-03-15 04:11:30 +0000416 }
Chris Lattner118dd0c2004-03-15 04:11:30 +0000417 }
Duncan Sandsdff67102007-12-01 07:51:45 +0000418 if (!FoundMod) return true;
Chris Lattner118dd0c2004-03-15 04:11:30 +0000419 }
420
421 // FIXME: This should use mod/ref information to see if we can hoist or sink
422 // the call.
Misha Brukmanfd939082005-04-21 23:48:37 +0000423
Chris Lattner118dd0c2004-03-15 04:11:30 +0000424 return false;
Chris Lattnered6dfc22003-12-09 19:32:44 +0000425 }
426
Reid Spencer3da59db2006-11-27 01:05:10 +0000427 // Otherwise these instructions are hoistable/sinkable
Reid Spencer832254e2007-02-02 02:16:23 +0000428 return isa<BinaryOperator>(I) || isa<CastInst>(I) ||
Dan Gohmand8af90c2007-06-05 16:05:55 +0000429 isa<SelectInst>(I) || isa<GetElementPtrInst>(I) || isa<CmpInst>(I) ||
430 isa<InsertElementInst>(I) || isa<ExtractElementInst>(I) ||
431 isa<ShuffleVectorInst>(I);
Chris Lattnera2706512003-12-10 06:41:05 +0000432}
433
434/// isNotUsedInLoop - Return true if the only users of this instruction are
435/// outside of the loop. If this is true, we can sink the instruction to the
436/// exit blocks of the loop.
437///
438bool LICM::isNotUsedInLoop(Instruction &I) {
Chris Lattnerea9403f2003-12-11 22:23:32 +0000439 for (Value::use_iterator UI = I.use_begin(), E = I.use_end(); UI != E; ++UI) {
440 Instruction *User = cast<Instruction>(*UI);
441 if (PHINode *PN = dyn_cast<PHINode>(User)) {
442 // PHI node uses occur in predecessor blocks!
443 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
444 if (PN->getIncomingValue(i) == &I)
445 if (CurLoop->contains(PN->getIncomingBlock(i)))
446 return false;
Dan Gohman92329c72009-12-18 01:24:09 +0000447 } else if (CurLoop->contains(User)) {
Chris Lattnera2706512003-12-10 06:41:05 +0000448 return false;
Chris Lattnerea9403f2003-12-11 22:23:32 +0000449 }
450 }
Chris Lattnera2706512003-12-10 06:41:05 +0000451 return true;
452}
453
454
455/// isLoopInvariantInst - Return true if all operands of this instruction are
456/// loop invariant. We also filter out non-hoistable instructions here just for
457/// efficiency.
458///
459bool LICM::isLoopInvariantInst(Instruction &I) {
460 // The instruction is loop invariant if all of its operands are loop-invariant
461 for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i)
Chris Lattner3280f7b2004-04-18 22:46:08 +0000462 if (!CurLoop->isLoopInvariant(I.getOperand(i)))
Chris Lattnera2706512003-12-10 06:41:05 +0000463 return false;
464
Chris Lattnered6dfc22003-12-09 19:32:44 +0000465 // If we got this far, the instruction is loop invariant!
466 return true;
467}
468
Chris Lattnera2706512003-12-10 06:41:05 +0000469/// sink - When an instruction is found to only be used outside of the loop,
Chris Lattnera3df8a92003-12-19 08:18:16 +0000470/// this function moves it to the exit blocks and patches up SSA form as needed.
471/// This method is guaranteed to remove the original instruction from its
472/// position, and may either delete it or move it to outside of the loop.
Chris Lattnera2706512003-12-10 06:41:05 +0000473///
474void LICM::sink(Instruction &I) {
Nick Lewycky39a38312010-07-30 20:27:01 +0000475 DEBUG(dbgs() << "LICM sinking instruction: " << I << "\n");
Chris Lattnera2706512003-12-10 06:41:05 +0000476
Devang Patelb7211a22007-08-21 00:31:24 +0000477 SmallVector<BasicBlock*, 8> ExitBlocks;
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000478 CurLoop->getUniqueExitBlocks(ExitBlocks);
Chris Lattnerdf45bd32003-12-10 20:43:29 +0000479
480 if (isa<LoadInst>(I)) ++NumMovedLoads;
Chris Lattner118dd0c2004-03-15 04:11:30 +0000481 else if (isa<CallInst>(I)) ++NumMovedCalls;
Chris Lattnerdf45bd32003-12-10 20:43:29 +0000482 ++NumSunk;
483 Changed = true;
484
Chris Lattnera2706512003-12-10 06:41:05 +0000485 // The case where there is only a single exit node of this loop is common
486 // enough that we handle it as a special (more efficient) case. It is more
487 // efficient to handle because there are no PHI nodes that need to be placed.
488 if (ExitBlocks.size() == 1) {
489 if (!isExitBlockDominatedByBlockInLoop(ExitBlocks[0], I.getParent())) {
490 // Instruction is not used, just delete it.
Chris Lattner2741c972004-05-23 21:20:19 +0000491 CurAST->deleteValue(&I);
Devang Patel1bf5ebc2009-10-13 21:41:20 +0000492 // If I has users in unreachable blocks, eliminate.
Devang Patel228ebd02009-10-13 22:56:32 +0000493 // If I is not void type then replaceAllUsesWith undef.
494 // This allows ValueHandlers and custom metadata to adjust itself.
Chris Lattnera6a36f52010-08-29 04:55:06 +0000495 if (!I.use_empty())
Devang Patel228ebd02009-10-13 22:56:32 +0000496 I.replaceAllUsesWith(UndefValue::get(I.getType()));
Chris Lattner3c80a512006-06-26 19:10:05 +0000497 I.eraseFromParent();
Chris Lattnera2706512003-12-10 06:41:05 +0000498 } else {
499 // Move the instruction to the start of the exit block, after any PHI
500 // nodes in it.
Chris Lattnerd9a5dae2010-08-29 18:18:40 +0000501 I.moveBefore(ExitBlocks[0]->getFirstNonPHI());
Chris Lattner4282e322010-08-29 17:46:00 +0000502
503 // This instruction is no longer in the AST for the current loop, because
504 // we just sunk it out of the loop. If we just sunk it into an outer
505 // loop, we will rediscover the operation when we process it.
506 CurAST->deleteValue(&I);
Chris Lattnera2706512003-12-10 06:41:05 +0000507 }
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000508 return;
509 }
510
511 if (ExitBlocks.empty()) {
Chris Lattnera2706512003-12-10 06:41:05 +0000512 // The instruction is actually dead if there ARE NO exit blocks.
Chris Lattner2741c972004-05-23 21:20:19 +0000513 CurAST->deleteValue(&I);
Devang Patel1bf5ebc2009-10-13 21:41:20 +0000514 // If I has users in unreachable blocks, eliminate.
Devang Patel228ebd02009-10-13 22:56:32 +0000515 // If I is not void type then replaceAllUsesWith undef.
516 // This allows ValueHandlers and custom metadata to adjust itself.
Chris Lattnera6a36f52010-08-29 04:55:06 +0000517 if (!I.use_empty())
Devang Patel228ebd02009-10-13 22:56:32 +0000518 I.replaceAllUsesWith(UndefValue::get(I.getType()));
Chris Lattner3c80a512006-06-26 19:10:05 +0000519 I.eraseFromParent();
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000520 return;
521 }
522
Chris Lattnera6a36f52010-08-29 04:55:06 +0000523 // Otherwise, if we have multiple exits, use the SSAUpdater to do all of the
524 // hard work of inserting PHI nodes as necessary.
525 SmallVector<PHINode*, 8> NewPHIs;
526 SSAUpdater SSA(&NewPHIs);
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000527
Chris Lattnera6a36f52010-08-29 04:55:06 +0000528 if (!I.use_empty())
Duncan Sandsfc6e29d2010-09-02 08:14:03 +0000529 SSA.Initialize(I.getType(), I.getName());
Chris Lattnera6a36f52010-08-29 04:55:06 +0000530
531 // Insert a copy of the instruction in each exit block of the loop that is
532 // dominated by the instruction. Each exit block is known to only be in the
533 // ExitBlocks list once.
534 BasicBlock *InstOrigBB = I.getParent();
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000535 unsigned NumInserted = 0;
Chris Lattnera6a36f52010-08-29 04:55:06 +0000536
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000537 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i) {
538 BasicBlock *ExitBlock = ExitBlocks[i];
Chris Lattnera6a36f52010-08-29 04:55:06 +0000539
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000540 if (!isExitBlockDominatedByBlockInLoop(ExitBlock, InstOrigBB))
541 continue;
542
Chris Lattnera6a36f52010-08-29 04:55:06 +0000543 // Insert the code after the last PHI node.
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000544 BasicBlock::iterator InsertPt = ExitBlock->getFirstNonPHI();
Chris Lattnera6a36f52010-08-29 04:55:06 +0000545
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000546 // If this is the first exit block processed, just move the original
547 // instruction, otherwise clone the original instruction and insert
548 // the copy.
549 Instruction *New;
Chris Lattnera6a36f52010-08-29 04:55:06 +0000550 if (NumInserted++ == 0) {
551 I.moveBefore(InsertPt);
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000552 New = &I;
553 } else {
554 New = I.clone();
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000555 if (!I.getName().empty())
556 New->setName(I.getName()+".le");
557 ExitBlock->getInstList().insert(InsertPt, New);
Chris Lattnereaa24302004-07-27 07:38:32 +0000558 }
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000559
Chris Lattnera6a36f52010-08-29 04:55:06 +0000560 // Now that we have inserted the instruction, inform SSAUpdater.
561 if (!I.use_empty())
562 SSA.AddAvailableValue(ExitBlock, New);
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000563 }
Chris Lattnera6a36f52010-08-29 04:55:06 +0000564
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000565 // If the instruction doesn't dominate any exit blocks, it must be dead.
566 if (NumInserted == 0) {
567 CurAST->deleteValue(&I);
Chris Lattnera6a36f52010-08-29 04:55:06 +0000568 if (!I.use_empty())
569 I.replaceAllUsesWith(UndefValue::get(I.getType()));
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000570 I.eraseFromParent();
Chris Lattnera6a36f52010-08-29 04:55:06 +0000571 return;
Chris Lattnerd7bc19d2010-08-29 04:28:20 +0000572 }
Chris Lattnera6a36f52010-08-29 04:55:06 +0000573
574 // Next, rewrite uses of the instruction, inserting PHI nodes as needed.
575 for (Value::use_iterator UI = I.use_begin(), UE = I.use_end(); UI != UE; ) {
576 // Grab the use before incrementing the iterator.
577 Use &U = UI.getUse();
578 // Increment the iterator before removing the use from the list.
579 ++UI;
580 SSA.RewriteUseAfterInsertions(U);
Chris Lattnera2706512003-12-10 06:41:05 +0000581 }
Chris Lattnera6a36f52010-08-29 04:55:06 +0000582
583 // Update CurAST for NewPHIs if I had pointer type.
584 if (I.getType()->isPointerTy())
585 for (unsigned i = 0, e = NewPHIs.size(); i != e; ++i)
Chris Lattner9c282012010-09-02 22:19:10 +0000586 CurAST->copyValue(&I, NewPHIs[i]);
Chris Lattner98917502010-08-29 18:00:00 +0000587
588 // Finally, remove the instruction from CurAST. It is no longer in the loop.
589 CurAST->deleteValue(&I);
Chris Lattnera2706512003-12-10 06:41:05 +0000590}
Chris Lattner952eaee2002-09-29 21:46:09 +0000591
Chris Lattner94170592002-09-26 16:52:07 +0000592/// hoist - When an instruction is found to only use loop invariant operands
593/// that is safe to hoist, this instruction is called to do the dirty work.
594///
Chris Lattnera2706512003-12-10 06:41:05 +0000595void LICM::hoist(Instruction &I) {
David Greenef1582692010-01-05 01:27:30 +0000596 DEBUG(dbgs() << "LICM hoisting to " << Preheader->getName() << ": "
Evan Cheng67d1d1f2009-10-12 22:25:23 +0000597 << I << "\n");
Chris Lattnered6dfc22003-12-09 19:32:44 +0000598
Chris Lattnerd9a5dae2010-08-29 18:18:40 +0000599 // Move the new node to the Preheader, before its terminator.
600 I.moveBefore(Preheader->getTerminator());
Misha Brukmanfd939082005-04-21 23:48:37 +0000601
Chris Lattnera2706512003-12-10 06:41:05 +0000602 if (isa<LoadInst>(I)) ++NumMovedLoads;
Chris Lattner118dd0c2004-03-15 04:11:30 +0000603 else if (isa<CallInst>(I)) ++NumMovedCalls;
Chris Lattner9646e6b2002-09-26 16:38:03 +0000604 ++NumHoisted;
Chris Lattnere0e734e2002-05-10 22:44:58 +0000605 Changed = true;
606}
607
Chris Lattnera2706512003-12-10 06:41:05 +0000608/// isSafeToExecuteUnconditionally - Only sink or hoist an instruction if it is
609/// not a trapping instruction or if it is a trapping instruction and is
610/// guaranteed to execute.
Tanya Lattner9966c032003-08-05 18:45:46 +0000611///
Chris Lattnera2706512003-12-10 06:41:05 +0000612bool LICM::isSafeToExecuteUnconditionally(Instruction &Inst) {
Chris Lattner92094b42003-12-09 17:18:00 +0000613 // If it is not a trapping instruction, it is always safe to hoist.
Eli Friedman0b79a772009-07-17 04:28:42 +0000614 if (Inst.isSafeToSpeculativelyExecute())
615 return true;
Misha Brukmanfd939082005-04-21 23:48:37 +0000616
Chris Lattner92094b42003-12-09 17:18:00 +0000617 // Otherwise we have to check to make sure that the instruction dominates all
618 // of the exit blocks. If it doesn't, then there is a path out of the loop
619 // which does not execute this instruction, so we can't hoist it.
Tanya Lattner9966c032003-08-05 18:45:46 +0000620
Chris Lattner92094b42003-12-09 17:18:00 +0000621 // If the instruction is in the header block for the loop (which is very
622 // common), it is always guaranteed to dominate the exit blocks. Since this
623 // is a common case, and can save some work, check it now.
Chris Lattnera2706512003-12-10 06:41:05 +0000624 if (Inst.getParent() == CurLoop->getHeader())
Chris Lattner92094b42003-12-09 17:18:00 +0000625 return true;
Tanya Lattner9966c032003-08-05 18:45:46 +0000626
Chris Lattner92094b42003-12-09 17:18:00 +0000627 // Get the exit blocks for the current loop.
Devang Patelb7211a22007-08-21 00:31:24 +0000628 SmallVector<BasicBlock*, 8> ExitBlocks;
Chris Lattner5fa802f2004-04-18 22:15:13 +0000629 CurLoop->getExitBlocks(ExitBlocks);
Chris Lattner92094b42003-12-09 17:18:00 +0000630
Owen Anderson3a2b58f2007-04-24 06:40:39 +0000631 // For each exit block, get the DT node and walk up the DT until the
Chris Lattner92094b42003-12-09 17:18:00 +0000632 // instruction's basic block is found or we exit the loop.
Chris Lattnera2706512003-12-10 06:41:05 +0000633 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i)
634 if (!isExitBlockDominatedByBlockInLoop(ExitBlocks[i], Inst.getParent()))
635 return false;
Misha Brukmanfd939082005-04-21 23:48:37 +0000636
Tanya Lattner9966c032003-08-05 18:45:46 +0000637 return true;
638}
639
Chris Lattnere4880642010-08-29 06:43:52 +0000640/// PromoteAliasSet - Try to promote memory values to scalars by sinking
Chris Lattner2e6e7412003-02-24 03:52:32 +0000641/// stores out of the loop and moving loads to before the loop. We do this by
642/// looping over the stores in the loop, looking for stores to Must pointers
Chris Lattnere4880642010-08-29 06:43:52 +0000643/// which are loop invariant.
Chris Lattner2e6e7412003-02-24 03:52:32 +0000644///
Chris Lattnere4880642010-08-29 06:43:52 +0000645void LICM::PromoteAliasSet(AliasSet &AS) {
646 // We can promote this alias set if it has a store, if it is a "Must" alias
647 // set, if the pointer is loop invariant, and if we are not eliminating any
648 // volatile loads or stores.
649 if (AS.isForwardingAliasSet() || !AS.isMod() || !AS.isMustAlias() ||
650 AS.isVolatile() || !CurLoop->isLoopInvariant(AS.begin()->getValue()))
651 return;
652
653 assert(!AS.empty() &&
654 "Must alias set should have at least one pointer element in it!");
655 Value *SomePtr = AS.begin()->getValue();
Chris Lattner2e6e7412003-02-24 03:52:32 +0000656
Chris Lattnere4880642010-08-29 06:43:52 +0000657 // It isn't safe to promote a load/store from the loop if the load/store is
658 // conditional. For example, turning:
Chris Lattner2e6e7412003-02-24 03:52:32 +0000659 //
Chris Lattnere4880642010-08-29 06:43:52 +0000660 // for () { if (c) *P += 1; }
Chris Lattner2e6e7412003-02-24 03:52:32 +0000661 //
Chris Lattnere4880642010-08-29 06:43:52 +0000662 // into:
663 //
664 // tmp = *P; for () { if (c) tmp +=1; } *P = tmp;
665 //
666 // is not safe, because *P may only be valid to access if 'c' is true.
667 //
668 // It is safe to promote P if all uses are direct load/stores and if at
669 // least one is guaranteed to be executed.
670 bool GuaranteedToExecute = false;
671
672 SmallVector<Instruction*, 64> LoopUses;
673 SmallPtrSet<Value*, 4> PointerMustAliases;
Chris Lattner2e6e7412003-02-24 03:52:32 +0000674
Chris Lattnere4880642010-08-29 06:43:52 +0000675 // Check that all of the pointers in the alias set have the same type. We
676 // cannot (yet) promote a memory location that is loaded and stored in
677 // different sizes.
678 for (AliasSet::iterator ASI = AS.begin(), E = AS.end(); ASI != E; ++ASI) {
679 Value *ASIV = ASI->getValue();
680 PointerMustAliases.insert(ASIV);
Chris Lattner29d92932008-05-22 00:53:38 +0000681
Chris Lattner29d92932008-05-22 00:53:38 +0000682 // Check that all of the pointers in the alias set have the same type. We
683 // cannot (yet) promote a memory location that is loaded and stored in
684 // different sizes.
Chris Lattnere4880642010-08-29 06:43:52 +0000685 if (SomePtr->getType() != ASIV->getType())
686 return;
687
688 for (Value::use_iterator UI = ASIV->use_begin(), UE = ASIV->use_end();
Chris Lattner19d9d432008-05-22 03:22:42 +0000689 UI != UE; ++UI) {
Chris Lattnere4880642010-08-29 06:43:52 +0000690 // Ignore instructions that are outside the loop.
Chris Lattner29d92932008-05-22 00:53:38 +0000691 Instruction *Use = dyn_cast<Instruction>(*UI);
Dan Gohman92329c72009-12-18 01:24:09 +0000692 if (!Use || !CurLoop->contains(Use))
Chris Lattner29d92932008-05-22 00:53:38 +0000693 continue;
Chris Lattnere4880642010-08-29 06:43:52 +0000694
695 // If there is an non-load/store instruction in the loop, we can't promote
696 // it.
697 if (isa<LoadInst>(Use))
698 assert(!cast<LoadInst>(Use)->isVolatile() && "AST broken");
699 else if (isa<StoreInst>(Use))
700 assert(!cast<StoreInst>(Use)->isVolatile() &&
701 Use->getOperand(0) != ASIV && "AST broken");
702 else
703 return; // Not a load or store.
Chris Lattner19d9d432008-05-22 03:22:42 +0000704
705 if (!GuaranteedToExecute)
706 GuaranteedToExecute = isSafeToExecuteUnconditionally(*Use);
Chris Lattnere4880642010-08-29 06:43:52 +0000707
708 LoopUses.push_back(Use);
709 }
710 }
711
712 // If there isn't a guaranteed-to-execute instruction, we can't promote.
713 if (!GuaranteedToExecute)
714 return;
715
716 // Otherwise, this is safe to promote, lets do it!
717 DEBUG(dbgs() << "LICM: Promoting value stored to in loop: " <<*SomePtr<<'\n');
718 Changed = true;
719 ++NumPromoted;
720
721 // We use the SSAUpdater interface to insert phi nodes as required.
722 SmallVector<PHINode*, 16> NewPHIs;
723 SSAUpdater SSA(&NewPHIs);
724
725 // It wants to know some value of the same type as what we'll be inserting.
726 Value *SomeValue;
727 if (isa<LoadInst>(LoopUses[0]))
728 SomeValue = LoopUses[0];
729 else
730 SomeValue = cast<StoreInst>(LoopUses[0])->getOperand(0);
Duncan Sandsfc6e29d2010-09-02 08:14:03 +0000731 SSA.Initialize(SomeValue->getType(), SomeValue->getName());
Chris Lattnere4880642010-08-29 06:43:52 +0000732
733 // First step: bucket up uses of the pointers by the block they occur in.
734 // This is important because we have to handle multiple defs/uses in a block
735 // ourselves: SSAUpdater is purely for cross-block references.
736 // FIXME: Want a TinyVector<Instruction*> since there is usually 0/1 element.
737 DenseMap<BasicBlock*, std::vector<Instruction*> > UsesByBlock;
738 for (unsigned i = 0, e = LoopUses.size(); i != e; ++i) {
739 Instruction *User = LoopUses[i];
740 UsesByBlock[User->getParent()].push_back(User);
741 }
742
743 // Okay, now we can iterate over all the blocks in the loop with uses,
744 // processing them. Keep track of which loads are loading a live-in value.
745 SmallVector<LoadInst*, 32> LiveInLoads;
746
747 for (unsigned LoopUse = 0, e = LoopUses.size(); LoopUse != e; ++LoopUse) {
748 Instruction *User = LoopUses[LoopUse];
749 std::vector<Instruction*> &BlockUses = UsesByBlock[User->getParent()];
750
751 // If this block has already been processed, ignore this repeat use.
752 if (BlockUses.empty()) continue;
753
754 // Okay, this is the first use in the block. If this block just has a
755 // single user in it, we can rewrite it trivially.
756 if (BlockUses.size() == 1) {
757 // If it is a store, it is a trivial def of the value in the block.
758 if (isa<StoreInst>(User)) {
759 SSA.AddAvailableValue(User->getParent(),
760 cast<StoreInst>(User)->getOperand(0));
761 } else {
762 // Otherwise it is a load, queue it to rewrite as a live-in load.
763 LiveInLoads.push_back(cast<LoadInst>(User));
764 }
765 BlockUses.clear();
766 continue;
767 }
768
769 // Otherwise, check to see if this block is all loads. If so, we can queue
770 // them all as live in loads.
771 bool HasStore = false;
772 for (unsigned i = 0, e = BlockUses.size(); i != e; ++i) {
773 if (isa<StoreInst>(BlockUses[i])) {
774 HasStore = true;
775 break;
776 }
777 }
778
779 if (!HasStore) {
780 for (unsigned i = 0, e = BlockUses.size(); i != e; ++i)
781 LiveInLoads.push_back(cast<LoadInst>(BlockUses[i]));
782 BlockUses.clear();
783 continue;
Chris Lattner29d92932008-05-22 00:53:38 +0000784 }
785
Chris Lattnere4880642010-08-29 06:43:52 +0000786 // Otherwise, we have mixed loads and stores (or just a bunch of stores).
787 // Since SSAUpdater is purely for cross-block values, we need to determine
788 // the order of these instructions in the block. If the first use in the
789 // block is a load, then it uses the live in value. The last store defines
790 // the live out value. We handle this by doing a linear scan of the block.
791 BasicBlock *BB = User->getParent();
792 Value *StoredValue = 0;
793 for (BasicBlock::iterator II = BB->begin(), E = BB->end(); II != E; ++II) {
794 if (LoadInst *L = dyn_cast<LoadInst>(II)) {
795 // If this is a load to an unrelated pointer, ignore it.
796 if (!PointerMustAliases.count(L->getOperand(0))) continue;
797
798 // If we haven't seen a store yet, this is a live in use, otherwise
799 // use the stored value.
800 if (StoredValue)
801 L->replaceAllUsesWith(StoredValue);
802 else
803 LiveInLoads.push_back(L);
804 continue;
805 }
806
807 if (StoreInst *S = dyn_cast<StoreInst>(II)) {
Chris Lattner44556082010-08-29 19:54:28 +0000808 // If this is a store to an unrelated pointer, ignore it.
Chris Lattnere4880642010-08-29 06:43:52 +0000809 if (!PointerMustAliases.count(S->getOperand(1))) continue;
810
811 // Remember that this is the active value in the block.
812 StoredValue = S->getOperand(0);
813 }
814 }
Chris Lattner29d92932008-05-22 00:53:38 +0000815
Chris Lattnere4880642010-08-29 06:43:52 +0000816 // The last stored value that happened is the live-out for the block.
817 assert(StoredValue && "Already checked that there is a store in block");
818 SSA.AddAvailableValue(BB, StoredValue);
819 BlockUses.clear();
Chris Lattner2e6e7412003-02-24 03:52:32 +0000820 }
Chris Lattnere4880642010-08-29 06:43:52 +0000821
822 // Now that all the intra-loop values are classified, set up the preheader.
823 // It gets a load of the pointer we're promoting, and it is the live-out value
824 // from the preheader.
825 LoadInst *PreheaderLoad = new LoadInst(SomePtr,SomePtr->getName()+".promoted",
826 Preheader->getTerminator());
827 SSA.AddAvailableValue(Preheader, PreheaderLoad);
828
829 // Now that the preheader is good to go, set up the exit blocks. Each exit
830 // block gets a store of the live-out values that feed them. Since we've
831 // already told the SSA updater about the defs in the loop and the preheader
832 // definition, it is all set and we can start using it.
833 SmallVector<BasicBlock*, 8> ExitBlocks;
834 CurLoop->getUniqueExitBlocks(ExitBlocks);
835 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i) {
836 BasicBlock *ExitBlock = ExitBlocks[i];
837 Value *LiveInValue = SSA.GetValueInMiddleOfBlock(ExitBlock);
838 Instruction *InsertPos = ExitBlock->getFirstNonPHI();
839 new StoreInst(LiveInValue, SomePtr, InsertPos);
840 }
841
842 // Okay, now we rewrite all loads that use live-in values in the loop,
843 // inserting PHI nodes as necessary.
844 for (unsigned i = 0, e = LiveInLoads.size(); i != e; ++i) {
845 LoadInst *ALoad = LiveInLoads[i];
Chris Lattner9c282012010-09-02 22:19:10 +0000846 Value *NewVal = SSA.GetValueInMiddleOfBlock(ALoad->getParent());
847 ALoad->replaceAllUsesWith(NewVal);
848 CurAST->copyValue(ALoad, NewVal);
Chris Lattnere4880642010-08-29 06:43:52 +0000849 }
850
851 // Now that everything is rewritten, delete the old instructions from the body
852 // of the loop. They should all be dead now.
853 for (unsigned i = 0, e = LoopUses.size(); i != e; ++i) {
854 Instruction *User = LoopUses[i];
855 CurAST->deleteValue(User);
856 User->eraseFromParent();
857 }
858
859 // If the preheader load is itself a pointer, we need to tell alias analysis
860 // about the new pointer we created in the preheader block and about any PHI
861 // nodes that just got inserted.
862 if (PreheaderLoad->getType()->isPointerTy()) {
863 // Copy any value stored to or loaded from a must-alias of the pointer.
864 CurAST->copyValue(SomeValue, PreheaderLoad);
865
866 for (unsigned i = 0, e = NewPHIs.size(); i != e; ++i)
867 CurAST->copyValue(SomeValue, NewPHIs[i]);
868 }
869
870 // fwew, we're done!
Chris Lattnerf5e84aa2002-08-22 21:39:55 +0000871}
Devang Patel91d22c82007-07-31 08:01:41 +0000872
Chris Lattnere4880642010-08-29 06:43:52 +0000873
Devang Patel91d22c82007-07-31 08:01:41 +0000874/// cloneBasicBlockAnalysis - Simple Analysis hook. Clone alias set info.
875void LICM::cloneBasicBlockAnalysis(BasicBlock *From, BasicBlock *To, Loop *L) {
Chris Lattner4282e322010-08-29 17:46:00 +0000876 AliasSetTracker *AST = LoopToAliasSetMap.lookup(L);
Devang Patel91d22c82007-07-31 08:01:41 +0000877 if (!AST)
878 return;
879
880 AST->copyValue(From, To);
881}
882
883/// deleteAnalysisValue - Simple Analysis hook. Delete value V from alias
884/// set.
885void LICM::deleteAnalysisValue(Value *V, Loop *L) {
Chris Lattner4282e322010-08-29 17:46:00 +0000886 AliasSetTracker *AST = LoopToAliasSetMap.lookup(L);
Devang Patel91d22c82007-07-31 08:01:41 +0000887 if (!AST)
888 return;
889
890 AST->deleteValue(V);
891}