blob: 3e29f05d51dcfa7bc759ecc10da246fde5047d7c [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"
Dale Johannesenc268ced2010-04-02 21:49:27 +000017#include "llvm/IntrinsicInst.h"
Owen Anderson155dccd82009-07-07 23:43:39 +000018#include "llvm/LLVMContext.h"
Chris Lattner2f7c9632001-06-06 20:29:01 +000019#include "llvm/Type.h"
Dan Gohman804c95d2008-07-28 21:51:04 +000020#include "llvm/ADT/STLExtras.h"
Chris Lattner83d485b2002-02-12 22:39:50 +000021#include "llvm/Support/CFG.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000022#include "llvm/Support/LeakDetector.h"
Chris Lattner113f4f42002-06-25 16:13:24 +000023#include "SymbolTableListTraitsImpl.h"
24#include <algorithm>
Chris Lattnera2960002003-11-21 16:52:05 +000025using namespace llvm;
Chris Lattner2f7c9632001-06-06 20:29:01 +000026
Gabor Greif51bbcf82009-03-07 12:33:24 +000027ValueSymbolTable *BasicBlock::getValueSymbolTable() {
28 if (Function *F = getParent())
29 return &F->getValueSymbolTable();
Chris Lattnerb47aa542007-04-17 03:26:42 +000030 return 0;
31}
32
Owen Anderson47db9412009-07-22 00:24:57 +000033LLVMContext &BasicBlock::getContext() const {
34 return getType()->getContext();
Owen Andersone70b6372009-07-05 22:41:43 +000035}
36
Chris Lattner113f4f42002-06-25 16:13:24 +000037// Explicit instantiation of SymbolTableListTraits since some of the methods
38// are not in the public header file...
John McCall086bb4e2009-12-19 00:55:12 +000039template class llvm::SymbolTableListTraits<Instruction, BasicBlock>;
Chris Lattner113f4f42002-06-25 16:13:24 +000040
Bill Wendling35a9c3c2011-04-10 23:18:04 +000041
Owen Anderson55f1c092009-08-13 21:58:54 +000042BasicBlock::BasicBlock(LLVMContext &C, const Twine &Name, Function *NewParent,
Nick Lewycky4d43d3c2008-04-25 16:53:59 +000043 BasicBlock *InsertBefore)
Bill Wendling35a9c3c2011-04-10 23:18:04 +000044 : Value(Type::getLabelTy(C), Value::BasicBlockVal), Parent(0) {
Chris Lattner4dfede82002-09-26 05:03:22 +000045
46 // Make sure that we get added to a function
47 LeakDetector::addGarbageObject(this);
48
49 if (InsertBefore) {
Chris Lattnerb47aa542007-04-17 03:26:42 +000050 assert(NewParent &&
Chris Lattnerbb5f0db2004-02-04 03:57:50 +000051 "Cannot insert block before another block with no function!");
Chris Lattnerb47aa542007-04-17 03:26:42 +000052 NewParent->getBasicBlockList().insert(InsertBefore, this);
53 } else if (NewParent) {
54 NewParent->getBasicBlockList().push_back(this);
Chris Lattner4dfede82002-09-26 05:03:22 +000055 }
NAKAMURA Takumi5b64b812011-08-09 23:12:56 +000056
Chris Lattner32ab6432007-02-12 05:18:08 +000057 setName(Name);
Chris Lattner4dfede82002-09-26 05:03:22 +000058}
59
Bill Wendling35a9c3c2011-04-10 23:18:04 +000060
Gordon Henriksen14a55692007-12-10 02:14:30 +000061BasicBlock::~BasicBlock() {
Chris Lattnerdd5d0352009-10-30 22:39:36 +000062 // If the address of the block is taken and it is being deleted (e.g. because
63 // it is dead), this means that there is either a dangling constant expr
64 // hanging off the block, or an undefined use of the block (source code
65 // expecting the address of a label to keep the block alive even though there
66 // is no indirect branch). Handle these cases by zapping the BlockAddress
Chris Lattneraa99c942009-11-01 01:27:45 +000067 // nodes. There are no other possible uses at this point.
Chris Lattnerdd5d0352009-10-30 22:39:36 +000068 if (hasAddressTaken()) {
69 assert(!use_empty() && "There should be at least one blockaddress!");
Chris Lattneraa99c942009-11-01 01:27:45 +000070 Constant *Replacement =
71 ConstantInt::get(llvm::Type::getInt32Ty(getContext()), 1);
Chris Lattnerdd5d0352009-10-30 22:39:36 +000072 while (!use_empty()) {
73 BlockAddress *BA = cast<BlockAddress>(use_back());
Chris Lattneraa99c942009-11-01 01:27:45 +000074 BA->replaceAllUsesWith(ConstantExpr::getIntToPtr(Replacement,
75 BA->getType()));
Chris Lattnerdd5d0352009-10-30 22:39:36 +000076 BA->destroyConstant();
77 }
78 }
NAKAMURA Takumi5b64b812011-08-09 23:12:56 +000079
Gordon Henriksen14a55692007-12-10 02:14:30 +000080 assert(getParent() == 0 && "BasicBlock still linked into the program!");
81 dropAllReferences();
82 InstList.clear();
Chris Lattner2f7c9632001-06-06 20:29:01 +000083}
84
Chris Lattner9ed7aef2002-09-06 21:33:15 +000085void BasicBlock::setParent(Function *parent) {
Chris Lattner184b2982002-09-08 18:59:35 +000086 if (getParent())
87 LeakDetector::addGarbageObject(this);
88
Chris Lattnerb47aa542007-04-17 03:26:42 +000089 // Set Parent=parent, updating instruction symtab entries as appropriate.
90 InstList.setSymTabObject(&Parent, parent);
Chris Lattner184b2982002-09-08 18:59:35 +000091
92 if (getParent())
93 LeakDetector::removeGarbageObject(this);
Chris Lattner9ed7aef2002-09-06 21:33:15 +000094}
95
Chris Lattner02a71e72004-10-11 22:21:39 +000096void BasicBlock::removeFromParent() {
97 getParent()->getBasicBlockList().remove(this);
98}
99
100void BasicBlock::eraseFromParent() {
101 getParent()->getBasicBlockList().erase(this);
102}
103
Chris Lattner4091f462006-09-23 04:03:45 +0000104/// moveBefore - Unlink this basic block from its current function and
105/// insert it into the function that MovePos lives in, right before MovePos.
Chris Lattnere09bbc82005-08-12 22:14:06 +0000106void BasicBlock::moveBefore(BasicBlock *MovePos) {
107 MovePos->getParent()->getBasicBlockList().splice(MovePos,
108 getParent()->getBasicBlockList(), this);
109}
110
Chris Lattner4091f462006-09-23 04:03:45 +0000111/// moveAfter - Unlink this basic block from its current function and
112/// insert it into the function that MovePos lives in, right after MovePos.
113void BasicBlock::moveAfter(BasicBlock *MovePos) {
114 Function::iterator I = MovePos;
115 MovePos->getParent()->getBasicBlockList().splice(++I,
116 getParent()->getBasicBlockList(), this);
117}
118
Chris Lattner02a71e72004-10-11 22:21:39 +0000119
Chris Lattner2f7c9632001-06-06 20:29:01 +0000120TerminatorInst *BasicBlock::getTerminator() {
121 if (InstList.empty()) return 0;
Chris Lattner113f4f42002-06-25 16:13:24 +0000122 return dyn_cast<TerminatorInst>(&InstList.back());
Chris Lattner2f7c9632001-06-06 20:29:01 +0000123}
124
Dan Gohmanaad83c82007-11-19 20:46:23 +0000125const TerminatorInst *BasicBlock::getTerminator() const {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000126 if (InstList.empty()) return 0;
Chris Lattner113f4f42002-06-25 16:13:24 +0000127 return dyn_cast<TerminatorInst>(&InstList.back());
Chris Lattner2f7c9632001-06-06 20:29:01 +0000128}
129
Dan Gohmanf96e1372008-05-23 21:05:58 +0000130Instruction* BasicBlock::getFirstNonPHI() {
131 BasicBlock::iterator i = begin();
132 // All valid basic blocks should have a terminator,
133 // which is not a PHINode. If we have an invalid basic
134 // block we'll get an assertion failure when dereferencing
135 // a past-the-end iterator.
136 while (isa<PHINode>(i)) ++i;
137 return &*i;
Vladimir Prusb5b6dc42006-06-08 15:46:18 +0000138}
139
Dale Johannesenc268ced2010-04-02 21:49:27 +0000140Instruction* BasicBlock::getFirstNonPHIOrDbg() {
141 BasicBlock::iterator i = begin();
142 // All valid basic blocks should have a terminator,
143 // which is not a PHINode. If we have an invalid basic
144 // block we'll get an assertion failure when dereferencing
145 // a past-the-end iterator.
146 while (isa<PHINode>(i) || isa<DbgInfoIntrinsic>(i)) ++i;
147 return &*i;
148}
149
Rafael Espindolab10a0f22011-06-30 20:14:24 +0000150Instruction* BasicBlock::getFirstNonPHIOrDbgOrLifetime() {
151 // All valid basic blocks should have a terminator,
152 // which is not a PHINode. If we have an invalid basic
153 // block we'll get an assertion failure when dereferencing
154 // a past-the-end iterator.
155 BasicBlock::iterator i = begin();
156 for (;; ++i) {
157 if (isa<PHINode>(i) || isa<DbgInfoIntrinsic>(i))
158 continue;
159
160 const IntrinsicInst *II = dyn_cast<IntrinsicInst>(i);
161 if (!II)
162 break;
163 if (II->getIntrinsicID() != Intrinsic::lifetime_start &&
164 II->getIntrinsicID() != Intrinsic::lifetime_end)
165 break;
166 }
167 return &*i;
168}
169
Chris Lattner2f7c9632001-06-06 20:29:01 +0000170void BasicBlock::dropAllReferences() {
Chris Lattner113f4f42002-06-25 16:13:24 +0000171 for(iterator I = begin(), E = end(); I != E; ++I)
172 I->dropAllReferences();
Chris Lattner2f7c9632001-06-06 20:29:01 +0000173}
174
Chris Lattnerce046ac2005-02-24 02:37:26 +0000175/// getSinglePredecessor - If this basic block has a single predecessor block,
176/// return the block, otherwise return a null pointer.
177BasicBlock *BasicBlock::getSinglePredecessor() {
178 pred_iterator PI = pred_begin(this), E = pred_end(this);
179 if (PI == E) return 0; // No preds.
180 BasicBlock *ThePred = *PI;
181 ++PI;
182 return (PI == E) ? ThePred : 0 /*multiple preds*/;
183}
184
Torok Edwinc8080122008-12-11 10:36:07 +0000185/// getUniquePredecessor - If this basic block has a unique predecessor block,
186/// return the block, otherwise return a null pointer.
NAKAMURA Takumi5b64b812011-08-09 23:12:56 +0000187/// Note that unique predecessor doesn't mean single edge, there can be
188/// multiple edges from the unique predecessor to this block (for example
Torok Edwin32bfb5d2008-12-11 11:44:49 +0000189/// a switch statement with multiple cases having the same destination).
Torok Edwinc8080122008-12-11 10:36:07 +0000190BasicBlock *BasicBlock::getUniquePredecessor() {
191 pred_iterator PI = pred_begin(this), E = pred_end(this);
192 if (PI == E) return 0; // No preds.
193 BasicBlock *PredBB = *PI;
194 ++PI;
195 for (;PI != E; ++PI) {
196 if (*PI != PredBB)
197 return 0;
Torok Edwin32bfb5d2008-12-11 11:44:49 +0000198 // The same predecessor appears multiple times in the predecessor list.
199 // This is OK.
Torok Edwinc8080122008-12-11 10:36:07 +0000200 }
201 return PredBB;
202}
203
Chris Lattner954c64d2005-04-21 16:06:03 +0000204/// removePredecessor - This method is used to notify a BasicBlock that the
205/// specified Predecessor of the block is no longer able to reach it. This is
Misha Brukmanb1c93172005-04-21 23:48:37 +0000206/// actually not used to update the Predecessor list, but is actually used to
Chris Lattner954c64d2005-04-21 16:06:03 +0000207/// update the PHI nodes that reside in the block. Note that this should be
208/// called while the predecessor still refers to this block.
209///
Chris Lattner9daef352005-04-12 18:52:14 +0000210void BasicBlock::removePredecessor(BasicBlock *Pred,
Nick Lewycky4d43d3c2008-04-25 16:53:59 +0000211 bool DontDeleteUselessPHIs) {
Chris Lattner25169ca2005-02-23 16:53:04 +0000212 assert((hasNUsesOrMore(16)||// Reduce cost of this assertion for complex CFGs.
Chris Lattnercf08c212005-02-23 07:09:08 +0000213 find(pred_begin(this), pred_end(this), Pred) != pred_end(this)) &&
Jeff Cohen82639852005-04-23 21:38:35 +0000214 "removePredecessor: BB is not a predecessor!");
Chris Lattnercf08c212005-02-23 07:09:08 +0000215
Chris Lattner8d0b1b22004-12-11 22:10:29 +0000216 if (InstList.empty()) return;
Chris Lattnerbea72472004-07-06 17:44:17 +0000217 PHINode *APN = dyn_cast<PHINode>(&front());
218 if (!APN) return; // Quick exit.
Chris Lattner615d3cf2001-06-29 05:25:23 +0000219
220 // If there are exactly two predecessors, then we want to nuke the PHI nodes
Chris Lattnerbea72472004-07-06 17:44:17 +0000221 // altogether. However, we cannot do this, if this in this case:
Chris Lattnerf7373e42002-05-21 19:52:49 +0000222 //
223 // Loop:
224 // %x = phi [X, Loop]
225 // %x2 = add %x, 1 ;; This would become %x2 = add %x2, 1
226 // br Loop ;; %x2 does not dominate all uses
227 //
228 // This is because the PHI node input is actually taken from the predecessor
Misha Brukmanb1c93172005-04-21 23:48:37 +0000229 // basic block. The only case this can happen is with a self loop, so we
Chris Lattnerf7373e42002-05-21 19:52:49 +0000230 // check for this case explicitly now.
Misha Brukmanb1c93172005-04-21 23:48:37 +0000231 //
Chris Lattnerbea72472004-07-06 17:44:17 +0000232 unsigned max_idx = APN->getNumIncomingValues();
Chris Lattner615d3cf2001-06-29 05:25:23 +0000233 assert(max_idx != 0 && "PHI Node in block with 0 predecessors!?!?!");
Chris Lattnerf7373e42002-05-21 19:52:49 +0000234 if (max_idx == 2) {
Chris Lattnerbea72472004-07-06 17:44:17 +0000235 BasicBlock *Other = APN->getIncomingBlock(APN->getIncomingBlock(0) == Pred);
Chris Lattnerf7373e42002-05-21 19:52:49 +0000236
237 // Disable PHI elimination!
238 if (this == Other) max_idx = 3;
239 }
240
Chris Lattner9daef352005-04-12 18:52:14 +0000241 // <= Two predecessors BEFORE I remove one?
242 if (max_idx <= 2 && !DontDeleteUselessPHIs) {
Chris Lattnerda558102001-10-02 03:41:24 +0000243 // Yup, loop through and nuke the PHI nodes
Chris Lattner113f4f42002-06-25 16:13:24 +0000244 while (PHINode *PN = dyn_cast<PHINode>(&front())) {
Chris Lattner9daef352005-04-12 18:52:14 +0000245 // Remove the predecessor first.
Nick Lewycky4d43d3c2008-04-25 16:53:59 +0000246 PN->removeIncomingValue(Pred, !DontDeleteUselessPHIs);
Chris Lattner615d3cf2001-06-29 05:25:23 +0000247
248 // If the PHI _HAD_ two uses, replace PHI node with its now *single* value
Chris Lattnercaf5b502002-10-08 21:36:34 +0000249 if (max_idx == 2) {
Jay Foad372ad642011-06-20 14:18:48 +0000250 if (PN->getIncomingValue(0) != PN)
251 PN->replaceAllUsesWith(PN->getIncomingValue(0));
Chris Lattneref8c8332003-04-25 23:14:19 +0000252 else
253 // We are left with an infinite loop with no entries: kill the PHI.
Owen Andersonb292b8c2009-07-30 23:03:37 +0000254 PN->replaceAllUsesWith(UndefValue::get(PN->getType()));
Chris Lattnercaf5b502002-10-08 21:36:34 +0000255 getInstList().pop_front(); // Remove the PHI node
256 }
257
258 // If the PHI node already only had one entry, it got deleted by
259 // removeIncomingValue.
Chris Lattner615d3cf2001-06-29 05:25:23 +0000260 }
261 } else {
262 // Okay, now we know that we need to remove predecessor #pred_idx from all
263 // PHI nodes. Iterate over each PHI node fixing them up
Chris Lattner708ee9d2004-06-05 00:11:27 +0000264 PHINode *PN;
Chris Lattner1749aaa2005-08-05 15:34:10 +0000265 for (iterator II = begin(); (PN = dyn_cast<PHINode>(II)); ) {
266 ++II;
Nick Lewycky4d43d3c2008-04-25 16:53:59 +0000267 PN->removeIncomingValue(Pred, false);
Nate Begemanb3923212005-08-04 23:24:19 +0000268 // If all incoming values to the Phi are the same, we can replace the Phi
269 // with that value.
Owen Anderson4e744af2006-06-14 04:43:14 +0000270 Value* PNV = 0;
Duncan Sandsec7a6ec2010-11-17 10:23:23 +0000271 if (!DontDeleteUselessPHIs && (PNV = PN->hasConstantValue()))
272 if (PNV != PN) {
273 PN->replaceAllUsesWith(PNV);
274 PN->eraseFromParent();
275 }
Nate Begemanb3923212005-08-04 23:24:19 +0000276 }
Chris Lattner615d3cf2001-06-29 05:25:23 +0000277 }
278}
279
Chris Lattner2f7c9632001-06-06 20:29:01 +0000280
Chris Lattner7ceb0812005-04-21 16:04:49 +0000281/// splitBasicBlock - This splits a basic block into two at the specified
282/// instruction. Note that all instructions BEFORE the specified iterator stay
Misha Brukmanb1c93172005-04-21 23:48:37 +0000283/// as part of the original basic block, an unconditional branch is added to
Chris Lattner7ceb0812005-04-21 16:04:49 +0000284/// the new BB, and the rest of the instructions in the BB are moved to the new
285/// BB, including the old terminator. This invalidates the iterator.
286///
Misha Brukmanb1c93172005-04-21 23:48:37 +0000287/// Note that this only works on well formed basic blocks (must have a
Chris Lattner7ceb0812005-04-21 16:04:49 +0000288/// terminator), and 'I' must not be the end of instruction list (which would
289/// cause a degenerate basic block to be formed, having a terminator inside of
Misha Brukmanb1c93172005-04-21 23:48:37 +0000290/// the basic block).
Chris Lattner7ceb0812005-04-21 16:04:49 +0000291///
Daniel Dunbar4975db62009-07-25 04:41:11 +0000292BasicBlock *BasicBlock::splitBasicBlock(iterator I, const Twine &BBName) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000293 assert(getTerminator() && "Can't use splitBasicBlock on degenerate BB!");
Misha Brukmanb1c93172005-04-21 23:48:37 +0000294 assert(I != InstList.end() &&
Jeff Cohen82639852005-04-23 21:38:35 +0000295 "Trying to get me to create degenerate basic block!");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000296
Chris Lattnera48f44d2009-12-03 00:50:42 +0000297 BasicBlock *InsertBefore = llvm::next(Function::iterator(this))
Dan Gohman804c95d2008-07-28 21:51:04 +0000298 .getNodePtrUnchecked();
Owen Anderson55f1c092009-08-13 21:58:54 +0000299 BasicBlock *New = BasicBlock::Create(getContext(), BBName,
300 getParent(), InsertBefore);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000301
Chris Lattnerc4c7ea52004-02-03 23:11:21 +0000302 // Move all of the specified instructions from the original basic block into
303 // the new basic block.
304 New->getInstList().splice(New->end(), this->getInstList(), I, end());
Chris Lattner2f7c9632001-06-06 20:29:01 +0000305
306 // Add a branch instruction to the newly formed basic block.
Gabor Greife9ecc682008-04-06 20:25:17 +0000307 BranchInst::Create(New, this);
Chris Lattner4eed0b82002-02-25 00:35:07 +0000308
309 // Now we must loop through all of the successors of the New block (which
310 // _were_ the successors of the 'this' block), and update any PHI nodes in
311 // successors. If there were PHI nodes in the successors, then they need to
312 // know that incoming branches will be from New, not from Old.
313 //
Chris Lattner64d88bc2003-09-24 22:03:22 +0000314 for (succ_iterator I = succ_begin(New), E = succ_end(New); I != E; ++I) {
Chris Lattner4eed0b82002-02-25 00:35:07 +0000315 // Loop over any phi nodes in the basic block, updating the BB field of
316 // incoming values...
317 BasicBlock *Successor = *I;
Chris Lattner708ee9d2004-06-05 00:11:27 +0000318 PHINode *PN;
Chris Lattner4eed0b82002-02-25 00:35:07 +0000319 for (BasicBlock::iterator II = Successor->begin();
Chris Lattner08d1b9d2004-06-05 17:43:52 +0000320 (PN = dyn_cast<PHINode>(II)); ++II) {
Chris Lattner4eed0b82002-02-25 00:35:07 +0000321 int IDX = PN->getBasicBlockIndex(this);
322 while (IDX != -1) {
323 PN->setIncomingBlock((unsigned)IDX, New);
324 IDX = PN->getBasicBlockIndex(this);
325 }
326 }
327 }
Chris Lattner2f7c9632001-06-06 20:29:01 +0000328 return New;
329}
Dan Gohman39033202009-10-29 00:09:08 +0000330
Jay Foad61ea0e42011-06-23 09:09:15 +0000331void BasicBlock::replaceSuccessorsPhiUsesWith(BasicBlock *New) {
332 TerminatorInst *TI = getTerminator();
333 if (!TI)
334 // Cope with being called on a BasicBlock that doesn't have a terminator
335 // yet. Clang's CodeGenFunction::EmitReturnBlock() likes to do this.
336 return;
337 for (unsigned i = 0, e = TI->getNumSuccessors(); i != e; ++i) {
338 BasicBlock *Succ = TI->getSuccessor(i);
NAKAMURA Takumi4f041652011-08-09 23:13:05 +0000339 // N.B. Succ might not be a complete BasicBlock, so don't assume
340 // that it ends with a non-phi instruction.
341 for (iterator II = Succ->begin(), IE = Succ->end(); II != IE; ++II) {
342 PHINode *PN = dyn_cast<PHINode>(II);
343 if (!PN)
344 break;
Jay Foad61ea0e42011-06-23 09:09:15 +0000345 int i;
346 while ((i = PN->getBasicBlockIndex(this)) >= 0)
347 PN->setIncomingBlock(i, New);
348 }
349 }
350}
Bill Wendlingfae14752011-08-12 20:24:12 +0000351
352/// isLandingPad - Return true if this basic block is a landing pad. I.e., it's
353/// the destination of the 'unwind' edge of an invoke instruction.
354bool BasicBlock::isLandingPad() const {
355 return isa<LandingPadInst>(getFirstNonPHI());
356}
357
358/// getLandingPadInst() - Return the landingpad instruction associated with
359/// the landing pad.
360LandingPadInst *BasicBlock::getLandingPadInst() {
361 return dyn_cast<LandingPadInst>(getFirstNonPHI());
362}