blob: c7f7f53e2305d17e8c9033c399c47681d150e9d5 [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
Gabor Greifa3de9e42008-05-27 17:26:02 +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"
Owen Anderson155dccd82009-07-07 23:43:39 +000017#include "llvm/LLVMContext.h"
Chris Lattner2f7c9632001-06-06 20:29:01 +000018#include "llvm/Type.h"
Dan Gohman804c95d2008-07-28 21:51:04 +000019#include "llvm/ADT/STLExtras.h"
Chris Lattner83d485b2002-02-12 22:39:50 +000020#include "llvm/Support/CFG.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000021#include "llvm/Support/LeakDetector.h"
Chris Lattner113f4f42002-06-25 16:13:24 +000022#include "SymbolTableListTraitsImpl.h"
23#include <algorithm>
Chris Lattnera2960002003-11-21 16:52:05 +000024using namespace llvm;
Chris Lattner2f7c9632001-06-06 20:29:01 +000025
Gabor Greif51bbcf82009-03-07 12:33:24 +000026ValueSymbolTable *BasicBlock::getValueSymbolTable() {
27 if (Function *F = getParent())
28 return &F->getValueSymbolTable();
Chris Lattnerb47aa542007-04-17 03:26:42 +000029 return 0;
30}
31
Owen Anderson47db9412009-07-22 00:24:57 +000032LLVMContext &BasicBlock::getContext() const {
33 return getType()->getContext();
Owen Andersone70b6372009-07-05 22:41:43 +000034}
35
Chris Lattner113f4f42002-06-25 16:13:24 +000036// Explicit instantiation of SymbolTableListTraits since some of the methods
37// are not in the public header file...
Chris Lattnerb47aa542007-04-17 03:26:42 +000038template class SymbolTableListTraits<Instruction, BasicBlock>;
Chris Lattner113f4f42002-06-25 16:13:24 +000039
Chris Lattner2f7c9632001-06-06 20:29:01 +000040
Owen Anderson55f1c092009-08-13 21:58:54 +000041BasicBlock::BasicBlock(LLVMContext &C, const Twine &Name, Function *NewParent,
Nick Lewycky4d43d3c2008-04-25 16:53:59 +000042 BasicBlock *InsertBefore)
Owen Anderson55f1c092009-08-13 21:58:54 +000043 : Value(Type::getLabelTy(C), Value::BasicBlockVal), Parent(0) {
Chris Lattner4dfede82002-09-26 05:03:22 +000044
45 // Make sure that we get added to a function
46 LeakDetector::addGarbageObject(this);
47
48 if (InsertBefore) {
Chris Lattnerb47aa542007-04-17 03:26:42 +000049 assert(NewParent &&
Chris Lattnerbb5f0db2004-02-04 03:57:50 +000050 "Cannot insert block before another block with no function!");
Chris Lattnerb47aa542007-04-17 03:26:42 +000051 NewParent->getBasicBlockList().insert(InsertBefore, this);
52 } else if (NewParent) {
53 NewParent->getBasicBlockList().push_back(this);
Chris Lattner4dfede82002-09-26 05:03:22 +000054 }
Chris Lattner32ab6432007-02-12 05:18:08 +000055
56 setName(Name);
Chris Lattner4dfede82002-09-26 05:03:22 +000057}
58
59
Gordon Henriksen14a55692007-12-10 02:14:30 +000060BasicBlock::~BasicBlock() {
Chris Lattnerdd5d0352009-10-30 22:39:36 +000061 // If the address of the block is taken and it is being deleted (e.g. because
62 // it is dead), this means that there is either a dangling constant expr
63 // hanging off the block, or an undefined use of the block (source code
64 // expecting the address of a label to keep the block alive even though there
65 // is no indirect branch). Handle these cases by zapping the BlockAddress
Chris Lattneraa99c942009-11-01 01:27:45 +000066 // nodes. There are no other possible uses at this point.
Chris Lattnerdd5d0352009-10-30 22:39:36 +000067 if (hasAddressTaken()) {
68 assert(!use_empty() && "There should be at least one blockaddress!");
Chris Lattneraa99c942009-11-01 01:27:45 +000069 Constant *Replacement =
70 ConstantInt::get(llvm::Type::getInt32Ty(getContext()), 1);
Chris Lattnerdd5d0352009-10-30 22:39:36 +000071 while (!use_empty()) {
72 BlockAddress *BA = cast<BlockAddress>(use_back());
Chris Lattneraa99c942009-11-01 01:27:45 +000073 BA->replaceAllUsesWith(ConstantExpr::getIntToPtr(Replacement,
74 BA->getType()));
Chris Lattnerdd5d0352009-10-30 22:39:36 +000075 BA->destroyConstant();
76 }
77 }
78
Gordon Henriksen14a55692007-12-10 02:14:30 +000079 assert(getParent() == 0 && "BasicBlock still linked into the program!");
80 dropAllReferences();
81 InstList.clear();
Chris Lattner2f7c9632001-06-06 20:29:01 +000082}
83
Chris Lattner9ed7aef2002-09-06 21:33:15 +000084void BasicBlock::setParent(Function *parent) {
Chris Lattner184b2982002-09-08 18:59:35 +000085 if (getParent())
86 LeakDetector::addGarbageObject(this);
87
Chris Lattnerb47aa542007-04-17 03:26:42 +000088 // Set Parent=parent, updating instruction symtab entries as appropriate.
89 InstList.setSymTabObject(&Parent, parent);
Chris Lattner184b2982002-09-08 18:59:35 +000090
91 if (getParent())
92 LeakDetector::removeGarbageObject(this);
Chris Lattner9ed7aef2002-09-06 21:33:15 +000093}
94
Chris Lattner02a71e72004-10-11 22:21:39 +000095void BasicBlock::removeFromParent() {
96 getParent()->getBasicBlockList().remove(this);
97}
98
99void BasicBlock::eraseFromParent() {
100 getParent()->getBasicBlockList().erase(this);
101}
102
Chris Lattner4091f462006-09-23 04:03:45 +0000103/// moveBefore - Unlink this basic block from its current function and
104/// insert it into the function that MovePos lives in, right before MovePos.
Chris Lattnere09bbc82005-08-12 22:14:06 +0000105void BasicBlock::moveBefore(BasicBlock *MovePos) {
106 MovePos->getParent()->getBasicBlockList().splice(MovePos,
107 getParent()->getBasicBlockList(), this);
108}
109
Chris Lattner4091f462006-09-23 04:03:45 +0000110/// moveAfter - Unlink this basic block from its current function and
111/// insert it into the function that MovePos lives in, right after MovePos.
112void BasicBlock::moveAfter(BasicBlock *MovePos) {
113 Function::iterator I = MovePos;
114 MovePos->getParent()->getBasicBlockList().splice(++I,
115 getParent()->getBasicBlockList(), this);
116}
117
Chris Lattner02a71e72004-10-11 22:21:39 +0000118
Chris Lattner2f7c9632001-06-06 20:29:01 +0000119TerminatorInst *BasicBlock::getTerminator() {
120 if (InstList.empty()) return 0;
Chris Lattner113f4f42002-06-25 16:13:24 +0000121 return dyn_cast<TerminatorInst>(&InstList.back());
Chris Lattner2f7c9632001-06-06 20:29:01 +0000122}
123
Dan Gohmanaad83c82007-11-19 20:46:23 +0000124const TerminatorInst *BasicBlock::getTerminator() const {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000125 if (InstList.empty()) return 0;
Chris Lattner113f4f42002-06-25 16:13:24 +0000126 return dyn_cast<TerminatorInst>(&InstList.back());
Chris Lattner2f7c9632001-06-06 20:29:01 +0000127}
128
Dan Gohmanf96e1372008-05-23 21:05:58 +0000129Instruction* BasicBlock::getFirstNonPHI() {
130 BasicBlock::iterator i = begin();
131 // All valid basic blocks should have a terminator,
132 // which is not a PHINode. If we have an invalid basic
133 // block we'll get an assertion failure when dereferencing
134 // a past-the-end iterator.
135 while (isa<PHINode>(i)) ++i;
136 return &*i;
Vladimir Prusb5b6dc42006-06-08 15:46:18 +0000137}
138
Chris Lattner2f7c9632001-06-06 20:29:01 +0000139void BasicBlock::dropAllReferences() {
Chris Lattner113f4f42002-06-25 16:13:24 +0000140 for(iterator I = begin(), E = end(); I != E; ++I)
141 I->dropAllReferences();
Chris Lattner2f7c9632001-06-06 20:29:01 +0000142}
143
Chris Lattnerce046ac2005-02-24 02:37:26 +0000144/// getSinglePredecessor - If this basic block has a single predecessor block,
145/// return the block, otherwise return a null pointer.
146BasicBlock *BasicBlock::getSinglePredecessor() {
147 pred_iterator PI = pred_begin(this), E = pred_end(this);
148 if (PI == E) return 0; // No preds.
149 BasicBlock *ThePred = *PI;
150 ++PI;
151 return (PI == E) ? ThePred : 0 /*multiple preds*/;
152}
153
Torok Edwinc8080122008-12-11 10:36:07 +0000154/// getUniquePredecessor - If this basic block has a unique predecessor block,
155/// return the block, otherwise return a null pointer.
156/// Note that unique predecessor doesn't mean single edge, there can be
Torok Edwin32bfb5d2008-12-11 11:44:49 +0000157/// multiple edges from the unique predecessor to this block (for example
158/// a switch statement with multiple cases having the same destination).
Torok Edwinc8080122008-12-11 10:36:07 +0000159BasicBlock *BasicBlock::getUniquePredecessor() {
160 pred_iterator PI = pred_begin(this), E = pred_end(this);
161 if (PI == E) return 0; // No preds.
162 BasicBlock *PredBB = *PI;
163 ++PI;
164 for (;PI != E; ++PI) {
165 if (*PI != PredBB)
166 return 0;
Torok Edwin32bfb5d2008-12-11 11:44:49 +0000167 // The same predecessor appears multiple times in the predecessor list.
168 // This is OK.
Torok Edwinc8080122008-12-11 10:36:07 +0000169 }
170 return PredBB;
171}
172
Chris Lattner954c64d2005-04-21 16:06:03 +0000173/// removePredecessor - This method is used to notify a BasicBlock that the
174/// specified Predecessor of the block is no longer able to reach it. This is
Misha Brukmanb1c93172005-04-21 23:48:37 +0000175/// actually not used to update the Predecessor list, but is actually used to
Chris Lattner954c64d2005-04-21 16:06:03 +0000176/// update the PHI nodes that reside in the block. Note that this should be
177/// called while the predecessor still refers to this block.
178///
Chris Lattner9daef352005-04-12 18:52:14 +0000179void BasicBlock::removePredecessor(BasicBlock *Pred,
Nick Lewycky4d43d3c2008-04-25 16:53:59 +0000180 bool DontDeleteUselessPHIs) {
Chris Lattner25169ca2005-02-23 16:53:04 +0000181 assert((hasNUsesOrMore(16)||// Reduce cost of this assertion for complex CFGs.
Chris Lattnercf08c212005-02-23 07:09:08 +0000182 find(pred_begin(this), pred_end(this), Pred) != pred_end(this)) &&
Jeff Cohen82639852005-04-23 21:38:35 +0000183 "removePredecessor: BB is not a predecessor!");
Chris Lattnercf08c212005-02-23 07:09:08 +0000184
Chris Lattner8d0b1b22004-12-11 22:10:29 +0000185 if (InstList.empty()) return;
Chris Lattnerbea72472004-07-06 17:44:17 +0000186 PHINode *APN = dyn_cast<PHINode>(&front());
187 if (!APN) return; // Quick exit.
Chris Lattner615d3cf2001-06-29 05:25:23 +0000188
189 // If there are exactly two predecessors, then we want to nuke the PHI nodes
Chris Lattnerbea72472004-07-06 17:44:17 +0000190 // altogether. However, we cannot do this, if this in this case:
Chris Lattnerf7373e42002-05-21 19:52:49 +0000191 //
192 // Loop:
193 // %x = phi [X, Loop]
194 // %x2 = add %x, 1 ;; This would become %x2 = add %x2, 1
195 // br Loop ;; %x2 does not dominate all uses
196 //
197 // This is because the PHI node input is actually taken from the predecessor
Misha Brukmanb1c93172005-04-21 23:48:37 +0000198 // basic block. The only case this can happen is with a self loop, so we
Chris Lattnerf7373e42002-05-21 19:52:49 +0000199 // check for this case explicitly now.
Misha Brukmanb1c93172005-04-21 23:48:37 +0000200 //
Chris Lattnerbea72472004-07-06 17:44:17 +0000201 unsigned max_idx = APN->getNumIncomingValues();
Chris Lattner615d3cf2001-06-29 05:25:23 +0000202 assert(max_idx != 0 && "PHI Node in block with 0 predecessors!?!?!");
Chris Lattnerf7373e42002-05-21 19:52:49 +0000203 if (max_idx == 2) {
Chris Lattnerbea72472004-07-06 17:44:17 +0000204 BasicBlock *Other = APN->getIncomingBlock(APN->getIncomingBlock(0) == Pred);
Chris Lattnerf7373e42002-05-21 19:52:49 +0000205
206 // Disable PHI elimination!
207 if (this == Other) max_idx = 3;
208 }
209
Chris Lattner9daef352005-04-12 18:52:14 +0000210 // <= Two predecessors BEFORE I remove one?
211 if (max_idx <= 2 && !DontDeleteUselessPHIs) {
Chris Lattnerda558102001-10-02 03:41:24 +0000212 // Yup, loop through and nuke the PHI nodes
Chris Lattner113f4f42002-06-25 16:13:24 +0000213 while (PHINode *PN = dyn_cast<PHINode>(&front())) {
Chris Lattner9daef352005-04-12 18:52:14 +0000214 // Remove the predecessor first.
Nick Lewycky4d43d3c2008-04-25 16:53:59 +0000215 PN->removeIncomingValue(Pred, !DontDeleteUselessPHIs);
Chris Lattner615d3cf2001-06-29 05:25:23 +0000216
217 // If the PHI _HAD_ two uses, replace PHI node with its now *single* value
Chris Lattnercaf5b502002-10-08 21:36:34 +0000218 if (max_idx == 2) {
Chris Lattneref8c8332003-04-25 23:14:19 +0000219 if (PN->getOperand(0) != PN)
220 PN->replaceAllUsesWith(PN->getOperand(0));
221 else
222 // We are left with an infinite loop with no entries: kill the PHI.
Owen Andersonb292b8c2009-07-30 23:03:37 +0000223 PN->replaceAllUsesWith(UndefValue::get(PN->getType()));
Chris Lattnercaf5b502002-10-08 21:36:34 +0000224 getInstList().pop_front(); // Remove the PHI node
225 }
226
227 // If the PHI node already only had one entry, it got deleted by
228 // removeIncomingValue.
Chris Lattner615d3cf2001-06-29 05:25:23 +0000229 }
230 } else {
231 // Okay, now we know that we need to remove predecessor #pred_idx from all
232 // PHI nodes. Iterate over each PHI node fixing them up
Chris Lattner708ee9d2004-06-05 00:11:27 +0000233 PHINode *PN;
Chris Lattner1749aaa2005-08-05 15:34:10 +0000234 for (iterator II = begin(); (PN = dyn_cast<PHINode>(II)); ) {
235 ++II;
Nick Lewycky4d43d3c2008-04-25 16:53:59 +0000236 PN->removeIncomingValue(Pred, false);
Nate Begemanb3923212005-08-04 23:24:19 +0000237 // If all incoming values to the Phi are the same, we can replace the Phi
238 // with that value.
Owen Anderson4e744af2006-06-14 04:43:14 +0000239 Value* PNV = 0;
240 if (!DontDeleteUselessPHIs && (PNV = PN->hasConstantValue())) {
Chris Lattner6f583502005-08-05 01:02:04 +0000241 PN->replaceAllUsesWith(PNV);
242 PN->eraseFromParent();
243 }
Nate Begemanb3923212005-08-04 23:24:19 +0000244 }
Chris Lattner615d3cf2001-06-29 05:25:23 +0000245 }
246}
247
Chris Lattner2f7c9632001-06-06 20:29:01 +0000248
Chris Lattner7ceb0812005-04-21 16:04:49 +0000249/// splitBasicBlock - This splits a basic block into two at the specified
250/// instruction. Note that all instructions BEFORE the specified iterator stay
Misha Brukmanb1c93172005-04-21 23:48:37 +0000251/// as part of the original basic block, an unconditional branch is added to
Chris Lattner7ceb0812005-04-21 16:04:49 +0000252/// the new BB, and the rest of the instructions in the BB are moved to the new
253/// BB, including the old terminator. This invalidates the iterator.
254///
Misha Brukmanb1c93172005-04-21 23:48:37 +0000255/// Note that this only works on well formed basic blocks (must have a
Chris Lattner7ceb0812005-04-21 16:04:49 +0000256/// terminator), and 'I' must not be the end of instruction list (which would
257/// cause a degenerate basic block to be formed, having a terminator inside of
Misha Brukmanb1c93172005-04-21 23:48:37 +0000258/// the basic block).
Chris Lattner7ceb0812005-04-21 16:04:49 +0000259///
Daniel Dunbar4975db62009-07-25 04:41:11 +0000260BasicBlock *BasicBlock::splitBasicBlock(iterator I, const Twine &BBName) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000261 assert(getTerminator() && "Can't use splitBasicBlock on degenerate BB!");
Misha Brukmanb1c93172005-04-21 23:48:37 +0000262 assert(I != InstList.end() &&
Jeff Cohen82639852005-04-23 21:38:35 +0000263 "Trying to get me to create degenerate basic block!");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000264
Chris Lattnera48f44d2009-12-03 00:50:42 +0000265 BasicBlock *InsertBefore = llvm::next(Function::iterator(this))
Dan Gohman804c95d2008-07-28 21:51:04 +0000266 .getNodePtrUnchecked();
Owen Anderson55f1c092009-08-13 21:58:54 +0000267 BasicBlock *New = BasicBlock::Create(getContext(), BBName,
268 getParent(), InsertBefore);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000269
Chris Lattnerc4c7ea52004-02-03 23:11:21 +0000270 // Move all of the specified instructions from the original basic block into
271 // the new basic block.
272 New->getInstList().splice(New->end(), this->getInstList(), I, end());
Chris Lattner2f7c9632001-06-06 20:29:01 +0000273
274 // Add a branch instruction to the newly formed basic block.
Gabor Greife9ecc682008-04-06 20:25:17 +0000275 BranchInst::Create(New, this);
Chris Lattner4eed0b82002-02-25 00:35:07 +0000276
277 // Now we must loop through all of the successors of the New block (which
278 // _were_ the successors of the 'this' block), and update any PHI nodes in
279 // successors. If there were PHI nodes in the successors, then they need to
280 // know that incoming branches will be from New, not from Old.
281 //
Chris Lattner64d88bc2003-09-24 22:03:22 +0000282 for (succ_iterator I = succ_begin(New), E = succ_end(New); I != E; ++I) {
Chris Lattner4eed0b82002-02-25 00:35:07 +0000283 // Loop over any phi nodes in the basic block, updating the BB field of
284 // incoming values...
285 BasicBlock *Successor = *I;
Chris Lattner708ee9d2004-06-05 00:11:27 +0000286 PHINode *PN;
Chris Lattner4eed0b82002-02-25 00:35:07 +0000287 for (BasicBlock::iterator II = Successor->begin();
Chris Lattner08d1b9d2004-06-05 17:43:52 +0000288 (PN = dyn_cast<PHINode>(II)); ++II) {
Chris Lattner4eed0b82002-02-25 00:35:07 +0000289 int IDX = PN->getBasicBlockIndex(this);
290 while (IDX != -1) {
291 PN->setIncomingBlock((unsigned)IDX, New);
292 IDX = PN->getBasicBlockIndex(this);
293 }
294 }
295 }
Chris Lattner2f7c9632001-06-06 20:29:01 +0000296 return New;
297}
Dan Gohman39033202009-10-29 00:09:08 +0000298