Shih-wei Liao | e264f62 | 2010-02-10 11:10:31 -0800 | [diff] [blame^] | 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/Analysis/ProfileInfo.h" |
| 30 | #include "llvm/CodeGen/MachineDominators.h" |
| 31 | #include "llvm/CodeGen/MachineFunctionPass.h" |
| 32 | #include "llvm/CodeGen/MachineModuleInfo.h" |
| 33 | #include "llvm/CodeGen/MachineLoopInfo.h" |
| 34 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
| 35 | #include "llvm/Support/CFG.h" |
| 36 | #include "llvm/Target/TargetInstrInfo.h" |
| 37 | #include "llvm/ADT/DepthFirstIterator.h" |
| 38 | #include "llvm/ADT/SmallPtrSet.h" |
| 39 | using namespace llvm; |
| 40 | |
| 41 | namespace { |
| 42 | class UnreachableBlockElim : public FunctionPass { |
| 43 | virtual bool runOnFunction(Function &F); |
| 44 | public: |
| 45 | static char ID; // Pass identification, replacement for typeid |
| 46 | UnreachableBlockElim() : FunctionPass(&ID) {} |
| 47 | |
| 48 | virtual void getAnalysisUsage(AnalysisUsage &AU) const { |
| 49 | AU.addPreserved<ProfileInfo>(); |
| 50 | } |
| 51 | }; |
| 52 | } |
| 53 | char UnreachableBlockElim::ID = 0; |
| 54 | static RegisterPass<UnreachableBlockElim> |
| 55 | X("unreachableblockelim", "Remove unreachable blocks from the CFG"); |
| 56 | |
| 57 | FunctionPass *llvm::createUnreachableBlockEliminationPass() { |
| 58 | return new UnreachableBlockElim(); |
| 59 | } |
| 60 | |
| 61 | bool UnreachableBlockElim::runOnFunction(Function &F) { |
| 62 | SmallPtrSet<BasicBlock*, 8> Reachable; |
| 63 | |
| 64 | // Mark all reachable blocks. |
| 65 | for (df_ext_iterator<Function*, SmallPtrSet<BasicBlock*, 8> > I = |
| 66 | df_ext_begin(&F, Reachable), E = df_ext_end(&F, Reachable); I != E; ++I) |
| 67 | /* Mark all reachable blocks */; |
| 68 | |
| 69 | // Loop over all dead blocks, remembering them and deleting all instructions |
| 70 | // in them. |
| 71 | std::vector<BasicBlock*> DeadBlocks; |
| 72 | for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I) |
| 73 | if (!Reachable.count(I)) { |
| 74 | BasicBlock *BB = I; |
| 75 | DeadBlocks.push_back(BB); |
| 76 | while (PHINode *PN = dyn_cast<PHINode>(BB->begin())) { |
| 77 | PN->replaceAllUsesWith(Constant::getNullValue(PN->getType())); |
| 78 | BB->getInstList().pop_front(); |
| 79 | } |
| 80 | for (succ_iterator SI = succ_begin(BB), E = succ_end(BB); SI != E; ++SI) |
| 81 | (*SI)->removePredecessor(BB); |
| 82 | BB->dropAllReferences(); |
| 83 | } |
| 84 | |
| 85 | // Actually remove the blocks now. |
| 86 | ProfileInfo *PI = getAnalysisIfAvailable<ProfileInfo>(); |
| 87 | for (unsigned i = 0, e = DeadBlocks.size(); i != e; ++i) { |
| 88 | if (PI) PI->removeBlock(DeadBlocks[i]); |
| 89 | DeadBlocks[i]->eraseFromParent(); |
| 90 | } |
| 91 | |
| 92 | return DeadBlocks.size(); |
| 93 | } |
| 94 | |
| 95 | |
| 96 | namespace { |
| 97 | class UnreachableMachineBlockElim : public MachineFunctionPass { |
| 98 | virtual bool runOnMachineFunction(MachineFunction &F); |
| 99 | virtual void getAnalysisUsage(AnalysisUsage &AU) const; |
| 100 | MachineModuleInfo *MMI; |
| 101 | public: |
| 102 | static char ID; // Pass identification, replacement for typeid |
| 103 | UnreachableMachineBlockElim() : MachineFunctionPass(&ID) {} |
| 104 | }; |
| 105 | } |
| 106 | char UnreachableMachineBlockElim::ID = 0; |
| 107 | |
| 108 | static RegisterPass<UnreachableMachineBlockElim> |
| 109 | Y("unreachable-mbb-elimination", |
| 110 | "Remove unreachable machine basic blocks"); |
| 111 | |
| 112 | const PassInfo *const llvm::UnreachableMachineBlockElimID = &Y; |
| 113 | |
| 114 | void UnreachableMachineBlockElim::getAnalysisUsage(AnalysisUsage &AU) const { |
| 115 | AU.addPreserved<MachineLoopInfo>(); |
| 116 | AU.addPreserved<MachineDominatorTree>(); |
| 117 | MachineFunctionPass::getAnalysisUsage(AU); |
| 118 | } |
| 119 | |
| 120 | bool UnreachableMachineBlockElim::runOnMachineFunction(MachineFunction &F) { |
| 121 | SmallPtrSet<MachineBasicBlock*, 8> Reachable; |
| 122 | |
| 123 | MMI = getAnalysisIfAvailable<MachineModuleInfo>(); |
| 124 | MachineDominatorTree *MDT = getAnalysisIfAvailable<MachineDominatorTree>(); |
| 125 | MachineLoopInfo *MLI = getAnalysisIfAvailable<MachineLoopInfo>(); |
| 126 | |
| 127 | // Mark all reachable blocks. |
| 128 | for (df_ext_iterator<MachineFunction*, SmallPtrSet<MachineBasicBlock*, 8> > |
| 129 | I = df_ext_begin(&F, Reachable), E = df_ext_end(&F, Reachable); |
| 130 | I != E; ++I) |
| 131 | /* Mark all reachable blocks */; |
| 132 | |
| 133 | // Loop over all dead blocks, remembering them and deleting all instructions |
| 134 | // in them. |
| 135 | std::vector<MachineBasicBlock*> DeadBlocks; |
| 136 | for (MachineFunction::iterator I = F.begin(), E = F.end(); I != E; ++I) { |
| 137 | MachineBasicBlock *BB = I; |
| 138 | |
| 139 | // Test for deadness. |
| 140 | if (!Reachable.count(BB)) { |
| 141 | DeadBlocks.push_back(BB); |
| 142 | |
| 143 | // Update dominator and loop info. |
| 144 | if (MLI) MLI->removeBlock(BB); |
| 145 | if (MDT && MDT->getNode(BB)) MDT->eraseNode(BB); |
| 146 | |
| 147 | while (BB->succ_begin() != BB->succ_end()) { |
| 148 | MachineBasicBlock* succ = *BB->succ_begin(); |
| 149 | |
| 150 | MachineBasicBlock::iterator start = succ->begin(); |
| 151 | while (start != succ->end() && start->isPHI()) { |
| 152 | for (unsigned i = start->getNumOperands() - 1; i >= 2; i-=2) |
| 153 | if (start->getOperand(i).isMBB() && |
| 154 | start->getOperand(i).getMBB() == BB) { |
| 155 | start->RemoveOperand(i); |
| 156 | start->RemoveOperand(i-1); |
| 157 | } |
| 158 | |
| 159 | start++; |
| 160 | } |
| 161 | |
| 162 | BB->removeSuccessor(BB->succ_begin()); |
| 163 | } |
| 164 | } |
| 165 | } |
| 166 | |
| 167 | // Actually remove the blocks now. |
| 168 | for (unsigned i = 0, e = DeadBlocks.size(); i != e; ++i) { |
| 169 | MachineBasicBlock *MBB = DeadBlocks[i]; |
| 170 | // If there are any labels in the basic block, unregister them from |
| 171 | // MachineModuleInfo. |
| 172 | if (MMI && !MBB->empty()) { |
| 173 | for (MachineBasicBlock::iterator I = MBB->begin(), |
| 174 | E = MBB->end(); I != E; ++I) { |
| 175 | if (I->isLabel()) |
| 176 | // The label ID # is always operand #0, an immediate. |
| 177 | MMI->InvalidateLabel(I->getOperand(0).getImm()); |
| 178 | } |
| 179 | } |
| 180 | MBB->eraseFromParent(); |
| 181 | } |
| 182 | |
| 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(), |
| 188 | BB->pred_end()); |
| 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); |
| 195 | } |
| 196 | |
| 197 | if (phi->getNumOperands() == 3) { |
| 198 | unsigned Input = phi->getOperand(1).getReg(); |
| 199 | unsigned Output = phi->getOperand(0).getReg(); |
| 200 | |
| 201 | MachineInstr* temp = phi; |
| 202 | ++phi; |
| 203 | temp->eraseFromParent(); |
| 204 | |
| 205 | if (Input != Output) |
| 206 | F.getRegInfo().replaceRegWith(Output, Input); |
| 207 | |
| 208 | continue; |
| 209 | } |
| 210 | |
| 211 | ++phi; |
| 212 | } |
| 213 | } |
| 214 | |
| 215 | F.RenumberBlocks(); |
| 216 | |
| 217 | return DeadBlocks.size(); |
| 218 | } |