blob: fd1be4dda24bb633669cce0c42435b420000eba3 [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
Chris Lattner9610c6f2005-06-24 16:00:46 +000020#define DEBUG_TYPE "deadargelim"
Chris Lattner13bf28c2003-06-17 22:21:05 +000021#include "llvm/Transforms/IPO.h"
Chris Lattnerc4998a02006-06-27 21:05:04 +000022#include "llvm/CallingConv.h"
23#include "llvm/Constant.h"
24#include "llvm/DerivedTypes.h"
25#include "llvm/Instructions.h"
Chris Lattner67a35bb2006-09-18 07:02:31 +000026#include "llvm/IntrinsicInst.h"
Chris Lattner13bf28c2003-06-17 22:21:05 +000027#include "llvm/Module.h"
28#include "llvm/Pass.h"
Chris Lattner13bf28c2003-06-17 22:21:05 +000029#include "llvm/Support/CallSite.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000030#include "llvm/Support/Debug.h"
31#include "llvm/ADT/Statistic.h"
Chris Lattner13bf28c2003-06-17 22:21:05 +000032#include <set>
Chris Lattnerf52e03c2003-11-21 21:54:22 +000033using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000034
Chris Lattner1631bcb2006-12-19 22:09:18 +000035STATISTIC(NumArgumentsEliminated, "Number of unread args removed");
36STATISTIC(NumRetValsEliminated , "Number of unused return values removed");
Chris Lattner13bf28c2003-06-17 22:21:05 +000037
Chris Lattner1631bcb2006-12-19 22:09:18 +000038namespace {
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
Chris Lattner67a35bb2006-09-18 07:02:31 +000086 bool DeleteDeadVarargs(Function &Fn);
Chris Lattner0658cc22003-10-23 03:48:17 +000087 void SurveyFunction(Function &Fn);
88
89 void MarkArgumentLive(Argument *Arg);
90 void MarkRetValLive(Function *F);
91 void MarkReturnInstArgumentLive(ReturnInst *RI);
Misha Brukmanb1c93172005-04-21 23:48:37 +000092
Chris Lattner0658cc22003-10-23 03:48:17 +000093 void RemoveDeadArgumentsFromFunction(Function *F);
Chris Lattner13bf28c2003-06-17 22:21:05 +000094 };
Chris Lattnerc2d3d312006-08-27 22:42:52 +000095 RegisterPass<DAE> X("deadargelim", "Dead Argument Elimination");
Chris Lattner9e60ace2003-11-05 21:43:02 +000096
97 /// DAH - DeadArgumentHacking pass - Same as dead argument elimination, but
98 /// deletes arguments to functions which are external. This is only for use
99 /// by bugpoint.
100 struct DAH : public DAE {
101 virtual bool ShouldHackArguments() const { return true; }
102 };
Chris Lattner4e1b4672003-11-05 21:53:41 +0000103 RegisterPass<DAH> Y("deadarghaX0r",
Brian Gaeke6204e752004-02-02 19:32:27 +0000104 "Dead Argument Hacking (BUGPOINT USE ONLY; DO NOT USE)");
Chris Lattner13bf28c2003-06-17 22:21:05 +0000105}
106
Chris Lattner2ab04f72003-06-25 04:12:49 +0000107/// createDeadArgEliminationPass - This pass removes arguments from functions
Chris Lattner9e60ace2003-11-05 21:43:02 +0000108/// which are not used by the body of the function.
Chris Lattner2ab04f72003-06-25 04:12:49 +0000109///
Chris Lattner4f2cf032004-09-20 04:48:05 +0000110ModulePass *llvm::createDeadArgEliminationPass() { return new DAE(); }
111ModulePass *llvm::createDeadArgHackingPass() { return new DAH(); }
Chris Lattner13bf28c2003-06-17 22:21:05 +0000112
Chris Lattner67a35bb2006-09-18 07:02:31 +0000113/// DeleteDeadVarargs - If this is an function that takes a ... list, and if
114/// llvm.vastart is never called, the varargs list is dead for the function.
115bool DAE::DeleteDeadVarargs(Function &Fn) {
116 assert(Fn.getFunctionType()->isVarArg() && "Function isn't varargs!");
Reid Spencer5301e7c2007-01-30 20:08:39 +0000117 if (Fn.isDeclaration() || !Fn.hasInternalLinkage()) return false;
Chris Lattner67a35bb2006-09-18 07:02:31 +0000118
119 // Ensure that the function is only directly called.
120 for (Value::use_iterator I = Fn.use_begin(), E = Fn.use_end(); I != E; ++I) {
121 // If this use is anything other than a call site, give up.
122 CallSite CS = CallSite::get(*I);
123 Instruction *TheCall = CS.getInstruction();
124 if (!TheCall) return false; // Not a direct call site?
125
126 // The addr of this function is passed to the call.
127 if (I.getOperandNo() != 0) return false;
128 }
129
130 // Okay, we know we can transform this function if safe. Scan its body
131 // looking for calls to llvm.vastart.
132 for (Function::iterator BB = Fn.begin(), E = Fn.end(); BB != E; ++BB) {
133 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) {
134 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I)) {
135 if (II->getIntrinsicID() == Intrinsic::vastart)
136 return false;
137 }
138 }
139 }
140
141 // If we get here, there are no calls to llvm.vastart in the function body,
142 // remove the "..." and adjust all the calls.
143
144 // Start by computing a new prototype for the function, which is the same as
145 // the old function, but has fewer arguments.
146 const FunctionType *FTy = Fn.getFunctionType();
147 std::vector<const Type*> Params(FTy->param_begin(), FTy->param_end());
148 FunctionType *NFTy = FunctionType::get(FTy->getReturnType(), Params, false);
149 unsigned NumArgs = Params.size();
150
151 // Create the new function body and insert it into the module...
152 Function *NF = new Function(NFTy, Fn.getLinkage(), Fn.getName());
153 NF->setCallingConv(Fn.getCallingConv());
154 Fn.getParent()->getFunctionList().insert(&Fn, NF);
155
156 // Loop over all of the callers of the function, transforming the call sites
157 // to pass in a smaller number of arguments into the new function.
158 //
159 std::vector<Value*> Args;
160 while (!Fn.use_empty()) {
161 CallSite CS = CallSite::get(Fn.use_back());
162 Instruction *Call = CS.getInstruction();
163
164 // Loop over the operands, dropping extraneous ones at the end of the list.
165 Args.assign(CS.arg_begin(), CS.arg_begin()+NumArgs);
166
167 Instruction *New;
168 if (InvokeInst *II = dyn_cast<InvokeInst>(Call)) {
169 New = new InvokeInst(NF, II->getNormalDest(), II->getUnwindDest(),
170 Args, "", Call);
171 cast<InvokeInst>(New)->setCallingConv(CS.getCallingConv());
172 } else {
173 New = new CallInst(NF, Args, "", Call);
174 cast<CallInst>(New)->setCallingConv(CS.getCallingConv());
175 if (cast<CallInst>(Call)->isTailCall())
176 cast<CallInst>(New)->setTailCall();
177 }
178 Args.clear();
179
180 if (!Call->use_empty())
181 Call->replaceAllUsesWith(Constant::getNullValue(Call->getType()));
182
183 if (Call->hasName()) {
184 std::string Name = Call->getName();
185 Call->setName("");
186 New->setName(Name);
187 }
188
189 // Finally, remove the old call from the program, reducing the use-count of
190 // F.
191 Call->getParent()->getInstList().erase(Call);
192 }
193
194 // Since we have now created the new function, splice the body of the old
195 // function right into the new function, leaving the old rotting hulk of the
196 // function empty.
197 NF->getBasicBlockList().splice(NF->begin(), Fn.getBasicBlockList());
198
199 // Loop over the argument list, transfering uses of the old arguments over to
200 // the new arguments, also transfering over the names as well. While we're at
201 // it, remove the dead arguments from the DeadArguments list.
202 //
203 for (Function::arg_iterator I = Fn.arg_begin(), E = Fn.arg_end(),
204 I2 = NF->arg_begin(); I != E; ++I, ++I2) {
205 // Move the name and users over to the new version.
206 I->replaceAllUsesWith(I2);
207 I2->setName(I->getName());
208 }
209
210 // Finally, nuke the old function.
211 Fn.eraseFromParent();
212 return true;
213}
214
215
Chris Lattner0658cc22003-10-23 03:48:17 +0000216static inline bool CallPassesValueThoughVararg(Instruction *Call,
217 const Value *Arg) {
218 CallSite CS = CallSite::get(Call);
219 const Type *CalledValueTy = CS.getCalledValue()->getType();
220 const Type *FTy = cast<PointerType>(CalledValueTy)->getElementType();
221 unsigned NumFixedArgs = cast<FunctionType>(FTy)->getNumParams();
222 for (CallSite::arg_iterator AI = CS.arg_begin()+NumFixedArgs;
223 AI != CS.arg_end(); ++AI)
224 if (AI->get() == Arg)
225 return true;
Chris Lattner13bf28c2003-06-17 22:21:05 +0000226 return false;
227}
228
Chris Lattner0658cc22003-10-23 03:48:17 +0000229// getArgumentLiveness - Inspect an argument, determining if is known Live
Chris Lattner13bf28c2003-06-17 22:21:05 +0000230// (used in a computation), MaybeLive (only passed as an argument to a call), or
231// Dead (not used).
Chris Lattner0658cc22003-10-23 03:48:17 +0000232DAE::Liveness DAE::getArgumentLiveness(const Argument &A) {
Anton Korobeynikov037c8672007-01-28 13:31:35 +0000233 const FunctionType *FTy = A.getParent()->getFunctionType();
234
235 // If this is the return value of a struct function, it's not really dead.
236 if (FTy->isStructReturn() && &*A.getParent()->arg_begin() == &A)
Chris Lattnerc4998a02006-06-27 21:05:04 +0000237 return Live;
238
239 if (A.use_empty()) // First check, directly dead?
240 return Dead;
Chris Lattner13bf28c2003-06-17 22:21:05 +0000241
242 // Scan through all of the uses, looking for non-argument passing uses.
243 for (Value::use_const_iterator I = A.use_begin(), E = A.use_end(); I!=E;++I) {
Chris Lattner0658cc22003-10-23 03:48:17 +0000244 // Return instructions do not immediately effect liveness.
245 if (isa<ReturnInst>(*I))
246 continue;
247
Chris Lattner13bf28c2003-06-17 22:21:05 +0000248 CallSite CS = CallSite::get(const_cast<User*>(*I));
249 if (!CS.getInstruction()) {
250 // If its used by something that is not a call or invoke, it's alive!
Chris Lattner0658cc22003-10-23 03:48:17 +0000251 return Live;
Chris Lattner13bf28c2003-06-17 22:21:05 +0000252 }
253 // If it's an indirect call, mark it alive...
254 Function *Callee = CS.getCalledFunction();
Chris Lattner0658cc22003-10-23 03:48:17 +0000255 if (!Callee) return Live;
Chris Lattner13bf28c2003-06-17 22:21:05 +0000256
Chris Lattner5d3c1452003-06-18 16:25:51 +0000257 // Check to see if it's passed through a va_arg area: if so, we cannot
258 // remove it.
Chris Lattner0658cc22003-10-23 03:48:17 +0000259 if (CallPassesValueThoughVararg(CS.getInstruction(), &A))
260 return Live; // If passed through va_arg area, we cannot remove it
Chris Lattner13bf28c2003-06-17 22:21:05 +0000261 }
262
263 return MaybeLive; // It must be used, but only as argument to a function
264}
265
Chris Lattner0658cc22003-10-23 03:48:17 +0000266
267// SurveyFunction - This performs the initial survey of the specified function,
268// checking out whether or not it uses any of its incoming arguments or whether
269// any callers use the return value. This fills in the
270// (Dead|MaybeLive|Live)(Arguments|RetVal) sets.
Chris Lattner13bf28c2003-06-17 22:21:05 +0000271//
Chris Lattner0658cc22003-10-23 03:48:17 +0000272// We consider arguments of non-internal functions to be intrinsically alive as
273// well as arguments to functions which have their "address taken".
274//
275void DAE::SurveyFunction(Function &F) {
276 bool FunctionIntrinsicallyLive = false;
277 Liveness RetValLiveness = F.getReturnType() == Type::VoidTy ? Live : Dead;
278
Chris Lattner4e1b4672003-11-05 21:53:41 +0000279 if (!F.hasInternalLinkage() &&
280 (!ShouldHackArguments() || F.getIntrinsicID()))
Chris Lattner0658cc22003-10-23 03:48:17 +0000281 FunctionIntrinsicallyLive = true;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000282 else
Chris Lattner0658cc22003-10-23 03:48:17 +0000283 for (Value::use_iterator I = F.use_begin(), E = F.use_end(); I != E; ++I) {
284 // If this use is anything other than a call site, the function is alive.
285 CallSite CS = CallSite::get(*I);
286 Instruction *TheCall = CS.getInstruction();
287 if (!TheCall) { // Not a direct call site?
288 FunctionIntrinsicallyLive = true;
289 break;
290 }
291
292 // Check to see if the return value is used...
293 if (RetValLiveness != Live)
294 for (Value::use_iterator I = TheCall->use_begin(),
295 E = TheCall->use_end(); I != E; ++I)
296 if (isa<ReturnInst>(cast<Instruction>(*I))) {
297 RetValLiveness = MaybeLive;
298 } else if (isa<CallInst>(cast<Instruction>(*I)) ||
299 isa<InvokeInst>(cast<Instruction>(*I))) {
300 if (CallPassesValueThoughVararg(cast<Instruction>(*I), TheCall) ||
301 !CallSite::get(cast<Instruction>(*I)).getCalledFunction()) {
302 RetValLiveness = Live;
303 break;
304 } else {
305 RetValLiveness = MaybeLive;
306 }
307 } else {
308 RetValLiveness = Live;
309 break;
310 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000311
Chris Lattner0658cc22003-10-23 03:48:17 +0000312 // If the function is PASSED IN as an argument, its address has been taken
313 for (CallSite::arg_iterator AI = CS.arg_begin(), E = CS.arg_end();
314 AI != E; ++AI)
315 if (AI->get() == &F) {
316 FunctionIntrinsicallyLive = true;
317 break;
318 }
319 if (FunctionIntrinsicallyLive) break;
320 }
321
322 if (FunctionIntrinsicallyLive) {
Bill Wendling8f13b5c2006-11-26 10:02:32 +0000323 DOUT << " Intrinsically live fn: " << F.getName() << "\n";
Chris Lattner53db5462005-05-06 05:34:40 +0000324 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
325 AI != E; ++AI)
Chris Lattner0658cc22003-10-23 03:48:17 +0000326 LiveArguments.insert(AI);
327 LiveRetVal.insert(&F);
328 return;
329 }
330
331 switch (RetValLiveness) {
332 case Live: LiveRetVal.insert(&F); break;
333 case MaybeLive: MaybeLiveRetVal.insert(&F); break;
334 case Dead: DeadRetVal.insert(&F); break;
335 }
336
Bill Wendling8f13b5c2006-11-26 10:02:32 +0000337 DOUT << " Inspecting args for fn: " << F.getName() << "\n";
Chris Lattner0658cc22003-10-23 03:48:17 +0000338
339 // If it is not intrinsically alive, we know that all users of the
340 // function are call sites. Mark all of the arguments live which are
341 // directly used, and keep track of all of the call sites of this function
342 // if there are any arguments we assume that are dead.
343 //
344 bool AnyMaybeLiveArgs = false;
Chris Lattner53db5462005-05-06 05:34:40 +0000345 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
346 AI != E; ++AI)
Chris Lattner0658cc22003-10-23 03:48:17 +0000347 switch (getArgumentLiveness(*AI)) {
348 case Live:
Bill Wendling8f13b5c2006-11-26 10:02:32 +0000349 DOUT << " Arg live by use: " << AI->getName() << "\n";
Chris Lattner0658cc22003-10-23 03:48:17 +0000350 LiveArguments.insert(AI);
351 break;
352 case Dead:
Bill Wendling8f13b5c2006-11-26 10:02:32 +0000353 DOUT << " Arg definitely dead: " << AI->getName() <<"\n";
Chris Lattner0658cc22003-10-23 03:48:17 +0000354 DeadArguments.insert(AI);
355 break;
356 case MaybeLive:
Bill Wendling8f13b5c2006-11-26 10:02:32 +0000357 DOUT << " Arg only passed to calls: " << AI->getName() << "\n";
Chris Lattner0658cc22003-10-23 03:48:17 +0000358 AnyMaybeLiveArgs = true;
359 MaybeLiveArguments.insert(AI);
360 break;
361 }
362
363 // If there are any "MaybeLive" arguments, we need to check callees of
364 // this function when/if they become alive. Record which functions are
365 // callees...
366 if (AnyMaybeLiveArgs || RetValLiveness == MaybeLive)
367 for (Value::use_iterator I = F.use_begin(), E = F.use_end();
368 I != E; ++I) {
369 if (AnyMaybeLiveArgs)
370 CallSites.insert(std::make_pair(&F, CallSite::get(*I)));
371
372 if (RetValLiveness == MaybeLive)
373 for (Value::use_iterator UI = I->use_begin(), E = I->use_end();
374 UI != E; ++UI)
375 InstructionsToInspect.push_back(cast<Instruction>(*UI));
376 }
377}
378
379// isMaybeLiveArgumentNowLive - Check to see if Arg is alive. At this point, we
380// know that the only uses of Arg are to be passed in as an argument to a
381// function call or return. Check to see if the formal argument passed in is in
382// the LiveArguments set. If so, return true.
383//
384bool DAE::isMaybeLiveArgumentNowLive(Argument *Arg) {
Chris Lattner13bf28c2003-06-17 22:21:05 +0000385 for (Value::use_iterator I = Arg->use_begin(), E = Arg->use_end(); I!=E; ++I){
Chris Lattner0658cc22003-10-23 03:48:17 +0000386 if (isa<ReturnInst>(*I)) {
387 if (LiveRetVal.count(Arg->getParent())) return true;
388 continue;
389 }
390
Chris Lattner13bf28c2003-06-17 22:21:05 +0000391 CallSite CS = CallSite::get(*I);
392
393 // We know that this can only be used for direct calls...
Chris Lattner7f7285b2003-11-02 02:06:27 +0000394 Function *Callee = CS.getCalledFunction();
Chris Lattner13bf28c2003-06-17 22:21:05 +0000395
396 // Loop over all of the arguments (because Arg may be passed into the call
397 // multiple times) and check to see if any are now alive...
398 CallSite::arg_iterator CSAI = CS.arg_begin();
Chris Lattner531f9e92005-03-15 04:54:21 +0000399 for (Function::arg_iterator AI = Callee->arg_begin(), E = Callee->arg_end();
Chris Lattner13bf28c2003-06-17 22:21:05 +0000400 AI != E; ++AI, ++CSAI)
401 // If this is the argument we are looking for, check to see if it's alive
402 if (*CSAI == Arg && LiveArguments.count(AI))
403 return true;
404 }
405 return false;
406}
407
Chris Lattner0658cc22003-10-23 03:48:17 +0000408/// MarkArgumentLive - The MaybeLive argument 'Arg' is now known to be alive.
409/// Mark it live in the specified sets and recursively mark arguments in callers
410/// live that are needed to pass in a value.
411///
412void DAE::MarkArgumentLive(Argument *Arg) {
413 std::set<Argument*>::iterator It = MaybeLiveArguments.lower_bound(Arg);
414 if (It == MaybeLiveArguments.end() || *It != Arg) return;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000415
Bill Wendling8f13b5c2006-11-26 10:02:32 +0000416 DOUT << " MaybeLive argument now live: " << Arg->getName() <<"\n";
Chris Lattner0658cc22003-10-23 03:48:17 +0000417 MaybeLiveArguments.erase(It);
Chris Lattner13bf28c2003-06-17 22:21:05 +0000418 LiveArguments.insert(Arg);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000419
Chris Lattner13bf28c2003-06-17 22:21:05 +0000420 // Loop over all of the call sites of the function, making any arguments
421 // passed in to provide a value for this argument live as necessary.
422 //
423 Function *Fn = Arg->getParent();
Chris Lattner531f9e92005-03-15 04:54:21 +0000424 unsigned ArgNo = std::distance(Fn->arg_begin(), Function::arg_iterator(Arg));
Chris Lattner13bf28c2003-06-17 22:21:05 +0000425
Chris Lattner0658cc22003-10-23 03:48:17 +0000426 std::multimap<Function*, CallSite>::iterator I = CallSites.lower_bound(Fn);
Chris Lattner13bf28c2003-06-17 22:21:05 +0000427 for (; I != CallSites.end() && I->first == Fn; ++I) {
Chris Lattner0658cc22003-10-23 03:48:17 +0000428 CallSite CS = I->second;
429 Value *ArgVal = *(CS.arg_begin()+ArgNo);
430 if (Argument *ActualArg = dyn_cast<Argument>(ArgVal)) {
431 MarkArgumentLive(ActualArg);
432 } else {
433 // If the value passed in at this call site is a return value computed by
434 // some other call site, make sure to mark the return value at the other
435 // call site as being needed.
436 CallSite ArgCS = CallSite::get(ArgVal);
437 if (ArgCS.getInstruction())
438 if (Function *Fn = ArgCS.getCalledFunction())
439 MarkRetValLive(Fn);
440 }
441 }
442}
443
444/// MarkArgumentLive - The MaybeLive return value for the specified function is
445/// now known to be alive. Propagate this fact to the return instructions which
446/// produce it.
447void DAE::MarkRetValLive(Function *F) {
448 assert(F && "Shame shame, we can't have null pointers here!");
449
450 // Check to see if we already knew it was live
451 std::set<Function*>::iterator I = MaybeLiveRetVal.lower_bound(F);
452 if (I == MaybeLiveRetVal.end() || *I != F) return; // It's already alive!
453
Bill Wendling8f13b5c2006-11-26 10:02:32 +0000454 DOUT << " MaybeLive retval now live: " << F->getName() << "\n";
Chris Lattner0658cc22003-10-23 03:48:17 +0000455
456 MaybeLiveRetVal.erase(I);
457 LiveRetVal.insert(F); // It is now known to be live!
458
459 // Loop over all of the functions, noticing that the return value is now live.
460 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
461 if (ReturnInst *RI = dyn_cast<ReturnInst>(BB->getTerminator()))
462 MarkReturnInstArgumentLive(RI);
463}
464
465void DAE::MarkReturnInstArgumentLive(ReturnInst *RI) {
466 Value *Op = RI->getOperand(0);
467 if (Argument *A = dyn_cast<Argument>(Op)) {
468 MarkArgumentLive(A);
469 } else if (CallInst *CI = dyn_cast<CallInst>(Op)) {
470 if (Function *F = CI->getCalledFunction())
471 MarkRetValLive(F);
472 } else if (InvokeInst *II = dyn_cast<InvokeInst>(Op)) {
473 if (Function *F = II->getCalledFunction())
474 MarkRetValLive(F);
Chris Lattner13bf28c2003-06-17 22:21:05 +0000475 }
476}
477
478// RemoveDeadArgumentsFromFunction - We know that F has dead arguments, as
479// specified by the DeadArguments list. Transform the function and all of the
480// callees of the function to not have these arguments.
481//
Chris Lattner0658cc22003-10-23 03:48:17 +0000482void DAE::RemoveDeadArgumentsFromFunction(Function *F) {
Chris Lattner13bf28c2003-06-17 22:21:05 +0000483 // Start by computing a new prototype for the function, which is the same as
484 // the old function, but has fewer arguments.
485 const FunctionType *FTy = F->getFunctionType();
486 std::vector<const Type*> Params;
487
Chris Lattner531f9e92005-03-15 04:54:21 +0000488 for (Function::arg_iterator I = F->arg_begin(), E = F->arg_end(); I != E; ++I)
Chris Lattner13bf28c2003-06-17 22:21:05 +0000489 if (!DeadArguments.count(I))
490 Params.push_back(I->getType());
491
Chris Lattner0658cc22003-10-23 03:48:17 +0000492 const Type *RetTy = FTy->getReturnType();
493 if (DeadRetVal.count(F)) {
494 RetTy = Type::VoidTy;
495 DeadRetVal.erase(F);
496 }
497
Chris Lattner05c71fb2003-10-23 17:44:53 +0000498 // Work around LLVM bug PR56: the CWriter cannot emit varargs functions which
499 // have zero fixed arguments.
500 //
Chris Lattner05c71fb2003-10-23 17:44:53 +0000501 bool ExtraArgHack = false;
502 if (Params.empty() && FTy->isVarArg()) {
503 ExtraArgHack = true;
Reid Spencerc635f472006-12-31 05:48:39 +0000504 Params.push_back(Type::Int32Ty);
Chris Lattner05c71fb2003-10-23 17:44:53 +0000505 }
506
Chris Lattner0658cc22003-10-23 03:48:17 +0000507 FunctionType *NFTy = FunctionType::get(RetTy, Params, FTy->isVarArg());
508
Chris Lattner13bf28c2003-06-17 22:21:05 +0000509 // Create the new function body and insert it into the module...
Chris Lattner2ab04f72003-06-25 04:12:49 +0000510 Function *NF = new Function(NFTy, F->getLinkage(), F->getName());
Chris Lattnerd0525a22005-05-09 01:05:50 +0000511 NF->setCallingConv(F->getCallingConv());
Chris Lattner13bf28c2003-06-17 22:21:05 +0000512 F->getParent()->getFunctionList().insert(F, NF);
513
514 // Loop over all of the callers of the function, transforming the call sites
515 // to pass in a smaller number of arguments into the new function.
516 //
Chris Lattner0658cc22003-10-23 03:48:17 +0000517 std::vector<Value*> Args;
Chris Lattner13bf28c2003-06-17 22:21:05 +0000518 while (!F->use_empty()) {
519 CallSite CS = CallSite::get(F->use_back());
520 Instruction *Call = CS.getInstruction();
Chris Lattner0658cc22003-10-23 03:48:17 +0000521
Chris Lattner13bf28c2003-06-17 22:21:05 +0000522 // Loop over the operands, deleting dead ones...
523 CallSite::arg_iterator AI = CS.arg_begin();
Chris Lattner53db5462005-05-06 05:34:40 +0000524 for (Function::arg_iterator I = F->arg_begin(), E = F->arg_end();
525 I != E; ++I, ++AI)
Chris Lattner0658cc22003-10-23 03:48:17 +0000526 if (!DeadArguments.count(I)) // Remove operands for dead arguments
527 Args.push_back(*AI);
528
Chris Lattner05c71fb2003-10-23 17:44:53 +0000529 if (ExtraArgHack)
Reid Spencerc635f472006-12-31 05:48:39 +0000530 Args.push_back(UndefValue::get(Type::Int32Ty));
Chris Lattner05c71fb2003-10-23 17:44:53 +0000531
532 // Push any varargs arguments on the list
533 for (; AI != CS.arg_end(); ++AI)
534 Args.push_back(*AI);
535
Chris Lattner0658cc22003-10-23 03:48:17 +0000536 Instruction *New;
537 if (InvokeInst *II = dyn_cast<InvokeInst>(Call)) {
Chris Lattnerfae8ab32004-02-08 21:44:31 +0000538 New = new InvokeInst(NF, II->getNormalDest(), II->getUnwindDest(),
Chris Lattner0658cc22003-10-23 03:48:17 +0000539 Args, "", Call);
Chris Lattnerd0525a22005-05-09 01:05:50 +0000540 cast<InvokeInst>(New)->setCallingConv(CS.getCallingConv());
Chris Lattner0658cc22003-10-23 03:48:17 +0000541 } else {
542 New = new CallInst(NF, Args, "", Call);
Chris Lattnerd0525a22005-05-09 01:05:50 +0000543 cast<CallInst>(New)->setCallingConv(CS.getCallingConv());
Chris Lattner324d2ee2005-05-06 06:46:58 +0000544 if (cast<CallInst>(Call)->isTailCall())
545 cast<CallInst>(New)->setTailCall();
Chris Lattner0658cc22003-10-23 03:48:17 +0000546 }
547 Args.clear();
548
549 if (!Call->use_empty()) {
550 if (New->getType() == Type::VoidTy)
551 Call->replaceAllUsesWith(Constant::getNullValue(Call->getType()));
552 else {
553 Call->replaceAllUsesWith(New);
554 std::string Name = Call->getName();
555 Call->setName("");
556 New->setName(Name);
Chris Lattner13bf28c2003-06-17 22:21:05 +0000557 }
Chris Lattner0658cc22003-10-23 03:48:17 +0000558 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000559
Chris Lattner0658cc22003-10-23 03:48:17 +0000560 // Finally, remove the old call from the program, reducing the use-count of
561 // F.
562 Call->getParent()->getInstList().erase(Call);
Chris Lattner13bf28c2003-06-17 22:21:05 +0000563 }
564
565 // Since we have now created the new function, splice the body of the old
566 // function right into the new function, leaving the old rotting hulk of the
567 // function empty.
568 NF->getBasicBlockList().splice(NF->begin(), F->getBasicBlockList());
569
570 // Loop over the argument list, transfering uses of the old arguments over to
571 // the new arguments, also transfering over the names as well. While we're at
572 // it, remove the dead arguments from the DeadArguments list.
573 //
Chris Lattner53db5462005-05-06 05:34:40 +0000574 for (Function::arg_iterator I = F->arg_begin(), E = F->arg_end(),
575 I2 = NF->arg_begin();
Chris Lattner13bf28c2003-06-17 22:21:05 +0000576 I != E; ++I)
577 if (!DeadArguments.count(I)) {
578 // If this is a live argument, move the name and users over to the new
579 // version.
580 I->replaceAllUsesWith(I2);
581 I2->setName(I->getName());
582 ++I2;
583 } else {
584 // If this argument is dead, replace any uses of it with null constants
585 // (these are guaranteed to only be operands to call instructions which
586 // will later be simplified).
587 I->replaceAllUsesWith(Constant::getNullValue(I->getType()));
588 DeadArguments.erase(I);
589 }
590
Chris Lattner0658cc22003-10-23 03:48:17 +0000591 // If we change the return value of the function we must rewrite any return
592 // instructions. Check this now.
593 if (F->getReturnType() != NF->getReturnType())
594 for (Function::iterator BB = NF->begin(), E = NF->end(); BB != E; ++BB)
595 if (ReturnInst *RI = dyn_cast<ReturnInst>(BB->getTerminator())) {
596 new ReturnInst(0, RI);
597 BB->getInstList().erase(RI);
598 }
599
Chris Lattner13bf28c2003-06-17 22:21:05 +0000600 // Now that the old function is dead, delete it.
601 F->getParent()->getFunctionList().erase(F);
602}
603
Chris Lattner4f2cf032004-09-20 04:48:05 +0000604bool DAE::runOnModule(Module &M) {
Chris Lattner13bf28c2003-06-17 22:21:05 +0000605 // First phase: loop through the module, determining which arguments are live.
606 // We assume all arguments are dead unless proven otherwise (allowing us to
Misha Brukman8b2bd4e2003-10-10 17:57:28 +0000607 // determine that dead arguments passed into recursive functions are dead).
Chris Lattner13bf28c2003-06-17 22:21:05 +0000608 //
Bill Wendling8f13b5c2006-11-26 10:02:32 +0000609 DOUT << "DAE - Determining liveness\n";
Chris Lattner67a35bb2006-09-18 07:02:31 +0000610 for (Module::iterator I = M.begin(), E = M.end(); I != E; ) {
611 Function &F = *I++;
612 if (F.getFunctionType()->isVarArg())
613 if (DeleteDeadVarargs(F))
614 continue;
615
616 SurveyFunction(F);
617 }
Chris Lattner0658cc22003-10-23 03:48:17 +0000618
619 // Loop over the instructions to inspect, propagating liveness among arguments
620 // and return values which are MaybeLive.
621
622 while (!InstructionsToInspect.empty()) {
623 Instruction *I = InstructionsToInspect.back();
624 InstructionsToInspect.pop_back();
Misha Brukmanb1c93172005-04-21 23:48:37 +0000625
Chris Lattner0658cc22003-10-23 03:48:17 +0000626 if (ReturnInst *RI = dyn_cast<ReturnInst>(I)) {
627 // For return instructions, we just have to check to see if the return
628 // value for the current function is known now to be alive. If so, any
629 // arguments used by it are now alive, and any call instruction return
630 // value is alive as well.
631 if (LiveRetVal.count(RI->getParent()->getParent()))
632 MarkReturnInstArgumentLive(RI);
633
Chris Lattner13bf28c2003-06-17 22:21:05 +0000634 } else {
Chris Lattner0658cc22003-10-23 03:48:17 +0000635 CallSite CS = CallSite::get(I);
636 assert(CS.getInstruction() && "Unknown instruction for the I2I list!");
Chris Lattner13bf28c2003-06-17 22:21:05 +0000637
Chris Lattner0658cc22003-10-23 03:48:17 +0000638 Function *Callee = CS.getCalledFunction();
Misha Brukmanb1c93172005-04-21 23:48:37 +0000639
Chris Lattner0658cc22003-10-23 03:48:17 +0000640 // If we found a call or invoke instruction on this list, that means that
641 // an argument of the function is a call instruction. If the argument is
642 // live, then the return value of the called instruction is now live.
Chris Lattner13bf28c2003-06-17 22:21:05 +0000643 //
Chris Lattner0658cc22003-10-23 03:48:17 +0000644 CallSite::arg_iterator AI = CS.arg_begin(); // ActualIterator
Chris Lattner53db5462005-05-06 05:34:40 +0000645 for (Function::arg_iterator FI = Callee->arg_begin(),
646 E = Callee->arg_end(); FI != E; ++AI, ++FI) {
Chris Lattner0658cc22003-10-23 03:48:17 +0000647 // If this argument is another call...
648 CallSite ArgCS = CallSite::get(*AI);
649 if (ArgCS.getInstruction() && LiveArguments.count(FI))
650 if (Function *Callee = ArgCS.getCalledFunction())
651 MarkRetValLive(Callee);
652 }
Chris Lattner13bf28c2003-06-17 22:21:05 +0000653 }
654 }
655
656 // Now we loop over all of the MaybeLive arguments, promoting them to be live
657 // arguments if one of the calls that uses the arguments to the calls they are
658 // passed into requires them to be live. Of course this could make other
659 // arguments live, so process callers recursively.
660 //
Chris Lattner0658cc22003-10-23 03:48:17 +0000661 // Because elements can be removed from the MaybeLiveArguments set, copy it to
662 // a temporary vector.
Chris Lattner13bf28c2003-06-17 22:21:05 +0000663 //
664 std::vector<Argument*> TmpArgList(MaybeLiveArguments.begin(),
665 MaybeLiveArguments.end());
666 for (unsigned i = 0, e = TmpArgList.size(); i != e; ++i) {
667 Argument *MLA = TmpArgList[i];
668 if (MaybeLiveArguments.count(MLA) &&
Chris Lattner0658cc22003-10-23 03:48:17 +0000669 isMaybeLiveArgumentNowLive(MLA))
670 MarkArgumentLive(MLA);
Chris Lattner13bf28c2003-06-17 22:21:05 +0000671 }
672
673 // Recover memory early...
674 CallSites.clear();
675
676 // At this point, we know that all arguments in DeadArguments and
677 // MaybeLiveArguments are dead. If the two sets are empty, there is nothing
678 // to do.
Chris Lattner0658cc22003-10-23 03:48:17 +0000679 if (MaybeLiveArguments.empty() && DeadArguments.empty() &&
680 MaybeLiveRetVal.empty() && DeadRetVal.empty())
Chris Lattner13bf28c2003-06-17 22:21:05 +0000681 return false;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000682
Chris Lattner13bf28c2003-06-17 22:21:05 +0000683 // Otherwise, compact into one set, and start eliminating the arguments from
684 // the functions.
685 DeadArguments.insert(MaybeLiveArguments.begin(), MaybeLiveArguments.end());
686 MaybeLiveArguments.clear();
Chris Lattner0658cc22003-10-23 03:48:17 +0000687 DeadRetVal.insert(MaybeLiveRetVal.begin(), MaybeLiveRetVal.end());
688 MaybeLiveRetVal.clear();
689
690 LiveArguments.clear();
691 LiveRetVal.clear();
Chris Lattner13bf28c2003-06-17 22:21:05 +0000692
693 NumArgumentsEliminated += DeadArguments.size();
Chris Lattner0658cc22003-10-23 03:48:17 +0000694 NumRetValsEliminated += DeadRetVal.size();
Chris Lattner13bf28c2003-06-17 22:21:05 +0000695 while (!DeadArguments.empty())
Chris Lattner0658cc22003-10-23 03:48:17 +0000696 RemoveDeadArgumentsFromFunction((*DeadArguments.begin())->getParent());
697
698 while (!DeadRetVal.empty())
699 RemoveDeadArgumentsFromFunction(*DeadRetVal.begin());
Chris Lattner13bf28c2003-06-17 22:21:05 +0000700 return true;
701}