blob: 604a1483c45412bab3a7650648ee25fd98989772 [file] [log] [blame]
Chris Lattner08227e42003-06-17 22:21:05 +00001//===-- DeadArgumentElimination.cpp - Eliminate dead arguments ------------===//
Misha Brukmanfd939082005-04-21 23:48:37 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanfd939082005-04-21 23:48:37 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner08227e42003-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 Lattnerc3afd9b2003-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 Lattner08227e42003-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 Lattner543a0272005-06-24 16:00:46 +000020#define DEBUG_TYPE "deadargelim"
Chris Lattner08227e42003-06-17 22:21:05 +000021#include "llvm/Transforms/IPO.h"
Chris Lattner92044ce2006-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 Lattner4af90ab2006-09-18 07:02:31 +000026#include "llvm/IntrinsicInst.h"
Chris Lattner08227e42003-06-17 22:21:05 +000027#include "llvm/Module.h"
28#include "llvm/Pass.h"
Chris Lattner08227e42003-06-17 22:21:05 +000029#include "llvm/Support/CallSite.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000030#include "llvm/Support/Debug.h"
Chris Lattner58d74912008-03-12 17:45:29 +000031#include "llvm/ADT/SmallVector.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000032#include "llvm/ADT/Statistic.h"
Reid Spencer9133fe22007-02-05 23:32:05 +000033#include "llvm/Support/Compiler.h"
Dan Gohmanc9235d22008-03-21 23:51:57 +000034#include <map>
Chris Lattner08227e42003-06-17 22:21:05 +000035#include <set>
Chris Lattner1e2385b2003-11-21 21:54:22 +000036using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000037
Chris Lattner86453c52006-12-19 22:09:18 +000038STATISTIC(NumArgumentsEliminated, "Number of unread args removed");
39STATISTIC(NumRetValsEliminated , "Number of unused return values removed");
Chris Lattner08227e42003-06-17 22:21:05 +000040
Chris Lattner86453c52006-12-19 22:09:18 +000041namespace {
Chris Lattnerc3afd9b2003-10-23 03:48:17 +000042 /// DAE - The dead argument elimination pass.
43 ///
Reid Spencer9133fe22007-02-05 23:32:05 +000044 class VISIBILITY_HIDDEN DAE : public ModulePass {
Chris Lattnerc3afd9b2003-10-23 03:48:17 +000045 /// Liveness enum - During our initial pass over the program, we determine
46 /// that things are either definately alive, definately dead, or in need of
47 /// interprocedural analysis (MaybeLive).
48 ///
49 enum Liveness { Live, MaybeLive, Dead };
50
51 /// LiveArguments, MaybeLiveArguments, DeadArguments - These sets contain
52 /// all of the arguments in the program. The Dead set contains arguments
53 /// which are completely dead (never used in the function). The MaybeLive
54 /// set contains arguments which are only passed into other function calls,
55 /// thus may be live and may be dead. The Live set contains arguments which
56 /// are known to be alive.
57 ///
58 std::set<Argument*> DeadArguments, MaybeLiveArguments, LiveArguments;
59
60 /// DeadRetVal, MaybeLiveRetVal, LifeRetVal - These sets contain all of the
61 /// functions in the program. The Dead set contains functions whose return
62 /// value is known to be dead. The MaybeLive set contains functions whose
63 /// return values are only used by return instructions, and the Live set
64 /// contains functions whose return values are used, functions that are
65 /// external, and functions that already return void.
66 ///
67 std::set<Function*> DeadRetVal, MaybeLiveRetVal, LiveRetVal;
68
69 /// InstructionsToInspect - As we mark arguments and return values
70 /// MaybeLive, we keep track of which instructions could make the values
71 /// live here. Once the entire program has had the return value and
72 /// arguments analyzed, this set is scanned to promote the MaybeLive objects
73 /// to be Live if they really are used.
74 std::vector<Instruction*> InstructionsToInspect;
75
76 /// CallSites - Keep track of the call sites of functions that have
77 /// MaybeLive arguments or return values.
78 std::multimap<Function*, CallSite> CallSites;
79
80 public:
Nick Lewyckyecd94c82007-05-06 13:37:16 +000081 static char ID; // Pass identification, replacement for typeid
Devang Patel794fd752007-05-01 21:15:47 +000082 DAE() : ModulePass((intptr_t)&ID) {}
Chris Lattnerb12914b2004-09-20 04:48:05 +000083 bool runOnModule(Module &M);
Chris Lattner9b2a14b2003-06-25 04:12:49 +000084
Chris Lattnerfdcc3ac2003-11-05 21:43:02 +000085 virtual bool ShouldHackArguments() const { return false; }
86
Chris Lattner9b2a14b2003-06-25 04:12:49 +000087 private:
Chris Lattnerc3afd9b2003-10-23 03:48:17 +000088 Liveness getArgumentLiveness(const Argument &A);
89 bool isMaybeLiveArgumentNowLive(Argument *Arg);
90
Chris Lattner4af90ab2006-09-18 07:02:31 +000091 bool DeleteDeadVarargs(Function &Fn);
Chris Lattnerc3afd9b2003-10-23 03:48:17 +000092 void SurveyFunction(Function &Fn);
93
94 void MarkArgumentLive(Argument *Arg);
95 void MarkRetValLive(Function *F);
96 void MarkReturnInstArgumentLive(ReturnInst *RI);
Misha Brukmanfd939082005-04-21 23:48:37 +000097
Chris Lattnerc3afd9b2003-10-23 03:48:17 +000098 void RemoveDeadArgumentsFromFunction(Function *F);
Chris Lattner08227e42003-06-17 22:21:05 +000099 };
Dan Gohman844731a2008-05-13 00:00:25 +0000100}
Chris Lattnerfdcc3ac2003-11-05 21:43:02 +0000101
Dan Gohman844731a2008-05-13 00:00:25 +0000102char DAE::ID = 0;
103static RegisterPass<DAE>
104X("deadargelim", "Dead Argument Elimination");
105
106namespace {
Chris Lattnerfdcc3ac2003-11-05 21:43:02 +0000107 /// DAH - DeadArgumentHacking pass - Same as dead argument elimination, but
108 /// deletes arguments to functions which are external. This is only for use
109 /// by bugpoint.
110 struct DAH : public DAE {
Devang Patel19974732007-05-03 01:11:54 +0000111 static char ID;
Chris Lattnerfdcc3ac2003-11-05 21:43:02 +0000112 virtual bool ShouldHackArguments() const { return true; }
113 };
Chris Lattner08227e42003-06-17 22:21:05 +0000114}
115
Dan Gohman844731a2008-05-13 00:00:25 +0000116char DAH::ID = 0;
117static RegisterPass<DAH>
118Y("deadarghaX0r", "Dead Argument Hacking (BUGPOINT USE ONLY; DO NOT USE)");
119
Chris Lattner9b2a14b2003-06-25 04:12:49 +0000120/// createDeadArgEliminationPass - This pass removes arguments from functions
Chris Lattnerfdcc3ac2003-11-05 21:43:02 +0000121/// which are not used by the body of the function.
Chris Lattner9b2a14b2003-06-25 04:12:49 +0000122///
Chris Lattnerb12914b2004-09-20 04:48:05 +0000123ModulePass *llvm::createDeadArgEliminationPass() { return new DAE(); }
124ModulePass *llvm::createDeadArgHackingPass() { return new DAH(); }
Chris Lattner08227e42003-06-17 22:21:05 +0000125
Chris Lattner4af90ab2006-09-18 07:02:31 +0000126/// DeleteDeadVarargs - If this is an function that takes a ... list, and if
127/// llvm.vastart is never called, the varargs list is dead for the function.
128bool DAE::DeleteDeadVarargs(Function &Fn) {
129 assert(Fn.getFunctionType()->isVarArg() && "Function isn't varargs!");
Reid Spencer5cbf9852007-01-30 20:08:39 +0000130 if (Fn.isDeclaration() || !Fn.hasInternalLinkage()) return false;
Duncan Sands110c8352007-12-21 19:16:16 +0000131
Chris Lattner4af90ab2006-09-18 07:02:31 +0000132 // Ensure that the function is only directly called.
133 for (Value::use_iterator I = Fn.use_begin(), E = Fn.use_end(); I != E; ++I) {
134 // If this use is anything other than a call site, give up.
135 CallSite CS = CallSite::get(*I);
136 Instruction *TheCall = CS.getInstruction();
137 if (!TheCall) return false; // Not a direct call site?
Duncan Sands110c8352007-12-21 19:16:16 +0000138
Chris Lattner4af90ab2006-09-18 07:02:31 +0000139 // The addr of this function is passed to the call.
140 if (I.getOperandNo() != 0) return false;
141 }
Duncan Sands110c8352007-12-21 19:16:16 +0000142
Chris Lattner4af90ab2006-09-18 07:02:31 +0000143 // Okay, we know we can transform this function if safe. Scan its body
144 // looking for calls to llvm.vastart.
145 for (Function::iterator BB = Fn.begin(), E = Fn.end(); BB != E; ++BB) {
146 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) {
147 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I)) {
148 if (II->getIntrinsicID() == Intrinsic::vastart)
149 return false;
150 }
151 }
152 }
Duncan Sands110c8352007-12-21 19:16:16 +0000153
Chris Lattner4af90ab2006-09-18 07:02:31 +0000154 // If we get here, there are no calls to llvm.vastart in the function body,
155 // remove the "..." and adjust all the calls.
Duncan Sands110c8352007-12-21 19:16:16 +0000156
Chris Lattner4af90ab2006-09-18 07:02:31 +0000157 // Start by computing a new prototype for the function, which is the same as
158 // the old function, but has fewer arguments.
159 const FunctionType *FTy = Fn.getFunctionType();
160 std::vector<const Type*> Params(FTy->param_begin(), FTy->param_end());
161 FunctionType *NFTy = FunctionType::get(FTy->getReturnType(), Params, false);
162 unsigned NumArgs = Params.size();
Duncan Sands110c8352007-12-21 19:16:16 +0000163
Chris Lattner4af90ab2006-09-18 07:02:31 +0000164 // Create the new function body and insert it into the module...
Gabor Greif051a9502008-04-06 20:25:17 +0000165 Function *NF = Function::Create(NFTy, Fn.getLinkage());
Duncan Sands28c3cff2008-05-26 19:58:59 +0000166 NF->copyAttributesFrom(&Fn);
Chris Lattner4af90ab2006-09-18 07:02:31 +0000167 Fn.getParent()->getFunctionList().insert(&Fn, NF);
Chris Lattner046800a2007-02-11 01:08:35 +0000168 NF->takeName(&Fn);
Duncan Sands110c8352007-12-21 19:16:16 +0000169
Chris Lattner4af90ab2006-09-18 07:02:31 +0000170 // Loop over all of the callers of the function, transforming the call sites
171 // to pass in a smaller number of arguments into the new function.
172 //
173 std::vector<Value*> Args;
174 while (!Fn.use_empty()) {
175 CallSite CS = CallSite::get(Fn.use_back());
176 Instruction *Call = CS.getInstruction();
Duncan Sands110c8352007-12-21 19:16:16 +0000177
Chris Lattnera0bc7fc2007-10-18 18:49:29 +0000178 // Pass all the same arguments.
Chris Lattner4af90ab2006-09-18 07:02:31 +0000179 Args.assign(CS.arg_begin(), CS.arg_begin()+NumArgs);
Duncan Sands110c8352007-12-21 19:16:16 +0000180
Duncan Sandsbfc5ae62008-01-11 23:13:45 +0000181 // Drop any attributes that were on the vararg arguments.
Chris Lattner58d74912008-03-12 17:45:29 +0000182 PAListPtr PAL = CS.getParamAttrs();
183 if (!PAL.isEmpty() && PAL.getSlot(PAL.getNumSlots() - 1).Index > NumArgs) {
184 SmallVector<ParamAttrsWithIndex, 8> ParamAttrsVec;
185 for (unsigned i = 0; PAL.getSlot(i).Index <= NumArgs; ++i)
186 ParamAttrsVec.push_back(PAL.getSlot(i));
187 PAL = PAListPtr::get(ParamAttrsVec.begin(), ParamAttrsVec.end());
Duncan Sandsbfc5ae62008-01-11 23:13:45 +0000188 }
189
Chris Lattner4af90ab2006-09-18 07:02:31 +0000190 Instruction *New;
191 if (InvokeInst *II = dyn_cast<InvokeInst>(Call)) {
Gabor Greif051a9502008-04-06 20:25:17 +0000192 New = InvokeInst::Create(NF, II->getNormalDest(), II->getUnwindDest(),
193 Args.begin(), Args.end(), "", Call);
Chris Lattner4af90ab2006-09-18 07:02:31 +0000194 cast<InvokeInst>(New)->setCallingConv(CS.getCallingConv());
Duncan Sandsbfc5ae62008-01-11 23:13:45 +0000195 cast<InvokeInst>(New)->setParamAttrs(PAL);
Chris Lattner4af90ab2006-09-18 07:02:31 +0000196 } else {
Gabor Greif051a9502008-04-06 20:25:17 +0000197 New = CallInst::Create(NF, Args.begin(), Args.end(), "", Call);
Chris Lattner4af90ab2006-09-18 07:02:31 +0000198 cast<CallInst>(New)->setCallingConv(CS.getCallingConv());
Duncan Sandsbfc5ae62008-01-11 23:13:45 +0000199 cast<CallInst>(New)->setParamAttrs(PAL);
Chris Lattner4af90ab2006-09-18 07:02:31 +0000200 if (cast<CallInst>(Call)->isTailCall())
201 cast<CallInst>(New)->setTailCall();
202 }
203 Args.clear();
Duncan Sands110c8352007-12-21 19:16:16 +0000204
Chris Lattner4af90ab2006-09-18 07:02:31 +0000205 if (!Call->use_empty())
Chris Lattnera0bc7fc2007-10-18 18:49:29 +0000206 Call->replaceAllUsesWith(New);
Duncan Sands110c8352007-12-21 19:16:16 +0000207
Chris Lattner046800a2007-02-11 01:08:35 +0000208 New->takeName(Call);
Duncan Sands110c8352007-12-21 19:16:16 +0000209
Chris Lattner4af90ab2006-09-18 07:02:31 +0000210 // Finally, remove the old call from the program, reducing the use-count of
211 // F.
Chris Lattnera0bc7fc2007-10-18 18:49:29 +0000212 Call->eraseFromParent();
Chris Lattner4af90ab2006-09-18 07:02:31 +0000213 }
Duncan Sands110c8352007-12-21 19:16:16 +0000214
Chris Lattner4af90ab2006-09-18 07:02:31 +0000215 // Since we have now created the new function, splice the body of the old
216 // function right into the new function, leaving the old rotting hulk of the
217 // function empty.
218 NF->getBasicBlockList().splice(NF->begin(), Fn.getBasicBlockList());
Duncan Sands110c8352007-12-21 19:16:16 +0000219
Chris Lattner4af90ab2006-09-18 07:02:31 +0000220 // Loop over the argument list, transfering uses of the old arguments over to
221 // the new arguments, also transfering over the names as well. While we're at
222 // it, remove the dead arguments from the DeadArguments list.
223 //
224 for (Function::arg_iterator I = Fn.arg_begin(), E = Fn.arg_end(),
225 I2 = NF->arg_begin(); I != E; ++I, ++I2) {
226 // Move the name and users over to the new version.
227 I->replaceAllUsesWith(I2);
Chris Lattner046800a2007-02-11 01:08:35 +0000228 I2->takeName(I);
Chris Lattner4af90ab2006-09-18 07:02:31 +0000229 }
Duncan Sands110c8352007-12-21 19:16:16 +0000230
Chris Lattner4af90ab2006-09-18 07:02:31 +0000231 // Finally, nuke the old function.
232 Fn.eraseFromParent();
233 return true;
234}
235
236
Chris Lattnerc3afd9b2003-10-23 03:48:17 +0000237static inline bool CallPassesValueThoughVararg(Instruction *Call,
238 const Value *Arg) {
239 CallSite CS = CallSite::get(Call);
240 const Type *CalledValueTy = CS.getCalledValue()->getType();
241 const Type *FTy = cast<PointerType>(CalledValueTy)->getElementType();
242 unsigned NumFixedArgs = cast<FunctionType>(FTy)->getNumParams();
243 for (CallSite::arg_iterator AI = CS.arg_begin()+NumFixedArgs;
244 AI != CS.arg_end(); ++AI)
245 if (AI->get() == Arg)
246 return true;
Chris Lattner08227e42003-06-17 22:21:05 +0000247 return false;
248}
249
Chris Lattnerc3afd9b2003-10-23 03:48:17 +0000250// getArgumentLiveness - Inspect an argument, determining if is known Live
Chris Lattner08227e42003-06-17 22:21:05 +0000251// (used in a computation), MaybeLive (only passed as an argument to a call), or
252// Dead (not used).
Chris Lattnerc3afd9b2003-10-23 03:48:17 +0000253DAE::Liveness DAE::getArgumentLiveness(const Argument &A) {
Duncan Sandsdc024672007-11-27 13:23:08 +0000254 const Function *F = A.getParent();
Anton Korobeynikovb10308e2007-01-28 13:31:35 +0000255
256 // If this is the return value of a struct function, it's not really dead.
Devang Patel41e23972008-03-03 21:46:28 +0000257 if (F->hasStructRetAttr() && &*(F->arg_begin()) == &A)
Chris Lattner92044ce2006-06-27 21:05:04 +0000258 return Live;
259
260 if (A.use_empty()) // First check, directly dead?
261 return Dead;
Chris Lattner08227e42003-06-17 22:21:05 +0000262
263 // Scan through all of the uses, looking for non-argument passing uses.
264 for (Value::use_const_iterator I = A.use_begin(), E = A.use_end(); I!=E;++I) {
Chris Lattnerc3afd9b2003-10-23 03:48:17 +0000265 // Return instructions do not immediately effect liveness.
266 if (isa<ReturnInst>(*I))
267 continue;
268
Chris Lattner08227e42003-06-17 22:21:05 +0000269 CallSite CS = CallSite::get(const_cast<User*>(*I));
270 if (!CS.getInstruction()) {
271 // If its used by something that is not a call or invoke, it's alive!
Chris Lattnerc3afd9b2003-10-23 03:48:17 +0000272 return Live;
Chris Lattner08227e42003-06-17 22:21:05 +0000273 }
274 // If it's an indirect call, mark it alive...
275 Function *Callee = CS.getCalledFunction();
Chris Lattnerc3afd9b2003-10-23 03:48:17 +0000276 if (!Callee) return Live;
Chris Lattner08227e42003-06-17 22:21:05 +0000277
Chris Lattner97f4b662003-06-18 16:25:51 +0000278 // Check to see if it's passed through a va_arg area: if so, we cannot
279 // remove it.
Chris Lattnerc3afd9b2003-10-23 03:48:17 +0000280 if (CallPassesValueThoughVararg(CS.getInstruction(), &A))
281 return Live; // If passed through va_arg area, we cannot remove it
Chris Lattner08227e42003-06-17 22:21:05 +0000282 }
283
284 return MaybeLive; // It must be used, but only as argument to a function
285}
286
Chris Lattnerc3afd9b2003-10-23 03:48:17 +0000287
288// SurveyFunction - This performs the initial survey of the specified function,
289// checking out whether or not it uses any of its incoming arguments or whether
290// any callers use the return value. This fills in the
291// (Dead|MaybeLive|Live)(Arguments|RetVal) sets.
Chris Lattner08227e42003-06-17 22:21:05 +0000292//
Chris Lattnerc3afd9b2003-10-23 03:48:17 +0000293// We consider arguments of non-internal functions to be intrinsically alive as
294// well as arguments to functions which have their "address taken".
295//
296void DAE::SurveyFunction(Function &F) {
297 bool FunctionIntrinsicallyLive = false;
298 Liveness RetValLiveness = F.getReturnType() == Type::VoidTy ? Live : Dead;
299
Chris Lattnerb6e06312003-11-05 21:53:41 +0000300 if (!F.hasInternalLinkage() &&
Duncan Sandsa3355ff2007-12-03 20:06:50 +0000301 (!ShouldHackArguments() || F.isIntrinsic()))
Chris Lattnerc3afd9b2003-10-23 03:48:17 +0000302 FunctionIntrinsicallyLive = true;
Misha Brukmanfd939082005-04-21 23:48:37 +0000303 else
Chris Lattnerc3afd9b2003-10-23 03:48:17 +0000304 for (Value::use_iterator I = F.use_begin(), E = F.use_end(); I != E; ++I) {
Matthijs Kooijman41335412008-06-05 08:34:25 +0000305 // If the function is PASSED IN as an argument, its address has been taken
306 if (I.getOperandNo() != 0) {
307 FunctionIntrinsicallyLive = true;
308 break;
309 }
310
Chris Lattnerc3afd9b2003-10-23 03:48:17 +0000311 // If this use is anything other than a call site, the function is alive.
312 CallSite CS = CallSite::get(*I);
313 Instruction *TheCall = CS.getInstruction();
314 if (!TheCall) { // Not a direct call site?
315 FunctionIntrinsicallyLive = true;
316 break;
317 }
318
319 // Check to see if the return value is used...
320 if (RetValLiveness != Live)
321 for (Value::use_iterator I = TheCall->use_begin(),
322 E = TheCall->use_end(); I != E; ++I)
323 if (isa<ReturnInst>(cast<Instruction>(*I))) {
324 RetValLiveness = MaybeLive;
325 } else if (isa<CallInst>(cast<Instruction>(*I)) ||
326 isa<InvokeInst>(cast<Instruction>(*I))) {
327 if (CallPassesValueThoughVararg(cast<Instruction>(*I), TheCall) ||
328 !CallSite::get(cast<Instruction>(*I)).getCalledFunction()) {
329 RetValLiveness = Live;
330 break;
331 } else {
332 RetValLiveness = MaybeLive;
333 }
334 } else {
335 RetValLiveness = Live;
336 break;
337 }
Chris Lattnerc3afd9b2003-10-23 03:48:17 +0000338 }
339
340 if (FunctionIntrinsicallyLive) {
Bill Wendling0a81aac2006-11-26 10:02:32 +0000341 DOUT << " Intrinsically live fn: " << F.getName() << "\n";
Chris Lattner19bdc032005-05-06 05:34:40 +0000342 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
343 AI != E; ++AI)
Chris Lattnerc3afd9b2003-10-23 03:48:17 +0000344 LiveArguments.insert(AI);
345 LiveRetVal.insert(&F);
346 return;
347 }
348
349 switch (RetValLiveness) {
350 case Live: LiveRetVal.insert(&F); break;
351 case MaybeLive: MaybeLiveRetVal.insert(&F); break;
352 case Dead: DeadRetVal.insert(&F); break;
353 }
354
Bill Wendling0a81aac2006-11-26 10:02:32 +0000355 DOUT << " Inspecting args for fn: " << F.getName() << "\n";
Chris Lattnerc3afd9b2003-10-23 03:48:17 +0000356
357 // If it is not intrinsically alive, we know that all users of the
358 // function are call sites. Mark all of the arguments live which are
359 // directly used, and keep track of all of the call sites of this function
360 // if there are any arguments we assume that are dead.
361 //
362 bool AnyMaybeLiveArgs = false;
Chris Lattner19bdc032005-05-06 05:34:40 +0000363 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
364 AI != E; ++AI)
Chris Lattnerc3afd9b2003-10-23 03:48:17 +0000365 switch (getArgumentLiveness(*AI)) {
366 case Live:
Bill Wendling0a81aac2006-11-26 10:02:32 +0000367 DOUT << " Arg live by use: " << AI->getName() << "\n";
Chris Lattnerc3afd9b2003-10-23 03:48:17 +0000368 LiveArguments.insert(AI);
369 break;
370 case Dead:
Bill Wendling0a81aac2006-11-26 10:02:32 +0000371 DOUT << " Arg definitely dead: " << AI->getName() <<"\n";
Chris Lattnerc3afd9b2003-10-23 03:48:17 +0000372 DeadArguments.insert(AI);
373 break;
374 case MaybeLive:
Bill Wendling0a81aac2006-11-26 10:02:32 +0000375 DOUT << " Arg only passed to calls: " << AI->getName() << "\n";
Chris Lattnerc3afd9b2003-10-23 03:48:17 +0000376 AnyMaybeLiveArgs = true;
377 MaybeLiveArguments.insert(AI);
378 break;
379 }
380
381 // If there are any "MaybeLive" arguments, we need to check callees of
382 // this function when/if they become alive. Record which functions are
383 // callees...
384 if (AnyMaybeLiveArgs || RetValLiveness == MaybeLive)
385 for (Value::use_iterator I = F.use_begin(), E = F.use_end();
386 I != E; ++I) {
387 if (AnyMaybeLiveArgs)
388 CallSites.insert(std::make_pair(&F, CallSite::get(*I)));
389
390 if (RetValLiveness == MaybeLive)
391 for (Value::use_iterator UI = I->use_begin(), E = I->use_end();
392 UI != E; ++UI)
393 InstructionsToInspect.push_back(cast<Instruction>(*UI));
394 }
395}
396
397// isMaybeLiveArgumentNowLive - Check to see if Arg is alive. At this point, we
398// know that the only uses of Arg are to be passed in as an argument to a
399// function call or return. Check to see if the formal argument passed in is in
400// the LiveArguments set. If so, return true.
401//
402bool DAE::isMaybeLiveArgumentNowLive(Argument *Arg) {
Chris Lattner08227e42003-06-17 22:21:05 +0000403 for (Value::use_iterator I = Arg->use_begin(), E = Arg->use_end(); I!=E; ++I){
Chris Lattnerc3afd9b2003-10-23 03:48:17 +0000404 if (isa<ReturnInst>(*I)) {
405 if (LiveRetVal.count(Arg->getParent())) return true;
406 continue;
407 }
408
Chris Lattner08227e42003-06-17 22:21:05 +0000409 CallSite CS = CallSite::get(*I);
410
411 // We know that this can only be used for direct calls...
Chris Lattnerd6d0d8c2003-11-02 02:06:27 +0000412 Function *Callee = CS.getCalledFunction();
Chris Lattner08227e42003-06-17 22:21:05 +0000413
414 // Loop over all of the arguments (because Arg may be passed into the call
415 // multiple times) and check to see if any are now alive...
416 CallSite::arg_iterator CSAI = CS.arg_begin();
Chris Lattnere4d5c442005-03-15 04:54:21 +0000417 for (Function::arg_iterator AI = Callee->arg_begin(), E = Callee->arg_end();
Chris Lattner08227e42003-06-17 22:21:05 +0000418 AI != E; ++AI, ++CSAI)
419 // If this is the argument we are looking for, check to see if it's alive
420 if (*CSAI == Arg && LiveArguments.count(AI))
421 return true;
422 }
423 return false;
424}
425
Chris Lattnerc3afd9b2003-10-23 03:48:17 +0000426/// MarkArgumentLive - The MaybeLive argument 'Arg' is now known to be alive.
427/// Mark it live in the specified sets and recursively mark arguments in callers
428/// live that are needed to pass in a value.
429///
430void DAE::MarkArgumentLive(Argument *Arg) {
431 std::set<Argument*>::iterator It = MaybeLiveArguments.lower_bound(Arg);
432 if (It == MaybeLiveArguments.end() || *It != Arg) return;
Misha Brukmanfd939082005-04-21 23:48:37 +0000433
Bill Wendling0a81aac2006-11-26 10:02:32 +0000434 DOUT << " MaybeLive argument now live: " << Arg->getName() <<"\n";
Chris Lattnerc3afd9b2003-10-23 03:48:17 +0000435 MaybeLiveArguments.erase(It);
Chris Lattner08227e42003-06-17 22:21:05 +0000436 LiveArguments.insert(Arg);
Misha Brukmanfd939082005-04-21 23:48:37 +0000437
Chris Lattner08227e42003-06-17 22:21:05 +0000438 // Loop over all of the call sites of the function, making any arguments
439 // passed in to provide a value for this argument live as necessary.
440 //
441 Function *Fn = Arg->getParent();
Chris Lattnere4d5c442005-03-15 04:54:21 +0000442 unsigned ArgNo = std::distance(Fn->arg_begin(), Function::arg_iterator(Arg));
Chris Lattner08227e42003-06-17 22:21:05 +0000443
Chris Lattnerc3afd9b2003-10-23 03:48:17 +0000444 std::multimap<Function*, CallSite>::iterator I = CallSites.lower_bound(Fn);
Chris Lattner08227e42003-06-17 22:21:05 +0000445 for (; I != CallSites.end() && I->first == Fn; ++I) {
Chris Lattnerc3afd9b2003-10-23 03:48:17 +0000446 CallSite CS = I->second;
447 Value *ArgVal = *(CS.arg_begin()+ArgNo);
448 if (Argument *ActualArg = dyn_cast<Argument>(ArgVal)) {
449 MarkArgumentLive(ActualArg);
450 } else {
451 // If the value passed in at this call site is a return value computed by
452 // some other call site, make sure to mark the return value at the other
453 // call site as being needed.
454 CallSite ArgCS = CallSite::get(ArgVal);
455 if (ArgCS.getInstruction())
456 if (Function *Fn = ArgCS.getCalledFunction())
457 MarkRetValLive(Fn);
458 }
459 }
460}
461
462/// MarkArgumentLive - The MaybeLive return value for the specified function is
463/// now known to be alive. Propagate this fact to the return instructions which
464/// produce it.
465void DAE::MarkRetValLive(Function *F) {
466 assert(F && "Shame shame, we can't have null pointers here!");
467
468 // Check to see if we already knew it was live
469 std::set<Function*>::iterator I = MaybeLiveRetVal.lower_bound(F);
470 if (I == MaybeLiveRetVal.end() || *I != F) return; // It's already alive!
471
Bill Wendling0a81aac2006-11-26 10:02:32 +0000472 DOUT << " MaybeLive retval now live: " << F->getName() << "\n";
Chris Lattnerc3afd9b2003-10-23 03:48:17 +0000473
474 MaybeLiveRetVal.erase(I);
475 LiveRetVal.insert(F); // It is now known to be live!
476
477 // Loop over all of the functions, noticing that the return value is now live.
478 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
479 if (ReturnInst *RI = dyn_cast<ReturnInst>(BB->getTerminator()))
480 MarkReturnInstArgumentLive(RI);
481}
482
483void DAE::MarkReturnInstArgumentLive(ReturnInst *RI) {
484 Value *Op = RI->getOperand(0);
485 if (Argument *A = dyn_cast<Argument>(Op)) {
486 MarkArgumentLive(A);
487 } else if (CallInst *CI = dyn_cast<CallInst>(Op)) {
488 if (Function *F = CI->getCalledFunction())
489 MarkRetValLive(F);
490 } else if (InvokeInst *II = dyn_cast<InvokeInst>(Op)) {
491 if (Function *F = II->getCalledFunction())
492 MarkRetValLive(F);
Chris Lattner08227e42003-06-17 22:21:05 +0000493 }
494}
495
496// RemoveDeadArgumentsFromFunction - We know that F has dead arguments, as
497// specified by the DeadArguments list. Transform the function and all of the
498// callees of the function to not have these arguments.
499//
Chris Lattnerc3afd9b2003-10-23 03:48:17 +0000500void DAE::RemoveDeadArgumentsFromFunction(Function *F) {
Chris Lattner08227e42003-06-17 22:21:05 +0000501 // Start by computing a new prototype for the function, which is the same as
502 // the old function, but has fewer arguments.
503 const FunctionType *FTy = F->getFunctionType();
504 std::vector<const Type*> Params;
505
Duncan Sandsdc024672007-11-27 13:23:08 +0000506 // Set up to build a new list of parameter attributes
Chris Lattner58d74912008-03-12 17:45:29 +0000507 SmallVector<ParamAttrsWithIndex, 8> ParamAttrsVec;
508 const PAListPtr &PAL = F->getParamAttrs();
Chris Lattner08227e42003-06-17 22:21:05 +0000509
Duncan Sands110c8352007-12-21 19:16:16 +0000510 // The existing function return attributes.
Chris Lattner58d74912008-03-12 17:45:29 +0000511 ParameterAttributes RAttrs = PAL.getParamAttrs(0);
Duncan Sands110c8352007-12-21 19:16:16 +0000512
513 // Make the function return void if the return value is dead.
514 const Type *RetTy = FTy->getReturnType();
515 if (DeadRetVal.count(F)) {
516 RetTy = Type::VoidTy;
Duncan Sands6c3470e2008-01-07 17:16:06 +0000517 RAttrs &= ~ParamAttr::typeIncompatible(RetTy);
Duncan Sands110c8352007-12-21 19:16:16 +0000518 DeadRetVal.erase(F);
519 }
520
521 if (RAttrs)
522 ParamAttrsVec.push_back(ParamAttrsWithIndex::get(0, RAttrs));
523
Duncan Sandsdc024672007-11-27 13:23:08 +0000524 // Construct the new parameter list from non-dead arguments. Also construct
525 // a new set of parameter attributes to correspond.
526 unsigned index = 1;
527 for (Function::arg_iterator I = F->arg_begin(), E = F->arg_end(); I != E;
528 ++I, ++index)
529 if (!DeadArguments.count(I)) {
530 Params.push_back(I->getType());
Chris Lattner58d74912008-03-12 17:45:29 +0000531
532 if (ParameterAttributes Attrs = PAL.getParamAttrs(index))
Duncan Sands110c8352007-12-21 19:16:16 +0000533 ParamAttrsVec.push_back(ParamAttrsWithIndex::get(Params.size(), Attrs));
Duncan Sandsdc024672007-11-27 13:23:08 +0000534 }
535
536 // Reconstruct the ParamAttrsList based on the vector we constructed.
Chris Lattner58d74912008-03-12 17:45:29 +0000537 PAListPtr NewPAL = PAListPtr::get(ParamAttrsVec.begin(), ParamAttrsVec.end());
Chris Lattnerc3afd9b2003-10-23 03:48:17 +0000538
Chris Lattnerff5bf9c2003-10-23 17:44:53 +0000539 // Work around LLVM bug PR56: the CWriter cannot emit varargs functions which
540 // have zero fixed arguments.
541 //
Chris Lattnerff5bf9c2003-10-23 17:44:53 +0000542 bool ExtraArgHack = false;
543 if (Params.empty() && FTy->isVarArg()) {
544 ExtraArgHack = true;
Reid Spencerc5b206b2006-12-31 05:48:39 +0000545 Params.push_back(Type::Int32Ty);
Chris Lattnerff5bf9c2003-10-23 17:44:53 +0000546 }
547
Duncan Sandsdc024672007-11-27 13:23:08 +0000548 // Create the new function type based on the recomputed parameters.
Chris Lattnerc3afd9b2003-10-23 03:48:17 +0000549 FunctionType *NFTy = FunctionType::get(RetTy, Params, FTy->isVarArg());
550
Chris Lattner08227e42003-06-17 22:21:05 +0000551 // Create the new function body and insert it into the module...
Gabor Greif051a9502008-04-06 20:25:17 +0000552 Function *NF = Function::Create(NFTy, F->getLinkage());
Duncan Sands28c3cff2008-05-26 19:58:59 +0000553 NF->copyAttributesFrom(F);
Chris Lattner58d74912008-03-12 17:45:29 +0000554 NF->setParamAttrs(NewPAL);
Chris Lattner08227e42003-06-17 22:21:05 +0000555 F->getParent()->getFunctionList().insert(F, NF);
Chris Lattner046800a2007-02-11 01:08:35 +0000556 NF->takeName(F);
Chris Lattner08227e42003-06-17 22:21:05 +0000557
558 // Loop over all of the callers of the function, transforming the call sites
559 // to pass in a smaller number of arguments into the new function.
560 //
Chris Lattnerc3afd9b2003-10-23 03:48:17 +0000561 std::vector<Value*> Args;
Chris Lattner08227e42003-06-17 22:21:05 +0000562 while (!F->use_empty()) {
563 CallSite CS = CallSite::get(F->use_back());
564 Instruction *Call = CS.getInstruction();
Duncan Sands110c8352007-12-21 19:16:16 +0000565 ParamAttrsVec.clear();
Chris Lattner58d74912008-03-12 17:45:29 +0000566 const PAListPtr &CallPAL = CS.getParamAttrs();
Duncan Sands110c8352007-12-21 19:16:16 +0000567
568 // The call return attributes.
Chris Lattner58d74912008-03-12 17:45:29 +0000569 ParameterAttributes RAttrs = CallPAL.getParamAttrs(0);
Duncan Sands110c8352007-12-21 19:16:16 +0000570 // Adjust in case the function was changed to return void.
Duncan Sands6c3470e2008-01-07 17:16:06 +0000571 RAttrs &= ~ParamAttr::typeIncompatible(NF->getReturnType());
Duncan Sands110c8352007-12-21 19:16:16 +0000572 if (RAttrs)
573 ParamAttrsVec.push_back(ParamAttrsWithIndex::get(0, RAttrs));
Chris Lattnerc3afd9b2003-10-23 03:48:17 +0000574
Chris Lattner08227e42003-06-17 22:21:05 +0000575 // Loop over the operands, deleting dead ones...
576 CallSite::arg_iterator AI = CS.arg_begin();
Duncan Sands110c8352007-12-21 19:16:16 +0000577 index = 1;
Chris Lattner19bdc032005-05-06 05:34:40 +0000578 for (Function::arg_iterator I = F->arg_begin(), E = F->arg_end();
Duncan Sands110c8352007-12-21 19:16:16 +0000579 I != E; ++I, ++AI, ++index)
580 if (!DeadArguments.count(I)) { // Remove operands for dead arguments
Chris Lattnerc3afd9b2003-10-23 03:48:17 +0000581 Args.push_back(*AI);
Chris Lattner58d74912008-03-12 17:45:29 +0000582 if (ParameterAttributes Attrs = CallPAL.getParamAttrs(index))
Duncan Sands110c8352007-12-21 19:16:16 +0000583 ParamAttrsVec.push_back(ParamAttrsWithIndex::get(Args.size(), Attrs));
584 }
585
Chris Lattnerff5bf9c2003-10-23 17:44:53 +0000586 if (ExtraArgHack)
Reid Spencerc5b206b2006-12-31 05:48:39 +0000587 Args.push_back(UndefValue::get(Type::Int32Ty));
Chris Lattnerff5bf9c2003-10-23 17:44:53 +0000588
Evan Chengb2fc2a32008-01-17 04:18:54 +0000589 // Push any varargs arguments on the list. Don't forget their attributes.
590 for (; AI != CS.arg_end(); ++AI) {
Chris Lattnerff5bf9c2003-10-23 17:44:53 +0000591 Args.push_back(*AI);
Chris Lattner58d74912008-03-12 17:45:29 +0000592 if (ParameterAttributes Attrs = CallPAL.getParamAttrs(index++))
Evan Chengb2fc2a32008-01-17 04:18:54 +0000593 ParamAttrsVec.push_back(ParamAttrsWithIndex::get(Args.size(), Attrs));
594 }
595
596 // Reconstruct the ParamAttrsList based on the vector we constructed.
Chris Lattner58d74912008-03-12 17:45:29 +0000597 PAListPtr NewCallPAL = PAListPtr::get(ParamAttrsVec.begin(),
598 ParamAttrsVec.end());
Chris Lattnerff5bf9c2003-10-23 17:44:53 +0000599
Chris Lattnerc3afd9b2003-10-23 03:48:17 +0000600 Instruction *New;
601 if (InvokeInst *II = dyn_cast<InvokeInst>(Call)) {
Gabor Greif051a9502008-04-06 20:25:17 +0000602 New = InvokeInst::Create(NF, II->getNormalDest(), II->getUnwindDest(),
603 Args.begin(), Args.end(), "", Call);
Chris Lattnerf201dbc2005-05-09 01:05:50 +0000604 cast<InvokeInst>(New)->setCallingConv(CS.getCallingConv());
Chris Lattner58d74912008-03-12 17:45:29 +0000605 cast<InvokeInst>(New)->setParamAttrs(NewCallPAL);
Chris Lattnerc3afd9b2003-10-23 03:48:17 +0000606 } else {
Gabor Greif051a9502008-04-06 20:25:17 +0000607 New = CallInst::Create(NF, Args.begin(), Args.end(), "", Call);
Chris Lattnerf201dbc2005-05-09 01:05:50 +0000608 cast<CallInst>(New)->setCallingConv(CS.getCallingConv());
Chris Lattner58d74912008-03-12 17:45:29 +0000609 cast<CallInst>(New)->setParamAttrs(NewCallPAL);
Chris Lattner1430ef12005-05-06 06:46:58 +0000610 if (cast<CallInst>(Call)->isTailCall())
611 cast<CallInst>(New)->setTailCall();
Chris Lattnerc3afd9b2003-10-23 03:48:17 +0000612 }
613 Args.clear();
614
615 if (!Call->use_empty()) {
616 if (New->getType() == Type::VoidTy)
617 Call->replaceAllUsesWith(Constant::getNullValue(Call->getType()));
618 else {
619 Call->replaceAllUsesWith(New);
Chris Lattner046800a2007-02-11 01:08:35 +0000620 New->takeName(Call);
Chris Lattner08227e42003-06-17 22:21:05 +0000621 }
Chris Lattnerc3afd9b2003-10-23 03:48:17 +0000622 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000623
Chris Lattnerc3afd9b2003-10-23 03:48:17 +0000624 // Finally, remove the old call from the program, reducing the use-count of
625 // F.
Matthijs Kooijman494661c2008-05-30 12:35:46 +0000626 Call->eraseFromParent();
Chris Lattner08227e42003-06-17 22:21:05 +0000627 }
628
629 // Since we have now created the new function, splice the body of the old
630 // function right into the new function, leaving the old rotting hulk of the
631 // function empty.
632 NF->getBasicBlockList().splice(NF->begin(), F->getBasicBlockList());
633
634 // Loop over the argument list, transfering uses of the old arguments over to
635 // the new arguments, also transfering over the names as well. While we're at
636 // it, remove the dead arguments from the DeadArguments list.
637 //
Chris Lattner19bdc032005-05-06 05:34:40 +0000638 for (Function::arg_iterator I = F->arg_begin(), E = F->arg_end(),
639 I2 = NF->arg_begin();
Chris Lattner08227e42003-06-17 22:21:05 +0000640 I != E; ++I)
641 if (!DeadArguments.count(I)) {
642 // If this is a live argument, move the name and users over to the new
643 // version.
644 I->replaceAllUsesWith(I2);
Chris Lattner046800a2007-02-11 01:08:35 +0000645 I2->takeName(I);
Chris Lattner08227e42003-06-17 22:21:05 +0000646 ++I2;
647 } else {
648 // If this argument is dead, replace any uses of it with null constants
649 // (these are guaranteed to only be operands to call instructions which
650 // will later be simplified).
651 I->replaceAllUsesWith(Constant::getNullValue(I->getType()));
652 DeadArguments.erase(I);
653 }
654
Chris Lattnerc3afd9b2003-10-23 03:48:17 +0000655 // If we change the return value of the function we must rewrite any return
656 // instructions. Check this now.
657 if (F->getReturnType() != NF->getReturnType())
658 for (Function::iterator BB = NF->begin(), E = NF->end(); BB != E; ++BB)
659 if (ReturnInst *RI = dyn_cast<ReturnInst>(BB->getTerminator())) {
Gabor Greif051a9502008-04-06 20:25:17 +0000660 ReturnInst::Create(0, RI);
Chris Lattnerc3afd9b2003-10-23 03:48:17 +0000661 BB->getInstList().erase(RI);
662 }
663
Chris Lattner08227e42003-06-17 22:21:05 +0000664 // Now that the old function is dead, delete it.
Matthijs Kooijman494661c2008-05-30 12:35:46 +0000665 F->eraseFromParent();
Chris Lattner08227e42003-06-17 22:21:05 +0000666}
667
Chris Lattnerb12914b2004-09-20 04:48:05 +0000668bool DAE::runOnModule(Module &M) {
Chris Lattner701bc422007-11-15 06:10:55 +0000669 bool Changed = false;
670 // First pass: Do a simple check to see if any functions can have their "..."
671 // removed. We can do this if they never call va_start. This loop cannot be
672 // fused with the next loop, because deleting a function invalidates
673 // information computed while surveying other functions.
674 DOUT << "DAE - Deleting dead varargs\n";
675 for (Module::iterator I = M.begin(), E = M.end(); I != E; ) {
676 Function &F = *I++;
677 if (F.getFunctionType()->isVarArg())
678 Changed |= DeleteDeadVarargs(F);
679 }
680
681 // Second phase:loop through the module, determining which arguments are live.
Chris Lattner08227e42003-06-17 22:21:05 +0000682 // We assume all arguments are dead unless proven otherwise (allowing us to
Misha Brukmancf00c4a2003-10-10 17:57:28 +0000683 // determine that dead arguments passed into recursive functions are dead).
Chris Lattner08227e42003-06-17 22:21:05 +0000684 //
Bill Wendling0a81aac2006-11-26 10:02:32 +0000685 DOUT << "DAE - Determining liveness\n";
Chris Lattner701bc422007-11-15 06:10:55 +0000686 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
687 SurveyFunction(*I);
Chris Lattnerc3afd9b2003-10-23 03:48:17 +0000688
689 // Loop over the instructions to inspect, propagating liveness among arguments
690 // and return values which are MaybeLive.
Chris Lattnerc3afd9b2003-10-23 03:48:17 +0000691 while (!InstructionsToInspect.empty()) {
692 Instruction *I = InstructionsToInspect.back();
693 InstructionsToInspect.pop_back();
Misha Brukmanfd939082005-04-21 23:48:37 +0000694
Chris Lattnerc3afd9b2003-10-23 03:48:17 +0000695 if (ReturnInst *RI = dyn_cast<ReturnInst>(I)) {
696 // For return instructions, we just have to check to see if the return
697 // value for the current function is known now to be alive. If so, any
698 // arguments used by it are now alive, and any call instruction return
699 // value is alive as well.
700 if (LiveRetVal.count(RI->getParent()->getParent()))
701 MarkReturnInstArgumentLive(RI);
702
Chris Lattner08227e42003-06-17 22:21:05 +0000703 } else {
Chris Lattnerc3afd9b2003-10-23 03:48:17 +0000704 CallSite CS = CallSite::get(I);
705 assert(CS.getInstruction() && "Unknown instruction for the I2I list!");
Chris Lattner08227e42003-06-17 22:21:05 +0000706
Chris Lattnerc3afd9b2003-10-23 03:48:17 +0000707 Function *Callee = CS.getCalledFunction();
Misha Brukmanfd939082005-04-21 23:48:37 +0000708
Chris Lattnerc3afd9b2003-10-23 03:48:17 +0000709 // If we found a call or invoke instruction on this list, that means that
710 // an argument of the function is a call instruction. If the argument is
711 // live, then the return value of the called instruction is now live.
Chris Lattner08227e42003-06-17 22:21:05 +0000712 //
Chris Lattnerc3afd9b2003-10-23 03:48:17 +0000713 CallSite::arg_iterator AI = CS.arg_begin(); // ActualIterator
Chris Lattner19bdc032005-05-06 05:34:40 +0000714 for (Function::arg_iterator FI = Callee->arg_begin(),
715 E = Callee->arg_end(); FI != E; ++AI, ++FI) {
Chris Lattnerc3afd9b2003-10-23 03:48:17 +0000716 // If this argument is another call...
717 CallSite ArgCS = CallSite::get(*AI);
718 if (ArgCS.getInstruction() && LiveArguments.count(FI))
719 if (Function *Callee = ArgCS.getCalledFunction())
720 MarkRetValLive(Callee);
721 }
Chris Lattner08227e42003-06-17 22:21:05 +0000722 }
723 }
724
725 // Now we loop over all of the MaybeLive arguments, promoting them to be live
726 // arguments if one of the calls that uses the arguments to the calls they are
727 // passed into requires them to be live. Of course this could make other
728 // arguments live, so process callers recursively.
729 //
Chris Lattnerc3afd9b2003-10-23 03:48:17 +0000730 // Because elements can be removed from the MaybeLiveArguments set, copy it to
731 // a temporary vector.
Chris Lattner08227e42003-06-17 22:21:05 +0000732 //
733 std::vector<Argument*> TmpArgList(MaybeLiveArguments.begin(),
734 MaybeLiveArguments.end());
735 for (unsigned i = 0, e = TmpArgList.size(); i != e; ++i) {
736 Argument *MLA = TmpArgList[i];
737 if (MaybeLiveArguments.count(MLA) &&
Chris Lattnerc3afd9b2003-10-23 03:48:17 +0000738 isMaybeLiveArgumentNowLive(MLA))
739 MarkArgumentLive(MLA);
Chris Lattner08227e42003-06-17 22:21:05 +0000740 }
741
742 // Recover memory early...
743 CallSites.clear();
744
745 // At this point, we know that all arguments in DeadArguments and
746 // MaybeLiveArguments are dead. If the two sets are empty, there is nothing
747 // to do.
Chris Lattnerc3afd9b2003-10-23 03:48:17 +0000748 if (MaybeLiveArguments.empty() && DeadArguments.empty() &&
749 MaybeLiveRetVal.empty() && DeadRetVal.empty())
Chris Lattner701bc422007-11-15 06:10:55 +0000750 return Changed;
Misha Brukmanfd939082005-04-21 23:48:37 +0000751
Chris Lattner08227e42003-06-17 22:21:05 +0000752 // Otherwise, compact into one set, and start eliminating the arguments from
753 // the functions.
754 DeadArguments.insert(MaybeLiveArguments.begin(), MaybeLiveArguments.end());
755 MaybeLiveArguments.clear();
Chris Lattnerc3afd9b2003-10-23 03:48:17 +0000756 DeadRetVal.insert(MaybeLiveRetVal.begin(), MaybeLiveRetVal.end());
757 MaybeLiveRetVal.clear();
758
759 LiveArguments.clear();
760 LiveRetVal.clear();
Chris Lattner08227e42003-06-17 22:21:05 +0000761
762 NumArgumentsEliminated += DeadArguments.size();
Chris Lattnerc3afd9b2003-10-23 03:48:17 +0000763 NumRetValsEliminated += DeadRetVal.size();
Chris Lattner08227e42003-06-17 22:21:05 +0000764 while (!DeadArguments.empty())
Chris Lattnerc3afd9b2003-10-23 03:48:17 +0000765 RemoveDeadArgumentsFromFunction((*DeadArguments.begin())->getParent());
766
767 while (!DeadRetVal.empty())
768 RemoveDeadArgumentsFromFunction(*DeadRetVal.begin());
Chris Lattner08227e42003-06-17 22:21:05 +0000769 return true;
770}