blob: 2860c3e511a6c2f582e48ee1a7468fec90b97980 [file] [log] [blame]
Chris Lattner93f3bcf2009-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
Bob Wilson84bd6b02010-04-17 03:08:24 +000014#define DEBUG_TYPE "ssaupdater"
Jay Foad562b84b2011-04-11 09:35:34 +000015#include "llvm/Constants.h"
Chris Lattner93f3bcf2009-10-10 09:04:27 +000016#include "llvm/Instructions.h"
17#include "llvm/ADT/DenseMap.h"
Duncan Sandscdbd9922010-11-16 17:41:24 +000018#include "llvm/Analysis/InstructionSimplify.h"
Bob Wilson84bd6b02010-04-17 03:08:24 +000019#include "llvm/Support/AlignOf.h"
20#include "llvm/Support/Allocator.h"
Chris Lattner93f3bcf2009-10-10 09:04:27 +000021#include "llvm/Support/CFG.h"
22#include "llvm/Support/Debug.h"
Chris Lattner93f3bcf2009-10-10 09:04:27 +000023#include "llvm/Support/raw_ostream.h"
Devang Patel40348e82011-04-29 22:28:59 +000024#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Bob Wilson4aad88d2010-05-04 23:18:19 +000025#include "llvm/Transforms/Utils/SSAUpdater.h"
26#include "llvm/Transforms/Utils/SSAUpdaterImpl.h"
Devang Patel40348e82011-04-29 22:28:59 +000027
Chris Lattner93f3bcf2009-10-10 09:04:27 +000028using namespace llvm;
29
Bob Wilson84bd6b02010-04-17 03:08:24 +000030typedef DenseMap<BasicBlock*, Value*> AvailableValsTy;
Chris Lattner93f3bcf2009-10-10 09:04:27 +000031static AvailableValsTy &getAvailableVals(void *AV) {
32 return *static_cast<AvailableValsTy*>(AV);
33}
34
Chris Lattnerf5a1fb62009-10-10 23:15:24 +000035SSAUpdater::SSAUpdater(SmallVectorImpl<PHINode*> *NewPHI)
Duncan Sandsfc6e29d2010-09-02 08:14:03 +000036 : AV(0), ProtoType(0), ProtoName(), InsertedPHIs(NewPHI) {}
Chris Lattner93f3bcf2009-10-10 09:04:27 +000037
38SSAUpdater::~SSAUpdater() {
39 delete &getAvailableVals(AV);
Chris Lattner93f3bcf2009-10-10 09:04:27 +000040}
41
42/// Initialize - Reset this object to get ready for a new set of SSA
Duncan Sandsfc6e29d2010-09-02 08:14:03 +000043/// updates with type 'Ty'. PHI nodes get a name based on 'Name'.
44void SSAUpdater::Initialize(const Type *Ty, StringRef Name) {
Chris Lattner93f3bcf2009-10-10 09:04:27 +000045 if (AV == 0)
46 AV = new AvailableValsTy();
47 else
48 getAvailableVals(AV).clear();
Duncan Sandsfc6e29d2010-09-02 08:14:03 +000049 ProtoType = Ty;
50 ProtoName = Name;
Chris Lattner93f3bcf2009-10-10 09:04:27 +000051}
52
Chris Lattner0bef5622009-10-10 23:41:48 +000053/// HasValueForBlock - Return true if the SSAUpdater already has a value for
54/// the specified block.
55bool SSAUpdater::HasValueForBlock(BasicBlock *BB) const {
56 return getAvailableVals(AV).count(BB);
57}
58
Chris Lattner93f3bcf2009-10-10 09:04:27 +000059/// AddAvailableValue - Indicate that a rewritten value is available in the
60/// specified block with the specified value.
61void SSAUpdater::AddAvailableValue(BasicBlock *BB, Value *V) {
Duncan Sandsfc6e29d2010-09-02 08:14:03 +000062 assert(ProtoType != 0 && "Need to initialize SSAUpdater");
63 assert(ProtoType == V->getType() &&
Chris Lattner93f3bcf2009-10-10 09:04:27 +000064 "All rewritten values must have the same type");
65 getAvailableVals(AV)[BB] = V;
66}
67
Bob Wilsone98585e2010-01-27 22:01:02 +000068/// IsEquivalentPHI - Check if PHI has the same incoming value as specified
69/// in ValueMapping for each predecessor block.
Bob Wilson84bd6b02010-04-17 03:08:24 +000070static bool IsEquivalentPHI(PHINode *PHI,
Bob Wilsone98585e2010-01-27 22:01:02 +000071 DenseMap<BasicBlock*, Value*> &ValueMapping) {
72 unsigned PHINumValues = PHI->getNumIncomingValues();
73 if (PHINumValues != ValueMapping.size())
74 return false;
75
76 // Scan the phi to see if it matches.
77 for (unsigned i = 0, e = PHINumValues; i != e; ++i)
78 if (ValueMapping[PHI->getIncomingBlock(i)] !=
79 PHI->getIncomingValue(i)) {
80 return false;
81 }
82
83 return true;
84}
85
Chris Lattner1a8d4de2009-10-10 23:00:11 +000086/// GetValueAtEndOfBlock - Construct SSA form, materializing a value that is
87/// live at the end of the specified block.
Chris Lattner5fb10722009-10-10 22:41:58 +000088Value *SSAUpdater::GetValueAtEndOfBlock(BasicBlock *BB) {
Chris Lattner5fb10722009-10-10 22:41:58 +000089 Value *Res = GetValueAtEndOfBlockInternal(BB);
Chris Lattner93f3bcf2009-10-10 09:04:27 +000090 return Res;
91}
92
Chris Lattner1a8d4de2009-10-10 23:00:11 +000093/// GetValueInMiddleOfBlock - Construct SSA form, materializing a value that
94/// is live in the middle of the specified block.
95///
96/// GetValueInMiddleOfBlock is the same as GetValueAtEndOfBlock except in one
97/// important case: if there is a definition of the rewritten value after the
98/// 'use' in BB. Consider code like this:
99///
100/// X1 = ...
101/// SomeBB:
102/// use(X)
103/// X2 = ...
104/// br Cond, SomeBB, OutBB
105///
106/// In this case, there are two values (X1 and X2) added to the AvailableVals
107/// set by the client of the rewriter, and those values are both live out of
108/// their respective blocks. However, the use of X happens in the *middle* of
109/// a block. Because of this, we need to insert a new PHI node in SomeBB to
110/// merge the appropriate values, and this value isn't live out of the block.
111///
112Value *SSAUpdater::GetValueInMiddleOfBlock(BasicBlock *BB) {
113 // If there is no definition of the renamed variable in this block, just use
114 // GetValueAtEndOfBlock to do our work.
Bob Wilson84bd6b02010-04-17 03:08:24 +0000115 if (!HasValueForBlock(BB))
Chris Lattner1a8d4de2009-10-10 23:00:11 +0000116 return GetValueAtEndOfBlock(BB);
Duncan Sandsed903422009-10-16 15:20:13 +0000117
Chris Lattner1a8d4de2009-10-10 23:00:11 +0000118 // Otherwise, we have the hard case. Get the live-in values for each
119 // predecessor.
120 SmallVector<std::pair<BasicBlock*, Value*>, 8> PredValues;
121 Value *SingularValue = 0;
Duncan Sandsed903422009-10-16 15:20:13 +0000122
Chris Lattner1a8d4de2009-10-10 23:00:11 +0000123 // We can get our predecessor info by walking the pred_iterator list, but it
124 // is relatively slow. If we already have PHI nodes in this block, walk one
125 // of them to get the predecessor list instead.
126 if (PHINode *SomePhi = dyn_cast<PHINode>(BB->begin())) {
127 for (unsigned i = 0, e = SomePhi->getNumIncomingValues(); i != e; ++i) {
128 BasicBlock *PredBB = SomePhi->getIncomingBlock(i);
129 Value *PredVal = GetValueAtEndOfBlock(PredBB);
130 PredValues.push_back(std::make_pair(PredBB, PredVal));
Duncan Sandsed903422009-10-16 15:20:13 +0000131
Chris Lattner1a8d4de2009-10-10 23:00:11 +0000132 // Compute SingularValue.
133 if (i == 0)
134 SingularValue = PredVal;
135 else if (PredVal != SingularValue)
136 SingularValue = 0;
137 }
138 } else {
139 bool isFirstPred = true;
140 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) {
141 BasicBlock *PredBB = *PI;
142 Value *PredVal = GetValueAtEndOfBlock(PredBB);
143 PredValues.push_back(std::make_pair(PredBB, PredVal));
Duncan Sandsed903422009-10-16 15:20:13 +0000144
Chris Lattner1a8d4de2009-10-10 23:00:11 +0000145 // Compute SingularValue.
146 if (isFirstPred) {
147 SingularValue = PredVal;
148 isFirstPred = false;
149 } else if (PredVal != SingularValue)
150 SingularValue = 0;
151 }
152 }
Duncan Sandsed903422009-10-16 15:20:13 +0000153
Chris Lattner1a8d4de2009-10-10 23:00:11 +0000154 // If there are no predecessors, just return undef.
155 if (PredValues.empty())
Duncan Sandsfc6e29d2010-09-02 08:14:03 +0000156 return UndefValue::get(ProtoType);
Duncan Sandsed903422009-10-16 15:20:13 +0000157
Chris Lattner1a8d4de2009-10-10 23:00:11 +0000158 // Otherwise, if all the merged values are the same, just use it.
159 if (SingularValue != 0)
160 return SingularValue;
Duncan Sandsed903422009-10-16 15:20:13 +0000161
Bob Wilson84bd6b02010-04-17 03:08:24 +0000162 // Otherwise, we do need a PHI: check to see if we already have one available
163 // in this block that produces the right value.
164 if (isa<PHINode>(BB->begin())) {
165 DenseMap<BasicBlock*, Value*> ValueMapping(PredValues.begin(),
166 PredValues.end());
167 PHINode *SomePHI;
168 for (BasicBlock::iterator It = BB->begin();
169 (SomePHI = dyn_cast<PHINode>(It)); ++It) {
170 if (IsEquivalentPHI(SomePHI, ValueMapping))
171 return SomePHI;
172 }
173 }
Bob Wilsone98585e2010-01-27 22:01:02 +0000174
Chris Lattner4c1e3da2009-12-21 07:16:11 +0000175 // Ok, we have no way out, insert a new one now.
Jay Foad3ecfc862011-03-30 11:28:46 +0000176 PHINode *InsertedPHI = PHINode::Create(ProtoType, PredValues.size(),
177 ProtoName, &BB->front());
Duncan Sandsed903422009-10-16 15:20:13 +0000178
Chris Lattner1a8d4de2009-10-10 23:00:11 +0000179 // Fill in all the predecessors of the PHI.
180 for (unsigned i = 0, e = PredValues.size(); i != e; ++i)
181 InsertedPHI->addIncoming(PredValues[i].second, PredValues[i].first);
Duncan Sandsed903422009-10-16 15:20:13 +0000182
Chris Lattner1a8d4de2009-10-10 23:00:11 +0000183 // See if the PHI node can be merged to a single value. This can happen in
184 // loop cases when we get a PHI of itself and one other value.
Duncan Sandscdbd9922010-11-16 17:41:24 +0000185 if (Value *V = SimplifyInstruction(InsertedPHI)) {
Chris Lattner1a8d4de2009-10-10 23:00:11 +0000186 InsertedPHI->eraseFromParent();
Duncan Sandscdbd9922010-11-16 17:41:24 +0000187 return V;
Chris Lattner1a8d4de2009-10-10 23:00:11 +0000188 }
Chris Lattnerf5a1fb62009-10-10 23:15:24 +0000189
Devang Patel40348e82011-04-29 22:28:59 +0000190 // Set DebugLoc.
191 InsertedPHI->setDebugLoc(GetFirstDebugLocInBasicBlock(BB));
192
Chris Lattnerf5a1fb62009-10-10 23:15:24 +0000193 // If the client wants to know about all new instructions, tell it.
194 if (InsertedPHIs) InsertedPHIs->push_back(InsertedPHI);
Duncan Sandsed903422009-10-16 15:20:13 +0000195
David Greene1af40ca2010-01-05 01:26:49 +0000196 DEBUG(dbgs() << " Inserted PHI: " << *InsertedPHI << "\n");
Chris Lattner1a8d4de2009-10-10 23:00:11 +0000197 return InsertedPHI;
198}
199
Chris Lattner93f3bcf2009-10-10 09:04:27 +0000200/// RewriteUse - Rewrite a use of the symbolic value. This handles PHI nodes,
201/// which use their value in the corresponding predecessor.
202void SSAUpdater::RewriteUse(Use &U) {
203 Instruction *User = cast<Instruction>(U.getUser());
Bob Wilson84bd6b02010-04-17 03:08:24 +0000204
Chris Lattner88a86242009-10-20 20:27:49 +0000205 Value *V;
206 if (PHINode *UserPN = dyn_cast<PHINode>(User))
207 V = GetValueAtEndOfBlock(UserPN->getIncomingBlock(U));
208 else
209 V = GetValueInMiddleOfBlock(User->getParent());
Duncan Sandsed903422009-10-16 15:20:13 +0000210
Torok Edwinf9933272009-10-20 15:42:00 +0000211 U.set(V);
Chris Lattner93f3bcf2009-10-10 09:04:27 +0000212}
213
Chris Lattnerffd9bee2010-08-29 04:54:06 +0000214/// RewriteUseAfterInsertions - Rewrite a use, just like RewriteUse. However,
215/// this version of the method can rewrite uses in the same block as a
216/// definition, because it assumes that all uses of a value are below any
217/// inserted values.
218void SSAUpdater::RewriteUseAfterInsertions(Use &U) {
219 Instruction *User = cast<Instruction>(U.getUser());
220
221 Value *V;
222 if (PHINode *UserPN = dyn_cast<PHINode>(User))
223 V = GetValueAtEndOfBlock(UserPN->getIncomingBlock(U));
224 else
225 V = GetValueAtEndOfBlock(User->getParent());
226
227 U.set(V);
228}
229
Bob Wilson4aad88d2010-05-04 23:18:19 +0000230/// PHIiter - Iterator for PHI operands. This is used for the PHI_iterator
231/// in the SSAUpdaterImpl template.
232namespace {
233 class PHIiter {
234 private:
235 PHINode *PHI;
236 unsigned idx;
237
238 public:
239 explicit PHIiter(PHINode *P) // begin iterator
240 : PHI(P), idx(0) {}
241 PHIiter(PHINode *P, bool) // end iterator
242 : PHI(P), idx(PHI->getNumIncomingValues()) {}
243
244 PHIiter &operator++() { ++idx; return *this; }
245 bool operator==(const PHIiter& x) const { return idx == x.idx; }
246 bool operator!=(const PHIiter& x) const { return !operator==(x); }
247 Value *getIncomingValue() { return PHI->getIncomingValue(idx); }
248 BasicBlock *getIncomingBlock() { return PHI->getIncomingBlock(idx); }
249 };
250}
251
252/// SSAUpdaterTraits<SSAUpdater> - Traits for the SSAUpdaterImpl template,
253/// specialized for SSAUpdater.
254namespace llvm {
255template<>
256class SSAUpdaterTraits<SSAUpdater> {
257public:
258 typedef BasicBlock BlkT;
259 typedef Value *ValT;
260 typedef PHINode PhiT;
261
262 typedef succ_iterator BlkSucc_iterator;
263 static BlkSucc_iterator BlkSucc_begin(BlkT *BB) { return succ_begin(BB); }
264 static BlkSucc_iterator BlkSucc_end(BlkT *BB) { return succ_end(BB); }
265
266 typedef PHIiter PHI_iterator;
267 static inline PHI_iterator PHI_begin(PhiT *PHI) { return PHI_iterator(PHI); }
268 static inline PHI_iterator PHI_end(PhiT *PHI) {
269 return PHI_iterator(PHI, true);
270 }
271
272 /// FindPredecessorBlocks - Put the predecessors of Info->BB into the Preds
273 /// vector, set Info->NumPreds, and allocate space in Info->Preds.
274 static void FindPredecessorBlocks(BasicBlock *BB,
275 SmallVectorImpl<BasicBlock*> *Preds) {
276 // We can get our predecessor info by walking the pred_iterator list,
277 // but it is relatively slow. If we already have PHI nodes in this
278 // block, walk one of them to get the predecessor list instead.
279 if (PHINode *SomePhi = dyn_cast<PHINode>(BB->begin())) {
280 for (unsigned PI = 0, E = SomePhi->getNumIncomingValues(); PI != E; ++PI)
281 Preds->push_back(SomePhi->getIncomingBlock(PI));
282 } else {
283 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI)
284 Preds->push_back(*PI);
285 }
286 }
287
288 /// GetUndefVal - Get an undefined value of the same type as the value
289 /// being handled.
290 static Value *GetUndefVal(BasicBlock *BB, SSAUpdater *Updater) {
Duncan Sandsfc6e29d2010-09-02 08:14:03 +0000291 return UndefValue::get(Updater->ProtoType);
Bob Wilson4aad88d2010-05-04 23:18:19 +0000292 }
293
294 /// CreateEmptyPHI - Create a new PHI instruction in the specified block.
295 /// Reserve space for the operands but do not fill them in yet.
296 static Value *CreateEmptyPHI(BasicBlock *BB, unsigned NumPreds,
297 SSAUpdater *Updater) {
Jay Foad3ecfc862011-03-30 11:28:46 +0000298 PHINode *PHI = PHINode::Create(Updater->ProtoType, NumPreds,
299 Updater->ProtoName, &BB->front());
Bob Wilson4aad88d2010-05-04 23:18:19 +0000300 return PHI;
301 }
302
303 /// AddPHIOperand - Add the specified value as an operand of the PHI for
304 /// the specified predecessor block.
305 static void AddPHIOperand(PHINode *PHI, Value *Val, BasicBlock *Pred) {
306 PHI->addIncoming(Val, Pred);
307 }
308
309 /// InstrIsPHI - Check if an instruction is a PHI.
310 ///
311 static PHINode *InstrIsPHI(Instruction *I) {
312 return dyn_cast<PHINode>(I);
313 }
314
315 /// ValueIsPHI - Check if a value is a PHI.
316 ///
317 static PHINode *ValueIsPHI(Value *Val, SSAUpdater *Updater) {
318 return dyn_cast<PHINode>(Val);
319 }
320
321 /// ValueIsNewPHI - Like ValueIsPHI but also check if the PHI has no source
322 /// operands, i.e., it was just added.
323 static PHINode *ValueIsNewPHI(Value *Val, SSAUpdater *Updater) {
324 PHINode *PHI = ValueIsPHI(Val, Updater);
325 if (PHI && PHI->getNumIncomingValues() == 0)
326 return PHI;
327 return 0;
328 }
329
330 /// GetPHIValue - For the specified PHI instruction, return the value
331 /// that it defines.
332 static Value *GetPHIValue(PHINode *PHI) {
333 return PHI;
334 }
335};
336
337} // End llvm namespace
338
Chris Lattner5fb10722009-10-10 22:41:58 +0000339/// GetValueAtEndOfBlockInternal - Check to see if AvailableVals has an entry
340/// for the specified BB and if so, return it. If not, construct SSA form by
Bob Wilson84bd6b02010-04-17 03:08:24 +0000341/// first calculating the required placement of PHIs and then inserting new
342/// PHIs where needed.
Chris Lattner5fb10722009-10-10 22:41:58 +0000343Value *SSAUpdater::GetValueAtEndOfBlockInternal(BasicBlock *BB) {
Chris Lattner93f3bcf2009-10-10 09:04:27 +0000344 AvailableValsTy &AvailableVals = getAvailableVals(AV);
Bob Wilson84bd6b02010-04-17 03:08:24 +0000345 if (Value *V = AvailableVals[BB])
346 return V;
Duncan Sandsed903422009-10-16 15:20:13 +0000347
Bob Wilson4aad88d2010-05-04 23:18:19 +0000348 SSAUpdaterImpl<SSAUpdater> Impl(this, &AvailableVals, InsertedPHIs);
349 return Impl.GetValue(BB);
Chris Lattner93f3bcf2009-10-10 09:04:27 +0000350}
Chris Lattnera2d845a2011-01-14 19:36:13 +0000351
352//===----------------------------------------------------------------------===//
353// LoadAndStorePromoter Implementation
354//===----------------------------------------------------------------------===//
355
Chris Lattnerdeaf55f2011-01-15 00:12:35 +0000356LoadAndStorePromoter::
357LoadAndStorePromoter(const SmallVectorImpl<Instruction*> &Insts,
358 SSAUpdater &S, StringRef BaseName) : SSA(S) {
Chris Lattnera2d845a2011-01-14 19:36:13 +0000359 if (Insts.empty()) return;
360
Chris Lattnerdeaf55f2011-01-15 00:12:35 +0000361 Value *SomeVal;
Chris Lattnera2d845a2011-01-14 19:36:13 +0000362 if (LoadInst *LI = dyn_cast<LoadInst>(Insts[0]))
Chris Lattnerdeaf55f2011-01-15 00:12:35 +0000363 SomeVal = LI;
Chris Lattnera2d845a2011-01-14 19:36:13 +0000364 else
Chris Lattnerdeaf55f2011-01-15 00:12:35 +0000365 SomeVal = cast<StoreInst>(Insts[0])->getOperand(0);
366
367 if (BaseName.empty())
368 BaseName = SomeVal->getName();
369 SSA.Initialize(SomeVal->getType(), BaseName);
370}
371
372
373void LoadAndStorePromoter::
374run(const SmallVectorImpl<Instruction*> &Insts) const {
Chris Lattnera2d845a2011-01-14 19:36:13 +0000375
376 // First step: bucket up uses of the alloca by the block they occur in.
377 // This is important because we have to handle multiple defs/uses in a block
378 // ourselves: SSAUpdater is purely for cross-block references.
379 // FIXME: Want a TinyVector<Instruction*> since there is often 0/1 element.
380 DenseMap<BasicBlock*, std::vector<Instruction*> > UsesByBlock;
381
382 for (unsigned i = 0, e = Insts.size(); i != e; ++i) {
383 Instruction *User = Insts[i];
384 UsesByBlock[User->getParent()].push_back(User);
385 }
386
387 // Okay, now we can iterate over all the blocks in the function with uses,
388 // processing them. Keep track of which loads are loading a live-in value.
389 // Walk the uses in the use-list order to be determinstic.
390 SmallVector<LoadInst*, 32> LiveInLoads;
391 DenseMap<Value*, Value*> ReplacedLoads;
392
393 for (unsigned i = 0, e = Insts.size(); i != e; ++i) {
394 Instruction *User = Insts[i];
395 BasicBlock *BB = User->getParent();
396 std::vector<Instruction*> &BlockUses = UsesByBlock[BB];
397
398 // If this block has already been processed, ignore this repeat use.
399 if (BlockUses.empty()) continue;
400
401 // Okay, this is the first use in the block. If this block just has a
402 // single user in it, we can rewrite it trivially.
403 if (BlockUses.size() == 1) {
404 // If it is a store, it is a trivial def of the value in the block.
405 if (StoreInst *SI = dyn_cast<StoreInst>(User))
Chris Lattnerdeaf55f2011-01-15 00:12:35 +0000406 SSA.AddAvailableValue(BB, SI->getOperand(0));
Chris Lattnera2d845a2011-01-14 19:36:13 +0000407 else
408 // Otherwise it is a load, queue it to rewrite as a live-in load.
409 LiveInLoads.push_back(cast<LoadInst>(User));
410 BlockUses.clear();
411 continue;
412 }
413
414 // Otherwise, check to see if this block is all loads.
415 bool HasStore = false;
416 for (unsigned i = 0, e = BlockUses.size(); i != e; ++i) {
417 if (isa<StoreInst>(BlockUses[i])) {
418 HasStore = true;
419 break;
420 }
421 }
422
423 // If so, we can queue them all as live in loads. We don't have an
424 // efficient way to tell which on is first in the block and don't want to
425 // scan large blocks, so just add all loads as live ins.
426 if (!HasStore) {
427 for (unsigned i = 0, e = BlockUses.size(); i != e; ++i)
428 LiveInLoads.push_back(cast<LoadInst>(BlockUses[i]));
429 BlockUses.clear();
430 continue;
431 }
432
433 // Otherwise, we have mixed loads and stores (or just a bunch of stores).
434 // Since SSAUpdater is purely for cross-block values, we need to determine
435 // the order of these instructions in the block. If the first use in the
436 // block is a load, then it uses the live in value. The last store defines
437 // the live out value. We handle this by doing a linear scan of the block.
438 Value *StoredValue = 0;
439 for (BasicBlock::iterator II = BB->begin(), E = BB->end(); II != E; ++II) {
440 if (LoadInst *L = dyn_cast<LoadInst>(II)) {
441 // If this is a load from an unrelated pointer, ignore it.
442 if (!isInstInList(L, Insts)) continue;
443
444 // If we haven't seen a store yet, this is a live in use, otherwise
445 // use the stored value.
446 if (StoredValue) {
Chris Lattnerdeaf55f2011-01-15 00:12:35 +0000447 replaceLoadWithValue(L, StoredValue);
Chris Lattnera2d845a2011-01-14 19:36:13 +0000448 L->replaceAllUsesWith(StoredValue);
449 ReplacedLoads[L] = StoredValue;
450 } else {
451 LiveInLoads.push_back(L);
452 }
453 continue;
454 }
455
456 if (StoreInst *S = dyn_cast<StoreInst>(II)) {
457 // If this is a store to an unrelated pointer, ignore it.
458 if (!isInstInList(S, Insts)) continue;
459
460 // Remember that this is the active value in the block.
461 StoredValue = S->getOperand(0);
462 }
463 }
464
465 // The last stored value that happened is the live-out for the block.
466 assert(StoredValue && "Already checked that there is a store in block");
Chris Lattnerdeaf55f2011-01-15 00:12:35 +0000467 SSA.AddAvailableValue(BB, StoredValue);
Chris Lattnera2d845a2011-01-14 19:36:13 +0000468 BlockUses.clear();
469 }
470
471 // Okay, now we rewrite all loads that use live-in values in the loop,
472 // inserting PHI nodes as necessary.
473 for (unsigned i = 0, e = LiveInLoads.size(); i != e; ++i) {
474 LoadInst *ALoad = LiveInLoads[i];
Chris Lattnerdeaf55f2011-01-15 00:12:35 +0000475 Value *NewVal = SSA.GetValueInMiddleOfBlock(ALoad->getParent());
476 replaceLoadWithValue(ALoad, NewVal);
Chris Lattner867be592011-01-24 03:29:07 +0000477
478 // Avoid assertions in unreachable code.
479 if (NewVal == ALoad) NewVal = UndefValue::get(NewVal->getType());
Chris Lattnera2d845a2011-01-14 19:36:13 +0000480 ALoad->replaceAllUsesWith(NewVal);
481 ReplacedLoads[ALoad] = NewVal;
482 }
483
Chris Lattnerdeaf55f2011-01-15 00:12:35 +0000484 // Allow the client to do stuff before we start nuking things.
485 doExtraRewritesBeforeFinalDeletion();
486
Chris Lattnera2d845a2011-01-14 19:36:13 +0000487 // Now that everything is rewritten, delete the old instructions from the
488 // function. They should all be dead now.
489 for (unsigned i = 0, e = Insts.size(); i != e; ++i) {
490 Instruction *User = Insts[i];
491
492 // If this is a load that still has uses, then the load must have been added
493 // as a live value in the SSAUpdate data structure for a block (e.g. because
494 // the loaded value was stored later). In this case, we need to recursively
495 // propagate the updates until we get to the real value.
496 if (!User->use_empty()) {
497 Value *NewVal = ReplacedLoads[User];
498 assert(NewVal && "not a replaced load?");
499
500 // Propagate down to the ultimate replacee. The intermediately loads
501 // could theoretically already have been deleted, so we don't want to
502 // dereference the Value*'s.
503 DenseMap<Value*, Value*>::iterator RLI = ReplacedLoads.find(NewVal);
504 while (RLI != ReplacedLoads.end()) {
505 NewVal = RLI->second;
506 RLI = ReplacedLoads.find(NewVal);
507 }
508
Chris Lattnerdeaf55f2011-01-15 00:12:35 +0000509 replaceLoadWithValue(cast<LoadInst>(User), NewVal);
Chris Lattnera2d845a2011-01-14 19:36:13 +0000510 User->replaceAllUsesWith(NewVal);
511 }
512
Chris Lattnerdeaf55f2011-01-15 00:12:35 +0000513 instructionDeleted(User);
Chris Lattnera2d845a2011-01-14 19:36:13 +0000514 User->eraseFromParent();
515 }
516}