2002-04-07 22:49:59 +02:00
|
|
|
//===- UnifyFunctionExitNodes.cpp - Make all functions have a single exit -===//
|
2005-04-22 01:48:37 +02:00
|
|
|
//
|
2003-10-20 21:43:21 +02:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 21:36:04 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-22 01:48:37 +02:00
|
|
|
//
|
2003-10-20 21:43:21 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-07-06 18:58:36 +02:00
|
|
|
//
|
2002-05-07 20:51:25 +02: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 18:58:36 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2002-05-07 21:18:48 +02:00
|
|
|
#include "llvm/Transforms/Utils/UnifyFunctionExitNodes.h"
|
2003-03-31 19:30:25 +02:00
|
|
|
#include "llvm/Transforms/Scalar.h"
|
2001-07-06 18:58:36 +02:00
|
|
|
#include "llvm/BasicBlock.h"
|
2002-04-07 22:49:59 +02:00
|
|
|
#include "llvm/Function.h"
|
2004-07-29 14:17:34 +02:00
|
|
|
#include "llvm/Instructions.h"
|
2001-07-06 18:58:36 +02:00
|
|
|
#include "llvm/Type.h"
|
2008-03-10 19:11:41 +01:00
|
|
|
#include "llvm/ADT/StringExtras.h"
|
2003-11-21 17:52:05 +01:00
|
|
|
using namespace llvm;
|
2003-11-11 23:41:34 +01:00
|
|
|
|
2007-05-03 03:11:54 +02:00
|
|
|
char UnifyFunctionExitNodes::ID = 0;
|
2006-08-28 00:42:52 +02:00
|
|
|
static RegisterPass<UnifyFunctionExitNodes>
|
2002-07-23 20:06:35 +02:00
|
|
|
X("mergereturn", "Unify function exit nodes");
|
2002-01-31 01:42:27 +01:00
|
|
|
|
2003-11-21 17:52:05 +01:00
|
|
|
Pass *llvm::createUnifyFunctionExitNodesPass() {
|
2003-09-10 22:34:51 +02:00
|
|
|
return new UnifyFunctionExitNodes();
|
|
|
|
}
|
|
|
|
|
2003-03-31 19:30:25 +02:00
|
|
|
void UnifyFunctionExitNodes::getAnalysisUsage(AnalysisUsage &AU) const{
|
|
|
|
// We preserve the non-critical-edgeness property
|
|
|
|
AU.addPreservedID(BreakCriticalEdgesID);
|
2006-05-09 06:13:41 +02:00
|
|
|
// This is a cluster of orthogonal Transforms
|
|
|
|
AU.addPreservedID(PromoteMemoryToRegisterID);
|
|
|
|
AU.addPreservedID(LowerSwitchID);
|
2003-03-31 19:30:25 +02:00
|
|
|
}
|
|
|
|
|
2001-07-06 18:58:36 +02: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 22:49:59 +02:00
|
|
|
// If there are no return stmts in the Function, a null pointer is returned.
|
2001-07-06 18:58:36 +02:00
|
|
|
//
|
2002-06-25 18:12:52 +02:00
|
|
|
bool UnifyFunctionExitNodes::runOnFunction(Function &F) {
|
2002-04-07 22:49:59 +02:00
|
|
|
// Loop over all of the blocks in a function, tracking all of the blocks that
|
2001-07-06 18:58:36 +02:00
|
|
|
// return.
|
|
|
|
//
|
2003-05-23 00:00:07 +02:00
|
|
|
std::vector<BasicBlock*> ReturningBlocks;
|
2003-09-10 22:34:51 +02:00
|
|
|
std::vector<BasicBlock*> UnwindingBlocks;
|
2004-10-16 20:21:33 +02:00
|
|
|
std::vector<BasicBlock*> UnreachableBlocks;
|
2002-06-25 18:12:52 +02: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 22:34:51 +02:00
|
|
|
else if (isa<UnwindInst>(I->getTerminator()))
|
|
|
|
UnwindingBlocks.push_back(I);
|
2004-10-16 20:21:33 +02:00
|
|
|
else if (isa<UnreachableInst>(I->getTerminator()))
|
|
|
|
UnreachableBlocks.push_back(I);
|
2003-09-10 22:34:51 +02:00
|
|
|
|
2004-10-16 20:21:33 +02:00
|
|
|
// Handle unwinding blocks first.
|
2003-09-10 22:34:51 +02:00
|
|
|
if (UnwindingBlocks.empty()) {
|
|
|
|
UnwindBlock = 0;
|
|
|
|
} else if (UnwindingBlocks.size() == 1) {
|
|
|
|
UnwindBlock = UnwindingBlocks.front();
|
|
|
|
} else {
|
2008-04-06 22:25:17 +02:00
|
|
|
UnwindBlock = BasicBlock::Create("UnifiedUnwindBlock", &F);
|
2003-11-20 19:25:24 +01:00
|
|
|
new UnwindInst(UnwindBlock);
|
2001-07-06 18:58:36 +02:00
|
|
|
|
2005-04-22 01:48:37 +02:00
|
|
|
for (std::vector<BasicBlock*>::iterator I = UnwindingBlocks.begin(),
|
2003-09-10 22:34:51 +02:00
|
|
|
E = UnwindingBlocks.end(); I != E; ++I) {
|
|
|
|
BasicBlock *BB = *I;
|
2004-10-16 20:21:33 +02:00
|
|
|
BB->getInstList().pop_back(); // Remove the unwind insn
|
2008-04-06 22:25:17 +02:00
|
|
|
BranchInst::Create(UnwindBlock, BB);
|
2003-09-10 22:34:51 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-10-16 20:21:33 +02:00
|
|
|
// Then unreachable blocks.
|
|
|
|
if (UnreachableBlocks.empty()) {
|
|
|
|
UnreachableBlock = 0;
|
|
|
|
} else if (UnreachableBlocks.size() == 1) {
|
|
|
|
UnreachableBlock = UnreachableBlocks.front();
|
|
|
|
} else {
|
2008-04-06 22:25:17 +02:00
|
|
|
UnreachableBlock = BasicBlock::Create("UnifiedUnreachableBlock", &F);
|
2004-10-16 20:21:33 +02:00
|
|
|
new UnreachableInst(UnreachableBlock);
|
|
|
|
|
2005-04-22 01:48:37 +02:00
|
|
|
for (std::vector<BasicBlock*>::iterator I = UnreachableBlocks.begin(),
|
2004-10-16 20:21:33 +02:00
|
|
|
E = UnreachableBlocks.end(); I != E; ++I) {
|
|
|
|
BasicBlock *BB = *I;
|
|
|
|
BB->getInstList().pop_back(); // Remove the unreachable inst.
|
2008-04-06 22:25:17 +02:00
|
|
|
BranchInst::Create(UnreachableBlock, BB);
|
2004-10-16 20:21:33 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now handle return blocks.
|
2002-02-01 05:53:48 +01:00
|
|
|
if (ReturningBlocks.empty()) {
|
2003-09-10 22:34:51 +02:00
|
|
|
ReturnBlock = 0;
|
2002-05-07 20:51:25 +02:00
|
|
|
return false; // No blocks return
|
2002-01-31 02:12:06 +01:00
|
|
|
} else if (ReturningBlocks.size() == 1) {
|
2003-09-10 22:34:51 +02:00
|
|
|
ReturnBlock = ReturningBlocks.front(); // Already has a single return block
|
2002-01-31 02:12:06 +01:00
|
|
|
return false;
|
|
|
|
}
|
2001-07-06 18:58:36 +02:00
|
|
|
|
2002-04-07 22:49:59 +02:00
|
|
|
// Otherwise, we need to insert a new basic block into the function, add a PHI
|
2008-03-05 22:50:24 +01:00
|
|
|
// nodes (if the function returns values), and convert all of the return
|
2001-07-06 18:58:36 +02:00
|
|
|
// instructions into unconditional branches.
|
|
|
|
//
|
2008-04-06 22:25:17 +02:00
|
|
|
BasicBlock *NewRetBlock = BasicBlock::Create("UnifiedReturnBlock", &F);
|
2001-07-06 18:58:36 +02:00
|
|
|
|
2008-07-23 02:34:11 +02:00
|
|
|
PHINode *PN = 0;
|
|
|
|
if (F.getReturnType() == Type::VoidTy) {
|
2008-04-06 22:25:17 +02:00
|
|
|
ReturnInst::Create(NULL, NewRetBlock);
|
2008-07-23 02:34:11 +02:00
|
|
|
} else {
|
2002-04-07 22:49:59 +02:00
|
|
|
// If the function doesn't return void... add a PHI node to the block...
|
2008-07-23 02:34:11 +02:00
|
|
|
PN = PHINode::Create(F.getReturnType(), "UnifiedRetVal");
|
2002-09-11 01:31:28 +02:00
|
|
|
NewRetBlock->getInstList().push_back(PN);
|
2008-04-06 22:25:17 +02:00
|
|
|
ReturnInst::Create(PN, NewRetBlock);
|
2001-07-06 18:58:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Loop over all of the blocks, replacing the return instruction with an
|
|
|
|
// unconditional branch.
|
|
|
|
//
|
2005-04-22 01:48:37 +02:00
|
|
|
for (std::vector<BasicBlock*>::iterator I = ReturningBlocks.begin(),
|
2003-05-23 00:00:07 +02:00
|
|
|
E = ReturningBlocks.end(); I != E; ++I) {
|
2003-03-31 19:30:25 +02:00
|
|
|
BasicBlock *BB = *I;
|
|
|
|
|
|
|
|
// Add an incoming element to the PHI node for every return instruction that
|
|
|
|
// is merging into this new block...
|
2008-07-23 02:34:11 +02:00
|
|
|
if (PN)
|
|
|
|
PN->addIncoming(BB->getTerminator()->getOperand(0), BB);
|
2003-03-31 19:30:25 +02:00
|
|
|
|
|
|
|
BB->getInstList().pop_back(); // Remove the return insn
|
2008-04-06 22:25:17 +02:00
|
|
|
BranchInst::Create(NewRetBlock, BB);
|
2001-07-06 18:58:36 +02:00
|
|
|
}
|
2003-09-10 22:34:51 +02:00
|
|
|
ReturnBlock = NewRetBlock;
|
2002-01-31 02:12:06 +01:00
|
|
|
return true;
|
2001-07-06 18:58:36 +02:00
|
|
|
}
|