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