blob: 3ab5e96157955b6bc60aa5077bb2918f84b3a231 [file] [log] [blame]
Chris Lattnerd1e693f2002-09-08 18:59:35 +00001//===-- BasicBlock.cpp - Implement BasicBlock related methods -------------===//
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 Lattner00950542001-06-06 20:29:01 +00009//
Chris Lattnerb7653df2002-04-08 22:03:57 +000010// This file implements the BasicBlock class for the VMCore library.
Chris Lattner00950542001-06-06 20:29:01 +000011//
12//===----------------------------------------------------------------------===//
13
Chris Lattner7e708292002-06-25 16:13:24 +000014#include "llvm/BasicBlock.h"
Chris Lattner34645472005-04-12 18:52:14 +000015#include "llvm/Constants.h"
Misha Brukman44336292004-07-29 16:53:53 +000016#include "llvm/Instructions.h"
Chris Lattner00950542001-06-06 20:29:01 +000017#include "llvm/Type.h"
Chris Lattner455889a2002-02-12 22:39:50 +000018#include "llvm/Support/CFG.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000019#include "llvm/Support/LeakDetector.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000020#include "llvm/Support/Compiler.h"
Chris Lattner7e708292002-06-25 16:13:24 +000021#include "SymbolTableListTraitsImpl.h"
22#include <algorithm>
Chris Lattner108e4ab2003-11-21 16:52:05 +000023using namespace llvm;
Chris Lattner00950542001-06-06 20:29:01 +000024
Chris Lattner17fcdd52007-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 Henriksenafba8fe2007-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 Lattner108e4ab2003-11-21 16:52:05 +000058}
Chris Lattner7e708292002-06-25 16:13:24 +000059
Chris Lattnerbca81442005-01-30 00:09:23 +000060Instruction *ilist_traits<Instruction>::createSentinel() {
Chris Lattner7e708292002-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 Lattner17fcdd52007-04-17 03:26:42 +000069template class SymbolTableListTraits<Instruction, BasicBlock>;
Chris Lattner7e708292002-06-25 16:13:24 +000070
Chris Lattner00950542001-06-06 20:29:01 +000071
Chris Lattner17fcdd52007-04-17 03:26:42 +000072BasicBlock::BasicBlock(const std::string &Name, Function *NewParent,
Chris Lattner4f056112004-02-04 03:57:50 +000073 BasicBlock *InsertBefore)
Chris Lattner17fcdd52007-04-17 03:26:42 +000074 : Value(Type::LabelTy, Value::BasicBlockVal), Parent(0) {
Chris Lattner0a1a8742002-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 Lattner17fcdd52007-04-17 03:26:42 +000080 assert(NewParent &&
Chris Lattner4f056112004-02-04 03:57:50 +000081 "Cannot insert block before another block with no function!");
Chris Lattner17fcdd52007-04-17 03:26:42 +000082 NewParent->getBasicBlockList().insert(InsertBefore, this);
83 } else if (NewParent) {
84 NewParent->getBasicBlockList().push_back(this);
Chris Lattner0a1a8742002-09-26 05:03:22 +000085 }
Chris Lattnerdec628e2007-02-12 05:18:08 +000086
87 setName(Name);
Chris Lattner0a1a8742002-09-26 05:03:22 +000088}
89
90
Gordon Henriksenafba8fe2007-12-10 02:14:30 +000091BasicBlock::~BasicBlock() {
92 assert(getParent() == 0 && "BasicBlock still linked into the program!");
93 dropAllReferences();
94 InstList.clear();
Chris Lattner00950542001-06-06 20:29:01 +000095}
96
Chris Lattnerbded1322002-09-06 21:33:15 +000097void BasicBlock::setParent(Function *parent) {
Chris Lattnerd1e693f2002-09-08 18:59:35 +000098 if (getParent())
99 LeakDetector::addGarbageObject(this);
100
Chris Lattner17fcdd52007-04-17 03:26:42 +0000101 // Set Parent=parent, updating instruction symtab entries as appropriate.
102 InstList.setSymTabObject(&Parent, parent);
Chris Lattnerd1e693f2002-09-08 18:59:35 +0000103
104 if (getParent())
105 LeakDetector::removeGarbageObject(this);
Chris Lattnerbded1322002-09-06 21:33:15 +0000106}
107
Chris Lattner4b833802004-10-11 22:21:39 +0000108void BasicBlock::removeFromParent() {
109 getParent()->getBasicBlockList().remove(this);
110}
111
112void BasicBlock::eraseFromParent() {
113 getParent()->getBasicBlockList().erase(this);
114}
115
Chris Lattnera71965b2006-09-23 04:03:45 +0000116/// moveBefore - Unlink this basic block from its current function and
117/// insert it into the function that MovePos lives in, right before MovePos.
Chris Lattner6a13aed2005-08-12 22:14:06 +0000118void BasicBlock::moveBefore(BasicBlock *MovePos) {
119 MovePos->getParent()->getBasicBlockList().splice(MovePos,
120 getParent()->getBasicBlockList(), this);
121}
122
Chris Lattnera71965b2006-09-23 04:03:45 +0000123/// moveAfter - Unlink this basic block from its current function and
124/// insert it into the function that MovePos lives in, right after MovePos.
125void BasicBlock::moveAfter(BasicBlock *MovePos) {
126 Function::iterator I = MovePos;
127 MovePos->getParent()->getBasicBlockList().splice(++I,
128 getParent()->getBasicBlockList(), this);
129}
130
Chris Lattner4b833802004-10-11 22:21:39 +0000131
Chris Lattner00950542001-06-06 20:29:01 +0000132TerminatorInst *BasicBlock::getTerminator() {
133 if (InstList.empty()) return 0;
Chris Lattner7e708292002-06-25 16:13:24 +0000134 return dyn_cast<TerminatorInst>(&InstList.back());
Chris Lattner00950542001-06-06 20:29:01 +0000135}
136
Dan Gohman50cdabc2007-11-19 20:46:23 +0000137const TerminatorInst *BasicBlock::getTerminator() const {
Chris Lattner00950542001-06-06 20:29:01 +0000138 if (InstList.empty()) return 0;
Chris Lattner7e708292002-06-25 16:13:24 +0000139 return dyn_cast<TerminatorInst>(&InstList.back());
Chris Lattner00950542001-06-06 20:29:01 +0000140}
141
Vladimir Prusdd49dbf2006-06-08 15:46:18 +0000142Instruction* BasicBlock::getFirstNonPHI()
143{
Vladimir Prus28962f32006-06-08 16:03:13 +0000144 BasicBlock::iterator i = begin();
Vladimir Prusdd49dbf2006-06-08 15:46:18 +0000145 // All valid basic blocks should have a terminator,
146 // which is not a PHINode. If we have invalid basic
147 // block we'll get assert when dereferencing past-the-end
148 // iterator.
149 while (isa<PHINode>(i)) ++i;
150 return &*i;
151}
152
Chris Lattner00950542001-06-06 20:29:01 +0000153void BasicBlock::dropAllReferences() {
Chris Lattner7e708292002-06-25 16:13:24 +0000154 for(iterator I = begin(), E = end(); I != E; ++I)
155 I->dropAllReferences();
Chris Lattner00950542001-06-06 20:29:01 +0000156}
157
Chris Lattnerad993cb2005-02-24 02:37:26 +0000158/// getSinglePredecessor - If this basic block has a single predecessor block,
159/// return the block, otherwise return a null pointer.
160BasicBlock *BasicBlock::getSinglePredecessor() {
161 pred_iterator PI = pred_begin(this), E = pred_end(this);
162 if (PI == E) return 0; // No preds.
163 BasicBlock *ThePred = *PI;
164 ++PI;
165 return (PI == E) ? ThePred : 0 /*multiple preds*/;
166}
167
Chris Lattner566f6002005-04-21 16:06:03 +0000168/// removePredecessor - This method is used to notify a BasicBlock that the
169/// specified Predecessor of the block is no longer able to reach it. This is
Misha Brukmanfd939082005-04-21 23:48:37 +0000170/// actually not used to update the Predecessor list, but is actually used to
Chris Lattner566f6002005-04-21 16:06:03 +0000171/// update the PHI nodes that reside in the block. Note that this should be
172/// called while the predecessor still refers to this block.
173///
Chris Lattner34645472005-04-12 18:52:14 +0000174void BasicBlock::removePredecessor(BasicBlock *Pred,
175 bool DontDeleteUselessPHIs) {
Chris Lattner1f21ef12005-02-23 16:53:04 +0000176 assert((hasNUsesOrMore(16)||// Reduce cost of this assertion for complex CFGs.
Chris Lattner35f0aec2005-02-23 07:09:08 +0000177 find(pred_begin(this), pred_end(this), Pred) != pred_end(this)) &&
Jeff Cohen9d809302005-04-23 21:38:35 +0000178 "removePredecessor: BB is not a predecessor!");
Chris Lattner35f0aec2005-02-23 07:09:08 +0000179
Chris Lattnerf23586c2004-12-11 22:10:29 +0000180 if (InstList.empty()) return;
Chris Lattnera9e77812004-07-06 17:44:17 +0000181 PHINode *APN = dyn_cast<PHINode>(&front());
182 if (!APN) return; // Quick exit.
Chris Lattnerb47af252001-06-29 05:25:23 +0000183
184 // If there are exactly two predecessors, then we want to nuke the PHI nodes
Chris Lattnera9e77812004-07-06 17:44:17 +0000185 // altogether. However, we cannot do this, if this in this case:
Chris Lattner87a09b12002-05-21 19:52:49 +0000186 //
187 // Loop:
188 // %x = phi [X, Loop]
189 // %x2 = add %x, 1 ;; This would become %x2 = add %x2, 1
190 // br Loop ;; %x2 does not dominate all uses
191 //
192 // This is because the PHI node input is actually taken from the predecessor
Misha Brukmanfd939082005-04-21 23:48:37 +0000193 // basic block. The only case this can happen is with a self loop, so we
Chris Lattner87a09b12002-05-21 19:52:49 +0000194 // check for this case explicitly now.
Misha Brukmanfd939082005-04-21 23:48:37 +0000195 //
Chris Lattnera9e77812004-07-06 17:44:17 +0000196 unsigned max_idx = APN->getNumIncomingValues();
Chris Lattnerb47af252001-06-29 05:25:23 +0000197 assert(max_idx != 0 && "PHI Node in block with 0 predecessors!?!?!");
Chris Lattner87a09b12002-05-21 19:52:49 +0000198 if (max_idx == 2) {
Chris Lattnera9e77812004-07-06 17:44:17 +0000199 BasicBlock *Other = APN->getIncomingBlock(APN->getIncomingBlock(0) == Pred);
Chris Lattner87a09b12002-05-21 19:52:49 +0000200
201 // Disable PHI elimination!
202 if (this == Other) max_idx = 3;
203 }
204
Chris Lattner34645472005-04-12 18:52:14 +0000205 // <= Two predecessors BEFORE I remove one?
206 if (max_idx <= 2 && !DontDeleteUselessPHIs) {
Chris Lattnerb00c5822001-10-02 03:41:24 +0000207 // Yup, loop through and nuke the PHI nodes
Chris Lattner7e708292002-06-25 16:13:24 +0000208 while (PHINode *PN = dyn_cast<PHINode>(&front())) {
Chris Lattner34645472005-04-12 18:52:14 +0000209 // Remove the predecessor first.
210 PN->removeIncomingValue(Pred, !DontDeleteUselessPHIs);
Chris Lattnerb47af252001-06-29 05:25:23 +0000211
212 // If the PHI _HAD_ two uses, replace PHI node with its now *single* value
Chris Lattnerdee430d2002-10-08 21:36:34 +0000213 if (max_idx == 2) {
Chris Lattner02a78cf2003-04-25 23:14:19 +0000214 if (PN->getOperand(0) != PN)
215 PN->replaceAllUsesWith(PN->getOperand(0));
216 else
217 // We are left with an infinite loop with no entries: kill the PHI.
Chris Lattner34645472005-04-12 18:52:14 +0000218 PN->replaceAllUsesWith(UndefValue::get(PN->getType()));
Chris Lattnerdee430d2002-10-08 21:36:34 +0000219 getInstList().pop_front(); // Remove the PHI node
220 }
221
222 // If the PHI node already only had one entry, it got deleted by
223 // removeIncomingValue.
Chris Lattnerb47af252001-06-29 05:25:23 +0000224 }
225 } else {
226 // Okay, now we know that we need to remove predecessor #pred_idx from all
227 // PHI nodes. Iterate over each PHI node fixing them up
Chris Lattnerf8782182004-06-05 00:11:27 +0000228 PHINode *PN;
Chris Lattner80f4d882005-08-05 15:34:10 +0000229 for (iterator II = begin(); (PN = dyn_cast<PHINode>(II)); ) {
230 ++II;
Chris Lattner34645472005-04-12 18:52:14 +0000231 PN->removeIncomingValue(Pred, false);
Nate Begemana83ba0f2005-08-04 23:24:19 +0000232 // If all incoming values to the Phi are the same, we can replace the Phi
233 // with that value.
Owen Anderson90245d42006-06-14 04:43:14 +0000234 Value* PNV = 0;
235 if (!DontDeleteUselessPHIs && (PNV = PN->hasConstantValue())) {
Chris Lattner1325b422005-08-05 01:02:04 +0000236 PN->replaceAllUsesWith(PNV);
237 PN->eraseFromParent();
238 }
Nate Begemana83ba0f2005-08-04 23:24:19 +0000239 }
Chris Lattnerb47af252001-06-29 05:25:23 +0000240 }
241}
242
Chris Lattner00950542001-06-06 20:29:01 +0000243
Chris Lattner0f67dd62005-04-21 16:04:49 +0000244/// splitBasicBlock - This splits a basic block into two at the specified
245/// instruction. Note that all instructions BEFORE the specified iterator stay
Misha Brukmanfd939082005-04-21 23:48:37 +0000246/// as part of the original basic block, an unconditional branch is added to
Chris Lattner0f67dd62005-04-21 16:04:49 +0000247/// the new BB, and the rest of the instructions in the BB are moved to the new
248/// BB, including the old terminator. This invalidates the iterator.
249///
Misha Brukmanfd939082005-04-21 23:48:37 +0000250/// Note that this only works on well formed basic blocks (must have a
Chris Lattner0f67dd62005-04-21 16:04:49 +0000251/// terminator), and 'I' must not be the end of instruction list (which would
252/// cause a degenerate basic block to be formed, having a terminator inside of
Misha Brukmanfd939082005-04-21 23:48:37 +0000253/// the basic block).
Chris Lattner0f67dd62005-04-21 16:04:49 +0000254///
Chris Lattner4bd4aa52003-08-24 03:41:39 +0000255BasicBlock *BasicBlock::splitBasicBlock(iterator I, const std::string &BBName) {
Chris Lattner00950542001-06-06 20:29:01 +0000256 assert(getTerminator() && "Can't use splitBasicBlock on degenerate BB!");
Misha Brukmanfd939082005-04-21 23:48:37 +0000257 assert(I != InstList.end() &&
Jeff Cohen9d809302005-04-23 21:38:35 +0000258 "Trying to get me to create degenerate basic block!");
Chris Lattner00950542001-06-06 20:29:01 +0000259
Chris Lattner4f056112004-02-04 03:57:50 +0000260 BasicBlock *New = new BasicBlock(BBName, getParent(), getNext());
Chris Lattner00950542001-06-06 20:29:01 +0000261
Chris Lattnerf2c31062004-02-03 23:11:21 +0000262 // Move all of the specified instructions from the original basic block into
263 // the new basic block.
264 New->getInstList().splice(New->end(), this->getInstList(), I, end());
Chris Lattner00950542001-06-06 20:29:01 +0000265
266 // Add a branch instruction to the newly formed basic block.
Chris Lattner108e4ab2003-11-21 16:52:05 +0000267 new BranchInst(New, this);
Chris Lattnere8e320d2002-02-25 00:35:07 +0000268
269 // Now we must loop through all of the successors of the New block (which
270 // _were_ the successors of the 'this' block), and update any PHI nodes in
271 // successors. If there were PHI nodes in the successors, then they need to
272 // know that incoming branches will be from New, not from Old.
273 //
Chris Lattner1c9ab512003-09-24 22:03:22 +0000274 for (succ_iterator I = succ_begin(New), E = succ_end(New); I != E; ++I) {
Chris Lattnere8e320d2002-02-25 00:35:07 +0000275 // Loop over any phi nodes in the basic block, updating the BB field of
276 // incoming values...
277 BasicBlock *Successor = *I;
Chris Lattnerf8782182004-06-05 00:11:27 +0000278 PHINode *PN;
Chris Lattnere8e320d2002-02-25 00:35:07 +0000279 for (BasicBlock::iterator II = Successor->begin();
Chris Lattner9bf2a922004-06-05 17:43:52 +0000280 (PN = dyn_cast<PHINode>(II)); ++II) {
Chris Lattnere8e320d2002-02-25 00:35:07 +0000281 int IDX = PN->getBasicBlockIndex(this);
282 while (IDX != -1) {
283 PN->setIncomingBlock((unsigned)IDX, New);
284 IDX = PN->getBasicBlockIndex(this);
285 }
286 }
287 }
Chris Lattner00950542001-06-06 20:29:01 +0000288 return New;
289}