Chris Lattner | d76efa0 | 2002-09-24 00:08:39 +0000 | [diff] [blame] | 1 | //===- BreakCriticalEdges.cpp - Critical Edge Elimination Pass ------------===// |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file was developed by the LLVM research group and is distributed under |
| 6 | // the University of Illinois Open Source License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | d76efa0 | 2002-09-24 00:08:39 +0000 | [diff] [blame] | 9 | // |
| 10 | // BreakCriticalEdges pass - Break all of the critical edges in the CFG by |
| 11 | // inserting a dummy basic block. This pass may be "required" by passes that |
| 12 | // cannot deal with critical edges. For this usage, the structure type is |
| 13 | // forward declared. This pass obviously invalidates the CFG, but can update |
Chris Lattner | 363ca61 | 2003-11-10 04:42:42 +0000 | [diff] [blame] | 14 | // forward dominator (set, immediate dominators, tree, and frontier) |
| 15 | // information. |
Chris Lattner | d76efa0 | 2002-09-24 00:08:39 +0000 | [diff] [blame] | 16 | // |
| 17 | //===----------------------------------------------------------------------===// |
| 18 | |
| 19 | #include "llvm/Transforms/Scalar.h" |
Chris Lattner | d23520c | 2003-11-10 04:10:50 +0000 | [diff] [blame] | 20 | #include "llvm/Transforms/Utils/BasicBlockUtils.h" |
Chris Lattner | d76efa0 | 2002-09-24 00:08:39 +0000 | [diff] [blame] | 21 | #include "llvm/Analysis/Dominators.h" |
| 22 | #include "llvm/Function.h" |
Chris Lattner | eb0456c | 2002-09-24 15:51:56 +0000 | [diff] [blame] | 23 | #include "llvm/iTerminators.h" |
| 24 | #include "llvm/iPHINode.h" |
| 25 | #include "llvm/Support/CFG.h" |
Chris Lattner | a92f696 | 2002-10-01 22:38:41 +0000 | [diff] [blame] | 26 | #include "Support/Statistic.h" |
Chris Lattner | d76efa0 | 2002-09-24 00:08:39 +0000 | [diff] [blame] | 27 | |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 28 | namespace llvm { |
| 29 | |
Chris Lattner | 6de302b | 2002-09-24 15:43:12 +0000 | [diff] [blame] | 30 | namespace { |
Chris Lattner | a92f696 | 2002-10-01 22:38:41 +0000 | [diff] [blame] | 31 | Statistic<> NumBroken("break-crit-edges", "Number of blocks inserted"); |
Chris Lattner | d76efa0 | 2002-09-24 00:08:39 +0000 | [diff] [blame] | 32 | |
Chris Lattner | 6de302b | 2002-09-24 15:43:12 +0000 | [diff] [blame] | 33 | struct BreakCriticalEdges : public FunctionPass { |
| 34 | virtual bool runOnFunction(Function &F); |
| 35 | |
| 36 | virtual void getAnalysisUsage(AnalysisUsage &AU) const { |
| 37 | AU.addPreserved<DominatorSet>(); |
| 38 | AU.addPreserved<ImmediateDominators>(); |
| 39 | AU.addPreserved<DominatorTree>(); |
Chris Lattner | 6918c07 | 2002-10-31 02:44:36 +0000 | [diff] [blame] | 40 | AU.addPreserved<DominanceFrontier>(); |
Chris Lattner | 98bf436 | 2003-10-12 21:52:28 +0000 | [diff] [blame] | 41 | |
| 42 | // No loop canonicalization guarantees are broken by this pass. |
| 43 | AU.addPreservedID(LoopSimplifyID); |
Chris Lattner | 6de302b | 2002-09-24 15:43:12 +0000 | [diff] [blame] | 44 | } |
| 45 | }; |
Chris Lattner | d76efa0 | 2002-09-24 00:08:39 +0000 | [diff] [blame] | 46 | |
Chris Lattner | 6de302b | 2002-09-24 15:43:12 +0000 | [diff] [blame] | 47 | RegisterOpt<BreakCriticalEdges> X("break-crit-edges", |
| 48 | "Break critical edges in CFG"); |
| 49 | } |
Chris Lattner | d76efa0 | 2002-09-24 00:08:39 +0000 | [diff] [blame] | 50 | |
Chris Lattner | eb0456c | 2002-09-24 15:51:56 +0000 | [diff] [blame] | 51 | // Publically exposed interface to pass... |
Chris Lattner | 6de302b | 2002-09-24 15:43:12 +0000 | [diff] [blame] | 52 | const PassInfo *BreakCriticalEdgesID = X.getPassInfo(); |
Chris Lattner | d76efa0 | 2002-09-24 00:08:39 +0000 | [diff] [blame] | 53 | Pass *createBreakCriticalEdgesPass() { return new BreakCriticalEdges(); } |
| 54 | |
Chris Lattner | 363ca61 | 2003-11-10 04:42:42 +0000 | [diff] [blame] | 55 | // runOnFunction - Loop over all of the edges in the CFG, breaking critical |
| 56 | // edges as they are found. |
| 57 | // |
| 58 | bool BreakCriticalEdges::runOnFunction(Function &F) { |
| 59 | bool Changed = false; |
| 60 | for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I) { |
| 61 | TerminatorInst *TI = I->getTerminator(); |
| 62 | if (TI->getNumSuccessors() > 1) |
| 63 | for (unsigned i = 0, e = TI->getNumSuccessors(); i != e; ++i) |
| 64 | if (SplitCriticalEdge(TI, i, this)) { |
| 65 | ++NumBroken; |
| 66 | Changed = true; |
| 67 | } |
| 68 | } |
| 69 | |
| 70 | return Changed; |
| 71 | } |
| 72 | |
| 73 | //===----------------------------------------------------------------------===// |
| 74 | // Implementation of the external critical edge manipulation functions |
| 75 | //===----------------------------------------------------------------------===// |
Chris Lattner | eb0456c | 2002-09-24 15:51:56 +0000 | [diff] [blame] | 76 | |
| 77 | // isCriticalEdge - Return true if the specified edge is a critical edge. |
| 78 | // Critical edges are edges from a block with multiple successors to a block |
| 79 | // with multiple predecessors. |
| 80 | // |
Chris Lattner | e802a02 | 2002-10-08 21:06:27 +0000 | [diff] [blame] | 81 | bool isCriticalEdge(const TerminatorInst *TI, unsigned SuccNum) { |
Chris Lattner | eb0456c | 2002-09-24 15:51:56 +0000 | [diff] [blame] | 82 | assert(SuccNum < TI->getNumSuccessors() && "Illegal edge specification!"); |
Chris Lattner | e802a02 | 2002-10-08 21:06:27 +0000 | [diff] [blame] | 83 | if (TI->getNumSuccessors() == 1) return false; |
Chris Lattner | eb0456c | 2002-09-24 15:51:56 +0000 | [diff] [blame] | 84 | |
| 85 | const BasicBlock *Dest = TI->getSuccessor(SuccNum); |
| 86 | pred_const_iterator I = pred_begin(Dest), E = pred_end(Dest); |
| 87 | |
| 88 | // If there is more than one predecessor, this is a critical edge... |
| 89 | assert(I != E && "No preds, but we have an edge to the block?"); |
| 90 | ++I; // Skip one edge due to the incoming arc from TI. |
| 91 | return I != E; |
| 92 | } |
| 93 | |
Chris Lattner | d23520c | 2003-11-10 04:10:50 +0000 | [diff] [blame] | 94 | // SplitCriticalEdge - If this edge is a critical edge, insert a new node to |
| 95 | // split the critical edge. This will update DominatorSet, ImmediateDominator, |
| 96 | // DominatorTree, and DominatorFrontier information if it is available, thus |
| 97 | // calling this pass will not invalidate either of them. This returns true if |
| 98 | // the edge was split, false otherwise. |
Chris Lattner | eb0456c | 2002-09-24 15:51:56 +0000 | [diff] [blame] | 99 | // |
Chris Lattner | d23520c | 2003-11-10 04:10:50 +0000 | [diff] [blame] | 100 | bool SplitCriticalEdge(TerminatorInst *TI, unsigned SuccNum, Pass *P) { |
| 101 | if (!isCriticalEdge(TI, SuccNum)) return false; |
Chris Lattner | eb0456c | 2002-09-24 15:51:56 +0000 | [diff] [blame] | 102 | BasicBlock *TIBB = TI->getParent(); |
Chris Lattner | 6918c07 | 2002-10-31 02:44:36 +0000 | [diff] [blame] | 103 | BasicBlock *DestBB = TI->getSuccessor(SuccNum); |
Chris Lattner | eb0456c | 2002-09-24 15:51:56 +0000 | [diff] [blame] | 104 | |
| 105 | // Create a new basic block, linking it into the CFG. |
Chris Lattner | 6918c07 | 2002-10-31 02:44:36 +0000 | [diff] [blame] | 106 | BasicBlock *NewBB = new BasicBlock(TIBB->getName() + "." + |
| 107 | DestBB->getName() + "_crit_edge"); |
Chris Lattner | eb0456c | 2002-09-24 15:51:56 +0000 | [diff] [blame] | 108 | // Create our unconditional branch... |
Chris Lattner | 108e4ab | 2003-11-21 16:52:05 +0000 | [diff] [blame] | 109 | new BranchInst(DestBB, NewBB); |
Chris Lattner | eb0456c | 2002-09-24 15:51:56 +0000 | [diff] [blame] | 110 | |
| 111 | // Branch to the new block, breaking the edge... |
| 112 | TI->setSuccessor(SuccNum, NewBB); |
| 113 | |
| 114 | // Insert the block into the function... right after the block TI lives in. |
| 115 | Function &F = *TIBB->getParent(); |
| 116 | F.getBasicBlockList().insert(TIBB->getNext(), NewBB); |
| 117 | |
| 118 | // If there are any PHI nodes in DestBB, we need to update them so that they |
| 119 | // merge incoming values from NewBB instead of from TIBB. |
| 120 | // |
| 121 | for (BasicBlock::iterator I = DestBB->begin(); |
Chris Lattner | e408e25 | 2003-04-23 16:37:45 +0000 | [diff] [blame] | 122 | PHINode *PN = dyn_cast<PHINode>(I); ++I) { |
Chris Lattner | eb0456c | 2002-09-24 15:51:56 +0000 | [diff] [blame] | 123 | // We no longer enter through TIBB, now we come in through NewBB. |
| 124 | PN->replaceUsesOfWith(TIBB, NewBB); |
| 125 | } |
| 126 | |
Chris Lattner | e802a02 | 2002-10-08 21:06:27 +0000 | [diff] [blame] | 127 | // If we don't have a pass object, we can't update anything... |
Chris Lattner | d23520c | 2003-11-10 04:10:50 +0000 | [diff] [blame] | 128 | if (P == 0) return true; |
Chris Lattner | e802a02 | 2002-10-08 21:06:27 +0000 | [diff] [blame] | 129 | |
Chris Lattner | c178d94 | 2002-09-26 16:18:51 +0000 | [diff] [blame] | 130 | // Now update analysis information. These are the analyses that we are |
| 131 | // currently capable of updating... |
Chris Lattner | eb0456c | 2002-09-24 15:51:56 +0000 | [diff] [blame] | 132 | // |
Chris Lattner | eb0456c | 2002-09-24 15:51:56 +0000 | [diff] [blame] | 133 | |
Chris Lattner | c178d94 | 2002-09-26 16:18:51 +0000 | [diff] [blame] | 134 | // Should we update DominatorSet information? |
Chris Lattner | e802a02 | 2002-10-08 21:06:27 +0000 | [diff] [blame] | 135 | if (DominatorSet *DS = P->getAnalysisToUpdate<DominatorSet>()) { |
Chris Lattner | c178d94 | 2002-09-26 16:18:51 +0000 | [diff] [blame] | 136 | // The blocks that dominate the new one are the blocks that dominate TIBB |
| 137 | // plus the new block itself. |
| 138 | DominatorSet::DomSetType DomSet = DS->getDominators(TIBB); |
| 139 | DomSet.insert(NewBB); // A block always dominates itself. |
| 140 | DS->addBasicBlock(NewBB, DomSet); |
| 141 | } |
Chris Lattner | eb0456c | 2002-09-24 15:51:56 +0000 | [diff] [blame] | 142 | |
Misha Brukman | cf00c4a | 2003-10-10 17:57:28 +0000 | [diff] [blame] | 143 | // Should we update ImmediateDominator information? |
Chris Lattner | e802a02 | 2002-10-08 21:06:27 +0000 | [diff] [blame] | 144 | if (ImmediateDominators *ID = P->getAnalysisToUpdate<ImmediateDominators>()) { |
Chris Lattner | c178d94 | 2002-09-26 16:18:51 +0000 | [diff] [blame] | 145 | // TIBB is the new immediate dominator for NewBB. NewBB doesn't dominate |
| 146 | // anything. |
| 147 | ID->addNewBlock(NewBB, TIBB); |
| 148 | } |
| 149 | |
| 150 | // Should we update DominatorTree information? |
Chris Lattner | e802a02 | 2002-10-08 21:06:27 +0000 | [diff] [blame] | 151 | if (DominatorTree *DT = P->getAnalysisToUpdate<DominatorTree>()) { |
Chris Lattner | c178d94 | 2002-09-26 16:18:51 +0000 | [diff] [blame] | 152 | DominatorTree::Node *TINode = DT->getNode(TIBB); |
| 153 | |
| 154 | // The new block is not the immediate dominator for any other nodes, but |
| 155 | // TINode is the immediate dominator for the new node. |
| 156 | // |
Chris Lattner | d3d06a5 | 2002-10-08 21:53:51 +0000 | [diff] [blame] | 157 | if (TINode) // Don't break unreachable code! |
| 158 | DT->createNewNode(NewBB, TINode); |
Chris Lattner | eb0456c | 2002-09-24 15:51:56 +0000 | [diff] [blame] | 159 | } |
Chris Lattner | 6918c07 | 2002-10-31 02:44:36 +0000 | [diff] [blame] | 160 | |
| 161 | // Should we update DominanceFrontier information? |
| 162 | if (DominanceFrontier *DF = P->getAnalysisToUpdate<DominanceFrontier>()) { |
| 163 | // Since the new block is dominated by its only predecessor TIBB, |
| 164 | // it cannot be in any block's dominance frontier. Its dominance |
| 165 | // frontier is {DestBB}. |
| 166 | DominanceFrontier::DomSetType NewDFSet; |
| 167 | NewDFSet.insert(DestBB); |
| 168 | DF->addBasicBlock(NewBB, NewDFSet); |
| 169 | } |
Chris Lattner | d23520c | 2003-11-10 04:10:50 +0000 | [diff] [blame] | 170 | return true; |
Chris Lattner | eb0456c | 2002-09-24 15:51:56 +0000 | [diff] [blame] | 171 | } |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 172 | |
| 173 | } // End llvm namespace |