blob: b545ad3fce6edbc5642dbe782d32b41bb9533b74 [file] [log] [blame]
Chris Lattner2fbfdcf2002-04-07 20:49:59 +00001//===- UnifyFunctionExitNodes.cpp - Make all functions have a single exit -===//
Misha Brukmanfd939082005-04-21 23:48:37 +00002//
John Criswellb576c942003-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 Brukmanfd939082005-04-21 23:48:37 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner63a0b2a2001-07-06 16:58:36 +00009//
Chris Lattnerb444a1f2002-05-07 18:51:25 +000010// This pass is used to ensure that functions have at most one return
11// instruction in them. Additionally, it keeps track of which node is the new
12// exit node of the CFG. If there are no exit nodes in the CFG, the getExitNode
13// method will return a null pointer.
Chris Lattner63a0b2a2001-07-06 16:58:36 +000014//
15//===----------------------------------------------------------------------===//
16
Chris Lattnerfc514f42002-05-07 19:18:48 +000017#include "llvm/Transforms/Utils/UnifyFunctionExitNodes.h"
Chris Lattner6c0e0492003-03-31 17:30:25 +000018#include "llvm/Transforms/Scalar.h"
Chris Lattner63a0b2a2001-07-06 16:58:36 +000019#include "llvm/BasicBlock.h"
Chris Lattner2fbfdcf2002-04-07 20:49:59 +000020#include "llvm/Function.h"
Alkis Evlogimenoseb62bc72004-07-29 12:17:34 +000021#include "llvm/Instructions.h"
Chris Lattner63a0b2a2001-07-06 16:58:36 +000022#include "llvm/Type.h"
Chris Lattner108e4ab2003-11-21 16:52:05 +000023using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000024
Devang Patel19974732007-05-03 01:11:54 +000025char UnifyFunctionExitNodes::ID = 0;
Chris Lattner7f8897f2006-08-27 22:42:52 +000026static RegisterPass<UnifyFunctionExitNodes>
Chris Lattnerf6293092002-07-23 18:06:35 +000027X("mergereturn", "Unify function exit nodes");
Chris Lattner93193f82002-01-31 00:42:27 +000028
Chris Lattner191b0ba2006-06-02 18:40:06 +000029int UnifyFunctionExitNodes::stub;
30
Chris Lattner108e4ab2003-11-21 16:52:05 +000031Pass *llvm::createUnifyFunctionExitNodesPass() {
Chris Lattnerf46057be2003-09-10 20:34:51 +000032 return new UnifyFunctionExitNodes();
33}
34
Chris Lattner6c0e0492003-03-31 17:30:25 +000035void UnifyFunctionExitNodes::getAnalysisUsage(AnalysisUsage &AU) const{
36 // We preserve the non-critical-edgeness property
37 AU.addPreservedID(BreakCriticalEdgesID);
Chris Lattner8d89e7b2006-05-09 04:13:41 +000038 // This is a cluster of orthogonal Transforms
39 AU.addPreservedID(PromoteMemoryToRegisterID);
40 AU.addPreservedID(LowerSelectID);
41 AU.addPreservedID(LowerSwitchID);
Chris Lattner6c0e0492003-03-31 17:30:25 +000042}
43
Chris Lattner63a0b2a2001-07-06 16:58:36 +000044// UnifyAllExitNodes - Unify all exit nodes of the CFG by creating a new
45// BasicBlock, and converting all returns to unconditional branches to this
46// new basic block. The singular exit node is returned.
47//
Chris Lattner2fbfdcf2002-04-07 20:49:59 +000048// If there are no return stmts in the Function, a null pointer is returned.
Chris Lattner63a0b2a2001-07-06 16:58:36 +000049//
Chris Lattner18961502002-06-25 16:12:52 +000050bool UnifyFunctionExitNodes::runOnFunction(Function &F) {
Chris Lattner2fbfdcf2002-04-07 20:49:59 +000051 // Loop over all of the blocks in a function, tracking all of the blocks that
Chris Lattner63a0b2a2001-07-06 16:58:36 +000052 // return.
53 //
Chris Lattnerde579f12003-05-22 22:00:07 +000054 std::vector<BasicBlock*> ReturningBlocks;
Chris Lattnerf46057be2003-09-10 20:34:51 +000055 std::vector<BasicBlock*> UnwindingBlocks;
Chris Lattnerec7c1ab2004-10-16 18:21:33 +000056 std::vector<BasicBlock*> UnreachableBlocks;
Chris Lattner18961502002-06-25 16:12:52 +000057 for(Function::iterator I = F.begin(), E = F.end(); I != E; ++I)
58 if (isa<ReturnInst>(I->getTerminator()))
59 ReturningBlocks.push_back(I);
Chris Lattnerf46057be2003-09-10 20:34:51 +000060 else if (isa<UnwindInst>(I->getTerminator()))
61 UnwindingBlocks.push_back(I);
Chris Lattnerec7c1ab2004-10-16 18:21:33 +000062 else if (isa<UnreachableInst>(I->getTerminator()))
63 UnreachableBlocks.push_back(I);
Chris Lattner63a0b2a2001-07-06 16:58:36 +000064
Chris Lattnerec7c1ab2004-10-16 18:21:33 +000065 // Handle unwinding blocks first.
Chris Lattnerf46057be2003-09-10 20:34:51 +000066 if (UnwindingBlocks.empty()) {
67 UnwindBlock = 0;
68 } else if (UnwindingBlocks.size() == 1) {
69 UnwindBlock = UnwindingBlocks.front();
70 } else {
71 UnwindBlock = new BasicBlock("UnifiedUnwindBlock", &F);
Chris Lattnerf8485c62003-11-20 18:25:24 +000072 new UnwindInst(UnwindBlock);
Chris Lattnerf46057be2003-09-10 20:34:51 +000073
Misha Brukmanfd939082005-04-21 23:48:37 +000074 for (std::vector<BasicBlock*>::iterator I = UnwindingBlocks.begin(),
Chris Lattnerf46057be2003-09-10 20:34:51 +000075 E = UnwindingBlocks.end(); I != E; ++I) {
76 BasicBlock *BB = *I;
Chris Lattnerec7c1ab2004-10-16 18:21:33 +000077 BB->getInstList().pop_back(); // Remove the unwind insn
Alkis Evlogimenos99c58f42004-05-26 21:38:14 +000078 new BranchInst(UnwindBlock, BB);
Chris Lattnerf46057be2003-09-10 20:34:51 +000079 }
80 }
81
Chris Lattnerec7c1ab2004-10-16 18:21:33 +000082 // Then unreachable blocks.
83 if (UnreachableBlocks.empty()) {
84 UnreachableBlock = 0;
85 } else if (UnreachableBlocks.size() == 1) {
86 UnreachableBlock = UnreachableBlocks.front();
87 } else {
88 UnreachableBlock = new BasicBlock("UnifiedUnreachableBlock", &F);
89 new UnreachableInst(UnreachableBlock);
90
Misha Brukmanfd939082005-04-21 23:48:37 +000091 for (std::vector<BasicBlock*>::iterator I = UnreachableBlocks.begin(),
Chris Lattnerec7c1ab2004-10-16 18:21:33 +000092 E = UnreachableBlocks.end(); I != E; ++I) {
93 BasicBlock *BB = *I;
94 BB->getInstList().pop_back(); // Remove the unreachable inst.
95 new BranchInst(UnreachableBlock, BB);
96 }
97 }
98
99 // Now handle return blocks.
Chris Lattner417cf7e2002-02-01 04:53:48 +0000100 if (ReturningBlocks.empty()) {
Chris Lattnerf46057be2003-09-10 20:34:51 +0000101 ReturnBlock = 0;
Chris Lattnerb444a1f2002-05-07 18:51:25 +0000102 return false; // No blocks return
Chris Lattner21801532002-01-31 01:12:06 +0000103 } else if (ReturningBlocks.size() == 1) {
Chris Lattnerf46057be2003-09-10 20:34:51 +0000104 ReturnBlock = ReturningBlocks.front(); // Already has a single return block
Chris Lattner21801532002-01-31 01:12:06 +0000105 return false;
106 }
Chris Lattner63a0b2a2001-07-06 16:58:36 +0000107
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000108 // Otherwise, we need to insert a new basic block into the function, add a PHI
Misha Brukmanfd939082005-04-21 23:48:37 +0000109 // node (if the function returns a value), and convert all of the return
Chris Lattner63a0b2a2001-07-06 16:58:36 +0000110 // instructions into unconditional branches.
111 //
Chris Lattnerf46057be2003-09-10 20:34:51 +0000112 BasicBlock *NewRetBlock = new BasicBlock("UnifiedReturnBlock", &F);
Chris Lattner63a0b2a2001-07-06 16:58:36 +0000113
Chris Lattner6c0e0492003-03-31 17:30:25 +0000114 PHINode *PN = 0;
Chris Lattner18961502002-06-25 16:12:52 +0000115 if (F.getReturnType() != Type::VoidTy) {
Chris Lattner2fbfdcf2002-04-07 20:49:59 +0000116 // If the function doesn't return void... add a PHI node to the block...
Chris Lattner6c0e0492003-03-31 17:30:25 +0000117 PN = new PHINode(F.getReturnType(), "UnifiedRetVal");
Chris Lattner8606d992002-09-10 23:31:28 +0000118 NewRetBlock->getInstList().push_back(PN);
Chris Lattner63a0b2a2001-07-06 16:58:36 +0000119 }
Chris Lattner108e4ab2003-11-21 16:52:05 +0000120 new ReturnInst(PN, NewRetBlock);
Chris Lattner63a0b2a2001-07-06 16:58:36 +0000121
122 // Loop over all of the blocks, replacing the return instruction with an
123 // unconditional branch.
124 //
Misha Brukmanfd939082005-04-21 23:48:37 +0000125 for (std::vector<BasicBlock*>::iterator I = ReturningBlocks.begin(),
Chris Lattnerde579f12003-05-22 22:00:07 +0000126 E = ReturningBlocks.end(); I != E; ++I) {
Chris Lattner6c0e0492003-03-31 17:30:25 +0000127 BasicBlock *BB = *I;
128
129 // Add an incoming element to the PHI node for every return instruction that
130 // is merging into this new block...
131 if (PN) PN->addIncoming(BB->getTerminator()->getOperand(0), BB);
132
133 BB->getInstList().pop_back(); // Remove the return insn
Chris Lattner108e4ab2003-11-21 16:52:05 +0000134 new BranchInst(NewRetBlock, BB);
Chris Lattner63a0b2a2001-07-06 16:58:36 +0000135 }
Chris Lattnerf46057be2003-09-10 20:34:51 +0000136 ReturnBlock = NewRetBlock;
Chris Lattner21801532002-01-31 01:12:06 +0000137 return true;
Chris Lattner63a0b2a2001-07-06 16:58:36 +0000138}