blob: 2dbc5c3169ab602cdf1ba589d9a6926ed9151bcc [file] [log] [blame]
Chris Lattner13bf28c2003-06-17 22:21:05 +00001//===-- DeadArgumentElimination.cpp - Eliminate dead arguments ------------===//
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 Lattner13bf28c2003-06-17 22:21:05 +00009//
10// This pass deletes dead arguments from internal functions. Dead argument
11// elimination removes arguments which are directly dead, as well as arguments
Chris Lattner0658cc22003-10-23 03:48:17 +000012// only passed into function calls as dead arguments of other functions. This
13// pass also deletes dead arguments in a similar way.
Chris Lattner13bf28c2003-06-17 22:21:05 +000014//
15// This pass is often useful as a cleanup pass to run after aggressive
16// interprocedural passes, which add possibly-dead arguments.
17//
18//===----------------------------------------------------------------------===//
19
20#include "llvm/Transforms/IPO.h"
21#include "llvm/Module.h"
22#include "llvm/Pass.h"
23#include "llvm/DerivedTypes.h"
24#include "llvm/Constant.h"
Misha Brukman63b38bd2004-07-29 17:30:56 +000025#include "llvm/Instructions.h"
Chris Lattner13bf28c2003-06-17 22:21:05 +000026#include "llvm/Support/CallSite.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000027#include "llvm/Support/Debug.h"
28#include "llvm/ADT/Statistic.h"
29#include "llvm/ADT/iterator"
Chris Lattner13bf28c2003-06-17 22:21:05 +000030#include <set>
Chris Lattnerf52e03c2003-11-21 21:54:22 +000031using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000032
Chris Lattner13bf28c2003-06-17 22:21:05 +000033namespace {
Chris Lattner0658cc22003-10-23 03:48:17 +000034 Statistic<> NumArgumentsEliminated("deadargelim",
35 "Number of unread args removed");
36 Statistic<> NumRetValsEliminated("deadargelim",
37 "Number of unused return values removed");
Chris Lattner13bf28c2003-06-17 22:21:05 +000038
Chris Lattner0658cc22003-10-23 03:48:17 +000039 /// DAE - The dead argument elimination pass.
40 ///
Chris Lattner4f2cf032004-09-20 04:48:05 +000041 class DAE : public ModulePass {
Chris Lattner0658cc22003-10-23 03:48:17 +000042 /// Liveness enum - During our initial pass over the program, we determine
43 /// that things are either definately alive, definately dead, or in need of
44 /// interprocedural analysis (MaybeLive).
45 ///
46 enum Liveness { Live, MaybeLive, Dead };
47
48 /// LiveArguments, MaybeLiveArguments, DeadArguments - These sets contain
49 /// all of the arguments in the program. The Dead set contains arguments
50 /// which are completely dead (never used in the function). The MaybeLive
51 /// set contains arguments which are only passed into other function calls,
52 /// thus may be live and may be dead. The Live set contains arguments which
53 /// are known to be alive.
54 ///
55 std::set<Argument*> DeadArguments, MaybeLiveArguments, LiveArguments;
56
57 /// DeadRetVal, MaybeLiveRetVal, LifeRetVal - These sets contain all of the
58 /// functions in the program. The Dead set contains functions whose return
59 /// value is known to be dead. The MaybeLive set contains functions whose
60 /// return values are only used by return instructions, and the Live set
61 /// contains functions whose return values are used, functions that are
62 /// external, and functions that already return void.
63 ///
64 std::set<Function*> DeadRetVal, MaybeLiveRetVal, LiveRetVal;
65
66 /// InstructionsToInspect - As we mark arguments and return values
67 /// MaybeLive, we keep track of which instructions could make the values
68 /// live here. Once the entire program has had the return value and
69 /// arguments analyzed, this set is scanned to promote the MaybeLive objects
70 /// to be Live if they really are used.
71 std::vector<Instruction*> InstructionsToInspect;
72
73 /// CallSites - Keep track of the call sites of functions that have
74 /// MaybeLive arguments or return values.
75 std::multimap<Function*, CallSite> CallSites;
76
77 public:
Chris Lattner4f2cf032004-09-20 04:48:05 +000078 bool runOnModule(Module &M);
Chris Lattner2ab04f72003-06-25 04:12:49 +000079
Chris Lattner9e60ace2003-11-05 21:43:02 +000080 virtual bool ShouldHackArguments() const { return false; }
81
Chris Lattner2ab04f72003-06-25 04:12:49 +000082 private:
Chris Lattner0658cc22003-10-23 03:48:17 +000083 Liveness getArgumentLiveness(const Argument &A);
84 bool isMaybeLiveArgumentNowLive(Argument *Arg);
85
86 void SurveyFunction(Function &Fn);
87
88 void MarkArgumentLive(Argument *Arg);
89 void MarkRetValLive(Function *F);
90 void MarkReturnInstArgumentLive(ReturnInst *RI);
Misha Brukmanb1c93172005-04-21 23:48:37 +000091
Chris Lattner0658cc22003-10-23 03:48:17 +000092 void RemoveDeadArgumentsFromFunction(Function *F);
Chris Lattner13bf28c2003-06-17 22:21:05 +000093 };
94 RegisterOpt<DAE> X("deadargelim", "Dead Argument Elimination");
Chris Lattner9e60ace2003-11-05 21:43:02 +000095
96 /// DAH - DeadArgumentHacking pass - Same as dead argument elimination, but
97 /// deletes arguments to functions which are external. This is only for use
98 /// by bugpoint.
99 struct DAH : public DAE {
100 virtual bool ShouldHackArguments() const { return true; }
101 };
Chris Lattner4e1b4672003-11-05 21:53:41 +0000102 RegisterPass<DAH> Y("deadarghaX0r",
Brian Gaeke6204e752004-02-02 19:32:27 +0000103 "Dead Argument Hacking (BUGPOINT USE ONLY; DO NOT USE)");
Chris Lattner13bf28c2003-06-17 22:21:05 +0000104}
105
Chris Lattner2ab04f72003-06-25 04:12:49 +0000106/// createDeadArgEliminationPass - This pass removes arguments from functions
Chris Lattner9e60ace2003-11-05 21:43:02 +0000107/// which are not used by the body of the function.
Chris Lattner2ab04f72003-06-25 04:12:49 +0000108///
Chris Lattner4f2cf032004-09-20 04:48:05 +0000109ModulePass *llvm::createDeadArgEliminationPass() { return new DAE(); }
110ModulePass *llvm::createDeadArgHackingPass() { return new DAH(); }
Chris Lattner13bf28c2003-06-17 22:21:05 +0000111
Chris Lattner0658cc22003-10-23 03:48:17 +0000112static inline bool CallPassesValueThoughVararg(Instruction *Call,
113 const Value *Arg) {
114 CallSite CS = CallSite::get(Call);
115 const Type *CalledValueTy = CS.getCalledValue()->getType();
116 const Type *FTy = cast<PointerType>(CalledValueTy)->getElementType();
117 unsigned NumFixedArgs = cast<FunctionType>(FTy)->getNumParams();
118 for (CallSite::arg_iterator AI = CS.arg_begin()+NumFixedArgs;
119 AI != CS.arg_end(); ++AI)
120 if (AI->get() == Arg)
121 return true;
Chris Lattner13bf28c2003-06-17 22:21:05 +0000122 return false;
123}
124
Chris Lattner0658cc22003-10-23 03:48:17 +0000125// getArgumentLiveness - Inspect an argument, determining if is known Live
Chris Lattner13bf28c2003-06-17 22:21:05 +0000126// (used in a computation), MaybeLive (only passed as an argument to a call), or
127// Dead (not used).
Chris Lattner0658cc22003-10-23 03:48:17 +0000128DAE::Liveness DAE::getArgumentLiveness(const Argument &A) {
Chris Lattner13bf28c2003-06-17 22:21:05 +0000129 if (A.use_empty()) return Dead; // First check, directly dead?
130
131 // Scan through all of the uses, looking for non-argument passing uses.
132 for (Value::use_const_iterator I = A.use_begin(), E = A.use_end(); I!=E;++I) {
Chris Lattner0658cc22003-10-23 03:48:17 +0000133 // Return instructions do not immediately effect liveness.
134 if (isa<ReturnInst>(*I))
135 continue;
136
Chris Lattner13bf28c2003-06-17 22:21:05 +0000137 CallSite CS = CallSite::get(const_cast<User*>(*I));
138 if (!CS.getInstruction()) {
139 // If its used by something that is not a call or invoke, it's alive!
Chris Lattner0658cc22003-10-23 03:48:17 +0000140 return Live;
Chris Lattner13bf28c2003-06-17 22:21:05 +0000141 }
142 // If it's an indirect call, mark it alive...
143 Function *Callee = CS.getCalledFunction();
Chris Lattner0658cc22003-10-23 03:48:17 +0000144 if (!Callee) return Live;
Chris Lattner13bf28c2003-06-17 22:21:05 +0000145
Chris Lattner5d3c1452003-06-18 16:25:51 +0000146 // Check to see if it's passed through a va_arg area: if so, we cannot
147 // remove it.
Chris Lattner0658cc22003-10-23 03:48:17 +0000148 if (CallPassesValueThoughVararg(CS.getInstruction(), &A))
149 return Live; // If passed through va_arg area, we cannot remove it
Chris Lattner13bf28c2003-06-17 22:21:05 +0000150 }
151
152 return MaybeLive; // It must be used, but only as argument to a function
153}
154
Chris Lattner0658cc22003-10-23 03:48:17 +0000155
156// SurveyFunction - This performs the initial survey of the specified function,
157// checking out whether or not it uses any of its incoming arguments or whether
158// any callers use the return value. This fills in the
159// (Dead|MaybeLive|Live)(Arguments|RetVal) sets.
Chris Lattner13bf28c2003-06-17 22:21:05 +0000160//
Chris Lattner0658cc22003-10-23 03:48:17 +0000161// We consider arguments of non-internal functions to be intrinsically alive as
162// well as arguments to functions which have their "address taken".
163//
164void DAE::SurveyFunction(Function &F) {
165 bool FunctionIntrinsicallyLive = false;
166 Liveness RetValLiveness = F.getReturnType() == Type::VoidTy ? Live : Dead;
167
Chris Lattner4e1b4672003-11-05 21:53:41 +0000168 if (!F.hasInternalLinkage() &&
169 (!ShouldHackArguments() || F.getIntrinsicID()))
Chris Lattner0658cc22003-10-23 03:48:17 +0000170 FunctionIntrinsicallyLive = true;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000171 else
Chris Lattner0658cc22003-10-23 03:48:17 +0000172 for (Value::use_iterator I = F.use_begin(), E = F.use_end(); I != E; ++I) {
173 // If this use is anything other than a call site, the function is alive.
174 CallSite CS = CallSite::get(*I);
175 Instruction *TheCall = CS.getInstruction();
176 if (!TheCall) { // Not a direct call site?
177 FunctionIntrinsicallyLive = true;
178 break;
179 }
180
181 // Check to see if the return value is used...
182 if (RetValLiveness != Live)
183 for (Value::use_iterator I = TheCall->use_begin(),
184 E = TheCall->use_end(); I != E; ++I)
185 if (isa<ReturnInst>(cast<Instruction>(*I))) {
186 RetValLiveness = MaybeLive;
187 } else if (isa<CallInst>(cast<Instruction>(*I)) ||
188 isa<InvokeInst>(cast<Instruction>(*I))) {
189 if (CallPassesValueThoughVararg(cast<Instruction>(*I), TheCall) ||
190 !CallSite::get(cast<Instruction>(*I)).getCalledFunction()) {
191 RetValLiveness = Live;
192 break;
193 } else {
194 RetValLiveness = MaybeLive;
195 }
196 } else {
197 RetValLiveness = Live;
198 break;
199 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000200
Chris Lattner0658cc22003-10-23 03:48:17 +0000201 // If the function is PASSED IN as an argument, its address has been taken
202 for (CallSite::arg_iterator AI = CS.arg_begin(), E = CS.arg_end();
203 AI != E; ++AI)
204 if (AI->get() == &F) {
205 FunctionIntrinsicallyLive = true;
206 break;
207 }
208 if (FunctionIntrinsicallyLive) break;
209 }
210
211 if (FunctionIntrinsicallyLive) {
212 DEBUG(std::cerr << " Intrinsically live fn: " << F.getName() << "\n");
Chris Lattner53db5462005-05-06 05:34:40 +0000213 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
214 AI != E; ++AI)
Chris Lattner0658cc22003-10-23 03:48:17 +0000215 LiveArguments.insert(AI);
216 LiveRetVal.insert(&F);
217 return;
218 }
219
220 switch (RetValLiveness) {
221 case Live: LiveRetVal.insert(&F); break;
222 case MaybeLive: MaybeLiveRetVal.insert(&F); break;
223 case Dead: DeadRetVal.insert(&F); break;
224 }
225
226 DEBUG(std::cerr << " Inspecting args for fn: " << F.getName() << "\n");
227
228 // If it is not intrinsically alive, we know that all users of the
229 // function are call sites. Mark all of the arguments live which are
230 // directly used, and keep track of all of the call sites of this function
231 // if there are any arguments we assume that are dead.
232 //
233 bool AnyMaybeLiveArgs = false;
Chris Lattner53db5462005-05-06 05:34:40 +0000234 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
235 AI != E; ++AI)
Chris Lattner0658cc22003-10-23 03:48:17 +0000236 switch (getArgumentLiveness(*AI)) {
237 case Live:
238 DEBUG(std::cerr << " Arg live by use: " << AI->getName() << "\n");
239 LiveArguments.insert(AI);
240 break;
241 case Dead:
242 DEBUG(std::cerr << " Arg definitely dead: " <<AI->getName()<<"\n");
243 DeadArguments.insert(AI);
244 break;
245 case MaybeLive:
246 DEBUG(std::cerr << " Arg only passed to calls: "
247 << AI->getName() << "\n");
248 AnyMaybeLiveArgs = true;
249 MaybeLiveArguments.insert(AI);
250 break;
251 }
252
253 // If there are any "MaybeLive" arguments, we need to check callees of
254 // this function when/if they become alive. Record which functions are
255 // callees...
256 if (AnyMaybeLiveArgs || RetValLiveness == MaybeLive)
257 for (Value::use_iterator I = F.use_begin(), E = F.use_end();
258 I != E; ++I) {
259 if (AnyMaybeLiveArgs)
260 CallSites.insert(std::make_pair(&F, CallSite::get(*I)));
261
262 if (RetValLiveness == MaybeLive)
263 for (Value::use_iterator UI = I->use_begin(), E = I->use_end();
264 UI != E; ++UI)
265 InstructionsToInspect.push_back(cast<Instruction>(*UI));
266 }
267}
268
269// isMaybeLiveArgumentNowLive - Check to see if Arg is alive. At this point, we
270// know that the only uses of Arg are to be passed in as an argument to a
271// function call or return. Check to see if the formal argument passed in is in
272// the LiveArguments set. If so, return true.
273//
274bool DAE::isMaybeLiveArgumentNowLive(Argument *Arg) {
Chris Lattner13bf28c2003-06-17 22:21:05 +0000275 for (Value::use_iterator I = Arg->use_begin(), E = Arg->use_end(); I!=E; ++I){
Chris Lattner0658cc22003-10-23 03:48:17 +0000276 if (isa<ReturnInst>(*I)) {
277 if (LiveRetVal.count(Arg->getParent())) return true;
278 continue;
279 }
280
Chris Lattner13bf28c2003-06-17 22:21:05 +0000281 CallSite CS = CallSite::get(*I);
282
283 // We know that this can only be used for direct calls...
Chris Lattner7f7285b2003-11-02 02:06:27 +0000284 Function *Callee = CS.getCalledFunction();
Chris Lattner13bf28c2003-06-17 22:21:05 +0000285
286 // Loop over all of the arguments (because Arg may be passed into the call
287 // multiple times) and check to see if any are now alive...
288 CallSite::arg_iterator CSAI = CS.arg_begin();
Chris Lattner531f9e92005-03-15 04:54:21 +0000289 for (Function::arg_iterator AI = Callee->arg_begin(), E = Callee->arg_end();
Chris Lattner13bf28c2003-06-17 22:21:05 +0000290 AI != E; ++AI, ++CSAI)
291 // If this is the argument we are looking for, check to see if it's alive
292 if (*CSAI == Arg && LiveArguments.count(AI))
293 return true;
294 }
295 return false;
296}
297
Chris Lattner0658cc22003-10-23 03:48:17 +0000298/// MarkArgumentLive - The MaybeLive argument 'Arg' is now known to be alive.
299/// Mark it live in the specified sets and recursively mark arguments in callers
300/// live that are needed to pass in a value.
301///
302void DAE::MarkArgumentLive(Argument *Arg) {
303 std::set<Argument*>::iterator It = MaybeLiveArguments.lower_bound(Arg);
304 if (It == MaybeLiveArguments.end() || *It != Arg) return;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000305
Chris Lattner13bf28c2003-06-17 22:21:05 +0000306 DEBUG(std::cerr << " MaybeLive argument now live: " << Arg->getName()<<"\n");
Chris Lattner0658cc22003-10-23 03:48:17 +0000307 MaybeLiveArguments.erase(It);
Chris Lattner13bf28c2003-06-17 22:21:05 +0000308 LiveArguments.insert(Arg);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000309
Chris Lattner13bf28c2003-06-17 22:21:05 +0000310 // Loop over all of the call sites of the function, making any arguments
311 // passed in to provide a value for this argument live as necessary.
312 //
313 Function *Fn = Arg->getParent();
Chris Lattner531f9e92005-03-15 04:54:21 +0000314 unsigned ArgNo = std::distance(Fn->arg_begin(), Function::arg_iterator(Arg));
Chris Lattner13bf28c2003-06-17 22:21:05 +0000315
Chris Lattner0658cc22003-10-23 03:48:17 +0000316 std::multimap<Function*, CallSite>::iterator I = CallSites.lower_bound(Fn);
Chris Lattner13bf28c2003-06-17 22:21:05 +0000317 for (; I != CallSites.end() && I->first == Fn; ++I) {
Chris Lattner0658cc22003-10-23 03:48:17 +0000318 CallSite CS = I->second;
319 Value *ArgVal = *(CS.arg_begin()+ArgNo);
320 if (Argument *ActualArg = dyn_cast<Argument>(ArgVal)) {
321 MarkArgumentLive(ActualArg);
322 } else {
323 // If the value passed in at this call site is a return value computed by
324 // some other call site, make sure to mark the return value at the other
325 // call site as being needed.
326 CallSite ArgCS = CallSite::get(ArgVal);
327 if (ArgCS.getInstruction())
328 if (Function *Fn = ArgCS.getCalledFunction())
329 MarkRetValLive(Fn);
330 }
331 }
332}
333
334/// MarkArgumentLive - The MaybeLive return value for the specified function is
335/// now known to be alive. Propagate this fact to the return instructions which
336/// produce it.
337void DAE::MarkRetValLive(Function *F) {
338 assert(F && "Shame shame, we can't have null pointers here!");
339
340 // Check to see if we already knew it was live
341 std::set<Function*>::iterator I = MaybeLiveRetVal.lower_bound(F);
342 if (I == MaybeLiveRetVal.end() || *I != F) return; // It's already alive!
343
344 DEBUG(std::cerr << " MaybeLive retval now live: " << F->getName() << "\n");
345
346 MaybeLiveRetVal.erase(I);
347 LiveRetVal.insert(F); // It is now known to be live!
348
349 // Loop over all of the functions, noticing that the return value is now live.
350 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
351 if (ReturnInst *RI = dyn_cast<ReturnInst>(BB->getTerminator()))
352 MarkReturnInstArgumentLive(RI);
353}
354
355void DAE::MarkReturnInstArgumentLive(ReturnInst *RI) {
356 Value *Op = RI->getOperand(0);
357 if (Argument *A = dyn_cast<Argument>(Op)) {
358 MarkArgumentLive(A);
359 } else if (CallInst *CI = dyn_cast<CallInst>(Op)) {
360 if (Function *F = CI->getCalledFunction())
361 MarkRetValLive(F);
362 } else if (InvokeInst *II = dyn_cast<InvokeInst>(Op)) {
363 if (Function *F = II->getCalledFunction())
364 MarkRetValLive(F);
Chris Lattner13bf28c2003-06-17 22:21:05 +0000365 }
366}
367
368// RemoveDeadArgumentsFromFunction - We know that F has dead arguments, as
369// specified by the DeadArguments list. Transform the function and all of the
370// callees of the function to not have these arguments.
371//
Chris Lattner0658cc22003-10-23 03:48:17 +0000372void DAE::RemoveDeadArgumentsFromFunction(Function *F) {
Chris Lattner13bf28c2003-06-17 22:21:05 +0000373 // Start by computing a new prototype for the function, which is the same as
374 // the old function, but has fewer arguments.
375 const FunctionType *FTy = F->getFunctionType();
376 std::vector<const Type*> Params;
377
Chris Lattner531f9e92005-03-15 04:54:21 +0000378 for (Function::arg_iterator I = F->arg_begin(), E = F->arg_end(); I != E; ++I)
Chris Lattner13bf28c2003-06-17 22:21:05 +0000379 if (!DeadArguments.count(I))
380 Params.push_back(I->getType());
381
Chris Lattner0658cc22003-10-23 03:48:17 +0000382 const Type *RetTy = FTy->getReturnType();
383 if (DeadRetVal.count(F)) {
384 RetTy = Type::VoidTy;
385 DeadRetVal.erase(F);
386 }
387
Chris Lattner05c71fb2003-10-23 17:44:53 +0000388 // Work around LLVM bug PR56: the CWriter cannot emit varargs functions which
389 // have zero fixed arguments.
390 //
391 // FIXME: once this bug is fixed in the CWriter, this hack should be removed.
392 //
393 bool ExtraArgHack = false;
394 if (Params.empty() && FTy->isVarArg()) {
395 ExtraArgHack = true;
396 Params.push_back(Type::IntTy);
397 }
398
Chris Lattner0658cc22003-10-23 03:48:17 +0000399 FunctionType *NFTy = FunctionType::get(RetTy, Params, FTy->isVarArg());
400
Chris Lattner13bf28c2003-06-17 22:21:05 +0000401 // Create the new function body and insert it into the module...
Chris Lattner2ab04f72003-06-25 04:12:49 +0000402 Function *NF = new Function(NFTy, F->getLinkage(), F->getName());
Chris Lattner13bf28c2003-06-17 22:21:05 +0000403 F->getParent()->getFunctionList().insert(F, NF);
404
405 // Loop over all of the callers of the function, transforming the call sites
406 // to pass in a smaller number of arguments into the new function.
407 //
Chris Lattner0658cc22003-10-23 03:48:17 +0000408 std::vector<Value*> Args;
Chris Lattner13bf28c2003-06-17 22:21:05 +0000409 while (!F->use_empty()) {
410 CallSite CS = CallSite::get(F->use_back());
411 Instruction *Call = CS.getInstruction();
Chris Lattner0658cc22003-10-23 03:48:17 +0000412
Chris Lattner13bf28c2003-06-17 22:21:05 +0000413 // Loop over the operands, deleting dead ones...
414 CallSite::arg_iterator AI = CS.arg_begin();
Chris Lattner53db5462005-05-06 05:34:40 +0000415 for (Function::arg_iterator I = F->arg_begin(), E = F->arg_end();
416 I != E; ++I, ++AI)
Chris Lattner0658cc22003-10-23 03:48:17 +0000417 if (!DeadArguments.count(I)) // Remove operands for dead arguments
418 Args.push_back(*AI);
419
Chris Lattner05c71fb2003-10-23 17:44:53 +0000420 if (ExtraArgHack)
421 Args.push_back(Constant::getNullValue(Type::IntTy));
422
423 // Push any varargs arguments on the list
424 for (; AI != CS.arg_end(); ++AI)
425 Args.push_back(*AI);
426
Chris Lattner0658cc22003-10-23 03:48:17 +0000427 Instruction *New;
428 if (InvokeInst *II = dyn_cast<InvokeInst>(Call)) {
Chris Lattnerfae8ab32004-02-08 21:44:31 +0000429 New = new InvokeInst(NF, II->getNormalDest(), II->getUnwindDest(),
Chris Lattner0658cc22003-10-23 03:48:17 +0000430 Args, "", Call);
431 } else {
432 New = new CallInst(NF, Args, "", Call);
Chris Lattner324d2ee2005-05-06 06:46:58 +0000433 if (cast<CallInst>(Call)->isTailCall())
434 cast<CallInst>(New)->setTailCall();
Chris Lattner0658cc22003-10-23 03:48:17 +0000435 }
436 Args.clear();
437
438 if (!Call->use_empty()) {
439 if (New->getType() == Type::VoidTy)
440 Call->replaceAllUsesWith(Constant::getNullValue(Call->getType()));
441 else {
442 Call->replaceAllUsesWith(New);
443 std::string Name = Call->getName();
444 Call->setName("");
445 New->setName(Name);
Chris Lattner13bf28c2003-06-17 22:21:05 +0000446 }
Chris Lattner0658cc22003-10-23 03:48:17 +0000447 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000448
Chris Lattner0658cc22003-10-23 03:48:17 +0000449 // Finally, remove the old call from the program, reducing the use-count of
450 // F.
451 Call->getParent()->getInstList().erase(Call);
Chris Lattner13bf28c2003-06-17 22:21:05 +0000452 }
453
454 // Since we have now created the new function, splice the body of the old
455 // function right into the new function, leaving the old rotting hulk of the
456 // function empty.
457 NF->getBasicBlockList().splice(NF->begin(), F->getBasicBlockList());
458
459 // Loop over the argument list, transfering uses of the old arguments over to
460 // the new arguments, also transfering over the names as well. While we're at
461 // it, remove the dead arguments from the DeadArguments list.
462 //
Chris Lattner53db5462005-05-06 05:34:40 +0000463 for (Function::arg_iterator I = F->arg_begin(), E = F->arg_end(),
464 I2 = NF->arg_begin();
Chris Lattner13bf28c2003-06-17 22:21:05 +0000465 I != E; ++I)
466 if (!DeadArguments.count(I)) {
467 // If this is a live argument, move the name and users over to the new
468 // version.
469 I->replaceAllUsesWith(I2);
470 I2->setName(I->getName());
471 ++I2;
472 } else {
473 // If this argument is dead, replace any uses of it with null constants
474 // (these are guaranteed to only be operands to call instructions which
475 // will later be simplified).
476 I->replaceAllUsesWith(Constant::getNullValue(I->getType()));
477 DeadArguments.erase(I);
478 }
479
Chris Lattner0658cc22003-10-23 03:48:17 +0000480 // If we change the return value of the function we must rewrite any return
481 // instructions. Check this now.
482 if (F->getReturnType() != NF->getReturnType())
483 for (Function::iterator BB = NF->begin(), E = NF->end(); BB != E; ++BB)
484 if (ReturnInst *RI = dyn_cast<ReturnInst>(BB->getTerminator())) {
485 new ReturnInst(0, RI);
486 BB->getInstList().erase(RI);
487 }
488
Chris Lattner13bf28c2003-06-17 22:21:05 +0000489 // Now that the old function is dead, delete it.
490 F->getParent()->getFunctionList().erase(F);
491}
492
Chris Lattner4f2cf032004-09-20 04:48:05 +0000493bool DAE::runOnModule(Module &M) {
Chris Lattner13bf28c2003-06-17 22:21:05 +0000494 // First phase: loop through the module, determining which arguments are live.
495 // We assume all arguments are dead unless proven otherwise (allowing us to
Misha Brukman8b2bd4e2003-10-10 17:57:28 +0000496 // determine that dead arguments passed into recursive functions are dead).
Chris Lattner13bf28c2003-06-17 22:21:05 +0000497 //
Chris Lattner13bf28c2003-06-17 22:21:05 +0000498 DEBUG(std::cerr << "DAE - Determining liveness\n");
Chris Lattner0658cc22003-10-23 03:48:17 +0000499 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
500 SurveyFunction(*I);
501
502 // Loop over the instructions to inspect, propagating liveness among arguments
503 // and return values which are MaybeLive.
504
505 while (!InstructionsToInspect.empty()) {
506 Instruction *I = InstructionsToInspect.back();
507 InstructionsToInspect.pop_back();
Misha Brukmanb1c93172005-04-21 23:48:37 +0000508
Chris Lattner0658cc22003-10-23 03:48:17 +0000509 if (ReturnInst *RI = dyn_cast<ReturnInst>(I)) {
510 // For return instructions, we just have to check to see if the return
511 // value for the current function is known now to be alive. If so, any
512 // arguments used by it are now alive, and any call instruction return
513 // value is alive as well.
514 if (LiveRetVal.count(RI->getParent()->getParent()))
515 MarkReturnInstArgumentLive(RI);
516
Chris Lattner13bf28c2003-06-17 22:21:05 +0000517 } else {
Chris Lattner0658cc22003-10-23 03:48:17 +0000518 CallSite CS = CallSite::get(I);
519 assert(CS.getInstruction() && "Unknown instruction for the I2I list!");
Chris Lattner13bf28c2003-06-17 22:21:05 +0000520
Chris Lattner0658cc22003-10-23 03:48:17 +0000521 Function *Callee = CS.getCalledFunction();
Misha Brukmanb1c93172005-04-21 23:48:37 +0000522
Chris Lattner0658cc22003-10-23 03:48:17 +0000523 // If we found a call or invoke instruction on this list, that means that
524 // an argument of the function is a call instruction. If the argument is
525 // live, then the return value of the called instruction is now live.
Chris Lattner13bf28c2003-06-17 22:21:05 +0000526 //
Chris Lattner0658cc22003-10-23 03:48:17 +0000527 CallSite::arg_iterator AI = CS.arg_begin(); // ActualIterator
Chris Lattner53db5462005-05-06 05:34:40 +0000528 for (Function::arg_iterator FI = Callee->arg_begin(),
529 E = Callee->arg_end(); FI != E; ++AI, ++FI) {
Chris Lattner0658cc22003-10-23 03:48:17 +0000530 // If this argument is another call...
531 CallSite ArgCS = CallSite::get(*AI);
532 if (ArgCS.getInstruction() && LiveArguments.count(FI))
533 if (Function *Callee = ArgCS.getCalledFunction())
534 MarkRetValLive(Callee);
535 }
Chris Lattner13bf28c2003-06-17 22:21:05 +0000536 }
537 }
538
539 // Now we loop over all of the MaybeLive arguments, promoting them to be live
540 // arguments if one of the calls that uses the arguments to the calls they are
541 // passed into requires them to be live. Of course this could make other
542 // arguments live, so process callers recursively.
543 //
Chris Lattner0658cc22003-10-23 03:48:17 +0000544 // Because elements can be removed from the MaybeLiveArguments set, copy it to
545 // a temporary vector.
Chris Lattner13bf28c2003-06-17 22:21:05 +0000546 //
547 std::vector<Argument*> TmpArgList(MaybeLiveArguments.begin(),
548 MaybeLiveArguments.end());
549 for (unsigned i = 0, e = TmpArgList.size(); i != e; ++i) {
550 Argument *MLA = TmpArgList[i];
551 if (MaybeLiveArguments.count(MLA) &&
Chris Lattner0658cc22003-10-23 03:48:17 +0000552 isMaybeLiveArgumentNowLive(MLA))
553 MarkArgumentLive(MLA);
Chris Lattner13bf28c2003-06-17 22:21:05 +0000554 }
555
556 // Recover memory early...
557 CallSites.clear();
558
559 // At this point, we know that all arguments in DeadArguments and
560 // MaybeLiveArguments are dead. If the two sets are empty, there is nothing
561 // to do.
Chris Lattner0658cc22003-10-23 03:48:17 +0000562 if (MaybeLiveArguments.empty() && DeadArguments.empty() &&
563 MaybeLiveRetVal.empty() && DeadRetVal.empty())
Chris Lattner13bf28c2003-06-17 22:21:05 +0000564 return false;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000565
Chris Lattner13bf28c2003-06-17 22:21:05 +0000566 // Otherwise, compact into one set, and start eliminating the arguments from
567 // the functions.
568 DeadArguments.insert(MaybeLiveArguments.begin(), MaybeLiveArguments.end());
569 MaybeLiveArguments.clear();
Chris Lattner0658cc22003-10-23 03:48:17 +0000570 DeadRetVal.insert(MaybeLiveRetVal.begin(), MaybeLiveRetVal.end());
571 MaybeLiveRetVal.clear();
572
573 LiveArguments.clear();
574 LiveRetVal.clear();
Chris Lattner13bf28c2003-06-17 22:21:05 +0000575
576 NumArgumentsEliminated += DeadArguments.size();
Chris Lattner0658cc22003-10-23 03:48:17 +0000577 NumRetValsEliminated += DeadRetVal.size();
Chris Lattner13bf28c2003-06-17 22:21:05 +0000578 while (!DeadArguments.empty())
Chris Lattner0658cc22003-10-23 03:48:17 +0000579 RemoveDeadArgumentsFromFunction((*DeadArguments.begin())->getParent());
580
581 while (!DeadRetVal.empty())
582 RemoveDeadArgumentsFromFunction(*DeadRetVal.begin());
Chris Lattner13bf28c2003-06-17 22:21:05 +0000583 return true;
584}