blob: a2c8a32dfe866647cfd4b89dde309cf6a0cd2944 [file] [log] [blame]
Chris Lattner254f8f82004-05-23 21:21:17 +00001//===-- ArgumentPromotion.cpp - Promote by-reference arguments ------------===//
Misha Brukmanb1c93172005-04-21 23:48:37 +00002//
Chris Lattner483ae012004-03-07 21:29:54 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-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 Brukmanb1c93172005-04-21 23:48:37 +00007//
Chris Lattner483ae012004-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 Henriksen78c63ac2007-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 Lattner483ae012004-03-07 21:29:54 +000014// instead of the address of the value. This can cause recursive simplification
Chris Lattner254f8f82004-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 Lattner483ae012004-03-07 21:29:54 +000017//
Chris Lattnerfe6f2e32004-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
Matthijs Kooijmanfd307042008-07-29 10:00:13 +000020// by default it refuses to scalarize aggregates which would require passing in
21// more than three operands to the function, because passing thousands of
Duncan Sands1ea0d2e2008-09-07 09:54:09 +000022// operands for a large array or structure is unprofitable! This limit can be
Matthijs Kooijmanfd307042008-07-29 10:00:13 +000023// configured or disabled, however.
Chris Lattnerfe6f2e32004-03-08 01:04:36 +000024//
Chris Lattner483ae012004-03-07 21:29:54 +000025// Note that this transformation could also be done for arguments that are only
Gordon Henriksen78c63ac2007-10-26 03:03:51 +000026// stored to (returning the value instead), but does not currently. This case
27// would be best handled when and if LLVM begins supporting multiple return
28// values from functions.
Chris Lattner483ae012004-03-07 21:29:54 +000029//
30//===----------------------------------------------------------------------===//
31
Chandler Carruthaddcda42017-02-09 23:46:27 +000032#include "llvm/Transforms/IPO/ArgumentPromotion.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000033#include "llvm/ADT/DepthFirstIterator.h"
Chandler Carruthaddcda42017-02-09 23:46:27 +000034#include "llvm/ADT/Optional.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000035#include "llvm/ADT/Statistic.h"
Chris Lattner06fa1762009-08-24 03:52:50 +000036#include "llvm/ADT/StringExtras.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000037#include "llvm/Analysis/AliasAnalysis.h"
Daniel Jasperaec2fa32016-12-19 08:22:17 +000038#include "llvm/Analysis/AssumptionCache.h"
Chandler Carruth7b560d42015-09-09 17:55:00 +000039#include "llvm/Analysis/BasicAliasAnalysis.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000040#include "llvm/Analysis/CallGraph.h"
Chandler Carruth839a98e2013-01-07 15:26:48 +000041#include "llvm/Analysis/CallGraphSCCPass.h"
Chandler Carruthaddcda42017-02-09 23:46:27 +000042#include "llvm/Analysis/LazyCallGraph.h"
Artur Pilipenko31bcca42016-02-24 12:49:04 +000043#include "llvm/Analysis/Loads.h"
Chandler Carruth7b560d42015-09-09 17:55:00 +000044#include "llvm/Analysis/TargetLibraryInfo.h"
Chandler Carruth1305dc32014-03-04 11:45:46 +000045#include "llvm/IR/CFG.h"
Chandler Carruth219b89b2014-03-04 11:01:28 +000046#include "llvm/IR/CallSite.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000047#include "llvm/IR/Constants.h"
Hal Finkel2e42c342014-07-10 05:27:53 +000048#include "llvm/IR/DataLayout.h"
David Blaikiee844cd52014-07-01 21:13:37 +000049#include "llvm/IR/DebugInfo.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000050#include "llvm/IR/DerivedTypes.h"
51#include "llvm/IR/Instructions.h"
52#include "llvm/IR/LLVMContext.h"
53#include "llvm/IR/Module.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000054#include "llvm/Support/Debug.h"
55#include "llvm/Support/raw_ostream.h"
Chandler Carruthae9ce3d2017-01-29 08:03:19 +000056#include "llvm/Transforms/IPO.h"
Chris Lattner483ae012004-03-07 21:29:54 +000057#include <set>
58using namespace llvm;
59
Chandler Carruth964daaa2014-04-22 02:55:47 +000060#define DEBUG_TYPE "argpromotion"
61
Chandler Carruthae9ce3d2017-01-29 08:03:19 +000062STATISTIC(NumArgumentsPromoted, "Number of pointer arguments promoted");
Chris Lattner1631bcb2006-12-19 22:09:18 +000063STATISTIC(NumAggregatesPromoted, "Number of aggregate arguments promoted");
Chandler Carruthae9ce3d2017-01-29 08:03:19 +000064STATISTIC(NumByValArgsPromoted, "Number of byval arguments promoted");
65STATISTIC(NumArgumentsDead, "Number of dead pointer args eliminated");
Chris Lattner483ae012004-03-07 21:29:54 +000066
Sean Silvae2133e72016-07-02 18:59:51 +000067/// A vector used to hold the indices of a single GEP instruction
68typedef std::vector<uint64_t> IndicesVector;
69
Chris Lattner254f8f82004-05-23 21:21:17 +000070/// DoPromotion - This method actually performs the promotion of the specified
Chris Lattner37b6c4f2004-09-18 00:34:13 +000071/// arguments, and returns the new function. At this point, we know that it's
72/// safe to do so.
Chandler Carruthaddcda42017-02-09 23:46:27 +000073static Function *
Chandler Carruth8e9c0a82017-01-29 08:03:21 +000074doPromotion(Function *F, SmallPtrSetImpl<Argument *> &ArgsToPromote,
Chandler Carruthaddcda42017-02-09 23:46:27 +000075 SmallPtrSetImpl<Argument *> &ByValArgsToTransform,
76 Optional<function_ref<void(CallSite OldCS, CallSite NewCS)>>
77 ReplaceCallSite) {
Misha Brukmanb1c93172005-04-21 23:48:37 +000078
Chris Lattner483ae012004-03-07 21:29:54 +000079 // Start by computing a new prototype for the function, which is the same as
80 // the old function, but has modified arguments.
Chris Lattner229907c2011-07-18 04:54:35 +000081 FunctionType *FTy = F->getFunctionType();
Chandler Carruthae9ce3d2017-01-29 08:03:19 +000082 std::vector<Type *> Params;
Chris Lattner483ae012004-03-07 21:29:54 +000083
David Blaikie72edd882015-03-14 21:40:12 +000084 typedef std::set<std::pair<Type *, IndicesVector>> ScalarizeTable;
Chris Lattner1c676f72004-06-21 00:07:58 +000085
Chris Lattnerfe6f2e32004-03-08 01:04:36 +000086 // ScalarizedElements - If we are promoting a pointer that has elements
87 // accessed out of it, keep track of which elements are accessed so that we
88 // can add one argument for each.
89 //
90 // Arguments that are directly loaded will have a zero element value here, to
91 // handle cases where there are both a direct load and GEP accesses.
92 //
Chandler Carruthae9ce3d2017-01-29 08:03:19 +000093 std::map<Argument *, ScalarizeTable> ScalarizedElements;
Chris Lattnerfe6f2e32004-03-08 01:04:36 +000094
Chris Lattner254f8f82004-05-23 21:21:17 +000095 // OriginalLoads - Keep track of a representative load instruction from the
96 // original function so that we can tell the alias analysis implementation
97 // what the new GEP/Load instructions we are inserting look like.
Manman Renbc376582013-11-15 20:41:15 +000098 // We need to keep the original loads for each argument and the elements
99 // of the argument that are accessed.
Chandler Carruthae9ce3d2017-01-29 08:03:19 +0000100 std::map<std::pair<Argument *, IndicesVector>, LoadInst *> OriginalLoads;
Chris Lattner254f8f82004-05-23 21:21:17 +0000101
Bill Wendling3d7b0b82012-12-19 07:18:57 +0000102 // Attribute - Keep track of the parameter attributes for the arguments
Duncan Sandsad0ea2d2007-11-27 13:23:08 +0000103 // that we are *not* promoting. For the ones that we do promote, the parameter
104 // attributes are lost
Reid Kleckner7f720332017-04-13 00:58:09 +0000105 SmallVector<AttributeSet, 8> ArgAttrVec;
106 AttributeList PAL = F->getAttributes();
Duncan Sands1ea0d2e2008-09-07 09:54:09 +0000107
Matthijs Kooijmanfd307042008-07-29 10:00:13 +0000108 // First, determine the new argument list
Reid Klecknerf021fab2017-04-13 23:12:13 +0000109 unsigned ArgIndex = 0;
Duncan Sandsad0ea2d2007-11-27 13:23:08 +0000110 for (Function::arg_iterator I = F->arg_begin(), E = F->arg_end(); I != E;
Chris Lattner5630c4f2008-01-17 01:17:03 +0000111 ++I, ++ArgIndex) {
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +0000112 if (ByValArgsToTransform.count(&*I)) {
Matthijs Kooijmanfd307042008-07-29 10:00:13 +0000113 // Simple byval argument? Just add all the struct element types.
Chris Lattner229907c2011-07-18 04:54:35 +0000114 Type *AgTy = cast<PointerType>(I->getType())->getElementType();
115 StructType *STy = cast<StructType>(AgTy);
Benjamin Kramer5fbfe2f2015-02-28 13:20:15 +0000116 Params.insert(Params.end(), STy->element_begin(), STy->element_end());
Reid Kleckner7f720332017-04-13 00:58:09 +0000117 ArgAttrVec.insert(ArgAttrVec.end(), STy->getNumElements(),
118 AttributeSet());
Chris Lattnerb5bd9242008-01-11 22:31:41 +0000119 ++NumByValArgsPromoted;
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +0000120 } else if (!ArgsToPromote.count(&*I)) {
Matthijs Kooijmanfd307042008-07-29 10:00:13 +0000121 // Unchanged argument
Chris Lattner483ae012004-03-07 21:29:54 +0000122 Params.push_back(I->getType());
Reid Kleckner7f720332017-04-13 00:58:09 +0000123 ArgAttrVec.push_back(PAL.getParamAttributes(ArgIndex));
Chris Lattner254f8f82004-05-23 21:21:17 +0000124 } else if (I->use_empty()) {
Matthijs Kooijmanfd307042008-07-29 10:00:13 +0000125 // Dead argument (which are always marked as promotable)
Chris Lattner254f8f82004-05-23 21:21:17 +0000126 ++NumArgumentsDead;
127 } else {
Matthijs Kooijmanfd307042008-07-29 10:00:13 +0000128 // Okay, this is being promoted. This means that the only uses are loads
129 // or GEPs which are only used by loads
130
131 // In this table, we will track which indices are loaded from the argument
132 // (where direct loads are tracked as no indices).
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +0000133 ScalarizeTable &ArgIndices = ScalarizedElements[&*I];
Chandler Carruthcdf47882014-03-09 03:16:01 +0000134 for (User *U : I->users()) {
135 Instruction *UI = cast<Instruction>(U);
David Blaikie76826632015-03-14 21:11:26 +0000136 Type *SrcTy;
137 if (LoadInst *L = dyn_cast<LoadInst>(UI))
138 SrcTy = L->getType();
139 else
140 SrcTy = cast<GetElementPtrInst>(UI)->getSourceElementType();
Matthijs Kooijmanfd307042008-07-29 10:00:13 +0000141 IndicesVector Indices;
Chandler Carruthcdf47882014-03-09 03:16:01 +0000142 Indices.reserve(UI->getNumOperands() - 1);
Matthijs Kooijmanfd307042008-07-29 10:00:13 +0000143 // Since loads will only have a single operand, and GEPs only a single
144 // non-index operand, this will record direct loads without any indices,
145 // and gep+loads with the GEP indices.
Chandler Carruthcdf47882014-03-09 03:16:01 +0000146 for (User::op_iterator II = UI->op_begin() + 1, IE = UI->op_end();
Matthijs Kooijmanfd307042008-07-29 10:00:13 +0000147 II != IE; ++II)
148 Indices.push_back(cast<ConstantInt>(*II)->getSExtValue());
149 // GEPs with a single 0 index can be merged with direct loads
150 if (Indices.size() == 1 && Indices.front() == 0)
151 Indices.clear();
David Blaikie76826632015-03-14 21:11:26 +0000152 ArgIndices.insert(std::make_pair(SrcTy, Indices));
Owen Andersonedadd3f2006-09-15 05:22:51 +0000153 LoadInst *OrigLoad;
Chandler Carruthcdf47882014-03-09 03:16:01 +0000154 if (LoadInst *L = dyn_cast<LoadInst>(UI))
Owen Andersonedadd3f2006-09-15 05:22:51 +0000155 OrigLoad = L;
156 else
Matthijs Kooijmanfd307042008-07-29 10:00:13 +0000157 // Take any load, we will use it only to update Alias Analysis
Chandler Carruthcdf47882014-03-09 03:16:01 +0000158 OrigLoad = cast<LoadInst>(UI->user_back());
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +0000159 OriginalLoads[std::make_pair(&*I, Indices)] = OrigLoad;
Chris Lattnerfe6f2e32004-03-08 01:04:36 +0000160 }
161
162 // Add a parameter to the function for each element passed in.
Benjamin Kramer135f7352016-06-26 12:28:59 +0000163 for (const auto &ArgIndex : ArgIndices) {
Torok Edwin026259f2008-11-16 17:21:25 +0000164 // not allowed to dereference ->begin() if size() is 0
David Blaikied288fb82015-03-30 21:41:43 +0000165 Params.push_back(GetElementPtrInst::getIndexedType(
166 cast<PointerType>(I->getType()->getScalarType())->getElementType(),
Benjamin Kramer135f7352016-06-26 12:28:59 +0000167 ArgIndex.second));
Reid Kleckner7f720332017-04-13 00:58:09 +0000168 ArgAttrVec.push_back(AttributeSet());
Matthijs Kooijmanfd307042008-07-29 10:00:13 +0000169 assert(Params.back());
170 }
Chris Lattnerfe6f2e32004-03-08 01:04:36 +0000171
David Blaikie76826632015-03-14 21:11:26 +0000172 if (ArgIndices.size() == 1 && ArgIndices.begin()->second.empty())
Chris Lattnerfe6f2e32004-03-08 01:04:36 +0000173 ++NumArgumentsPromoted;
174 else
175 ++NumAggregatesPromoted;
Chris Lattner483ae012004-03-07 21:29:54 +0000176 }
Chris Lattnerb5bd9242008-01-11 22:31:41 +0000177 }
Chris Lattner483ae012004-03-07 21:29:54 +0000178
Chris Lattner229907c2011-07-18 04:54:35 +0000179 Type *RetTy = FTy->getReturnType();
Chris Lattner483ae012004-03-07 21:29:54 +0000180
Duncan Sandsad0ea2d2007-11-27 13:23:08 +0000181 // Construct the new function type using the new arguments.
Owen Anderson4056ca92009-07-29 22:17:13 +0000182 FunctionType *NFTy = FunctionType::get(RetTy, Params, FTy->isVarArg());
Misha Brukmanb1c93172005-04-21 23:48:37 +0000183
Chris Lattnere0987212009-09-15 05:40:35 +0000184 // Create the new function body and insert it into the module.
Gabor Greife9ecc682008-04-06 20:25:17 +0000185 Function *NF = Function::Create(NFTy, F->getLinkage(), F->getName());
Duncan Sandsdd7daee2008-05-26 19:58:59 +0000186 NF->copyAttributesFrom(F);
Chris Lattner5630c4f2008-01-17 01:17:03 +0000187
David Blaikiee844cd52014-07-01 21:13:37 +0000188 // Patch the pointer to LLVM function in debug info descriptor.
Peter Collingbourned4bff302015-11-05 22:03:56 +0000189 NF->setSubprogram(F->getSubprogram());
190 F->setSubprogram(nullptr);
David Blaikie8e9cfa52014-07-23 22:09:29 +0000191
David Greenecf0addf2010-01-05 01:28:37 +0000192 DEBUG(dbgs() << "ARG PROMOTION: Promoting to:" << *NF << "\n"
Chandler Carruthae9ce3d2017-01-29 08:03:19 +0000193 << "From: " << *F);
194
Chris Lattner5630c4f2008-01-17 01:17:03 +0000195 // Recompute the parameter attributes list based on the new arguments for
196 // the function.
Reid Kleckner7f720332017-04-13 00:58:09 +0000197 NF->setAttributes(AttributeList::get(F->getContext(), PAL.getFnAttributes(),
198 PAL.getRetAttributes(), ArgAttrVec));
199 ArgAttrVec.clear();
Duncan Sandsdd7daee2008-05-26 19:58:59 +0000200
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +0000201 F->getParent()->getFunctionList().insert(F->getIterator(), NF);
Zhou Shenga30cdb92008-03-20 08:05:05 +0000202 NF->takeName(F);
Chris Lattner254f8f82004-05-23 21:21:17 +0000203
Chris Lattner483ae012004-03-07 21:29:54 +0000204 // Loop over all of the callers of the function, transforming the call sites
205 // to pass in the loaded pointers.
206 //
Chandler Carruthae9ce3d2017-01-29 08:03:19 +0000207 SmallVector<Value *, 16> Args;
Chris Lattner483ae012004-03-07 21:29:54 +0000208 while (!F->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000209 CallSite CS(F->user_back());
Gabor Greif161cb042010-03-23 14:40:20 +0000210 assert(CS.getCalledFunction() == F);
Chris Lattner483ae012004-03-07 21:29:54 +0000211 Instruction *Call = CS.getInstruction();
Reid Klecknerb5180542017-03-21 16:57:19 +0000212 const AttributeList &CallPAL = CS.getAttributes();
Duncan Sands1ea0d2e2008-09-07 09:54:09 +0000213
Chris Lattner254f8f82004-05-23 21:21:17 +0000214 // Loop over the operands, inserting GEP and loads in the caller as
215 // appropriate.
Chris Lattner483ae012004-03-07 21:29:54 +0000216 CallSite::arg_iterator AI = CS.arg_begin();
Chris Lattner5630c4f2008-01-17 01:17:03 +0000217 ArgIndex = 1;
Chandler Carruthae9ce3d2017-01-29 08:03:19 +0000218 for (Function::arg_iterator I = F->arg_begin(), E = F->arg_end(); I != E;
219 ++I, ++AI, ++ArgIndex)
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +0000220 if (!ArgsToPromote.count(&*I) && !ByValArgsToTransform.count(&*I)) {
Chandler Carruthae9ce3d2017-01-29 08:03:19 +0000221 Args.push_back(*AI); // Unmodified argument
Reid Kleckner7f720332017-04-13 00:58:09 +0000222 ArgAttrVec.push_back(CallPAL.getAttributes(ArgIndex));
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +0000223 } else if (ByValArgsToTransform.count(&*I)) {
Chris Lattnerb5bd9242008-01-11 22:31:41 +0000224 // Emit a GEP and load for each element of the struct.
Chris Lattner229907c2011-07-18 04:54:35 +0000225 Type *AgTy = cast<PointerType>(I->getType())->getElementType();
226 StructType *STy = cast<StructType>(AgTy);
Owen Anderson55f1c092009-08-13 21:58:54 +0000227 Value *Idxs[2] = {
Chandler Carruthae9ce3d2017-01-29 08:03:19 +0000228 ConstantInt::get(Type::getInt32Ty(F->getContext()), 0), nullptr};
Chris Lattnerb5bd9242008-01-11 22:31:41 +0000229 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
Owen Anderson55f1c092009-08-13 21:58:54 +0000230 Idxs[1] = ConstantInt::get(Type::getInt32Ty(F->getContext()), i);
David Blaikie76826632015-03-14 21:11:26 +0000231 Value *Idx = GetElementPtrInst::Create(
Benjamin Kramerdba7ee92015-05-28 11:24:24 +0000232 STy, *AI, Idxs, (*AI)->getName() + "." + Twine(i), Call);
Chris Lattnerb5bd9242008-01-11 22:31:41 +0000233 // TODO: Tell AA about the new values?
Chandler Carruthae9ce3d2017-01-29 08:03:19 +0000234 Args.push_back(new LoadInst(Idx, Idx->getName() + ".val", Call));
Reid Kleckner7f720332017-04-13 00:58:09 +0000235 ArgAttrVec.push_back(AttributeSet());
Duncan Sands1ea0d2e2008-09-07 09:54:09 +0000236 }
Chris Lattnerb5bd9242008-01-11 22:31:41 +0000237 } else if (!I->use_empty()) {
Chris Lattner254f8f82004-05-23 21:21:17 +0000238 // Non-dead argument: insert GEPs and loads as appropriate.
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +0000239 ScalarizeTable &ArgIndices = ScalarizedElements[&*I];
Matthijs Kooijmanfd307042008-07-29 10:00:13 +0000240 // Store the Value* version of the indices in here, but declare it now
Gabor Greif161cb042010-03-23 14:40:20 +0000241 // for reuse.
Chandler Carruthae9ce3d2017-01-29 08:03:19 +0000242 std::vector<Value *> Ops;
Benjamin Kramer135f7352016-06-26 12:28:59 +0000243 for (const auto &ArgIndex : ArgIndices) {
Chris Lattnerfe6f2e32004-03-08 01:04:36 +0000244 Value *V = *AI;
Benjamin Kramer135f7352016-06-26 12:28:59 +0000245 LoadInst *OrigLoad =
246 OriginalLoads[std::make_pair(&*I, ArgIndex.second)];
247 if (!ArgIndex.second.empty()) {
248 Ops.reserve(ArgIndex.second.size());
Chris Lattner229907c2011-07-18 04:54:35 +0000249 Type *ElTy = V->getType();
Benjamin Kramer135f7352016-06-26 12:28:59 +0000250 for (unsigned long II : ArgIndex.second) {
Matthijs Kooijmanfd307042008-07-29 10:00:13 +0000251 // Use i32 to index structs, and i64 for others (pointers/arrays).
252 // This satisfies GEP constraints.
Chandler Carruthae9ce3d2017-01-29 08:03:19 +0000253 Type *IdxTy =
254 (ElTy->isStructTy() ? Type::getInt32Ty(F->getContext())
255 : Type::getInt64Ty(F->getContext()));
Benjamin Kramer135f7352016-06-26 12:28:59 +0000256 Ops.push_back(ConstantInt::get(IdxTy, II));
Gabor Greif161cb042010-03-23 14:40:20 +0000257 // Keep track of the type we're currently indexing.
Peter Collingbourne45681582016-12-02 03:05:41 +0000258 if (auto *ElPTy = dyn_cast<PointerType>(ElTy))
259 ElTy = ElPTy->getElementType();
260 else
261 ElTy = cast<CompositeType>(ElTy)->getTypeAtIndex(II);
Matthijs Kooijmanfd307042008-07-29 10:00:13 +0000262 }
Gabor Greif161cb042010-03-23 14:40:20 +0000263 // And create a GEP to extract those indices.
Benjamin Kramer135f7352016-06-26 12:28:59 +0000264 V = GetElementPtrInst::Create(ArgIndex.first, V, Ops,
David Blaikie72edd882015-03-14 21:40:12 +0000265 V->getName() + ".idx", Call);
Matthijs Kooijmanfd307042008-07-29 10:00:13 +0000266 Ops.clear();
Chris Lattner254f8f82004-05-23 21:21:17 +0000267 }
Eric Christopher81c03442010-03-27 01:54:00 +0000268 // Since we're replacing a load make sure we take the alignment
269 // of the previous load.
Chandler Carruthae9ce3d2017-01-29 08:03:19 +0000270 LoadInst *newLoad = new LoadInst(V, V->getName() + ".val", Call);
Eric Christopher81c03442010-03-27 01:54:00 +0000271 newLoad->setAlignment(OrigLoad->getAlignment());
Hal Finkelcc39b672014-07-24 12:16:19 +0000272 // Transfer the AA info too.
273 AAMDNodes AAInfo;
274 OrigLoad->getAAMetadata(AAInfo);
275 newLoad->setAAMetadata(AAInfo);
276
Eric Christopher81c03442010-03-27 01:54:00 +0000277 Args.push_back(newLoad);
Reid Kleckner7f720332017-04-13 00:58:09 +0000278 ArgAttrVec.push_back(AttributeSet());
Chris Lattnerfe6f2e32004-03-08 01:04:36 +0000279 }
Chris Lattner483ae012004-03-07 21:29:54 +0000280 }
281
Gabor Greif161cb042010-03-23 14:40:20 +0000282 // Push any varargs arguments on the list.
Chris Lattner5630c4f2008-01-17 01:17:03 +0000283 for (; AI != CS.arg_end(); ++AI, ++ArgIndex) {
Chris Lattner483ae012004-03-07 21:29:54 +0000284 Args.push_back(*AI);
Reid Kleckner7f720332017-04-13 00:58:09 +0000285 ArgAttrVec.push_back(CallPAL.getAttributes(ArgIndex));
Chris Lattner5630c4f2008-01-17 01:17:03 +0000286 }
Chris Lattner483ae012004-03-07 21:29:54 +0000287
David Majnemercd24bb12016-04-29 04:56:12 +0000288 SmallVector<OperandBundleDef, 1> OpBundles;
289 CS.getOperandBundlesAsDefs(OpBundles);
290
Reid Kleckner7f720332017-04-13 00:58:09 +0000291 CallSite NewCS;
Chris Lattner483ae012004-03-07 21:29:54 +0000292 if (InvokeInst *II = dyn_cast<InvokeInst>(Call)) {
Reid Kleckner7f720332017-04-13 00:58:09 +0000293 NewCS = InvokeInst::Create(NF, II->getNormalDest(), II->getUnwindDest(),
Reid Kleckner3a115032017-04-13 18:10:30 +0000294 Args, OpBundles, "", Call);
Chris Lattner483ae012004-03-07 21:29:54 +0000295 } else {
Reid Kleckner7f720332017-04-13 00:58:09 +0000296 auto *NewCall = CallInst::Create(NF, Args, OpBundles, "", Call);
297 NewCall->setTailCallKind(cast<CallInst>(Call)->getTailCallKind());
298 NewCS = NewCall;
Chris Lattner483ae012004-03-07 21:29:54 +0000299 }
Reid Kleckner7f720332017-04-13 00:58:09 +0000300 NewCS.setCallingConv(CS.getCallingConv());
301 NewCS.setAttributes(
302 AttributeList::get(F->getContext(), CallPAL.getFnAttributes(),
303 CallPAL.getRetAttributes(), ArgAttrVec));
304 NewCS->setDebugLoc(Call->getDebugLoc());
Reid Kleckner3a115032017-04-13 18:10:30 +0000305 uint64_t W;
306 if (Call->extractProfTotalWeight(W))
307 NewCS->setProfWeight(W);
Chris Lattner483ae012004-03-07 21:29:54 +0000308 Args.clear();
Reid Kleckner7f720332017-04-13 00:58:09 +0000309 ArgAttrVec.clear();
Chris Lattner483ae012004-03-07 21:29:54 +0000310
Duncan Sands3cf7d862008-09-08 11:07:35 +0000311 // Update the callgraph to know that the callsite has been transformed.
Chandler Carruthaddcda42017-02-09 23:46:27 +0000312 if (ReplaceCallSite)
Reid Kleckner7f720332017-04-13 00:58:09 +0000313 (*ReplaceCallSite)(CS, NewCS);
Duncan Sands3cf7d862008-09-08 11:07:35 +0000314
Chris Lattner483ae012004-03-07 21:29:54 +0000315 if (!Call->use_empty()) {
Reid Kleckner7f720332017-04-13 00:58:09 +0000316 Call->replaceAllUsesWith(NewCS.getInstruction());
317 NewCS->takeName(Call);
Chris Lattner483ae012004-03-07 21:29:54 +0000318 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000319
Chris Lattner483ae012004-03-07 21:29:54 +0000320 // Finally, remove the old call from the program, reducing the use-count of
321 // F.
Chris Lattner4062a622008-01-11 19:20:39 +0000322 Call->eraseFromParent();
Chris Lattner483ae012004-03-07 21:29:54 +0000323 }
324
Matt Arsenault3c1fc762017-04-10 22:27:50 +0000325 const DataLayout &DL = F->getParent()->getDataLayout();
326
Chris Lattner483ae012004-03-07 21:29:54 +0000327 // Since we have now created the new function, splice the body of the old
328 // function right into the new function, leaving the old rotting hulk of the
329 // function empty.
330 NF->getBasicBlockList().splice(NF->begin(), F->getBasicBlockList());
331
Chris Lattner0ab5e2c2011-04-15 05:18:47 +0000332 // Loop over the argument list, transferring uses of the old arguments over to
333 // the new arguments, also transferring over the names as well.
Chris Lattner483ae012004-03-07 21:29:54 +0000334 //
Chris Lattnera06a8fd2007-02-13 02:10:56 +0000335 for (Function::arg_iterator I = F->arg_begin(), E = F->arg_end(),
Chandler Carruthae9ce3d2017-01-29 08:03:19 +0000336 I2 = NF->arg_begin();
337 I != E; ++I) {
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +0000338 if (!ArgsToPromote.count(&*I) && !ByValArgsToTransform.count(&*I)) {
Chris Lattner483ae012004-03-07 21:29:54 +0000339 // If this is an unmodified argument, move the name and users over to the
340 // new version.
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +0000341 I->replaceAllUsesWith(&*I2);
342 I2->takeName(&*I);
Chris Lattner483ae012004-03-07 21:29:54 +0000343 ++I2;
Chris Lattnerb5bd9242008-01-11 22:31:41 +0000344 continue;
Chris Lattner483ae012004-03-07 21:29:54 +0000345 }
Duncan Sands1ea0d2e2008-09-07 09:54:09 +0000346
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +0000347 if (ByValArgsToTransform.count(&*I)) {
Chris Lattnerb5bd9242008-01-11 22:31:41 +0000348 // In the callee, we create an alloca, and store each of the new incoming
349 // arguments into the alloca.
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +0000350 Instruction *InsertPt = &NF->begin()->front();
Duncan Sands1ea0d2e2008-09-07 09:54:09 +0000351
Chris Lattnerb5bd9242008-01-11 22:31:41 +0000352 // Just add all the struct element types.
Chris Lattner229907c2011-07-18 04:54:35 +0000353 Type *AgTy = cast<PointerType>(I->getType())->getElementType();
Matt Arsenault3c1fc762017-04-10 22:27:50 +0000354 Value *TheAlloca = new AllocaInst(AgTy, DL.getAllocaAddrSpace(), nullptr,
355 "", InsertPt);
Chris Lattner229907c2011-07-18 04:54:35 +0000356 StructType *STy = cast<StructType>(AgTy);
Chandler Carruthae9ce3d2017-01-29 08:03:19 +0000357 Value *Idxs[2] = {ConstantInt::get(Type::getInt32Ty(F->getContext()), 0),
358 nullptr};
Duncan Sands1ea0d2e2008-09-07 09:54:09 +0000359
Chris Lattnerb5bd9242008-01-11 22:31:41 +0000360 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
Owen Anderson55f1c092009-08-13 21:58:54 +0000361 Idxs[1] = ConstantInt::get(Type::getInt32Ty(F->getContext()), i);
David Blaikie096b1da2015-03-14 19:53:33 +0000362 Value *Idx = GetElementPtrInst::Create(
363 AgTy, TheAlloca, Idxs, TheAlloca->getName() + "." + Twine(i),
364 InsertPt);
Chandler Carruthae9ce3d2017-01-29 08:03:19 +0000365 I2->setName(I->getName() + "." + Twine(i));
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +0000366 new StoreInst(&*I2++, Idx, InsertPt);
Chris Lattnerb5bd9242008-01-11 22:31:41 +0000367 }
Duncan Sands1ea0d2e2008-09-07 09:54:09 +0000368
Chris Lattnerb5bd9242008-01-11 22:31:41 +0000369 // Anything that used the arg should now use the alloca.
370 I->replaceAllUsesWith(TheAlloca);
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +0000371 TheAlloca->takeName(&*I);
Rafael Espindola2a05ea52014-01-23 17:19:42 +0000372
373 // If the alloca is used in a call, we must clear the tail flag since
374 // the callee now uses an alloca from the caller.
Chandler Carruthcdf47882014-03-09 03:16:01 +0000375 for (User *U : TheAlloca->users()) {
376 CallInst *Call = dyn_cast<CallInst>(U);
Rafael Espindola2a05ea52014-01-23 17:19:42 +0000377 if (!Call)
378 continue;
379 Call->setTailCall(false);
380 }
Chris Lattnerb5bd9242008-01-11 22:31:41 +0000381 continue;
Duncan Sands1ea0d2e2008-09-07 09:54:09 +0000382 }
383
Chandler Carrutha1032a02015-07-22 09:49:59 +0000384 if (I->use_empty())
Chris Lattnerb5bd9242008-01-11 22:31:41 +0000385 continue;
Duncan Sands1ea0d2e2008-09-07 09:54:09 +0000386
Chris Lattnerb5bd9242008-01-11 22:31:41 +0000387 // Otherwise, if we promoted this argument, then all users are load
Matthijs Kooijmanfd307042008-07-29 10:00:13 +0000388 // instructions (or GEPs with only load users), and all loads should be
389 // using the new argument that we added.
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +0000390 ScalarizeTable &ArgIndices = ScalarizedElements[&*I];
Chris Lattnerb5bd9242008-01-11 22:31:41 +0000391
392 while (!I->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000393 if (LoadInst *LI = dyn_cast<LoadInst>(I->user_back())) {
David Blaikie76826632015-03-14 21:11:26 +0000394 assert(ArgIndices.begin()->second.empty() &&
Chris Lattnerb5bd9242008-01-11 22:31:41 +0000395 "Load element should sort to front!");
Chandler Carruthae9ce3d2017-01-29 08:03:19 +0000396 I2->setName(I->getName() + ".val");
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +0000397 LI->replaceAllUsesWith(&*I2);
Chris Lattnerb5bd9242008-01-11 22:31:41 +0000398 LI->eraseFromParent();
David Greenecf0addf2010-01-05 01:28:37 +0000399 DEBUG(dbgs() << "*** Promoted load of argument '" << I->getName()
Chandler Carruthae9ce3d2017-01-29 08:03:19 +0000400 << "' in function '" << F->getName() << "'\n");
Chris Lattnerb5bd9242008-01-11 22:31:41 +0000401 } else {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000402 GetElementPtrInst *GEP = cast<GetElementPtrInst>(I->user_back());
Matthijs Kooijmanfd307042008-07-29 10:00:13 +0000403 IndicesVector Operands;
404 Operands.reserve(GEP->getNumIndices());
405 for (User::op_iterator II = GEP->idx_begin(), IE = GEP->idx_end();
406 II != IE; ++II)
407 Operands.push_back(cast<ConstantInt>(*II)->getSExtValue());
408
409 // GEPs with a single 0 index can be merged with direct loads
410 if (Operands.size() == 1 && Operands.front() == 0)
411 Operands.clear();
Chris Lattnerb5bd9242008-01-11 22:31:41 +0000412
413 Function::arg_iterator TheArg = I2;
414 for (ScalarizeTable::iterator It = ArgIndices.begin();
David Blaikie76826632015-03-14 21:11:26 +0000415 It->second != Operands; ++It, ++TheArg) {
Chris Lattnerb5bd9242008-01-11 22:31:41 +0000416 assert(It != ArgIndices.end() && "GEP not handled??");
417 }
418
419 std::string NewName = I->getName();
Matthijs Kooijmanfd307042008-07-29 10:00:13 +0000420 for (unsigned i = 0, e = Operands.size(); i != e; ++i) {
Chandler Carruthae9ce3d2017-01-29 08:03:19 +0000421 NewName += "." + utostr(Operands[i]);
Matthijs Kooijmanfd307042008-07-29 10:00:13 +0000422 }
423 NewName += ".val";
424 TheArg->setName(NewName);
Chris Lattnerb5bd9242008-01-11 22:31:41 +0000425
David Greenecf0addf2010-01-05 01:28:37 +0000426 DEBUG(dbgs() << "*** Promoted agg argument '" << TheArg->getName()
Chandler Carruthae9ce3d2017-01-29 08:03:19 +0000427 << "' of function '" << NF->getName() << "'\n");
Chris Lattnerb5bd9242008-01-11 22:31:41 +0000428
429 // All of the uses must be load instructions. Replace them all with
430 // the argument specified by ArgNo.
431 while (!GEP->use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +0000432 LoadInst *L = cast<LoadInst>(GEP->user_back());
Duncan P. N. Exon Smith17323402015-10-13 17:51:03 +0000433 L->replaceAllUsesWith(&*TheArg);
Chris Lattnerb5bd9242008-01-11 22:31:41 +0000434 L->eraseFromParent();
435 }
Chris Lattnerb5bd9242008-01-11 22:31:41 +0000436 GEP->eraseFromParent();
437 }
438 }
439
440 // Increment I2 past all of the arguments added for this promoted pointer.
Benjamin Kramer84036252012-09-30 17:31:56 +0000441 std::advance(I2, ArgIndices.size());
Chris Lattnerb5bd9242008-01-11 22:31:41 +0000442 }
Chris Lattner483ae012004-03-07 21:29:54 +0000443
Chandler Carruthaddcda42017-02-09 23:46:27 +0000444 return NF;
Chris Lattner483ae012004-03-07 21:29:54 +0000445}
David Blaikiee844cd52014-07-01 21:13:37 +0000446
Chandler Carruthcd836cd2017-01-29 08:03:16 +0000447/// AllCallersPassInValidPointerForArgument - Return true if we can prove that
448/// all callees pass in a valid pointer for the specified function argument.
Chandler Carruth8e9c0a82017-01-29 08:03:21 +0000449static bool allCallersPassInValidPointerForArgument(Argument *Arg) {
Chandler Carruthcd836cd2017-01-29 08:03:16 +0000450 Function *Callee = Arg->getParent();
451 const DataLayout &DL = Callee->getParent()->getDataLayout();
452
453 unsigned ArgNo = Arg->getArgNo();
454
455 // Look at all call sites of the function. At this point we know we only have
456 // direct callees.
457 for (User *U : Callee->users()) {
458 CallSite CS(U);
459 assert(CS && "Should only have direct calls!");
460
461 if (!isDereferenceablePointer(CS.getArgument(ArgNo), DL))
462 return false;
463 }
464 return true;
465}
466
467/// Returns true if Prefix is a prefix of longer. That means, Longer has a size
468/// that is greater than or equal to the size of prefix, and each of the
469/// elements in Prefix is the same as the corresponding elements in Longer.
470///
471/// This means it also returns true when Prefix and Longer are equal!
Chandler Carruth8e9c0a82017-01-29 08:03:21 +0000472static bool isPrefix(const IndicesVector &Prefix, const IndicesVector &Longer) {
Chandler Carruthcd836cd2017-01-29 08:03:16 +0000473 if (Prefix.size() > Longer.size())
474 return false;
475 return std::equal(Prefix.begin(), Prefix.end(), Longer.begin());
476}
477
Chandler Carruthcd836cd2017-01-29 08:03:16 +0000478/// Checks if Indices, or a prefix of Indices, is in Set.
Chandler Carruth8e9c0a82017-01-29 08:03:21 +0000479static bool prefixIn(const IndicesVector &Indices,
Chandler Carruthcd836cd2017-01-29 08:03:16 +0000480 std::set<IndicesVector> &Set) {
Chandler Carruthae9ce3d2017-01-29 08:03:19 +0000481 std::set<IndicesVector>::iterator Low;
482 Low = Set.upper_bound(Indices);
483 if (Low != Set.begin())
484 Low--;
485 // Low is now the last element smaller than or equal to Indices. This means
486 // it points to a prefix of Indices (possibly Indices itself), if such
487 // prefix exists.
488 //
489 // This load is safe if any prefix of its operands is safe to load.
Chandler Carruth8e9c0a82017-01-29 08:03:21 +0000490 return Low != Set.end() && isPrefix(*Low, Indices);
Chandler Carruthcd836cd2017-01-29 08:03:16 +0000491}
492
493/// Mark the given indices (ToMark) as safe in the given set of indices
494/// (Safe). Marking safe usually means adding ToMark to Safe. However, if there
495/// is already a prefix of Indices in Safe, Indices are implicitely marked safe
496/// already. Furthermore, any indices that Indices is itself a prefix of, are
497/// removed from Safe (since they are implicitely safe because of Indices now).
Chandler Carruth8e9c0a82017-01-29 08:03:21 +0000498static void markIndicesSafe(const IndicesVector &ToMark,
Chandler Carruthcd836cd2017-01-29 08:03:16 +0000499 std::set<IndicesVector> &Safe) {
500 std::set<IndicesVector>::iterator Low;
501 Low = Safe.upper_bound(ToMark);
502 // Guard against the case where Safe is empty
503 if (Low != Safe.begin())
504 Low--;
505 // Low is now the last element smaller than or equal to Indices. This
506 // means it points to a prefix of Indices (possibly Indices itself), if
507 // such prefix exists.
508 if (Low != Safe.end()) {
Chandler Carruth8e9c0a82017-01-29 08:03:21 +0000509 if (isPrefix(*Low, ToMark))
Chandler Carruthcd836cd2017-01-29 08:03:16 +0000510 // If there is already a prefix of these indices (or exactly these
511 // indices) marked a safe, don't bother adding these indices
512 return;
513
514 // Increment Low, so we can use it as a "insert before" hint
515 ++Low;
516 }
517 // Insert
518 Low = Safe.insert(Low, ToMark);
519 ++Low;
520 // If there we're a prefix of longer index list(s), remove those
521 std::set<IndicesVector>::iterator End = Safe.end();
Chandler Carruth8e9c0a82017-01-29 08:03:21 +0000522 while (Low != End && isPrefix(ToMark, *Low)) {
Chandler Carruthcd836cd2017-01-29 08:03:16 +0000523 std::set<IndicesVector>::iterator Remove = Low;
524 ++Low;
525 Safe.erase(Remove);
526 }
527}
528
529/// isSafeToPromoteArgument - As you might guess from the name of this method,
530/// it checks to see if it is both safe and useful to promote the argument.
531/// This method limits promotion of aggregates to only promote up to three
532/// elements of the aggregate in order to avoid exploding the number of
533/// arguments passed in.
534static bool isSafeToPromoteArgument(Argument *Arg, bool isByValOrInAlloca,
535 AAResults &AAR, unsigned MaxElements) {
536 typedef std::set<IndicesVector> GEPIndicesSet;
537
538 // Quick exit for unused arguments
539 if (Arg->use_empty())
540 return true;
541
542 // We can only promote this argument if all of the uses are loads, or are GEP
543 // instructions (with constant indices) that are subsequently loaded.
544 //
545 // Promoting the argument causes it to be loaded in the caller
546 // unconditionally. This is only safe if we can prove that either the load
547 // would have happened in the callee anyway (ie, there is a load in the entry
548 // block) or the pointer passed in at every call site is guaranteed to be
549 // valid.
550 // In the former case, invalid loads can happen, but would have happened
551 // anyway, in the latter case, invalid loads won't happen. This prevents us
552 // from introducing an invalid load that wouldn't have happened in the
553 // original code.
554 //
555 // This set will contain all sets of indices that are loaded in the entry
556 // block, and thus are safe to unconditionally load in the caller.
557 //
558 // This optimization is also safe for InAlloca parameters, because it verifies
559 // that the address isn't captured.
560 GEPIndicesSet SafeToUnconditionallyLoad;
561
562 // This set contains all the sets of indices that we are planning to promote.
563 // This makes it possible to limit the number of arguments added.
564 GEPIndicesSet ToPromote;
565
566 // If the pointer is always valid, any load with first index 0 is valid.
Chandler Carruth8e9c0a82017-01-29 08:03:21 +0000567 if (isByValOrInAlloca || allCallersPassInValidPointerForArgument(Arg))
Chandler Carruthcd836cd2017-01-29 08:03:16 +0000568 SafeToUnconditionallyLoad.insert(IndicesVector(1, 0));
569
570 // First, iterate the entry block and mark loads of (geps of) arguments as
571 // safe.
572 BasicBlock &EntryBlock = Arg->getParent()->front();
573 // Declare this here so we can reuse it
574 IndicesVector Indices;
575 for (Instruction &I : EntryBlock)
576 if (LoadInst *LI = dyn_cast<LoadInst>(&I)) {
577 Value *V = LI->getPointerOperand();
578 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(V)) {
579 V = GEP->getPointerOperand();
580 if (V == Arg) {
581 // This load actually loads (part of) Arg? Check the indices then.
582 Indices.reserve(GEP->getNumIndices());
583 for (User::op_iterator II = GEP->idx_begin(), IE = GEP->idx_end();
584 II != IE; ++II)
585 if (ConstantInt *CI = dyn_cast<ConstantInt>(*II))
586 Indices.push_back(CI->getSExtValue());
587 else
588 // We found a non-constant GEP index for this argument? Bail out
589 // right away, can't promote this argument at all.
590 return false;
591
592 // Indices checked out, mark them as safe
Chandler Carruth8e9c0a82017-01-29 08:03:21 +0000593 markIndicesSafe(Indices, SafeToUnconditionallyLoad);
Chandler Carruthcd836cd2017-01-29 08:03:16 +0000594 Indices.clear();
595 }
596 } else if (V == Arg) {
597 // Direct loads are equivalent to a GEP with a single 0 index.
Chandler Carruth8e9c0a82017-01-29 08:03:21 +0000598 markIndicesSafe(IndicesVector(1, 0), SafeToUnconditionallyLoad);
Chandler Carruthcd836cd2017-01-29 08:03:16 +0000599 }
600 }
601
602 // Now, iterate all uses of the argument to see if there are any uses that are
603 // not (GEP+)loads, or any (GEP+)loads that are not safe to promote.
Chandler Carruthae9ce3d2017-01-29 08:03:19 +0000604 SmallVector<LoadInst *, 16> Loads;
Chandler Carruthcd836cd2017-01-29 08:03:16 +0000605 IndicesVector Operands;
606 for (Use &U : Arg->uses()) {
607 User *UR = U.getUser();
608 Operands.clear();
609 if (LoadInst *LI = dyn_cast<LoadInst>(UR)) {
610 // Don't hack volatile/atomic loads
Chandler Carruthae9ce3d2017-01-29 08:03:19 +0000611 if (!LI->isSimple())
612 return false;
Chandler Carruthcd836cd2017-01-29 08:03:16 +0000613 Loads.push_back(LI);
614 // Direct loads are equivalent to a GEP with a zero index and then a load.
615 Operands.push_back(0);
616 } else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(UR)) {
617 if (GEP->use_empty()) {
618 // Dead GEP's cause trouble later. Just remove them if we run into
619 // them.
620 GEP->eraseFromParent();
621 // TODO: This runs the above loop over and over again for dead GEPs
622 // Couldn't we just do increment the UI iterator earlier and erase the
623 // use?
624 return isSafeToPromoteArgument(Arg, isByValOrInAlloca, AAR,
625 MaxElements);
626 }
627
628 // Ensure that all of the indices are constants.
Chandler Carruthae9ce3d2017-01-29 08:03:19 +0000629 for (User::op_iterator i = GEP->idx_begin(), e = GEP->idx_end(); i != e;
630 ++i)
Chandler Carruthcd836cd2017-01-29 08:03:16 +0000631 if (ConstantInt *C = dyn_cast<ConstantInt>(*i))
632 Operands.push_back(C->getSExtValue());
633 else
Chandler Carruthae9ce3d2017-01-29 08:03:19 +0000634 return false; // Not a constant operand GEP!
Chandler Carruthcd836cd2017-01-29 08:03:16 +0000635
636 // Ensure that the only users of the GEP are load instructions.
637 for (User *GEPU : GEP->users())
638 if (LoadInst *LI = dyn_cast<LoadInst>(GEPU)) {
639 // Don't hack volatile/atomic loads
Chandler Carruthae9ce3d2017-01-29 08:03:19 +0000640 if (!LI->isSimple())
641 return false;
Chandler Carruthcd836cd2017-01-29 08:03:16 +0000642 Loads.push_back(LI);
643 } else {
644 // Other uses than load?
645 return false;
646 }
647 } else {
Chandler Carruthae9ce3d2017-01-29 08:03:19 +0000648 return false; // Not a load or a GEP.
Chandler Carruthcd836cd2017-01-29 08:03:16 +0000649 }
650
651 // Now, see if it is safe to promote this load / loads of this GEP. Loading
652 // is safe if Operands, or a prefix of Operands, is marked as safe.
Chandler Carruth8e9c0a82017-01-29 08:03:21 +0000653 if (!prefixIn(Operands, SafeToUnconditionallyLoad))
Chandler Carruthcd836cd2017-01-29 08:03:16 +0000654 return false;
655
656 // See if we are already promoting a load with these indices. If not, check
657 // to make sure that we aren't promoting too many elements. If so, nothing
658 // to do.
659 if (ToPromote.find(Operands) == ToPromote.end()) {
660 if (MaxElements > 0 && ToPromote.size() == MaxElements) {
661 DEBUG(dbgs() << "argpromotion not promoting argument '"
Chandler Carruthae9ce3d2017-01-29 08:03:19 +0000662 << Arg->getName()
663 << "' because it would require adding more "
664 << "than " << MaxElements
665 << " arguments to the function.\n");
Chandler Carruthcd836cd2017-01-29 08:03:16 +0000666 // We limit aggregate promotion to only promoting up to a fixed number
667 // of elements of the aggregate.
668 return false;
669 }
670 ToPromote.insert(std::move(Operands));
671 }
672 }
673
Chandler Carruthae9ce3d2017-01-29 08:03:19 +0000674 if (Loads.empty())
675 return true; // No users, this is a dead argument.
Chandler Carruthcd836cd2017-01-29 08:03:16 +0000676
677 // Okay, now we know that the argument is only used by load instructions and
678 // it is safe to unconditionally perform all of them. Use alias analysis to
679 // check to see if the pointer is guaranteed to not be modified from entry of
680 // the function to each of the load instructions.
681
682 // Because there could be several/many load instructions, remember which
683 // blocks we know to be transparent to the load.
Chandler Carruthae9ce3d2017-01-29 08:03:19 +0000684 df_iterator_default_set<BasicBlock *, 16> TranspBlocks;
Chandler Carruthcd836cd2017-01-29 08:03:16 +0000685
686 for (LoadInst *Load : Loads) {
687 // Check to see if the load is invalidated from the start of the block to
688 // the load itself.
689 BasicBlock *BB = Load->getParent();
690
691 MemoryLocation Loc = MemoryLocation::get(Load);
692 if (AAR.canInstructionRangeModRef(BB->front(), *Load, Loc, MRI_Mod))
Chandler Carruthae9ce3d2017-01-29 08:03:19 +0000693 return false; // Pointer is invalidated!
Chandler Carruthcd836cd2017-01-29 08:03:16 +0000694
695 // Now check every path from the entry block to the load for transparency.
696 // To do this, we perform a depth first search on the inverse CFG from the
697 // loading block.
698 for (BasicBlock *P : predecessors(BB)) {
699 for (BasicBlock *TranspBB : inverse_depth_first_ext(P, TranspBlocks))
700 if (AAR.canBasicBlockModify(*TranspBB, Loc))
701 return false;
702 }
703 }
704
705 // If the path from the entry of the function to each load is free of
706 // instructions that potentially invalidate the load, we can make the
707 // transformation!
708 return true;
709}
710
Chandler Carruthcd836cd2017-01-29 08:03:16 +0000711/// \brief Checks if a type could have padding bytes.
712static bool isDenselyPacked(Type *type, const DataLayout &DL) {
713
714 // There is no size information, so be conservative.
715 if (!type->isSized())
716 return false;
717
718 // If the alloc size is not equal to the storage size, then there are padding
719 // bytes. For x86_fp80 on x86-64, size: 80 alloc size: 128.
720 if (DL.getTypeSizeInBits(type) != DL.getTypeAllocSizeInBits(type))
721 return false;
722
723 if (!isa<CompositeType>(type))
724 return true;
725
726 // For homogenous sequential types, check for padding within members.
727 if (SequentialType *seqTy = dyn_cast<SequentialType>(type))
728 return isDenselyPacked(seqTy->getElementType(), DL);
729
730 // Check for padding within and between elements of a struct.
731 StructType *StructTy = cast<StructType>(type);
732 const StructLayout *Layout = DL.getStructLayout(StructTy);
733 uint64_t StartPos = 0;
734 for (unsigned i = 0, E = StructTy->getNumElements(); i < E; ++i) {
735 Type *ElTy = StructTy->getElementType(i);
736 if (!isDenselyPacked(ElTy, DL))
737 return false;
738 if (StartPos != Layout->getElementOffsetInBits(i))
739 return false;
740 StartPos += DL.getTypeAllocSizeInBits(ElTy);
741 }
742
743 return true;
744}
745
746/// \brief Checks if the padding bytes of an argument could be accessed.
747static bool canPaddingBeAccessed(Argument *arg) {
748
749 assert(arg->hasByValAttr());
750
751 // Track all the pointers to the argument to make sure they are not captured.
752 SmallPtrSet<Value *, 16> PtrValues;
753 PtrValues.insert(arg);
754
755 // Track all of the stores.
756 SmallVector<StoreInst *, 16> Stores;
757
758 // Scan through the uses recursively to make sure the pointer is always used
759 // sanely.
760 SmallVector<Value *, 16> WorkList;
761 WorkList.insert(WorkList.end(), arg->user_begin(), arg->user_end());
762 while (!WorkList.empty()) {
763 Value *V = WorkList.back();
764 WorkList.pop_back();
765 if (isa<GetElementPtrInst>(V) || isa<PHINode>(V)) {
766 if (PtrValues.insert(V).second)
767 WorkList.insert(WorkList.end(), V->user_begin(), V->user_end());
768 } else if (StoreInst *Store = dyn_cast<StoreInst>(V)) {
769 Stores.push_back(Store);
770 } else if (!isa<LoadInst>(V)) {
771 return true;
772 }
773 }
774
Chandler Carruthae9ce3d2017-01-29 08:03:19 +0000775 // Check to make sure the pointers aren't captured
Chandler Carruthcd836cd2017-01-29 08:03:16 +0000776 for (StoreInst *Store : Stores)
777 if (PtrValues.count(Store->getValueOperand()))
778 return true;
779
780 return false;
781}
782
783/// PromoteArguments - This method checks the specified function to see if there
784/// are any promotable arguments and if it is safe to promote the function (for
785/// example, all callers are direct). If safe to promote some arguments, it
786/// calls the DoPromotion method.
787///
Chandler Carruthaddcda42017-02-09 23:46:27 +0000788static Function *
789promoteArguments(Function *F, function_ref<AAResults &(Function &F)> AARGetter,
790 unsigned MaxElements,
791 Optional<function_ref<void(CallSite OldCS, CallSite NewCS)>>
792 ReplaceCallSite) {
Chandler Carruthcd836cd2017-01-29 08:03:16 +0000793 // Make sure that it is local to this module.
Chandler Carruthaddcda42017-02-09 23:46:27 +0000794 if (!F->hasLocalLinkage())
Chandler Carruthae9ce3d2017-01-29 08:03:19 +0000795 return nullptr;
Chandler Carruthcd836cd2017-01-29 08:03:16 +0000796
797 // Don't promote arguments for variadic functions. Adding, removing, or
798 // changing non-pack parameters can change the classification of pack
799 // parameters. Frontends encode that classification at the call site in the
800 // IR, while in the callee the classification is determined dynamically based
801 // on the number of registers consumed so far.
Chandler Carruthae9ce3d2017-01-29 08:03:19 +0000802 if (F->isVarArg())
803 return nullptr;
Chandler Carruthcd836cd2017-01-29 08:03:16 +0000804
805 // First check: see if there are any pointer arguments! If not, quick exit.
Chandler Carruthae9ce3d2017-01-29 08:03:19 +0000806 SmallVector<Argument *, 16> PointerArgs;
Chandler Carruthcd836cd2017-01-29 08:03:16 +0000807 for (Argument &I : F->args())
808 if (I.getType()->isPointerTy())
809 PointerArgs.push_back(&I);
Chandler Carruthae9ce3d2017-01-29 08:03:19 +0000810 if (PointerArgs.empty())
811 return nullptr;
Chandler Carruthcd836cd2017-01-29 08:03:16 +0000812
813 // Second check: make sure that all callers are direct callers. We can't
814 // transform functions that have indirect callers. Also see if the function
815 // is self-recursive.
816 bool isSelfRecursive = false;
817 for (Use &U : F->uses()) {
818 CallSite CS(U.getUser());
819 // Must be a direct call.
Chandler Carruthae9ce3d2017-01-29 08:03:19 +0000820 if (CS.getInstruction() == nullptr || !CS.isCallee(&U))
821 return nullptr;
822
Chandler Carruthcd836cd2017-01-29 08:03:16 +0000823 if (CS.getInstruction()->getParent()->getParent() == F)
824 isSelfRecursive = true;
825 }
Chandler Carruthae9ce3d2017-01-29 08:03:19 +0000826
Chandler Carruthcd836cd2017-01-29 08:03:16 +0000827 const DataLayout &DL = F->getParent()->getDataLayout();
828
829 AAResults &AAR = AARGetter(*F);
830
831 // Check to see which arguments are promotable. If an argument is promotable,
832 // add it to ArgsToPromote.
Chandler Carruthae9ce3d2017-01-29 08:03:19 +0000833 SmallPtrSet<Argument *, 8> ArgsToPromote;
834 SmallPtrSet<Argument *, 8> ByValArgsToTransform;
Chandler Carruthcd836cd2017-01-29 08:03:16 +0000835 for (Argument *PtrArg : PointerArgs) {
836 Type *AgTy = cast<PointerType>(PtrArg->getType())->getElementType();
837
838 // Replace sret attribute with noalias. This reduces register pressure by
839 // avoiding a register copy.
840 if (PtrArg->hasStructRetAttr()) {
841 unsigned ArgNo = PtrArg->getArgNo();
842 F->setAttributes(
843 F->getAttributes()
844 .removeAttribute(F->getContext(), ArgNo + 1, Attribute::StructRet)
845 .addAttribute(F->getContext(), ArgNo + 1, Attribute::NoAlias));
846 for (Use &U : F->uses()) {
847 CallSite CS(U.getUser());
848 CS.setAttributes(
849 CS.getAttributes()
850 .removeAttribute(F->getContext(), ArgNo + 1,
851 Attribute::StructRet)
852 .addAttribute(F->getContext(), ArgNo + 1, Attribute::NoAlias));
853 }
854 }
855
856 // If this is a byval argument, and if the aggregate type is small, just
857 // pass the elements, which is always safe, if the passed value is densely
858 // packed or if we can prove the padding bytes are never accessed. This does
859 // not apply to inalloca.
860 bool isSafeToPromote =
861 PtrArg->hasByValAttr() &&
862 (isDenselyPacked(AgTy, DL) || !canPaddingBeAccessed(PtrArg));
863 if (isSafeToPromote) {
864 if (StructType *STy = dyn_cast<StructType>(AgTy)) {
865 if (MaxElements > 0 && STy->getNumElements() > MaxElements) {
866 DEBUG(dbgs() << "argpromotion disable promoting argument '"
Chandler Carruthae9ce3d2017-01-29 08:03:19 +0000867 << PtrArg->getName()
868 << "' because it would require adding more"
869 << " than " << MaxElements
870 << " arguments to the function.\n");
Chandler Carruthcd836cd2017-01-29 08:03:16 +0000871 continue;
872 }
Chandler Carruthae9ce3d2017-01-29 08:03:19 +0000873
Chandler Carruthcd836cd2017-01-29 08:03:16 +0000874 // If all the elements are single-value types, we can promote it.
875 bool AllSimple = true;
876 for (const auto *EltTy : STy->elements()) {
877 if (!EltTy->isSingleValueType()) {
878 AllSimple = false;
879 break;
880 }
881 }
882
883 // Safe to transform, don't even bother trying to "promote" it.
884 // Passing the elements as a scalar will allow sroa to hack on
885 // the new alloca we introduce.
886 if (AllSimple) {
887 ByValArgsToTransform.insert(PtrArg);
888 continue;
889 }
890 }
891 }
892
893 // If the argument is a recursive type and we're in a recursive
894 // function, we could end up infinitely peeling the function argument.
895 if (isSelfRecursive) {
896 if (StructType *STy = dyn_cast<StructType>(AgTy)) {
897 bool RecursiveType = false;
898 for (const auto *EltTy : STy->elements()) {
899 if (EltTy == PtrArg->getType()) {
900 RecursiveType = true;
901 break;
902 }
903 }
904 if (RecursiveType)
905 continue;
906 }
907 }
Chandler Carruthae9ce3d2017-01-29 08:03:19 +0000908
Chandler Carruthcd836cd2017-01-29 08:03:16 +0000909 // Otherwise, see if we can promote the pointer to its value.
910 if (isSafeToPromoteArgument(PtrArg, PtrArg->hasByValOrInAllocaAttr(), AAR,
911 MaxElements))
912 ArgsToPromote.insert(PtrArg);
913 }
914
915 // No promotable pointer arguments.
Chandler Carruthae9ce3d2017-01-29 08:03:19 +0000916 if (ArgsToPromote.empty() && ByValArgsToTransform.empty())
Chandler Carruthcd836cd2017-01-29 08:03:16 +0000917 return nullptr;
918
Chandler Carruthaddcda42017-02-09 23:46:27 +0000919 return doPromotion(F, ArgsToPromote, ByValArgsToTransform, ReplaceCallSite);
920}
921
922PreservedAnalyses ArgumentPromotionPass::run(LazyCallGraph::SCC &C,
923 CGSCCAnalysisManager &AM,
924 LazyCallGraph &CG,
925 CGSCCUpdateResult &UR) {
926 bool Changed = false, LocalChange;
927
928 // Iterate until we stop promoting from this SCC.
929 do {
930 LocalChange = false;
931
932 for (LazyCallGraph::Node &N : C) {
933 Function &OldF = N.getFunction();
934
935 FunctionAnalysisManager &FAM =
936 AM.getResult<FunctionAnalysisManagerCGSCCProxy>(C, CG).getManager();
937 // FIXME: This lambda must only be used with this function. We should
938 // skip the lambda and just get the AA results directly.
939 auto AARGetter = [&](Function &F) -> AAResults & {
940 assert(&F == &OldF && "Called with an unexpected function!");
941 return FAM.getResult<AAManager>(F);
942 };
943
944 Function *NewF = promoteArguments(&OldF, AARGetter, 3u, None);
945 if (!NewF)
946 continue;
947 LocalChange = true;
948
949 // Directly substitute the functions in the call graph. Note that this
950 // requires the old function to be completely dead and completely
951 // replaced by the new function. It does no call graph updates, it merely
952 // swaps out the particular function mapped to a particular node in the
953 // graph.
954 C.getOuterRefSCC().replaceNodeFunction(N, *NewF);
955 OldF.eraseFromParent();
956 }
957
958 Changed |= LocalChange;
959 } while (LocalChange);
960
961 if (!Changed)
962 return PreservedAnalyses::all();
963
964 return PreservedAnalyses::none();
Chandler Carruthcd836cd2017-01-29 08:03:16 +0000965}
966
967namespace {
Chandler Carruthae9ce3d2017-01-29 08:03:19 +0000968/// ArgPromotion - The 'by reference' to 'by value' argument promotion pass.
969///
970struct ArgPromotion : public CallGraphSCCPass {
971 void getAnalysisUsage(AnalysisUsage &AU) const override {
972 AU.addRequired<AssumptionCacheTracker>();
973 AU.addRequired<TargetLibraryInfoWrapperPass>();
974 getAAResultsAnalysisUsage(AU);
975 CallGraphSCCPass::getAnalysisUsage(AU);
976 }
Chandler Carruthcd836cd2017-01-29 08:03:16 +0000977
Chandler Carruthae9ce3d2017-01-29 08:03:19 +0000978 bool runOnSCC(CallGraphSCC &SCC) override;
979 static char ID; // Pass identification, replacement for typeid
980 explicit ArgPromotion(unsigned MaxElements = 3)
981 : CallGraphSCCPass(ID), MaxElements(MaxElements) {
982 initializeArgPromotionPass(*PassRegistry::getPassRegistry());
983 }
Chandler Carruthcd836cd2017-01-29 08:03:16 +0000984
Chandler Carruthae9ce3d2017-01-29 08:03:19 +0000985private:
986 using llvm::Pass::doInitialization;
987 bool doInitialization(CallGraph &CG) override;
988 /// The maximum number of elements to expand, or 0 for unlimited.
989 unsigned MaxElements;
990};
Chandler Carruthcd836cd2017-01-29 08:03:16 +0000991}
992
993char ArgPromotion::ID = 0;
994INITIALIZE_PASS_BEGIN(ArgPromotion, "argpromotion",
Chandler Carruthae9ce3d2017-01-29 08:03:19 +0000995 "Promote 'by reference' arguments to scalars", false,
996 false)
Chandler Carruthcd836cd2017-01-29 08:03:16 +0000997INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker)
998INITIALIZE_PASS_DEPENDENCY(CallGraphWrapperPass)
999INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass)
1000INITIALIZE_PASS_END(ArgPromotion, "argpromotion",
Chandler Carruthae9ce3d2017-01-29 08:03:19 +00001001 "Promote 'by reference' arguments to scalars", false, false)
Chandler Carruthcd836cd2017-01-29 08:03:16 +00001002
1003Pass *llvm::createArgumentPromotionPass(unsigned MaxElements) {
1004 return new ArgPromotion(MaxElements);
1005}
1006
1007bool ArgPromotion::runOnSCC(CallGraphSCC &SCC) {
1008 if (skipSCC(SCC))
1009 return false;
1010
1011 // Get the callgraph information that we need to update to reflect our
1012 // changes.
1013 CallGraph &CG = getAnalysis<CallGraphWrapperPass>().getCallGraph();
1014
Peter Collingbournecea1e4e2017-02-09 23:11:52 +00001015 LegacyAARGetter AARGetter(*this);
Chandler Carruthcd836cd2017-01-29 08:03:16 +00001016
1017 bool Changed = false, LocalChange;
1018
1019 // Iterate until we stop promoting from this SCC.
1020 do {
1021 LocalChange = false;
1022 // Attempt to promote arguments from all functions in this SCC.
1023 for (CallGraphNode *OldNode : SCC) {
Chandler Carruthaddcda42017-02-09 23:46:27 +00001024 Function *OldF = OldNode->getFunction();
1025 if (!OldF)
1026 continue;
1027
1028 auto ReplaceCallSite = [&](CallSite OldCS, CallSite NewCS) {
1029 Function *Caller = OldCS.getInstruction()->getParent()->getParent();
1030 CallGraphNode *NewCalleeNode =
1031 CG.getOrInsertFunction(NewCS.getCalledFunction());
1032 CallGraphNode *CallerNode = CG[Caller];
1033 CallerNode->replaceCallEdge(OldCS, NewCS, NewCalleeNode);
1034 };
1035
1036 if (Function *NewF = promoteArguments(OldF, AARGetter, MaxElements,
1037 {ReplaceCallSite})) {
Chandler Carruthcd836cd2017-01-29 08:03:16 +00001038 LocalChange = true;
Chandler Carruthaddcda42017-02-09 23:46:27 +00001039
1040 // Update the call graph for the newly promoted function.
1041 CallGraphNode *NewNode = CG.getOrInsertFunction(NewF);
1042 NewNode->stealCalledFunctionsFrom(OldNode);
1043 if (OldNode->getNumReferences() == 0)
1044 delete CG.removeFunctionFromModule(OldNode);
1045 else
1046 OldF->setLinkage(Function::ExternalLinkage);
1047
1048 // And updat ethe SCC we're iterating as well.
Chandler Carruthcd836cd2017-01-29 08:03:16 +00001049 SCC.ReplaceNode(OldNode, NewNode);
1050 }
1051 }
1052 // Remember that we changed something.
1053 Changed |= LocalChange;
1054 } while (LocalChange);
1055
1056 return Changed;
1057}
1058
David Blaikiee844cd52014-07-01 21:13:37 +00001059bool ArgPromotion::doInitialization(CallGraph &CG) {
David Blaikiee844cd52014-07-01 21:13:37 +00001060 return CallGraphSCCPass::doInitialization(CG);
1061}