Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1 | //===- PruneEH.cpp - Pass which deletes unused exception handlers ---------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 081ce94 | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements a simple interprocedural pass which walks the |
| 11 | // call-graph, turning invoke instructions into calls, iff the callee cannot |
Duncan Sands | 7f511cf | 2007-12-10 19:09:40 +0000 | [diff] [blame] | 12 | // throw an exception, and marking functions 'nounwind' if they cannot throw. |
| 13 | // It implements this as a bottom-up traversal of the call-graph. |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 14 | // |
| 15 | //===----------------------------------------------------------------------===// |
| 16 | |
| 17 | #define DEBUG_TYPE "prune-eh" |
| 18 | #include "llvm/Transforms/IPO.h" |
| 19 | #include "llvm/CallGraphSCCPass.h" |
| 20 | #include "llvm/Constants.h" |
| 21 | #include "llvm/Function.h" |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 22 | #include "llvm/Instructions.h" |
| 23 | #include "llvm/Analysis/CallGraph.h" |
| 24 | #include "llvm/ADT/SmallVector.h" |
| 25 | #include "llvm/ADT/Statistic.h" |
| 26 | #include "llvm/Support/CFG.h" |
| 27 | #include "llvm/Support/Compiler.h" |
Dale Johannesen | 9873882 | 2008-02-22 22:17:59 +0000 | [diff] [blame] | 28 | #include "llvm/ParamAttrsList.h" |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 29 | #include <set> |
| 30 | #include <algorithm> |
| 31 | using namespace llvm; |
| 32 | |
| 33 | STATISTIC(NumRemoved, "Number of invokes removed"); |
| 34 | STATISTIC(NumUnreach, "Number of noreturn calls optimized"); |
Nick Lewycky | 62bf14d | 2008-03-09 04:55:16 +0000 | [diff] [blame] | 35 | STATISTIC(NumBBUnwind, "Number of unwind_to removed from blocks"); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 36 | |
| 37 | namespace { |
| 38 | struct VISIBILITY_HIDDEN PruneEH : public CallGraphSCCPass { |
| 39 | static char ID; // Pass identification, replacement for typeid |
| 40 | PruneEH() : CallGraphSCCPass((intptr_t)&ID) {} |
| 41 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 42 | // runOnSCC - Analyze the SCC, performing the transformation if possible. |
| 43 | bool runOnSCC(const std::vector<CallGraphNode *> &SCC); |
| 44 | |
| 45 | bool SimplifyFunction(Function *F); |
| 46 | void DeleteBasicBlock(BasicBlock *BB); |
| 47 | }; |
| 48 | |
| 49 | char PruneEH::ID = 0; |
| 50 | RegisterPass<PruneEH> X("prune-eh", "Remove unused exception handling info"); |
| 51 | } |
| 52 | |
| 53 | Pass *llvm::createPruneEHPass() { return new PruneEH(); } |
| 54 | |
| 55 | |
| 56 | bool PruneEH::runOnSCC(const std::vector<CallGraphNode *> &SCC) { |
| 57 | CallGraph &CG = getAnalysis<CallGraph>(); |
| 58 | bool MadeChange = false; |
| 59 | |
| 60 | // First pass, scan all of the functions in the SCC, simplifying them |
| 61 | // according to what we know. |
| 62 | for (unsigned i = 0, e = SCC.size(); i != e; ++i) |
| 63 | if (Function *F = SCC[i]->getFunction()) |
| 64 | MadeChange |= SimplifyFunction(F); |
| 65 | |
| 66 | // Next, check to see if any callees might throw or if there are any external |
| 67 | // functions in this SCC: if so, we cannot prune any functions in this SCC. |
| 68 | // If this SCC includes the unwind instruction, we KNOW it throws, so |
| 69 | // obviously the SCC might throw. |
| 70 | // |
| 71 | bool SCCMightUnwind = false, SCCMightReturn = false; |
| 72 | for (unsigned i = 0, e = SCC.size(); |
| 73 | (!SCCMightUnwind || !SCCMightReturn) && i != e; ++i) { |
| 74 | Function *F = SCC[i]->getFunction(); |
Duncan Sands | 7f511cf | 2007-12-10 19:09:40 +0000 | [diff] [blame] | 75 | if (F == 0) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 76 | SCCMightUnwind = true; |
| 77 | SCCMightReturn = true; |
Duncan Sands | 7f511cf | 2007-12-10 19:09:40 +0000 | [diff] [blame] | 78 | } else if (F->isDeclaration()) { |
Duncan Sands | 7dc19d4 | 2007-12-18 09:59:50 +0000 | [diff] [blame] | 79 | SCCMightUnwind |= !F->doesNotThrow(); |
| 80 | SCCMightReturn |= !F->doesNotReturn(); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 81 | } else { |
Duncan Sands | 7dc19d4 | 2007-12-18 09:59:50 +0000 | [diff] [blame] | 82 | bool CheckUnwind = !SCCMightUnwind && !F->doesNotThrow(); |
| 83 | bool CheckReturn = !SCCMightReturn && !F->doesNotReturn(); |
Duncan Sands | 7f511cf | 2007-12-10 19:09:40 +0000 | [diff] [blame] | 84 | |
| 85 | if (!CheckUnwind && !CheckReturn) |
| 86 | continue; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 87 | |
| 88 | // Check to see if this function performs an unwind or calls an |
| 89 | // unwinding function. |
| 90 | for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) { |
Duncan Sands | 7f511cf | 2007-12-10 19:09:40 +0000 | [diff] [blame] | 91 | if (CheckUnwind && isa<UnwindInst>(BB->getTerminator())) { |
| 92 | // Uses unwind! |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 93 | SCCMightUnwind = true; |
Duncan Sands | 7f511cf | 2007-12-10 19:09:40 +0000 | [diff] [blame] | 94 | } else if (CheckReturn && isa<ReturnInst>(BB->getTerminator())) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 95 | SCCMightReturn = true; |
| 96 | } |
| 97 | |
| 98 | // Invoke instructions don't allow unwinding to continue, so we are |
| 99 | // only interested in call instructions. |
Duncan Sands | 7f511cf | 2007-12-10 19:09:40 +0000 | [diff] [blame] | 100 | if (CheckUnwind && !SCCMightUnwind) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 101 | for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) |
| 102 | if (CallInst *CI = dyn_cast<CallInst>(I)) { |
Duncan Sands | 7dc19d4 | 2007-12-18 09:59:50 +0000 | [diff] [blame] | 103 | if (CI->doesNotThrow()) { |
Duncan Sands | 7f511cf | 2007-12-10 19:09:40 +0000 | [diff] [blame] | 104 | // This call cannot throw. |
| 105 | } else if (Function *Callee = CI->getCalledFunction()) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 106 | CallGraphNode *CalleeNode = CG[Callee]; |
Duncan Sands | 7f511cf | 2007-12-10 19:09:40 +0000 | [diff] [blame] | 107 | // If the callee is outside our current SCC then we may |
| 108 | // throw because it might. |
| 109 | if (std::find(SCC.begin(), SCC.end(), CalleeNode) == SCC.end()){ |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 110 | SCCMightUnwind = true; |
| 111 | break; |
| 112 | } |
| 113 | } else { |
| 114 | // Indirect call, it might throw. |
| 115 | SCCMightUnwind = true; |
| 116 | break; |
| 117 | } |
| 118 | } |
| 119 | if (SCCMightUnwind && SCCMightReturn) break; |
| 120 | } |
| 121 | } |
| 122 | } |
| 123 | |
| 124 | // If the SCC doesn't unwind or doesn't throw, note this fact. |
Duncan Sands | 7f511cf | 2007-12-10 19:09:40 +0000 | [diff] [blame] | 125 | if (!SCCMightUnwind || !SCCMightReturn) |
| 126 | for (unsigned i = 0, e = SCC.size(); i != e; ++i) { |
Dale Johannesen | f4666f5 | 2008-02-19 21:38:47 +0000 | [diff] [blame] | 127 | ParameterAttributes NewAttributes = ParamAttr::None; |
Duncan Sands | 7f511cf | 2007-12-10 19:09:40 +0000 | [diff] [blame] | 128 | |
| 129 | if (!SCCMightUnwind) |
Duncan Sands | 2937e35 | 2007-12-19 21:13:37 +0000 | [diff] [blame] | 130 | NewAttributes |= ParamAttr::NoUnwind; |
Duncan Sands | 7f511cf | 2007-12-10 19:09:40 +0000 | [diff] [blame] | 131 | if (!SCCMightReturn) |
Duncan Sands | 2937e35 | 2007-12-19 21:13:37 +0000 | [diff] [blame] | 132 | NewAttributes |= ParamAttr::NoReturn; |
Duncan Sands | 7f511cf | 2007-12-10 19:09:40 +0000 | [diff] [blame] | 133 | |
Duncan Sands | 2937e35 | 2007-12-19 21:13:37 +0000 | [diff] [blame] | 134 | const ParamAttrsList *PAL = SCC[i]->getFunction()->getParamAttrs(); |
| 135 | PAL = ParamAttrsList::includeAttrs(PAL, 0, NewAttributes); |
Duncan Sands | 7f511cf | 2007-12-10 19:09:40 +0000 | [diff] [blame] | 136 | SCC[i]->getFunction()->setParamAttrs(PAL); |
| 137 | } |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 138 | |
| 139 | for (unsigned i = 0, e = SCC.size(); i != e; ++i) { |
| 140 | // Convert any invoke instructions to non-throwing functions in this node |
| 141 | // into call instructions with a branch. This makes the exception blocks |
| 142 | // dead. |
| 143 | if (Function *F = SCC[i]->getFunction()) |
| 144 | MadeChange |= SimplifyFunction(F); |
| 145 | } |
| 146 | |
| 147 | return MadeChange; |
| 148 | } |
| 149 | |
| 150 | |
| 151 | // SimplifyFunction - Given information about callees, simplify the specified |
| 152 | // function if we have invokes to non-unwinding functions or code after calls to |
| 153 | // no-return functions. |
| 154 | bool PruneEH::SimplifyFunction(Function *F) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 155 | bool MadeChange = false; |
| 156 | for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) { |
Nick Lewycky | 62bf14d | 2008-03-09 04:55:16 +0000 | [diff] [blame] | 157 | bool couldUnwind = false; |
| 158 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 159 | if (InvokeInst *II = dyn_cast<InvokeInst>(BB->getTerminator())) |
Duncan Sands | 7dc19d4 | 2007-12-18 09:59:50 +0000 | [diff] [blame] | 160 | if (II->doesNotThrow()) { |
Duncan Sands | 7f511cf | 2007-12-10 19:09:40 +0000 | [diff] [blame] | 161 | SmallVector<Value*, 8> Args(II->op_begin()+3, II->op_end()); |
| 162 | // Insert a call instruction before the invoke. |
| 163 | CallInst *Call = new CallInst(II->getCalledValue(), |
| 164 | Args.begin(), Args.end(), "", II); |
| 165 | Call->takeName(II); |
| 166 | Call->setCallingConv(II->getCallingConv()); |
| 167 | Call->setParamAttrs(II->getParamAttrs()); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 168 | |
Duncan Sands | 7f511cf | 2007-12-10 19:09:40 +0000 | [diff] [blame] | 169 | // Anything that used the value produced by the invoke instruction |
| 170 | // now uses the value produced by the call instruction. |
| 171 | II->replaceAllUsesWith(Call); |
| 172 | BasicBlock *UnwindBlock = II->getUnwindDest(); |
| 173 | UnwindBlock->removePredecessor(II->getParent()); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 174 | |
Duncan Sands | 7f511cf | 2007-12-10 19:09:40 +0000 | [diff] [blame] | 175 | // Insert a branch to the normal destination right before the |
| 176 | // invoke. |
| 177 | new BranchInst(II->getNormalDest(), II); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 178 | |
Duncan Sands | 7f511cf | 2007-12-10 19:09:40 +0000 | [diff] [blame] | 179 | // Finally, delete the invoke instruction! |
| 180 | BB->getInstList().pop_back(); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 181 | |
Duncan Sands | 7f511cf | 2007-12-10 19:09:40 +0000 | [diff] [blame] | 182 | // If the unwind block is now dead, nuke it. |
| 183 | if (pred_begin(UnwindBlock) == pred_end(UnwindBlock)) |
| 184 | DeleteBasicBlock(UnwindBlock); // Delete the new BB. |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 185 | |
Duncan Sands | 7f511cf | 2007-12-10 19:09:40 +0000 | [diff] [blame] | 186 | ++NumRemoved; |
| 187 | MadeChange = true; |
Nick Lewycky | 9b149b3 | 2008-03-09 17:11:18 +0000 | [diff] [blame] | 188 | } else { |
Nick Lewycky | 62bf14d | 2008-03-09 04:55:16 +0000 | [diff] [blame] | 189 | couldUnwind = true; |
Nick Lewycky | 9b149b3 | 2008-03-09 17:11:18 +0000 | [diff] [blame] | 190 | } |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 191 | |
| 192 | for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ) |
Nick Lewycky | 62bf14d | 2008-03-09 04:55:16 +0000 | [diff] [blame] | 193 | if (CallInst *CI = dyn_cast<CallInst>(I++)) { |
Duncan Sands | 7dc19d4 | 2007-12-18 09:59:50 +0000 | [diff] [blame] | 194 | if (CI->doesNotReturn() && !isa<UnreachableInst>(I)) { |
Duncan Sands | 7f511cf | 2007-12-10 19:09:40 +0000 | [diff] [blame] | 195 | // This call calls a function that cannot return. Insert an |
| 196 | // unreachable instruction after it and simplify the code. Do this |
| 197 | // by splitting the BB, adding the unreachable, then deleting the |
| 198 | // new BB. |
| 199 | BasicBlock *New = BB->splitBasicBlock(I); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 200 | |
Duncan Sands | 7f511cf | 2007-12-10 19:09:40 +0000 | [diff] [blame] | 201 | // Remove the uncond branch and add an unreachable. |
| 202 | BB->getInstList().pop_back(); |
| 203 | new UnreachableInst(BB); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 204 | |
Duncan Sands | 7f511cf | 2007-12-10 19:09:40 +0000 | [diff] [blame] | 205 | DeleteBasicBlock(New); // Delete the new BB. |
| 206 | MadeChange = true; |
| 207 | ++NumUnreach; |
| 208 | break; |
Nick Lewycky | ed87023 | 2008-03-09 17:13:05 +0000 | [diff] [blame^] | 209 | } else if (!CI->doesNotThrow()) { |
Nick Lewycky | 62bf14d | 2008-03-09 04:55:16 +0000 | [diff] [blame] | 210 | couldUnwind = true; |
Nick Lewycky | ed87023 | 2008-03-09 17:13:05 +0000 | [diff] [blame^] | 211 | } |
Nick Lewycky | 62bf14d | 2008-03-09 04:55:16 +0000 | [diff] [blame] | 212 | } |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 213 | |
Nick Lewycky | 62bf14d | 2008-03-09 04:55:16 +0000 | [diff] [blame] | 214 | // Strip 'unwindTo' off of BBs that have no calls/invokes without nounwind. |
| 215 | if (!couldUnwind && BB->getUnwindDest()) { |
| 216 | MadeChange = true; |
| 217 | ++NumBBUnwind; |
| 218 | BB->getUnwindDest()->removePredecessor(BB, false, true); |
| 219 | BB->setUnwindDest(NULL); |
| 220 | } |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 221 | } |
| 222 | return MadeChange; |
| 223 | } |
| 224 | |
| 225 | /// DeleteBasicBlock - remove the specified basic block from the program, |
| 226 | /// updating the callgraph to reflect any now-obsolete edges due to calls that |
| 227 | /// exist in the BB. |
| 228 | void PruneEH::DeleteBasicBlock(BasicBlock *BB) { |
| 229 | assert(pred_begin(BB) == pred_end(BB) && "BB is not dead!"); |
| 230 | CallGraph &CG = getAnalysis<CallGraph>(); |
| 231 | |
| 232 | CallGraphNode *CGN = CG[BB->getParent()]; |
| 233 | for (BasicBlock::iterator I = BB->end(), E = BB->begin(); I != E; ) { |
| 234 | --I; |
| 235 | if (CallInst *CI = dyn_cast<CallInst>(I)) { |
| 236 | if (Function *Callee = CI->getCalledFunction()) |
| 237 | CGN->removeCallEdgeTo(CG[Callee]); |
| 238 | } else if (InvokeInst *II = dyn_cast<InvokeInst>(I)) { |
| 239 | if (Function *Callee = II->getCalledFunction()) |
| 240 | CGN->removeCallEdgeTo(CG[Callee]); |
| 241 | } |
| 242 | if (!I->use_empty()) |
| 243 | I->replaceAllUsesWith(UndefValue::get(I->getType())); |
| 244 | } |
| 245 | |
| 246 | // Get the list of successors of this block. |
| 247 | std::vector<BasicBlock*> Succs(succ_begin(BB), succ_end(BB)); |
| 248 | |
| 249 | for (unsigned i = 0, e = Succs.size(); i != e; ++i) |
| 250 | Succs[i]->removePredecessor(BB); |
| 251 | |
| 252 | BB->eraseFromParent(); |
| 253 | } |