2002-04-07 20:49:59 +00:00
|
|
|
//===- UnifyFunctionExitNodes.cpp - Make all functions have a single exit -===//
|
2003-10-20 19:43:21 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2001-07-06 16:58:36 +00:00
|
|
|
//
|
2002-05-07 18:51:25 +00:00
|
|
|
// This pass is used to ensure that functions have at most one return
|
|
|
|
// instruction in them. Additionally, it keeps track of which node is the new
|
|
|
|
// exit node of the CFG. If there are no exit nodes in the CFG, the getExitNode
|
|
|
|
// method will return a null pointer.
|
2001-07-06 16:58:36 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2002-05-07 19:18:48 +00:00
|
|
|
#include "llvm/Transforms/Utils/UnifyFunctionExitNodes.h"
|
2003-03-31 17:30:25 +00:00
|
|
|
#include "llvm/Transforms/Scalar.h"
|
2001-07-06 16:58:36 +00:00
|
|
|
#include "llvm/BasicBlock.h"
|
2002-04-07 20:49:59 +00:00
|
|
|
#include "llvm/Function.h"
|
2001-07-06 16:58:36 +00:00
|
|
|
#include "llvm/iTerminators.h"
|
2001-12-03 18:02:31 +00:00
|
|
|
#include "llvm/iPHINode.h"
|
2001-07-06 16:58:36 +00:00
|
|
|
#include "llvm/Type.h"
|
2003-11-21 16:52:05 +00:00
|
|
|
using namespace llvm;
|
2003-11-11 22:41:34 +00:00
|
|
|
|
2002-07-26 21:12:44 +00:00
|
|
|
static RegisterOpt<UnifyFunctionExitNodes>
|
2002-07-23 18:06:35 +00:00
|
|
|
X("mergereturn", "Unify function exit nodes");
|
2002-01-31 00:42:27 +00:00
|
|
|
|
2003-11-21 16:52:05 +00:00
|
|
|
Pass *llvm::createUnifyFunctionExitNodesPass() {
|
2003-09-10 20:34:51 +00:00
|
|
|
return new UnifyFunctionExitNodes();
|
|
|
|
}
|
|
|
|
|
2003-03-31 17:30:25 +00:00
|
|
|
void UnifyFunctionExitNodes::getAnalysisUsage(AnalysisUsage &AU) const{
|
|
|
|
// We preserve the non-critical-edgeness property
|
|
|
|
AU.addPreservedID(BreakCriticalEdgesID);
|
|
|
|
}
|
|
|
|
|
2001-07-06 16:58:36 +00:00
|
|
|
// UnifyAllExitNodes - Unify all exit nodes of the CFG by creating a new
|
|
|
|
// BasicBlock, and converting all returns to unconditional branches to this
|
|
|
|
// new basic block. The singular exit node is returned.
|
|
|
|
//
|
2002-04-07 20:49:59 +00:00
|
|
|
// If there are no return stmts in the Function, a null pointer is returned.
|
2001-07-06 16:58:36 +00:00
|
|
|
//
|
2002-06-25 16:12:52 +00:00
|
|
|
bool UnifyFunctionExitNodes::runOnFunction(Function &F) {
|
2002-04-07 20:49:59 +00:00
|
|
|
// Loop over all of the blocks in a function, tracking all of the blocks that
|
2001-07-06 16:58:36 +00:00
|
|
|
// return.
|
|
|
|
//
|
2003-05-22 22:00:07 +00:00
|
|
|
std::vector<BasicBlock*> ReturningBlocks;
|
2003-09-10 20:34:51 +00:00
|
|
|
std::vector<BasicBlock*> UnwindingBlocks;
|
2002-06-25 16:12:52 +00:00
|
|
|
for(Function::iterator I = F.begin(), E = F.end(); I != E; ++I)
|
|
|
|
if (isa<ReturnInst>(I->getTerminator()))
|
|
|
|
ReturningBlocks.push_back(I);
|
2003-09-10 20:34:51 +00:00
|
|
|
else if (isa<UnwindInst>(I->getTerminator()))
|
|
|
|
UnwindingBlocks.push_back(I);
|
|
|
|
|
|
|
|
// Handle unwinding blocks first...
|
|
|
|
if (UnwindingBlocks.empty()) {
|
|
|
|
UnwindBlock = 0;
|
|
|
|
} else if (UnwindingBlocks.size() == 1) {
|
|
|
|
UnwindBlock = UnwindingBlocks.front();
|
|
|
|
} else {
|
|
|
|
UnwindBlock = new BasicBlock("UnifiedUnwindBlock", &F);
|
2003-11-20 18:25:24 +00:00
|
|
|
new UnwindInst(UnwindBlock);
|
2001-07-06 16:58:36 +00:00
|
|
|
|
2003-09-10 20:34:51 +00:00
|
|
|
for (std::vector<BasicBlock*>::iterator I = UnwindingBlocks.begin(),
|
|
|
|
E = UnwindingBlocks.end(); I != E; ++I) {
|
|
|
|
BasicBlock *BB = *I;
|
|
|
|
BB->getInstList().pop_back(); // Remove the return insn
|
2003-11-20 18:25:24 +00:00
|
|
|
new BranchInst(UnwindBlock, 0, 0, BB);
|
2003-09-10 20:34:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now handle return blocks...
|
2002-02-01 04:53:48 +00:00
|
|
|
if (ReturningBlocks.empty()) {
|
2003-09-10 20:34:51 +00:00
|
|
|
ReturnBlock = 0;
|
2002-05-07 18:51:25 +00:00
|
|
|
return false; // No blocks return
|
2002-01-31 01:12:06 +00:00
|
|
|
} else if (ReturningBlocks.size() == 1) {
|
2003-09-10 20:34:51 +00:00
|
|
|
ReturnBlock = ReturningBlocks.front(); // Already has a single return block
|
2002-01-31 01:12:06 +00:00
|
|
|
return false;
|
|
|
|
}
|
2001-07-06 16:58:36 +00:00
|
|
|
|
2002-04-07 20:49:59 +00:00
|
|
|
// Otherwise, we need to insert a new basic block into the function, add a PHI
|
2001-07-06 16:58:36 +00:00
|
|
|
// node (if the function returns a value), and convert all of the return
|
|
|
|
// instructions into unconditional branches.
|
|
|
|
//
|
2003-09-10 20:34:51 +00:00
|
|
|
BasicBlock *NewRetBlock = new BasicBlock("UnifiedReturnBlock", &F);
|
2001-07-06 16:58:36 +00:00
|
|
|
|
2003-03-31 17:30:25 +00:00
|
|
|
PHINode *PN = 0;
|
2002-06-25 16:12:52 +00:00
|
|
|
if (F.getReturnType() != Type::VoidTy) {
|
2002-04-07 20:49:59 +00:00
|
|
|
// If the function doesn't return void... add a PHI node to the block...
|
2003-03-31 17:30:25 +00:00
|
|
|
PN = new PHINode(F.getReturnType(), "UnifiedRetVal");
|
2002-09-10 23:31:28 +00:00
|
|
|
NewRetBlock->getInstList().push_back(PN);
|
2001-07-06 16:58:36 +00:00
|
|
|
}
|
2003-11-21 16:52:05 +00:00
|
|
|
new ReturnInst(PN, NewRetBlock);
|
2001-07-06 16:58:36 +00:00
|
|
|
|
|
|
|
// Loop over all of the blocks, replacing the return instruction with an
|
|
|
|
// unconditional branch.
|
|
|
|
//
|
2003-05-22 22:00:07 +00:00
|
|
|
for (std::vector<BasicBlock*>::iterator I = ReturningBlocks.begin(),
|
|
|
|
E = ReturningBlocks.end(); I != E; ++I) {
|
2003-03-31 17:30:25 +00:00
|
|
|
BasicBlock *BB = *I;
|
|
|
|
|
|
|
|
// Add an incoming element to the PHI node for every return instruction that
|
|
|
|
// is merging into this new block...
|
|
|
|
if (PN) PN->addIncoming(BB->getTerminator()->getOperand(0), BB);
|
|
|
|
|
|
|
|
BB->getInstList().pop_back(); // Remove the return insn
|
2003-11-21 16:52:05 +00:00
|
|
|
new BranchInst(NewRetBlock, BB);
|
2001-07-06 16:58:36 +00:00
|
|
|
}
|
2003-09-10 20:34:51 +00:00
|
|
|
ReturnBlock = NewRetBlock;
|
2002-01-31 01:12:06 +00:00
|
|
|
return true;
|
2001-07-06 16:58:36 +00:00
|
|
|
}
|