blob: 67d06d1ef64ec9a38eba6922bd3608259d92d517 [file] [log] [blame]
Chris Lattner60d4e692009-10-10 09:04:27 +00001//===- SSAUpdater.cpp - Unstructured SSA Update Tool ----------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the SSAUpdater class.
11//
12//===----------------------------------------------------------------------===//
13
Chandler Carruthed0881b2012-12-03 16:50:05 +000014#include "llvm/Transforms/Utils/SSAUpdater.h"
Chris Lattner60d4e692009-10-10 09:04:27 +000015#include "llvm/ADT/DenseMap.h"
Chris Lattner7b70bef2011-07-18 01:43:58 +000016#include "llvm/ADT/TinyPtrVector.h"
Duncan Sands63704952010-11-16 17:41:24 +000017#include "llvm/Analysis/InstructionSimplify.h"
Chandler Carruth1305dc32014-03-04 11:45:46 +000018#include "llvm/IR/CFG.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000019#include "llvm/IR/Constants.h"
20#include "llvm/IR/Instructions.h"
21#include "llvm/IR/IntrinsicInst.h"
Chris Lattner60d4e692009-10-10 09:04:27 +000022#include "llvm/Support/Debug.h"
Chris Lattner60d4e692009-10-10 09:04:27 +000023#include "llvm/Support/raw_ostream.h"
Devang Patela8e74112011-04-29 22:28:59 +000024#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Cameron Zwarich843bc7d2011-05-24 03:10:43 +000025#include "llvm/Transforms/Utils/Local.h"
Bob Wilsond1b38e32010-05-04 23:18:19 +000026#include "llvm/Transforms/Utils/SSAUpdaterImpl.h"
Devang Patela8e74112011-04-29 22:28:59 +000027
Chris Lattner60d4e692009-10-10 09:04:27 +000028using namespace llvm;
29
Chandler Carruthe96dd892014-04-21 22:55:11 +000030#define DEBUG_TYPE "ssaupdater"
31
Bob Wilsonca514252010-04-17 03:08:24 +000032typedef DenseMap<BasicBlock*, Value*> AvailableValsTy;
Chris Lattner60d4e692009-10-10 09:04:27 +000033static AvailableValsTy &getAvailableVals(void *AV) {
34 return *static_cast<AvailableValsTy*>(AV);
35}
36
Chris Lattner249265d2009-10-10 23:15:24 +000037SSAUpdater::SSAUpdater(SmallVectorImpl<PHINode*> *NewPHI)
Craig Topperf40110f2014-04-25 05:29:35 +000038 : AV(nullptr), ProtoType(nullptr), ProtoName(), InsertedPHIs(NewPHI) {}
Chris Lattner60d4e692009-10-10 09:04:27 +000039
40SSAUpdater::~SSAUpdater() {
Richard Smith257c5f22012-08-17 21:42:44 +000041 delete static_cast<AvailableValsTy*>(AV);
Chris Lattner60d4e692009-10-10 09:04:27 +000042}
43
Chris Lattner229907c2011-07-18 04:54:35 +000044void SSAUpdater::Initialize(Type *Ty, StringRef Name) {
Craig Topperf40110f2014-04-25 05:29:35 +000045 if (!AV)
Chris Lattner60d4e692009-10-10 09:04:27 +000046 AV = new AvailableValsTy();
47 else
48 getAvailableVals(AV).clear();
Duncan Sands67781492010-09-02 08:14:03 +000049 ProtoType = Ty;
50 ProtoName = Name;
Chris Lattner60d4e692009-10-10 09:04:27 +000051}
52
Chris Lattner9c382ce2009-10-10 23:41:48 +000053bool SSAUpdater::HasValueForBlock(BasicBlock *BB) const {
54 return getAvailableVals(AV).count(BB);
55}
56
Chris Lattner60d4e692009-10-10 09:04:27 +000057void SSAUpdater::AddAvailableValue(BasicBlock *BB, Value *V) {
Craig Toppere73658d2014-04-28 04:05:08 +000058 assert(ProtoType && "Need to initialize SSAUpdater");
Duncan Sands67781492010-09-02 08:14:03 +000059 assert(ProtoType == V->getType() &&
Chris Lattner60d4e692009-10-10 09:04:27 +000060 "All rewritten values must have the same type");
61 getAvailableVals(AV)[BB] = V;
62}
63
Bob Wilsonca514252010-04-17 03:08:24 +000064static bool IsEquivalentPHI(PHINode *PHI,
Chris Lattner94fc4be2013-10-14 16:05:55 +000065 SmallDenseMap<BasicBlock*, Value*, 8> &ValueMapping) {
Bob Wilson7577e942010-01-27 22:01:02 +000066 unsigned PHINumValues = PHI->getNumIncomingValues();
67 if (PHINumValues != ValueMapping.size())
68 return false;
69
70 // Scan the phi to see if it matches.
71 for (unsigned i = 0, e = PHINumValues; i != e; ++i)
72 if (ValueMapping[PHI->getIncomingBlock(i)] !=
73 PHI->getIncomingValue(i)) {
74 return false;
75 }
76
77 return true;
78}
79
Chris Lattnere474a8d2009-10-10 22:41:58 +000080Value *SSAUpdater::GetValueAtEndOfBlock(BasicBlock *BB) {
Chris Lattnere474a8d2009-10-10 22:41:58 +000081 Value *Res = GetValueAtEndOfBlockInternal(BB);
Chris Lattner60d4e692009-10-10 09:04:27 +000082 return Res;
83}
84
Chris Lattner67cdd8b2009-10-10 23:00:11 +000085Value *SSAUpdater::GetValueInMiddleOfBlock(BasicBlock *BB) {
86 // If there is no definition of the renamed variable in this block, just use
87 // GetValueAtEndOfBlock to do our work.
Bob Wilsonca514252010-04-17 03:08:24 +000088 if (!HasValueForBlock(BB))
Chris Lattner67cdd8b2009-10-10 23:00:11 +000089 return GetValueAtEndOfBlock(BB);
Duncan Sands0058c7b2009-10-16 15:20:13 +000090
Chris Lattner67cdd8b2009-10-10 23:00:11 +000091 // Otherwise, we have the hard case. Get the live-in values for each
92 // predecessor.
93 SmallVector<std::pair<BasicBlock*, Value*>, 8> PredValues;
Craig Topperf40110f2014-04-25 05:29:35 +000094 Value *SingularValue = nullptr;
Duncan Sands0058c7b2009-10-16 15:20:13 +000095
Chris Lattner67cdd8b2009-10-10 23:00:11 +000096 // We can get our predecessor info by walking the pred_iterator list, but it
97 // is relatively slow. If we already have PHI nodes in this block, walk one
98 // of them to get the predecessor list instead.
99 if (PHINode *SomePhi = dyn_cast<PHINode>(BB->begin())) {
100 for (unsigned i = 0, e = SomePhi->getNumIncomingValues(); i != e; ++i) {
101 BasicBlock *PredBB = SomePhi->getIncomingBlock(i);
102 Value *PredVal = GetValueAtEndOfBlock(PredBB);
103 PredValues.push_back(std::make_pair(PredBB, PredVal));
Duncan Sands0058c7b2009-10-16 15:20:13 +0000104
Chris Lattner67cdd8b2009-10-10 23:00:11 +0000105 // Compute SingularValue.
106 if (i == 0)
107 SingularValue = PredVal;
108 else if (PredVal != SingularValue)
Craig Topperf40110f2014-04-25 05:29:35 +0000109 SingularValue = nullptr;
Chris Lattner67cdd8b2009-10-10 23:00:11 +0000110 }
111 } else {
112 bool isFirstPred = true;
Manuel Jacobd11beff2014-07-20 09:10:11 +0000113 for (BasicBlock *PredBB : predecessors(BB)) {
Chris Lattner67cdd8b2009-10-10 23:00:11 +0000114 Value *PredVal = GetValueAtEndOfBlock(PredBB);
115 PredValues.push_back(std::make_pair(PredBB, PredVal));
Duncan Sands0058c7b2009-10-16 15:20:13 +0000116
Chris Lattner67cdd8b2009-10-10 23:00:11 +0000117 // Compute SingularValue.
118 if (isFirstPred) {
119 SingularValue = PredVal;
120 isFirstPred = false;
121 } else if (PredVal != SingularValue)
Craig Topperf40110f2014-04-25 05:29:35 +0000122 SingularValue = nullptr;
Chris Lattner67cdd8b2009-10-10 23:00:11 +0000123 }
124 }
Duncan Sands0058c7b2009-10-16 15:20:13 +0000125
Chris Lattner67cdd8b2009-10-10 23:00:11 +0000126 // If there are no predecessors, just return undef.
127 if (PredValues.empty())
Duncan Sands67781492010-09-02 08:14:03 +0000128 return UndefValue::get(ProtoType);
Duncan Sands0058c7b2009-10-16 15:20:13 +0000129
Chris Lattner67cdd8b2009-10-10 23:00:11 +0000130 // Otherwise, if all the merged values are the same, just use it.
Craig Topperf40110f2014-04-25 05:29:35 +0000131 if (SingularValue)
Chris Lattner67cdd8b2009-10-10 23:00:11 +0000132 return SingularValue;
Duncan Sands0058c7b2009-10-16 15:20:13 +0000133
Bob Wilsonca514252010-04-17 03:08:24 +0000134 // Otherwise, we do need a PHI: check to see if we already have one available
135 // in this block that produces the right value.
136 if (isa<PHINode>(BB->begin())) {
Chris Lattner94fc4be2013-10-14 16:05:55 +0000137 SmallDenseMap<BasicBlock*, Value*, 8> ValueMapping(PredValues.begin(),
138 PredValues.end());
Bob Wilsonca514252010-04-17 03:08:24 +0000139 PHINode *SomePHI;
140 for (BasicBlock::iterator It = BB->begin();
141 (SomePHI = dyn_cast<PHINode>(It)); ++It) {
142 if (IsEquivalentPHI(SomePHI, ValueMapping))
143 return SomePHI;
144 }
145 }
Bob Wilson7577e942010-01-27 22:01:02 +0000146
Chris Lattner8fb07c52009-12-21 07:16:11 +0000147 // Ok, we have no way out, insert a new one now.
Jay Foad52131342011-03-30 11:28:46 +0000148 PHINode *InsertedPHI = PHINode::Create(ProtoType, PredValues.size(),
149 ProtoName, &BB->front());
Duncan Sands0058c7b2009-10-16 15:20:13 +0000150
Chris Lattner67cdd8b2009-10-10 23:00:11 +0000151 // Fill in all the predecessors of the PHI.
152 for (unsigned i = 0, e = PredValues.size(); i != e; ++i)
153 InsertedPHI->addIncoming(PredValues[i].second, PredValues[i].first);
Duncan Sands0058c7b2009-10-16 15:20:13 +0000154
Chris Lattner67cdd8b2009-10-10 23:00:11 +0000155 // See if the PHI node can be merged to a single value. This can happen in
156 // loop cases when we get a PHI of itself and one other value.
Duncan Sands63704952010-11-16 17:41:24 +0000157 if (Value *V = SimplifyInstruction(InsertedPHI)) {
Chris Lattner67cdd8b2009-10-10 23:00:11 +0000158 InsertedPHI->eraseFromParent();
Duncan Sands63704952010-11-16 17:41:24 +0000159 return V;
Chris Lattner67cdd8b2009-10-10 23:00:11 +0000160 }
Chris Lattner249265d2009-10-10 23:15:24 +0000161
Eli Benderskyf0ad3602012-06-25 10:13:14 +0000162 // Set the DebugLoc of the inserted PHI, if available.
163 DebugLoc DL;
164 if (const Instruction *I = BB->getFirstNonPHI())
165 DL = I->getDebugLoc();
166 InsertedPHI->setDebugLoc(DL);
Devang Patela8e74112011-04-29 22:28:59 +0000167
Chris Lattner249265d2009-10-10 23:15:24 +0000168 // If the client wants to know about all new instructions, tell it.
169 if (InsertedPHIs) InsertedPHIs->push_back(InsertedPHI);
Duncan Sands0058c7b2009-10-16 15:20:13 +0000170
David Greene3774a382010-01-05 01:26:49 +0000171 DEBUG(dbgs() << " Inserted PHI: " << *InsertedPHI << "\n");
Chris Lattner67cdd8b2009-10-10 23:00:11 +0000172 return InsertedPHI;
173}
174
Chris Lattner60d4e692009-10-10 09:04:27 +0000175void SSAUpdater::RewriteUse(Use &U) {
176 Instruction *User = cast<Instruction>(U.getUser());
Bob Wilsonca514252010-04-17 03:08:24 +0000177
Chris Lattner7f903682009-10-20 20:27:49 +0000178 Value *V;
179 if (PHINode *UserPN = dyn_cast<PHINode>(User))
180 V = GetValueAtEndOfBlock(UserPN->getIncomingBlock(U));
181 else
182 V = GetValueInMiddleOfBlock(User->getParent());
Duncan Sands0058c7b2009-10-16 15:20:13 +0000183
Nadav Rotem8d804522012-08-13 23:06:54 +0000184 // Notify that users of the existing value that it is being replaced.
185 Value *OldVal = U.get();
186 if (OldVal != V && OldVal->hasValueHandle())
187 ValueHandleBase::ValueIsRAUWd(OldVal, V);
188
Torok Edwincf10ec92009-10-20 15:42:00 +0000189 U.set(V);
Chris Lattner60d4e692009-10-10 09:04:27 +0000190}
191
Chris Lattnerc3fb03e2010-08-29 04:54:06 +0000192void SSAUpdater::RewriteUseAfterInsertions(Use &U) {
193 Instruction *User = cast<Instruction>(U.getUser());
194
195 Value *V;
196 if (PHINode *UserPN = dyn_cast<PHINode>(User))
197 V = GetValueAtEndOfBlock(UserPN->getIncomingBlock(U));
198 else
199 V = GetValueAtEndOfBlock(User->getParent());
200
201 U.set(V);
202}
203
Bob Wilsond1b38e32010-05-04 23:18:19 +0000204namespace llvm {
205template<>
206class SSAUpdaterTraits<SSAUpdater> {
207public:
208 typedef BasicBlock BlkT;
209 typedef Value *ValT;
210 typedef PHINode PhiT;
211
212 typedef succ_iterator BlkSucc_iterator;
213 static BlkSucc_iterator BlkSucc_begin(BlkT *BB) { return succ_begin(BB); }
214 static BlkSucc_iterator BlkSucc_end(BlkT *BB) { return succ_end(BB); }
215
Chandler Carruthc60fbe62012-06-20 08:39:30 +0000216 class PHI_iterator {
217 private:
218 PHINode *PHI;
219 unsigned idx;
220
221 public:
222 explicit PHI_iterator(PHINode *P) // begin iterator
223 : PHI(P), idx(0) {}
224 PHI_iterator(PHINode *P, bool) // end iterator
225 : PHI(P), idx(PHI->getNumIncomingValues()) {}
226
227 PHI_iterator &operator++() { ++idx; return *this; }
228 bool operator==(const PHI_iterator& x) const { return idx == x.idx; }
229 bool operator!=(const PHI_iterator& x) const { return !operator==(x); }
230 Value *getIncomingValue() { return PHI->getIncomingValue(idx); }
231 BasicBlock *getIncomingBlock() { return PHI->getIncomingBlock(idx); }
232 };
233
234 static PHI_iterator PHI_begin(PhiT *PHI) { return PHI_iterator(PHI); }
235 static PHI_iterator PHI_end(PhiT *PHI) {
Bob Wilsond1b38e32010-05-04 23:18:19 +0000236 return PHI_iterator(PHI, true);
237 }
238
239 /// FindPredecessorBlocks - Put the predecessors of Info->BB into the Preds
240 /// vector, set Info->NumPreds, and allocate space in Info->Preds.
241 static void FindPredecessorBlocks(BasicBlock *BB,
242 SmallVectorImpl<BasicBlock*> *Preds) {
243 // We can get our predecessor info by walking the pred_iterator list,
244 // but it is relatively slow. If we already have PHI nodes in this
245 // block, walk one of them to get the predecessor list instead.
246 if (PHINode *SomePhi = dyn_cast<PHINode>(BB->begin())) {
247 for (unsigned PI = 0, E = SomePhi->getNumIncomingValues(); PI != E; ++PI)
248 Preds->push_back(SomePhi->getIncomingBlock(PI));
249 } else {
Manuel Jacobd11beff2014-07-20 09:10:11 +0000250 Preds->insert(Preds->end(), pred_begin(BB), pred_end(BB));
Bob Wilsond1b38e32010-05-04 23:18:19 +0000251 }
252 }
253
254 /// GetUndefVal - Get an undefined value of the same type as the value
255 /// being handled.
256 static Value *GetUndefVal(BasicBlock *BB, SSAUpdater *Updater) {
Duncan Sands67781492010-09-02 08:14:03 +0000257 return UndefValue::get(Updater->ProtoType);
Bob Wilsond1b38e32010-05-04 23:18:19 +0000258 }
259
260 /// CreateEmptyPHI - Create a new PHI instruction in the specified block.
261 /// Reserve space for the operands but do not fill them in yet.
262 static Value *CreateEmptyPHI(BasicBlock *BB, unsigned NumPreds,
263 SSAUpdater *Updater) {
Jay Foad52131342011-03-30 11:28:46 +0000264 PHINode *PHI = PHINode::Create(Updater->ProtoType, NumPreds,
265 Updater->ProtoName, &BB->front());
Bob Wilsond1b38e32010-05-04 23:18:19 +0000266 return PHI;
267 }
268
269 /// AddPHIOperand - Add the specified value as an operand of the PHI for
270 /// the specified predecessor block.
271 static void AddPHIOperand(PHINode *PHI, Value *Val, BasicBlock *Pred) {
272 PHI->addIncoming(Val, Pred);
273 }
274
275 /// InstrIsPHI - Check if an instruction is a PHI.
276 ///
277 static PHINode *InstrIsPHI(Instruction *I) {
278 return dyn_cast<PHINode>(I);
279 }
280
281 /// ValueIsPHI - Check if a value is a PHI.
282 ///
283 static PHINode *ValueIsPHI(Value *Val, SSAUpdater *Updater) {
284 return dyn_cast<PHINode>(Val);
285 }
286
287 /// ValueIsNewPHI - Like ValueIsPHI but also check if the PHI has no source
288 /// operands, i.e., it was just added.
289 static PHINode *ValueIsNewPHI(Value *Val, SSAUpdater *Updater) {
290 PHINode *PHI = ValueIsPHI(Val, Updater);
291 if (PHI && PHI->getNumIncomingValues() == 0)
292 return PHI;
Craig Topperf40110f2014-04-25 05:29:35 +0000293 return nullptr;
Bob Wilsond1b38e32010-05-04 23:18:19 +0000294 }
295
296 /// GetPHIValue - For the specified PHI instruction, return the value
297 /// that it defines.
298 static Value *GetPHIValue(PHINode *PHI) {
299 return PHI;
300 }
301};
302
303} // End llvm namespace
304
Chandler Carruth6b55dbe2013-07-28 22:00:33 +0000305/// Check to see if AvailableVals has an entry for the specified BB and if so,
306/// return it. If not, construct SSA form by first calculating the required
307/// placement of PHIs and then inserting new PHIs where needed.
Chris Lattnere474a8d2009-10-10 22:41:58 +0000308Value *SSAUpdater::GetValueAtEndOfBlockInternal(BasicBlock *BB) {
Chris Lattner60d4e692009-10-10 09:04:27 +0000309 AvailableValsTy &AvailableVals = getAvailableVals(AV);
Bob Wilsonca514252010-04-17 03:08:24 +0000310 if (Value *V = AvailableVals[BB])
311 return V;
Duncan Sands0058c7b2009-10-16 15:20:13 +0000312
Bob Wilsond1b38e32010-05-04 23:18:19 +0000313 SSAUpdaterImpl<SSAUpdater> Impl(this, &AvailableVals, InsertedPHIs);
314 return Impl.GetValue(BB);
Chris Lattner60d4e692009-10-10 09:04:27 +0000315}
Chris Lattner95294b82011-01-14 19:36:13 +0000316
317//===----------------------------------------------------------------------===//
318// LoadAndStorePromoter Implementation
319//===----------------------------------------------------------------------===//
320
Chris Lattnerb68ec5c2011-01-15 00:12:35 +0000321LoadAndStorePromoter::
322LoadAndStorePromoter(const SmallVectorImpl<Instruction*> &Insts,
Devang Patela3cbf522011-07-06 21:09:55 +0000323 SSAUpdater &S, StringRef BaseName) : SSA(S) {
Chris Lattner95294b82011-01-14 19:36:13 +0000324 if (Insts.empty()) return;
325
Chris Lattnerb68ec5c2011-01-15 00:12:35 +0000326 Value *SomeVal;
Chris Lattner95294b82011-01-14 19:36:13 +0000327 if (LoadInst *LI = dyn_cast<LoadInst>(Insts[0]))
Chris Lattnerb68ec5c2011-01-15 00:12:35 +0000328 SomeVal = LI;
Chris Lattner95294b82011-01-14 19:36:13 +0000329 else
Chris Lattnerb68ec5c2011-01-15 00:12:35 +0000330 SomeVal = cast<StoreInst>(Insts[0])->getOperand(0);
331
332 if (BaseName.empty())
333 BaseName = SomeVal->getName();
334 SSA.Initialize(SomeVal->getType(), BaseName);
335}
336
337
338void LoadAndStorePromoter::
339run(const SmallVectorImpl<Instruction*> &Insts) const {
Chris Lattner95294b82011-01-14 19:36:13 +0000340
341 // First step: bucket up uses of the alloca by the block they occur in.
342 // This is important because we have to handle multiple defs/uses in a block
343 // ourselves: SSAUpdater is purely for cross-block references.
Chris Lattner7b70bef2011-07-18 01:43:58 +0000344 DenseMap<BasicBlock*, TinyPtrVector<Instruction*> > UsesByBlock;
Chris Lattner95294b82011-01-14 19:36:13 +0000345
346 for (unsigned i = 0, e = Insts.size(); i != e; ++i) {
347 Instruction *User = Insts[i];
348 UsesByBlock[User->getParent()].push_back(User);
349 }
350
351 // Okay, now we can iterate over all the blocks in the function with uses,
352 // processing them. Keep track of which loads are loading a live-in value.
353 // Walk the uses in the use-list order to be determinstic.
354 SmallVector<LoadInst*, 32> LiveInLoads;
355 DenseMap<Value*, Value*> ReplacedLoads;
356
357 for (unsigned i = 0, e = Insts.size(); i != e; ++i) {
358 Instruction *User = Insts[i];
359 BasicBlock *BB = User->getParent();
Chris Lattner7b70bef2011-07-18 01:43:58 +0000360 TinyPtrVector<Instruction*> &BlockUses = UsesByBlock[BB];
Chris Lattner95294b82011-01-14 19:36:13 +0000361
362 // If this block has already been processed, ignore this repeat use.
363 if (BlockUses.empty()) continue;
364
365 // Okay, this is the first use in the block. If this block just has a
366 // single user in it, we can rewrite it trivially.
367 if (BlockUses.size() == 1) {
368 // If it is a store, it is a trivial def of the value in the block.
Cameron Zwarich843bc7d2011-05-24 03:10:43 +0000369 if (StoreInst *SI = dyn_cast<StoreInst>(User)) {
Devang Patela3cbf522011-07-06 21:09:55 +0000370 updateDebugInfo(SI);
Chris Lattnerb68ec5c2011-01-15 00:12:35 +0000371 SSA.AddAvailableValue(BB, SI->getOperand(0));
Cameron Zwarich843bc7d2011-05-24 03:10:43 +0000372 } else
Chris Lattner95294b82011-01-14 19:36:13 +0000373 // Otherwise it is a load, queue it to rewrite as a live-in load.
374 LiveInLoads.push_back(cast<LoadInst>(User));
375 BlockUses.clear();
376 continue;
377 }
378
379 // Otherwise, check to see if this block is all loads.
380 bool HasStore = false;
381 for (unsigned i = 0, e = BlockUses.size(); i != e; ++i) {
382 if (isa<StoreInst>(BlockUses[i])) {
383 HasStore = true;
384 break;
385 }
386 }
387
388 // If so, we can queue them all as live in loads. We don't have an
389 // efficient way to tell which on is first in the block and don't want to
390 // scan large blocks, so just add all loads as live ins.
391 if (!HasStore) {
392 for (unsigned i = 0, e = BlockUses.size(); i != e; ++i)
393 LiveInLoads.push_back(cast<LoadInst>(BlockUses[i]));
394 BlockUses.clear();
395 continue;
396 }
397
398 // Otherwise, we have mixed loads and stores (or just a bunch of stores).
399 // Since SSAUpdater is purely for cross-block values, we need to determine
400 // the order of these instructions in the block. If the first use in the
401 // block is a load, then it uses the live in value. The last store defines
402 // the live out value. We handle this by doing a linear scan of the block.
Craig Topperf40110f2014-04-25 05:29:35 +0000403 Value *StoredValue = nullptr;
Chris Lattner95294b82011-01-14 19:36:13 +0000404 for (BasicBlock::iterator II = BB->begin(), E = BB->end(); II != E; ++II) {
405 if (LoadInst *L = dyn_cast<LoadInst>(II)) {
406 // If this is a load from an unrelated pointer, ignore it.
407 if (!isInstInList(L, Insts)) continue;
408
409 // If we haven't seen a store yet, this is a live in use, otherwise
410 // use the stored value.
411 if (StoredValue) {
Chris Lattnerb68ec5c2011-01-15 00:12:35 +0000412 replaceLoadWithValue(L, StoredValue);
Chris Lattner95294b82011-01-14 19:36:13 +0000413 L->replaceAllUsesWith(StoredValue);
414 ReplacedLoads[L] = StoredValue;
415 } else {
416 LiveInLoads.push_back(L);
417 }
418 continue;
419 }
420
Cameron Zwarich843bc7d2011-05-24 03:10:43 +0000421 if (StoreInst *SI = dyn_cast<StoreInst>(II)) {
Chris Lattner95294b82011-01-14 19:36:13 +0000422 // If this is a store to an unrelated pointer, ignore it.
Cameron Zwarich843bc7d2011-05-24 03:10:43 +0000423 if (!isInstInList(SI, Insts)) continue;
Devang Patela3cbf522011-07-06 21:09:55 +0000424 updateDebugInfo(SI);
Cameron Zwarich843bc7d2011-05-24 03:10:43 +0000425
Chris Lattner95294b82011-01-14 19:36:13 +0000426 // Remember that this is the active value in the block.
Cameron Zwarich843bc7d2011-05-24 03:10:43 +0000427 StoredValue = SI->getOperand(0);
Chris Lattner95294b82011-01-14 19:36:13 +0000428 }
429 }
430
431 // The last stored value that happened is the live-out for the block.
432 assert(StoredValue && "Already checked that there is a store in block");
Chris Lattnerb68ec5c2011-01-15 00:12:35 +0000433 SSA.AddAvailableValue(BB, StoredValue);
Chris Lattner95294b82011-01-14 19:36:13 +0000434 BlockUses.clear();
435 }
436
437 // Okay, now we rewrite all loads that use live-in values in the loop,
438 // inserting PHI nodes as necessary.
439 for (unsigned i = 0, e = LiveInLoads.size(); i != e; ++i) {
440 LoadInst *ALoad = LiveInLoads[i];
Chris Lattnerb68ec5c2011-01-15 00:12:35 +0000441 Value *NewVal = SSA.GetValueInMiddleOfBlock(ALoad->getParent());
442 replaceLoadWithValue(ALoad, NewVal);
Chris Lattnerb4017762011-01-24 03:29:07 +0000443
444 // Avoid assertions in unreachable code.
445 if (NewVal == ALoad) NewVal = UndefValue::get(NewVal->getType());
Chris Lattner95294b82011-01-14 19:36:13 +0000446 ALoad->replaceAllUsesWith(NewVal);
447 ReplacedLoads[ALoad] = NewVal;
448 }
449
Chris Lattnerb68ec5c2011-01-15 00:12:35 +0000450 // Allow the client to do stuff before we start nuking things.
451 doExtraRewritesBeforeFinalDeletion();
452
Chris Lattner95294b82011-01-14 19:36:13 +0000453 // Now that everything is rewritten, delete the old instructions from the
454 // function. They should all be dead now.
455 for (unsigned i = 0, e = Insts.size(); i != e; ++i) {
456 Instruction *User = Insts[i];
457
458 // If this is a load that still has uses, then the load must have been added
459 // as a live value in the SSAUpdate data structure for a block (e.g. because
460 // the loaded value was stored later). In this case, we need to recursively
461 // propagate the updates until we get to the real value.
462 if (!User->use_empty()) {
463 Value *NewVal = ReplacedLoads[User];
464 assert(NewVal && "not a replaced load?");
465
466 // Propagate down to the ultimate replacee. The intermediately loads
467 // could theoretically already have been deleted, so we don't want to
468 // dereference the Value*'s.
469 DenseMap<Value*, Value*>::iterator RLI = ReplacedLoads.find(NewVal);
470 while (RLI != ReplacedLoads.end()) {
471 NewVal = RLI->second;
472 RLI = ReplacedLoads.find(NewVal);
473 }
474
Chris Lattnerb68ec5c2011-01-15 00:12:35 +0000475 replaceLoadWithValue(cast<LoadInst>(User), NewVal);
Chris Lattner95294b82011-01-14 19:36:13 +0000476 User->replaceAllUsesWith(NewVal);
477 }
478
Chris Lattnerb68ec5c2011-01-15 00:12:35 +0000479 instructionDeleted(User);
Chris Lattner95294b82011-01-14 19:36:13 +0000480 User->eraseFromParent();
481 }
482}
Benjamin Kramerd00e94e2011-11-14 17:22:45 +0000483
484bool
485LoadAndStorePromoter::isInstInList(Instruction *I,
486 const SmallVectorImpl<Instruction*> &Insts)
487 const {
488 return std::find(Insts.begin(), Insts.end(), I) != Insts.end();
489}