blob: 8fb904b1ea51257ab1b9c834fac63683ac9d414e [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===- PruneEH.cpp - Pass which deletes unused exception handlers ---------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
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 Sands7f511cf2007-12-10 19:09:40 +000012// 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 Gohmanf17a25c2007-07-18 16:29:46 +000014//
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 Gohmanf17a25c2007-07-18 16:29:46 +000022#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>
30using namespace llvm;
31
32STATISTIC(NumRemoved, "Number of invokes removed");
33STATISTIC(NumUnreach, "Number of noreturn calls optimized");
34
35namespace {
36 struct VISIBILITY_HIDDEN PruneEH : public CallGraphSCCPass {
37 static char ID; // Pass identification, replacement for typeid
Dan Gohman26f8c272008-09-04 17:05:41 +000038 PruneEH() : CallGraphSCCPass(&ID) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +000039
Dan Gohmanf17a25c2007-07-18 16:29:46 +000040 // 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 Gohmanf17a25c2007-07-18 16:29:46 +000046}
47
Dan Gohman089efff2008-05-13 00:00:25 +000048char PruneEH::ID = 0;
49static RegisterPass<PruneEH>
50X("prune-eh", "Remove unused exception handling info");
51
Dan Gohmanf17a25c2007-07-18 16:29:46 +000052Pass *llvm::createPruneEHPass() { return new PruneEH(); }
53
54
55bool 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 Johannesen64a946c2008-05-16 21:31:48 +000067 // Definitions that are weak and not declared non-throwing might be
68 // overridden at linktime with something that throws, so assume that.
Dan Gohmanf17a25c2007-07-18 16:29:46 +000069 // 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 Johannesend6231912008-05-16 23:18:52 +000076 if (F == 0) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000077 SCCMightUnwind = true;
78 SCCMightReturn = true;
Dale Johannesend6231912008-05-16 23:18:52 +000079 } else if (F->isDeclaration() || F->hasWeakLinkage()) {
Duncan Sands7dc19d42007-12-18 09:59:50 +000080 SCCMightUnwind |= !F->doesNotThrow();
81 SCCMightReturn |= !F->doesNotReturn();
Dan Gohmanf17a25c2007-07-18 16:29:46 +000082 } else {
Duncan Sands7dc19d42007-12-18 09:59:50 +000083 bool CheckUnwind = !SCCMightUnwind && !F->doesNotThrow();
84 bool CheckReturn = !SCCMightReturn && !F->doesNotReturn();
Duncan Sands7f511cf2007-12-10 19:09:40 +000085
86 if (!CheckUnwind && !CheckReturn)
87 continue;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000088
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 Sands7f511cf2007-12-10 19:09:40 +000092 if (CheckUnwind && isa<UnwindInst>(BB->getTerminator())) {
93 // Uses unwind!
Dan Gohmanf17a25c2007-07-18 16:29:46 +000094 SCCMightUnwind = true;
Duncan Sands7f511cf2007-12-10 19:09:40 +000095 } else if (CheckReturn && isa<ReturnInst>(BB->getTerminator())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000096 SCCMightReturn = true;
97 }
98
99 // Invoke instructions don't allow unwinding to continue, so we are
100 // only interested in call instructions.
Duncan Sands7f511cf2007-12-10 19:09:40 +0000101 if (CheckUnwind && !SCCMightUnwind)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000102 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
103 if (CallInst *CI = dyn_cast<CallInst>(I)) {
Duncan Sands7dc19d42007-12-18 09:59:50 +0000104 if (CI->doesNotThrow()) {
Duncan Sands7f511cf2007-12-10 19:09:40 +0000105 // This call cannot throw.
106 } else if (Function *Callee = CI->getCalledFunction()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000107 CallGraphNode *CalleeNode = CG[Callee];
Duncan Sands7f511cf2007-12-10 19:09:40 +0000108 // 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 Gohmanf17a25c2007-07-18 16:29:46 +0000111 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 Sands7f511cf2007-12-10 19:09:40 +0000126 if (!SCCMightUnwind || !SCCMightReturn)
127 for (unsigned i = 0, e = SCC.size(); i != e; ++i) {
Dale Johannesenf4666f52008-02-19 21:38:47 +0000128 ParameterAttributes NewAttributes = ParamAttr::None;
Duncan Sands7f511cf2007-12-10 19:09:40 +0000129
130 if (!SCCMightUnwind)
Duncan Sands2937e352007-12-19 21:13:37 +0000131 NewAttributes |= ParamAttr::NoUnwind;
Duncan Sands7f511cf2007-12-10 19:09:40 +0000132 if (!SCCMightReturn)
Duncan Sands2937e352007-12-19 21:13:37 +0000133 NewAttributes |= ParamAttr::NoReturn;
Duncan Sands7f511cf2007-12-10 19:09:40 +0000134
Chris Lattner1c8733e2008-03-12 17:45:29 +0000135 const PAListPtr &PAL = SCC[i]->getFunction()->getParamAttrs();
Duncan Sandsc1a6bc52008-09-05 09:08:37 +0000136 const PAListPtr &NPAL = PAL.addAttr(0, NewAttributes);
137 if (PAL != NPAL) {
138 MadeChange = true;
139 SCC[i]->getFunction()->setParamAttrs(NPAL);
140 }
Duncan Sands7f511cf2007-12-10 19:09:40 +0000141 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000142
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.
158bool PruneEH::SimplifyFunction(Function *F) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000159 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 Sands7dc19d42007-12-18 09:59:50 +0000162 if (II->doesNotThrow()) {
Duncan Sands7f511cf2007-12-10 19:09:40 +0000163 SmallVector<Value*, 8> Args(II->op_begin()+3, II->op_end());
164 // Insert a call instruction before the invoke.
Gabor Greifd6da1d02008-04-06 20:25:17 +0000165 CallInst *Call = CallInst::Create(II->getCalledValue(),
166 Args.begin(), Args.end(), "", II);
Duncan Sands7f511cf2007-12-10 19:09:40 +0000167 Call->takeName(II);
168 Call->setCallingConv(II->getCallingConv());
169 Call->setParamAttrs(II->getParamAttrs());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000170
Duncan Sands7f511cf2007-12-10 19:09:40 +0000171 // 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 Gohmanf17a25c2007-07-18 16:29:46 +0000176
Duncan Sands7f511cf2007-12-10 19:09:40 +0000177 // Insert a branch to the normal destination right before the
178 // invoke.
Gabor Greifd6da1d02008-04-06 20:25:17 +0000179 BranchInst::Create(II->getNormalDest(), II);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000180
Duncan Sands7f511cf2007-12-10 19:09:40 +0000181 // Finally, delete the invoke instruction!
182 BB->getInstList().pop_back();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000183
Duncan Sands7f511cf2007-12-10 19:09:40 +0000184 // 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 Gohmanf17a25c2007-07-18 16:29:46 +0000187
Duncan Sands7f511cf2007-12-10 19:09:40 +0000188 ++NumRemoved;
189 MadeChange = true;
Nick Lewycky9b149b32008-03-09 17:11:18 +0000190 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000191
192 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; )
Nick Lewyckyd8aa33a2008-04-25 16:53:59 +0000193 if (CallInst *CI = dyn_cast<CallInst>(I++))
Duncan Sands7dc19d42007-12-18 09:59:50 +0000194 if (CI->doesNotReturn() && !isa<UnreachableInst>(I)) {
Duncan Sands7f511cf2007-12-10 19:09:40 +0000195 // 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 Gohmanf17a25c2007-07-18 16:29:46 +0000200
Duncan Sands7f511cf2007-12-10 19:09:40 +0000201 // Remove the uncond branch and add an unreachable.
202 BB->getInstList().pop_back();
203 new UnreachableInst(BB);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000204
Duncan Sands7f511cf2007-12-10 19:09:40 +0000205 DeleteBasicBlock(New); // Delete the new BB.
206 MadeChange = true;
207 ++NumUnreach;
208 break;
Nick Lewyckyed870232008-03-09 17:13:05 +0000209 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000210 }
Nick Lewyckyd8aa33a2008-04-25 16:53:59 +0000211
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000212 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.
218void 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 Anderson134f6e52008-09-05 23:36:01 +0000225 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 Gohmanf17a25c2007-07-18 16:29:46 +0000232 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}