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