Chris Lattner | 184b298 | 2002-09-08 18:59:35 +0000 | [diff] [blame] | 1 | //===-- BasicBlock.cpp - Implement BasicBlock related methods -------------===// |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 2 | // |
John Criswell | 482202a | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | f3ebc3f | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 7 | // |
John Criswell | 482202a | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 9 | // |
Chandler Carruth | ef860a2 | 2013-01-02 09:10:48 +0000 | [diff] [blame] | 10 | // This file implements the BasicBlock class for the IR library. |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 14 | #include "llvm/IR/BasicBlock.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 15 | #include "SymbolTableListTraitsImpl.h" |
| 16 | #include "llvm/ADT/STLExtras.h" |
Chandler Carruth | 1305dc3 | 2014-03-04 11:45:46 +0000 | [diff] [blame] | 17 | #include "llvm/IR/CFG.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 18 | #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 Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 23 | #include <algorithm> |
Chris Lattner | a296000 | 2003-11-21 16:52:05 +0000 | [diff] [blame] | 24 | using namespace llvm; |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 25 | |
Gabor Greif | 51bbcf8 | 2009-03-07 12:33:24 +0000 | [diff] [blame] | 26 | ValueSymbolTable *BasicBlock::getValueSymbolTable() { |
| 27 | if (Function *F = getParent()) |
| 28 | return &F->getValueSymbolTable(); |
Craig Topper | c620761 | 2014-04-09 06:08:46 +0000 | [diff] [blame] | 29 | return nullptr; |
Chris Lattner | b47aa54 | 2007-04-17 03:26:42 +0000 | [diff] [blame] | 30 | } |
| 31 | |
Owen Anderson | 47db941 | 2009-07-22 00:24:57 +0000 | [diff] [blame] | 32 | LLVMContext &BasicBlock::getContext() const { |
| 33 | return getType()->getContext(); |
Owen Anderson | e70b637 | 2009-07-05 22:41:43 +0000 | [diff] [blame] | 34 | } |
| 35 | |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 36 | // Explicit instantiation of SymbolTableListTraits since some of the methods |
| 37 | // are not in the public header file... |
John McCall | 086bb4e | 2009-12-19 00:55:12 +0000 | [diff] [blame] | 38 | template class llvm::SymbolTableListTraits<Instruction, BasicBlock>; |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 39 | |
Bill Wendling | 35a9c3c | 2011-04-10 23:18:04 +0000 | [diff] [blame] | 40 | |
Owen Anderson | 55f1c09 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 41 | BasicBlock::BasicBlock(LLVMContext &C, const Twine &Name, Function *NewParent, |
Nick Lewycky | 4d43d3c | 2008-04-25 16:53:59 +0000 | [diff] [blame] | 42 | BasicBlock *InsertBefore) |
Craig Topper | c620761 | 2014-04-09 06:08:46 +0000 | [diff] [blame] | 43 | : Value(Type::getLabelTy(C), Value::BasicBlockVal), Parent(nullptr) { |
Chris Lattner | 4dfede8 | 2002-09-26 05:03:22 +0000 | [diff] [blame] | 44 | |
Duncan P. N. Exon Smith | 17cbb97 | 2014-08-01 21:22:04 +0000 | [diff] [blame] | 45 | if (NewParent) |
| 46 | insertInto(NewParent, InsertBefore); |
| 47 | else |
| 48 | assert(!InsertBefore && |
Chris Lattner | bb5f0db | 2004-02-04 03:57:50 +0000 | [diff] [blame] | 49 | "Cannot insert block before another block with no function!"); |
NAKAMURA Takumi | 5b64b81 | 2011-08-09 23:12:56 +0000 | [diff] [blame] | 50 | |
Chris Lattner | 32ab643 | 2007-02-12 05:18:08 +0000 | [diff] [blame] | 51 | setName(Name); |
Chris Lattner | 4dfede8 | 2002-09-26 05:03:22 +0000 | [diff] [blame] | 52 | } |
| 53 | |
Duncan P. N. Exon Smith | 17cbb97 | 2014-08-01 21:22:04 +0000 | [diff] [blame] | 54 | void 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 Wendling | 35a9c3c | 2011-04-10 23:18:04 +0000 | [diff] [blame] | 63 | |
Gordon Henriksen | 14a5569 | 2007-12-10 02:14:30 +0000 | [diff] [blame] | 64 | BasicBlock::~BasicBlock() { |
Chris Lattner | dd5d035 | 2009-10-30 22:39:36 +0000 | [diff] [blame] | 65 | // 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 Lattner | aa99c94 | 2009-11-01 01:27:45 +0000 | [diff] [blame] | 70 | // nodes. There are no other possible uses at this point. |
Chris Lattner | dd5d035 | 2009-10-30 22:39:36 +0000 | [diff] [blame] | 71 | if (hasAddressTaken()) { |
| 72 | assert(!use_empty() && "There should be at least one blockaddress!"); |
Chris Lattner | aa99c94 | 2009-11-01 01:27:45 +0000 | [diff] [blame] | 73 | Constant *Replacement = |
| 74 | ConstantInt::get(llvm::Type::getInt32Ty(getContext()), 1); |
Chris Lattner | dd5d035 | 2009-10-30 22:39:36 +0000 | [diff] [blame] | 75 | while (!use_empty()) { |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 76 | BlockAddress *BA = cast<BlockAddress>(user_back()); |
Chris Lattner | aa99c94 | 2009-11-01 01:27:45 +0000 | [diff] [blame] | 77 | BA->replaceAllUsesWith(ConstantExpr::getIntToPtr(Replacement, |
| 78 | BA->getType())); |
Chris Lattner | dd5d035 | 2009-10-30 22:39:36 +0000 | [diff] [blame] | 79 | BA->destroyConstant(); |
| 80 | } |
| 81 | } |
NAKAMURA Takumi | 5b64b81 | 2011-08-09 23:12:56 +0000 | [diff] [blame] | 82 | |
Craig Topper | 2617dcc | 2014-04-15 06:32:26 +0000 | [diff] [blame] | 83 | assert(getParent() == nullptr && "BasicBlock still linked into the program!"); |
Gordon Henriksen | 14a5569 | 2007-12-10 02:14:30 +0000 | [diff] [blame] | 84 | dropAllReferences(); |
| 85 | InstList.clear(); |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 86 | } |
| 87 | |
Chris Lattner | 9ed7aef | 2002-09-06 21:33:15 +0000 | [diff] [blame] | 88 | void BasicBlock::setParent(Function *parent) { |
Chris Lattner | b47aa54 | 2007-04-17 03:26:42 +0000 | [diff] [blame] | 89 | // Set Parent=parent, updating instruction symtab entries as appropriate. |
| 90 | InstList.setSymTabObject(&Parent, parent); |
Chris Lattner | 9ed7aef | 2002-09-06 21:33:15 +0000 | [diff] [blame] | 91 | } |
| 92 | |
Chris Lattner | 02a71e7 | 2004-10-11 22:21:39 +0000 | [diff] [blame] | 93 | void BasicBlock::removeFromParent() { |
| 94 | getParent()->getBasicBlockList().remove(this); |
| 95 | } |
| 96 | |
| 97 | void BasicBlock::eraseFromParent() { |
| 98 | getParent()->getBasicBlockList().erase(this); |
| 99 | } |
| 100 | |
Sanjay Patel | af0ff10 | 2015-02-27 18:07:41 +0000 | [diff] [blame] | 101 | /// Unlink this basic block from its current function and |
Chris Lattner | 4091f46 | 2006-09-23 04:03:45 +0000 | [diff] [blame] | 102 | /// insert it into the function that MovePos lives in, right before MovePos. |
Chris Lattner | e09bbc8 | 2005-08-12 22:14:06 +0000 | [diff] [blame] | 103 | void BasicBlock::moveBefore(BasicBlock *MovePos) { |
| 104 | MovePos->getParent()->getBasicBlockList().splice(MovePos, |
| 105 | getParent()->getBasicBlockList(), this); |
| 106 | } |
| 107 | |
Sanjay Patel | af0ff10 | 2015-02-27 18:07:41 +0000 | [diff] [blame] | 108 | /// Unlink this basic block from its current function and |
Chris Lattner | 4091f46 | 2006-09-23 04:03:45 +0000 | [diff] [blame] | 109 | /// insert it into the function that MovePos lives in, right after MovePos. |
| 110 | void BasicBlock::moveAfter(BasicBlock *MovePos) { |
| 111 | Function::iterator I = MovePos; |
| 112 | MovePos->getParent()->getBasicBlockList().splice(++I, |
| 113 | getParent()->getBasicBlockList(), this); |
| 114 | } |
| 115 | |
Mehdi Amini | 9a9738f | 2015-03-03 22:01:13 +0000 | [diff] [blame^] | 116 | const Module *BasicBlock::getModule() const { |
| 117 | return getParent()->getParent(); |
| 118 | } |
Chris Lattner | 02a71e7 | 2004-10-11 22:21:39 +0000 | [diff] [blame] | 119 | |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 120 | TerminatorInst *BasicBlock::getTerminator() { |
Craig Topper | c620761 | 2014-04-09 06:08:46 +0000 | [diff] [blame] | 121 | if (InstList.empty()) return nullptr; |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 122 | return dyn_cast<TerminatorInst>(&InstList.back()); |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 123 | } |
| 124 | |
Dan Gohman | aad83c8 | 2007-11-19 20:46:23 +0000 | [diff] [blame] | 125 | const TerminatorInst *BasicBlock::getTerminator() const { |
Craig Topper | c620761 | 2014-04-09 06:08:46 +0000 | [diff] [blame] | 126 | if (InstList.empty()) return nullptr; |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 127 | return dyn_cast<TerminatorInst>(&InstList.back()); |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 128 | } |
| 129 | |
Reid Kleckner | e31acf2 | 2014-08-12 00:05:15 +0000 | [diff] [blame] | 130 | CallInst *BasicBlock::getTerminatingMustTailCall() { |
| 131 | if (InstList.empty()) |
| 132 | return nullptr; |
| 133 | ReturnInst *RI = dyn_cast<ReturnInst>(&InstList.back()); |
| 134 | if (!RI || RI == &InstList.front()) |
| 135 | return nullptr; |
| 136 | |
| 137 | Instruction *Prev = RI->getPrevNode(); |
| 138 | if (!Prev) |
| 139 | return nullptr; |
| 140 | |
| 141 | if (Value *RV = RI->getReturnValue()) { |
| 142 | if (RV != Prev) |
| 143 | return nullptr; |
| 144 | |
| 145 | // Look through the optional bitcast. |
| 146 | if (auto *BI = dyn_cast<BitCastInst>(Prev)) { |
| 147 | RV = BI->getOperand(0); |
| 148 | Prev = BI->getPrevNode(); |
| 149 | if (!Prev || RV != Prev) |
| 150 | return nullptr; |
| 151 | } |
| 152 | } |
| 153 | |
| 154 | if (auto *CI = dyn_cast<CallInst>(Prev)) { |
| 155 | if (CI->isMustTailCall()) |
| 156 | return CI; |
| 157 | } |
| 158 | return nullptr; |
| 159 | } |
| 160 | |
Dan Gohman | f96e137 | 2008-05-23 21:05:58 +0000 | [diff] [blame] | 161 | Instruction* BasicBlock::getFirstNonPHI() { |
| 162 | BasicBlock::iterator i = begin(); |
| 163 | // All valid basic blocks should have a terminator, |
| 164 | // which is not a PHINode. If we have an invalid basic |
| 165 | // block we'll get an assertion failure when dereferencing |
| 166 | // a past-the-end iterator. |
| 167 | while (isa<PHINode>(i)) ++i; |
| 168 | return &*i; |
Vladimir Prus | b5b6dc4 | 2006-06-08 15:46:18 +0000 | [diff] [blame] | 169 | } |
| 170 | |
Dale Johannesen | c268ced | 2010-04-02 21:49:27 +0000 | [diff] [blame] | 171 | Instruction* BasicBlock::getFirstNonPHIOrDbg() { |
| 172 | BasicBlock::iterator i = begin(); |
| 173 | // All valid basic blocks should have a terminator, |
| 174 | // which is not a PHINode. If we have an invalid basic |
| 175 | // block we'll get an assertion failure when dereferencing |
| 176 | // a past-the-end iterator. |
| 177 | while (isa<PHINode>(i) || isa<DbgInfoIntrinsic>(i)) ++i; |
| 178 | return &*i; |
| 179 | } |
| 180 | |
Rafael Espindola | b10a0f2 | 2011-06-30 20:14:24 +0000 | [diff] [blame] | 181 | Instruction* BasicBlock::getFirstNonPHIOrDbgOrLifetime() { |
| 182 | // All valid basic blocks should have a terminator, |
| 183 | // which is not a PHINode. If we have an invalid basic |
| 184 | // block we'll get an assertion failure when dereferencing |
| 185 | // a past-the-end iterator. |
| 186 | BasicBlock::iterator i = begin(); |
| 187 | for (;; ++i) { |
| 188 | if (isa<PHINode>(i) || isa<DbgInfoIntrinsic>(i)) |
| 189 | continue; |
| 190 | |
| 191 | const IntrinsicInst *II = dyn_cast<IntrinsicInst>(i); |
| 192 | if (!II) |
| 193 | break; |
| 194 | if (II->getIntrinsicID() != Intrinsic::lifetime_start && |
| 195 | II->getIntrinsicID() != Intrinsic::lifetime_end) |
| 196 | break; |
| 197 | } |
| 198 | return &*i; |
| 199 | } |
| 200 | |
Bill Wendling | ee1c2d2 | 2011-08-16 20:42:52 +0000 | [diff] [blame] | 201 | BasicBlock::iterator BasicBlock::getFirstInsertionPt() { |
| 202 | iterator InsertPt = getFirstNonPHI(); |
| 203 | if (isa<LandingPadInst>(InsertPt)) ++InsertPt; |
| 204 | return InsertPt; |
| 205 | } |
| 206 | |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 207 | void BasicBlock::dropAllReferences() { |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 208 | for(iterator I = begin(), E = end(); I != E; ++I) |
| 209 | I->dropAllReferences(); |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 210 | } |
| 211 | |
Sanjay Patel | af0ff10 | 2015-02-27 18:07:41 +0000 | [diff] [blame] | 212 | /// If this basic block has a single predecessor block, |
Chris Lattner | ce046ac | 2005-02-24 02:37:26 +0000 | [diff] [blame] | 213 | /// return the block, otherwise return a null pointer. |
| 214 | BasicBlock *BasicBlock::getSinglePredecessor() { |
| 215 | pred_iterator PI = pred_begin(this), E = pred_end(this); |
Craig Topper | c620761 | 2014-04-09 06:08:46 +0000 | [diff] [blame] | 216 | if (PI == E) return nullptr; // No preds. |
Chris Lattner | ce046ac | 2005-02-24 02:37:26 +0000 | [diff] [blame] | 217 | BasicBlock *ThePred = *PI; |
| 218 | ++PI; |
Craig Topper | c620761 | 2014-04-09 06:08:46 +0000 | [diff] [blame] | 219 | return (PI == E) ? ThePred : nullptr /*multiple preds*/; |
Chris Lattner | ce046ac | 2005-02-24 02:37:26 +0000 | [diff] [blame] | 220 | } |
| 221 | |
Sanjay Patel | af0ff10 | 2015-02-27 18:07:41 +0000 | [diff] [blame] | 222 | /// If this basic block has a unique predecessor block, |
Torok Edwin | c808012 | 2008-12-11 10:36:07 +0000 | [diff] [blame] | 223 | /// return the block, otherwise return a null pointer. |
NAKAMURA Takumi | 5b64b81 | 2011-08-09 23:12:56 +0000 | [diff] [blame] | 224 | /// Note that unique predecessor doesn't mean single edge, there can be |
| 225 | /// multiple edges from the unique predecessor to this block (for example |
Torok Edwin | 32bfb5d | 2008-12-11 11:44:49 +0000 | [diff] [blame] | 226 | /// a switch statement with multiple cases having the same destination). |
Torok Edwin | c808012 | 2008-12-11 10:36:07 +0000 | [diff] [blame] | 227 | BasicBlock *BasicBlock::getUniquePredecessor() { |
| 228 | pred_iterator PI = pred_begin(this), E = pred_end(this); |
Craig Topper | c620761 | 2014-04-09 06:08:46 +0000 | [diff] [blame] | 229 | if (PI == E) return nullptr; // No preds. |
Torok Edwin | c808012 | 2008-12-11 10:36:07 +0000 | [diff] [blame] | 230 | BasicBlock *PredBB = *PI; |
| 231 | ++PI; |
| 232 | for (;PI != E; ++PI) { |
| 233 | if (*PI != PredBB) |
Craig Topper | c620761 | 2014-04-09 06:08:46 +0000 | [diff] [blame] | 234 | return nullptr; |
Torok Edwin | 32bfb5d | 2008-12-11 11:44:49 +0000 | [diff] [blame] | 235 | // The same predecessor appears multiple times in the predecessor list. |
| 236 | // This is OK. |
Torok Edwin | c808012 | 2008-12-11 10:36:07 +0000 | [diff] [blame] | 237 | } |
| 238 | return PredBB; |
| 239 | } |
| 240 | |
Philip Reames | 47cc673 | 2015-02-04 00:37:33 +0000 | [diff] [blame] | 241 | BasicBlock *BasicBlock::getUniqueSuccessor() { |
| 242 | succ_iterator SI = succ_begin(this), E = succ_end(this); |
| 243 | if (SI == E) return NULL; // No successors |
| 244 | BasicBlock *SuccBB = *SI; |
| 245 | ++SI; |
| 246 | for (;SI != E; ++SI) { |
| 247 | if (*SI != SuccBB) |
| 248 | return NULL; |
| 249 | // The same successor appears multiple times in the successor list. |
| 250 | // This is OK. |
| 251 | } |
| 252 | return SuccBB; |
| 253 | } |
| 254 | |
Sanjay Patel | af0ff10 | 2015-02-27 18:07:41 +0000 | [diff] [blame] | 255 | /// This method is used to notify a BasicBlock that the |
Chris Lattner | 954c64d | 2005-04-21 16:06:03 +0000 | [diff] [blame] | 256 | /// specified Predecessor of the block is no longer able to reach it. This is |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 257 | /// actually not used to update the Predecessor list, but is actually used to |
Chris Lattner | 954c64d | 2005-04-21 16:06:03 +0000 | [diff] [blame] | 258 | /// update the PHI nodes that reside in the block. Note that this should be |
| 259 | /// called while the predecessor still refers to this block. |
| 260 | /// |
Chris Lattner | 9daef35 | 2005-04-12 18:52:14 +0000 | [diff] [blame] | 261 | void BasicBlock::removePredecessor(BasicBlock *Pred, |
Nick Lewycky | 4d43d3c | 2008-04-25 16:53:59 +0000 | [diff] [blame] | 262 | bool DontDeleteUselessPHIs) { |
Chris Lattner | 25169ca | 2005-02-23 16:53:04 +0000 | [diff] [blame] | 263 | assert((hasNUsesOrMore(16)||// Reduce cost of this assertion for complex CFGs. |
Chris Lattner | cf08c21 | 2005-02-23 07:09:08 +0000 | [diff] [blame] | 264 | find(pred_begin(this), pred_end(this), Pred) != pred_end(this)) && |
Jeff Cohen | 8263985 | 2005-04-23 21:38:35 +0000 | [diff] [blame] | 265 | "removePredecessor: BB is not a predecessor!"); |
Chris Lattner | cf08c21 | 2005-02-23 07:09:08 +0000 | [diff] [blame] | 266 | |
Chris Lattner | 8d0b1b2 | 2004-12-11 22:10:29 +0000 | [diff] [blame] | 267 | if (InstList.empty()) return; |
Chris Lattner | bea7247 | 2004-07-06 17:44:17 +0000 | [diff] [blame] | 268 | PHINode *APN = dyn_cast<PHINode>(&front()); |
| 269 | if (!APN) return; // Quick exit. |
Chris Lattner | 615d3cf | 2001-06-29 05:25:23 +0000 | [diff] [blame] | 270 | |
| 271 | // If there are exactly two predecessors, then we want to nuke the PHI nodes |
Chris Lattner | bea7247 | 2004-07-06 17:44:17 +0000 | [diff] [blame] | 272 | // altogether. However, we cannot do this, if this in this case: |
Chris Lattner | f7373e4 | 2002-05-21 19:52:49 +0000 | [diff] [blame] | 273 | // |
| 274 | // Loop: |
| 275 | // %x = phi [X, Loop] |
| 276 | // %x2 = add %x, 1 ;; This would become %x2 = add %x2, 1 |
| 277 | // br Loop ;; %x2 does not dominate all uses |
| 278 | // |
| 279 | // This is because the PHI node input is actually taken from the predecessor |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 280 | // basic block. The only case this can happen is with a self loop, so we |
Chris Lattner | f7373e4 | 2002-05-21 19:52:49 +0000 | [diff] [blame] | 281 | // check for this case explicitly now. |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 282 | // |
Chris Lattner | bea7247 | 2004-07-06 17:44:17 +0000 | [diff] [blame] | 283 | unsigned max_idx = APN->getNumIncomingValues(); |
Chris Lattner | 615d3cf | 2001-06-29 05:25:23 +0000 | [diff] [blame] | 284 | assert(max_idx != 0 && "PHI Node in block with 0 predecessors!?!?!"); |
Chris Lattner | f7373e4 | 2002-05-21 19:52:49 +0000 | [diff] [blame] | 285 | if (max_idx == 2) { |
Chris Lattner | bea7247 | 2004-07-06 17:44:17 +0000 | [diff] [blame] | 286 | BasicBlock *Other = APN->getIncomingBlock(APN->getIncomingBlock(0) == Pred); |
Chris Lattner | f7373e4 | 2002-05-21 19:52:49 +0000 | [diff] [blame] | 287 | |
| 288 | // Disable PHI elimination! |
| 289 | if (this == Other) max_idx = 3; |
| 290 | } |
| 291 | |
Chris Lattner | 9daef35 | 2005-04-12 18:52:14 +0000 | [diff] [blame] | 292 | // <= Two predecessors BEFORE I remove one? |
| 293 | if (max_idx <= 2 && !DontDeleteUselessPHIs) { |
Chris Lattner | da55810 | 2001-10-02 03:41:24 +0000 | [diff] [blame] | 294 | // Yup, loop through and nuke the PHI nodes |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 295 | while (PHINode *PN = dyn_cast<PHINode>(&front())) { |
Chris Lattner | 9daef35 | 2005-04-12 18:52:14 +0000 | [diff] [blame] | 296 | // Remove the predecessor first. |
Nick Lewycky | 4d43d3c | 2008-04-25 16:53:59 +0000 | [diff] [blame] | 297 | PN->removeIncomingValue(Pred, !DontDeleteUselessPHIs); |
Chris Lattner | 615d3cf | 2001-06-29 05:25:23 +0000 | [diff] [blame] | 298 | |
| 299 | // If the PHI _HAD_ two uses, replace PHI node with its now *single* value |
Chris Lattner | caf5b50 | 2002-10-08 21:36:34 +0000 | [diff] [blame] | 300 | if (max_idx == 2) { |
Jay Foad | 372ad64 | 2011-06-20 14:18:48 +0000 | [diff] [blame] | 301 | if (PN->getIncomingValue(0) != PN) |
| 302 | PN->replaceAllUsesWith(PN->getIncomingValue(0)); |
Chris Lattner | ef8c833 | 2003-04-25 23:14:19 +0000 | [diff] [blame] | 303 | else |
| 304 | // We are left with an infinite loop with no entries: kill the PHI. |
Owen Anderson | b292b8c | 2009-07-30 23:03:37 +0000 | [diff] [blame] | 305 | PN->replaceAllUsesWith(UndefValue::get(PN->getType())); |
Chris Lattner | caf5b50 | 2002-10-08 21:36:34 +0000 | [diff] [blame] | 306 | getInstList().pop_front(); // Remove the PHI node |
| 307 | } |
| 308 | |
| 309 | // If the PHI node already only had one entry, it got deleted by |
| 310 | // removeIncomingValue. |
Chris Lattner | 615d3cf | 2001-06-29 05:25:23 +0000 | [diff] [blame] | 311 | } |
| 312 | } else { |
| 313 | // Okay, now we know that we need to remove predecessor #pred_idx from all |
| 314 | // PHI nodes. Iterate over each PHI node fixing them up |
Chris Lattner | 708ee9d | 2004-06-05 00:11:27 +0000 | [diff] [blame] | 315 | PHINode *PN; |
Chris Lattner | 1749aaa | 2005-08-05 15:34:10 +0000 | [diff] [blame] | 316 | for (iterator II = begin(); (PN = dyn_cast<PHINode>(II)); ) { |
| 317 | ++II; |
Nick Lewycky | 4d43d3c | 2008-04-25 16:53:59 +0000 | [diff] [blame] | 318 | PN->removeIncomingValue(Pred, false); |
Nate Begeman | b392321 | 2005-08-04 23:24:19 +0000 | [diff] [blame] | 319 | // If all incoming values to the Phi are the same, we can replace the Phi |
| 320 | // with that value. |
Craig Topper | c620761 | 2014-04-09 06:08:46 +0000 | [diff] [blame] | 321 | Value* PNV = nullptr; |
Duncan Sands | ec7a6ec | 2010-11-17 10:23:23 +0000 | [diff] [blame] | 322 | if (!DontDeleteUselessPHIs && (PNV = PN->hasConstantValue())) |
| 323 | if (PNV != PN) { |
| 324 | PN->replaceAllUsesWith(PNV); |
| 325 | PN->eraseFromParent(); |
| 326 | } |
Nate Begeman | b392321 | 2005-08-04 23:24:19 +0000 | [diff] [blame] | 327 | } |
Chris Lattner | 615d3cf | 2001-06-29 05:25:23 +0000 | [diff] [blame] | 328 | } |
| 329 | } |
| 330 | |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 331 | |
Sanjay Patel | af0ff10 | 2015-02-27 18:07:41 +0000 | [diff] [blame] | 332 | /// This splits a basic block into two at the specified |
Chris Lattner | 7ceb081 | 2005-04-21 16:04:49 +0000 | [diff] [blame] | 333 | /// instruction. Note that all instructions BEFORE the specified iterator stay |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 334 | /// as part of the original basic block, an unconditional branch is added to |
Chris Lattner | 7ceb081 | 2005-04-21 16:04:49 +0000 | [diff] [blame] | 335 | /// the new BB, and the rest of the instructions in the BB are moved to the new |
| 336 | /// BB, including the old terminator. This invalidates the iterator. |
| 337 | /// |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 338 | /// Note that this only works on well formed basic blocks (must have a |
Chris Lattner | 7ceb081 | 2005-04-21 16:04:49 +0000 | [diff] [blame] | 339 | /// terminator), and 'I' must not be the end of instruction list (which would |
| 340 | /// cause a degenerate basic block to be formed, having a terminator inside of |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 341 | /// the basic block). |
Chris Lattner | 7ceb081 | 2005-04-21 16:04:49 +0000 | [diff] [blame] | 342 | /// |
Daniel Dunbar | 4975db6 | 2009-07-25 04:41:11 +0000 | [diff] [blame] | 343 | BasicBlock *BasicBlock::splitBasicBlock(iterator I, const Twine &BBName) { |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 344 | assert(getTerminator() && "Can't use splitBasicBlock on degenerate BB!"); |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 345 | assert(I != InstList.end() && |
Jeff Cohen | 8263985 | 2005-04-23 21:38:35 +0000 | [diff] [blame] | 346 | "Trying to get me to create degenerate basic block!"); |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 347 | |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 348 | BasicBlock *InsertBefore = std::next(Function::iterator(this)) |
Dan Gohman | 804c95d | 2008-07-28 21:51:04 +0000 | [diff] [blame] | 349 | .getNodePtrUnchecked(); |
Owen Anderson | 55f1c09 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 350 | BasicBlock *New = BasicBlock::Create(getContext(), BBName, |
| 351 | getParent(), InsertBefore); |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 352 | |
Chris Lattner | c4c7ea5 | 2004-02-03 23:11:21 +0000 | [diff] [blame] | 353 | // Move all of the specified instructions from the original basic block into |
| 354 | // the new basic block. |
| 355 | New->getInstList().splice(New->end(), this->getInstList(), I, end()); |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 356 | |
| 357 | // Add a branch instruction to the newly formed basic block. |
Gabor Greif | e9ecc68 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 358 | BranchInst::Create(New, this); |
Chris Lattner | 4eed0b8 | 2002-02-25 00:35:07 +0000 | [diff] [blame] | 359 | |
| 360 | // Now we must loop through all of the successors of the New block (which |
| 361 | // _were_ the successors of the 'this' block), and update any PHI nodes in |
| 362 | // successors. If there were PHI nodes in the successors, then they need to |
| 363 | // know that incoming branches will be from New, not from Old. |
| 364 | // |
Duncan P. N. Exon Smith | 6c99015 | 2014-07-21 17:06:51 +0000 | [diff] [blame] | 365 | for (succ_iterator I = succ_begin(New), E = succ_end(New); I != E; ++I) { |
Chris Lattner | 4eed0b8 | 2002-02-25 00:35:07 +0000 | [diff] [blame] | 366 | // Loop over any phi nodes in the basic block, updating the BB field of |
| 367 | // incoming values... |
Duncan P. N. Exon Smith | 6c99015 | 2014-07-21 17:06:51 +0000 | [diff] [blame] | 368 | BasicBlock *Successor = *I; |
Chris Lattner | 708ee9d | 2004-06-05 00:11:27 +0000 | [diff] [blame] | 369 | PHINode *PN; |
Chris Lattner | 4eed0b8 | 2002-02-25 00:35:07 +0000 | [diff] [blame] | 370 | for (BasicBlock::iterator II = Successor->begin(); |
Chris Lattner | 08d1b9d | 2004-06-05 17:43:52 +0000 | [diff] [blame] | 371 | (PN = dyn_cast<PHINode>(II)); ++II) { |
Chris Lattner | 4eed0b8 | 2002-02-25 00:35:07 +0000 | [diff] [blame] | 372 | int IDX = PN->getBasicBlockIndex(this); |
| 373 | while (IDX != -1) { |
| 374 | PN->setIncomingBlock((unsigned)IDX, New); |
| 375 | IDX = PN->getBasicBlockIndex(this); |
| 376 | } |
| 377 | } |
| 378 | } |
Chris Lattner | 2f7c963 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 379 | return New; |
| 380 | } |
Dan Gohman | 3903320 | 2009-10-29 00:09:08 +0000 | [diff] [blame] | 381 | |
Jay Foad | 61ea0e4 | 2011-06-23 09:09:15 +0000 | [diff] [blame] | 382 | void BasicBlock::replaceSuccessorsPhiUsesWith(BasicBlock *New) { |
| 383 | TerminatorInst *TI = getTerminator(); |
| 384 | if (!TI) |
| 385 | // Cope with being called on a BasicBlock that doesn't have a terminator |
| 386 | // yet. Clang's CodeGenFunction::EmitReturnBlock() likes to do this. |
| 387 | return; |
| 388 | for (unsigned i = 0, e = TI->getNumSuccessors(); i != e; ++i) { |
| 389 | BasicBlock *Succ = TI->getSuccessor(i); |
NAKAMURA Takumi | 4f04165 | 2011-08-09 23:13:05 +0000 | [diff] [blame] | 390 | // N.B. Succ might not be a complete BasicBlock, so don't assume |
| 391 | // that it ends with a non-phi instruction. |
| 392 | for (iterator II = Succ->begin(), IE = Succ->end(); II != IE; ++II) { |
| 393 | PHINode *PN = dyn_cast<PHINode>(II); |
| 394 | if (!PN) |
| 395 | break; |
Jay Foad | 61ea0e4 | 2011-06-23 09:09:15 +0000 | [diff] [blame] | 396 | int i; |
| 397 | while ((i = PN->getBasicBlockIndex(this)) >= 0) |
| 398 | PN->setIncomingBlock(i, New); |
| 399 | } |
| 400 | } |
| 401 | } |
Bill Wendling | fae1475 | 2011-08-12 20:24:12 +0000 | [diff] [blame] | 402 | |
Sanjay Patel | af0ff10 | 2015-02-27 18:07:41 +0000 | [diff] [blame] | 403 | /// Return true if this basic block is a landing pad. I.e., it's |
Bill Wendling | fae1475 | 2011-08-12 20:24:12 +0000 | [diff] [blame] | 404 | /// the destination of the 'unwind' edge of an invoke instruction. |
| 405 | bool BasicBlock::isLandingPad() const { |
| 406 | return isa<LandingPadInst>(getFirstNonPHI()); |
| 407 | } |
| 408 | |
Sanjay Patel | af0ff10 | 2015-02-27 18:07:41 +0000 | [diff] [blame] | 409 | /// Return the landingpad instruction associated with the landing pad. |
Bill Wendling | fae1475 | 2011-08-12 20:24:12 +0000 | [diff] [blame] | 410 | LandingPadInst *BasicBlock::getLandingPadInst() { |
| 411 | return dyn_cast<LandingPadInst>(getFirstNonPHI()); |
| 412 | } |
Bill Wendling | bd7ed6f | 2012-01-31 00:26:24 +0000 | [diff] [blame] | 413 | const LandingPadInst *BasicBlock::getLandingPadInst() const { |
| 414 | return dyn_cast<LandingPadInst>(getFirstNonPHI()); |
| 415 | } |