blob: 161bf217852cae3fc6f76a36eb78693f6bc3828e [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
14#include "llvm/Transforms/Utils/SSAUpdater.h"
15#include "llvm/Instructions.h"
16#include "llvm/ADT/DenseMap.h"
17#include "llvm/Support/CFG.h"
18#include "llvm/Support/Debug.h"
19#include "llvm/Support/ValueHandle.h"
20#include "llvm/Support/raw_ostream.h"
21using namespace llvm;
22
23typedef DenseMap<BasicBlock*, TrackingVH<Value> > AvailableValsTy;
24typedef std::vector<std::pair<BasicBlock*, TrackingVH<Value> > >
25 IncomingPredInfoTy;
26
27static AvailableValsTy &getAvailableVals(void *AV) {
28 return *static_cast<AvailableValsTy*>(AV);
29}
30
31static IncomingPredInfoTy &getIncomingPredInfo(void *IPI) {
32 return *static_cast<IncomingPredInfoTy*>(IPI);
33}
34
35
Chris Lattnerf5a1fb62009-10-10 23:15:24 +000036SSAUpdater::SSAUpdater(SmallVectorImpl<PHINode*> *NewPHI)
37 : AV(0), PrototypeValue(0), IPI(0), InsertedPHIs(NewPHI) {}
Chris Lattner93f3bcf2009-10-10 09:04:27 +000038
39SSAUpdater::~SSAUpdater() {
40 delete &getAvailableVals(AV);
41 delete &getIncomingPredInfo(IPI);
42}
43
44/// Initialize - Reset this object to get ready for a new set of SSA
45/// updates. ProtoValue is the value used to name PHI nodes.
46void SSAUpdater::Initialize(Value *ProtoValue) {
47 if (AV == 0)
48 AV = new AvailableValsTy();
49 else
50 getAvailableVals(AV).clear();
Duncan Sandsed903422009-10-16 15:20:13 +000051
Chris Lattner93f3bcf2009-10-10 09:04:27 +000052 if (IPI == 0)
53 IPI = new IncomingPredInfoTy();
54 else
55 getIncomingPredInfo(IPI).clear();
56 PrototypeValue = ProtoValue;
57}
58
Chris Lattner0bef5622009-10-10 23:41:48 +000059/// HasValueForBlock - Return true if the SSAUpdater already has a value for
60/// the specified block.
61bool SSAUpdater::HasValueForBlock(BasicBlock *BB) const {
62 return getAvailableVals(AV).count(BB);
63}
64
Chris Lattner93f3bcf2009-10-10 09:04:27 +000065/// AddAvailableValue - Indicate that a rewritten value is available in the
66/// specified block with the specified value.
67void SSAUpdater::AddAvailableValue(BasicBlock *BB, Value *V) {
68 assert(PrototypeValue != 0 && "Need to initialize SSAUpdater");
69 assert(PrototypeValue->getType() == V->getType() &&
70 "All rewritten values must have the same type");
71 getAvailableVals(AV)[BB] = V;
72}
73
Chris Lattner1a8d4de2009-10-10 23:00:11 +000074/// GetValueAtEndOfBlock - Construct SSA form, materializing a value that is
75/// live at the end of the specified block.
Chris Lattner5fb10722009-10-10 22:41:58 +000076Value *SSAUpdater::GetValueAtEndOfBlock(BasicBlock *BB) {
Chris Lattner93f3bcf2009-10-10 09:04:27 +000077 assert(getIncomingPredInfo(IPI).empty() && "Unexpected Internal State");
Chris Lattner5fb10722009-10-10 22:41:58 +000078 Value *Res = GetValueAtEndOfBlockInternal(BB);
Chris Lattner93f3bcf2009-10-10 09:04:27 +000079 assert(getIncomingPredInfo(IPI).empty() && "Unexpected Internal State");
80 return Res;
81}
82
Chris Lattner1a8d4de2009-10-10 23:00:11 +000083/// GetValueInMiddleOfBlock - Construct SSA form, materializing a value that
84/// is live in the middle of the specified block.
85///
86/// GetValueInMiddleOfBlock is the same as GetValueAtEndOfBlock except in one
87/// important case: if there is a definition of the rewritten value after the
88/// 'use' in BB. Consider code like this:
89///
90/// X1 = ...
91/// SomeBB:
92/// use(X)
93/// X2 = ...
94/// br Cond, SomeBB, OutBB
95///
96/// In this case, there are two values (X1 and X2) added to the AvailableVals
97/// set by the client of the rewriter, and those values are both live out of
98/// their respective blocks. However, the use of X happens in the *middle* of
99/// a block. Because of this, we need to insert a new PHI node in SomeBB to
100/// merge the appropriate values, and this value isn't live out of the block.
101///
102Value *SSAUpdater::GetValueInMiddleOfBlock(BasicBlock *BB) {
103 // If there is no definition of the renamed variable in this block, just use
104 // GetValueAtEndOfBlock to do our work.
105 if (!getAvailableVals(AV).count(BB))
106 return GetValueAtEndOfBlock(BB);
Duncan Sandsed903422009-10-16 15:20:13 +0000107
Chris Lattner1a8d4de2009-10-10 23:00:11 +0000108 // Otherwise, we have the hard case. Get the live-in values for each
109 // predecessor.
110 SmallVector<std::pair<BasicBlock*, Value*>, 8> PredValues;
111 Value *SingularValue = 0;
Duncan Sandsed903422009-10-16 15:20:13 +0000112
Chris Lattner1a8d4de2009-10-10 23:00:11 +0000113 // We can get our predecessor info by walking the pred_iterator list, but it
114 // is relatively slow. If we already have PHI nodes in this block, walk one
115 // of them to get the predecessor list instead.
116 if (PHINode *SomePhi = dyn_cast<PHINode>(BB->begin())) {
117 for (unsigned i = 0, e = SomePhi->getNumIncomingValues(); i != e; ++i) {
118 BasicBlock *PredBB = SomePhi->getIncomingBlock(i);
119 Value *PredVal = GetValueAtEndOfBlock(PredBB);
120 PredValues.push_back(std::make_pair(PredBB, PredVal));
Duncan Sandsed903422009-10-16 15:20:13 +0000121
Chris Lattner1a8d4de2009-10-10 23:00:11 +0000122 // Compute SingularValue.
123 if (i == 0)
124 SingularValue = PredVal;
125 else if (PredVal != SingularValue)
126 SingularValue = 0;
127 }
128 } else {
129 bool isFirstPred = true;
130 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) {
131 BasicBlock *PredBB = *PI;
132 Value *PredVal = GetValueAtEndOfBlock(PredBB);
133 PredValues.push_back(std::make_pair(PredBB, PredVal));
Duncan Sandsed903422009-10-16 15:20:13 +0000134
Chris Lattner1a8d4de2009-10-10 23:00:11 +0000135 // Compute SingularValue.
136 if (isFirstPred) {
137 SingularValue = PredVal;
138 isFirstPred = false;
139 } else if (PredVal != SingularValue)
140 SingularValue = 0;
141 }
142 }
Duncan Sandsed903422009-10-16 15:20:13 +0000143
Chris Lattner1a8d4de2009-10-10 23:00:11 +0000144 // If there are no predecessors, just return undef.
145 if (PredValues.empty())
146 return UndefValue::get(PrototypeValue->getType());
Duncan Sandsed903422009-10-16 15:20:13 +0000147
Chris Lattner1a8d4de2009-10-10 23:00:11 +0000148 // Otherwise, if all the merged values are the same, just use it.
149 if (SingularValue != 0)
150 return SingularValue;
Duncan Sandsed903422009-10-16 15:20:13 +0000151
Chris Lattner4c1e3da2009-12-21 07:16:11 +0000152 // Otherwise, we do need a PHI: check to see if we already have one available
153 // in this block that produces the right value.
154 if (isa<PHINode>(BB->begin())) {
155 DenseMap<BasicBlock*, Value*> ValueMapping(PredValues.begin(),
156 PredValues.end());
157 PHINode *SomePHI;
158 for (BasicBlock::iterator It = BB->begin();
159 (SomePHI = dyn_cast<PHINode>(It)); ++It) {
160 // Scan this phi to see if it is what we need.
161 bool Equal = true;
162 for (unsigned i = 0, e = SomePHI->getNumIncomingValues(); i != e; ++i)
163 if (ValueMapping[SomePHI->getIncomingBlock(i)] !=
164 SomePHI->getIncomingValue(i)) {
165 Equal = false;
166 break;
167 }
168
169 if (Equal)
170 return SomePHI;
171 }
172 }
173
174 // Ok, we have no way out, insert a new one now.
Chris Lattner1a8d4de2009-10-10 23:00:11 +0000175 PHINode *InsertedPHI = PHINode::Create(PrototypeValue->getType(),
176 PrototypeValue->getName(),
177 &BB->front());
178 InsertedPHI->reserveOperandSpace(PredValues.size());
Duncan Sandsed903422009-10-16 15:20:13 +0000179
Chris Lattner1a8d4de2009-10-10 23:00:11 +0000180 // Fill in all the predecessors of the PHI.
181 for (unsigned i = 0, e = PredValues.size(); i != e; ++i)
182 InsertedPHI->addIncoming(PredValues[i].second, PredValues[i].first);
Duncan Sandsed903422009-10-16 15:20:13 +0000183
Chris Lattner1a8d4de2009-10-10 23:00:11 +0000184 // See if the PHI node can be merged to a single value. This can happen in
185 // loop cases when we get a PHI of itself and one other value.
186 if (Value *ConstVal = InsertedPHI->hasConstantValue()) {
187 InsertedPHI->eraseFromParent();
188 return ConstVal;
189 }
Chris Lattnerf5a1fb62009-10-10 23:15:24 +0000190
191 // If the client wants to know about all new instructions, tell it.
192 if (InsertedPHIs) InsertedPHIs->push_back(InsertedPHI);
Duncan Sandsed903422009-10-16 15:20:13 +0000193
David Greene1af40ca2010-01-05 01:26:49 +0000194 DEBUG(dbgs() << " Inserted PHI: " << *InsertedPHI << "\n");
Chris Lattner1a8d4de2009-10-10 23:00:11 +0000195 return InsertedPHI;
196}
197
Chris Lattner93f3bcf2009-10-10 09:04:27 +0000198/// RewriteUse - Rewrite a use of the symbolic value. This handles PHI nodes,
199/// which use their value in the corresponding predecessor.
200void SSAUpdater::RewriteUse(Use &U) {
201 Instruction *User = cast<Instruction>(U.getUser());
Chris Lattner88a86242009-10-20 20:27:49 +0000202
203 Value *V;
204 if (PHINode *UserPN = dyn_cast<PHINode>(User))
205 V = GetValueAtEndOfBlock(UserPN->getIncomingBlock(U));
206 else
207 V = GetValueInMiddleOfBlock(User->getParent());
Duncan Sandsed903422009-10-16 15:20:13 +0000208
Torok Edwinf9933272009-10-20 15:42:00 +0000209 U.set(V);
Chris Lattner93f3bcf2009-10-10 09:04:27 +0000210}
211
212
Chris Lattner5fb10722009-10-10 22:41:58 +0000213/// GetValueAtEndOfBlockInternal - Check to see if AvailableVals has an entry
214/// for the specified BB and if so, return it. If not, construct SSA form by
215/// walking predecessors inserting PHI nodes as needed until we get to a block
216/// where the value is available.
Chris Lattner93f3bcf2009-10-10 09:04:27 +0000217///
Chris Lattner5fb10722009-10-10 22:41:58 +0000218Value *SSAUpdater::GetValueAtEndOfBlockInternal(BasicBlock *BB) {
Chris Lattner93f3bcf2009-10-10 09:04:27 +0000219 AvailableValsTy &AvailableVals = getAvailableVals(AV);
Duncan Sandsed903422009-10-16 15:20:13 +0000220
Chris Lattner93f3bcf2009-10-10 09:04:27 +0000221 // Query AvailableVals by doing an insertion of null.
222 std::pair<AvailableValsTy::iterator, bool> InsertRes =
Chris Lattner25bceea2009-12-21 22:43:03 +0000223 AvailableVals.insert(std::make_pair(BB, TrackingVH<Value>()));
Duncan Sandsed903422009-10-16 15:20:13 +0000224
Chris Lattner93f3bcf2009-10-10 09:04:27 +0000225 // Handle the case when the insertion fails because we have already seen BB.
226 if (!InsertRes.second) {
227 // If the insertion failed, there are two cases. The first case is that the
228 // value is already available for the specified block. If we get this, just
229 // return the value.
230 if (InsertRes.first->second != 0)
231 return InsertRes.first->second;
Duncan Sandsed903422009-10-16 15:20:13 +0000232
Chris Lattner93f3bcf2009-10-10 09:04:27 +0000233 // Otherwise, if the value we find is null, then this is the value is not
234 // known but it is being computed elsewhere in our recursion. This means
235 // that we have a cycle. Handle this by inserting a PHI node and returning
236 // it. When we get back to the first instance of the recursion we will fill
237 // in the PHI node.
238 return InsertRes.first->second =
Chris Lattner25bceea2009-12-21 22:43:03 +0000239 PHINode::Create(PrototypeValue->getType(), PrototypeValue->getName(),
240 &BB->front());
Chris Lattner93f3bcf2009-10-10 09:04:27 +0000241 }
Duncan Sandsed903422009-10-16 15:20:13 +0000242
Chris Lattner93f3bcf2009-10-10 09:04:27 +0000243 // Okay, the value isn't in the map and we just inserted a null in the entry
244 // to indicate that we're processing the block. Since we have no idea what
245 // value is in this block, we have to recurse through our predecessors.
246 //
247 // While we're walking our predecessors, we keep track of them in a vector,
248 // then insert a PHI node in the end if we actually need one. We could use a
249 // smallvector here, but that would take a lot of stack space for every level
250 // of the recursion, just use IncomingPredInfo as an explicit stack.
251 IncomingPredInfoTy &IncomingPredInfo = getIncomingPredInfo(IPI);
252 unsigned FirstPredInfoEntry = IncomingPredInfo.size();
Duncan Sandsed903422009-10-16 15:20:13 +0000253
Chris Lattner93f3bcf2009-10-10 09:04:27 +0000254 // As we're walking the predecessors, keep track of whether they are all
255 // producing the same value. If so, this value will capture it, if not, it
256 // will get reset to null. We distinguish the no-predecessor case explicitly
257 // below.
258 TrackingVH<Value> SingularValue;
Duncan Sandsed903422009-10-16 15:20:13 +0000259
Chris Lattner93f3bcf2009-10-10 09:04:27 +0000260 // We can get our predecessor info by walking the pred_iterator list, but it
261 // is relatively slow. If we already have PHI nodes in this block, walk one
262 // of them to get the predecessor list instead.
263 if (PHINode *SomePhi = dyn_cast<PHINode>(BB->begin())) {
264 for (unsigned i = 0, e = SomePhi->getNumIncomingValues(); i != e; ++i) {
265 BasicBlock *PredBB = SomePhi->getIncomingBlock(i);
Chris Lattner5fb10722009-10-10 22:41:58 +0000266 Value *PredVal = GetValueAtEndOfBlockInternal(PredBB);
Chris Lattner93f3bcf2009-10-10 09:04:27 +0000267 IncomingPredInfo.push_back(std::make_pair(PredBB, PredVal));
Duncan Sandsed903422009-10-16 15:20:13 +0000268
Chris Lattner93f3bcf2009-10-10 09:04:27 +0000269 // Compute SingularValue.
270 if (i == 0)
271 SingularValue = PredVal;
272 else if (PredVal != SingularValue)
273 SingularValue = 0;
274 }
275 } else {
276 bool isFirstPred = true;
277 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) {
278 BasicBlock *PredBB = *PI;
Chris Lattner5fb10722009-10-10 22:41:58 +0000279 Value *PredVal = GetValueAtEndOfBlockInternal(PredBB);
Chris Lattner93f3bcf2009-10-10 09:04:27 +0000280 IncomingPredInfo.push_back(std::make_pair(PredBB, PredVal));
Duncan Sandsed903422009-10-16 15:20:13 +0000281
Chris Lattner93f3bcf2009-10-10 09:04:27 +0000282 // Compute SingularValue.
283 if (isFirstPred) {
284 SingularValue = PredVal;
285 isFirstPred = false;
286 } else if (PredVal != SingularValue)
287 SingularValue = 0;
288 }
289 }
Duncan Sandsed903422009-10-16 15:20:13 +0000290
Chris Lattner93f3bcf2009-10-10 09:04:27 +0000291 // If there are no predecessors, then we must have found an unreachable block
292 // just return 'undef'. Since there are no predecessors, InsertRes must not
293 // be invalidated.
294 if (IncomingPredInfo.size() == FirstPredInfoEntry)
295 return InsertRes.first->second = UndefValue::get(PrototypeValue->getType());
Duncan Sandsed903422009-10-16 15:20:13 +0000296
Chris Lattner93f3bcf2009-10-10 09:04:27 +0000297 /// Look up BB's entry in AvailableVals. 'InsertRes' may be invalidated. If
298 /// this block is involved in a loop, a no-entry PHI node will have been
299 /// inserted as InsertedVal. Otherwise, we'll still have the null we inserted
300 /// above.
301 TrackingVH<Value> &InsertedVal = AvailableVals[BB];
Duncan Sandsed903422009-10-16 15:20:13 +0000302
Chris Lattner93f3bcf2009-10-10 09:04:27 +0000303 // If all the predecessor values are the same then we don't need to insert a
304 // PHI. This is the simple and common case.
305 if (SingularValue) {
306 // If a PHI node got inserted, replace it with the singlar value and delete
307 // it.
308 if (InsertedVal) {
309 PHINode *OldVal = cast<PHINode>(InsertedVal);
310 // Be careful about dead loops. These RAUW's also update InsertedVal.
311 if (InsertedVal != SingularValue)
312 OldVal->replaceAllUsesWith(SingularValue);
313 else
314 OldVal->replaceAllUsesWith(UndefValue::get(InsertedVal->getType()));
315 OldVal->eraseFromParent();
316 } else {
317 InsertedVal = SingularValue;
318 }
Duncan Sandsed903422009-10-16 15:20:13 +0000319
Chris Lattner45305d42009-12-04 01:03:32 +0000320 // Either path through the 'if' should have set insertedVal -> SingularVal.
321 assert((InsertedVal == SingularValue || isa<UndefValue>(InsertedVal)) &&
322 "RAUW didn't change InsertedVal to be SingularVal");
323
Chris Lattner93f3bcf2009-10-10 09:04:27 +0000324 // Drop the entries we added in IncomingPredInfo to restore the stack.
325 IncomingPredInfo.erase(IncomingPredInfo.begin()+FirstPredInfoEntry,
326 IncomingPredInfo.end());
Chris Lattner45305d42009-12-04 01:03:32 +0000327 return SingularValue;
Chris Lattner93f3bcf2009-10-10 09:04:27 +0000328 }
Duncan Sandsed903422009-10-16 15:20:13 +0000329
Chris Lattner93f3bcf2009-10-10 09:04:27 +0000330 // Otherwise, we do need a PHI: insert one now if we don't already have one.
331 if (InsertedVal == 0)
332 InsertedVal = PHINode::Create(PrototypeValue->getType(),
333 PrototypeValue->getName(), &BB->front());
Duncan Sandsed903422009-10-16 15:20:13 +0000334
Chris Lattner93f3bcf2009-10-10 09:04:27 +0000335 PHINode *InsertedPHI = cast<PHINode>(InsertedVal);
336 InsertedPHI->reserveOperandSpace(IncomingPredInfo.size()-FirstPredInfoEntry);
Duncan Sandsed903422009-10-16 15:20:13 +0000337
Chris Lattner93f3bcf2009-10-10 09:04:27 +0000338 // Fill in all the predecessors of the PHI.
Chris Lattnerf9920fa2009-10-10 09:09:20 +0000339 for (IncomingPredInfoTy::iterator I =
340 IncomingPredInfo.begin()+FirstPredInfoEntry,
341 E = IncomingPredInfo.end(); I != E; ++I)
Chris Lattner93f3bcf2009-10-10 09:04:27 +0000342 InsertedPHI->addIncoming(I->second, I->first);
Duncan Sandsed903422009-10-16 15:20:13 +0000343
Chris Lattner93f3bcf2009-10-10 09:04:27 +0000344 // Drop the entries we added in IncomingPredInfo to restore the stack.
345 IncomingPredInfo.erase(IncomingPredInfo.begin()+FirstPredInfoEntry,
346 IncomingPredInfo.end());
Duncan Sandsed903422009-10-16 15:20:13 +0000347
Chris Lattner93f3bcf2009-10-10 09:04:27 +0000348 // See if the PHI node can be merged to a single value. This can happen in
349 // loop cases when we get a PHI of itself and one other value.
350 if (Value *ConstVal = InsertedPHI->hasConstantValue()) {
351 InsertedPHI->replaceAllUsesWith(ConstVal);
352 InsertedPHI->eraseFromParent();
353 InsertedVal = ConstVal;
354 } else {
David Greene1af40ca2010-01-05 01:26:49 +0000355 DEBUG(dbgs() << " Inserted PHI: " << *InsertedPHI << "\n");
Duncan Sandsed903422009-10-16 15:20:13 +0000356
Chris Lattnerf5a1fb62009-10-10 23:15:24 +0000357 // If the client wants to know about all new instructions, tell it.
358 if (InsertedPHIs) InsertedPHIs->push_back(InsertedPHI);
Chris Lattner93f3bcf2009-10-10 09:04:27 +0000359 }
Duncan Sandsed903422009-10-16 15:20:13 +0000360
Chris Lattner93f3bcf2009-10-10 09:04:27 +0000361 return InsertedVal;
362}