blob: 5538247b7ee2cdf3d6ba89cefffc9f939ed37e73 [file] [log] [blame]
Chris Lattner9e7cc2f2004-05-23 21:21:17 +00001//===-- ArgumentPromotion.cpp - Promote by-reference arguments ------------===//
Misha Brukmanfd939082005-04-21 23:48:37 +00002//
Chris Lattnered570a72004-03-07 21:29:54 +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//
Chris Lattnered570a72004-03-07 21:29:54 +00008//===----------------------------------------------------------------------===//
9//
10// This pass promotes "by reference" arguments to be "by value" arguments. In
11// practice, this means looking for internal functions that have pointer
Gordon Henriksen55cbec32007-10-26 03:03:51 +000012// arguments. If it can prove, through the use of alias analysis, that an
13// argument is *only* loaded, then it can pass the value into the function
Chris Lattnered570a72004-03-07 21:29:54 +000014// instead of the address of the value. This can cause recursive simplification
Chris Lattner9e7cc2f2004-05-23 21:21:17 +000015// of code and lead to the elimination of allocas (especially in C++ template
16// code like the STL).
Chris Lattnered570a72004-03-07 21:29:54 +000017//
Chris Lattner9440db82004-03-08 01:04:36 +000018// This pass also handles aggregate arguments that are passed into a function,
19// scalarizing them if the elements of the aggregate are only loaded. Note that
Gordon Henriksen55cbec32007-10-26 03:03:51 +000020// it refuses to scalarize aggregates which would require passing in more than
21// three operands to the function, because passing thousands of operands for a
22// large array or structure is unprofitable!
Chris Lattner9440db82004-03-08 01:04:36 +000023//
Chris Lattnered570a72004-03-07 21:29:54 +000024// Note that this transformation could also be done for arguments that are only
Gordon Henriksen55cbec32007-10-26 03:03:51 +000025// stored to (returning the value instead), but does not currently. This case
26// would be best handled when and if LLVM begins supporting multiple return
27// values from functions.
Chris Lattnered570a72004-03-07 21:29:54 +000028//
29//===----------------------------------------------------------------------===//
30
Chris Lattner9e7cc2f2004-05-23 21:21:17 +000031#define DEBUG_TYPE "argpromotion"
Chris Lattnered570a72004-03-07 21:29:54 +000032#include "llvm/Transforms/IPO.h"
33#include "llvm/Constants.h"
34#include "llvm/DerivedTypes.h"
35#include "llvm/Module.h"
Chris Lattner5eb6f6c2004-09-18 00:34:13 +000036#include "llvm/CallGraphSCCPass.h"
Chris Lattnered570a72004-03-07 21:29:54 +000037#include "llvm/Instructions.h"
Duncan Sandsdc024672007-11-27 13:23:08 +000038#include "llvm/ParameterAttributes.h"
Chris Lattnered570a72004-03-07 21:29:54 +000039#include "llvm/Analysis/AliasAnalysis.h"
Chris Lattner5eb6f6c2004-09-18 00:34:13 +000040#include "llvm/Analysis/CallGraph.h"
Chris Lattnered570a72004-03-07 21:29:54 +000041#include "llvm/Target/TargetData.h"
42#include "llvm/Support/CallSite.h"
43#include "llvm/Support/CFG.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000044#include "llvm/Support/Debug.h"
45#include "llvm/ADT/DepthFirstIterator.h"
46#include "llvm/ADT/Statistic.h"
47#include "llvm/ADT/StringExtras.h"
Reid Spencer9133fe22007-02-05 23:32:05 +000048#include "llvm/Support/Compiler.h"
Chris Lattnered570a72004-03-07 21:29:54 +000049#include <set>
50using namespace llvm;
51
Chris Lattner86453c52006-12-19 22:09:18 +000052STATISTIC(NumArgumentsPromoted , "Number of pointer arguments promoted");
53STATISTIC(NumAggregatesPromoted, "Number of aggregate arguments promoted");
54STATISTIC(NumArgumentsDead , "Number of dead pointer args eliminated");
Chris Lattnered570a72004-03-07 21:29:54 +000055
Chris Lattner86453c52006-12-19 22:09:18 +000056namespace {
Chris Lattnered570a72004-03-07 21:29:54 +000057 /// ArgPromotion - The 'by reference' to 'by value' argument promotion pass.
58 ///
Reid Spencer9133fe22007-02-05 23:32:05 +000059 struct VISIBILITY_HIDDEN ArgPromotion : public CallGraphSCCPass {
Chris Lattnered570a72004-03-07 21:29:54 +000060 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
61 AU.addRequired<AliasAnalysis>();
62 AU.addRequired<TargetData>();
Chris Lattner5eb6f6c2004-09-18 00:34:13 +000063 CallGraphSCCPass::getAnalysisUsage(AU);
Chris Lattnered570a72004-03-07 21:29:54 +000064 }
65
Chris Lattner5eb6f6c2004-09-18 00:34:13 +000066 virtual bool runOnSCC(const std::vector<CallGraphNode *> &SCC);
Nick Lewyckyecd94c82007-05-06 13:37:16 +000067 static char ID; // Pass identification, replacement for typeid
Devang Patel794fd752007-05-01 21:15:47 +000068 ArgPromotion() : CallGraphSCCPass((intptr_t)&ID) {}
69
Chris Lattnered570a72004-03-07 21:29:54 +000070 private:
Chris Lattner5eb6f6c2004-09-18 00:34:13 +000071 bool PromoteArguments(CallGraphNode *CGN);
Misha Brukmanfd939082005-04-21 23:48:37 +000072 bool isSafeToPromoteArgument(Argument *Arg) const;
Chris Lattner5eb6f6c2004-09-18 00:34:13 +000073 Function *DoPromotion(Function *F, std::vector<Argument*> &ArgsToPromote);
Chris Lattnered570a72004-03-07 21:29:54 +000074 };
75
Devang Patel19974732007-05-03 01:11:54 +000076 char ArgPromotion::ID = 0;
Chris Lattner7f8897f2006-08-27 22:42:52 +000077 RegisterPass<ArgPromotion> X("argpromotion",
78 "Promote 'by reference' arguments to scalars");
Chris Lattnered570a72004-03-07 21:29:54 +000079}
80
Devang Patelc71ca3c2007-01-26 00:47:38 +000081Pass *llvm::createArgumentPromotionPass() {
Chris Lattnered570a72004-03-07 21:29:54 +000082 return new ArgPromotion();
83}
84
Chris Lattner5eb6f6c2004-09-18 00:34:13 +000085bool ArgPromotion::runOnSCC(const std::vector<CallGraphNode *> &SCC) {
86 bool Changed = false, LocalChange;
Chris Lattnered570a72004-03-07 21:29:54 +000087
Chris Lattnerf5afcab2004-09-19 01:05:16 +000088 do { // Iterate until we stop promoting from this SCC.
Chris Lattner5eb6f6c2004-09-18 00:34:13 +000089 LocalChange = false;
90 // Attempt to promote arguments from all functions in this SCC.
91 for (unsigned i = 0, e = SCC.size(); i != e; ++i)
92 LocalChange |= PromoteArguments(SCC[i]);
93 Changed |= LocalChange; // Remember that we changed something.
94 } while (LocalChange);
Misha Brukmanfd939082005-04-21 23:48:37 +000095
Chris Lattnered570a72004-03-07 21:29:54 +000096 return Changed;
97}
98
Chris Lattner9e7cc2f2004-05-23 21:21:17 +000099/// PromoteArguments - This method checks the specified function to see if there
100/// are any promotable arguments and if it is safe to promote the function (for
101/// example, all callers are direct). If safe to promote some arguments, it
102/// calls the DoPromotion method.
103///
Chris Lattner5eb6f6c2004-09-18 00:34:13 +0000104bool ArgPromotion::PromoteArguments(CallGraphNode *CGN) {
105 Function *F = CGN->getFunction();
106
107 // Make sure that it is local to this module.
108 if (!F || !F->hasInternalLinkage()) return false;
Chris Lattnered570a72004-03-07 21:29:54 +0000109
110 // First check: see if there are any pointer arguments! If not, quick exit.
111 std::vector<Argument*> PointerArgs;
Chris Lattnere4d5c442005-03-15 04:54:21 +0000112 for (Function::arg_iterator I = F->arg_begin(), E = F->arg_end(); I != E; ++I)
Chris Lattnered570a72004-03-07 21:29:54 +0000113 if (isa<PointerType>(I->getType()))
114 PointerArgs.push_back(I);
115 if (PointerArgs.empty()) return false;
116
117 // Second check: make sure that all callers are direct callers. We can't
118 // transform functions that have indirect callers.
119 for (Value::use_iterator UI = F->use_begin(), E = F->use_end();
Chris Lattner7db5a6d2004-03-07 22:43:27 +0000120 UI != E; ++UI) {
121 CallSite CS = CallSite::get(*UI);
Chris Lattner9e7cc2f2004-05-23 21:21:17 +0000122 if (!CS.getInstruction()) // "Taking the address" of the function
123 return false;
124
125 // Ensure that this call site is CALLING the function, not passing it as
126 // an argument.
127 for (CallSite::arg_iterator AI = CS.arg_begin(), E = CS.arg_end();
128 AI != E; ++AI)
129 if (*AI == F) return false; // Passing the function address in!
Chris Lattner7db5a6d2004-03-07 22:43:27 +0000130 }
Chris Lattnered570a72004-03-07 21:29:54 +0000131
132 // Check to see which arguments are promotable. If an argument is not
133 // promotable, remove it from the PointerArgs vector.
134 for (unsigned i = 0; i != PointerArgs.size(); ++i)
135 if (!isSafeToPromoteArgument(PointerArgs[i])) {
136 std::swap(PointerArgs[i--], PointerArgs.back());
137 PointerArgs.pop_back();
138 }
139
140 // No promotable pointer arguments.
141 if (PointerArgs.empty()) return false;
142
Duncan Sandsdc024672007-11-27 13:23:08 +0000143 // Okay, promote all of the arguments and rewrite the callees!
Chris Lattner5eb6f6c2004-09-18 00:34:13 +0000144 Function *NewF = DoPromotion(F, PointerArgs);
145
Duncan Sandsdc024672007-11-27 13:23:08 +0000146 // Update the call graph to know that the function has been transformed.
Chris Lattner5eb6f6c2004-09-18 00:34:13 +0000147 getAnalysis<CallGraph>().changeFunction(F, NewF);
Chris Lattnered570a72004-03-07 21:29:54 +0000148 return true;
149}
150
Chris Lattner11a3d7b2004-11-13 23:31:34 +0000151/// IsAlwaysValidPointer - Return true if the specified pointer is always legal
152/// to load.
153static bool IsAlwaysValidPointer(Value *V) {
154 if (isa<AllocaInst>(V) || isa<GlobalVariable>(V)) return true;
155 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(V))
156 return IsAlwaysValidPointer(GEP->getOperand(0));
157 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(V))
158 if (CE->getOpcode() == Instruction::GetElementPtr)
159 return IsAlwaysValidPointer(CE->getOperand(0));
160
161 return false;
162}
163
164/// AllCalleesPassInValidPointerForArgument - Return true if we can prove that
165/// all callees pass in a valid pointer for the specified function argument.
166static bool AllCalleesPassInValidPointerForArgument(Argument *Arg) {
167 Function *Callee = Arg->getParent();
168
Chris Lattner93e985f2007-02-13 02:10:56 +0000169 unsigned ArgNo = std::distance(Callee->arg_begin(),
170 Function::arg_iterator(Arg));
Chris Lattner11a3d7b2004-11-13 23:31:34 +0000171
172 // Look at all call sites of the function. At this pointer we know we only
173 // have direct callees.
174 for (Value::use_iterator UI = Callee->use_begin(), E = Callee->use_end();
175 UI != E; ++UI) {
176 CallSite CS = CallSite::get(*UI);
177 assert(CS.getInstruction() && "Should only have direct calls!");
178
179 if (!IsAlwaysValidPointer(CS.getArgument(ArgNo)))
180 return false;
181 }
182 return true;
183}
184
Chris Lattner9e7cc2f2004-05-23 21:21:17 +0000185
186/// isSafeToPromoteArgument - As you might guess from the name of this method,
187/// it checks to see if it is both safe and useful to promote the argument.
188/// This method limits promotion of aggregates to only promote up to three
189/// elements of the aggregate in order to avoid exploding the number of
190/// arguments passed in.
Chris Lattnered570a72004-03-07 21:29:54 +0000191bool ArgPromotion::isSafeToPromoteArgument(Argument *Arg) const {
Chris Lattner9440db82004-03-08 01:04:36 +0000192 // We can only promote this argument if all of the uses are loads, or are GEP
193 // instructions (with constant indices) that are subsequently loaded.
Chris Lattner11a3d7b2004-11-13 23:31:34 +0000194 bool HasLoadInEntryBlock = false;
195 BasicBlock *EntryBlock = Arg->getParent()->begin();
Chris Lattnered570a72004-03-07 21:29:54 +0000196 std::vector<LoadInst*> Loads;
Chris Lattnerbeabf452004-06-21 00:07:58 +0000197 std::vector<std::vector<ConstantInt*> > GEPIndices;
Chris Lattnered570a72004-03-07 21:29:54 +0000198 for (Value::use_iterator UI = Arg->use_begin(), E = Arg->use_end();
199 UI != E; ++UI)
200 if (LoadInst *LI = dyn_cast<LoadInst>(*UI)) {
201 if (LI->isVolatile()) return false; // Don't hack volatile loads
202 Loads.push_back(LI);
Chris Lattner11a3d7b2004-11-13 23:31:34 +0000203 HasLoadInEntryBlock |= LI->getParent() == EntryBlock;
Chris Lattner9440db82004-03-08 01:04:36 +0000204 } else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(*UI)) {
205 if (GEP->use_empty()) {
206 // Dead GEP's cause trouble later. Just remove them if we run into
207 // them.
Chris Lattner9e7cc2f2004-05-23 21:21:17 +0000208 getAnalysis<AliasAnalysis>().deleteValue(GEP);
Chris Lattner9440db82004-03-08 01:04:36 +0000209 GEP->getParent()->getInstList().erase(GEP);
210 return isSafeToPromoteArgument(Arg);
211 }
212 // Ensure that all of the indices are constants.
Chris Lattnerbeabf452004-06-21 00:07:58 +0000213 std::vector<ConstantInt*> Operands;
Chris Lattner9440db82004-03-08 01:04:36 +0000214 for (unsigned i = 1, e = GEP->getNumOperands(); i != e; ++i)
Chris Lattnerbeabf452004-06-21 00:07:58 +0000215 if (ConstantInt *C = dyn_cast<ConstantInt>(GEP->getOperand(i)))
Chris Lattner9440db82004-03-08 01:04:36 +0000216 Operands.push_back(C);
217 else
218 return false; // Not a constant operand GEP!
219
220 // Ensure that the only users of the GEP are load instructions.
221 for (Value::use_iterator UI = GEP->use_begin(), E = GEP->use_end();
222 UI != E; ++UI)
223 if (LoadInst *LI = dyn_cast<LoadInst>(*UI)) {
224 if (LI->isVolatile()) return false; // Don't hack volatile loads
225 Loads.push_back(LI);
Chris Lattner11a3d7b2004-11-13 23:31:34 +0000226 HasLoadInEntryBlock |= LI->getParent() == EntryBlock;
Chris Lattner9440db82004-03-08 01:04:36 +0000227 } else {
228 return false;
229 }
230
Chris Lattner9e7cc2f2004-05-23 21:21:17 +0000231 // See if there is already a GEP with these indices. If not, check to
232 // make sure that we aren't promoting too many elements. If so, nothing
233 // to do.
Chris Lattner9440db82004-03-08 01:04:36 +0000234 if (std::find(GEPIndices.begin(), GEPIndices.end(), Operands) ==
235 GEPIndices.end()) {
236 if (GEPIndices.size() == 3) {
Bill Wendling0a81aac2006-11-26 10:02:32 +0000237 DOUT << "argpromotion disable promoting argument '"
238 << Arg->getName() << "' because it would require adding more "
239 << "than 3 arguments to the function.\n";
Chris Lattner9440db82004-03-08 01:04:36 +0000240 // We limit aggregate promotion to only promoting up to three elements
241 // of the aggregate.
242 return false;
243 }
244 GEPIndices.push_back(Operands);
245 }
246 } else {
247 return false; // Not a load or a GEP.
248 }
Chris Lattnered570a72004-03-07 21:29:54 +0000249
Chris Lattner9e7cc2f2004-05-23 21:21:17 +0000250 if (Loads.empty()) return true; // No users, this is a dead argument.
Chris Lattnered570a72004-03-07 21:29:54 +0000251
Chris Lattner11a3d7b2004-11-13 23:31:34 +0000252 // If we decide that we want to promote this argument, the value is going to
253 // be unconditionally loaded in all callees. This is only safe to do if the
254 // pointer was going to be unconditionally loaded anyway (i.e. there is a load
255 // of the pointer in the entry block of the function) or if we can prove that
256 // all pointers passed in are always to legal locations (for example, no null
257 // pointers are passed in, no pointers to free'd memory, etc).
Evan Cheng99435d32006-10-03 07:26:07 +0000258 if (!HasLoadInEntryBlock && !AllCalleesPassInValidPointerForArgument(Arg))
Chris Lattner11a3d7b2004-11-13 23:31:34 +0000259 return false; // Cannot prove that this is safe!!
260
261 // Okay, now we know that the argument is only used by load instructions and
262 // it is safe to unconditionally load the pointer. Use alias analysis to
263 // check to see if the pointer is guaranteed to not be modified from entry of
264 // the function to each of the load instructions.
Chris Lattnered570a72004-03-07 21:29:54 +0000265
266 // Because there could be several/many load instructions, remember which
267 // blocks we know to be transparent to the load.
268 std::set<BasicBlock*> TranspBlocks;
Owen Anderson46f022a2006-09-15 05:22:51 +0000269
270 AliasAnalysis &AA = getAnalysis<AliasAnalysis>();
Chris Lattner9440db82004-03-08 01:04:36 +0000271 TargetData &TD = getAnalysis<TargetData>();
Chris Lattnered570a72004-03-07 21:29:54 +0000272
273 for (unsigned i = 0, e = Loads.size(); i != e; ++i) {
274 // Check to see if the load is invalidated from the start of the block to
275 // the load itself.
276 LoadInst *Load = Loads[i];
277 BasicBlock *BB = Load->getParent();
Chris Lattner9440db82004-03-08 01:04:36 +0000278
279 const PointerType *LoadTy =
280 cast<PointerType>(Load->getOperand(0)->getType());
Duncan Sands514ab342007-11-01 20:53:16 +0000281 unsigned LoadSize = (unsigned)TD.getTypeStoreSize(LoadTy->getElementType());
Chris Lattner9440db82004-03-08 01:04:36 +0000282
Chris Lattnered570a72004-03-07 21:29:54 +0000283 if (AA.canInstructionRangeModify(BB->front(), *Load, Arg, LoadSize))
284 return false; // Pointer is invalidated!
285
286 // Now check every path from the entry block to the load for transparency.
287 // To do this, we perform a depth first search on the inverse CFG from the
288 // loading block.
289 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI)
290 for (idf_ext_iterator<BasicBlock*> I = idf_ext_begin(*PI, TranspBlocks),
291 E = idf_ext_end(*PI, TranspBlocks); I != E; ++I)
292 if (AA.canBasicBlockModify(**I, Arg, LoadSize))
293 return false;
294 }
295
296 // If the path from the entry of the function to each load is free of
297 // instructions that potentially invalidate the load, we can make the
298 // transformation!
299 return true;
300}
301
Chris Lattnerbeabf452004-06-21 00:07:58 +0000302namespace {
303 /// GEPIdxComparator - Provide a strong ordering for GEP indices. All Value*
304 /// elements are instances of ConstantInt.
305 ///
306 struct GEPIdxComparator {
307 bool operator()(const std::vector<Value*> &LHS,
308 const std::vector<Value*> &RHS) const {
309 unsigned idx = 0;
310 for (; idx < LHS.size() && idx < RHS.size(); ++idx) {
311 if (LHS[idx] != RHS[idx]) {
Reid Spencerb83eb642006-10-20 07:07:24 +0000312 return cast<ConstantInt>(LHS[idx])->getZExtValue() <
313 cast<ConstantInt>(RHS[idx])->getZExtValue();
Chris Lattnerbeabf452004-06-21 00:07:58 +0000314 }
315 }
316
317 // Return less than if we ran out of stuff in LHS and we didn't run out of
318 // stuff in RHS.
319 return idx == LHS.size() && idx != RHS.size();
320 }
321 };
322}
323
324
Chris Lattner9e7cc2f2004-05-23 21:21:17 +0000325/// DoPromotion - This method actually performs the promotion of the specified
Chris Lattner5eb6f6c2004-09-18 00:34:13 +0000326/// arguments, and returns the new function. At this point, we know that it's
327/// safe to do so.
328Function *ArgPromotion::DoPromotion(Function *F,
329 std::vector<Argument*> &Args2Prom) {
Chris Lattnered570a72004-03-07 21:29:54 +0000330 std::set<Argument*> ArgsToPromote(Args2Prom.begin(), Args2Prom.end());
Misha Brukmanfd939082005-04-21 23:48:37 +0000331
Chris Lattnered570a72004-03-07 21:29:54 +0000332 // Start by computing a new prototype for the function, which is the same as
333 // the old function, but has modified arguments.
334 const FunctionType *FTy = F->getFunctionType();
335 std::vector<const Type*> Params;
336
Chris Lattnerbeabf452004-06-21 00:07:58 +0000337 typedef std::set<std::vector<Value*>, GEPIdxComparator> ScalarizeTable;
338
Chris Lattner9440db82004-03-08 01:04:36 +0000339 // ScalarizedElements - If we are promoting a pointer that has elements
340 // accessed out of it, keep track of which elements are accessed so that we
341 // can add one argument for each.
342 //
343 // Arguments that are directly loaded will have a zero element value here, to
344 // handle cases where there are both a direct load and GEP accesses.
345 //
Chris Lattnerbeabf452004-06-21 00:07:58 +0000346 std::map<Argument*, ScalarizeTable> ScalarizedElements;
Chris Lattner9440db82004-03-08 01:04:36 +0000347
Chris Lattner9e7cc2f2004-05-23 21:21:17 +0000348 // OriginalLoads - Keep track of a representative load instruction from the
349 // original function so that we can tell the alias analysis implementation
350 // what the new GEP/Load instructions we are inserting look like.
351 std::map<std::vector<Value*>, LoadInst*> OriginalLoads;
352
Duncan Sandsdc024672007-11-27 13:23:08 +0000353 // ParamAttrs - Keep track of the parameter attributes for the arguments
354 // that we are *not* promoting. For the ones that we do promote, the parameter
355 // attributes are lost
356 ParamAttrsVector ParamAttrsVec;
357 const ParamAttrsList *PAL = F->getParamAttrs();
358
359 unsigned index = 1;
360 for (Function::arg_iterator I = F->arg_begin(), E = F->arg_end(); I != E;
361 ++I, ++index)
Chris Lattnered570a72004-03-07 21:29:54 +0000362 if (!ArgsToPromote.count(I)) {
363 Params.push_back(I->getType());
Duncan Sandsdc024672007-11-27 13:23:08 +0000364 if (PAL) {
365 unsigned attrs = PAL->getParamAttrs(index);
366 if (attrs)
367 ParamAttrsVec.push_back(ParamAttrsWithIndex::get(Params.size(),
368 attrs));
369 }
Chris Lattner9e7cc2f2004-05-23 21:21:17 +0000370 } else if (I->use_empty()) {
371 ++NumArgumentsDead;
372 } else {
Chris Lattner9440db82004-03-08 01:04:36 +0000373 // Okay, this is being promoted. Check to see if there are any GEP uses
374 // of the argument.
Chris Lattnerbeabf452004-06-21 00:07:58 +0000375 ScalarizeTable &ArgIndices = ScalarizedElements[I];
Chris Lattner9440db82004-03-08 01:04:36 +0000376 for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); UI != E;
377 ++UI) {
378 Instruction *User = cast<Instruction>(*UI);
Owen Anderson46f022a2006-09-15 05:22:51 +0000379 assert(isa<LoadInst>(User) || isa<GetElementPtrInst>(User));
380 std::vector<Value*> Indices(User->op_begin()+1, User->op_end());
381 ArgIndices.insert(Indices);
382 LoadInst *OrigLoad;
383 if (LoadInst *L = dyn_cast<LoadInst>(User))
384 OrigLoad = L;
385 else
386 OrigLoad = cast<LoadInst>(User->use_back());
387 OriginalLoads[Indices] = OrigLoad;
Chris Lattner9440db82004-03-08 01:04:36 +0000388 }
389
390 // Add a parameter to the function for each element passed in.
Chris Lattnerbeabf452004-06-21 00:07:58 +0000391 for (ScalarizeTable::iterator SI = ArgIndices.begin(),
Chris Lattner9440db82004-03-08 01:04:36 +0000392 E = ArgIndices.end(); SI != E; ++SI)
Chris Lattner1ccd1852007-02-12 22:56:41 +0000393 Params.push_back(GetElementPtrInst::getIndexedType(I->getType(),
David Greeneb8f74792007-09-04 15:46:09 +0000394 SI->begin(),
395 SI->end()));
Chris Lattner9440db82004-03-08 01:04:36 +0000396
397 if (ArgIndices.size() == 1 && ArgIndices.begin()->empty())
398 ++NumArgumentsPromoted;
399 else
400 ++NumAggregatesPromoted;
Chris Lattnered570a72004-03-07 21:29:54 +0000401 }
402
403 const Type *RetTy = FTy->getReturnType();
404
Duncan Sandsdc024672007-11-27 13:23:08 +0000405 // Recompute the parameter attributes list based on the new arguments for
406 // the function.
407 if (ParamAttrsVec.empty())
408 PAL = 0;
409 else
410 PAL = ParamAttrsList::get(ParamAttrsVec);
411
Chris Lattnered570a72004-03-07 21:29:54 +0000412 // Work around LLVM bug PR56: the CWriter cannot emit varargs functions which
413 // have zero fixed arguments.
414 bool ExtraArgHack = false;
415 if (Params.empty() && FTy->isVarArg()) {
416 ExtraArgHack = true;
Reid Spencerc5b206b2006-12-31 05:48:39 +0000417 Params.push_back(Type::Int32Ty);
Chris Lattnered570a72004-03-07 21:29:54 +0000418 }
Duncan Sandsdc024672007-11-27 13:23:08 +0000419
420 // Construct the new function type using the new arguments.
Chris Lattnered570a72004-03-07 21:29:54 +0000421 FunctionType *NFTy = FunctionType::get(RetTy, Params, FTy->isVarArg());
Misha Brukmanfd939082005-04-21 23:48:37 +0000422
Duncan Sandsdc024672007-11-27 13:23:08 +0000423 // Create the new function body and insert it into the module...
Chris Lattnered570a72004-03-07 21:29:54 +0000424 Function *NF = new Function(NFTy, F->getLinkage(), F->getName());
Chris Lattnerf201dbc2005-05-09 01:05:50 +0000425 NF->setCallingConv(F->getCallingConv());
Duncan Sandsdc024672007-11-27 13:23:08 +0000426 NF->setParamAttrs(PAL);
Gordon Henriksen194c90e2007-12-25 22:16:06 +0000427 if (F->hasCollector())
428 NF->setCollector(F->getCollector());
Chris Lattnered570a72004-03-07 21:29:54 +0000429 F->getParent()->getFunctionList().insert(F, NF);
Chris Lattner9e7cc2f2004-05-23 21:21:17 +0000430
431 // Get the alias analysis information that we need to update to reflect our
432 // changes.
433 AliasAnalysis &AA = getAnalysis<AliasAnalysis>();
434
Chris Lattnered570a72004-03-07 21:29:54 +0000435 // Loop over all of the callers of the function, transforming the call sites
436 // to pass in the loaded pointers.
437 //
438 std::vector<Value*> Args;
439 while (!F->use_empty()) {
440 CallSite CS = CallSite::get(F->use_back());
441 Instruction *Call = CS.getInstruction();
442
Chris Lattner9e7cc2f2004-05-23 21:21:17 +0000443 // Loop over the operands, inserting GEP and loads in the caller as
444 // appropriate.
Chris Lattnered570a72004-03-07 21:29:54 +0000445 CallSite::arg_iterator AI = CS.arg_begin();
Chris Lattnerf201dbc2005-05-09 01:05:50 +0000446 for (Function::arg_iterator I = F->arg_begin(), E = F->arg_end();
447 I != E; ++I, ++AI)
Chris Lattnered570a72004-03-07 21:29:54 +0000448 if (!ArgsToPromote.count(I))
449 Args.push_back(*AI); // Unmodified argument
450 else if (!I->use_empty()) {
Chris Lattner9e7cc2f2004-05-23 21:21:17 +0000451 // Non-dead argument: insert GEPs and loads as appropriate.
Chris Lattnerbeabf452004-06-21 00:07:58 +0000452 ScalarizeTable &ArgIndices = ScalarizedElements[I];
453 for (ScalarizeTable::iterator SI = ArgIndices.begin(),
Chris Lattner9440db82004-03-08 01:04:36 +0000454 E = ArgIndices.end(); SI != E; ++SI) {
455 Value *V = *AI;
Chris Lattner9e7cc2f2004-05-23 21:21:17 +0000456 LoadInst *OrigLoad = OriginalLoads[*SI];
457 if (!SI->empty()) {
David Greeneb8f74792007-09-04 15:46:09 +0000458 V = new GetElementPtrInst(V, SI->begin(), SI->end(),
Chris Lattner1ccd1852007-02-12 22:56:41 +0000459 V->getName()+".idx", Call);
Chris Lattner9e7cc2f2004-05-23 21:21:17 +0000460 AA.copyValue(OrigLoad->getOperand(0), V);
461 }
Chris Lattner9440db82004-03-08 01:04:36 +0000462 Args.push_back(new LoadInst(V, V->getName()+".val", Call));
Chris Lattner9e7cc2f2004-05-23 21:21:17 +0000463 AA.copyValue(OrigLoad, Args.back());
Chris Lattner9440db82004-03-08 01:04:36 +0000464 }
Chris Lattnered570a72004-03-07 21:29:54 +0000465 }
466
467 if (ExtraArgHack)
Reid Spencerc5b206b2006-12-31 05:48:39 +0000468 Args.push_back(Constant::getNullValue(Type::Int32Ty));
Chris Lattnered570a72004-03-07 21:29:54 +0000469
470 // Push any varargs arguments on the list
471 for (; AI != CS.arg_end(); ++AI)
472 Args.push_back(*AI);
473
474 Instruction *New;
475 if (InvokeInst *II = dyn_cast<InvokeInst>(Call)) {
476 New = new InvokeInst(NF, II->getNormalDest(), II->getUnwindDest(),
David Greenef1355a52007-08-27 19:04:21 +0000477 Args.begin(), Args.end(), "", Call);
Chris Lattnerf201dbc2005-05-09 01:05:50 +0000478 cast<InvokeInst>(New)->setCallingConv(CS.getCallingConv());
Duncan Sandsdc024672007-11-27 13:23:08 +0000479 cast<InvokeInst>(New)->setParamAttrs(PAL);
Chris Lattnered570a72004-03-07 21:29:54 +0000480 } else {
David Greene52eec542007-08-01 03:43:44 +0000481 New = new CallInst(NF, Args.begin(), Args.end(), "", Call);
Chris Lattnerf201dbc2005-05-09 01:05:50 +0000482 cast<CallInst>(New)->setCallingConv(CS.getCallingConv());
Duncan Sandsdc024672007-11-27 13:23:08 +0000483 cast<CallInst>(New)->setParamAttrs(PAL);
Chris Lattner1430ef12005-05-06 06:46:58 +0000484 if (cast<CallInst>(Call)->isTailCall())
485 cast<CallInst>(New)->setTailCall();
Chris Lattnered570a72004-03-07 21:29:54 +0000486 }
487 Args.clear();
488
Chris Lattner9e7cc2f2004-05-23 21:21:17 +0000489 // Update the alias analysis implementation to know that we are replacing
490 // the old call with a new one.
491 AA.replaceWithNewValue(Call, New);
492
Chris Lattnered570a72004-03-07 21:29:54 +0000493 if (!Call->use_empty()) {
494 Call->replaceAllUsesWith(New);
Chris Lattner046800a2007-02-11 01:08:35 +0000495 New->takeName(Call);
Chris Lattnered570a72004-03-07 21:29:54 +0000496 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000497
Chris Lattnered570a72004-03-07 21:29:54 +0000498 // Finally, remove the old call from the program, reducing the use-count of
499 // F.
500 Call->getParent()->getInstList().erase(Call);
501 }
502
503 // Since we have now created the new function, splice the body of the old
504 // function right into the new function, leaving the old rotting hulk of the
505 // function empty.
506 NF->getBasicBlockList().splice(NF->begin(), F->getBasicBlockList());
507
508 // Loop over the argument list, transfering uses of the old arguments over to
509 // the new arguments, also transfering over the names as well.
510 //
Chris Lattner93e985f2007-02-13 02:10:56 +0000511 for (Function::arg_iterator I = F->arg_begin(), E = F->arg_end(),
512 I2 = NF->arg_begin(); I != E; ++I)
Chris Lattnered570a72004-03-07 21:29:54 +0000513 if (!ArgsToPromote.count(I)) {
514 // If this is an unmodified argument, move the name and users over to the
515 // new version.
516 I->replaceAllUsesWith(I2);
Chris Lattner046800a2007-02-11 01:08:35 +0000517 I2->takeName(I);
Chris Lattner9e7cc2f2004-05-23 21:21:17 +0000518 AA.replaceWithNewValue(I, I2);
Chris Lattnered570a72004-03-07 21:29:54 +0000519 ++I2;
Chris Lattner9e7cc2f2004-05-23 21:21:17 +0000520 } else if (I->use_empty()) {
521 AA.deleteValue(I);
522 } else {
Chris Lattnered570a72004-03-07 21:29:54 +0000523 // Otherwise, if we promoted this argument, then all users are load
524 // instructions, and all loads should be using the new argument that we
525 // added.
Chris Lattnerbeabf452004-06-21 00:07:58 +0000526 ScalarizeTable &ArgIndices = ScalarizedElements[I];
Chris Lattner9440db82004-03-08 01:04:36 +0000527
Chris Lattnered570a72004-03-07 21:29:54 +0000528 while (!I->use_empty()) {
Chris Lattner9440db82004-03-08 01:04:36 +0000529 if (LoadInst *LI = dyn_cast<LoadInst>(I->use_back())) {
530 assert(ArgIndices.begin()->empty() &&
531 "Load element should sort to front!");
532 I2->setName(I->getName()+".val");
533 LI->replaceAllUsesWith(I2);
Chris Lattner9e7cc2f2004-05-23 21:21:17 +0000534 AA.replaceWithNewValue(LI, I2);
Chris Lattner9440db82004-03-08 01:04:36 +0000535 LI->getParent()->getInstList().erase(LI);
Bill Wendling0a81aac2006-11-26 10:02:32 +0000536 DOUT << "*** Promoted load of argument '" << I->getName()
537 << "' in function '" << F->getName() << "'\n";
Chris Lattner9440db82004-03-08 01:04:36 +0000538 } else {
539 GetElementPtrInst *GEP = cast<GetElementPtrInst>(I->use_back());
540 std::vector<Value*> Operands(GEP->op_begin()+1, GEP->op_end());
541
Chris Lattnere4d5c442005-03-15 04:54:21 +0000542 Function::arg_iterator TheArg = I2;
Chris Lattnerbeabf452004-06-21 00:07:58 +0000543 for (ScalarizeTable::iterator It = ArgIndices.begin();
Chris Lattner9440db82004-03-08 01:04:36 +0000544 *It != Operands; ++It, ++TheArg) {
545 assert(It != ArgIndices.end() && "GEP not handled??");
546 }
547
548 std::string NewName = I->getName();
549 for (unsigned i = 0, e = Operands.size(); i != e; ++i)
550 if (ConstantInt *CI = dyn_cast<ConstantInt>(Operands[i]))
Chris Lattner9132a2b2007-08-23 05:15:32 +0000551 NewName += "." + CI->getValue().toStringUnsigned(10);
Chris Lattner9440db82004-03-08 01:04:36 +0000552 else
553 NewName += ".x";
554 TheArg->setName(NewName+".val");
555
Bill Wendling0a81aac2006-11-26 10:02:32 +0000556 DOUT << "*** Promoted agg argument '" << TheArg->getName()
557 << "' of function '" << F->getName() << "'\n";
Chris Lattner9440db82004-03-08 01:04:36 +0000558
559 // All of the uses must be load instructions. Replace them all with
560 // the argument specified by ArgNo.
561 while (!GEP->use_empty()) {
562 LoadInst *L = cast<LoadInst>(GEP->use_back());
563 L->replaceAllUsesWith(TheArg);
Chris Lattner9e7cc2f2004-05-23 21:21:17 +0000564 AA.replaceWithNewValue(L, TheArg);
Chris Lattner9440db82004-03-08 01:04:36 +0000565 L->getParent()->getInstList().erase(L);
566 }
Chris Lattner9e7cc2f2004-05-23 21:21:17 +0000567 AA.deleteValue(GEP);
Chris Lattner9440db82004-03-08 01:04:36 +0000568 GEP->getParent()->getInstList().erase(GEP);
569 }
Chris Lattnered570a72004-03-07 21:29:54 +0000570 }
Chris Lattner86a734b2004-03-07 22:52:53 +0000571
Chris Lattner5eb6f6c2004-09-18 00:34:13 +0000572 // Increment I2 past all of the arguments added for this promoted pointer.
573 for (unsigned i = 0, e = ArgIndices.size(); i != e; ++i)
574 ++I2;
Chris Lattnered570a72004-03-07 21:29:54 +0000575 }
576
Chris Lattner9e7cc2f2004-05-23 21:21:17 +0000577 // Notify the alias analysis implementation that we inserted a new argument.
578 if (ExtraArgHack)
Reid Spencerc5b206b2006-12-31 05:48:39 +0000579 AA.copyValue(Constant::getNullValue(Type::Int32Ty), NF->arg_begin());
Chris Lattner9e7cc2f2004-05-23 21:21:17 +0000580
581
582 // Tell the alias analysis that the old function is about to disappear.
583 AA.replaceWithNewValue(F, NF);
584
Chris Lattnered570a72004-03-07 21:29:54 +0000585 // Now that the old function is dead, delete it.
586 F->getParent()->getFunctionList().erase(F);
Chris Lattner5eb6f6c2004-09-18 00:34:13 +0000587 return NF;
Chris Lattnered570a72004-03-07 21:29:54 +0000588}