2002-04-07 20:49:59 +00:00
|
|
|
//===- UnifyFunctionExitNodes.cpp - Make all functions have a single exit -===//
|
2001-07-06 16:58:36 +00:00
|
|
|
//
|
|
|
|
// This file provides several routines that are useful for simplifying CFGs in
|
|
|
|
// various ways...
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2002-05-07 18:36:35 +00:00
|
|
|
#include "llvm/Transforms/Scalar/UnifyFunctionExitNodes.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"
|
2002-01-20 22:54:45 +00:00
|
|
|
using std::vector;
|
2001-07-06 16:58:36 +00:00
|
|
|
|
2002-04-27 07:27:19 +00:00
|
|
|
AnalysisID UnifyFunctionExitNodes::ID(AnalysisID::create<UnifyFunctionExitNodes>());
|
2002-01-31 00:42:27 +00:00
|
|
|
|
|
|
|
|
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-04-27 07:27:19 +00:00
|
|
|
bool UnifyFunctionExitNodes::doit(Function *M, BasicBlock *&ExitNode) {
|
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.
|
|
|
|
//
|
2002-02-01 04:53:48 +00:00
|
|
|
vector<BasicBlock*> ReturningBlocks;
|
2002-04-07 20:49:59 +00:00
|
|
|
for(Function::iterator I = M->begin(), E = M->end(); I != E; ++I)
|
2002-02-01 04:53:48 +00:00
|
|
|
if (isa<ReturnInst>((*I)->getTerminator()))
|
2001-07-06 16:58:36 +00:00
|
|
|
ReturningBlocks.push_back(*I);
|
|
|
|
|
2002-02-01 04:53:48 +00:00
|
|
|
if (ReturningBlocks.empty()) {
|
2002-01-31 01:12:06 +00:00
|
|
|
ExitNode = 0;
|
|
|
|
return false; // No blocks return
|
|
|
|
} else if (ReturningBlocks.size() == 1) {
|
|
|
|
ExitNode = ReturningBlocks.front(); // Already has a single return block
|
|
|
|
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.
|
|
|
|
//
|
2002-01-31 01:12:06 +00:00
|
|
|
BasicBlock *NewRetBlock = new BasicBlock("UnifiedExitNode", M);
|
2001-07-06 16:58:36 +00:00
|
|
|
|
|
|
|
if (M->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...
|
2001-07-06 16:58:36 +00:00
|
|
|
PHINode *PN = new PHINode(M->getReturnType());
|
|
|
|
NewRetBlock->getInstList().push_back(PN);
|
|
|
|
|
|
|
|
// Add an incoming element to the PHI node for every return instruction that
|
|
|
|
// is merging into this new block...
|
|
|
|
for (vector<BasicBlock*>::iterator I = ReturningBlocks.begin(),
|
|
|
|
E = ReturningBlocks.end(); I != E; ++I)
|
|
|
|
PN->addIncoming((*I)->getTerminator()->getOperand(0), *I);
|
|
|
|
|
|
|
|
// Add a return instruction to return the result of the PHI node...
|
|
|
|
NewRetBlock->getInstList().push_back(new ReturnInst(PN));
|
|
|
|
} else {
|
|
|
|
// If it returns void, just add a return void instruction to the block
|
|
|
|
NewRetBlock->getInstList().push_back(new ReturnInst());
|
|
|
|
}
|
|
|
|
|
|
|
|
// Loop over all of the blocks, replacing the return instruction with an
|
|
|
|
// unconditional branch.
|
|
|
|
//
|
|
|
|
for (vector<BasicBlock*>::iterator I = ReturningBlocks.begin(),
|
|
|
|
E = ReturningBlocks.end(); I != E; ++I) {
|
|
|
|
delete (*I)->getInstList().pop_back(); // Remove the return insn
|
|
|
|
(*I)->getInstList().push_back(new BranchInst(NewRetBlock));
|
|
|
|
}
|
2002-01-31 01:12:06 +00:00
|
|
|
ExitNode = NewRetBlock;
|
|
|
|
return true;
|
2001-07-06 16:58:36 +00:00
|
|
|
}
|