blob: 147818a47e616ff7d45e9952d4a4707415af79c8 [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"
Dale Johannesen98738822008-02-22 22:17:59 +000028#include "llvm/ParamAttrsList.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000029#include <set>
30#include <algorithm>
31using namespace llvm;
32
33STATISTIC(NumRemoved, "Number of invokes removed");
34STATISTIC(NumUnreach, "Number of noreturn calls optimized");
Nick Lewycky3bfbfd82008-03-10 02:20:00 +000035STATISTIC(NumBBUnwind, "Number of unwind dest removed from blocks");
Dan Gohmanf17a25c2007-07-18 16:29:46 +000036
37namespace {
38 struct VISIBILITY_HIDDEN PruneEH : public CallGraphSCCPass {
39 static char ID; // Pass identification, replacement for typeid
40 PruneEH() : CallGraphSCCPass((intptr_t)&ID) {}
41
Dan Gohmanf17a25c2007-07-18 16:29:46 +000042 // 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
53Pass *llvm::createPruneEHPass() { return new PruneEH(); }
54
55
56bool 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 Sands7f511cf2007-12-10 19:09:40 +000075 if (F == 0) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000076 SCCMightUnwind = true;
77 SCCMightReturn = true;
Duncan Sands7f511cf2007-12-10 19:09:40 +000078 } else if (F->isDeclaration()) {
Duncan Sands7dc19d42007-12-18 09:59:50 +000079 SCCMightUnwind |= !F->doesNotThrow();
80 SCCMightReturn |= !F->doesNotReturn();
Dan Gohmanf17a25c2007-07-18 16:29:46 +000081 } else {
Duncan Sands7dc19d42007-12-18 09:59:50 +000082 bool CheckUnwind = !SCCMightUnwind && !F->doesNotThrow();
83 bool CheckReturn = !SCCMightReturn && !F->doesNotReturn();
Duncan Sands7f511cf2007-12-10 19:09:40 +000084
85 if (!CheckUnwind && !CheckReturn)
86 continue;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000087
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 Sands7f511cf2007-12-10 19:09:40 +000091 if (CheckUnwind && isa<UnwindInst>(BB->getTerminator())) {
92 // Uses unwind!
Dan Gohmanf17a25c2007-07-18 16:29:46 +000093 SCCMightUnwind = true;
Duncan Sands7f511cf2007-12-10 19:09:40 +000094 } else if (CheckReturn && isa<ReturnInst>(BB->getTerminator())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000095 SCCMightReturn = true;
96 }
97
98 // Invoke instructions don't allow unwinding to continue, so we are
99 // only interested in call instructions.
Duncan Sands7f511cf2007-12-10 19:09:40 +0000100 if (CheckUnwind && !SCCMightUnwind)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000101 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
102 if (CallInst *CI = dyn_cast<CallInst>(I)) {
Duncan Sands7dc19d42007-12-18 09:59:50 +0000103 if (CI->doesNotThrow()) {
Duncan Sands7f511cf2007-12-10 19:09:40 +0000104 // This call cannot throw.
105 } else if (Function *Callee = CI->getCalledFunction()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000106 CallGraphNode *CalleeNode = CG[Callee];
Duncan Sands7f511cf2007-12-10 19:09:40 +0000107 // 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 Gohmanf17a25c2007-07-18 16:29:46 +0000110 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 Sands7f511cf2007-12-10 19:09:40 +0000125 if (!SCCMightUnwind || !SCCMightReturn)
126 for (unsigned i = 0, e = SCC.size(); i != e; ++i) {
Dale Johannesenf4666f52008-02-19 21:38:47 +0000127 ParameterAttributes NewAttributes = ParamAttr::None;
Duncan Sands7f511cf2007-12-10 19:09:40 +0000128
129 if (!SCCMightUnwind)
Duncan Sands2937e352007-12-19 21:13:37 +0000130 NewAttributes |= ParamAttr::NoUnwind;
Duncan Sands7f511cf2007-12-10 19:09:40 +0000131 if (!SCCMightReturn)
Duncan Sands2937e352007-12-19 21:13:37 +0000132 NewAttributes |= ParamAttr::NoReturn;
Duncan Sands7f511cf2007-12-10 19:09:40 +0000133
Duncan Sands2937e352007-12-19 21:13:37 +0000134 const ParamAttrsList *PAL = SCC[i]->getFunction()->getParamAttrs();
135 PAL = ParamAttrsList::includeAttrs(PAL, 0, NewAttributes);
Duncan Sands7f511cf2007-12-10 19:09:40 +0000136 SCC[i]->getFunction()->setParamAttrs(PAL);
137 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000138
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.
154bool PruneEH::SimplifyFunction(Function *F) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000155 bool MadeChange = false;
156 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) {
Nick Lewycky62bf14d2008-03-09 04:55:16 +0000157 bool couldUnwind = false;
158
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000159 if (InvokeInst *II = dyn_cast<InvokeInst>(BB->getTerminator()))
Duncan Sands7dc19d42007-12-18 09:59:50 +0000160 if (II->doesNotThrow()) {
Duncan Sands7f511cf2007-12-10 19:09:40 +0000161 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 Gohmanf17a25c2007-07-18 16:29:46 +0000168
Duncan Sands7f511cf2007-12-10 19:09:40 +0000169 // 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 Gohmanf17a25c2007-07-18 16:29:46 +0000174
Duncan Sands7f511cf2007-12-10 19:09:40 +0000175 // Insert a branch to the normal destination right before the
176 // invoke.
177 new BranchInst(II->getNormalDest(), II);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000178
Duncan Sands7f511cf2007-12-10 19:09:40 +0000179 // Finally, delete the invoke instruction!
180 BB->getInstList().pop_back();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000181
Duncan Sands7f511cf2007-12-10 19:09:40 +0000182 // 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 Gohmanf17a25c2007-07-18 16:29:46 +0000185
Duncan Sands7f511cf2007-12-10 19:09:40 +0000186 ++NumRemoved;
187 MadeChange = true;
Nick Lewycky9b149b32008-03-09 17:11:18 +0000188 } else {
Nick Lewycky62bf14d2008-03-09 04:55:16 +0000189 couldUnwind = 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 Lewycky62bf14d2008-03-09 04:55:16 +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 } else if (!CI->doesNotThrow()) {
Nick Lewycky62bf14d2008-03-09 04:55:16 +0000210 couldUnwind = true;
Nick Lewyckyed870232008-03-09 17:13:05 +0000211 }
Nick Lewycky62bf14d2008-03-09 04:55:16 +0000212 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000213
Nick Lewycky62bf14d2008-03-09 04:55:16 +0000214 // 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 Gohmanf17a25c2007-07-18 16:29:46 +0000221 }
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.
228void 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}