blob: 5963c9e800eeac95cdb126d62f3befb08674c6fd [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"
Reid Spencer557ab152007-02-05 23:32:05 +000032#include "llvm/Support/Compiler.h"
Chris Lattner13bf28c2003-06-17 22:21:05 +000033#include <set>
Chris Lattnerf52e03c2003-11-21 21:54:22 +000034using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000035
Chris Lattner1631bcb2006-12-19 22:09:18 +000036STATISTIC(NumArgumentsEliminated, "Number of unread args removed");
37STATISTIC(NumRetValsEliminated , "Number of unused return values removed");
Chris Lattner13bf28c2003-06-17 22:21:05 +000038
Chris Lattner1631bcb2006-12-19 22:09:18 +000039namespace {
Chris Lattner0658cc22003-10-23 03:48:17 +000040 /// DAE - The dead argument elimination pass.
41 ///
Reid Spencer557ab152007-02-05 23:32:05 +000042 class VISIBILITY_HIDDEN DAE : public ModulePass {
Chris Lattner0658cc22003-10-23 03:48:17 +000043 /// Liveness enum - During our initial pass over the program, we determine
44 /// that things are either definately alive, definately dead, or in need of
45 /// interprocedural analysis (MaybeLive).
46 ///
47 enum Liveness { Live, MaybeLive, Dead };
48
49 /// LiveArguments, MaybeLiveArguments, DeadArguments - These sets contain
50 /// all of the arguments in the program. The Dead set contains arguments
51 /// which are completely dead (never used in the function). The MaybeLive
52 /// set contains arguments which are only passed into other function calls,
53 /// thus may be live and may be dead. The Live set contains arguments which
54 /// are known to be alive.
55 ///
56 std::set<Argument*> DeadArguments, MaybeLiveArguments, LiveArguments;
57
58 /// DeadRetVal, MaybeLiveRetVal, LifeRetVal - These sets contain all of the
59 /// functions in the program. The Dead set contains functions whose return
60 /// value is known to be dead. The MaybeLive set contains functions whose
61 /// return values are only used by return instructions, and the Live set
62 /// contains functions whose return values are used, functions that are
63 /// external, and functions that already return void.
64 ///
65 std::set<Function*> DeadRetVal, MaybeLiveRetVal, LiveRetVal;
66
67 /// InstructionsToInspect - As we mark arguments and return values
68 /// MaybeLive, we keep track of which instructions could make the values
69 /// live here. Once the entire program has had the return value and
70 /// arguments analyzed, this set is scanned to promote the MaybeLive objects
71 /// to be Live if they really are used.
72 std::vector<Instruction*> InstructionsToInspect;
73
74 /// CallSites - Keep track of the call sites of functions that have
75 /// MaybeLive arguments or return values.
76 std::multimap<Function*, CallSite> CallSites;
77
78 public:
Chris Lattner4f2cf032004-09-20 04:48:05 +000079 bool runOnModule(Module &M);
Chris Lattner2ab04f72003-06-25 04:12:49 +000080
Chris Lattner9e60ace2003-11-05 21:43:02 +000081 virtual bool ShouldHackArguments() const { return false; }
82
Chris Lattner2ab04f72003-06-25 04:12:49 +000083 private:
Chris Lattner0658cc22003-10-23 03:48:17 +000084 Liveness getArgumentLiveness(const Argument &A);
85 bool isMaybeLiveArgumentNowLive(Argument *Arg);
86
Chris Lattner67a35bb2006-09-18 07:02:31 +000087 bool DeleteDeadVarargs(Function &Fn);
Chris Lattner0658cc22003-10-23 03:48:17 +000088 void SurveyFunction(Function &Fn);
89
90 void MarkArgumentLive(Argument *Arg);
91 void MarkRetValLive(Function *F);
92 void MarkReturnInstArgumentLive(ReturnInst *RI);
Misha Brukmanb1c93172005-04-21 23:48:37 +000093
Chris Lattner0658cc22003-10-23 03:48:17 +000094 void RemoveDeadArgumentsFromFunction(Function *F);
Chris Lattner13bf28c2003-06-17 22:21:05 +000095 };
Chris Lattnerc2d3d312006-08-27 22:42:52 +000096 RegisterPass<DAE> X("deadargelim", "Dead Argument Elimination");
Chris Lattner9e60ace2003-11-05 21:43:02 +000097
98 /// DAH - DeadArgumentHacking pass - Same as dead argument elimination, but
99 /// deletes arguments to functions which are external. This is only for use
100 /// by bugpoint.
101 struct DAH : public DAE {
102 virtual bool ShouldHackArguments() const { return true; }
103 };
Chris Lattner4e1b4672003-11-05 21:53:41 +0000104 RegisterPass<DAH> Y("deadarghaX0r",
Brian Gaeke6204e752004-02-02 19:32:27 +0000105 "Dead Argument Hacking (BUGPOINT USE ONLY; DO NOT USE)");
Chris Lattner13bf28c2003-06-17 22:21:05 +0000106}
107
Chris Lattner2ab04f72003-06-25 04:12:49 +0000108/// createDeadArgEliminationPass - This pass removes arguments from functions
Chris Lattner9e60ace2003-11-05 21:43:02 +0000109/// which are not used by the body of the function.
Chris Lattner2ab04f72003-06-25 04:12:49 +0000110///
Chris Lattner4f2cf032004-09-20 04:48:05 +0000111ModulePass *llvm::createDeadArgEliminationPass() { return new DAE(); }
112ModulePass *llvm::createDeadArgHackingPass() { return new DAH(); }
Chris Lattner13bf28c2003-06-17 22:21:05 +0000113
Chris Lattner67a35bb2006-09-18 07:02:31 +0000114/// DeleteDeadVarargs - If this is an function that takes a ... list, and if
115/// llvm.vastart is never called, the varargs list is dead for the function.
116bool DAE::DeleteDeadVarargs(Function &Fn) {
117 assert(Fn.getFunctionType()->isVarArg() && "Function isn't varargs!");
Reid Spencer5301e7c2007-01-30 20:08:39 +0000118 if (Fn.isDeclaration() || !Fn.hasInternalLinkage()) return false;
Chris Lattner67a35bb2006-09-18 07:02:31 +0000119
120 // Ensure that the function is only directly called.
121 for (Value::use_iterator I = Fn.use_begin(), E = Fn.use_end(); I != E; ++I) {
122 // If this use is anything other than a call site, give up.
123 CallSite CS = CallSite::get(*I);
124 Instruction *TheCall = CS.getInstruction();
125 if (!TheCall) return false; // Not a direct call site?
126
127 // The addr of this function is passed to the call.
128 if (I.getOperandNo() != 0) return false;
129 }
130
131 // Okay, we know we can transform this function if safe. Scan its body
132 // looking for calls to llvm.vastart.
133 for (Function::iterator BB = Fn.begin(), E = Fn.end(); BB != E; ++BB) {
134 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) {
135 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I)) {
136 if (II->getIntrinsicID() == Intrinsic::vastart)
137 return false;
138 }
139 }
140 }
141
142 // If we get here, there are no calls to llvm.vastart in the function body,
143 // remove the "..." and adjust all the calls.
144
145 // Start by computing a new prototype for the function, which is the same as
146 // the old function, but has fewer arguments.
147 const FunctionType *FTy = Fn.getFunctionType();
148 std::vector<const Type*> Params(FTy->param_begin(), FTy->param_end());
149 FunctionType *NFTy = FunctionType::get(FTy->getReturnType(), Params, false);
150 unsigned NumArgs = Params.size();
151
152 // Create the new function body and insert it into the module...
Chris Lattner8d4c36b2007-02-11 01:08:35 +0000153 Function *NF = new Function(NFTy, Fn.getLinkage());
Chris Lattner67a35bb2006-09-18 07:02:31 +0000154 NF->setCallingConv(Fn.getCallingConv());
155 Fn.getParent()->getFunctionList().insert(&Fn, NF);
Chris Lattner8d4c36b2007-02-11 01:08:35 +0000156 NF->takeName(&Fn);
Chris Lattner67a35bb2006-09-18 07:02:31 +0000157
158 // Loop over all of the callers of the function, transforming the call sites
159 // to pass in a smaller number of arguments into the new function.
160 //
161 std::vector<Value*> Args;
162 while (!Fn.use_empty()) {
163 CallSite CS = CallSite::get(Fn.use_back());
164 Instruction *Call = CS.getInstruction();
165
166 // Loop over the operands, dropping extraneous ones at the end of the list.
167 Args.assign(CS.arg_begin(), CS.arg_begin()+NumArgs);
168
169 Instruction *New;
170 if (InvokeInst *II = dyn_cast<InvokeInst>(Call)) {
171 New = new InvokeInst(NF, II->getNormalDest(), II->getUnwindDest(),
172 Args, "", Call);
173 cast<InvokeInst>(New)->setCallingConv(CS.getCallingConv());
174 } else {
175 New = new CallInst(NF, Args, "", Call);
176 cast<CallInst>(New)->setCallingConv(CS.getCallingConv());
177 if (cast<CallInst>(Call)->isTailCall())
178 cast<CallInst>(New)->setTailCall();
179 }
180 Args.clear();
181
182 if (!Call->use_empty())
183 Call->replaceAllUsesWith(Constant::getNullValue(Call->getType()));
184
Chris Lattner8d4c36b2007-02-11 01:08:35 +0000185 New->takeName(Call);
Chris Lattner67a35bb2006-09-18 07:02:31 +0000186
187 // Finally, remove the old call from the program, reducing the use-count of
188 // F.
189 Call->getParent()->getInstList().erase(Call);
190 }
191
192 // Since we have now created the new function, splice the body of the old
193 // function right into the new function, leaving the old rotting hulk of the
194 // function empty.
195 NF->getBasicBlockList().splice(NF->begin(), Fn.getBasicBlockList());
196
197 // Loop over the argument list, transfering uses of the old arguments over to
198 // the new arguments, also transfering over the names as well. While we're at
199 // it, remove the dead arguments from the DeadArguments list.
200 //
201 for (Function::arg_iterator I = Fn.arg_begin(), E = Fn.arg_end(),
202 I2 = NF->arg_begin(); I != E; ++I, ++I2) {
203 // Move the name and users over to the new version.
204 I->replaceAllUsesWith(I2);
Chris Lattner8d4c36b2007-02-11 01:08:35 +0000205 I2->takeName(I);
Chris Lattner67a35bb2006-09-18 07:02:31 +0000206 }
207
208 // Finally, nuke the old function.
209 Fn.eraseFromParent();
210 return true;
211}
212
213
Chris Lattner0658cc22003-10-23 03:48:17 +0000214static inline bool CallPassesValueThoughVararg(Instruction *Call,
215 const Value *Arg) {
216 CallSite CS = CallSite::get(Call);
217 const Type *CalledValueTy = CS.getCalledValue()->getType();
218 const Type *FTy = cast<PointerType>(CalledValueTy)->getElementType();
219 unsigned NumFixedArgs = cast<FunctionType>(FTy)->getNumParams();
220 for (CallSite::arg_iterator AI = CS.arg_begin()+NumFixedArgs;
221 AI != CS.arg_end(); ++AI)
222 if (AI->get() == Arg)
223 return true;
Chris Lattner13bf28c2003-06-17 22:21:05 +0000224 return false;
225}
226
Chris Lattner0658cc22003-10-23 03:48:17 +0000227// getArgumentLiveness - Inspect an argument, determining if is known Live
Chris Lattner13bf28c2003-06-17 22:21:05 +0000228// (used in a computation), MaybeLive (only passed as an argument to a call), or
229// Dead (not used).
Chris Lattner0658cc22003-10-23 03:48:17 +0000230DAE::Liveness DAE::getArgumentLiveness(const Argument &A) {
Anton Korobeynikov037c8672007-01-28 13:31:35 +0000231 const FunctionType *FTy = A.getParent()->getFunctionType();
232
233 // If this is the return value of a struct function, it's not really dead.
234 if (FTy->isStructReturn() && &*A.getParent()->arg_begin() == &A)
Chris Lattnerc4998a02006-06-27 21:05:04 +0000235 return Live;
236
237 if (A.use_empty()) // First check, directly dead?
238 return Dead;
Chris Lattner13bf28c2003-06-17 22:21:05 +0000239
240 // Scan through all of the uses, looking for non-argument passing uses.
241 for (Value::use_const_iterator I = A.use_begin(), E = A.use_end(); I!=E;++I) {
Chris Lattner0658cc22003-10-23 03:48:17 +0000242 // Return instructions do not immediately effect liveness.
243 if (isa<ReturnInst>(*I))
244 continue;
245
Chris Lattner13bf28c2003-06-17 22:21:05 +0000246 CallSite CS = CallSite::get(const_cast<User*>(*I));
247 if (!CS.getInstruction()) {
248 // If its used by something that is not a call or invoke, it's alive!
Chris Lattner0658cc22003-10-23 03:48:17 +0000249 return Live;
Chris Lattner13bf28c2003-06-17 22:21:05 +0000250 }
251 // If it's an indirect call, mark it alive...
252 Function *Callee = CS.getCalledFunction();
Chris Lattner0658cc22003-10-23 03:48:17 +0000253 if (!Callee) return Live;
Chris Lattner13bf28c2003-06-17 22:21:05 +0000254
Chris Lattner5d3c1452003-06-18 16:25:51 +0000255 // Check to see if it's passed through a va_arg area: if so, we cannot
256 // remove it.
Chris Lattner0658cc22003-10-23 03:48:17 +0000257 if (CallPassesValueThoughVararg(CS.getInstruction(), &A))
258 return Live; // If passed through va_arg area, we cannot remove it
Chris Lattner13bf28c2003-06-17 22:21:05 +0000259 }
260
261 return MaybeLive; // It must be used, but only as argument to a function
262}
263
Chris Lattner0658cc22003-10-23 03:48:17 +0000264
265// SurveyFunction - This performs the initial survey of the specified function,
266// checking out whether or not it uses any of its incoming arguments or whether
267// any callers use the return value. This fills in the
268// (Dead|MaybeLive|Live)(Arguments|RetVal) sets.
Chris Lattner13bf28c2003-06-17 22:21:05 +0000269//
Chris Lattner0658cc22003-10-23 03:48:17 +0000270// We consider arguments of non-internal functions to be intrinsically alive as
271// well as arguments to functions which have their "address taken".
272//
273void DAE::SurveyFunction(Function &F) {
274 bool FunctionIntrinsicallyLive = false;
275 Liveness RetValLiveness = F.getReturnType() == Type::VoidTy ? Live : Dead;
276
Chris Lattner4e1b4672003-11-05 21:53:41 +0000277 if (!F.hasInternalLinkage() &&
278 (!ShouldHackArguments() || F.getIntrinsicID()))
Chris Lattner0658cc22003-10-23 03:48:17 +0000279 FunctionIntrinsicallyLive = true;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000280 else
Chris Lattner0658cc22003-10-23 03:48:17 +0000281 for (Value::use_iterator I = F.use_begin(), E = F.use_end(); I != E; ++I) {
282 // If this use is anything other than a call site, the function is alive.
283 CallSite CS = CallSite::get(*I);
284 Instruction *TheCall = CS.getInstruction();
285 if (!TheCall) { // Not a direct call site?
286 FunctionIntrinsicallyLive = true;
287 break;
288 }
289
290 // Check to see if the return value is used...
291 if (RetValLiveness != Live)
292 for (Value::use_iterator I = TheCall->use_begin(),
293 E = TheCall->use_end(); I != E; ++I)
294 if (isa<ReturnInst>(cast<Instruction>(*I))) {
295 RetValLiveness = MaybeLive;
296 } else if (isa<CallInst>(cast<Instruction>(*I)) ||
297 isa<InvokeInst>(cast<Instruction>(*I))) {
298 if (CallPassesValueThoughVararg(cast<Instruction>(*I), TheCall) ||
299 !CallSite::get(cast<Instruction>(*I)).getCalledFunction()) {
300 RetValLiveness = Live;
301 break;
302 } else {
303 RetValLiveness = MaybeLive;
304 }
305 } else {
306 RetValLiveness = Live;
307 break;
308 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000309
Chris Lattner0658cc22003-10-23 03:48:17 +0000310 // If the function is PASSED IN as an argument, its address has been taken
311 for (CallSite::arg_iterator AI = CS.arg_begin(), E = CS.arg_end();
312 AI != E; ++AI)
313 if (AI->get() == &F) {
314 FunctionIntrinsicallyLive = true;
315 break;
316 }
317 if (FunctionIntrinsicallyLive) break;
318 }
319
320 if (FunctionIntrinsicallyLive) {
Bill Wendling8f13b5c2006-11-26 10:02:32 +0000321 DOUT << " Intrinsically live fn: " << F.getName() << "\n";
Chris Lattner53db5462005-05-06 05:34:40 +0000322 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
323 AI != E; ++AI)
Chris Lattner0658cc22003-10-23 03:48:17 +0000324 LiveArguments.insert(AI);
325 LiveRetVal.insert(&F);
326 return;
327 }
328
329 switch (RetValLiveness) {
330 case Live: LiveRetVal.insert(&F); break;
331 case MaybeLive: MaybeLiveRetVal.insert(&F); break;
332 case Dead: DeadRetVal.insert(&F); break;
333 }
334
Bill Wendling8f13b5c2006-11-26 10:02:32 +0000335 DOUT << " Inspecting args for fn: " << F.getName() << "\n";
Chris Lattner0658cc22003-10-23 03:48:17 +0000336
337 // If it is not intrinsically alive, we know that all users of the
338 // function are call sites. Mark all of the arguments live which are
339 // directly used, and keep track of all of the call sites of this function
340 // if there are any arguments we assume that are dead.
341 //
342 bool AnyMaybeLiveArgs = false;
Chris Lattner53db5462005-05-06 05:34:40 +0000343 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
344 AI != E; ++AI)
Chris Lattner0658cc22003-10-23 03:48:17 +0000345 switch (getArgumentLiveness(*AI)) {
346 case Live:
Bill Wendling8f13b5c2006-11-26 10:02:32 +0000347 DOUT << " Arg live by use: " << AI->getName() << "\n";
Chris Lattner0658cc22003-10-23 03:48:17 +0000348 LiveArguments.insert(AI);
349 break;
350 case Dead:
Bill Wendling8f13b5c2006-11-26 10:02:32 +0000351 DOUT << " Arg definitely dead: " << AI->getName() <<"\n";
Chris Lattner0658cc22003-10-23 03:48:17 +0000352 DeadArguments.insert(AI);
353 break;
354 case MaybeLive:
Bill Wendling8f13b5c2006-11-26 10:02:32 +0000355 DOUT << " Arg only passed to calls: " << AI->getName() << "\n";
Chris Lattner0658cc22003-10-23 03:48:17 +0000356 AnyMaybeLiveArgs = true;
357 MaybeLiveArguments.insert(AI);
358 break;
359 }
360
361 // If there are any "MaybeLive" arguments, we need to check callees of
362 // this function when/if they become alive. Record which functions are
363 // callees...
364 if (AnyMaybeLiveArgs || RetValLiveness == MaybeLive)
365 for (Value::use_iterator I = F.use_begin(), E = F.use_end();
366 I != E; ++I) {
367 if (AnyMaybeLiveArgs)
368 CallSites.insert(std::make_pair(&F, CallSite::get(*I)));
369
370 if (RetValLiveness == MaybeLive)
371 for (Value::use_iterator UI = I->use_begin(), E = I->use_end();
372 UI != E; ++UI)
373 InstructionsToInspect.push_back(cast<Instruction>(*UI));
374 }
375}
376
377// isMaybeLiveArgumentNowLive - Check to see if Arg is alive. At this point, we
378// know that the only uses of Arg are to be passed in as an argument to a
379// function call or return. Check to see if the formal argument passed in is in
380// the LiveArguments set. If so, return true.
381//
382bool DAE::isMaybeLiveArgumentNowLive(Argument *Arg) {
Chris Lattner13bf28c2003-06-17 22:21:05 +0000383 for (Value::use_iterator I = Arg->use_begin(), E = Arg->use_end(); I!=E; ++I){
Chris Lattner0658cc22003-10-23 03:48:17 +0000384 if (isa<ReturnInst>(*I)) {
385 if (LiveRetVal.count(Arg->getParent())) return true;
386 continue;
387 }
388
Chris Lattner13bf28c2003-06-17 22:21:05 +0000389 CallSite CS = CallSite::get(*I);
390
391 // We know that this can only be used for direct calls...
Chris Lattner7f7285b2003-11-02 02:06:27 +0000392 Function *Callee = CS.getCalledFunction();
Chris Lattner13bf28c2003-06-17 22:21:05 +0000393
394 // Loop over all of the arguments (because Arg may be passed into the call
395 // multiple times) and check to see if any are now alive...
396 CallSite::arg_iterator CSAI = CS.arg_begin();
Chris Lattner531f9e92005-03-15 04:54:21 +0000397 for (Function::arg_iterator AI = Callee->arg_begin(), E = Callee->arg_end();
Chris Lattner13bf28c2003-06-17 22:21:05 +0000398 AI != E; ++AI, ++CSAI)
399 // If this is the argument we are looking for, check to see if it's alive
400 if (*CSAI == Arg && LiveArguments.count(AI))
401 return true;
402 }
403 return false;
404}
405
Chris Lattner0658cc22003-10-23 03:48:17 +0000406/// MarkArgumentLive - The MaybeLive argument 'Arg' is now known to be alive.
407/// Mark it live in the specified sets and recursively mark arguments in callers
408/// live that are needed to pass in a value.
409///
410void DAE::MarkArgumentLive(Argument *Arg) {
411 std::set<Argument*>::iterator It = MaybeLiveArguments.lower_bound(Arg);
412 if (It == MaybeLiveArguments.end() || *It != Arg) return;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000413
Bill Wendling8f13b5c2006-11-26 10:02:32 +0000414 DOUT << " MaybeLive argument now live: " << Arg->getName() <<"\n";
Chris Lattner0658cc22003-10-23 03:48:17 +0000415 MaybeLiveArguments.erase(It);
Chris Lattner13bf28c2003-06-17 22:21:05 +0000416 LiveArguments.insert(Arg);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000417
Chris Lattner13bf28c2003-06-17 22:21:05 +0000418 // Loop over all of the call sites of the function, making any arguments
419 // passed in to provide a value for this argument live as necessary.
420 //
421 Function *Fn = Arg->getParent();
Chris Lattner531f9e92005-03-15 04:54:21 +0000422 unsigned ArgNo = std::distance(Fn->arg_begin(), Function::arg_iterator(Arg));
Chris Lattner13bf28c2003-06-17 22:21:05 +0000423
Chris Lattner0658cc22003-10-23 03:48:17 +0000424 std::multimap<Function*, CallSite>::iterator I = CallSites.lower_bound(Fn);
Chris Lattner13bf28c2003-06-17 22:21:05 +0000425 for (; I != CallSites.end() && I->first == Fn; ++I) {
Chris Lattner0658cc22003-10-23 03:48:17 +0000426 CallSite CS = I->second;
427 Value *ArgVal = *(CS.arg_begin()+ArgNo);
428 if (Argument *ActualArg = dyn_cast<Argument>(ArgVal)) {
429 MarkArgumentLive(ActualArg);
430 } else {
431 // If the value passed in at this call site is a return value computed by
432 // some other call site, make sure to mark the return value at the other
433 // call site as being needed.
434 CallSite ArgCS = CallSite::get(ArgVal);
435 if (ArgCS.getInstruction())
436 if (Function *Fn = ArgCS.getCalledFunction())
437 MarkRetValLive(Fn);
438 }
439 }
440}
441
442/// MarkArgumentLive - The MaybeLive return value for the specified function is
443/// now known to be alive. Propagate this fact to the return instructions which
444/// produce it.
445void DAE::MarkRetValLive(Function *F) {
446 assert(F && "Shame shame, we can't have null pointers here!");
447
448 // Check to see if we already knew it was live
449 std::set<Function*>::iterator I = MaybeLiveRetVal.lower_bound(F);
450 if (I == MaybeLiveRetVal.end() || *I != F) return; // It's already alive!
451
Bill Wendling8f13b5c2006-11-26 10:02:32 +0000452 DOUT << " MaybeLive retval now live: " << F->getName() << "\n";
Chris Lattner0658cc22003-10-23 03:48:17 +0000453
454 MaybeLiveRetVal.erase(I);
455 LiveRetVal.insert(F); // It is now known to be live!
456
457 // Loop over all of the functions, noticing that the return value is now live.
458 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
459 if (ReturnInst *RI = dyn_cast<ReturnInst>(BB->getTerminator()))
460 MarkReturnInstArgumentLive(RI);
461}
462
463void DAE::MarkReturnInstArgumentLive(ReturnInst *RI) {
464 Value *Op = RI->getOperand(0);
465 if (Argument *A = dyn_cast<Argument>(Op)) {
466 MarkArgumentLive(A);
467 } else if (CallInst *CI = dyn_cast<CallInst>(Op)) {
468 if (Function *F = CI->getCalledFunction())
469 MarkRetValLive(F);
470 } else if (InvokeInst *II = dyn_cast<InvokeInst>(Op)) {
471 if (Function *F = II->getCalledFunction())
472 MarkRetValLive(F);
Chris Lattner13bf28c2003-06-17 22:21:05 +0000473 }
474}
475
476// RemoveDeadArgumentsFromFunction - We know that F has dead arguments, as
477// specified by the DeadArguments list. Transform the function and all of the
478// callees of the function to not have these arguments.
479//
Chris Lattner0658cc22003-10-23 03:48:17 +0000480void DAE::RemoveDeadArgumentsFromFunction(Function *F) {
Chris Lattner13bf28c2003-06-17 22:21:05 +0000481 // Start by computing a new prototype for the function, which is the same as
482 // the old function, but has fewer arguments.
483 const FunctionType *FTy = F->getFunctionType();
484 std::vector<const Type*> Params;
485
Chris Lattner531f9e92005-03-15 04:54:21 +0000486 for (Function::arg_iterator I = F->arg_begin(), E = F->arg_end(); I != E; ++I)
Chris Lattner13bf28c2003-06-17 22:21:05 +0000487 if (!DeadArguments.count(I))
488 Params.push_back(I->getType());
489
Chris Lattner0658cc22003-10-23 03:48:17 +0000490 const Type *RetTy = FTy->getReturnType();
491 if (DeadRetVal.count(F)) {
492 RetTy = Type::VoidTy;
493 DeadRetVal.erase(F);
494 }
495
Chris Lattner05c71fb2003-10-23 17:44:53 +0000496 // Work around LLVM bug PR56: the CWriter cannot emit varargs functions which
497 // have zero fixed arguments.
498 //
Chris Lattner05c71fb2003-10-23 17:44:53 +0000499 bool ExtraArgHack = false;
500 if (Params.empty() && FTy->isVarArg()) {
501 ExtraArgHack = true;
Reid Spencerc635f472006-12-31 05:48:39 +0000502 Params.push_back(Type::Int32Ty);
Chris Lattner05c71fb2003-10-23 17:44:53 +0000503 }
504
Chris Lattner0658cc22003-10-23 03:48:17 +0000505 FunctionType *NFTy = FunctionType::get(RetTy, Params, FTy->isVarArg());
506
Chris Lattner13bf28c2003-06-17 22:21:05 +0000507 // Create the new function body and insert it into the module...
Chris Lattner8d4c36b2007-02-11 01:08:35 +0000508 Function *NF = new Function(NFTy, F->getLinkage());
Chris Lattnerd0525a22005-05-09 01:05:50 +0000509 NF->setCallingConv(F->getCallingConv());
Chris Lattner13bf28c2003-06-17 22:21:05 +0000510 F->getParent()->getFunctionList().insert(F, NF);
Chris Lattner8d4c36b2007-02-11 01:08:35 +0000511 NF->takeName(F);
Chris Lattner13bf28c2003-06-17 22:21:05 +0000512
513 // Loop over all of the callers of the function, transforming the call sites
514 // to pass in a smaller number of arguments into the new function.
515 //
Chris Lattner0658cc22003-10-23 03:48:17 +0000516 std::vector<Value*> Args;
Chris Lattner13bf28c2003-06-17 22:21:05 +0000517 while (!F->use_empty()) {
518 CallSite CS = CallSite::get(F->use_back());
519 Instruction *Call = CS.getInstruction();
Chris Lattner0658cc22003-10-23 03:48:17 +0000520
Chris Lattner13bf28c2003-06-17 22:21:05 +0000521 // Loop over the operands, deleting dead ones...
522 CallSite::arg_iterator AI = CS.arg_begin();
Chris Lattner53db5462005-05-06 05:34:40 +0000523 for (Function::arg_iterator I = F->arg_begin(), E = F->arg_end();
524 I != E; ++I, ++AI)
Chris Lattner0658cc22003-10-23 03:48:17 +0000525 if (!DeadArguments.count(I)) // Remove operands for dead arguments
526 Args.push_back(*AI);
527
Chris Lattner05c71fb2003-10-23 17:44:53 +0000528 if (ExtraArgHack)
Reid Spencerc635f472006-12-31 05:48:39 +0000529 Args.push_back(UndefValue::get(Type::Int32Ty));
Chris Lattner05c71fb2003-10-23 17:44:53 +0000530
531 // Push any varargs arguments on the list
532 for (; AI != CS.arg_end(); ++AI)
533 Args.push_back(*AI);
534
Chris Lattner0658cc22003-10-23 03:48:17 +0000535 Instruction *New;
536 if (InvokeInst *II = dyn_cast<InvokeInst>(Call)) {
Chris Lattnerfae8ab32004-02-08 21:44:31 +0000537 New = new InvokeInst(NF, II->getNormalDest(), II->getUnwindDest(),
Chris Lattner0658cc22003-10-23 03:48:17 +0000538 Args, "", Call);
Chris Lattnerd0525a22005-05-09 01:05:50 +0000539 cast<InvokeInst>(New)->setCallingConv(CS.getCallingConv());
Chris Lattner0658cc22003-10-23 03:48:17 +0000540 } else {
541 New = new CallInst(NF, Args, "", Call);
Chris Lattnerd0525a22005-05-09 01:05:50 +0000542 cast<CallInst>(New)->setCallingConv(CS.getCallingConv());
Chris Lattner324d2ee2005-05-06 06:46:58 +0000543 if (cast<CallInst>(Call)->isTailCall())
544 cast<CallInst>(New)->setTailCall();
Chris Lattner0658cc22003-10-23 03:48:17 +0000545 }
546 Args.clear();
547
548 if (!Call->use_empty()) {
549 if (New->getType() == Type::VoidTy)
550 Call->replaceAllUsesWith(Constant::getNullValue(Call->getType()));
551 else {
552 Call->replaceAllUsesWith(New);
Chris Lattner8d4c36b2007-02-11 01:08:35 +0000553 New->takeName(Call);
Chris Lattner13bf28c2003-06-17 22:21:05 +0000554 }
Chris Lattner0658cc22003-10-23 03:48:17 +0000555 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000556
Chris Lattner0658cc22003-10-23 03:48:17 +0000557 // Finally, remove the old call from the program, reducing the use-count of
558 // F.
559 Call->getParent()->getInstList().erase(Call);
Chris Lattner13bf28c2003-06-17 22:21:05 +0000560 }
561
562 // Since we have now created the new function, splice the body of the old
563 // function right into the new function, leaving the old rotting hulk of the
564 // function empty.
565 NF->getBasicBlockList().splice(NF->begin(), F->getBasicBlockList());
566
567 // Loop over the argument list, transfering uses of the old arguments over to
568 // the new arguments, also transfering over the names as well. While we're at
569 // it, remove the dead arguments from the DeadArguments list.
570 //
Chris Lattner53db5462005-05-06 05:34:40 +0000571 for (Function::arg_iterator I = F->arg_begin(), E = F->arg_end(),
572 I2 = NF->arg_begin();
Chris Lattner13bf28c2003-06-17 22:21:05 +0000573 I != E; ++I)
574 if (!DeadArguments.count(I)) {
575 // If this is a live argument, move the name and users over to the new
576 // version.
577 I->replaceAllUsesWith(I2);
Chris Lattner8d4c36b2007-02-11 01:08:35 +0000578 I2->takeName(I);
Chris Lattner13bf28c2003-06-17 22:21:05 +0000579 ++I2;
580 } else {
581 // If this argument is dead, replace any uses of it with null constants
582 // (these are guaranteed to only be operands to call instructions which
583 // will later be simplified).
584 I->replaceAllUsesWith(Constant::getNullValue(I->getType()));
585 DeadArguments.erase(I);
586 }
587
Chris Lattner0658cc22003-10-23 03:48:17 +0000588 // If we change the return value of the function we must rewrite any return
589 // instructions. Check this now.
590 if (F->getReturnType() != NF->getReturnType())
591 for (Function::iterator BB = NF->begin(), E = NF->end(); BB != E; ++BB)
592 if (ReturnInst *RI = dyn_cast<ReturnInst>(BB->getTerminator())) {
593 new ReturnInst(0, RI);
594 BB->getInstList().erase(RI);
595 }
596
Chris Lattner13bf28c2003-06-17 22:21:05 +0000597 // Now that the old function is dead, delete it.
598 F->getParent()->getFunctionList().erase(F);
599}
600
Chris Lattner4f2cf032004-09-20 04:48:05 +0000601bool DAE::runOnModule(Module &M) {
Chris Lattner13bf28c2003-06-17 22:21:05 +0000602 // First phase: loop through the module, determining which arguments are live.
603 // We assume all arguments are dead unless proven otherwise (allowing us to
Misha Brukman8b2bd4e2003-10-10 17:57:28 +0000604 // determine that dead arguments passed into recursive functions are dead).
Chris Lattner13bf28c2003-06-17 22:21:05 +0000605 //
Bill Wendling8f13b5c2006-11-26 10:02:32 +0000606 DOUT << "DAE - Determining liveness\n";
Chris Lattner67a35bb2006-09-18 07:02:31 +0000607 for (Module::iterator I = M.begin(), E = M.end(); I != E; ) {
608 Function &F = *I++;
609 if (F.getFunctionType()->isVarArg())
610 if (DeleteDeadVarargs(F))
611 continue;
612
613 SurveyFunction(F);
614 }
Chris Lattner0658cc22003-10-23 03:48:17 +0000615
616 // Loop over the instructions to inspect, propagating liveness among arguments
617 // and return values which are MaybeLive.
618
619 while (!InstructionsToInspect.empty()) {
620 Instruction *I = InstructionsToInspect.back();
621 InstructionsToInspect.pop_back();
Misha Brukmanb1c93172005-04-21 23:48:37 +0000622
Chris Lattner0658cc22003-10-23 03:48:17 +0000623 if (ReturnInst *RI = dyn_cast<ReturnInst>(I)) {
624 // For return instructions, we just have to check to see if the return
625 // value for the current function is known now to be alive. If so, any
626 // arguments used by it are now alive, and any call instruction return
627 // value is alive as well.
628 if (LiveRetVal.count(RI->getParent()->getParent()))
629 MarkReturnInstArgumentLive(RI);
630
Chris Lattner13bf28c2003-06-17 22:21:05 +0000631 } else {
Chris Lattner0658cc22003-10-23 03:48:17 +0000632 CallSite CS = CallSite::get(I);
633 assert(CS.getInstruction() && "Unknown instruction for the I2I list!");
Chris Lattner13bf28c2003-06-17 22:21:05 +0000634
Chris Lattner0658cc22003-10-23 03:48:17 +0000635 Function *Callee = CS.getCalledFunction();
Misha Brukmanb1c93172005-04-21 23:48:37 +0000636
Chris Lattner0658cc22003-10-23 03:48:17 +0000637 // If we found a call or invoke instruction on this list, that means that
638 // an argument of the function is a call instruction. If the argument is
639 // live, then the return value of the called instruction is now live.
Chris Lattner13bf28c2003-06-17 22:21:05 +0000640 //
Chris Lattner0658cc22003-10-23 03:48:17 +0000641 CallSite::arg_iterator AI = CS.arg_begin(); // ActualIterator
Chris Lattner53db5462005-05-06 05:34:40 +0000642 for (Function::arg_iterator FI = Callee->arg_begin(),
643 E = Callee->arg_end(); FI != E; ++AI, ++FI) {
Chris Lattner0658cc22003-10-23 03:48:17 +0000644 // If this argument is another call...
645 CallSite ArgCS = CallSite::get(*AI);
646 if (ArgCS.getInstruction() && LiveArguments.count(FI))
647 if (Function *Callee = ArgCS.getCalledFunction())
648 MarkRetValLive(Callee);
649 }
Chris Lattner13bf28c2003-06-17 22:21:05 +0000650 }
651 }
652
653 // Now we loop over all of the MaybeLive arguments, promoting them to be live
654 // arguments if one of the calls that uses the arguments to the calls they are
655 // passed into requires them to be live. Of course this could make other
656 // arguments live, so process callers recursively.
657 //
Chris Lattner0658cc22003-10-23 03:48:17 +0000658 // Because elements can be removed from the MaybeLiveArguments set, copy it to
659 // a temporary vector.
Chris Lattner13bf28c2003-06-17 22:21:05 +0000660 //
661 std::vector<Argument*> TmpArgList(MaybeLiveArguments.begin(),
662 MaybeLiveArguments.end());
663 for (unsigned i = 0, e = TmpArgList.size(); i != e; ++i) {
664 Argument *MLA = TmpArgList[i];
665 if (MaybeLiveArguments.count(MLA) &&
Chris Lattner0658cc22003-10-23 03:48:17 +0000666 isMaybeLiveArgumentNowLive(MLA))
667 MarkArgumentLive(MLA);
Chris Lattner13bf28c2003-06-17 22:21:05 +0000668 }
669
670 // Recover memory early...
671 CallSites.clear();
672
673 // At this point, we know that all arguments in DeadArguments and
674 // MaybeLiveArguments are dead. If the two sets are empty, there is nothing
675 // to do.
Chris Lattner0658cc22003-10-23 03:48:17 +0000676 if (MaybeLiveArguments.empty() && DeadArguments.empty() &&
677 MaybeLiveRetVal.empty() && DeadRetVal.empty())
Chris Lattner13bf28c2003-06-17 22:21:05 +0000678 return false;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000679
Chris Lattner13bf28c2003-06-17 22:21:05 +0000680 // Otherwise, compact into one set, and start eliminating the arguments from
681 // the functions.
682 DeadArguments.insert(MaybeLiveArguments.begin(), MaybeLiveArguments.end());
683 MaybeLiveArguments.clear();
Chris Lattner0658cc22003-10-23 03:48:17 +0000684 DeadRetVal.insert(MaybeLiveRetVal.begin(), MaybeLiveRetVal.end());
685 MaybeLiveRetVal.clear();
686
687 LiveArguments.clear();
688 LiveRetVal.clear();
Chris Lattner13bf28c2003-06-17 22:21:05 +0000689
690 NumArgumentsEliminated += DeadArguments.size();
Chris Lattner0658cc22003-10-23 03:48:17 +0000691 NumRetValsEliminated += DeadRetVal.size();
Chris Lattner13bf28c2003-06-17 22:21:05 +0000692 while (!DeadArguments.empty())
Chris Lattner0658cc22003-10-23 03:48:17 +0000693 RemoveDeadArgumentsFromFunction((*DeadArguments.begin())->getParent());
694
695 while (!DeadRetVal.empty())
696 RemoveDeadArgumentsFromFunction(*DeadRetVal.begin());
Chris Lattner13bf28c2003-06-17 22:21:05 +0000697 return true;
698}