Remove unneeded iteration. Thanks to Dan for the feedback.
[oota-llvm.git] / lib / CodeGen / UnreachableBlockElim.cpp
1 //===-- UnreachableBlockElim.cpp - Remove unreachable blocks for codegen --===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
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.
14 //
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
19 // complexity.
20 //
21 //===----------------------------------------------------------------------===//
22
23 #include "llvm/CodeGen/Passes.h"
24 #include "llvm/Constant.h"
25 #include "llvm/Instructions.h"
26 #include "llvm/Function.h"
27 #include "llvm/Pass.h"
28 #include "llvm/Type.h"
29 #include "llvm/CodeGen/MachineFunctionPass.h"
30 #include "llvm/Support/CFG.h"
31 #include "llvm/Support/Compiler.h"
32 #include "llvm/Target/TargetInstrInfo.h"
33 #include "llvm/ADT/DepthFirstIterator.h"
34 using namespace llvm;
35
36 namespace {
37   class VISIBILITY_HIDDEN UnreachableBlockElim : public FunctionPass {
38     virtual bool runOnFunction(Function &F);
39   public:
40     static char ID; // Pass identification, replacement for typeid
41     UnreachableBlockElim() : FunctionPass((intptr_t)&ID) {}
42   };
43 }
44 char UnreachableBlockElim::ID = 0;
45 static RegisterPass<UnreachableBlockElim>
46 X("unreachableblockelim", "Remove unreachable blocks from the CFG");
47
48 FunctionPass *llvm::createUnreachableBlockEliminationPass() {
49   return new UnreachableBlockElim();
50 }
51
52 bool UnreachableBlockElim::runOnFunction(Function &F) {
53   std::set<BasicBlock*> Reachable;
54
55   // Mark all reachable blocks.
56   for (df_ext_iterator<Function*> I = df_ext_begin(&F, Reachable),
57          E = df_ext_end(&F, Reachable); I != E; ++I)
58     /* Mark all reachable blocks */;
59
60   // Loop over all dead blocks, remembering them and deleting all instructions
61   // in them.
62   std::vector<BasicBlock*> DeadBlocks;
63   for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I)
64     if (!Reachable.count(I)) {
65       BasicBlock *BB = I;
66       DeadBlocks.push_back(BB);
67       while (PHINode *PN = dyn_cast<PHINode>(BB->begin())) {
68         PN->replaceAllUsesWith(Constant::getNullValue(PN->getType()));
69         BB->getInstList().pop_front();
70       }
71       for (succ_iterator SI = succ_begin(BB), E = succ_end(BB); SI != E; ++SI)
72         (*SI)->removePredecessor(BB);
73       BB->dropAllReferences();
74     }
75
76   // Actually remove the blocks now.
77   for (unsigned i = 0, e = DeadBlocks.size(); i != e; ++i)
78     DeadBlocks[i]->eraseFromParent();
79
80   return DeadBlocks.size();
81 }
82
83
84 namespace {
85   class VISIBILITY_HIDDEN UnreachableMachineBlockElim : 
86         public MachineFunctionPass {
87     virtual bool runOnMachineFunction(MachineFunction &F);
88     
89   public:
90     static char ID; // Pass identification, replacement for typeid
91     UnreachableMachineBlockElim() : MachineFunctionPass((intptr_t)&ID) {}
92   };
93 }
94 char UnreachableMachineBlockElim::ID = 0;
95
96 static RegisterPass<UnreachableMachineBlockElim>
97 Y("unreachable-mbb-elimination",
98   "Remove unreachable machine basic blocks");
99
100 const PassInfo *const llvm::UnreachableMachineBlockElimID = &Y;
101
102 bool UnreachableMachineBlockElim::runOnMachineFunction(MachineFunction &F) {
103   std::set<MachineBasicBlock*> Reachable;
104
105   // Mark all reachable blocks.
106   for (df_ext_iterator<MachineFunction*> I = df_ext_begin(&F, Reachable),
107          E = df_ext_end(&F, Reachable); I != E; ++I)
108     /* Mark all reachable blocks */;
109
110   // Loop over all dead blocks, remembering them and deleting all instructions
111   // in them.
112   std::vector<MachineBasicBlock*> DeadBlocks;
113   for (MachineFunction::iterator I = F.begin(), E = F.end(); I != E; ++I)
114     if (!Reachable.count(I)) {
115       MachineBasicBlock *BB = I;
116       DeadBlocks.push_back(BB);
117       
118       while (BB->succ_begin() != BB->succ_end()) {
119         MachineBasicBlock* succ = *BB->succ_begin();
120         
121         MachineBasicBlock::iterator start = succ->begin();
122         while (start != succ->end() &&
123                start->getOpcode() == TargetInstrInfo::PHI) {
124           for (unsigned i = start->getNumOperands() - 1; i >= 2; i-=2)
125             if (start->getOperand(i).isMBB() &&
126                 start->getOperand(i).getMBB() == BB) {
127               start->RemoveOperand(i);
128               start->RemoveOperand(i-1);
129             }
130           
131           if (start->getNumOperands() == 1) {
132             MachineInstr* phi = start;
133             start++;
134             phi->eraseFromParent();
135           } else
136             start++;
137         }
138         
139         BB->removeSuccessor(BB->succ_begin());
140       }
141     }
142
143   // Actually remove the blocks now.
144   for (unsigned i = 0, e = DeadBlocks.size(); i != e; ++i)
145     DeadBlocks[i]->eraseFromParent();
146
147   F.RenumberBlocks();
148
149   return DeadBlocks.size();
150 }
151