blob: f7bf24188245370962faaa5a152f05196195297a [file] [log] [blame]
Chris Lattner0a3f8d52003-08-31 02:47:32 +00001//===- PruneEH.cpp - Pass which deletes unused exception handlers ---------===//
Misha Brukmanb1c93172005-04-21 23:48:37 +00002//
John Criswell482202a2003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
Misha Brukmanb1c93172005-04-21 23:48:37 +00007//
John Criswell482202a2003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner0a3f8d52003-08-31 02:47:32 +00009//
10// This file implements a simple interprocedural pass which walks the
11// call-graph, turning invoke instructions into calls, iff the callee cannot
12// throw an exception. It implements this as a bottom-up traversal of the
13// call-graph.
14//
15//===----------------------------------------------------------------------===//
16
Chris Lattnerf52e03c2003-11-21 21:54:22 +000017#include "llvm/Transforms/IPO.h"
Chris Lattner0a3f8d52003-08-31 02:47:32 +000018#include "llvm/CallGraphSCCPass.h"
Chris Lattner93f4e9d2005-04-27 04:52:23 +000019#include "llvm/Constants.h"
Chris Lattner0a3f8d52003-08-31 02:47:32 +000020#include "llvm/Function.h"
21#include "llvm/Intrinsics.h"
Misha Brukman63b38bd2004-07-29 17:30:56 +000022#include "llvm/Instructions.h"
Chris Lattner0a3f8d52003-08-31 02:47:32 +000023#include "llvm/Analysis/CallGraph.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000024#include "llvm/ADT/Statistic.h"
Chris Lattner93f4e9d2005-04-27 04:52:23 +000025#include "llvm/Support/CFG.h"
Chris Lattner0a3f8d52003-08-31 02:47:32 +000026#include <set>
Chris Lattner88a8a322004-10-18 15:43:46 +000027#include <algorithm>
Chris Lattnerf52e03c2003-11-21 21:54:22 +000028using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000029
Chris Lattner0a3f8d52003-08-31 02:47:32 +000030namespace {
31 Statistic<> NumRemoved("prune-eh", "Number of invokes removed");
Chris Lattner93f4e9d2005-04-27 04:52:23 +000032 Statistic<> NumUnreach("prune-eh", "Number of noreturn calls optimized");
Chris Lattner0a3f8d52003-08-31 02:47:32 +000033
34 struct PruneEH : public CallGraphSCCPass {
Chris Lattner7f4f7732005-04-26 23:53:25 +000035 /// DoesNotUnwind - This set contains all of the functions which we have
Chris Lattner93f4e9d2005-04-27 04:52:23 +000036 /// determined cannot unwind.
Chris Lattner7f4f7732005-04-26 23:53:25 +000037 std::set<CallGraphNode*> DoesNotUnwind;
Chris Lattner0a3f8d52003-08-31 02:47:32 +000038
Chris Lattner93f4e9d2005-04-27 04:52:23 +000039 /// DoesNotReturn - This set contains all of the functions which we have
40 /// determined cannot return normally (but might unwind).
41 std::set<CallGraphNode*> DoesNotReturn;
42
Chris Lattner0a3f8d52003-08-31 02:47:32 +000043 // runOnSCC - Analyze the SCC, performing the transformation if possible.
44 bool runOnSCC(const std::vector<CallGraphNode *> &SCC);
Chris Lattner93f4e9d2005-04-27 04:52:23 +000045
46 bool SimplifyFunction(Function *F);
47 void DeleteBasicBlock(BasicBlock *BB);
Chris Lattner0a3f8d52003-08-31 02:47:32 +000048 };
49 RegisterOpt<PruneEH> X("prune-eh", "Remove unused exception handling info");
50}
51
Chris Lattner4f2cf032004-09-20 04:48:05 +000052ModulePass *llvm::createPruneEHPass() { return new PruneEH(); }
Chris Lattner75444c72003-08-31 16:30:07 +000053
Chris Lattner0a3f8d52003-08-31 02:47:32 +000054
55bool PruneEH::runOnSCC(const std::vector<CallGraphNode *> &SCC) {
56 CallGraph &CG = getAnalysis<CallGraph>();
Chris Lattner93f4e9d2005-04-27 04:52:23 +000057 bool MadeChange = false;
Chris Lattner0a3f8d52003-08-31 02:47:32 +000058
Chris Lattner93f4e9d2005-04-27 04:52:23 +000059 // 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
Chris Lattner0a3f8d52003-08-31 02:47:32 +000066 // functions in this SCC: if so, we cannot prune any functions in this SCC.
Chris Lattner04ecefe2003-09-08 19:44:26 +000067 // If this SCC includes the unwind instruction, we KNOW it throws, so
Chris Lattner0a3f8d52003-08-31 02:47:32 +000068 // obviously the SCC might throw.
69 //
Chris Lattner93f4e9d2005-04-27 04:52:23 +000070 bool SCCMightUnwind = false, SCCMightReturn = false;
71 for (unsigned i = 0, e = SCC.size();
72 (!SCCMightUnwind || !SCCMightReturn) && i != e; ++i) {
Chris Lattnerd041dcd2004-04-12 04:06:38 +000073 Function *F = SCC[i]->getFunction();
74 if (F == 0 || (F->isExternal() && !F->getIntrinsicID())) {
Chris Lattner7f4f7732005-04-26 23:53:25 +000075 SCCMightUnwind = true;
Chris Lattner93f4e9d2005-04-27 04:52:23 +000076 SCCMightReturn = true;
Chris Lattnerd041dcd2004-04-12 04:06:38 +000077 } else {
Chris Lattner93f4e9d2005-04-27 04:52:23 +000078 if (F->isExternal())
79 SCCMightReturn = true;
80
Chris Lattnerd041dcd2004-04-12 04:06:38 +000081 // Check to see if this function performs an unwind or calls an
82 // unwinding function.
83 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) {
84 if (isa<UnwindInst>(BB->getTerminator())) { // Uses unwind!
Chris Lattner7f4f7732005-04-26 23:53:25 +000085 SCCMightUnwind = true;
Chris Lattner93f4e9d2005-04-27 04:52:23 +000086 } else if (isa<ReturnInst>(BB->getTerminator())) {
87 SCCMightReturn = true;
Chris Lattnerd041dcd2004-04-12 04:06:38 +000088 }
Chris Lattner56997dd2004-02-08 21:15:59 +000089
Chris Lattnerd041dcd2004-04-12 04:06:38 +000090 // Invoke instructions don't allow unwinding to continue, so we are
91 // only interested in call instructions.
Chris Lattner93f4e9d2005-04-27 04:52:23 +000092 if (!SCCMightUnwind)
93 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I)
94 if (CallInst *CI = dyn_cast<CallInst>(I)) {
95 if (Function *Callee = CI->getCalledFunction()) {
96 CallGraphNode *CalleeNode = CG[Callee];
97 // If the callee is outside our current SCC, or if it is not
98 // known to throw, then we might throw also.
99 if (std::find(SCC.begin(), SCC.end(), CalleeNode) == SCC.end()&&
100 !DoesNotUnwind.count(CalleeNode)) {
101 SCCMightUnwind = true;
102 break;
103 }
104 } else {
105 // Indirect call, it might throw.
Chris Lattner7f4f7732005-04-26 23:53:25 +0000106 SCCMightUnwind = true;
Chris Lattner56997dd2004-02-08 21:15:59 +0000107 break;
108 }
109 }
Chris Lattner93f4e9d2005-04-27 04:52:23 +0000110 if (SCCMightUnwind && SCCMightReturn) break;
Chris Lattner5a6fa292003-09-15 02:22:50 +0000111 }
Chris Lattnerd041dcd2004-04-12 04:06:38 +0000112 }
113 }
Chris Lattner93f4e9d2005-04-27 04:52:23 +0000114
115 // If the SCC doesn't unwind or doesn't throw, note this fact.
116 if (!SCCMightUnwind)
117 for (unsigned i = 0, e = SCC.size(); i != e; ++i)
118 DoesNotUnwind.insert(SCC[i]);
119 if (!SCCMightReturn)
120 for (unsigned i = 0, e = SCC.size(); i != e; ++i)
121 DoesNotReturn.insert(SCC[i]);
Chris Lattner0a3f8d52003-08-31 02:47:32 +0000122
123 for (unsigned i = 0, e = SCC.size(); i != e; ++i) {
Chris Lattner0a3f8d52003-08-31 02:47:32 +0000124 // Convert any invoke instructions to non-throwing functions in this node
125 // into call instructions with a branch. This makes the exception blocks
126 // dead.
127 if (Function *F = SCC[i]->getFunction())
Chris Lattner93f4e9d2005-04-27 04:52:23 +0000128 MadeChange |= SimplifyFunction(F);
Chris Lattner0a3f8d52003-08-31 02:47:32 +0000129 }
130
Misha Brukmanb1c93172005-04-21 23:48:37 +0000131 return MadeChange;
Chris Lattner0a3f8d52003-08-31 02:47:32 +0000132}
Brian Gaeke960707c2003-11-11 22:41:34 +0000133
Chris Lattner93f4e9d2005-04-27 04:52:23 +0000134
135// SimplifyFunction - Given information about callees, simplify the specified
136// function if we have invokes to non-unwinding functions or code after calls to
137// no-return functions.
138bool PruneEH::SimplifyFunction(Function *F) {
139 CallGraph &CG = getAnalysis<CallGraph>();
140 bool MadeChange = false;
141 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) {
142 if (InvokeInst *II = dyn_cast<InvokeInst>(BB->getTerminator()))
143 if (Function *F = II->getCalledFunction())
144 if (DoesNotUnwind.count(CG[F])) {
145 // Insert a call instruction before the invoke...
146 std::string Name = II->getName(); II->setName("");
147 Value *Call = new CallInst(II->getCalledValue(),
148 std::vector<Value*>(II->op_begin()+3,
149 II->op_end()),
150 Name, II);
151
152 // Anything that used the value produced by the invoke instruction
153 // now uses the value produced by the call instruction.
154 II->replaceAllUsesWith(Call);
155 BasicBlock *UnwindBlock = II->getUnwindDest();
156 UnwindBlock->removePredecessor(II->getParent());
157
158 // Insert a branch to the normal destination right before the
159 // invoke.
160 new BranchInst(II->getNormalDest(), II);
161
162 // Finally, delete the invoke instruction!
163 BB->getInstList().pop_back();
164
165 // If the unwind block is now dead, nuke it.
166 if (pred_begin(UnwindBlock) == pred_end(UnwindBlock))
167 DeleteBasicBlock(UnwindBlock); // Delete the new BB.
168
169 ++NumRemoved;
170 MadeChange = true;
171 }
172
Chris Lattner36ffb1f2005-04-27 20:12:17 +0000173 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; )
Chris Lattner93f4e9d2005-04-27 04:52:23 +0000174 if (CallInst *CI = dyn_cast<CallInst>(I++))
175 if (Function *Callee = CI->getCalledFunction())
176 if (DoesNotReturn.count(CG[Callee]) && !isa<UnreachableInst>(I)) {
177 // This call calls a function that cannot return. Insert an
178 // unreachable instruction after it and simplify the code. Do this
179 // by splitting the BB, adding the unreachable, then deleting the
180 // new BB.
181 BasicBlock *New = BB->splitBasicBlock(I);
182
183 // Remove the uncond branch and add an unreachable.
184 BB->getInstList().pop_back();
185 new UnreachableInst(BB);
186
187 DeleteBasicBlock(New); // Delete the new BB.
188 MadeChange = true;
189 ++NumUnreach;
190 break;
191 }
192
193 }
194 return MadeChange;
195}
196
197/// DeleteBasicBlock - remove the specified basic block from the program,
198/// updating the callgraph to reflect any now-obsolete edges due to calls that
199/// exist in the BB.
200void PruneEH::DeleteBasicBlock(BasicBlock *BB) {
201 assert(pred_begin(BB) == pred_end(BB) && "BB is not dead!");
202 CallGraph &CG = getAnalysis<CallGraph>();
203
204 CallGraphNode *CGN = CG[BB->getParent()];
205 for (BasicBlock::iterator I = BB->end(), E = BB->begin(); I != E; ) {
206 --I;
207 if (CallInst *CI = dyn_cast<CallInst>(I)) {
208 if (Function *Callee = CI->getCalledFunction())
209 CGN->removeCallEdgeTo(CG[Callee]);
210 } else if (InvokeInst *II = dyn_cast<InvokeInst>(I)) {
211 if (Function *Callee = II->getCalledFunction())
212 CGN->removeCallEdgeTo(CG[Callee]);
213 }
214 if (!I->use_empty())
215 I->replaceAllUsesWith(UndefValue::get(I->getType()));
216 }
217
218 // Get the list of successors of this block.
219 std::vector<BasicBlock*> Succs(succ_begin(BB), succ_end(BB));
220
221 for (unsigned i = 0, e = Succs.size(); i != e; ++i)
222 Succs[i]->removePredecessor(BB);
223
224 BB->eraseFromParent();
225}