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
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2005-04-22 07:48:37 +08:00
|
|
|
//
|
2003-10-21 03:43:21 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-07-07 00:58:36 +08:00
|
|
|
//
|
2020-09-09 00:54:30 +08:00
|
|
|
// This pass is used to ensure that functions have at most one return and one
|
|
|
|
// unreachable instruction in them.
|
2001-07-07 00:58:36 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2002-05-08 03:18:48 +08:00
|
|
|
#include "llvm/Transforms/Utils/UnifyFunctionExitNodes.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"
|
Sink all InitializePasses.h includes
This file lists every pass in LLVM, and is included by Pass.h, which is
very popular. Every time we add, remove, or rename a pass in LLVM, it
caused lots of recompilation.
I found this fact by looking at this table, which is sorted by the
number of times a file was changed over the last 100,000 git commits
multiplied by the number of object files that depend on it in the
current checkout:
recompiles touches affected_files header
342380 95 3604 llvm/include/llvm/ADT/STLExtras.h
314730 234 1345 llvm/include/llvm/InitializePasses.h
307036 118 2602 llvm/include/llvm/ADT/APInt.h
213049 59 3611 llvm/include/llvm/Support/MathExtras.h
170422 47 3626 llvm/include/llvm/Support/Compiler.h
162225 45 3605 llvm/include/llvm/ADT/Optional.h
158319 63 2513 llvm/include/llvm/ADT/Triple.h
140322 39 3598 llvm/include/llvm/ADT/StringRef.h
137647 59 2333 llvm/include/llvm/Support/Error.h
131619 73 1803 llvm/include/llvm/Support/FileSystem.h
Before this change, touching InitializePasses.h would cause 1345 files
to recompile. After this change, touching it only causes 550 compiles in
an incremental rebuild.
Reviewers: bkramer, asbirlea, bollu, jdoerfert
Differential Revision: https://reviews.llvm.org/D70211
2019-11-14 05:15:01 +08:00
|
|
|
#include "llvm/InitializePasses.h"
|
2018-03-29 01:44:36 +08:00
|
|
|
#include "llvm/Transforms/Utils.h"
|
2003-11-22 00:52:05 +08:00
|
|
|
using namespace llvm;
|
2003-11-12 06:41:34 +08:00
|
|
|
|
2020-10-21 01:32:28 +08:00
|
|
|
char UnifyFunctionExitNodesLegacyPass::ID = 0;
|
Sink all InitializePasses.h includes
This file lists every pass in LLVM, and is included by Pass.h, which is
very popular. Every time we add, remove, or rename a pass in LLVM, it
caused lots of recompilation.
I found this fact by looking at this table, which is sorted by the
number of times a file was changed over the last 100,000 git commits
multiplied by the number of object files that depend on it in the
current checkout:
recompiles touches affected_files header
342380 95 3604 llvm/include/llvm/ADT/STLExtras.h
314730 234 1345 llvm/include/llvm/InitializePasses.h
307036 118 2602 llvm/include/llvm/ADT/APInt.h
213049 59 3611 llvm/include/llvm/Support/MathExtras.h
170422 47 3626 llvm/include/llvm/Support/Compiler.h
162225 45 3605 llvm/include/llvm/ADT/Optional.h
158319 63 2513 llvm/include/llvm/ADT/Triple.h
140322 39 3598 llvm/include/llvm/ADT/StringRef.h
137647 59 2333 llvm/include/llvm/Support/Error.h
131619 73 1803 llvm/include/llvm/Support/FileSystem.h
Before this change, touching InitializePasses.h would cause 1345 files
to recompile. After this change, touching it only causes 550 compiles in
an incremental rebuild.
Reviewers: bkramer, asbirlea, bollu, jdoerfert
Differential Revision: https://reviews.llvm.org/D70211
2019-11-14 05:15:01 +08:00
|
|
|
|
2020-10-21 01:32:28 +08:00
|
|
|
UnifyFunctionExitNodesLegacyPass::UnifyFunctionExitNodesLegacyPass()
|
|
|
|
: FunctionPass(ID) {
|
|
|
|
initializeUnifyFunctionExitNodesLegacyPassPass(
|
|
|
|
*PassRegistry::getPassRegistry());
|
Sink all InitializePasses.h includes
This file lists every pass in LLVM, and is included by Pass.h, which is
very popular. Every time we add, remove, or rename a pass in LLVM, it
caused lots of recompilation.
I found this fact by looking at this table, which is sorted by the
number of times a file was changed over the last 100,000 git commits
multiplied by the number of object files that depend on it in the
current checkout:
recompiles touches affected_files header
342380 95 3604 llvm/include/llvm/ADT/STLExtras.h
314730 234 1345 llvm/include/llvm/InitializePasses.h
307036 118 2602 llvm/include/llvm/ADT/APInt.h
213049 59 3611 llvm/include/llvm/Support/MathExtras.h
170422 47 3626 llvm/include/llvm/Support/Compiler.h
162225 45 3605 llvm/include/llvm/ADT/Optional.h
158319 63 2513 llvm/include/llvm/ADT/Triple.h
140322 39 3598 llvm/include/llvm/ADT/StringRef.h
137647 59 2333 llvm/include/llvm/Support/Error.h
131619 73 1803 llvm/include/llvm/Support/FileSystem.h
Before this change, touching InitializePasses.h would cause 1345 files
to recompile. After this change, touching it only causes 550 compiles in
an incremental rebuild.
Reviewers: bkramer, asbirlea, bollu, jdoerfert
Differential Revision: https://reviews.llvm.org/D70211
2019-11-14 05:15:01 +08:00
|
|
|
}
|
|
|
|
|
2020-10-21 01:32:28 +08:00
|
|
|
INITIALIZE_PASS(UnifyFunctionExitNodesLegacyPass, "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() {
|
2020-10-21 01:32:28 +08:00
|
|
|
return new UnifyFunctionExitNodesLegacyPass();
|
2003-09-11 04:34:51 +08:00
|
|
|
}
|
|
|
|
|
2020-10-21 01:32:28 +08:00
|
|
|
void UnifyFunctionExitNodesLegacyPass::getAnalysisUsage(
|
|
|
|
AnalysisUsage &AU) const {
|
2003-04-01 01:30:25 +08:00
|
|
|
// 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
|
|
|
}
|
|
|
|
|
2020-10-21 01:32:28 +08:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
bool unifyUnreachableBlocks(Function &F) {
|
|
|
|
std::vector<BasicBlock *> UnreachableBlocks;
|
2020-09-09 16:59:41 +08:00
|
|
|
|
2015-10-13 10:39:05 +08:00
|
|
|
for (BasicBlock &I : F)
|
2020-09-09 16:59:41 +08:00
|
|
|
if (isa<UnreachableInst>(I.getTerminator()))
|
2015-10-13 10:39:05 +08:00
|
|
|
UnreachableBlocks.push_back(&I);
|
2003-09-11 04:34:51 +08:00
|
|
|
|
2020-09-09 16:59:41 +08:00
|
|
|
if (UnreachableBlocks.size() <= 1)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
BasicBlock *UnreachableBlock =
|
|
|
|
BasicBlock::Create(F.getContext(), "UnifiedUnreachableBlock", &F);
|
|
|
|
new UnreachableInst(F.getContext(), UnreachableBlock);
|
2004-10-17 02:21:33 +08:00
|
|
|
|
2020-09-09 16:59:41 +08:00
|
|
|
for (BasicBlock *BB : UnreachableBlocks) {
|
|
|
|
BB->getInstList().pop_back(); // Remove the unreachable inst.
|
|
|
|
BranchInst::Create(UnreachableBlock, BB);
|
2004-10-17 02:21:33 +08:00
|
|
|
}
|
|
|
|
|
2020-09-09 16:59:41 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-10-21 01:32:28 +08:00
|
|
|
bool unifyReturnBlocks(Function &F) {
|
2020-09-09 16:59:41 +08:00
|
|
|
std::vector<BasicBlock *> ReturningBlocks;
|
|
|
|
|
|
|
|
for (BasicBlock &I : F)
|
|
|
|
if (isa<ReturnInst>(I.getTerminator()))
|
|
|
|
ReturningBlocks.push_back(&I);
|
|
|
|
|
2020-09-09 00:54:30 +08:00
|
|
|
if (ReturningBlocks.size() <= 1)
|
2002-01-31 09:12:06 +08:00
|
|
|
return false;
|
2001-07-07 00:58:36 +08:00
|
|
|
|
2020-09-09 16:59:41 +08:00
|
|
|
// Insert a new basic block into the function, add PHI nodes (if the function
|
|
|
|
// returns values), and convert all of the return 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
|
|
|
}
|
2020-09-09 16:59:41 +08:00
|
|
|
|
2002-01-31 09:12:06 +08:00
|
|
|
return true;
|
2001-07-07 00:58:36 +08:00
|
|
|
}
|
2020-10-21 01:32:28 +08:00
|
|
|
} // namespace
|
2020-09-09 16:59:41 +08:00
|
|
|
|
|
|
|
// Unify all exit nodes of the CFG by creating a new BasicBlock, and converting
|
|
|
|
// all returns to unconditional branches to this new basic block. Also, unify
|
|
|
|
// all unreachable blocks.
|
2020-10-21 01:32:28 +08:00
|
|
|
bool UnifyFunctionExitNodesLegacyPass::runOnFunction(Function &F) {
|
2020-09-09 16:59:41 +08:00
|
|
|
bool Changed = false;
|
|
|
|
Changed |= unifyUnreachableBlocks(F);
|
|
|
|
Changed |= unifyReturnBlocks(F);
|
|
|
|
return Changed;
|
|
|
|
}
|
2020-10-21 01:32:28 +08:00
|
|
|
|
|
|
|
PreservedAnalyses UnifyFunctionExitNodesPass::run(Function &F,
|
|
|
|
FunctionAnalysisManager &AM) {
|
|
|
|
bool Changed = false;
|
|
|
|
Changed |= unifyUnreachableBlocks(F);
|
|
|
|
Changed |= unifyReturnBlocks(F);
|
|
|
|
return Changed ? PreservedAnalyses() : PreservedAnalyses::all();
|
|
|
|
}
|