blob: 5253b609b8b5a86498f18e1d6470e57782e8b57e [file] [log] [blame]
Chris Lattnerb03832d2002-09-24 00:08:39 +00001//===- BreakCriticalEdges.cpp - Critical Edge Elimination Pass ------------===//
Misha Brukmanb1c93172005-04-21 23:48:37 +00002//
John Criswell482202a2003-10-20 19:43:21 +00003// 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.
Misha Brukmanb1c93172005-04-21 23:48:37 +00007//
John Criswell482202a2003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattnerb03832d2002-09-24 00:08:39 +00009//
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 Lattner1e6d3052003-11-10 04:42:42 +000014// forward dominator (set, immediate dominators, tree, and frontier)
15// information.
Chris Lattnerb03832d2002-09-24 00:08:39 +000016//
17//===----------------------------------------------------------------------===//
18
Chris Lattner45f966d2006-12-19 22:17:40 +000019#define DEBUG_TYPE "break-crit-edges"
Chris Lattnerb03832d2002-09-24 00:08:39 +000020#include "llvm/Transforms/Scalar.h"
Chris Lattner44743362003-11-10 04:10:50 +000021#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Chris Lattnerb03832d2002-09-24 00:08:39 +000022#include "llvm/Analysis/Dominators.h"
Chris Lattner89c1dfc2005-08-13 01:38:43 +000023#include "llvm/Analysis/LoopInfo.h"
Chris Lattnerb03832d2002-09-24 00:08:39 +000024#include "llvm/Function.h"
Misha Brukman63b38bd2004-07-29 17:30:56 +000025#include "llvm/Instructions.h"
Chris Lattner7b9020a2005-03-17 15:38:16 +000026#include "llvm/Type.h"
Chris Lattner75f80bd2002-09-24 15:51:56 +000027#include "llvm/Support/CFG.h"
Chris Lattner3d27be12006-08-27 12:54:02 +000028#include "llvm/Support/Compiler.h"
Chris Lattner8aca0ee2006-10-03 07:02:02 +000029#include "llvm/ADT/SmallVector.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000030#include "llvm/ADT/Statistic.h"
Chris Lattnerdf3c3422004-01-09 06:12:26 +000031using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000032
Chris Lattner45f966d2006-12-19 22:17:40 +000033STATISTIC(NumBroken, "Number of blocks inserted");
Chris Lattnerb03832d2002-09-24 00:08:39 +000034
Chris Lattner45f966d2006-12-19 22:17:40 +000035namespace {
Chris Lattner996795b2006-06-28 23:17:24 +000036 struct VISIBILITY_HIDDEN BreakCriticalEdges : public FunctionPass {
Chris Lattner4bec6652002-09-24 15:43:12 +000037 virtual bool runOnFunction(Function &F);
Misha Brukmanb1c93172005-04-21 23:48:37 +000038
Chris Lattner4bec6652002-09-24 15:43:12 +000039 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattner0770d8e2006-01-11 05:11:13 +000040 AU.addPreserved<ETForest>();
Chris Lattner4bec6652002-09-24 15:43:12 +000041 AU.addPreserved<ImmediateDominators>();
Chris Lattner12764c82002-10-31 02:44:36 +000042 AU.addPreserved<DominanceFrontier>();
Chris Lattner89c1dfc2005-08-13 01:38:43 +000043 AU.addPreserved<LoopInfo>();
Chris Lattner72272a72003-10-12 21:52:28 +000044
45 // No loop canonicalization guarantees are broken by this pass.
46 AU.addPreservedID(LoopSimplifyID);
Chris Lattner4bec6652002-09-24 15:43:12 +000047 }
48 };
Chris Lattnerb03832d2002-09-24 00:08:39 +000049
Chris Lattnerc2d3d312006-08-27 22:42:52 +000050 RegisterPass<BreakCriticalEdges> X("break-crit-edges",
Chris Lattner4bec6652002-09-24 15:43:12 +000051 "Break critical edges in CFG");
52}
Chris Lattnerb03832d2002-09-24 00:08:39 +000053
Chris Lattner75f80bd2002-09-24 15:51:56 +000054// Publically exposed interface to pass...
Chris Lattnerdf3c3422004-01-09 06:12:26 +000055const PassInfo *llvm::BreakCriticalEdgesID = X.getPassInfo();
Chris Lattner7471b962004-07-31 10:01:58 +000056FunctionPass *llvm::createBreakCriticalEdgesPass() {
57 return new BreakCriticalEdges();
58}
Chris Lattnerb03832d2002-09-24 00:08:39 +000059
Chris Lattner1e6d3052003-11-10 04:42:42 +000060// runOnFunction - Loop over all of the edges in the CFG, breaking critical
61// edges as they are found.
62//
63bool BreakCriticalEdges::runOnFunction(Function &F) {
64 bool Changed = false;
65 for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I) {
66 TerminatorInst *TI = I->getTerminator();
67 if (TI->getNumSuccessors() > 1)
68 for (unsigned i = 0, e = TI->getNumSuccessors(); i != e; ++i)
69 if (SplitCriticalEdge(TI, i, this)) {
70 ++NumBroken;
71 Changed = true;
72 }
73 }
74
75 return Changed;
76}
77
78//===----------------------------------------------------------------------===//
79// Implementation of the external critical edge manipulation functions
80//===----------------------------------------------------------------------===//
Chris Lattner75f80bd2002-09-24 15:51:56 +000081
82// isCriticalEdge - Return true if the specified edge is a critical edge.
83// Critical edges are edges from a block with multiple successors to a block
84// with multiple predecessors.
85//
Chris Lattner3e763f52006-10-28 06:58:17 +000086bool llvm::isCriticalEdge(const TerminatorInst *TI, unsigned SuccNum,
87 bool AllowIdenticalEdges) {
Chris Lattner75f80bd2002-09-24 15:51:56 +000088 assert(SuccNum < TI->getNumSuccessors() && "Illegal edge specification!");
Chris Lattner5ac72de2002-10-08 21:06:27 +000089 if (TI->getNumSuccessors() == 1) return false;
Chris Lattner75f80bd2002-09-24 15:51:56 +000090
91 const BasicBlock *Dest = TI->getSuccessor(SuccNum);
92 pred_const_iterator I = pred_begin(Dest), E = pred_end(Dest);
93
94 // If there is more than one predecessor, this is a critical edge...
95 assert(I != E && "No preds, but we have an edge to the block?");
Chris Lattner3e763f52006-10-28 06:58:17 +000096 const BasicBlock *FirstPred = *I;
Chris Lattner75f80bd2002-09-24 15:51:56 +000097 ++I; // Skip one edge due to the incoming arc from TI.
Chris Lattner3e763f52006-10-28 06:58:17 +000098 if (!AllowIdenticalEdges)
99 return I != E;
100
101 // If AllowIdenticalEdges is true, then we allow this edge to be considered
102 // non-critical iff all preds come from TI's block.
103 for (; I != E; ++I)
104 if (*I != FirstPred) return true;
105 return false;
Chris Lattner75f80bd2002-09-24 15:51:56 +0000106}
107
Chris Lattner44743362003-11-10 04:10:50 +0000108// SplitCriticalEdge - If this edge is a critical edge, insert a new node to
Owen Andersonb39d9ca2007-04-07 05:49:29 +0000109// split the critical edge. This will update ETForest, ImmediateDominator,
Chris Lattner44743362003-11-10 04:10:50 +0000110// DominatorTree, and DominatorFrontier information if it is available, thus
Chris Lattner80ea2072006-10-28 06:44:56 +0000111// calling this pass will not invalidate any of them. This returns true if
112// the edge was split, false otherwise. This ensures that all edges to that
113// dest go to one block instead of each going to a different block.
Chris Lattner75f80bd2002-09-24 15:51:56 +0000114//
Chris Lattner80ea2072006-10-28 06:44:56 +0000115bool llvm::SplitCriticalEdge(TerminatorInst *TI, unsigned SuccNum, Pass *P,
116 bool MergeIdenticalEdges) {
Chris Lattner3e763f52006-10-28 06:58:17 +0000117 if (!isCriticalEdge(TI, SuccNum, MergeIdenticalEdges)) return false;
Chris Lattner75f80bd2002-09-24 15:51:56 +0000118 BasicBlock *TIBB = TI->getParent();
Chris Lattner12764c82002-10-31 02:44:36 +0000119 BasicBlock *DestBB = TI->getSuccessor(SuccNum);
Chris Lattner75f80bd2002-09-24 15:51:56 +0000120
121 // Create a new basic block, linking it into the CFG.
Chris Lattner12764c82002-10-31 02:44:36 +0000122 BasicBlock *NewBB = new BasicBlock(TIBB->getName() + "." +
123 DestBB->getName() + "_crit_edge");
Chris Lattner75f80bd2002-09-24 15:51:56 +0000124 // Create our unconditional branch...
Chris Lattnera2960002003-11-21 16:52:05 +0000125 new BranchInst(DestBB, NewBB);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000126
Chris Lattner80ea2072006-10-28 06:44:56 +0000127 // Branch to the new block, breaking the edge.
Chris Lattner75f80bd2002-09-24 15:51:56 +0000128 TI->setSuccessor(SuccNum, NewBB);
129
130 // Insert the block into the function... right after the block TI lives in.
131 Function &F = *TIBB->getParent();
132 F.getBasicBlockList().insert(TIBB->getNext(), NewBB);
Chris Lattner80ea2072006-10-28 06:44:56 +0000133
Chris Lattner75f80bd2002-09-24 15:51:56 +0000134 // If there are any PHI nodes in DestBB, we need to update them so that they
135 // merge incoming values from NewBB instead of from TIBB.
136 //
Reid Spencer66149462004-09-15 17:06:42 +0000137 for (BasicBlock::iterator I = DestBB->begin(); isa<PHINode>(I); ++I) {
138 PHINode *PN = cast<PHINode>(I);
Chris Lattner2de229f2004-02-29 22:24:41 +0000139 // We no longer enter through TIBB, now we come in through NewBB. Revector
140 // exactly one entry in the PHI node that used to come from TIBB to come
141 // from NewBB.
Chris Lattnerb7ebe652005-08-12 21:58:07 +0000142 int BBIdx = PN->getBasicBlockIndex(TIBB);
143 PN->setIncomingBlock(BBIdx, NewBB);
Chris Lattner75f80bd2002-09-24 15:51:56 +0000144 }
Chris Lattner80ea2072006-10-28 06:44:56 +0000145
146 // If there are any other edges from TIBB to DestBB, update those to go
147 // through the split block, making those edges non-critical as well (and
148 // reducing the number of phi entries in the DestBB if relevant).
149 if (MergeIdenticalEdges) {
150 for (unsigned i = SuccNum+1, e = TI->getNumSuccessors(); i != e; ++i) {
151 if (TI->getSuccessor(i) != DestBB) continue;
152
153 // Remove an entry for TIBB from DestBB phi nodes.
154 DestBB->removePredecessor(TIBB);
155
156 // We found another edge to DestBB, go to NewBB instead.
157 TI->setSuccessor(i, NewBB);
158 }
159 }
160
161
Chris Lattner75f80bd2002-09-24 15:51:56 +0000162
Chris Lattner5ac72de2002-10-08 21:06:27 +0000163 // If we don't have a pass object, we can't update anything...
Chris Lattner44743362003-11-10 04:10:50 +0000164 if (P == 0) return true;
Chris Lattner5ac72de2002-10-08 21:06:27 +0000165
Chris Lattner8aca0ee2006-10-03 07:02:02 +0000166 // Now update analysis information. Since the only predecessor of NewBB is
167 // the TIBB, TIBB clearly dominates NewBB. TIBB usually doesn't dominate
168 // anything, as there are other successors of DestBB. However, if all other
169 // predecessors of DestBB are already dominated by DestBB (e.g. DestBB is a
170 // loop header) then NewBB dominates DestBB.
171 SmallVector<BasicBlock*, 8> OtherPreds;
Chris Lattner75f80bd2002-09-24 15:51:56 +0000172
Chris Lattner8aca0ee2006-10-03 07:02:02 +0000173 for (pred_iterator I = pred_begin(DestBB), E = pred_end(DestBB); I != E; ++I)
174 if (*I != NewBB)
175 OtherPreds.push_back(*I);
176
Chris Lattner8aca0ee2006-10-03 07:02:02 +0000177 bool NewBBDominatesDestBB = true;
178
Owen Andersonb39d9ca2007-04-07 05:49:29 +0000179 // Update the forest?
180 if (ETForest *EF = P->getAnalysisToUpdate<ETForest>()) {
181 // NewBB is dominated by TIBB.
182 EF->addNewBlock(NewBB, TIBB);
183
184 // If NewBBDominatesDestBB hasn't been computed yet, do so with EF.
185 if (!OtherPreds.empty()) {
186 while (!OtherPreds.empty() && NewBBDominatesDestBB) {
187 NewBBDominatesDestBB = EF->dominates(DestBB, OtherPreds.back());
188 OtherPreds.pop_back();
Chris Lattner8aca0ee2006-10-03 07:02:02 +0000189 }
Owen Andersonb39d9ca2007-04-07 05:49:29 +0000190 OtherPreds.clear();
Chris Lattner8aca0ee2006-10-03 07:02:02 +0000191 }
Owen Andersonb39d9ca2007-04-07 05:49:29 +0000192
193 // If NewBBDominatesDestBB, then NewBB dominates DestBB, otherwise it
194 // doesn't dominate anything.
195 if (NewBBDominatesDestBB)
196 EF->setImmediateDominator(DestBB, NewBB);
Chris Lattnerbedbd6b2002-09-26 16:18:51 +0000197 }
Chris Lattner75f80bd2002-09-24 15:51:56 +0000198
Misha Brukman8b2bd4e2003-10-10 17:57:28 +0000199 // Should we update ImmediateDominator information?
Chris Lattner5ac72de2002-10-08 21:06:27 +0000200 if (ImmediateDominators *ID = P->getAnalysisToUpdate<ImmediateDominators>()) {
Chris Lattnerf739d012007-01-15 00:15:09 +0000201 // Only do this if TIBB is reachable.
202 if (ID->get(TIBB) || &TIBB->getParent()->getEntryBlock() == TIBB) {
Chris Lattner9818a6f2007-01-14 18:33:35 +0000203 // TIBB is the new immediate dominator for NewBB.
204 ID->addNewBlock(NewBB, TIBB);
205
206 // If NewBBDominatesDestBB hasn't been computed yet, do so with ID.
207 if (!OtherPreds.empty()) {
208 while (!OtherPreds.empty() && NewBBDominatesDestBB) {
209 NewBBDominatesDestBB = ID->dominates(DestBB, OtherPreds.back());
210 OtherPreds.pop_back();
211 }
212 OtherPreds.clear();
Chris Lattner8aca0ee2006-10-03 07:02:02 +0000213 }
Chris Lattner9818a6f2007-01-14 18:33:35 +0000214
215 // If NewBBDominatesDestBB, then NewBB dominates DestBB, otherwise it
216 // doesn't dominate anything.
217 if (NewBBDominatesDestBB)
218 ID->setImmediateDominator(DestBB, NewBB);
Chris Lattner8aca0ee2006-10-03 07:02:02 +0000219 }
Chris Lattnerbedbd6b2002-09-26 16:18:51 +0000220 }
Owen Andersonb39d9ca2007-04-07 05:49:29 +0000221
Chris Lattnerbedbd6b2002-09-26 16:18:51 +0000222 // Should we update DominatorTree information?
Chris Lattner5ac72de2002-10-08 21:06:27 +0000223 if (DominatorTree *DT = P->getAnalysisToUpdate<DominatorTree>()) {
Chris Lattnerbedbd6b2002-09-26 16:18:51 +0000224 DominatorTree::Node *TINode = DT->getNode(TIBB);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000225
Chris Lattnerbedbd6b2002-09-26 16:18:51 +0000226 // The new block is not the immediate dominator for any other nodes, but
227 // TINode is the immediate dominator for the new node.
228 //
Chris Lattner8aca0ee2006-10-03 07:02:02 +0000229 if (TINode) { // Don't break unreachable code!
230 DominatorTree::Node *NewBBNode = DT->createNewNode(NewBB, TINode);
231 DominatorTree::Node *DestBBNode = 0;
232
233 // If NewBBDominatesDestBB hasn't been computed yet, do so with DT.
234 if (!OtherPreds.empty()) {
235 DestBBNode = DT->getNode(DestBB);
236 while (!OtherPreds.empty() && NewBBDominatesDestBB) {
237 if (DominatorTree::Node *OPNode = DT->getNode(OtherPreds.back()))
238 NewBBDominatesDestBB = DestBBNode->dominates(OPNode);
239 OtherPreds.pop_back();
240 }
241 OtherPreds.clear();
242 }
243
244 // If NewBBDominatesDestBB, then NewBB dominates DestBB, otherwise it
245 // doesn't dominate anything.
246 if (NewBBDominatesDestBB) {
247 if (!DestBBNode) DestBBNode = DT->getNode(DestBB);
248 DT->changeImmediateDominator(DestBBNode, NewBBNode);
249 }
250 }
Chris Lattner75f80bd2002-09-24 15:51:56 +0000251 }
Chris Lattner12764c82002-10-31 02:44:36 +0000252
253 // Should we update DominanceFrontier information?
254 if (DominanceFrontier *DF = P->getAnalysisToUpdate<DominanceFrontier>()) {
Chris Lattner8aca0ee2006-10-03 07:02:02 +0000255 // If NewBBDominatesDestBB hasn't been computed yet, do so with DF.
256 if (!OtherPreds.empty()) {
Chris Lattner8aca0ee2006-10-03 07:02:02 +0000257 // FIXME: IMPLEMENT THIS!
Chris Lattner52886e72006-10-04 04:58:58 +0000258 assert(0 && "Requiring domfrontiers but not idom/domtree/domset."
259 " not implemented yet!");
Chris Lattner8aca0ee2006-10-03 07:02:02 +0000260 }
261
Chris Lattner12764c82002-10-31 02:44:36 +0000262 // Since the new block is dominated by its only predecessor TIBB,
Chris Lattner8aca0ee2006-10-03 07:02:02 +0000263 // it cannot be in any block's dominance frontier. If NewBB dominates
264 // DestBB, its dominance frontier is the same as DestBB's, otherwise it is
265 // just {DestBB}.
Chris Lattner12764c82002-10-31 02:44:36 +0000266 DominanceFrontier::DomSetType NewDFSet;
Chris Lattner8aca0ee2006-10-03 07:02:02 +0000267 if (NewBBDominatesDestBB) {
268 DominanceFrontier::iterator I = DF->find(DestBB);
269 if (I != DF->end())
270 DF->addBasicBlock(NewBB, I->second);
271 else
272 DF->addBasicBlock(NewBB, DominanceFrontier::DomSetType());
273 } else {
274 DominanceFrontier::DomSetType NewDFSet;
275 NewDFSet.insert(DestBB);
276 DF->addBasicBlock(NewBB, NewDFSet);
277 }
Chris Lattner12764c82002-10-31 02:44:36 +0000278 }
Chris Lattner89c1dfc2005-08-13 01:38:43 +0000279
280 // Update LoopInfo if it is around.
281 if (LoopInfo *LI = P->getAnalysisToUpdate<LoopInfo>()) {
282 // If one or the other blocks were not in a loop, the new block is not
283 // either, and thus LI doesn't need to be updated.
284 if (Loop *TIL = LI->getLoopFor(TIBB))
285 if (Loop *DestLoop = LI->getLoopFor(DestBB)) {
286 if (TIL == DestLoop) {
287 // Both in the same loop, the NewBB joins loop.
288 DestLoop->addBasicBlockToLoop(NewBB, *LI);
289 } else if (TIL->contains(DestLoop->getHeader())) {
Chris Lattner8aca0ee2006-10-03 07:02:02 +0000290 // Edge from an outer loop to an inner loop. Add to the outer loop.
Chris Lattner89c1dfc2005-08-13 01:38:43 +0000291 TIL->addBasicBlockToLoop(NewBB, *LI);
292 } else if (DestLoop->contains(TIL->getHeader())) {
Chris Lattner8aca0ee2006-10-03 07:02:02 +0000293 // Edge from an inner loop to an outer loop. Add to the outer loop.
Chris Lattner89c1dfc2005-08-13 01:38:43 +0000294 DestLoop->addBasicBlockToLoop(NewBB, *LI);
295 } else {
296 // Edge from two loops with no containment relation. Because these
297 // are natural loops, we know that the destination block must be the
298 // header of its loop (adding a branch into a loop elsewhere would
299 // create an irreducible loop).
300 assert(DestLoop->getHeader() == DestBB &&
301 "Should not create irreducible loops!");
302 if (Loop *P = DestLoop->getParentLoop())
303 P->addBasicBlockToLoop(NewBB, *LI);
304 }
305 }
Chris Lattner89c1dfc2005-08-13 01:38:43 +0000306 }
Chris Lattner44743362003-11-10 04:10:50 +0000307 return true;
Chris Lattner75f80bd2002-09-24 15:51:56 +0000308}