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" |
| 28 | #include <set> |
| 29 | #include <algorithm> |
| 30 | using namespace llvm; |
| 31 | |
| 32 | STATISTIC(NumRemoved, "Number of invokes removed"); |
| 33 | STATISTIC(NumUnreach, "Number of noreturn calls optimized"); |
| 34 | |
| 35 | namespace { |
| 36 | struct VISIBILITY_HIDDEN PruneEH : public CallGraphSCCPass { |
| 37 | static char ID; // Pass identification, replacement for typeid |
Dan Gohman | 26f8c27 | 2008-09-04 17:05:41 +0000 | [diff] [blame] | 38 | PruneEH() : CallGraphSCCPass(&ID) {} |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 39 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 40 | // runOnSCC - Analyze the SCC, performing the transformation if possible. |
| 41 | bool runOnSCC(const std::vector<CallGraphNode *> &SCC); |
| 42 | |
| 43 | bool SimplifyFunction(Function *F); |
| 44 | void DeleteBasicBlock(BasicBlock *BB); |
| 45 | }; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 46 | } |
| 47 | |
Dan Gohman | 089efff | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 48 | char PruneEH::ID = 0; |
| 49 | static RegisterPass<PruneEH> |
| 50 | X("prune-eh", "Remove unused exception handling info"); |
| 51 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 52 | Pass *llvm::createPruneEHPass() { return new PruneEH(); } |
| 53 | |
| 54 | |
| 55 | bool PruneEH::runOnSCC(const std::vector<CallGraphNode *> &SCC) { |
| 56 | CallGraph &CG = getAnalysis<CallGraph>(); |
| 57 | bool MadeChange = false; |
| 58 | |
| 59 | // First pass, scan all of the functions in the SCC, simplifying them |
| 60 | // according to what we know. |
| 61 | for (unsigned i = 0, e = SCC.size(); i != e; ++i) |
| 62 | if (Function *F = SCC[i]->getFunction()) |
| 63 | MadeChange |= SimplifyFunction(F); |
| 64 | |
| 65 | // Next, check to see if any callees might throw or if there are any external |
| 66 | // functions in this SCC: if so, we cannot prune any functions in this SCC. |
Dale Johannesen | 64a946c | 2008-05-16 21:31:48 +0000 | [diff] [blame] | 67 | // Definitions that are weak and not declared non-throwing might be |
| 68 | // overridden at linktime with something that throws, so assume that. |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 69 | // If this SCC includes the unwind instruction, we KNOW it throws, so |
| 70 | // obviously the SCC might throw. |
| 71 | // |
| 72 | bool SCCMightUnwind = false, SCCMightReturn = false; |
| 73 | for (unsigned i = 0, e = SCC.size(); |
| 74 | (!SCCMightUnwind || !SCCMightReturn) && i != e; ++i) { |
| 75 | Function *F = SCC[i]->getFunction(); |
Dale Johannesen | d623191 | 2008-05-16 23:18:52 +0000 | [diff] [blame] | 76 | if (F == 0) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 77 | SCCMightUnwind = true; |
| 78 | SCCMightReturn = true; |
Dale Johannesen | d623191 | 2008-05-16 23:18:52 +0000 | [diff] [blame] | 79 | } else if (F->isDeclaration() || F->hasWeakLinkage()) { |
Duncan Sands | 7dc19d4 | 2007-12-18 09:59:50 +0000 | [diff] [blame] | 80 | SCCMightUnwind |= !F->doesNotThrow(); |
| 81 | SCCMightReturn |= !F->doesNotReturn(); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 82 | } else { |
Duncan Sands | 7dc19d4 | 2007-12-18 09:59:50 +0000 | [diff] [blame] | 83 | bool CheckUnwind = !SCCMightUnwind && !F->doesNotThrow(); |
| 84 | bool CheckReturn = !SCCMightReturn && !F->doesNotReturn(); |
Duncan Sands | 7f511cf | 2007-12-10 19:09:40 +0000 | [diff] [blame] | 85 | |
| 86 | if (!CheckUnwind && !CheckReturn) |
| 87 | continue; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 88 | |
| 89 | // Check to see if this function performs an unwind or calls an |
| 90 | // unwinding function. |
| 91 | for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) { |
Duncan Sands | 7f511cf | 2007-12-10 19:09:40 +0000 | [diff] [blame] | 92 | if (CheckUnwind && isa<UnwindInst>(BB->getTerminator())) { |
| 93 | // Uses unwind! |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 94 | SCCMightUnwind = true; |
Duncan Sands | 7f511cf | 2007-12-10 19:09:40 +0000 | [diff] [blame] | 95 | } else if (CheckReturn && isa<ReturnInst>(BB->getTerminator())) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 96 | SCCMightReturn = true; |
| 97 | } |
| 98 | |
| 99 | // Invoke instructions don't allow unwinding to continue, so we are |
| 100 | // only interested in call instructions. |
Duncan Sands | 7f511cf | 2007-12-10 19:09:40 +0000 | [diff] [blame] | 101 | if (CheckUnwind && !SCCMightUnwind) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 102 | for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) |
| 103 | if (CallInst *CI = dyn_cast<CallInst>(I)) { |
Duncan Sands | 7dc19d4 | 2007-12-18 09:59:50 +0000 | [diff] [blame] | 104 | if (CI->doesNotThrow()) { |
Duncan Sands | 7f511cf | 2007-12-10 19:09:40 +0000 | [diff] [blame] | 105 | // This call cannot throw. |
| 106 | } else if (Function *Callee = CI->getCalledFunction()) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 107 | CallGraphNode *CalleeNode = CG[Callee]; |
Duncan Sands | 7f511cf | 2007-12-10 19:09:40 +0000 | [diff] [blame] | 108 | // If the callee is outside our current SCC then we may |
| 109 | // throw because it might. |
| 110 | if (std::find(SCC.begin(), SCC.end(), CalleeNode) == SCC.end()){ |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 111 | SCCMightUnwind = true; |
| 112 | break; |
| 113 | } |
| 114 | } else { |
| 115 | // Indirect call, it might throw. |
| 116 | SCCMightUnwind = true; |
| 117 | break; |
| 118 | } |
| 119 | } |
| 120 | if (SCCMightUnwind && SCCMightReturn) break; |
| 121 | } |
| 122 | } |
| 123 | } |
| 124 | |
| 125 | // 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] | 126 | if (!SCCMightUnwind || !SCCMightReturn) |
| 127 | for (unsigned i = 0, e = SCC.size(); i != e; ++i) { |
Dale Johannesen | f4666f5 | 2008-02-19 21:38:47 +0000 | [diff] [blame] | 128 | ParameterAttributes NewAttributes = ParamAttr::None; |
Duncan Sands | 7f511cf | 2007-12-10 19:09:40 +0000 | [diff] [blame] | 129 | |
| 130 | if (!SCCMightUnwind) |
Duncan Sands | 2937e35 | 2007-12-19 21:13:37 +0000 | [diff] [blame] | 131 | NewAttributes |= ParamAttr::NoUnwind; |
Duncan Sands | 7f511cf | 2007-12-10 19:09:40 +0000 | [diff] [blame] | 132 | if (!SCCMightReturn) |
Duncan Sands | 2937e35 | 2007-12-19 21:13:37 +0000 | [diff] [blame] | 133 | NewAttributes |= ParamAttr::NoReturn; |
Duncan Sands | 7f511cf | 2007-12-10 19:09:40 +0000 | [diff] [blame] | 134 | |
Chris Lattner | 1c8733e | 2008-03-12 17:45:29 +0000 | [diff] [blame] | 135 | const PAListPtr &PAL = SCC[i]->getFunction()->getParamAttrs(); |
Duncan Sands | c1a6bc5 | 2008-09-05 09:08:37 +0000 | [diff] [blame] | 136 | const PAListPtr &NPAL = PAL.addAttr(0, NewAttributes); |
| 137 | if (PAL != NPAL) { |
| 138 | MadeChange = true; |
| 139 | SCC[i]->getFunction()->setParamAttrs(NPAL); |
| 140 | } |
Duncan Sands | 7f511cf | 2007-12-10 19:09:40 +0000 | [diff] [blame] | 141 | } |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 142 | |
| 143 | for (unsigned i = 0, e = SCC.size(); i != e; ++i) { |
| 144 | // Convert any invoke instructions to non-throwing functions in this node |
| 145 | // into call instructions with a branch. This makes the exception blocks |
| 146 | // dead. |
| 147 | if (Function *F = SCC[i]->getFunction()) |
| 148 | MadeChange |= SimplifyFunction(F); |
| 149 | } |
| 150 | |
| 151 | return MadeChange; |
| 152 | } |
| 153 | |
| 154 | |
| 155 | // SimplifyFunction - Given information about callees, simplify the specified |
| 156 | // function if we have invokes to non-unwinding functions or code after calls to |
| 157 | // no-return functions. |
| 158 | bool PruneEH::SimplifyFunction(Function *F) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 159 | bool MadeChange = false; |
| 160 | for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) { |
| 161 | if (InvokeInst *II = dyn_cast<InvokeInst>(BB->getTerminator())) |
Duncan Sands | 7dc19d4 | 2007-12-18 09:59:50 +0000 | [diff] [blame] | 162 | if (II->doesNotThrow()) { |
Duncan Sands | 7f511cf | 2007-12-10 19:09:40 +0000 | [diff] [blame] | 163 | SmallVector<Value*, 8> Args(II->op_begin()+3, II->op_end()); |
| 164 | // Insert a call instruction before the invoke. |
Gabor Greif | d6da1d0 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 165 | CallInst *Call = CallInst::Create(II->getCalledValue(), |
| 166 | Args.begin(), Args.end(), "", II); |
Duncan Sands | 7f511cf | 2007-12-10 19:09:40 +0000 | [diff] [blame] | 167 | Call->takeName(II); |
| 168 | Call->setCallingConv(II->getCallingConv()); |
| 169 | Call->setParamAttrs(II->getParamAttrs()); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 170 | |
Duncan Sands | 7f511cf | 2007-12-10 19:09:40 +0000 | [diff] [blame] | 171 | // Anything that used the value produced by the invoke instruction |
| 172 | // now uses the value produced by the call instruction. |
| 173 | II->replaceAllUsesWith(Call); |
| 174 | BasicBlock *UnwindBlock = II->getUnwindDest(); |
| 175 | UnwindBlock->removePredecessor(II->getParent()); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 176 | |
Duncan Sands | 7f511cf | 2007-12-10 19:09:40 +0000 | [diff] [blame] | 177 | // Insert a branch to the normal destination right before the |
| 178 | // invoke. |
Gabor Greif | d6da1d0 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 179 | BranchInst::Create(II->getNormalDest(), II); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 180 | |
Duncan Sands | 7f511cf | 2007-12-10 19:09:40 +0000 | [diff] [blame] | 181 | // Finally, delete the invoke instruction! |
| 182 | BB->getInstList().pop_back(); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 183 | |
Duncan Sands | 7f511cf | 2007-12-10 19:09:40 +0000 | [diff] [blame] | 184 | // If the unwind block is now dead, nuke it. |
| 185 | if (pred_begin(UnwindBlock) == pred_end(UnwindBlock)) |
| 186 | DeleteBasicBlock(UnwindBlock); // Delete the new BB. |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 187 | |
Duncan Sands | 7f511cf | 2007-12-10 19:09:40 +0000 | [diff] [blame] | 188 | ++NumRemoved; |
| 189 | MadeChange = 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 | d8aa33a | 2008-04-25 16:53:59 +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 | } |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 210 | } |
Nick Lewycky | d8aa33a | 2008-04-25 16:53:59 +0000 | [diff] [blame] | 211 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 212 | return MadeChange; |
| 213 | } |
| 214 | |
| 215 | /// DeleteBasicBlock - remove the specified basic block from the program, |
| 216 | /// updating the callgraph to reflect any now-obsolete edges due to calls that |
| 217 | /// exist in the BB. |
| 218 | void PruneEH::DeleteBasicBlock(BasicBlock *BB) { |
| 219 | assert(pred_begin(BB) == pred_end(BB) && "BB is not dead!"); |
| 220 | CallGraph &CG = getAnalysis<CallGraph>(); |
| 221 | |
| 222 | CallGraphNode *CGN = CG[BB->getParent()]; |
| 223 | for (BasicBlock::iterator I = BB->end(), E = BB->begin(); I != E; ) { |
| 224 | --I; |
Owen Anderson | 134f6e5 | 2008-09-05 23:36:01 +0000 | [diff] [blame] | 225 | if (CallInst *CI = dyn_cast<CallInst>(I)) { |
| 226 | if (Function *Callee = CI->getCalledFunction()) |
| 227 | CGN->removeCallEdgeTo(CG[Callee]); |
| 228 | } else if (InvokeInst *II = dyn_cast<InvokeInst>(I)) { |
| 229 | if (Function *Callee = II->getCalledFunction()) |
| 230 | CGN->removeCallEdgeTo(CG[Callee]); |
| 231 | } |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 232 | if (!I->use_empty()) |
| 233 | I->replaceAllUsesWith(UndefValue::get(I->getType())); |
| 234 | } |
| 235 | |
| 236 | // Get the list of successors of this block. |
| 237 | std::vector<BasicBlock*> Succs(succ_begin(BB), succ_end(BB)); |
| 238 | |
| 239 | for (unsigned i = 0, e = Succs.size(); i != e; ++i) |
| 240 | Succs[i]->removePredecessor(BB); |
| 241 | |
| 242 | BB->eraseFromParent(); |
| 243 | } |