blob: 1288fdf32c4e9586a34a3e166638970e8a98860a [file] [log] [blame]
Chris Lattner184b2982002-09-08 18:59:35 +00001//===-- BasicBlock.cpp - Implement BasicBlock related methods -------------===//
Misha Brukmanb1c93172005-04-21 23:48:37 +00002//
John Criswell482202a2003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-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 Brukmanb1c93172005-04-21 23:48:37 +00007//
John Criswell482202a2003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner2f7c9632001-06-06 20:29:01 +00009//
Chris Lattnerf739fa82002-04-08 22:03:57 +000010// This file implements the BasicBlock class for the VMCore library.
Chris Lattner2f7c9632001-06-06 20:29:01 +000011//
12//===----------------------------------------------------------------------===//
13
Chris Lattner113f4f42002-06-25 16:13:24 +000014#include "llvm/BasicBlock.h"
Chris Lattner9daef352005-04-12 18:52:14 +000015#include "llvm/Constants.h"
Misha Brukman2d3fa9e2004-07-29 16:53:53 +000016#include "llvm/Instructions.h"
Chris Lattner2f7c9632001-06-06 20:29:01 +000017#include "llvm/Type.h"
Chris Lattner83d485b2002-02-12 22:39:50 +000018#include "llvm/Support/CFG.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000019#include "llvm/Support/LeakDetector.h"
Chris Lattner3d27be12006-08-27 12:54:02 +000020#include "llvm/Support/Compiler.h"
Chris Lattner113f4f42002-06-25 16:13:24 +000021#include "SymbolTableListTraitsImpl.h"
22#include <algorithm>
Chris Lattnera2960002003-11-21 16:52:05 +000023using namespace llvm;
Chris Lattner2f7c9632001-06-06 20:29:01 +000024
Chris Lattnerb47aa542007-04-17 03:26:42 +000025inline ValueSymbolTable *
26ilist_traits<Instruction>::getSymTab(BasicBlock *BB) {
27 if (BB)
28 if (Function *F = BB->getParent())
29 return &F->getValueSymbolTable();
30 return 0;
31}
32
Gordon Henriksen14a55692007-12-10 02:14:30 +000033
34namespace {
35 /// DummyInst - An instance of this class is used to mark the end of the
36 /// instruction list. This is not a real instruction.
37 struct VISIBILITY_HIDDEN DummyInst : public Instruction {
38 DummyInst() : Instruction(Type::VoidTy, OtherOpsEnd, 0, 0) {
39 // This should not be garbage monitored.
40 LeakDetector::removeGarbageObject(this);
41 }
42
43 Instruction *clone() const {
44 assert(0 && "Cannot clone EOL");abort();
45 return 0;
46 }
47 const char *getOpcodeName() const { return "*end-of-list-inst*"; }
48
49 // Methods for support type inquiry through isa, cast, and dyn_cast...
50 static inline bool classof(const DummyInst *) { return true; }
51 static inline bool classof(const Instruction *I) {
52 return I->getOpcode() == OtherOpsEnd;
53 }
54 static inline bool classof(const Value *V) {
55 return isa<Instruction>(V) && classof(cast<Instruction>(V));
56 }
57 };
Chris Lattnera2960002003-11-21 16:52:05 +000058}
Chris Lattner113f4f42002-06-25 16:13:24 +000059
Chris Lattnerf6c93e32005-01-30 00:09:23 +000060Instruction *ilist_traits<Instruction>::createSentinel() {
Chris Lattner113f4f42002-06-25 16:13:24 +000061 return new DummyInst();
62}
63iplist<Instruction> &ilist_traits<Instruction>::getList(BasicBlock *BB) {
64 return BB->getInstList();
65}
66
67// Explicit instantiation of SymbolTableListTraits since some of the methods
68// are not in the public header file...
Chris Lattnerb47aa542007-04-17 03:26:42 +000069template class SymbolTableListTraits<Instruction, BasicBlock>;
Chris Lattner113f4f42002-06-25 16:13:24 +000070
Chris Lattner2f7c9632001-06-06 20:29:01 +000071
Chris Lattnerb47aa542007-04-17 03:26:42 +000072BasicBlock::BasicBlock(const std::string &Name, Function *NewParent,
Nick Lewycky3cc9be02008-03-02 02:48:09 +000073 BasicBlock *InsertBefore, BasicBlock *Dest)
74 : User(Type::LabelTy, Value::BasicBlockVal, &unwindDest, 0), Parent(0) {
Chris Lattner4dfede82002-09-26 05:03:22 +000075
76 // Make sure that we get added to a function
77 LeakDetector::addGarbageObject(this);
78
79 if (InsertBefore) {
Chris Lattnerb47aa542007-04-17 03:26:42 +000080 assert(NewParent &&
Chris Lattnerbb5f0db2004-02-04 03:57:50 +000081 "Cannot insert block before another block with no function!");
Chris Lattnerb47aa542007-04-17 03:26:42 +000082 NewParent->getBasicBlockList().insert(InsertBefore, this);
83 } else if (NewParent) {
84 NewParent->getBasicBlockList().push_back(this);
Chris Lattner4dfede82002-09-26 05:03:22 +000085 }
Chris Lattner32ab6432007-02-12 05:18:08 +000086
87 setName(Name);
Nick Lewycky3cc9be02008-03-02 02:48:09 +000088 unwindDest.init(NULL, this);
89 setUnwindDest(Dest);
Chris Lattner4dfede82002-09-26 05:03:22 +000090}
91
92
Gordon Henriksen14a55692007-12-10 02:14:30 +000093BasicBlock::~BasicBlock() {
94 assert(getParent() == 0 && "BasicBlock still linked into the program!");
95 dropAllReferences();
96 InstList.clear();
Chris Lattner2f7c9632001-06-06 20:29:01 +000097}
98
Chris Lattner9ed7aef2002-09-06 21:33:15 +000099void BasicBlock::setParent(Function *parent) {
Chris Lattner184b2982002-09-08 18:59:35 +0000100 if (getParent())
101 LeakDetector::addGarbageObject(this);
102
Chris Lattnerb47aa542007-04-17 03:26:42 +0000103 // Set Parent=parent, updating instruction symtab entries as appropriate.
104 InstList.setSymTabObject(&Parent, parent);
Chris Lattner184b2982002-09-08 18:59:35 +0000105
106 if (getParent())
107 LeakDetector::removeGarbageObject(this);
Chris Lattner9ed7aef2002-09-06 21:33:15 +0000108}
109
Chris Lattner02a71e72004-10-11 22:21:39 +0000110void BasicBlock::removeFromParent() {
111 getParent()->getBasicBlockList().remove(this);
112}
113
114void BasicBlock::eraseFromParent() {
115 getParent()->getBasicBlockList().erase(this);
116}
117
Nick Lewycky3cc9be02008-03-02 02:48:09 +0000118const BasicBlock *BasicBlock::getUnwindDest() const {
119 return cast_or_null<const BasicBlock>(unwindDest.get());
120}
121
122BasicBlock *BasicBlock::getUnwindDest() {
123 return cast_or_null<BasicBlock>(unwindDest.get());
124}
125
126void BasicBlock::setUnwindDest(BasicBlock *dest) {
127 NumOperands = unwindDest ? 1 : 0;
128 unwindDest.set(dest);
129}
130
Chris Lattner4091f462006-09-23 04:03:45 +0000131/// moveBefore - Unlink this basic block from its current function and
132/// insert it into the function that MovePos lives in, right before MovePos.
Chris Lattnere09bbc82005-08-12 22:14:06 +0000133void BasicBlock::moveBefore(BasicBlock *MovePos) {
134 MovePos->getParent()->getBasicBlockList().splice(MovePos,
135 getParent()->getBasicBlockList(), this);
136}
137
Chris Lattner4091f462006-09-23 04:03:45 +0000138/// moveAfter - Unlink this basic block from its current function and
139/// insert it into the function that MovePos lives in, right after MovePos.
140void BasicBlock::moveAfter(BasicBlock *MovePos) {
141 Function::iterator I = MovePos;
142 MovePos->getParent()->getBasicBlockList().splice(++I,
143 getParent()->getBasicBlockList(), this);
144}
145
Chris Lattner02a71e72004-10-11 22:21:39 +0000146
Chris Lattner2f7c9632001-06-06 20:29:01 +0000147TerminatorInst *BasicBlock::getTerminator() {
148 if (InstList.empty()) return 0;
Chris Lattner113f4f42002-06-25 16:13:24 +0000149 return dyn_cast<TerminatorInst>(&InstList.back());
Chris Lattner2f7c9632001-06-06 20:29:01 +0000150}
151
Dan Gohmanaad83c82007-11-19 20:46:23 +0000152const TerminatorInst *BasicBlock::getTerminator() const {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000153 if (InstList.empty()) return 0;
Chris Lattner113f4f42002-06-25 16:13:24 +0000154 return dyn_cast<TerminatorInst>(&InstList.back());
Chris Lattner2f7c9632001-06-06 20:29:01 +0000155}
156
Vladimir Prusb5b6dc42006-06-08 15:46:18 +0000157Instruction* BasicBlock::getFirstNonPHI()
158{
Vladimir Prus9bc40092006-06-08 16:03:13 +0000159 BasicBlock::iterator i = begin();
Vladimir Prusb5b6dc42006-06-08 15:46:18 +0000160 // All valid basic blocks should have a terminator,
161 // which is not a PHINode. If we have invalid basic
162 // block we'll get assert when dereferencing past-the-end
163 // iterator.
164 while (isa<PHINode>(i)) ++i;
165 return &*i;
166}
167
Chris Lattner2f7c9632001-06-06 20:29:01 +0000168void BasicBlock::dropAllReferences() {
Nick Lewycky3cc9be02008-03-02 02:48:09 +0000169 setUnwindDest(NULL);
Chris Lattner113f4f42002-06-25 16:13:24 +0000170 for(iterator I = begin(), E = end(); I != E; ++I)
171 I->dropAllReferences();
Chris Lattner2f7c9632001-06-06 20:29:01 +0000172}
173
Chris Lattnerce046ac2005-02-24 02:37:26 +0000174/// getSinglePredecessor - If this basic block has a single predecessor block,
175/// return the block, otherwise return a null pointer.
176BasicBlock *BasicBlock::getSinglePredecessor() {
177 pred_iterator PI = pred_begin(this), E = pred_end(this);
178 if (PI == E) return 0; // No preds.
179 BasicBlock *ThePred = *PI;
180 ++PI;
181 return (PI == E) ? ThePred : 0 /*multiple preds*/;
182}
183
Chris Lattner954c64d2005-04-21 16:06:03 +0000184/// removePredecessor - This method is used to notify a BasicBlock that the
185/// specified Predecessor of the block is no longer able to reach it. This is
Misha Brukmanb1c93172005-04-21 23:48:37 +0000186/// actually not used to update the Predecessor list, but is actually used to
Chris Lattner954c64d2005-04-21 16:06:03 +0000187/// update the PHI nodes that reside in the block. Note that this should be
188/// called while the predecessor still refers to this block.
189///
Chris Lattner9daef352005-04-12 18:52:14 +0000190void BasicBlock::removePredecessor(BasicBlock *Pred,
Nick Lewyckycc241042008-03-09 05:04:48 +0000191 bool DontDeleteUselessPHIs,
192 bool OnlyDeleteOne) {
Chris Lattner25169ca2005-02-23 16:53:04 +0000193 assert((hasNUsesOrMore(16)||// Reduce cost of this assertion for complex CFGs.
Chris Lattnercf08c212005-02-23 07:09:08 +0000194 find(pred_begin(this), pred_end(this), Pred) != pred_end(this)) &&
Jeff Cohen82639852005-04-23 21:38:35 +0000195 "removePredecessor: BB is not a predecessor!");
Chris Lattnercf08c212005-02-23 07:09:08 +0000196
Chris Lattner8d0b1b22004-12-11 22:10:29 +0000197 if (InstList.empty()) return;
Chris Lattnerbea72472004-07-06 17:44:17 +0000198 PHINode *APN = dyn_cast<PHINode>(&front());
199 if (!APN) return; // Quick exit.
Chris Lattner615d3cf2001-06-29 05:25:23 +0000200
201 // If there are exactly two predecessors, then we want to nuke the PHI nodes
Chris Lattnerbea72472004-07-06 17:44:17 +0000202 // altogether. However, we cannot do this, if this in this case:
Chris Lattnerf7373e42002-05-21 19:52:49 +0000203 //
204 // Loop:
205 // %x = phi [X, Loop]
206 // %x2 = add %x, 1 ;; This would become %x2 = add %x2, 1
207 // br Loop ;; %x2 does not dominate all uses
208 //
209 // This is because the PHI node input is actually taken from the predecessor
Misha Brukmanb1c93172005-04-21 23:48:37 +0000210 // basic block. The only case this can happen is with a self loop, so we
Chris Lattnerf7373e42002-05-21 19:52:49 +0000211 // check for this case explicitly now.
Misha Brukmanb1c93172005-04-21 23:48:37 +0000212 //
Chris Lattnerbea72472004-07-06 17:44:17 +0000213 unsigned max_idx = APN->getNumIncomingValues();
Chris Lattner615d3cf2001-06-29 05:25:23 +0000214 assert(max_idx != 0 && "PHI Node in block with 0 predecessors!?!?!");
Chris Lattnerf7373e42002-05-21 19:52:49 +0000215 if (max_idx == 2) {
Chris Lattnerbea72472004-07-06 17:44:17 +0000216 BasicBlock *Other = APN->getIncomingBlock(APN->getIncomingBlock(0) == Pred);
Chris Lattnerf7373e42002-05-21 19:52:49 +0000217
218 // Disable PHI elimination!
219 if (this == Other) max_idx = 3;
220 }
221
Chris Lattner9daef352005-04-12 18:52:14 +0000222 // <= Two predecessors BEFORE I remove one?
223 if (max_idx <= 2 && !DontDeleteUselessPHIs) {
Chris Lattnerda558102001-10-02 03:41:24 +0000224 // Yup, loop through and nuke the PHI nodes
Chris Lattner113f4f42002-06-25 16:13:24 +0000225 while (PHINode *PN = dyn_cast<PHINode>(&front())) {
Chris Lattner9daef352005-04-12 18:52:14 +0000226 // Remove the predecessor first.
Nick Lewyckycc241042008-03-09 05:04:48 +0000227 if (OnlyDeleteOne) {
228 int idx = PN->getBasicBlockIndex(Pred);
229 PN->removeIncomingValue(idx, !DontDeleteUselessPHIs);
230 } else
231 PN->removeIncomingValue(Pred, !DontDeleteUselessPHIs);
Chris Lattner615d3cf2001-06-29 05:25:23 +0000232
233 // If the PHI _HAD_ two uses, replace PHI node with its now *single* value
Chris Lattnercaf5b502002-10-08 21:36:34 +0000234 if (max_idx == 2) {
Chris Lattneref8c8332003-04-25 23:14:19 +0000235 if (PN->getOperand(0) != PN)
236 PN->replaceAllUsesWith(PN->getOperand(0));
237 else
238 // We are left with an infinite loop with no entries: kill the PHI.
Chris Lattner9daef352005-04-12 18:52:14 +0000239 PN->replaceAllUsesWith(UndefValue::get(PN->getType()));
Chris Lattnercaf5b502002-10-08 21:36:34 +0000240 getInstList().pop_front(); // Remove the PHI node
241 }
242
243 // If the PHI node already only had one entry, it got deleted by
244 // removeIncomingValue.
Chris Lattner615d3cf2001-06-29 05:25:23 +0000245 }
246 } else {
247 // Okay, now we know that we need to remove predecessor #pred_idx from all
248 // PHI nodes. Iterate over each PHI node fixing them up
Chris Lattner708ee9d2004-06-05 00:11:27 +0000249 PHINode *PN;
Chris Lattner1749aaa2005-08-05 15:34:10 +0000250 for (iterator II = begin(); (PN = dyn_cast<PHINode>(II)); ) {
251 ++II;
Nick Lewyckycc241042008-03-09 05:04:48 +0000252 if (OnlyDeleteOne) {
253 int idx = PN->getBasicBlockIndex(Pred);
254 PN->removeIncomingValue(idx, false);
255 } else
256 PN->removeIncomingValue(Pred, false);
257
Nate Begemanb3923212005-08-04 23:24:19 +0000258 // If all incoming values to the Phi are the same, we can replace the Phi
259 // with that value.
Owen Anderson4e744af2006-06-14 04:43:14 +0000260 Value* PNV = 0;
261 if (!DontDeleteUselessPHIs && (PNV = PN->hasConstantValue())) {
Chris Lattner6f583502005-08-05 01:02:04 +0000262 PN->replaceAllUsesWith(PNV);
263 PN->eraseFromParent();
264 }
Nate Begemanb3923212005-08-04 23:24:19 +0000265 }
Chris Lattner615d3cf2001-06-29 05:25:23 +0000266 }
267}
268
Chris Lattner2f7c9632001-06-06 20:29:01 +0000269
Chris Lattner7ceb0812005-04-21 16:04:49 +0000270/// splitBasicBlock - This splits a basic block into two at the specified
271/// instruction. Note that all instructions BEFORE the specified iterator stay
Misha Brukmanb1c93172005-04-21 23:48:37 +0000272/// as part of the original basic block, an unconditional branch is added to
Chris Lattner7ceb0812005-04-21 16:04:49 +0000273/// the new BB, and the rest of the instructions in the BB are moved to the new
274/// BB, including the old terminator. This invalidates the iterator.
275///
Misha Brukmanb1c93172005-04-21 23:48:37 +0000276/// Note that this only works on well formed basic blocks (must have a
Chris Lattner7ceb0812005-04-21 16:04:49 +0000277/// terminator), and 'I' must not be the end of instruction list (which would
278/// cause a degenerate basic block to be formed, having a terminator inside of
Misha Brukmanb1c93172005-04-21 23:48:37 +0000279/// the basic block).
Chris Lattner7ceb0812005-04-21 16:04:49 +0000280///
Chris Lattner6d569352003-08-24 03:41:39 +0000281BasicBlock *BasicBlock::splitBasicBlock(iterator I, const std::string &BBName) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000282 assert(getTerminator() && "Can't use splitBasicBlock on degenerate BB!");
Misha Brukmanb1c93172005-04-21 23:48:37 +0000283 assert(I != InstList.end() &&
Jeff Cohen82639852005-04-23 21:38:35 +0000284 "Trying to get me to create degenerate basic block!");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000285
Chris Lattnerbb5f0db2004-02-04 03:57:50 +0000286 BasicBlock *New = new BasicBlock(BBName, getParent(), getNext());
Chris Lattner2f7c9632001-06-06 20:29:01 +0000287
Chris Lattnerc4c7ea52004-02-03 23:11:21 +0000288 // Move all of the specified instructions from the original basic block into
289 // the new basic block.
290 New->getInstList().splice(New->end(), this->getInstList(), I, end());
Chris Lattner2f7c9632001-06-06 20:29:01 +0000291
292 // Add a branch instruction to the newly formed basic block.
Chris Lattnera2960002003-11-21 16:52:05 +0000293 new BranchInst(New, this);
Chris Lattner4eed0b82002-02-25 00:35:07 +0000294
295 // Now we must loop through all of the successors of the New block (which
296 // _were_ the successors of the 'this' block), and update any PHI nodes in
297 // successors. If there were PHI nodes in the successors, then they need to
298 // know that incoming branches will be from New, not from Old.
299 //
Chris Lattner64d88bc2003-09-24 22:03:22 +0000300 for (succ_iterator I = succ_begin(New), E = succ_end(New); I != E; ++I) {
Chris Lattner4eed0b82002-02-25 00:35:07 +0000301 // Loop over any phi nodes in the basic block, updating the BB field of
302 // incoming values...
303 BasicBlock *Successor = *I;
Chris Lattner708ee9d2004-06-05 00:11:27 +0000304 PHINode *PN;
Chris Lattner4eed0b82002-02-25 00:35:07 +0000305 for (BasicBlock::iterator II = Successor->begin();
Chris Lattner08d1b9d2004-06-05 17:43:52 +0000306 (PN = dyn_cast<PHINode>(II)); ++II) {
Chris Lattner4eed0b82002-02-25 00:35:07 +0000307 int IDX = PN->getBasicBlockIndex(this);
308 while (IDX != -1) {
309 PN->setIncomingBlock((unsigned)IDX, New);
310 IDX = PN->getBasicBlockIndex(this);
311 }
312 }
313 }
Chris Lattner2f7c9632001-06-06 20:29:01 +0000314 return New;
315}