blob: 7c3e5862d1cdf9bd77b4e7afac84f76f287adf07 [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>
Hans Wennborg083ca9b2015-10-06 23:24:35 +000024
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())
Mehdi Aminia53d49e2016-09-17 06:00:02 +000029 return F->getValueSymbolTable();
Craig Topperc6207612014-04-09 06:08:46 +000030 return nullptr;
Chris Lattnerb47aa542007-04-17 03:26:42 +000031}
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...
Duncan P. N. Exon Smith37bf6782015-10-07 20:05:10 +000039template class llvm::SymbolTableListTraits<Instruction>;
Chris Lattner113f4f42002-06-25 16:13:24 +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)
Duncan P. N. Exon Smith52888a62015-10-08 23:49:46 +000059 NewParent->getBasicBlockList().insert(InsertBefore->getIterator(), this);
Duncan P. N. Exon Smith17cbb972014-08-01 21:22:04 +000060 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
Florian Hahn147fc012018-04-19 09:48:07 +000093iterator_range<filter_iterator<BasicBlock::const_iterator,
94 std::function<bool(const Instruction &)>>>
95BasicBlock::instructionsWithoutDebug() const {
96 std::function<bool(const Instruction &)> Fn = [](const Instruction &I) {
97 return !isa<DbgInfoIntrinsic>(I);
98 };
99 return make_filter_range(*this, Fn);
100}
101
102iterator_range<filter_iterator<BasicBlock::iterator,
103 std::function<bool(Instruction &)>>>
104BasicBlock::instructionsWithoutDebug() {
105 std::function<bool(Instruction &)> Fn = [](Instruction &I) {
106 return !isa<DbgInfoIntrinsic>(I);
107 };
108 return make_filter_range(*this, Fn);
109}
110
Chris Lattner02a71e72004-10-11 22:21:39 +0000111void BasicBlock::removeFromParent() {
Duncan P. N. Exon Smith52888a62015-10-08 23:49:46 +0000112 getParent()->getBasicBlockList().remove(getIterator());
Chris Lattner02a71e72004-10-11 22:21:39 +0000113}
114
Daniel Berlin0bf7ff52015-04-03 01:20:33 +0000115iplist<BasicBlock>::iterator BasicBlock::eraseFromParent() {
Duncan P. N. Exon Smith52888a62015-10-08 23:49:46 +0000116 return getParent()->getBasicBlockList().erase(getIterator());
Chris Lattner02a71e72004-10-11 22:21:39 +0000117}
118
Sanjay Patelaf0ff102015-02-27 18:07:41 +0000119/// Unlink this basic block from its current function and
Chris Lattner4091f462006-09-23 04:03:45 +0000120/// insert it into the function that MovePos lives in, right before MovePos.
Chris Lattnere09bbc82005-08-12 22:14:06 +0000121void BasicBlock::moveBefore(BasicBlock *MovePos) {
Duncan P. N. Exon Smith52888a62015-10-08 23:49:46 +0000122 MovePos->getParent()->getBasicBlockList().splice(
123 MovePos->getIterator(), getParent()->getBasicBlockList(), getIterator());
Chris Lattnere09bbc82005-08-12 22:14:06 +0000124}
125
Sanjay Patelaf0ff102015-02-27 18:07:41 +0000126/// Unlink this basic block from its current function and
Chris Lattner4091f462006-09-23 04:03:45 +0000127/// insert it into the function that MovePos lives in, right after MovePos.
128void BasicBlock::moveAfter(BasicBlock *MovePos) {
Duncan P. N. Exon Smith52888a62015-10-08 23:49:46 +0000129 MovePos->getParent()->getBasicBlockList().splice(
130 ++MovePos->getIterator(), getParent()->getBasicBlockList(),
131 getIterator());
Chris Lattner4091f462006-09-23 04:03:45 +0000132}
133
Craig Topper74fb7ac2017-03-27 02:38:17 +0000134const Module *BasicBlock::getModule() const {
Philip Reames388402452015-05-26 21:03:23 +0000135 return getParent()->getParent();
136}
137
Craig Topper74fb7ac2017-03-27 02:38:17 +0000138const TerminatorInst *BasicBlock::getTerminator() const {
Craig Topperc6207612014-04-09 06:08:46 +0000139 if (InstList.empty()) return nullptr;
Chris Lattner113f4f42002-06-25 16:13:24 +0000140 return dyn_cast<TerminatorInst>(&InstList.back());
Chris Lattner2f7c9632001-06-06 20:29:01 +0000141}
142
Craig Topper74fb7ac2017-03-27 02:38:17 +0000143const CallInst *BasicBlock::getTerminatingMustTailCall() const {
Reid Klecknere31acf22014-08-12 00:05:15 +0000144 if (InstList.empty())
145 return nullptr;
Craig Topper74fb7ac2017-03-27 02:38:17 +0000146 const ReturnInst *RI = dyn_cast<ReturnInst>(&InstList.back());
Reid Klecknere31acf22014-08-12 00:05:15 +0000147 if (!RI || RI == &InstList.front())
148 return nullptr;
149
Craig Topper74fb7ac2017-03-27 02:38:17 +0000150 const Instruction *Prev = RI->getPrevNode();
Reid Klecknere31acf22014-08-12 00:05:15 +0000151 if (!Prev)
152 return nullptr;
153
154 if (Value *RV = RI->getReturnValue()) {
155 if (RV != Prev)
156 return nullptr;
157
158 // Look through the optional bitcast.
159 if (auto *BI = dyn_cast<BitCastInst>(Prev)) {
160 RV = BI->getOperand(0);
161 Prev = BI->getPrevNode();
162 if (!Prev || RV != Prev)
163 return nullptr;
164 }
165 }
166
167 if (auto *CI = dyn_cast<CallInst>(Prev)) {
168 if (CI->isMustTailCall())
169 return CI;
170 }
171 return nullptr;
172}
173
Craig Topper74fb7ac2017-03-27 02:38:17 +0000174const CallInst *BasicBlock::getTerminatingDeoptimizeCall() const {
Sanjoy Dasb51325d2016-03-11 19:08:34 +0000175 if (InstList.empty())
176 return nullptr;
177 auto *RI = dyn_cast<ReturnInst>(&InstList.back());
178 if (!RI || RI == &InstList.front())
179 return nullptr;
180
181 if (auto *CI = dyn_cast_or_null<CallInst>(RI->getPrevNode()))
182 if (Function *F = CI->getCalledFunction())
183 if (F->getIntrinsicID() == Intrinsic::experimental_deoptimize)
184 return CI;
185
186 return nullptr;
187}
188
Craig Topper74fb7ac2017-03-27 02:38:17 +0000189const Instruction* BasicBlock::getFirstNonPHI() const {
190 for (const Instruction &I : *this)
David Majnemer6cc21f92015-07-07 18:49:41 +0000191 if (!isa<PHINode>(I))
192 return &I;
193 return nullptr;
Vladimir Prusb5b6dc42006-06-08 15:46:18 +0000194}
195
Craig Topper74fb7ac2017-03-27 02:38:17 +0000196const Instruction* BasicBlock::getFirstNonPHIOrDbg() const {
197 for (const Instruction &I : *this)
David Majnemer6cc21f92015-07-07 18:49:41 +0000198 if (!isa<PHINode>(I) && !isa<DbgInfoIntrinsic>(I))
199 return &I;
200 return nullptr;
Dale Johannesenc268ced2010-04-02 21:49:27 +0000201}
202
Craig Topper74fb7ac2017-03-27 02:38:17 +0000203const Instruction* BasicBlock::getFirstNonPHIOrDbgOrLifetime() const {
204 for (const Instruction &I : *this) {
David Majnemer6cc21f92015-07-07 18:49:41 +0000205 if (isa<PHINode>(I) || isa<DbgInfoIntrinsic>(I))
Rafael Espindolab10a0f22011-06-30 20:14:24 +0000206 continue;
207
David Majnemer6cc21f92015-07-07 18:49:41 +0000208 if (auto *II = dyn_cast<IntrinsicInst>(&I))
209 if (II->getIntrinsicID() == Intrinsic::lifetime_start ||
210 II->getIntrinsicID() == Intrinsic::lifetime_end)
211 continue;
212
213 return &I;
Rafael Espindolab10a0f22011-06-30 20:14:24 +0000214 }
David Majnemer6cc21f92015-07-07 18:49:41 +0000215 return nullptr;
Rafael Espindolab10a0f22011-06-30 20:14:24 +0000216}
217
Craig Topper74fb7ac2017-03-27 02:38:17 +0000218BasicBlock::const_iterator BasicBlock::getFirstInsertionPt() const {
219 const Instruction *FirstNonPHI = getFirstNonPHI();
David Majnemer6cc21f92015-07-07 18:49:41 +0000220 if (!FirstNonPHI)
221 return end();
222
Craig Topper74fb7ac2017-03-27 02:38:17 +0000223 const_iterator InsertPt = FirstNonPHI->getIterator();
David Majnemer654e1302015-07-31 17:58:14 +0000224 if (InsertPt->isEHPad()) ++InsertPt;
Bill Wendlingee1c2d22011-08-16 20:42:52 +0000225 return InsertPt;
226}
227
Chris Lattner2f7c9632001-06-06 20:29:01 +0000228void BasicBlock::dropAllReferences() {
Benjamin Krameraf28e7d2016-06-26 14:10:56 +0000229 for (Instruction &I : *this)
230 I.dropAllReferences();
Chris Lattner2f7c9632001-06-06 20:29:01 +0000231}
232
Sanjay Patelaf0ff102015-02-27 18:07:41 +0000233/// If this basic block has a single predecessor block,
Chris Lattnerce046ac2005-02-24 02:37:26 +0000234/// return the block, otherwise return a null pointer.
Craig Topper74fb7ac2017-03-27 02:38:17 +0000235const BasicBlock *BasicBlock::getSinglePredecessor() const {
236 const_pred_iterator PI = pred_begin(this), E = pred_end(this);
Craig Topperc6207612014-04-09 06:08:46 +0000237 if (PI == E) return nullptr; // No preds.
Craig Topper74fb7ac2017-03-27 02:38:17 +0000238 const BasicBlock *ThePred = *PI;
Chris Lattnerce046ac2005-02-24 02:37:26 +0000239 ++PI;
Craig Topperc6207612014-04-09 06:08:46 +0000240 return (PI == E) ? ThePred : nullptr /*multiple preds*/;
Chris Lattnerce046ac2005-02-24 02:37:26 +0000241}
242
Sanjay Patelaf0ff102015-02-27 18:07:41 +0000243/// If this basic block has a unique predecessor block,
Torok Edwinc8080122008-12-11 10:36:07 +0000244/// return the block, otherwise return a null pointer.
NAKAMURA Takumi5b64b812011-08-09 23:12:56 +0000245/// Note that unique predecessor doesn't mean single edge, there can be
246/// multiple edges from the unique predecessor to this block (for example
Torok Edwin32bfb5d2008-12-11 11:44:49 +0000247/// a switch statement with multiple cases having the same destination).
Craig Topper74fb7ac2017-03-27 02:38:17 +0000248const BasicBlock *BasicBlock::getUniquePredecessor() const {
249 const_pred_iterator PI = pred_begin(this), E = pred_end(this);
Craig Topperc6207612014-04-09 06:08:46 +0000250 if (PI == E) return nullptr; // No preds.
Craig Topper74fb7ac2017-03-27 02:38:17 +0000251 const BasicBlock *PredBB = *PI;
Torok Edwinc8080122008-12-11 10:36:07 +0000252 ++PI;
253 for (;PI != E; ++PI) {
254 if (*PI != PredBB)
Craig Topperc6207612014-04-09 06:08:46 +0000255 return nullptr;
Torok Edwin32bfb5d2008-12-11 11:44:49 +0000256 // The same predecessor appears multiple times in the predecessor list.
257 // This is OK.
Torok Edwinc8080122008-12-11 10:36:07 +0000258 }
259 return PredBB;
260}
261
Craig Topper74fb7ac2017-03-27 02:38:17 +0000262const BasicBlock *BasicBlock::getSingleSuccessor() const {
263 succ_const_iterator SI = succ_begin(this), E = succ_end(this);
Jingyue Wu154eb5a2015-05-15 17:54:48 +0000264 if (SI == E) return nullptr; // no successors
Craig Topper74fb7ac2017-03-27 02:38:17 +0000265 const BasicBlock *TheSucc = *SI;
Jingyue Wu154eb5a2015-05-15 17:54:48 +0000266 ++SI;
267 return (SI == E) ? TheSucc : nullptr /* multiple successors */;
268}
269
Craig Topper74fb7ac2017-03-27 02:38:17 +0000270const BasicBlock *BasicBlock::getUniqueSuccessor() const {
271 succ_const_iterator SI = succ_begin(this), E = succ_end(this);
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000272 if (SI == E) return nullptr; // No successors
Craig Topper74fb7ac2017-03-27 02:38:17 +0000273 const BasicBlock *SuccBB = *SI;
Philip Reames47cc6732015-02-04 00:37:33 +0000274 ++SI;
275 for (;SI != E; ++SI) {
276 if (*SI != SuccBB)
Hans Wennborg083ca9b2015-10-06 23:24:35 +0000277 return nullptr;
Philip Reames47cc6732015-02-04 00:37:33 +0000278 // The same successor appears multiple times in the successor list.
279 // This is OK.
280 }
281 return SuccBB;
282}
283
Chandler Carruth8fa1e372017-05-26 03:10:00 +0000284iterator_range<BasicBlock::phi_iterator> BasicBlock::phis() {
Matt Arsenault344c0922017-12-29 19:25:53 +0000285 PHINode *P = empty() ? nullptr : dyn_cast<PHINode>(&*begin());
286 return make_range<phi_iterator>(P, nullptr);
Chandler Carruth8fa1e372017-05-26 03:10:00 +0000287}
288
Sanjay Patelaf0ff102015-02-27 18:07:41 +0000289/// This method is used to notify a BasicBlock that the
Chris Lattner954c64d2005-04-21 16:06:03 +0000290/// specified Predecessor of the block is no longer able to reach it. This is
Misha Brukmanb1c93172005-04-21 23:48:37 +0000291/// actually not used to update the Predecessor list, but is actually used to
Chris Lattner954c64d2005-04-21 16:06:03 +0000292/// update the PHI nodes that reside in the block. Note that this should be
293/// called while the predecessor still refers to this block.
294///
Chris Lattner9daef352005-04-12 18:52:14 +0000295void BasicBlock::removePredecessor(BasicBlock *Pred,
Nick Lewycky4d43d3c2008-04-25 16:53:59 +0000296 bool DontDeleteUselessPHIs) {
Chris Lattner25169ca2005-02-23 16:53:04 +0000297 assert((hasNUsesOrMore(16)||// Reduce cost of this assertion for complex CFGs.
Chris Lattnercf08c212005-02-23 07:09:08 +0000298 find(pred_begin(this), pred_end(this), Pred) != pred_end(this)) &&
Jeff Cohen82639852005-04-23 21:38:35 +0000299 "removePredecessor: BB is not a predecessor!");
Chris Lattnercf08c212005-02-23 07:09:08 +0000300
Chris Lattner8d0b1b22004-12-11 22:10:29 +0000301 if (InstList.empty()) return;
Chris Lattnerbea72472004-07-06 17:44:17 +0000302 PHINode *APN = dyn_cast<PHINode>(&front());
303 if (!APN) return; // Quick exit.
Chris Lattner615d3cf2001-06-29 05:25:23 +0000304
305 // If there are exactly two predecessors, then we want to nuke the PHI nodes
Chris Lattnerbea72472004-07-06 17:44:17 +0000306 // altogether. However, we cannot do this, if this in this case:
Chris Lattnerf7373e42002-05-21 19:52:49 +0000307 //
308 // Loop:
309 // %x = phi [X, Loop]
310 // %x2 = add %x, 1 ;; This would become %x2 = add %x2, 1
311 // br Loop ;; %x2 does not dominate all uses
312 //
313 // This is because the PHI node input is actually taken from the predecessor
Misha Brukmanb1c93172005-04-21 23:48:37 +0000314 // basic block. The only case this can happen is with a self loop, so we
Chris Lattnerf7373e42002-05-21 19:52:49 +0000315 // check for this case explicitly now.
Misha Brukmanb1c93172005-04-21 23:48:37 +0000316 //
Chris Lattnerbea72472004-07-06 17:44:17 +0000317 unsigned max_idx = APN->getNumIncomingValues();
Chris Lattner615d3cf2001-06-29 05:25:23 +0000318 assert(max_idx != 0 && "PHI Node in block with 0 predecessors!?!?!");
Chris Lattnerf7373e42002-05-21 19:52:49 +0000319 if (max_idx == 2) {
Chris Lattnerbea72472004-07-06 17:44:17 +0000320 BasicBlock *Other = APN->getIncomingBlock(APN->getIncomingBlock(0) == Pred);
Chris Lattnerf7373e42002-05-21 19:52:49 +0000321
322 // Disable PHI elimination!
323 if (this == Other) max_idx = 3;
324 }
325
Chris Lattner9daef352005-04-12 18:52:14 +0000326 // <= Two predecessors BEFORE I remove one?
327 if (max_idx <= 2 && !DontDeleteUselessPHIs) {
Chris Lattnerda558102001-10-02 03:41:24 +0000328 // Yup, loop through and nuke the PHI nodes
Chris Lattner113f4f42002-06-25 16:13:24 +0000329 while (PHINode *PN = dyn_cast<PHINode>(&front())) {
Chris Lattner9daef352005-04-12 18:52:14 +0000330 // Remove the predecessor first.
Nick Lewycky4d43d3c2008-04-25 16:53:59 +0000331 PN->removeIncomingValue(Pred, !DontDeleteUselessPHIs);
Chris Lattner615d3cf2001-06-29 05:25:23 +0000332
333 // If the PHI _HAD_ two uses, replace PHI node with its now *single* value
Chris Lattnercaf5b502002-10-08 21:36:34 +0000334 if (max_idx == 2) {
Jay Foad372ad642011-06-20 14:18:48 +0000335 if (PN->getIncomingValue(0) != PN)
336 PN->replaceAllUsesWith(PN->getIncomingValue(0));
Chris Lattneref8c8332003-04-25 23:14:19 +0000337 else
338 // We are left with an infinite loop with no entries: kill the PHI.
Owen Andersonb292b8c2009-07-30 23:03:37 +0000339 PN->replaceAllUsesWith(UndefValue::get(PN->getType()));
Chris Lattnercaf5b502002-10-08 21:36:34 +0000340 getInstList().pop_front(); // Remove the PHI node
341 }
342
343 // If the PHI node already only had one entry, it got deleted by
344 // removeIncomingValue.
Chris Lattner615d3cf2001-06-29 05:25:23 +0000345 }
346 } else {
347 // Okay, now we know that we need to remove predecessor #pred_idx from all
348 // PHI nodes. Iterate over each PHI node fixing them up
Chris Lattner708ee9d2004-06-05 00:11:27 +0000349 PHINode *PN;
Chris Lattner1749aaa2005-08-05 15:34:10 +0000350 for (iterator II = begin(); (PN = dyn_cast<PHINode>(II)); ) {
351 ++II;
Nick Lewycky4d43d3c2008-04-25 16:53:59 +0000352 PN->removeIncomingValue(Pred, false);
Nate Begemanb3923212005-08-04 23:24:19 +0000353 // If all incoming values to the Phi are the same, we can replace the Phi
354 // with that value.
Craig Topperc6207612014-04-09 06:08:46 +0000355 Value* PNV = nullptr;
Duncan Sandsec7a6ec2010-11-17 10:23:23 +0000356 if (!DontDeleteUselessPHIs && (PNV = PN->hasConstantValue()))
357 if (PNV != PN) {
358 PN->replaceAllUsesWith(PNV);
359 PN->eraseFromParent();
360 }
Nate Begemanb3923212005-08-04 23:24:19 +0000361 }
Chris Lattner615d3cf2001-06-29 05:25:23 +0000362 }
363}
364
David Majnemer654e1302015-07-31 17:58:14 +0000365bool BasicBlock::canSplitPredecessors() const {
366 const Instruction *FirstNonPHI = getFirstNonPHI();
367 if (isa<LandingPadInst>(FirstNonPHI))
368 return true;
369 // This is perhaps a little conservative because constructs like
370 // CleanupBlockInst are pretty easy to split. However, SplitBlockPredecessors
371 // cannot handle such things just yet.
372 if (FirstNonPHI->isEHPad())
373 return false;
374 return true;
375}
Chris Lattner2f7c9632001-06-06 20:29:01 +0000376
Andrew Kaylord4971192017-06-22 23:27:16 +0000377bool BasicBlock::isLegalToHoistInto() const {
378 auto *Term = getTerminator();
379 // No terminator means the block is under construction.
380 if (!Term)
381 return true;
382
383 // If the block has no successors, there can be no instructions to hoist.
384 assert(Term->getNumSuccessors() > 0);
385
386 // Instructions should not be hoisted across exception handling boundaries.
387 return !Term->isExceptional();
388}
389
Sanjay Patelaf0ff102015-02-27 18:07:41 +0000390/// This splits a basic block into two at the specified
Chris Lattner7ceb0812005-04-21 16:04:49 +0000391/// instruction. Note that all instructions BEFORE the specified iterator stay
Misha Brukmanb1c93172005-04-21 23:48:37 +0000392/// as part of the original basic block, an unconditional branch is added to
Chris Lattner7ceb0812005-04-21 16:04:49 +0000393/// the new BB, and the rest of the instructions in the BB are moved to the new
394/// BB, including the old terminator. This invalidates the iterator.
395///
Misha Brukmanb1c93172005-04-21 23:48:37 +0000396/// Note that this only works on well formed basic blocks (must have a
Chris Lattner7ceb0812005-04-21 16:04:49 +0000397/// terminator), and 'I' must not be the end of instruction list (which would
398/// cause a degenerate basic block to be formed, having a terminator inside of
Misha Brukmanb1c93172005-04-21 23:48:37 +0000399/// the basic block).
Chris Lattner7ceb0812005-04-21 16:04:49 +0000400///
Daniel Dunbar4975db62009-07-25 04:41:11 +0000401BasicBlock *BasicBlock::splitBasicBlock(iterator I, const Twine &BBName) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000402 assert(getTerminator() && "Can't use splitBasicBlock on degenerate BB!");
Misha Brukmanb1c93172005-04-21 23:48:37 +0000403 assert(I != InstList.end() &&
Jeff Cohen82639852005-04-23 21:38:35 +0000404 "Trying to get me to create degenerate basic block!");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000405
Duncan P. N. Exon Smitha848c472016-02-21 19:52:15 +0000406 BasicBlock *New = BasicBlock::Create(getContext(), BBName, getParent(),
407 this->getNextNode());
Chris Lattner2f7c9632001-06-06 20:29:01 +0000408
Alexey Samsonov770f65c2015-06-11 18:25:54 +0000409 // Save DebugLoc of split point before invalidating iterator.
410 DebugLoc Loc = I->getDebugLoc();
Chris Lattnerc4c7ea52004-02-03 23:11:21 +0000411 // Move all of the specified instructions from the original basic block into
412 // the new basic block.
413 New->getInstList().splice(New->end(), this->getInstList(), I, end());
Chris Lattner2f7c9632001-06-06 20:29:01 +0000414
415 // Add a branch instruction to the newly formed basic block.
Alexey Samsonov770f65c2015-06-11 18:25:54 +0000416 BranchInst *BI = BranchInst::Create(New, this);
417 BI->setDebugLoc(Loc);
Chris Lattner4eed0b82002-02-25 00:35:07 +0000418
419 // Now we must loop through all of the successors of the New block (which
420 // _were_ the successors of the 'this' block), and update any PHI nodes in
421 // successors. If there were PHI nodes in the successors, then they need to
422 // know that incoming branches will be from New, not from Old.
423 //
Duncan P. N. Exon Smith6c990152014-07-21 17:06:51 +0000424 for (succ_iterator I = succ_begin(New), E = succ_end(New); I != E; ++I) {
Chris Lattner4eed0b82002-02-25 00:35:07 +0000425 // Loop over any phi nodes in the basic block, updating the BB field of
426 // incoming values...
Duncan P. N. Exon Smith6c990152014-07-21 17:06:51 +0000427 BasicBlock *Successor = *I;
Chandler Carruth8fa1e372017-05-26 03:10:00 +0000428 for (auto &PN : Successor->phis()) {
429 int Idx = PN.getBasicBlockIndex(this);
430 while (Idx != -1) {
431 PN.setIncomingBlock((unsigned)Idx, New);
432 Idx = PN.getBasicBlockIndex(this);
Chris Lattner4eed0b82002-02-25 00:35:07 +0000433 }
434 }
435 }
Chris Lattner2f7c9632001-06-06 20:29:01 +0000436 return New;
437}
Dan Gohman39033202009-10-29 00:09:08 +0000438
Jay Foad61ea0e42011-06-23 09:09:15 +0000439void BasicBlock::replaceSuccessorsPhiUsesWith(BasicBlock *New) {
440 TerminatorInst *TI = getTerminator();
441 if (!TI)
442 // Cope with being called on a BasicBlock that doesn't have a terminator
443 // yet. Clang's CodeGenFunction::EmitReturnBlock() likes to do this.
444 return;
Pete Cooperebcd7482015-08-06 20:22:46 +0000445 for (BasicBlock *Succ : TI->successors()) {
NAKAMURA Takumi4f041652011-08-09 23:13:05 +0000446 // N.B. Succ might not be a complete BasicBlock, so don't assume
447 // that it ends with a non-phi instruction.
448 for (iterator II = Succ->begin(), IE = Succ->end(); II != IE; ++II) {
449 PHINode *PN = dyn_cast<PHINode>(II);
450 if (!PN)
451 break;
Jay Foad61ea0e42011-06-23 09:09:15 +0000452 int i;
453 while ((i = PN->getBasicBlockIndex(this)) >= 0)
454 PN->setIncomingBlock(i, New);
455 }
456 }
457}
Bill Wendlingfae14752011-08-12 20:24:12 +0000458
Sanjay Patelaf0ff102015-02-27 18:07:41 +0000459/// Return true if this basic block is a landing pad. I.e., it's
Bill Wendlingfae14752011-08-12 20:24:12 +0000460/// the destination of the 'unwind' edge of an invoke instruction.
461bool BasicBlock::isLandingPad() const {
462 return isa<LandingPadInst>(getFirstNonPHI());
463}
464
Sanjay Patelaf0ff102015-02-27 18:07:41 +0000465/// Return the landingpad instruction associated with the landing pad.
Bill Wendlingbd7ed6f2012-01-31 00:26:24 +0000466const LandingPadInst *BasicBlock::getLandingPadInst() const {
467 return dyn_cast<LandingPadInst>(getFirstNonPHI());
468}
Hiroshi Yamauchidce9def2017-11-02 22:26:51 +0000469
470Optional<uint64_t> BasicBlock::getIrrLoopHeaderWeight() const {
471 const TerminatorInst *TI = getTerminator();
472 if (MDNode *MDIrrLoopHeader =
473 TI->getMetadata(LLVMContext::MD_irr_loop)) {
474 MDString *MDName = cast<MDString>(MDIrrLoopHeader->getOperand(0));
475 if (MDName->getString().equals("loop_header_weight")) {
476 auto *CI = mdconst::extract<ConstantInt>(MDIrrLoopHeader->getOperand(1));
477 return Optional<uint64_t>(CI->getValue().getZExtValue());
478 }
479 }
480 return Optional<uint64_t>();
481}
Vedant Kumarf01827f2018-06-19 23:42:17 +0000482
Vedant Kumar1cb63dc2018-06-26 21:16:59 +0000483BasicBlock::iterator llvm::skipDebugIntrinsics(BasicBlock::iterator It) {
Vedant Kumarf01827f2018-06-19 23:42:17 +0000484 while (isa<DbgInfoIntrinsic>(It))
485 ++It;
486 return It;
487}