1 //===-- UnreachableBlockElim.cpp - Remove unreachable blocks for codegen --===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This pass is an extremely simple version of the SimplifyCFG pass. Its sole
11 // job is to delete LLVM basic blocks that are not reachable from the entry
12 // node. To do this, it performs a simple depth first traversal of the CFG,
13 // then deletes any unvisited nodes.
15 // Note that this pass is really a hack. In particular, the instruction
16 // selectors for various targets should just not generate code for unreachable
17 // blocks. Until LLVM has a more systematic way of defining instruction
18 // selectors, however, we cannot really expect them to handle additional
21 //===----------------------------------------------------------------------===//
23 #include "llvm/CodeGen/UnreachableBlockElim.h"
24 #include "llvm/ADT/DepthFirstIterator.h"
25 #include "llvm/ADT/SmallPtrSet.h"
26 #include "llvm/CodeGen/MachineDominators.h"
27 #include "llvm/CodeGen/MachineFunctionPass.h"
28 #include "llvm/CodeGen/MachineInstrBuilder.h"
29 #include "llvm/CodeGen/MachineLoopInfo.h"
30 #include "llvm/CodeGen/MachineModuleInfo.h"
31 #include "llvm/CodeGen/MachineRegisterInfo.h"
32 #include "llvm/CodeGen/Passes.h"
33 #include "llvm/CodeGen/TargetInstrInfo.h"
34 #include "llvm/IR/CFG.h"
35 #include "llvm/IR/Constant.h"
36 #include "llvm/IR/Dominators.h"
37 #include "llvm/IR/Function.h"
38 #include "llvm/IR/Instructions.h"
39 #include "llvm/IR/Type.h"
40 #include "llvm/Pass.h"
43 static bool eliminateUnreachableBlock(Function
&F
) {
44 df_iterator_default_set
<BasicBlock
*> Reachable
;
46 // Mark all reachable blocks.
47 for (BasicBlock
*BB
: depth_first_ext(&F
, Reachable
))
48 (void)BB
/* Mark all reachable blocks */;
50 // Loop over all dead blocks, remembering them and deleting all instructions
52 std::vector
<BasicBlock
*> DeadBlocks
;
53 for (Function::iterator I
= F
.begin(), E
= F
.end(); I
!= E
; ++I
)
54 if (!Reachable
.count(&*I
)) {
56 DeadBlocks
.push_back(BB
);
57 while (PHINode
*PN
= dyn_cast
<PHINode
>(BB
->begin())) {
58 PN
->replaceAllUsesWith(Constant::getNullValue(PN
->getType()));
59 BB
->getInstList().pop_front();
61 for (succ_iterator SI
= succ_begin(BB
), E
= succ_end(BB
); SI
!= E
; ++SI
)
62 (*SI
)->removePredecessor(BB
);
63 BB
->dropAllReferences();
66 // Actually remove the blocks now.
67 for (unsigned i
= 0, e
= DeadBlocks
.size(); i
!= e
; ++i
) {
68 DeadBlocks
[i
]->eraseFromParent();
71 return !DeadBlocks
.empty();
75 class UnreachableBlockElimLegacyPass
: public FunctionPass
{
76 bool runOnFunction(Function
&F
) override
{
77 return eliminateUnreachableBlock(F
);
81 static char ID
; // Pass identification, replacement for typeid
82 UnreachableBlockElimLegacyPass() : FunctionPass(ID
) {
83 initializeUnreachableBlockElimLegacyPassPass(
84 *PassRegistry::getPassRegistry());
87 void getAnalysisUsage(AnalysisUsage
&AU
) const override
{
88 AU
.addPreserved
<DominatorTreeWrapperPass
>();
92 char UnreachableBlockElimLegacyPass::ID
= 0;
93 INITIALIZE_PASS(UnreachableBlockElimLegacyPass
, "unreachableblockelim",
94 "Remove unreachable blocks from the CFG", false, false)
96 FunctionPass
*llvm::createUnreachableBlockEliminationPass() {
97 return new UnreachableBlockElimLegacyPass();
100 PreservedAnalyses
UnreachableBlockElimPass::run(Function
&F
,
101 FunctionAnalysisManager
&AM
) {
102 bool Changed
= eliminateUnreachableBlock(F
);
104 return PreservedAnalyses::all();
105 PreservedAnalyses PA
;
106 PA
.preserve
<DominatorTreeAnalysis
>();
111 class UnreachableMachineBlockElim
: public MachineFunctionPass
{
112 bool runOnMachineFunction(MachineFunction
&F
) override
;
113 void getAnalysisUsage(AnalysisUsage
&AU
) const override
;
114 MachineModuleInfo
*MMI
;
116 static char ID
; // Pass identification, replacement for typeid
117 UnreachableMachineBlockElim() : MachineFunctionPass(ID
) {}
120 char UnreachableMachineBlockElim::ID
= 0;
122 INITIALIZE_PASS(UnreachableMachineBlockElim
, "unreachable-mbb-elimination",
123 "Remove unreachable machine basic blocks", false, false)
125 char &llvm::UnreachableMachineBlockElimID
= UnreachableMachineBlockElim::ID
;
127 void UnreachableMachineBlockElim::getAnalysisUsage(AnalysisUsage
&AU
) const {
128 AU
.addPreserved
<MachineLoopInfo
>();
129 AU
.addPreserved
<MachineDominatorTree
>();
130 MachineFunctionPass::getAnalysisUsage(AU
);
133 bool UnreachableMachineBlockElim::runOnMachineFunction(MachineFunction
&F
) {
134 df_iterator_default_set
<MachineBasicBlock
*> Reachable
;
135 bool ModifiedPHI
= false;
137 MMI
= getAnalysisIfAvailable
<MachineModuleInfo
>();
138 MachineDominatorTree
*MDT
= getAnalysisIfAvailable
<MachineDominatorTree
>();
139 MachineLoopInfo
*MLI
= getAnalysisIfAvailable
<MachineLoopInfo
>();
141 // Mark all reachable blocks.
142 for (MachineBasicBlock
*BB
: depth_first_ext(&F
, Reachable
))
143 (void)BB
/* Mark all reachable blocks */;
145 // Loop over all dead blocks, remembering them and deleting all instructions
147 std::vector
<MachineBasicBlock
*> DeadBlocks
;
148 for (MachineFunction::iterator I
= F
.begin(), E
= F
.end(); I
!= E
; ++I
) {
149 MachineBasicBlock
*BB
= &*I
;
151 // Test for deadness.
152 if (!Reachable
.count(BB
)) {
153 DeadBlocks
.push_back(BB
);
155 // Update dominator and loop info.
156 if (MLI
) MLI
->removeBlock(BB
);
157 if (MDT
&& MDT
->getNode(BB
)) MDT
->eraseNode(BB
);
159 while (BB
->succ_begin() != BB
->succ_end()) {
160 MachineBasicBlock
* succ
= *BB
->succ_begin();
162 MachineBasicBlock::iterator start
= succ
->begin();
163 while (start
!= succ
->end() && start
->isPHI()) {
164 for (unsigned i
= start
->getNumOperands() - 1; i
>= 2; i
-=2)
165 if (start
->getOperand(i
).isMBB() &&
166 start
->getOperand(i
).getMBB() == BB
) {
167 start
->RemoveOperand(i
);
168 start
->RemoveOperand(i
-1);
174 BB
->removeSuccessor(BB
->succ_begin());
179 // Actually remove the blocks now.
180 for (unsigned i
= 0, e
= DeadBlocks
.size(); i
!= e
; ++i
)
181 DeadBlocks
[i
]->eraseFromParent();
183 // Cleanup PHI nodes.
184 for (MachineFunction::iterator I
= F
.begin(), E
= F
.end(); I
!= E
; ++I
) {
185 MachineBasicBlock
*BB
= &*I
;
186 // Prune unneeded PHI entries.
187 SmallPtrSet
<MachineBasicBlock
*, 8> preds(BB
->pred_begin(),
189 MachineBasicBlock::iterator phi
= BB
->begin();
190 while (phi
!= BB
->end() && phi
->isPHI()) {
191 for (unsigned i
= phi
->getNumOperands() - 1; i
>= 2; i
-=2)
192 if (!preds
.count(phi
->getOperand(i
).getMBB())) {
193 phi
->RemoveOperand(i
);
194 phi
->RemoveOperand(i
-1);
198 if (phi
->getNumOperands() == 3) {
199 const MachineOperand
&Input
= phi
->getOperand(1);
200 const MachineOperand
&Output
= phi
->getOperand(0);
201 unsigned InputReg
= Input
.getReg();
202 unsigned OutputReg
= Output
.getReg();
203 assert(Output
.getSubReg() == 0 && "Cannot have output subregister");
206 if (InputReg
!= OutputReg
) {
207 MachineRegisterInfo
&MRI
= F
.getRegInfo();
208 unsigned InputSub
= Input
.getSubReg();
210 MRI
.constrainRegClass(InputReg
, MRI
.getRegClass(OutputReg
)) &&
212 MRI
.replaceRegWith(OutputReg
, InputReg
);
214 // The input register to the PHI has a subregister or it can't be
215 // constrained to the proper register class or it is undef:
216 // insert a COPY instead of simply replacing the output
218 const TargetInstrInfo
*TII
= F
.getSubtarget().getInstrInfo();
219 BuildMI(*BB
, BB
->getFirstNonPHI(), phi
->getDebugLoc(),
220 TII
->get(TargetOpcode::COPY
), OutputReg
)
221 .addReg(InputReg
, getRegState(Input
), InputSub
);
223 phi
++->eraseFromParent();
234 return (!DeadBlocks
.empty() || ModifiedPHI
);