blob: 70ae3c39842374066a426c9b00ec1424f11b4a43 [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//
Chandler Carruthef860a22013-01-02 09:10:48 +000010// This file implements the BasicBlock class for the IR library.
Chris Lattner2f7c9632001-06-06 20:29:01 +000011//
12//===----------------------------------------------------------------------===//
13
Chandler Carruth9fb823b2013-01-02 11:36:10 +000014#include "llvm/IR/BasicBlock.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000015#include "SymbolTableListTraitsImpl.h"
16#include "llvm/ADT/STLExtras.h"
Chandler Carruth1305dc32014-03-04 11:45:46 +000017#include "llvm/IR/CFG.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000018#include "llvm/IR/Constants.h"
19#include "llvm/IR/Instructions.h"
20#include "llvm/IR/IntrinsicInst.h"
21#include "llvm/IR/LLVMContext.h"
22#include "llvm/IR/Type.h"
Chris Lattner113f4f42002-06-25 16:13:24 +000023#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();
Craig Topperc6207612014-04-09 06:08:46 +000029 return nullptr;
Chris Lattnerb47aa542007-04-17 03:26:42 +000030}
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...
John McCall086bb4e2009-12-19 00:55:12 +000038template class llvm::SymbolTableListTraits<Instruction, BasicBlock>;
Chris Lattner113f4f42002-06-25 16:13:24 +000039
Bill Wendling35a9c3c2011-04-10 23:18:04 +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)
Craig Topperc6207612014-04-09 06:08:46 +000043 : Value(Type::getLabelTy(C), Value::BasicBlockVal), Parent(nullptr) {
Chris Lattner4dfede82002-09-26 05:03:22 +000044
Duncan P. N. Exon Smith17cbb972014-08-01 21:22:04 +000045 if (NewParent)
46 insertInto(NewParent, InsertBefore);
47 else
48 assert(!InsertBefore &&
Chris Lattnerbb5f0db2004-02-04 03:57:50 +000049 "Cannot insert block before another block with no function!");
NAKAMURA Takumi5b64b812011-08-09 23:12:56 +000050
Chris Lattner32ab6432007-02-12 05:18:08 +000051 setName(Name);
Chris Lattner4dfede82002-09-26 05:03:22 +000052}
53
Duncan P. N. Exon Smith17cbb972014-08-01 21:22:04 +000054void BasicBlock::insertInto(Function *NewParent, BasicBlock *InsertBefore) {
55 assert(NewParent && "Expected a parent");
56 assert(!Parent && "Already has a parent");
57
58 if (InsertBefore)
59 NewParent->getBasicBlockList().insert(InsertBefore, this);
60 else
61 NewParent->getBasicBlockList().push_back(this);
62}
Bill Wendling35a9c3c2011-04-10 23:18:04 +000063
Gordon Henriksen14a55692007-12-10 02:14:30 +000064BasicBlock::~BasicBlock() {
Chris Lattnerdd5d0352009-10-30 22:39:36 +000065 // If the address of the block is taken and it is being deleted (e.g. because
66 // it is dead), this means that there is either a dangling constant expr
67 // hanging off the block, or an undefined use of the block (source code
68 // expecting the address of a label to keep the block alive even though there
69 // is no indirect branch). Handle these cases by zapping the BlockAddress
Chris Lattneraa99c942009-11-01 01:27:45 +000070 // nodes. There are no other possible uses at this point.
Chris Lattnerdd5d0352009-10-30 22:39:36 +000071 if (hasAddressTaken()) {
72 assert(!use_empty() && "There should be at least one blockaddress!");
Chris Lattneraa99c942009-11-01 01:27:45 +000073 Constant *Replacement =
74 ConstantInt::get(llvm::Type::getInt32Ty(getContext()), 1);
Chris Lattnerdd5d0352009-10-30 22:39:36 +000075 while (!use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +000076 BlockAddress *BA = cast<BlockAddress>(user_back());
Chris Lattneraa99c942009-11-01 01:27:45 +000077 BA->replaceAllUsesWith(ConstantExpr::getIntToPtr(Replacement,
78 BA->getType()));
Chris Lattnerdd5d0352009-10-30 22:39:36 +000079 BA->destroyConstant();
80 }
81 }
NAKAMURA Takumi5b64b812011-08-09 23:12:56 +000082
Craig Topper2617dcc2014-04-15 06:32:26 +000083 assert(getParent() == nullptr && "BasicBlock still linked into the program!");
Gordon Henriksen14a55692007-12-10 02:14:30 +000084 dropAllReferences();
85 InstList.clear();
Chris Lattner2f7c9632001-06-06 20:29:01 +000086}
87
Chris Lattner9ed7aef2002-09-06 21:33:15 +000088void BasicBlock::setParent(Function *parent) {
Chris Lattnerb47aa542007-04-17 03:26:42 +000089 // Set Parent=parent, updating instruction symtab entries as appropriate.
90 InstList.setSymTabObject(&Parent, parent);
Chris Lattner9ed7aef2002-09-06 21:33:15 +000091}
92
Chris Lattner02a71e72004-10-11 22:21:39 +000093void BasicBlock::removeFromParent() {
94 getParent()->getBasicBlockList().remove(this);
95}
96
Daniel Berlin0bf7ff52015-04-03 01:20:33 +000097iplist<BasicBlock>::iterator BasicBlock::eraseFromParent() {
98 return getParent()->getBasicBlockList().erase(this);
Chris Lattner02a71e72004-10-11 22:21:39 +000099}
100
Sanjay Patelaf0ff102015-02-27 18:07:41 +0000101/// Unlink this basic block from its current function and
Chris Lattner4091f462006-09-23 04:03:45 +0000102/// insert it into the function that MovePos lives in, right before MovePos.
Chris Lattnere09bbc82005-08-12 22:14:06 +0000103void BasicBlock::moveBefore(BasicBlock *MovePos) {
104 MovePos->getParent()->getBasicBlockList().splice(MovePos,
105 getParent()->getBasicBlockList(), this);
106}
107
Sanjay Patelaf0ff102015-02-27 18:07:41 +0000108/// Unlink this basic block from its current function and
Chris Lattner4091f462006-09-23 04:03:45 +0000109/// insert it into the function that MovePos lives in, right after MovePos.
110void BasicBlock::moveAfter(BasicBlock *MovePos) {
111 Function::iterator I = MovePos;
112 MovePos->getParent()->getBasicBlockList().splice(++I,
113 getParent()->getBasicBlockList(), this);
114}
115
Mehdi Amini9a9738f2015-03-03 22:01:13 +0000116const Module *BasicBlock::getModule() const {
117 return getParent()->getParent();
118}
Chris Lattner02a71e72004-10-11 22:21:39 +0000119
Philip Reames388402452015-05-26 21:03:23 +0000120Module *BasicBlock::getModule() {
121 return getParent()->getParent();
122}
123
Chris Lattner2f7c9632001-06-06 20:29:01 +0000124TerminatorInst *BasicBlock::getTerminator() {
Craig Topperc6207612014-04-09 06:08:46 +0000125 if (InstList.empty()) return nullptr;
Chris Lattner113f4f42002-06-25 16:13:24 +0000126 return dyn_cast<TerminatorInst>(&InstList.back());
Chris Lattner2f7c9632001-06-06 20:29:01 +0000127}
128
Dan Gohmanaad83c82007-11-19 20:46:23 +0000129const TerminatorInst *BasicBlock::getTerminator() const {
Craig Topperc6207612014-04-09 06:08:46 +0000130 if (InstList.empty()) return nullptr;
Chris Lattner113f4f42002-06-25 16:13:24 +0000131 return dyn_cast<TerminatorInst>(&InstList.back());
Chris Lattner2f7c9632001-06-06 20:29:01 +0000132}
133
Reid Klecknere31acf22014-08-12 00:05:15 +0000134CallInst *BasicBlock::getTerminatingMustTailCall() {
135 if (InstList.empty())
136 return nullptr;
137 ReturnInst *RI = dyn_cast<ReturnInst>(&InstList.back());
138 if (!RI || RI == &InstList.front())
139 return nullptr;
140
141 Instruction *Prev = RI->getPrevNode();
142 if (!Prev)
143 return nullptr;
144
145 if (Value *RV = RI->getReturnValue()) {
146 if (RV != Prev)
147 return nullptr;
148
149 // Look through the optional bitcast.
150 if (auto *BI = dyn_cast<BitCastInst>(Prev)) {
151 RV = BI->getOperand(0);
152 Prev = BI->getPrevNode();
153 if (!Prev || RV != Prev)
154 return nullptr;
155 }
156 }
157
158 if (auto *CI = dyn_cast<CallInst>(Prev)) {
159 if (CI->isMustTailCall())
160 return CI;
161 }
162 return nullptr;
163}
164
Dan Gohmanf96e1372008-05-23 21:05:58 +0000165Instruction* BasicBlock::getFirstNonPHI() {
166 BasicBlock::iterator i = begin();
167 // All valid basic blocks should have a terminator,
168 // which is not a PHINode. If we have an invalid basic
169 // block we'll get an assertion failure when dereferencing
170 // a past-the-end iterator.
171 while (isa<PHINode>(i)) ++i;
172 return &*i;
Vladimir Prusb5b6dc42006-06-08 15:46:18 +0000173}
174
Dale Johannesenc268ced2010-04-02 21:49:27 +0000175Instruction* BasicBlock::getFirstNonPHIOrDbg() {
176 BasicBlock::iterator i = begin();
177 // All valid basic blocks should have a terminator,
178 // which is not a PHINode. If we have an invalid basic
179 // block we'll get an assertion failure when dereferencing
180 // a past-the-end iterator.
181 while (isa<PHINode>(i) || isa<DbgInfoIntrinsic>(i)) ++i;
182 return &*i;
183}
184
Rafael Espindolab10a0f22011-06-30 20:14:24 +0000185Instruction* BasicBlock::getFirstNonPHIOrDbgOrLifetime() {
186 // All valid basic blocks should have a terminator,
187 // which is not a PHINode. If we have an invalid basic
188 // block we'll get an assertion failure when dereferencing
189 // a past-the-end iterator.
190 BasicBlock::iterator i = begin();
191 for (;; ++i) {
192 if (isa<PHINode>(i) || isa<DbgInfoIntrinsic>(i))
193 continue;
194
195 const IntrinsicInst *II = dyn_cast<IntrinsicInst>(i);
196 if (!II)
197 break;
198 if (II->getIntrinsicID() != Intrinsic::lifetime_start &&
199 II->getIntrinsicID() != Intrinsic::lifetime_end)
200 break;
201 }
202 return &*i;
203}
204
Bill Wendlingee1c2d22011-08-16 20:42:52 +0000205BasicBlock::iterator BasicBlock::getFirstInsertionPt() {
206 iterator InsertPt = getFirstNonPHI();
207 if (isa<LandingPadInst>(InsertPt)) ++InsertPt;
208 return InsertPt;
209}
210
Chris Lattner2f7c9632001-06-06 20:29:01 +0000211void BasicBlock::dropAllReferences() {
Chris Lattner113f4f42002-06-25 16:13:24 +0000212 for(iterator I = begin(), E = end(); I != E; ++I)
213 I->dropAllReferences();
Chris Lattner2f7c9632001-06-06 20:29:01 +0000214}
215
Sanjay Patelaf0ff102015-02-27 18:07:41 +0000216/// If this basic block has a single predecessor block,
Chris Lattnerce046ac2005-02-24 02:37:26 +0000217/// return the block, otherwise return a null pointer.
218BasicBlock *BasicBlock::getSinglePredecessor() {
219 pred_iterator PI = pred_begin(this), E = pred_end(this);
Craig Topperc6207612014-04-09 06:08:46 +0000220 if (PI == E) return nullptr; // No preds.
Chris Lattnerce046ac2005-02-24 02:37:26 +0000221 BasicBlock *ThePred = *PI;
222 ++PI;
Craig Topperc6207612014-04-09 06:08:46 +0000223 return (PI == E) ? ThePred : nullptr /*multiple preds*/;
Chris Lattnerce046ac2005-02-24 02:37:26 +0000224}
225
Sanjay Patelaf0ff102015-02-27 18:07:41 +0000226/// If this basic block has a unique predecessor block,
Torok Edwinc8080122008-12-11 10:36:07 +0000227/// return the block, otherwise return a null pointer.
NAKAMURA Takumi5b64b812011-08-09 23:12:56 +0000228/// Note that unique predecessor doesn't mean single edge, there can be
229/// multiple edges from the unique predecessor to this block (for example
Torok Edwin32bfb5d2008-12-11 11:44:49 +0000230/// a switch statement with multiple cases having the same destination).
Torok Edwinc8080122008-12-11 10:36:07 +0000231BasicBlock *BasicBlock::getUniquePredecessor() {
232 pred_iterator PI = pred_begin(this), E = pred_end(this);
Craig Topperc6207612014-04-09 06:08:46 +0000233 if (PI == E) return nullptr; // No preds.
Torok Edwinc8080122008-12-11 10:36:07 +0000234 BasicBlock *PredBB = *PI;
235 ++PI;
236 for (;PI != E; ++PI) {
237 if (*PI != PredBB)
Craig Topperc6207612014-04-09 06:08:46 +0000238 return nullptr;
Torok Edwin32bfb5d2008-12-11 11:44:49 +0000239 // The same predecessor appears multiple times in the predecessor list.
240 // This is OK.
Torok Edwinc8080122008-12-11 10:36:07 +0000241 }
242 return PredBB;
243}
244
Jingyue Wu154eb5a2015-05-15 17:54:48 +0000245BasicBlock *BasicBlock::getSingleSuccessor() {
246 succ_iterator SI = succ_begin(this), E = succ_end(this);
247 if (SI == E) return nullptr; // no successors
248 BasicBlock *TheSucc = *SI;
249 ++SI;
250 return (SI == E) ? TheSucc : nullptr /* multiple successors */;
251}
252
Philip Reames47cc6732015-02-04 00:37:33 +0000253BasicBlock *BasicBlock::getUniqueSuccessor() {
254 succ_iterator SI = succ_begin(this), E = succ_end(this);
255 if (SI == E) return NULL; // No successors
256 BasicBlock *SuccBB = *SI;
257 ++SI;
258 for (;SI != E; ++SI) {
259 if (*SI != SuccBB)
260 return NULL;
261 // The same successor appears multiple times in the successor list.
262 // This is OK.
263 }
264 return SuccBB;
265}
266
Sanjay Patelaf0ff102015-02-27 18:07:41 +0000267/// This method is used to notify a BasicBlock that the
Chris Lattner954c64d2005-04-21 16:06:03 +0000268/// specified Predecessor of the block is no longer able to reach it. This is
Misha Brukmanb1c93172005-04-21 23:48:37 +0000269/// actually not used to update the Predecessor list, but is actually used to
Chris Lattner954c64d2005-04-21 16:06:03 +0000270/// update the PHI nodes that reside in the block. Note that this should be
271/// called while the predecessor still refers to this block.
272///
Chris Lattner9daef352005-04-12 18:52:14 +0000273void BasicBlock::removePredecessor(BasicBlock *Pred,
Nick Lewycky4d43d3c2008-04-25 16:53:59 +0000274 bool DontDeleteUselessPHIs) {
Chris Lattner25169ca2005-02-23 16:53:04 +0000275 assert((hasNUsesOrMore(16)||// Reduce cost of this assertion for complex CFGs.
Chris Lattnercf08c212005-02-23 07:09:08 +0000276 find(pred_begin(this), pred_end(this), Pred) != pred_end(this)) &&
Jeff Cohen82639852005-04-23 21:38:35 +0000277 "removePredecessor: BB is not a predecessor!");
Chris Lattnercf08c212005-02-23 07:09:08 +0000278
Chris Lattner8d0b1b22004-12-11 22:10:29 +0000279 if (InstList.empty()) return;
Chris Lattnerbea72472004-07-06 17:44:17 +0000280 PHINode *APN = dyn_cast<PHINode>(&front());
281 if (!APN) return; // Quick exit.
Chris Lattner615d3cf2001-06-29 05:25:23 +0000282
283 // If there are exactly two predecessors, then we want to nuke the PHI nodes
Chris Lattnerbea72472004-07-06 17:44:17 +0000284 // altogether. However, we cannot do this, if this in this case:
Chris Lattnerf7373e42002-05-21 19:52:49 +0000285 //
286 // Loop:
287 // %x = phi [X, Loop]
288 // %x2 = add %x, 1 ;; This would become %x2 = add %x2, 1
289 // br Loop ;; %x2 does not dominate all uses
290 //
291 // This is because the PHI node input is actually taken from the predecessor
Misha Brukmanb1c93172005-04-21 23:48:37 +0000292 // basic block. The only case this can happen is with a self loop, so we
Chris Lattnerf7373e42002-05-21 19:52:49 +0000293 // check for this case explicitly now.
Misha Brukmanb1c93172005-04-21 23:48:37 +0000294 //
Chris Lattnerbea72472004-07-06 17:44:17 +0000295 unsigned max_idx = APN->getNumIncomingValues();
Chris Lattner615d3cf2001-06-29 05:25:23 +0000296 assert(max_idx != 0 && "PHI Node in block with 0 predecessors!?!?!");
Chris Lattnerf7373e42002-05-21 19:52:49 +0000297 if (max_idx == 2) {
Chris Lattnerbea72472004-07-06 17:44:17 +0000298 BasicBlock *Other = APN->getIncomingBlock(APN->getIncomingBlock(0) == Pred);
Chris Lattnerf7373e42002-05-21 19:52:49 +0000299
300 // Disable PHI elimination!
301 if (this == Other) max_idx = 3;
302 }
303
Chris Lattner9daef352005-04-12 18:52:14 +0000304 // <= Two predecessors BEFORE I remove one?
305 if (max_idx <= 2 && !DontDeleteUselessPHIs) {
Chris Lattnerda558102001-10-02 03:41:24 +0000306 // Yup, loop through and nuke the PHI nodes
Chris Lattner113f4f42002-06-25 16:13:24 +0000307 while (PHINode *PN = dyn_cast<PHINode>(&front())) {
Chris Lattner9daef352005-04-12 18:52:14 +0000308 // Remove the predecessor first.
Nick Lewycky4d43d3c2008-04-25 16:53:59 +0000309 PN->removeIncomingValue(Pred, !DontDeleteUselessPHIs);
Chris Lattner615d3cf2001-06-29 05:25:23 +0000310
311 // If the PHI _HAD_ two uses, replace PHI node with its now *single* value
Chris Lattnercaf5b502002-10-08 21:36:34 +0000312 if (max_idx == 2) {
Jay Foad372ad642011-06-20 14:18:48 +0000313 if (PN->getIncomingValue(0) != PN)
314 PN->replaceAllUsesWith(PN->getIncomingValue(0));
Chris Lattneref8c8332003-04-25 23:14:19 +0000315 else
316 // We are left with an infinite loop with no entries: kill the PHI.
Owen Andersonb292b8c2009-07-30 23:03:37 +0000317 PN->replaceAllUsesWith(UndefValue::get(PN->getType()));
Chris Lattnercaf5b502002-10-08 21:36:34 +0000318 getInstList().pop_front(); // Remove the PHI node
319 }
320
321 // If the PHI node already only had one entry, it got deleted by
322 // removeIncomingValue.
Chris Lattner615d3cf2001-06-29 05:25:23 +0000323 }
324 } else {
325 // Okay, now we know that we need to remove predecessor #pred_idx from all
326 // PHI nodes. Iterate over each PHI node fixing them up
Chris Lattner708ee9d2004-06-05 00:11:27 +0000327 PHINode *PN;
Chris Lattner1749aaa2005-08-05 15:34:10 +0000328 for (iterator II = begin(); (PN = dyn_cast<PHINode>(II)); ) {
329 ++II;
Nick Lewycky4d43d3c2008-04-25 16:53:59 +0000330 PN->removeIncomingValue(Pred, false);
Nate Begemanb3923212005-08-04 23:24:19 +0000331 // If all incoming values to the Phi are the same, we can replace the Phi
332 // with that value.
Craig Topperc6207612014-04-09 06:08:46 +0000333 Value* PNV = nullptr;
Duncan Sandsec7a6ec2010-11-17 10:23:23 +0000334 if (!DontDeleteUselessPHIs && (PNV = PN->hasConstantValue()))
335 if (PNV != PN) {
336 PN->replaceAllUsesWith(PNV);
337 PN->eraseFromParent();
338 }
Nate Begemanb3923212005-08-04 23:24:19 +0000339 }
Chris Lattner615d3cf2001-06-29 05:25:23 +0000340 }
341}
342
Chris Lattner2f7c9632001-06-06 20:29:01 +0000343
Sanjay Patelaf0ff102015-02-27 18:07:41 +0000344/// This splits a basic block into two at the specified
Chris Lattner7ceb0812005-04-21 16:04:49 +0000345/// instruction. Note that all instructions BEFORE the specified iterator stay
Misha Brukmanb1c93172005-04-21 23:48:37 +0000346/// as part of the original basic block, an unconditional branch is added to
Chris Lattner7ceb0812005-04-21 16:04:49 +0000347/// the new BB, and the rest of the instructions in the BB are moved to the new
348/// BB, including the old terminator. This invalidates the iterator.
349///
Misha Brukmanb1c93172005-04-21 23:48:37 +0000350/// Note that this only works on well formed basic blocks (must have a
Chris Lattner7ceb0812005-04-21 16:04:49 +0000351/// terminator), and 'I' must not be the end of instruction list (which would
352/// cause a degenerate basic block to be formed, having a terminator inside of
Misha Brukmanb1c93172005-04-21 23:48:37 +0000353/// the basic block).
Chris Lattner7ceb0812005-04-21 16:04:49 +0000354///
Daniel Dunbar4975db62009-07-25 04:41:11 +0000355BasicBlock *BasicBlock::splitBasicBlock(iterator I, const Twine &BBName) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000356 assert(getTerminator() && "Can't use splitBasicBlock on degenerate BB!");
Misha Brukmanb1c93172005-04-21 23:48:37 +0000357 assert(I != InstList.end() &&
Jeff Cohen82639852005-04-23 21:38:35 +0000358 "Trying to get me to create degenerate basic block!");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000359
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000360 BasicBlock *InsertBefore = std::next(Function::iterator(this))
Dan Gohman804c95d2008-07-28 21:51:04 +0000361 .getNodePtrUnchecked();
Owen Anderson55f1c092009-08-13 21:58:54 +0000362 BasicBlock *New = BasicBlock::Create(getContext(), BBName,
363 getParent(), InsertBefore);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000364
Chris Lattnerc4c7ea52004-02-03 23:11:21 +0000365 // Move all of the specified instructions from the original basic block into
366 // the new basic block.
367 New->getInstList().splice(New->end(), this->getInstList(), I, end());
Chris Lattner2f7c9632001-06-06 20:29:01 +0000368
369 // Add a branch instruction to the newly formed basic block.
Gabor Greife9ecc682008-04-06 20:25:17 +0000370 BranchInst::Create(New, this);
Chris Lattner4eed0b82002-02-25 00:35:07 +0000371
372 // Now we must loop through all of the successors of the New block (which
373 // _were_ the successors of the 'this' block), and update any PHI nodes in
374 // successors. If there were PHI nodes in the successors, then they need to
375 // know that incoming branches will be from New, not from Old.
376 //
Duncan P. N. Exon Smith6c990152014-07-21 17:06:51 +0000377 for (succ_iterator I = succ_begin(New), E = succ_end(New); I != E; ++I) {
Chris Lattner4eed0b82002-02-25 00:35:07 +0000378 // Loop over any phi nodes in the basic block, updating the BB field of
379 // incoming values...
Duncan P. N. Exon Smith6c990152014-07-21 17:06:51 +0000380 BasicBlock *Successor = *I;
Chris Lattner708ee9d2004-06-05 00:11:27 +0000381 PHINode *PN;
Chris Lattner4eed0b82002-02-25 00:35:07 +0000382 for (BasicBlock::iterator II = Successor->begin();
Chris Lattner08d1b9d2004-06-05 17:43:52 +0000383 (PN = dyn_cast<PHINode>(II)); ++II) {
Chris Lattner4eed0b82002-02-25 00:35:07 +0000384 int IDX = PN->getBasicBlockIndex(this);
385 while (IDX != -1) {
386 PN->setIncomingBlock((unsigned)IDX, New);
387 IDX = PN->getBasicBlockIndex(this);
388 }
389 }
390 }
Chris Lattner2f7c9632001-06-06 20:29:01 +0000391 return New;
392}
Dan Gohman39033202009-10-29 00:09:08 +0000393
Jay Foad61ea0e42011-06-23 09:09:15 +0000394void BasicBlock::replaceSuccessorsPhiUsesWith(BasicBlock *New) {
395 TerminatorInst *TI = getTerminator();
396 if (!TI)
397 // Cope with being called on a BasicBlock that doesn't have a terminator
398 // yet. Clang's CodeGenFunction::EmitReturnBlock() likes to do this.
399 return;
400 for (unsigned i = 0, e = TI->getNumSuccessors(); i != e; ++i) {
401 BasicBlock *Succ = TI->getSuccessor(i);
NAKAMURA Takumi4f041652011-08-09 23:13:05 +0000402 // N.B. Succ might not be a complete BasicBlock, so don't assume
403 // that it ends with a non-phi instruction.
404 for (iterator II = Succ->begin(), IE = Succ->end(); II != IE; ++II) {
405 PHINode *PN = dyn_cast<PHINode>(II);
406 if (!PN)
407 break;
Jay Foad61ea0e42011-06-23 09:09:15 +0000408 int i;
409 while ((i = PN->getBasicBlockIndex(this)) >= 0)
410 PN->setIncomingBlock(i, New);
411 }
412 }
413}
Bill Wendlingfae14752011-08-12 20:24:12 +0000414
Sanjay Patelaf0ff102015-02-27 18:07:41 +0000415/// Return true if this basic block is a landing pad. I.e., it's
Bill Wendlingfae14752011-08-12 20:24:12 +0000416/// the destination of the 'unwind' edge of an invoke instruction.
417bool BasicBlock::isLandingPad() const {
418 return isa<LandingPadInst>(getFirstNonPHI());
419}
420
Sanjay Patelaf0ff102015-02-27 18:07:41 +0000421/// Return the landingpad instruction associated with the landing pad.
Bill Wendlingfae14752011-08-12 20:24:12 +0000422LandingPadInst *BasicBlock::getLandingPadInst() {
423 return dyn_cast<LandingPadInst>(getFirstNonPHI());
424}
Bill Wendlingbd7ed6f2012-01-31 00:26:24 +0000425const LandingPadInst *BasicBlock::getLandingPadInst() const {
426 return dyn_cast<LandingPadInst>(getFirstNonPHI());
427}