Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 1 | //===-- BasicBlockUtils.cpp - BasicBlock Utilities -------------------------==// |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 2 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 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 | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 7 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 9 | // |
| 10 | // This family of functions perform manipulations on basic blocks, and |
| 11 | // instructions contained within basic blocks. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #include "llvm/Transforms/Utils/BasicBlockUtils.h" |
Chris Lattner | 54b9c3b | 2008-04-21 01:28:02 +0000 | [diff] [blame] | 16 | #include "llvm/Analysis/AliasAnalysis.h" |
Cameron Zwarich | 3012787 | 2011-01-18 04:11:31 +0000 | [diff] [blame] | 17 | #include "llvm/Analysis/Dominators.h" |
Chris Lattner | b5b7997 | 2011-01-11 08:13:40 +0000 | [diff] [blame] | 18 | #include "llvm/Analysis/LoopInfo.h" |
| 19 | #include "llvm/Analysis/MemoryDependenceAnalysis.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 20 | #include "llvm/Constant.h" |
Micah Villmow | 3574eca | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 21 | #include "llvm/DataLayout.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 22 | #include "llvm/Function.h" |
| 23 | #include "llvm/Instructions.h" |
| 24 | #include "llvm/IntrinsicInst.h" |
Torok Edwin | 7d696d8 | 2009-07-11 13:10:19 +0000 | [diff] [blame] | 25 | #include "llvm/Support/ErrorHandling.h" |
Dan Gohman | afc36a9 | 2009-05-02 18:29:22 +0000 | [diff] [blame] | 26 | #include "llvm/Support/ValueHandle.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 27 | #include "llvm/Transforms/Scalar.h" |
| 28 | #include "llvm/Transforms/Utils/Local.h" |
| 29 | #include "llvm/Type.h" |
Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 30 | #include <algorithm> |
Chris Lattner | f7703df | 2004-01-09 06:12:26 +0000 | [diff] [blame] | 31 | using namespace llvm; |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 32 | |
Chris Lattner | 71af9b0 | 2008-12-03 06:40:52 +0000 | [diff] [blame] | 33 | /// DeleteDeadBlock - Delete the specified block, which must have no |
| 34 | /// predecessors. |
| 35 | void llvm::DeleteDeadBlock(BasicBlock *BB) { |
Chris Lattner | 2973a25 | 2008-12-03 07:45:15 +0000 | [diff] [blame] | 36 | assert((pred_begin(BB) == pred_end(BB) || |
| 37 | // Can delete self loop. |
| 38 | BB->getSinglePredecessor() == BB) && "Block is not dead!"); |
Chris Lattner | 2b1ba24 | 2008-12-03 06:37:44 +0000 | [diff] [blame] | 39 | TerminatorInst *BBTerm = BB->getTerminator(); |
Devang Patel | 5622f07 | 2009-02-24 00:05:16 +0000 | [diff] [blame] | 40 | |
Chris Lattner | 2b1ba24 | 2008-12-03 06:37:44 +0000 | [diff] [blame] | 41 | // Loop through all of our successors and make sure they know that one |
| 42 | // of their predecessors is going away. |
| 43 | for (unsigned i = 0, e = BBTerm->getNumSuccessors(); i != e; ++i) |
| 44 | BBTerm->getSuccessor(i)->removePredecessor(BB); |
| 45 | |
| 46 | // Zap all the instructions in the block. |
| 47 | while (!BB->empty()) { |
| 48 | Instruction &I = BB->back(); |
| 49 | // If this instruction is used, replace uses with an arbitrary value. |
| 50 | // Because control flow can't get here, we don't care what we replace the |
| 51 | // value with. Note that since this block is unreachable, and all values |
| 52 | // contained within it must dominate their uses, that all uses will |
| 53 | // eventually be removed (they are themselves dead). |
| 54 | if (!I.use_empty()) |
Owen Anderson | 9e9a0d5 | 2009-07-30 23:03:37 +0000 | [diff] [blame] | 55 | I.replaceAllUsesWith(UndefValue::get(I.getType())); |
Chris Lattner | 2b1ba24 | 2008-12-03 06:37:44 +0000 | [diff] [blame] | 56 | BB->getInstList().pop_back(); |
| 57 | } |
Devang Patel | 5622f07 | 2009-02-24 00:05:16 +0000 | [diff] [blame] | 58 | |
Chris Lattner | 2b1ba24 | 2008-12-03 06:37:44 +0000 | [diff] [blame] | 59 | // Zap the block! |
| 60 | BB->eraseFromParent(); |
Chris Lattner | 2b1ba24 | 2008-12-03 06:37:44 +0000 | [diff] [blame] | 61 | } |
| 62 | |
Chris Lattner | 29874e0 | 2008-12-03 19:44:02 +0000 | [diff] [blame] | 63 | /// FoldSingleEntryPHINodes - We know that BB has one predecessor. If there are |
| 64 | /// any single-entry PHI nodes in it, fold them away. This handles the case |
| 65 | /// when all entries to the PHI nodes in a block are guaranteed equal, such as |
| 66 | /// when the block has exactly one predecessor. |
Chris Lattner | b5b7997 | 2011-01-11 08:13:40 +0000 | [diff] [blame] | 67 | void llvm::FoldSingleEntryPHINodes(BasicBlock *BB, Pass *P) { |
| 68 | if (!isa<PHINode>(BB->begin())) return; |
| 69 | |
| 70 | AliasAnalysis *AA = 0; |
| 71 | MemoryDependenceAnalysis *MemDep = 0; |
| 72 | if (P) { |
| 73 | AA = P->getAnalysisIfAvailable<AliasAnalysis>(); |
| 74 | MemDep = P->getAnalysisIfAvailable<MemoryDependenceAnalysis>(); |
| 75 | } |
| 76 | |
Chris Lattner | 29874e0 | 2008-12-03 19:44:02 +0000 | [diff] [blame] | 77 | while (PHINode *PN = dyn_cast<PHINode>(BB->begin())) { |
| 78 | if (PN->getIncomingValue(0) != PN) |
| 79 | PN->replaceAllUsesWith(PN->getIncomingValue(0)); |
| 80 | else |
Owen Anderson | 9e9a0d5 | 2009-07-30 23:03:37 +0000 | [diff] [blame] | 81 | PN->replaceAllUsesWith(UndefValue::get(PN->getType())); |
Chris Lattner | b5b7997 | 2011-01-11 08:13:40 +0000 | [diff] [blame] | 82 | |
| 83 | if (MemDep) |
| 84 | MemDep->removeInstruction(PN); // Memdep updates AA itself. |
| 85 | else if (AA && isa<PointerType>(PN->getType())) |
| 86 | AA->deleteValue(PN); |
| 87 | |
Chris Lattner | 29874e0 | 2008-12-03 19:44:02 +0000 | [diff] [blame] | 88 | PN->eraseFromParent(); |
| 89 | } |
| 90 | } |
| 91 | |
| 92 | |
Dan Gohman | afc36a9 | 2009-05-02 18:29:22 +0000 | [diff] [blame] | 93 | /// DeleteDeadPHIs - Examine each PHI in the given block and delete it if it |
| 94 | /// is dead. Also recursively delete any operands that become dead as |
| 95 | /// a result. This includes tracing the def-use list from the PHI to see if |
Dan Gohman | 35738ac | 2009-05-04 22:30:44 +0000 | [diff] [blame] | 96 | /// it is ultimately unused or if it reaches an unused cycle. |
Benjamin Kramer | 8e0d1c0 | 2012-08-29 15:32:21 +0000 | [diff] [blame] | 97 | bool llvm::DeleteDeadPHIs(BasicBlock *BB, const TargetLibraryInfo *TLI) { |
Dan Gohman | afc36a9 | 2009-05-02 18:29:22 +0000 | [diff] [blame] | 98 | // Recursively deleting a PHI may cause multiple PHIs to be deleted |
| 99 | // or RAUW'd undef, so use an array of WeakVH for the PHIs to delete. |
| 100 | SmallVector<WeakVH, 8> PHIs; |
| 101 | for (BasicBlock::iterator I = BB->begin(); |
| 102 | PHINode *PN = dyn_cast<PHINode>(I); ++I) |
| 103 | PHIs.push_back(PN); |
| 104 | |
Dan Gohman | 90fe0bd | 2010-01-05 15:45:31 +0000 | [diff] [blame] | 105 | bool Changed = false; |
Dan Gohman | afc36a9 | 2009-05-02 18:29:22 +0000 | [diff] [blame] | 106 | for (unsigned i = 0, e = PHIs.size(); i != e; ++i) |
| 107 | if (PHINode *PN = dyn_cast_or_null<PHINode>(PHIs[i].operator Value*())) |
Benjamin Kramer | 8e0d1c0 | 2012-08-29 15:32:21 +0000 | [diff] [blame] | 108 | Changed |= RecursivelyDeleteDeadPHINode(PN, TLI); |
Dan Gohman | 90fe0bd | 2010-01-05 15:45:31 +0000 | [diff] [blame] | 109 | |
| 110 | return Changed; |
Dan Gohman | afc36a9 | 2009-05-02 18:29:22 +0000 | [diff] [blame] | 111 | } |
| 112 | |
Dan Gohman | 438b583 | 2009-10-31 17:33:01 +0000 | [diff] [blame] | 113 | /// MergeBlockIntoPredecessor - Attempts to merge a block into its predecessor, |
| 114 | /// if possible. The return value indicates success or failure. |
Chris Lattner | 8820292 | 2009-11-01 04:57:33 +0000 | [diff] [blame] | 115 | bool llvm::MergeBlockIntoPredecessor(BasicBlock *BB, Pass *P) { |
Dan Gohman | 1c034dc | 2010-08-17 17:07:02 +0000 | [diff] [blame] | 116 | // Don't merge away blocks who have their address taken. |
| 117 | if (BB->hasAddressTaken()) return false; |
Owen Anderson | 11f2ec8 | 2008-07-17 19:42:29 +0000 | [diff] [blame] | 118 | |
Dan Gohman | 1c034dc | 2010-08-17 17:07:02 +0000 | [diff] [blame] | 119 | // Can't merge if there are multiple predecessors, or no predecessors. |
| 120 | BasicBlock *PredBB = BB->getUniquePredecessor(); |
Dan Gohman | 438b583 | 2009-10-31 17:33:01 +0000 | [diff] [blame] | 121 | if (!PredBB) return false; |
Dan Gohman | 1c034dc | 2010-08-17 17:07:02 +0000 | [diff] [blame] | 122 | |
Dan Gohman | 438b583 | 2009-10-31 17:33:01 +0000 | [diff] [blame] | 123 | // Don't break self-loops. |
| 124 | if (PredBB == BB) return false; |
| 125 | // Don't break invokes. |
| 126 | if (isa<InvokeInst>(PredBB->getTerminator())) return false; |
| 127 | |
| 128 | succ_iterator SI(succ_begin(PredBB)), SE(succ_end(PredBB)); |
Chris Lattner | dc85f8a | 2011-01-08 19:08:40 +0000 | [diff] [blame] | 129 | BasicBlock *OnlySucc = BB; |
Dan Gohman | 438b583 | 2009-10-31 17:33:01 +0000 | [diff] [blame] | 130 | for (; SI != SE; ++SI) |
| 131 | if (*SI != OnlySucc) { |
| 132 | OnlySucc = 0; // There are multiple distinct successors! |
| 133 | break; |
| 134 | } |
| 135 | |
| 136 | // Can't merge if there are multiple successors. |
| 137 | if (!OnlySucc) return false; |
Devang Patel | e435a5d | 2008-09-09 01:06:56 +0000 | [diff] [blame] | 138 | |
Dan Gohman | 438b583 | 2009-10-31 17:33:01 +0000 | [diff] [blame] | 139 | // Can't merge if there is PHI loop. |
| 140 | for (BasicBlock::iterator BI = BB->begin(), BE = BB->end(); BI != BE; ++BI) { |
| 141 | if (PHINode *PN = dyn_cast<PHINode>(BI)) { |
| 142 | for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) |
| 143 | if (PN->getIncomingValue(i) == PN) |
| 144 | return false; |
| 145 | } else |
| 146 | break; |
| 147 | } |
| 148 | |
| 149 | // Begin by getting rid of unneeded PHIs. |
Chris Lattner | dc85f8a | 2011-01-08 19:08:40 +0000 | [diff] [blame] | 150 | if (isa<PHINode>(BB->front())) |
Chris Lattner | b5b7997 | 2011-01-11 08:13:40 +0000 | [diff] [blame] | 151 | FoldSingleEntryPHINodes(BB, P); |
Dan Gohman | 438b583 | 2009-10-31 17:33:01 +0000 | [diff] [blame] | 152 | |
Owen Anderson | b31b06d | 2008-07-17 00:01:40 +0000 | [diff] [blame] | 153 | // Delete the unconditional branch from the predecessor... |
| 154 | PredBB->getInstList().pop_back(); |
| 155 | |
Owen Anderson | b31b06d | 2008-07-17 00:01:40 +0000 | [diff] [blame] | 156 | // Make all PHI nodes that referred to BB now refer to Pred as their |
| 157 | // source... |
| 158 | BB->replaceAllUsesWith(PredBB); |
| 159 | |
Jay Foad | 95c3e48 | 2011-06-23 09:09:15 +0000 | [diff] [blame] | 160 | // Move all definitions in the successor to the predecessor... |
| 161 | PredBB->getInstList().splice(PredBB->end(), BB->getInstList()); |
| 162 | |
Dan Gohman | 438b583 | 2009-10-31 17:33:01 +0000 | [diff] [blame] | 163 | // Inherit predecessors name if it exists. |
Owen Anderson | 11f2ec8 | 2008-07-17 19:42:29 +0000 | [diff] [blame] | 164 | if (!PredBB->hasName()) |
| 165 | PredBB->takeName(BB); |
| 166 | |
Owen Anderson | b31b06d | 2008-07-17 00:01:40 +0000 | [diff] [blame] | 167 | // Finally, erase the old block and update dominator info. |
| 168 | if (P) { |
Chris Lattner | dc85f8a | 2011-01-08 19:08:40 +0000 | [diff] [blame] | 169 | if (DominatorTree *DT = P->getAnalysisIfAvailable<DominatorTree>()) { |
| 170 | if (DomTreeNode *DTN = DT->getNode(BB)) { |
| 171 | DomTreeNode *PredDTN = DT->getNode(PredBB); |
Jakob Stoklund Olesen | fbbd4ab | 2011-01-11 22:54:38 +0000 | [diff] [blame] | 172 | SmallVector<DomTreeNode*, 8> Children(DTN->begin(), DTN->end()); |
| 173 | for (SmallVector<DomTreeNode*, 8>::iterator DI = Children.begin(), |
Owen Anderson | b31b06d | 2008-07-17 00:01:40 +0000 | [diff] [blame] | 174 | DE = Children.end(); DI != DE; ++DI) |
| 175 | DT->changeImmediateDominator(*DI, PredDTN); |
| 176 | |
| 177 | DT->eraseNode(BB); |
| 178 | } |
Chris Lattner | dc85f8a | 2011-01-08 19:08:40 +0000 | [diff] [blame] | 179 | |
| 180 | if (LoopInfo *LI = P->getAnalysisIfAvailable<LoopInfo>()) |
| 181 | LI->removeBlock(BB); |
Chris Lattner | b681099 | 2011-01-11 08:16:49 +0000 | [diff] [blame] | 182 | |
| 183 | if (MemoryDependenceAnalysis *MD = |
| 184 | P->getAnalysisIfAvailable<MemoryDependenceAnalysis>()) |
| 185 | MD->invalidateCachedPredecessors(); |
Owen Anderson | b31b06d | 2008-07-17 00:01:40 +0000 | [diff] [blame] | 186 | } |
| 187 | } |
| 188 | |
| 189 | BB->eraseFromParent(); |
Dan Gohman | 438b583 | 2009-10-31 17:33:01 +0000 | [diff] [blame] | 190 | return true; |
Owen Anderson | b31b06d | 2008-07-17 00:01:40 +0000 | [diff] [blame] | 191 | } |
| 192 | |
Chris Lattner | 0f67dd6 | 2005-04-21 16:04:49 +0000 | [diff] [blame] | 193 | /// ReplaceInstWithValue - Replace all uses of an instruction (specified by BI) |
| 194 | /// with a value, then remove and delete the original instruction. |
| 195 | /// |
Chris Lattner | f7703df | 2004-01-09 06:12:26 +0000 | [diff] [blame] | 196 | void llvm::ReplaceInstWithValue(BasicBlock::InstListType &BIL, |
| 197 | BasicBlock::iterator &BI, Value *V) { |
Chris Lattner | 1896150 | 2002-06-25 16:12:52 +0000 | [diff] [blame] | 198 | Instruction &I = *BI; |
Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 199 | // Replaces all of the uses of the instruction with uses of the value |
Chris Lattner | 1896150 | 2002-06-25 16:12:52 +0000 | [diff] [blame] | 200 | I.replaceAllUsesWith(V); |
Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 201 | |
Chris Lattner | 86cc423 | 2007-02-11 01:37:51 +0000 | [diff] [blame] | 202 | // Make sure to propagate a name if there is one already. |
| 203 | if (I.hasName() && !V->hasName()) |
| 204 | V->takeName(&I); |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 205 | |
Misha Brukman | 5560c9d | 2003-08-18 14:43:39 +0000 | [diff] [blame] | 206 | // Delete the unnecessary instruction now... |
Chris Lattner | 1896150 | 2002-06-25 16:12:52 +0000 | [diff] [blame] | 207 | BI = BIL.erase(BI); |
Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 208 | } |
| 209 | |
| 210 | |
Chris Lattner | 0f67dd6 | 2005-04-21 16:04:49 +0000 | [diff] [blame] | 211 | /// ReplaceInstWithInst - Replace the instruction specified by BI with the |
| 212 | /// instruction specified by I. The original instruction is deleted and BI is |
| 213 | /// updated to point to the new instruction. |
| 214 | /// |
Chris Lattner | f7703df | 2004-01-09 06:12:26 +0000 | [diff] [blame] | 215 | void llvm::ReplaceInstWithInst(BasicBlock::InstListType &BIL, |
| 216 | BasicBlock::iterator &BI, Instruction *I) { |
Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 217 | assert(I->getParent() == 0 && |
| 218 | "ReplaceInstWithInst: Instruction already inserted into basic block!"); |
| 219 | |
| 220 | // Insert the new instruction into the basic block... |
Chris Lattner | 1896150 | 2002-06-25 16:12:52 +0000 | [diff] [blame] | 221 | BasicBlock::iterator New = BIL.insert(BI, I); |
Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 222 | |
| 223 | // Replace all uses of the old instruction, and delete it. |
| 224 | ReplaceInstWithValue(BIL, BI, I); |
| 225 | |
| 226 | // Move BI back to point to the newly inserted instruction |
Chris Lattner | 1896150 | 2002-06-25 16:12:52 +0000 | [diff] [blame] | 227 | BI = New; |
Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 228 | } |
| 229 | |
Chris Lattner | 0f67dd6 | 2005-04-21 16:04:49 +0000 | [diff] [blame] | 230 | /// ReplaceInstWithInst - Replace the instruction specified by From with the |
| 231 | /// instruction specified by To. |
| 232 | /// |
Chris Lattner | f7703df | 2004-01-09 06:12:26 +0000 | [diff] [blame] | 233 | void llvm::ReplaceInstWithInst(Instruction *From, Instruction *To) { |
Chris Lattner | 1896150 | 2002-06-25 16:12:52 +0000 | [diff] [blame] | 234 | BasicBlock::iterator BI(From); |
| 235 | ReplaceInstWithInst(From->getParent()->getInstList(), BI, To); |
Chris Lattner | 4d1e46e | 2002-05-07 18:07:59 +0000 | [diff] [blame] | 236 | } |
Chris Lattner | b0f0ef8 | 2002-07-29 22:32:08 +0000 | [diff] [blame] | 237 | |
Bob Wilson | ae23daf | 2010-02-16 21:06:42 +0000 | [diff] [blame] | 238 | /// GetSuccessorNumber - Search for the specified successor of basic block BB |
| 239 | /// and return its position in the terminator instruction's list of |
| 240 | /// successors. It is an error to call this with a block that is not a |
| 241 | /// successor. |
| 242 | unsigned llvm::GetSuccessorNumber(BasicBlock *BB, BasicBlock *Succ) { |
Bob Wilson | adb6f22 | 2010-02-16 19:49:17 +0000 | [diff] [blame] | 243 | TerminatorInst *Term = BB->getTerminator(); |
Devang Patel | 8a88a14 | 2008-11-03 23:14:09 +0000 | [diff] [blame] | 244 | #ifndef NDEBUG |
Bob Wilson | adb6f22 | 2010-02-16 19:49:17 +0000 | [diff] [blame] | 245 | unsigned e = Term->getNumSuccessors(); |
Devang Patel | 8a88a14 | 2008-11-03 23:14:09 +0000 | [diff] [blame] | 246 | #endif |
| 247 | for (unsigned i = 0; ; ++i) { |
Devang Patel | 8019893 | 2007-07-06 21:39:20 +0000 | [diff] [blame] | 248 | assert(i != e && "Didn't find edge?"); |
Bob Wilson | adb6f22 | 2010-02-16 19:49:17 +0000 | [diff] [blame] | 249 | if (Term->getSuccessor(i) == Succ) |
| 250 | return i; |
Devang Patel | 8019893 | 2007-07-06 21:39:20 +0000 | [diff] [blame] | 251 | } |
Bob Wilson | adb6f22 | 2010-02-16 19:49:17 +0000 | [diff] [blame] | 252 | } |
| 253 | |
| 254 | /// SplitEdge - Split the edge connecting specified block. Pass P must |
| 255 | /// not be NULL. |
| 256 | BasicBlock *llvm::SplitEdge(BasicBlock *BB, BasicBlock *Succ, Pass *P) { |
Bob Wilson | ae23daf | 2010-02-16 21:06:42 +0000 | [diff] [blame] | 257 | unsigned SuccNum = GetSuccessorNumber(BB, Succ); |
Devang Patel | 8019893 | 2007-07-06 21:39:20 +0000 | [diff] [blame] | 258 | |
| 259 | // If this is a critical edge, let SplitCriticalEdge do it. |
Bob Wilson | adb6f22 | 2010-02-16 19:49:17 +0000 | [diff] [blame] | 260 | TerminatorInst *LatchTerm = BB->getTerminator(); |
| 261 | if (SplitCriticalEdge(LatchTerm, SuccNum, P)) |
Devang Patel | 8019893 | 2007-07-06 21:39:20 +0000 | [diff] [blame] | 262 | return LatchTerm->getSuccessor(SuccNum); |
| 263 | |
| 264 | // If the edge isn't critical, then BB has a single successor or Succ has a |
| 265 | // single pred. Split the block. |
| 266 | BasicBlock::iterator SplitPoint; |
| 267 | if (BasicBlock *SP = Succ->getSinglePredecessor()) { |
| 268 | // If the successor only has a single pred, split the top of the successor |
| 269 | // block. |
| 270 | assert(SP == BB && "CFG broken"); |
Devang Patel | 8a88a14 | 2008-11-03 23:14:09 +0000 | [diff] [blame] | 271 | SP = NULL; |
Devang Patel | 8019893 | 2007-07-06 21:39:20 +0000 | [diff] [blame] | 272 | return SplitBlock(Succ, Succ->begin(), P); |
Devang Patel | 8019893 | 2007-07-06 21:39:20 +0000 | [diff] [blame] | 273 | } |
Chris Lattner | b0433d4 | 2011-01-08 18:47:43 +0000 | [diff] [blame] | 274 | |
| 275 | // Otherwise, if BB has a single successor, split it at the bottom of the |
| 276 | // block. |
| 277 | assert(BB->getTerminator()->getNumSuccessors() == 1 && |
| 278 | "Should have a single succ!"); |
| 279 | return SplitBlock(BB, BB->getTerminator(), P); |
Devang Patel | 8019893 | 2007-07-06 21:39:20 +0000 | [diff] [blame] | 280 | } |
| 281 | |
| 282 | /// SplitBlock - Split the specified block at the specified instruction - every |
| 283 | /// thing before SplitPt stays in Old and everything starting with SplitPt moves |
| 284 | /// to a new block. The two blocks are joined by an unconditional branch and |
| 285 | /// the loop info is updated. |
| 286 | /// |
| 287 | BasicBlock *llvm::SplitBlock(BasicBlock *Old, Instruction *SplitPt, Pass *P) { |
Devang Patel | 8019893 | 2007-07-06 21:39:20 +0000 | [diff] [blame] | 288 | BasicBlock::iterator SplitIt = SplitPt; |
Bill Wendling | ab82fd9 | 2011-08-17 21:21:31 +0000 | [diff] [blame] | 289 | while (isa<PHINode>(SplitIt) || isa<LandingPadInst>(SplitIt)) |
Devang Patel | 8019893 | 2007-07-06 21:39:20 +0000 | [diff] [blame] | 290 | ++SplitIt; |
| 291 | BasicBlock *New = Old->splitBasicBlock(SplitIt, Old->getName()+".split"); |
| 292 | |
Dan Gohman | 5c89b52 | 2009-09-08 15:45:00 +0000 | [diff] [blame] | 293 | // The new block lives in whichever loop the old one did. This preserves |
| 294 | // LCSSA as well, because we force the split point to be after any PHI nodes. |
Chris Lattner | dc85f8a | 2011-01-08 19:08:40 +0000 | [diff] [blame] | 295 | if (LoopInfo *LI = P->getAnalysisIfAvailable<LoopInfo>()) |
Owen Anderson | a90793b | 2008-10-03 06:55:35 +0000 | [diff] [blame] | 296 | if (Loop *L = LI->getLoopFor(Old)) |
| 297 | L->addBasicBlockToLoop(New, LI->getBase()); |
Devang Patel | 8019893 | 2007-07-06 21:39:20 +0000 | [diff] [blame] | 298 | |
Evan Cheng | 0f1666b | 2010-04-05 21:16:25 +0000 | [diff] [blame] | 299 | if (DominatorTree *DT = P->getAnalysisIfAvailable<DominatorTree>()) { |
Gabor Greif | e2d5004 | 2010-09-10 22:25:58 +0000 | [diff] [blame] | 300 | // Old dominates New. New node dominates all other nodes dominated by Old. |
Rafael Espindola | 605e2b5 | 2011-08-24 18:07:01 +0000 | [diff] [blame] | 301 | if (DomTreeNode *OldNode = DT->getNode(Old)) { |
| 302 | std::vector<DomTreeNode *> Children; |
| 303 | for (DomTreeNode::iterator I = OldNode->begin(), E = OldNode->end(); |
| 304 | I != E; ++I) |
| 305 | Children.push_back(*I); |
Devang Patel | a8a8a36 | 2007-07-19 02:29:24 +0000 | [diff] [blame] | 306 | |
Evan Cheng | 0f1666b | 2010-04-05 21:16:25 +0000 | [diff] [blame] | 307 | DomTreeNode *NewNode = DT->addNewBlock(New,Old); |
Devang Patel | a8a8a36 | 2007-07-19 02:29:24 +0000 | [diff] [blame] | 308 | for (std::vector<DomTreeNode *>::iterator I = Children.begin(), |
| 309 | E = Children.end(); I != E; ++I) |
| 310 | DT->changeImmediateDominator(*I, NewNode); |
Rafael Espindola | 605e2b5 | 2011-08-24 18:07:01 +0000 | [diff] [blame] | 311 | } |
Evan Cheng | 0f1666b | 2010-04-05 21:16:25 +0000 | [diff] [blame] | 312 | } |
Devang Patel | 8019893 | 2007-07-06 21:39:20 +0000 | [diff] [blame] | 313 | |
Devang Patel | 8019893 | 2007-07-06 21:39:20 +0000 | [diff] [blame] | 314 | return New; |
| 315 | } |
Chris Lattner | 54b9c3b | 2008-04-21 01:28:02 +0000 | [diff] [blame] | 316 | |
Bill Wendling | a644b33 | 2011-08-18 05:25:23 +0000 | [diff] [blame] | 317 | /// UpdateAnalysisInformation - Update DominatorTree, LoopInfo, and LCCSA |
| 318 | /// analysis information. |
Bill Wendling | d477014 | 2011-08-18 17:57:57 +0000 | [diff] [blame] | 319 | static void UpdateAnalysisInformation(BasicBlock *OldBB, BasicBlock *NewBB, |
Bill Wendling | 9210e84 | 2011-08-18 20:39:32 +0000 | [diff] [blame] | 320 | ArrayRef<BasicBlock *> Preds, |
| 321 | Pass *P, bool &HasLoopExit) { |
Bill Wendling | a644b33 | 2011-08-18 05:25:23 +0000 | [diff] [blame] | 322 | if (!P) return; |
| 323 | |
| 324 | LoopInfo *LI = P->getAnalysisIfAvailable<LoopInfo>(); |
| 325 | Loop *L = LI ? LI->getLoopFor(OldBB) : 0; |
Bill Wendling | a644b33 | 2011-08-18 05:25:23 +0000 | [diff] [blame] | 326 | |
| 327 | // If we need to preserve loop analyses, collect some information about how |
| 328 | // this split will affect loops. |
| 329 | bool IsLoopEntry = !!L; |
| 330 | bool SplitMakesNewLoopHeader = false; |
| 331 | if (LI) { |
Bill Wendling | 7e8840c | 2011-08-19 00:05:40 +0000 | [diff] [blame] | 332 | bool PreserveLCSSA = P->mustPreserveAnalysisID(LCSSAID); |
Bill Wendling | 9210e84 | 2011-08-18 20:39:32 +0000 | [diff] [blame] | 333 | for (ArrayRef<BasicBlock*>::iterator |
| 334 | i = Preds.begin(), e = Preds.end(); i != e; ++i) { |
| 335 | BasicBlock *Pred = *i; |
Bill Wendling | 7e8840c | 2011-08-19 00:05:40 +0000 | [diff] [blame] | 336 | |
Bill Wendling | a644b33 | 2011-08-18 05:25:23 +0000 | [diff] [blame] | 337 | // If we need to preserve LCSSA, determine if any of the preds is a loop |
| 338 | // exit. |
| 339 | if (PreserveLCSSA) |
Bill Wendling | 9210e84 | 2011-08-18 20:39:32 +0000 | [diff] [blame] | 340 | if (Loop *PL = LI->getLoopFor(Pred)) |
Bill Wendling | a644b33 | 2011-08-18 05:25:23 +0000 | [diff] [blame] | 341 | if (!PL->contains(OldBB)) |
| 342 | HasLoopExit = true; |
| 343 | |
| 344 | // If we need to preserve LoopInfo, note whether any of the preds crosses |
| 345 | // an interesting loop boundary. |
| 346 | if (!L) continue; |
Bill Wendling | 9210e84 | 2011-08-18 20:39:32 +0000 | [diff] [blame] | 347 | if (L->contains(Pred)) |
Bill Wendling | a644b33 | 2011-08-18 05:25:23 +0000 | [diff] [blame] | 348 | IsLoopEntry = false; |
| 349 | else |
| 350 | SplitMakesNewLoopHeader = true; |
| 351 | } |
| 352 | } |
| 353 | |
| 354 | // Update dominator tree if available. |
| 355 | DominatorTree *DT = P->getAnalysisIfAvailable<DominatorTree>(); |
| 356 | if (DT) |
| 357 | DT->splitBlock(NewBB); |
| 358 | |
| 359 | if (!L) return; |
| 360 | |
| 361 | if (IsLoopEntry) { |
| 362 | // Add the new block to the nearest enclosing loop (and not an adjacent |
| 363 | // loop). To find this, examine each of the predecessors and determine which |
| 364 | // loops enclose them, and select the most-nested loop which contains the |
| 365 | // loop containing the block being split. |
| 366 | Loop *InnermostPredLoop = 0; |
Bill Wendling | 9210e84 | 2011-08-18 20:39:32 +0000 | [diff] [blame] | 367 | for (ArrayRef<BasicBlock*>::iterator |
| 368 | i = Preds.begin(), e = Preds.end(); i != e; ++i) { |
| 369 | BasicBlock *Pred = *i; |
| 370 | if (Loop *PredLoop = LI->getLoopFor(Pred)) { |
Bill Wendling | a644b33 | 2011-08-18 05:25:23 +0000 | [diff] [blame] | 371 | // Seek a loop which actually contains the block being split (to avoid |
| 372 | // adjacent loops). |
| 373 | while (PredLoop && !PredLoop->contains(OldBB)) |
| 374 | PredLoop = PredLoop->getParentLoop(); |
| 375 | |
| 376 | // Select the most-nested of these loops which contains the block. |
| 377 | if (PredLoop && PredLoop->contains(OldBB) && |
| 378 | (!InnermostPredLoop || |
| 379 | InnermostPredLoop->getLoopDepth() < PredLoop->getLoopDepth())) |
| 380 | InnermostPredLoop = PredLoop; |
| 381 | } |
Bill Wendling | 9210e84 | 2011-08-18 20:39:32 +0000 | [diff] [blame] | 382 | } |
Bill Wendling | a644b33 | 2011-08-18 05:25:23 +0000 | [diff] [blame] | 383 | |
| 384 | if (InnermostPredLoop) |
| 385 | InnermostPredLoop->addBasicBlockToLoop(NewBB, LI->getBase()); |
| 386 | } else { |
| 387 | L->addBasicBlockToLoop(NewBB, LI->getBase()); |
| 388 | if (SplitMakesNewLoopHeader) |
| 389 | L->moveToHeader(NewBB); |
| 390 | } |
| 391 | } |
| 392 | |
Bill Wendling | 1c44d86 | 2011-08-18 20:51:04 +0000 | [diff] [blame] | 393 | /// UpdatePHINodes - Update the PHI nodes in OrigBB to include the values coming |
| 394 | /// from NewBB. This also updates AliasAnalysis, if available. |
| 395 | static void UpdatePHINodes(BasicBlock *OrigBB, BasicBlock *NewBB, |
| 396 | ArrayRef<BasicBlock*> Preds, BranchInst *BI, |
| 397 | Pass *P, bool HasLoopExit) { |
| 398 | // Otherwise, create a new PHI node in NewBB for each PHI node in OrigBB. |
| 399 | AliasAnalysis *AA = P ? P->getAnalysisIfAvailable<AliasAnalysis>() : 0; |
| 400 | for (BasicBlock::iterator I = OrigBB->begin(); isa<PHINode>(I); ) { |
| 401 | PHINode *PN = cast<PHINode>(I++); |
| 402 | |
| 403 | // Check to see if all of the values coming in are the same. If so, we |
| 404 | // don't need to create a new PHI node, unless it's needed for LCSSA. |
| 405 | Value *InVal = 0; |
| 406 | if (!HasLoopExit) { |
| 407 | InVal = PN->getIncomingValueForBlock(Preds[0]); |
| 408 | for (unsigned i = 1, e = Preds.size(); i != e; ++i) |
| 409 | if (InVal != PN->getIncomingValueForBlock(Preds[i])) { |
| 410 | InVal = 0; |
| 411 | break; |
| 412 | } |
| 413 | } |
| 414 | |
| 415 | if (InVal) { |
| 416 | // If all incoming values for the new PHI would be the same, just don't |
| 417 | // make a new PHI. Instead, just remove the incoming values from the old |
| 418 | // PHI. |
| 419 | for (unsigned i = 0, e = Preds.size(); i != e; ++i) |
| 420 | PN->removeIncomingValue(Preds[i], false); |
| 421 | } else { |
| 422 | // If the values coming into the block are not the same, we need a PHI. |
| 423 | // Create the new PHI node, insert it into NewBB at the end of the block |
| 424 | PHINode *NewPHI = |
| 425 | PHINode::Create(PN->getType(), Preds.size(), PN->getName() + ".ph", BI); |
| 426 | if (AA) AA->copyValue(PN, NewPHI); |
| 427 | |
| 428 | // Move all of the PHI values for 'Preds' to the new PHI. |
| 429 | for (unsigned i = 0, e = Preds.size(); i != e; ++i) { |
| 430 | Value *V = PN->removeIncomingValue(Preds[i], false); |
| 431 | NewPHI->addIncoming(V, Preds[i]); |
| 432 | } |
| 433 | |
| 434 | InVal = NewPHI; |
| 435 | } |
| 436 | |
| 437 | // Add an incoming value to the PHI node in the loop for the preheader |
| 438 | // edge. |
| 439 | PN->addIncoming(InVal, NewBB); |
| 440 | } |
| 441 | } |
| 442 | |
Chris Lattner | 54b9c3b | 2008-04-21 01:28:02 +0000 | [diff] [blame] | 443 | /// SplitBlockPredecessors - This method transforms BB by introducing a new |
| 444 | /// basic block into the function, and moving some of the predecessors of BB to |
| 445 | /// be predecessors of the new block. The new predecessors are indicated by the |
| 446 | /// Preds array, which has NumPreds elements in it. The new block is given a |
| 447 | /// suffix of 'Suffix'. |
| 448 | /// |
Dan Gohman | 5c89b52 | 2009-09-08 15:45:00 +0000 | [diff] [blame] | 449 | /// This currently updates the LLVM IR, AliasAnalysis, DominatorTree, |
Cameron Zwarich | 3012787 | 2011-01-18 04:11:31 +0000 | [diff] [blame] | 450 | /// LoopInfo, and LCCSA but no other analyses. In particular, it does not |
| 451 | /// preserve LoopSimplify (because it's complicated to handle the case where one |
| 452 | /// of the edges being split is an exit of a loop with other exits). |
Dan Gohman | 5c89b52 | 2009-09-08 15:45:00 +0000 | [diff] [blame] | 453 | /// |
Chris Lattner | 54b9c3b | 2008-04-21 01:28:02 +0000 | [diff] [blame] | 454 | BasicBlock *llvm::SplitBlockPredecessors(BasicBlock *BB, |
Jakub Staszak | 2fac1d5 | 2011-12-09 21:19:53 +0000 | [diff] [blame] | 455 | ArrayRef<BasicBlock*> Preds, |
| 456 | const char *Suffix, Pass *P) { |
Chris Lattner | 54b9c3b | 2008-04-21 01:28:02 +0000 | [diff] [blame] | 457 | // Create new basic block, insert right before the original block. |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 458 | BasicBlock *NewBB = BasicBlock::Create(BB->getContext(), BB->getName()+Suffix, |
| 459 | BB->getParent(), BB); |
Chris Lattner | 54b9c3b | 2008-04-21 01:28:02 +0000 | [diff] [blame] | 460 | |
| 461 | // The new block unconditionally branches to the old block. |
| 462 | BranchInst *BI = BranchInst::Create(BB, NewBB); |
| 463 | |
| 464 | // Move the edges from Preds to point to NewBB instead of BB. |
Jakub Staszak | 2fac1d5 | 2011-12-09 21:19:53 +0000 | [diff] [blame] | 465 | for (unsigned i = 0, e = Preds.size(); i != e; ++i) { |
Dan Gohman | b8eb17c | 2009-11-05 18:25:44 +0000 | [diff] [blame] | 466 | // This is slightly more strict than necessary; the minimum requirement |
| 467 | // is that there be no more than one indirectbr branching to BB. And |
| 468 | // all BlockAddress uses would need to be updated. |
| 469 | assert(!isa<IndirectBrInst>(Preds[i]->getTerminator()) && |
| 470 | "Cannot split an edge from an IndirectBrInst"); |
Chris Lattner | 54b9c3b | 2008-04-21 01:28:02 +0000 | [diff] [blame] | 471 | Preds[i]->getTerminator()->replaceUsesOfWith(BB, NewBB); |
Dan Gohman | 5c89b52 | 2009-09-08 15:45:00 +0000 | [diff] [blame] | 472 | } |
| 473 | |
Chris Lattner | 54b9c3b | 2008-04-21 01:28:02 +0000 | [diff] [blame] | 474 | // Insert a new PHI node into NewBB for every PHI node in BB and that new PHI |
| 475 | // node becomes an incoming value for BB's phi node. However, if the Preds |
| 476 | // list is empty, we need to insert dummy entries into the PHI nodes in BB to |
| 477 | // account for the newly created predecessor. |
Jakub Staszak | 2fac1d5 | 2011-12-09 21:19:53 +0000 | [diff] [blame] | 478 | if (Preds.size() == 0) { |
Chris Lattner | 54b9c3b | 2008-04-21 01:28:02 +0000 | [diff] [blame] | 479 | // Insert dummy values as the incoming value. |
| 480 | for (BasicBlock::iterator I = BB->begin(); isa<PHINode>(I); ++I) |
Owen Anderson | 9e9a0d5 | 2009-07-30 23:03:37 +0000 | [diff] [blame] | 481 | cast<PHINode>(I)->addIncoming(UndefValue::get(I->getType()), NewBB); |
Chris Lattner | 54b9c3b | 2008-04-21 01:28:02 +0000 | [diff] [blame] | 482 | return NewBB; |
| 483 | } |
Dan Gohman | 5c89b52 | 2009-09-08 15:45:00 +0000 | [diff] [blame] | 484 | |
Bill Wendling | a644b33 | 2011-08-18 05:25:23 +0000 | [diff] [blame] | 485 | // Update DominatorTree, LoopInfo, and LCCSA analysis information. |
| 486 | bool HasLoopExit = false; |
Jakub Staszak | 2fac1d5 | 2011-12-09 21:19:53 +0000 | [diff] [blame] | 487 | UpdateAnalysisInformation(BB, NewBB, Preds, P, HasLoopExit); |
Dan Gohman | 5c89b52 | 2009-09-08 15:45:00 +0000 | [diff] [blame] | 488 | |
Bill Wendling | 1c44d86 | 2011-08-18 20:51:04 +0000 | [diff] [blame] | 489 | // Update the PHI nodes in BB with the values coming from NewBB. |
Jakub Staszak | 2fac1d5 | 2011-12-09 21:19:53 +0000 | [diff] [blame] | 490 | UpdatePHINodes(BB, NewBB, Preds, BI, P, HasLoopExit); |
Chris Lattner | 54b9c3b | 2008-04-21 01:28:02 +0000 | [diff] [blame] | 491 | return NewBB; |
| 492 | } |
Chris Lattner | 52c9585 | 2008-11-27 08:10:05 +0000 | [diff] [blame] | 493 | |
Bill Wendling | 7e8840c | 2011-08-19 00:05:40 +0000 | [diff] [blame] | 494 | /// SplitLandingPadPredecessors - This method transforms the landing pad, |
| 495 | /// OrigBB, by introducing two new basic blocks into the function. One of those |
| 496 | /// new basic blocks gets the predecessors listed in Preds. The other basic |
| 497 | /// block gets the remaining predecessors of OrigBB. The landingpad instruction |
| 498 | /// OrigBB is clone into both of the new basic blocks. The new blocks are given |
| 499 | /// the suffixes 'Suffix1' and 'Suffix2', and are returned in the NewBBs vector. |
| 500 | /// |
| 501 | /// This currently updates the LLVM IR, AliasAnalysis, DominatorTree, |
| 502 | /// DominanceFrontier, LoopInfo, and LCCSA but no other analyses. In particular, |
| 503 | /// it does not preserve LoopSimplify (because it's complicated to handle the |
| 504 | /// case where one of the edges being split is an exit of a loop with other |
| 505 | /// exits). |
| 506 | /// |
| 507 | void llvm::SplitLandingPadPredecessors(BasicBlock *OrigBB, |
| 508 | ArrayRef<BasicBlock*> Preds, |
| 509 | const char *Suffix1, const char *Suffix2, |
| 510 | Pass *P, |
| 511 | SmallVectorImpl<BasicBlock*> &NewBBs) { |
| 512 | assert(OrigBB->isLandingPad() && "Trying to split a non-landing pad!"); |
| 513 | |
| 514 | // Create a new basic block for OrigBB's predecessors listed in Preds. Insert |
| 515 | // it right before the original block. |
| 516 | BasicBlock *NewBB1 = BasicBlock::Create(OrigBB->getContext(), |
| 517 | OrigBB->getName() + Suffix1, |
| 518 | OrigBB->getParent(), OrigBB); |
| 519 | NewBBs.push_back(NewBB1); |
| 520 | |
| 521 | // The new block unconditionally branches to the old block. |
| 522 | BranchInst *BI1 = BranchInst::Create(OrigBB, NewBB1); |
| 523 | |
| 524 | // Move the edges from Preds to point to NewBB1 instead of OrigBB. |
| 525 | for (unsigned i = 0, e = Preds.size(); i != e; ++i) { |
| 526 | // This is slightly more strict than necessary; the minimum requirement |
| 527 | // is that there be no more than one indirectbr branching to BB. And |
| 528 | // all BlockAddress uses would need to be updated. |
| 529 | assert(!isa<IndirectBrInst>(Preds[i]->getTerminator()) && |
| 530 | "Cannot split an edge from an IndirectBrInst"); |
| 531 | Preds[i]->getTerminator()->replaceUsesOfWith(OrigBB, NewBB1); |
| 532 | } |
| 533 | |
| 534 | // Update DominatorTree, LoopInfo, and LCCSA analysis information. |
| 535 | bool HasLoopExit = false; |
| 536 | UpdateAnalysisInformation(OrigBB, NewBB1, Preds, P, HasLoopExit); |
| 537 | |
| 538 | // Update the PHI nodes in OrigBB with the values coming from NewBB1. |
| 539 | UpdatePHINodes(OrigBB, NewBB1, Preds, BI1, P, HasLoopExit); |
| 540 | |
Bill Wendling | 7e8840c | 2011-08-19 00:05:40 +0000 | [diff] [blame] | 541 | // Move the remaining edges from OrigBB to point to NewBB2. |
| 542 | SmallVector<BasicBlock*, 8> NewBB2Preds; |
| 543 | for (pred_iterator i = pred_begin(OrigBB), e = pred_end(OrigBB); |
| 544 | i != e; ) { |
| 545 | BasicBlock *Pred = *i++; |
Bill Wendling | 94657b9 | 2011-08-19 23:46:30 +0000 | [diff] [blame] | 546 | if (Pred == NewBB1) continue; |
Bill Wendling | 7e8840c | 2011-08-19 00:05:40 +0000 | [diff] [blame] | 547 | assert(!isa<IndirectBrInst>(Pred->getTerminator()) && |
| 548 | "Cannot split an edge from an IndirectBrInst"); |
Bill Wendling | 7e8840c | 2011-08-19 00:05:40 +0000 | [diff] [blame] | 549 | NewBB2Preds.push_back(Pred); |
| 550 | e = pred_end(OrigBB); |
| 551 | } |
| 552 | |
Bill Wendling | 94657b9 | 2011-08-19 23:46:30 +0000 | [diff] [blame] | 553 | BasicBlock *NewBB2 = 0; |
| 554 | if (!NewBB2Preds.empty()) { |
| 555 | // Create another basic block for the rest of OrigBB's predecessors. |
| 556 | NewBB2 = BasicBlock::Create(OrigBB->getContext(), |
| 557 | OrigBB->getName() + Suffix2, |
| 558 | OrigBB->getParent(), OrigBB); |
| 559 | NewBBs.push_back(NewBB2); |
Bill Wendling | 7e8840c | 2011-08-19 00:05:40 +0000 | [diff] [blame] | 560 | |
Bill Wendling | 94657b9 | 2011-08-19 23:46:30 +0000 | [diff] [blame] | 561 | // The new block unconditionally branches to the old block. |
| 562 | BranchInst *BI2 = BranchInst::Create(OrigBB, NewBB2); |
| 563 | |
| 564 | // Move the remaining edges from OrigBB to point to NewBB2. |
| 565 | for (SmallVectorImpl<BasicBlock*>::iterator |
| 566 | i = NewBB2Preds.begin(), e = NewBB2Preds.end(); i != e; ++i) |
| 567 | (*i)->getTerminator()->replaceUsesOfWith(OrigBB, NewBB2); |
| 568 | |
| 569 | // Update DominatorTree, LoopInfo, and LCCSA analysis information. |
| 570 | HasLoopExit = false; |
| 571 | UpdateAnalysisInformation(OrigBB, NewBB2, NewBB2Preds, P, HasLoopExit); |
| 572 | |
| 573 | // Update the PHI nodes in OrigBB with the values coming from NewBB2. |
| 574 | UpdatePHINodes(OrigBB, NewBB2, NewBB2Preds, BI2, P, HasLoopExit); |
| 575 | } |
Bill Wendling | 7e8840c | 2011-08-19 00:05:40 +0000 | [diff] [blame] | 576 | |
| 577 | LandingPadInst *LPad = OrigBB->getLandingPadInst(); |
| 578 | Instruction *Clone1 = LPad->clone(); |
| 579 | Clone1->setName(Twine("lpad") + Suffix1); |
| 580 | NewBB1->getInstList().insert(NewBB1->getFirstInsertionPt(), Clone1); |
| 581 | |
Bill Wendling | 94657b9 | 2011-08-19 23:46:30 +0000 | [diff] [blame] | 582 | if (NewBB2) { |
| 583 | Instruction *Clone2 = LPad->clone(); |
| 584 | Clone2->setName(Twine("lpad") + Suffix2); |
| 585 | NewBB2->getInstList().insert(NewBB2->getFirstInsertionPt(), Clone2); |
Bill Wendling | 7e8840c | 2011-08-19 00:05:40 +0000 | [diff] [blame] | 586 | |
Bill Wendling | 94657b9 | 2011-08-19 23:46:30 +0000 | [diff] [blame] | 587 | // Create a PHI node for the two cloned landingpad instructions. |
| 588 | PHINode *PN = PHINode::Create(LPad->getType(), 2, "lpad.phi", LPad); |
| 589 | PN->addIncoming(Clone1, NewBB1); |
| 590 | PN->addIncoming(Clone2, NewBB2); |
| 591 | LPad->replaceAllUsesWith(PN); |
| 592 | LPad->eraseFromParent(); |
| 593 | } else { |
| 594 | // There is no second clone. Just replace the landing pad with the first |
| 595 | // clone. |
| 596 | LPad->replaceAllUsesWith(Clone1); |
| 597 | LPad->eraseFromParent(); |
| 598 | } |
Bill Wendling | 7e8840c | 2011-08-19 00:05:40 +0000 | [diff] [blame] | 599 | } |
| 600 | |
Mike Stump | fe095f3 | 2009-05-04 18:40:41 +0000 | [diff] [blame] | 601 | /// FindFunctionBackedges - Analyze the specified function to find all of the |
| 602 | /// loop backedges in the function and return them. This is a relatively cheap |
| 603 | /// (compared to computing dominators and loop info) analysis. |
| 604 | /// |
| 605 | /// The output is added to Result, as pairs of <from,to> edge info. |
| 606 | void llvm::FindFunctionBackedges(const Function &F, |
| 607 | SmallVectorImpl<std::pair<const BasicBlock*,const BasicBlock*> > &Result) { |
| 608 | const BasicBlock *BB = &F.getEntryBlock(); |
| 609 | if (succ_begin(BB) == succ_end(BB)) |
| 610 | return; |
| 611 | |
| 612 | SmallPtrSet<const BasicBlock*, 8> Visited; |
| 613 | SmallVector<std::pair<const BasicBlock*, succ_const_iterator>, 8> VisitStack; |
| 614 | SmallPtrSet<const BasicBlock*, 8> InStack; |
| 615 | |
| 616 | Visited.insert(BB); |
| 617 | VisitStack.push_back(std::make_pair(BB, succ_begin(BB))); |
| 618 | InStack.insert(BB); |
| 619 | do { |
| 620 | std::pair<const BasicBlock*, succ_const_iterator> &Top = VisitStack.back(); |
| 621 | const BasicBlock *ParentBB = Top.first; |
| 622 | succ_const_iterator &I = Top.second; |
| 623 | |
| 624 | bool FoundNew = false; |
| 625 | while (I != succ_end(ParentBB)) { |
| 626 | BB = *I++; |
| 627 | if (Visited.insert(BB)) { |
| 628 | FoundNew = true; |
| 629 | break; |
| 630 | } |
| 631 | // Successor is in VisitStack, it's a back edge. |
| 632 | if (InStack.count(BB)) |
| 633 | Result.push_back(std::make_pair(ParentBB, BB)); |
| 634 | } |
| 635 | |
| 636 | if (FoundNew) { |
| 637 | // Go down one level if there is a unvisited successor. |
| 638 | InStack.insert(BB); |
| 639 | VisitStack.push_back(std::make_pair(BB, succ_begin(BB))); |
| 640 | } else { |
| 641 | // Go up one level. |
| 642 | InStack.erase(VisitStack.pop_back_val().first); |
| 643 | } |
Evan Cheng | c3f507f | 2011-01-29 04:46:23 +0000 | [diff] [blame] | 644 | } while (!VisitStack.empty()); |
| 645 | } |
| 646 | |
| 647 | /// FoldReturnIntoUncondBranch - This method duplicates the specified return |
| 648 | /// instruction into a predecessor which ends in an unconditional branch. If |
| 649 | /// the return instruction returns a value defined by a PHI, propagate the |
| 650 | /// right value into the return. It returns the new return instruction in the |
| 651 | /// predecessor. |
| 652 | ReturnInst *llvm::FoldReturnIntoUncondBranch(ReturnInst *RI, BasicBlock *BB, |
| 653 | BasicBlock *Pred) { |
| 654 | Instruction *UncondBranch = Pred->getTerminator(); |
| 655 | // Clone the return and add it to the end of the predecessor. |
| 656 | Instruction *NewRet = RI->clone(); |
| 657 | Pred->getInstList().push_back(NewRet); |
| 658 | |
| 659 | // If the return instruction returns a value, and if the value was a |
| 660 | // PHI node in "BB", propagate the right value into the return. |
| 661 | for (User::op_iterator i = NewRet->op_begin(), e = NewRet->op_end(); |
Evan Cheng | 9c777a4 | 2012-07-27 21:21:26 +0000 | [diff] [blame] | 662 | i != e; ++i) { |
| 663 | Value *V = *i; |
| 664 | Instruction *NewBC = 0; |
| 665 | if (BitCastInst *BCI = dyn_cast<BitCastInst>(V)) { |
| 666 | // Return value might be bitcasted. Clone and insert it before the |
| 667 | // return instruction. |
| 668 | V = BCI->getOperand(0); |
| 669 | NewBC = BCI->clone(); |
| 670 | Pred->getInstList().insert(NewRet, NewBC); |
| 671 | *i = NewBC; |
| 672 | } |
| 673 | if (PHINode *PN = dyn_cast<PHINode>(V)) { |
| 674 | if (PN->getParent() == BB) { |
| 675 | if (NewBC) |
| 676 | NewBC->setOperand(0, PN->getIncomingValueForBlock(Pred)); |
| 677 | else |
| 678 | *i = PN->getIncomingValueForBlock(Pred); |
| 679 | } |
| 680 | } |
| 681 | } |
Evan Cheng | c3f507f | 2011-01-29 04:46:23 +0000 | [diff] [blame] | 682 | |
| 683 | // Update any PHI nodes in the returning block to realize that we no |
| 684 | // longer branch to them. |
| 685 | BB->removePredecessor(Pred); |
| 686 | UncondBranch->eraseFromParent(); |
| 687 | return cast<ReturnInst>(NewRet); |
Mike Stump | fe095f3 | 2009-05-04 18:40:41 +0000 | [diff] [blame] | 688 | } |
Devang Patel | 40348e8 | 2011-04-29 22:28:59 +0000 | [diff] [blame] | 689 | |
Evgeniy Stepanov | 4a2dec0 | 2012-10-19 10:48:31 +0000 | [diff] [blame] | 690 | /// SplitBlockAndInsertIfThen - Split the containing block at the |
| 691 | /// specified instruction - everything before and including Cmp stays |
| 692 | /// in the old basic block, and everything after Cmp is moved to a |
| 693 | /// new block. The two blocks are connected by a conditional branch |
| 694 | /// (with value of Cmp being the condition). |
| 695 | /// Before: |
| 696 | /// Head |
| 697 | /// Cmp |
| 698 | /// Tail |
| 699 | /// After: |
| 700 | /// Head |
| 701 | /// Cmp |
| 702 | /// if (Cmp) |
| 703 | /// ThenBlock |
| 704 | /// Tail |
| 705 | /// |
| 706 | /// If Unreachable is true, then ThenBlock ends with |
| 707 | /// UnreachableInst, otherwise it branches to Tail. |
| 708 | /// Returns the NewBasicBlock's terminator. |
| 709 | |
| 710 | TerminatorInst *llvm::SplitBlockAndInsertIfThen(Instruction *Cmp, |
| 711 | bool Unreachable, MDNode *BranchWeights) { |
| 712 | Instruction *SplitBefore = Cmp->getNextNode(); |
| 713 | BasicBlock *Head = SplitBefore->getParent(); |
| 714 | BasicBlock *Tail = Head->splitBasicBlock(SplitBefore); |
| 715 | TerminatorInst *HeadOldTerm = Head->getTerminator(); |
| 716 | LLVMContext &C = Head->getContext(); |
| 717 | BasicBlock *ThenBlock = BasicBlock::Create(C, "", Head->getParent(), Tail); |
| 718 | TerminatorInst *CheckTerm; |
| 719 | if (Unreachable) |
| 720 | CheckTerm = new UnreachableInst(C, ThenBlock); |
| 721 | else |
| 722 | CheckTerm = BranchInst::Create(Tail, ThenBlock); |
| 723 | BranchInst *HeadNewTerm = |
| 724 | BranchInst::Create(/*ifTrue*/ThenBlock, /*ifFalse*/Tail, Cmp); |
| 725 | HeadNewTerm->setMetadata(LLVMContext::MD_prof, BranchWeights); |
| 726 | ReplaceInstWithInst(HeadOldTerm, HeadNewTerm); |
| 727 | return CheckTerm; |
| 728 | } |