LLVM 23.0.0git
AMDGPURewriteOutArguments.cpp
Go to the documentation of this file.
1//===- AMDGPURewriteOutArgumentsPass.cpp - Create struct returns ----------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9/// \file This pass attempts to replace out argument usage with a return of a
10/// struct.
11///
12/// We can support returning a lot of values directly in registers, but
13/// idiomatic C code frequently uses a pointer argument to return a second value
14/// rather than returning a struct by value. GPU stack access is also quite
15/// painful, so we want to avoid that if possible. Passing a stack object
16/// pointer to a function also requires an additional address expansion code
17/// sequence to convert the pointer to be relative to the kernel's scratch wave
18/// offset register since the callee doesn't know what stack frame the incoming
19/// pointer is relative to.
20///
21/// The goal is to try rewriting code that looks like this:
22///
23/// int foo(int a, int b, int* out) {
24/// *out = bar();
25/// return a + b;
26/// }
27///
28/// into something like this:
29///
30/// std::pair<int, int> foo(int a, int b) {
31/// return std::pair(a + b, bar());
32/// }
33///
34/// Typically the incoming pointer is a simple alloca for a temporary variable
35/// to use the API, which if replaced with a struct return will be easily SROA'd
36/// out when the stub function we create is inlined
37///
38/// This pass introduces the struct return, but leaves the unused pointer
39/// arguments and introduces a new stub function calling the struct returning
40/// body. DeadArgumentElimination should be run after this to clean these up.
41//
42//===----------------------------------------------------------------------===//
43
44#include "AMDGPU.h"
46#include "llvm/ADT/Statistic.h"
49#include "llvm/IR/IRBuilder.h"
52#include "llvm/Pass.h"
54#include "llvm/Support/Debug.h"
56
57#define DEBUG_TYPE "amdgpu-rewrite-out-arguments"
58
59using namespace llvm;
60
62 "amdgpu-any-address-space-out-arguments",
63 cl::desc("Replace pointer out arguments with "
64 "struct returns for non-private address space"),
66 cl::init(false));
67
69 "amdgpu-max-return-arg-num-regs",
70 cl::desc("Approximately limit number of return registers for replacing out arguments"),
72 cl::init(16));
73
74STATISTIC(NumOutArgumentsReplaced,
75 "Number out arguments moved to struct return values");
76STATISTIC(NumOutArgumentFunctionsReplaced,
77 "Number of functions with out arguments moved to struct return values");
78
79namespace {
80
81class AMDGPURewriteOutArguments : public FunctionPass {
82private:
83 const DataLayout *DL = nullptr;
84 MemoryDependenceResults *MDA = nullptr;
85
86 Type *getStoredType(Value &Arg) const;
87 Type *getOutArgumentType(Argument &Arg) const;
88
89public:
90 static char ID;
91
92 AMDGPURewriteOutArguments() : FunctionPass(ID) {}
93
94 void getAnalysisUsage(AnalysisUsage &AU) const override {
95 AU.addRequired<MemoryDependenceWrapperPass>();
96 FunctionPass::getAnalysisUsage(AU);
97 }
98
99 bool doInitialization(Module &M) override;
100 bool runOnFunction(Function &F) override;
101};
102
103} // end anonymous namespace
104
105INITIALIZE_PASS_BEGIN(AMDGPURewriteOutArguments, DEBUG_TYPE,
106 "AMDGPU Rewrite Out Arguments", false, false)
108INITIALIZE_PASS_END(AMDGPURewriteOutArguments, DEBUG_TYPE,
109 "AMDGPU Rewrite Out Arguments", false, false)
110
111char AMDGPURewriteOutArguments::ID = 0;
112
113Type *AMDGPURewriteOutArguments::getStoredType(Value &Arg) const {
114 const int MaxUses = 10;
115 int UseCount = 0;
116
117 SmallVector<Use *> Worklist(llvm::make_pointer_range(Arg.uses()));
118
119 Type *StoredType = nullptr;
120 while (!Worklist.empty()) {
121 Use *U = Worklist.pop_back_val();
122
123 if (auto *BCI = dyn_cast<BitCastInst>(U->getUser())) {
124 for (Use &U : BCI->uses())
125 Worklist.push_back(&U);
126 continue;
127 }
128
129 if (auto *SI = dyn_cast<StoreInst>(U->getUser())) {
130 if (UseCount++ > MaxUses)
131 return nullptr;
132
133 if (!SI->isSimple() ||
134 U->getOperandNo() != StoreInst::getPointerOperandIndex())
135 return nullptr;
136
137 if (StoredType && StoredType != SI->getValueOperand()->getType())
138 return nullptr; // More than one type.
139 StoredType = SI->getValueOperand()->getType();
140 continue;
141 }
142
143 // Unsupported user.
144 return nullptr;
145 }
146
147 return StoredType;
148}
149
150Type *AMDGPURewriteOutArguments::getOutArgumentType(Argument &Arg) const {
151 const unsigned MaxOutArgSizeBytes = 4 * MaxNumRetRegs;
153
154 // TODO: It might be useful for any out arguments, not just privates.
155 if (!ArgTy || (ArgTy->getAddressSpace() != DL->getAllocaAddrSpace() &&
156 !AnyAddressSpace) ||
157 Arg.hasByValAttr() || Arg.hasStructRetAttr()) {
158 return nullptr;
159 }
160
161 Type *StoredType = getStoredType(Arg);
162 if (!StoredType || DL->getTypeStoreSize(StoredType) > MaxOutArgSizeBytes)
163 return nullptr;
164
165 return StoredType;
166}
167
168bool AMDGPURewriteOutArguments::doInitialization(Module &M) {
169 DL = &M.getDataLayout();
170 return false;
171}
172
173bool AMDGPURewriteOutArguments::runOnFunction(Function &F) {
174 if (skipFunction(F))
175 return false;
176
177 // TODO: Could probably handle variadic functions.
178 if (F.isVarArg() || F.hasStructRetAttr() ||
179 AMDGPU::isEntryFunctionCC(F.getCallingConv()))
180 return false;
181
182 MDA = &getAnalysis<MemoryDependenceWrapperPass>().getMemDep();
183
184 unsigned ReturnNumRegs = 0;
185 // Maps an out-argument number to its field index in the return struct.
186 // Fields are in processing order, which the retry loop below can reorder
187 // relative to argument order, so the index must be tracked, not recomputed.
188 SmallDenseMap<unsigned, unsigned, 4> OutArgIndexes;
189 SmallVector<Type *, 4> ReturnTypes;
190 Type *RetTy = F.getReturnType();
191 if (!RetTy->isVoidTy()) {
192 ReturnNumRegs = DL->getTypeStoreSize(RetTy) / 4;
193
194 if (ReturnNumRegs >= MaxNumRetRegs)
195 return false;
196
197 ReturnTypes.push_back(RetTy);
198 }
199
201 for (Argument &Arg : F.args()) {
202 if (Type *Ty = getOutArgumentType(Arg)) {
203 LLVM_DEBUG(dbgs() << "Found possible out argument " << Arg
204 << " in function " << F.getName() << '\n');
205 OutArgs.push_back({&Arg, Ty});
206 }
207 }
208
209 if (OutArgs.empty())
210 return false;
211
212 using ReplacementVec = SmallVector<std::pair<Argument *, Value *>, 4>;
213
214 DenseMap<ReturnInst *, ReplacementVec> Replacements;
215
217 for (BasicBlock &BB : F) {
218 if (ReturnInst *RI = dyn_cast<ReturnInst>(&BB.back()))
219 Returns.push_back(RI);
220 }
221
222 if (Returns.empty())
223 return false;
224
225 bool Changing;
226
227 do {
228 Changing = false;
229
230 // Keep retrying if we are able to successfully eliminate an argument. This
231 // helps with cases with multiple arguments which may alias, such as in a
232 // sincos implementation. With 2 stores to may-aliasing arguments, MDA
233 // returns the second store for the first argument too; the identity guard
234 // below rejects it, and a later iteration folds the first argument once the
235 // second store has been removed.
236 for (const auto &Pair : OutArgs) {
237 bool ThisReplaceable = true;
239
240 Argument *OutArg = Pair.first;
241 Type *ArgTy = Pair.second;
242
243 // Skip this argument if converting it will push us over the register
244 // count to return limit.
245
246 // TODO: This is an approximation. When legalized this could be more. We
247 // can ask TLI for exactly how many.
248 unsigned ArgNumRegs = DL->getTypeStoreSize(ArgTy) / 4;
249 if (ArgNumRegs + ReturnNumRegs > MaxNumRetRegs)
250 continue;
251
252 // An argument is convertible only if all exit blocks are able to replace
253 // it.
254 for (ReturnInst *RI : Returns) {
255 BasicBlock *BB = RI->getParent();
256
257 MemDepResult Q = MDA->getPointerDependencyFrom(
258 MemoryLocation::getBeforeOrAfter(OutArg), true, BB->end(), BB, RI);
259 StoreInst *SI = nullptr;
260 if (Q.isDef())
262
263 // MDA stops at the first may-aliasing store, which need not be to this
264 // argument; only fold a store whose pointer is exactly OutArg.
265 if (SI && SI->getPointerOperand() != OutArg)
266 SI = nullptr;
267
268 if (SI) {
269 LLVM_DEBUG(dbgs() << "Found out argument store: " << *SI << '\n');
270 ReplaceableStores.emplace_back(RI, SI);
271 } else {
272 ThisReplaceable = false;
273 break;
274 }
275 }
276
277 if (!ThisReplaceable)
278 continue; // Try the next argument candidate.
279
280 for (std::pair<ReturnInst *, StoreInst *> Store : ReplaceableStores) {
281 Value *ReplVal = Store.second->getValueOperand();
282
283 auto &ValVec = Replacements[Store.first];
284 if (llvm::is_contained(llvm::make_first_range(ValVec), OutArg)) {
286 << "Saw multiple out arg stores" << *OutArg << '\n');
287 // It is possible to see stores to the same argument multiple times,
288 // but we expect these would have been optimized out already.
289 ThisReplaceable = false;
290 break;
291 }
292
293 ValVec.emplace_back(OutArg, ReplVal);
294 Store.second->eraseFromParent();
295 }
296
297 if (ThisReplaceable) {
298 OutArgIndexes.insert({OutArg->getArgNo(), ReturnTypes.size()});
299 ReturnTypes.push_back(ArgTy);
300 ++NumOutArgumentsReplaced;
301 Changing = true;
302 }
303 }
304 } while (Changing);
305
306 if (Replacements.empty())
307 return false;
308
309 LLVMContext &Ctx = F.getContext();
310 StructType *NewRetTy = StructType::create(Ctx, ReturnTypes, F.getName());
311
312 FunctionType *NewFuncTy = FunctionType::get(NewRetTy,
313 F.getFunctionType()->params(),
314 F.isVarArg());
315
316 LLVM_DEBUG(dbgs() << "Computed new return type: " << *NewRetTy << '\n');
317
318 Function *NewFunc = Function::Create(NewFuncTy, Function::PrivateLinkage,
319 F.getName() + ".body");
320 F.getParent()->getFunctionList().insert(F.getIterator(), NewFunc);
321 NewFunc->copyAttributesFrom(&F);
322 NewFunc->setComdat(F.getComdat());
323
324 // We want to preserve the function and param attributes, but need to strip
325 // off any return attributes, e.g. zeroext doesn't make sense with a struct.
326 NewFunc->stealArgumentListFrom(F);
327
328 AttributeMask RetAttrs;
329 RetAttrs.addAttribute(Attribute::SExt);
330 RetAttrs.addAttribute(Attribute::ZExt);
331 RetAttrs.addAttribute(Attribute::NoAlias);
332 NewFunc->removeRetAttrs(RetAttrs);
333 // TODO: How to preserve metadata?
334
335 // Move the body of the function into the new rewritten function, and replace
336 // this function with a stub.
337 NewFunc->splice(NewFunc->begin(), &F);
338
339 for (std::pair<ReturnInst *, ReplacementVec> &Replacement : Replacements) {
340 ReturnInst *RI = Replacement.first;
341 IRBuilder<> B(RI);
342 B.SetCurrentDebugLocation(RI->getDebugLoc());
343
344 Value *NewRetVal = PoisonValue::get(NewRetTy);
345
346 Value *RetVal = RI->getReturnValue();
347 if (RetVal)
348 NewRetVal = B.CreateInsertValue(NewRetVal, RetVal, 0);
349
350 // Use OutArgIndexes so body and stub agree on the field for each argument.
351 for (std::pair<Argument *, Value *> ReturnPoint : Replacement.second) {
352 unsigned FieldIdx = OutArgIndexes.lookup(ReturnPoint.first->getArgNo());
353 NewRetVal = B.CreateInsertValue(NewRetVal, ReturnPoint.second, FieldIdx);
354 }
355
356 if (RetVal)
357 RI->setOperand(0, NewRetVal);
358 else {
359 B.CreateRet(NewRetVal);
360 RI->eraseFromParent();
361 }
362 }
363
364 SmallVector<Value *, 16> StubCallArgs;
365 for (Argument &Arg : F.args()) {
366 if (OutArgIndexes.count(Arg.getArgNo())) {
367 // It's easier to preserve the type of the argument list. We rely on
368 // DeadArgumentElimination to take care of these.
369 StubCallArgs.push_back(PoisonValue::get(Arg.getType()));
370 } else {
371 StubCallArgs.push_back(&Arg);
372 }
373 }
374
375 BasicBlock *StubBB = BasicBlock::Create(Ctx, "", &F);
376 IRBuilder<> B(StubBB);
377 CallInst *StubCall = B.CreateCall(NewFunc, StubCallArgs);
378
379 for (Argument &Arg : F.args()) {
380 auto It = OutArgIndexes.find(Arg.getArgNo());
381 if (It == OutArgIndexes.end())
382 continue;
383
384 unsigned FieldIdx = It->second;
385 Type *EltTy = NewRetTy->getElementType(FieldIdx);
386 const auto Align =
387 DL->getValueOrABITypeAlignment(Arg.getParamAlign(), EltTy);
388
389 Value *Val = B.CreateExtractValue(StubCall, FieldIdx);
390 B.CreateAlignedStore(Val, &Arg, Align);
391 }
392
393 if (!RetTy->isVoidTy()) {
394 B.CreateRet(B.CreateExtractValue(StubCall, 0));
395 } else {
396 B.CreateRetVoid();
397 }
398
399 // The function is now a stub we want to inline.
400 F.addFnAttr(Attribute::AlwaysInline);
401
402 ++NumOutArgumentFunctionsReplaced;
403 return true;
404}
405
407 return new AMDGPURewriteOutArguments();
408}
static cl::opt< unsigned > MaxNumRetRegs("amdgpu-max-return-arg-num-regs", cl::desc("Approximately limit number of return registers for replacing out arguments"), cl::Hidden, cl::init(16))
static cl::opt< bool > AnyAddressSpace("amdgpu-any-address-space-out-arguments", cl::desc("Replace pointer out arguments with " "struct returns for non-private address space"), cl::Hidden, cl::init(false))
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
static bool runOnFunction(Function &F, bool PostInlining)
#define DEBUG_TYPE
#define F(x, y, z)
Definition MD5.cpp:54
Machine Check Debug Module
#define INITIALIZE_PASS_DEPENDENCY(depName)
Definition PassSupport.h:42
#define INITIALIZE_PASS_END(passName, arg, name, cfg, analysis)
Definition PassSupport.h:44
#define INITIALIZE_PASS_BEGIN(passName, arg, name, cfg, analysis)
Definition PassSupport.h:39
This file defines the 'Statistic' class, which is designed to be an easy way to expose various metric...
#define STATISTIC(VARNAME, DESC)
Definition Statistic.h:171
#define LLVM_DEBUG(...)
Definition Debug.h:119
AnalysisUsage & addRequired()
This class represents an incoming formal argument to a Function.
Definition Argument.h:32
LLVM_ABI bool hasByValAttr() const
Return true if this argument has the byval attribute.
Definition Function.cpp:128
unsigned getArgNo() const
Return the index of this formal argument in its containing function.
Definition Argument.h:50
LLVM_ABI MaybeAlign getParamAlign() const
If this is a byval or inalloca argument, return its alignment.
Definition Function.cpp:211
LLVM_ABI bool hasStructRetAttr() const
Return true if this argument has the sret attribute.
Definition Function.cpp:283
AttributeMask & addAttribute(Attribute::AttrKind Val)
Add an attribute to the mask.
iterator end()
Definition BasicBlock.h:474
static BasicBlock * Create(LLVMContext &Context, const Twine &Name="", Function *Parent=nullptr, BasicBlock *InsertBefore=nullptr)
Creates a new BasicBlock.
Definition BasicBlock.h:206
A parsed version of the target data layout string in and methods for querying it.
Definition DataLayout.h:64
ValueT lookup(const_arg_type_t< KeyT > Val) const
Return the entry for the specified key, or a default constructed value if no such entry exists.
Definition DenseMap.h:252
iterator find(const_arg_type_t< KeyT > Val)
Definition DenseMap.h:225
bool empty() const
Definition DenseMap.h:173
size_type count(const_arg_type_t< KeyT > Val) const
Return 1 if the specified key is in the map, 0 otherwise.
Definition DenseMap.h:221
iterator end()
Definition DenseMap.h:143
std::pair< iterator, bool > insert(const std::pair< KeyT, ValueT > &KV)
Definition DenseMap.h:286
FunctionPass class - This class is used to implement most global optimizations.
Definition Pass.h:314
static Function * Create(FunctionType *Ty, LinkageTypes Linkage, unsigned AddrSpace, const Twine &N="", Module *M=nullptr)
Definition Function.h:168
void splice(Function::iterator ToIt, Function *FromF)
Transfer all blocks from FromF to this function at ToIt.
Definition Function.h:761
iterator begin()
Definition Function.h:853
void stealArgumentListFrom(Function &Src)
Steal arguments from another function.
Definition Function.cpp:563
void removeRetAttrs(const AttributeMask &Attrs)
removes the attributes from the return value list of attributes.
Definition Function.cpp:702
void copyAttributesFrom(const Function *Src)
copyAttributesFrom - copy all additional attributes (those not needed to create a Function) from the ...
Definition Function.cpp:839
LLVM_ABI void setComdat(Comdat *C)
Definition Globals.cpp:223
const DebugLoc & getDebugLoc() const
Return the debug location for this node as a DebugLoc.
LLVM_ABI InstListType::iterator eraseFromParent()
This method unlinks 'this' from the containing basic block and deletes it.
bool isDef() const
Tests if this MemDepResult represents a query that is an instruction definition dependency.
Instruction * getInst() const
If this is a normal dependency, returns the instruction that is depended on.
Provides a lazy, caching interface for making common memory aliasing information queries,...
LLVM_ABI MemDepResult getPointerDependencyFrom(const MemoryLocation &Loc, bool isLoad, BasicBlock::iterator ScanIt, BasicBlock *BB, Instruction *QueryInst=nullptr, unsigned *Limit=nullptr)
Returns the instruction on which a memory location depends.
A wrapper analysis pass for the legacy pass manager that exposes a MemoryDepnedenceResults instance.
static MemoryLocation getBeforeOrAfter(const Value *Ptr, const AAMDNodes &AATags=AAMDNodes())
Return a location that may access any location before or after Ptr, while remaining within the underl...
static LLVM_ABI PoisonValue * get(Type *T)
Static factory methods - Return an 'poison' object of the specified type.
Value * getReturnValue() const
Convenience accessor. Returns null if there is no return value.
reference emplace_back(ArgTypes &&... Args)
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
static unsigned getPointerOperandIndex()
static LLVM_ABI StructType * create(LLVMContext &Context, StringRef Name)
This creates an identified struct.
Definition Type.cpp:685
Type * getElementType(unsigned N) const
The instances of the Type class are immutable: once they are created, they are never changed.
Definition Type.h:46
bool isVoidTy() const
Return true if this is 'void'.
Definition Type.h:141
A Use represents the edge between a Value definition and its users.
Definition Use.h:35
void setOperand(unsigned i, Value *Val)
Definition User.h:212
LLVM Value Representation.
Definition Value.h:75
Type * getType() const
All values are typed, get the type of this value.
Definition Value.h:255
iterator_range< use_iterator > uses()
Definition Value.h:380
constexpr char Align[]
Key for Kernel::Arg::Metadata::mAlign.
LLVM_READNONE constexpr bool isEntryFunctionCC(CallingConv::ID CC)
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
Definition CallingConv.h:24
@ BasicBlock
Various leaf nodes.
Definition ISDOpcodes.h:81
initializer< Ty > init(const Ty &Val)
This is an optimization pass for GlobalISel generic memory operations.
FunctionAddr VTableAddr Value
Definition InstrProf.h:137
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
Definition Casting.h:643
FunctionPass * createAMDGPURewriteOutArgumentsPass()
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition Debug.cpp:209
auto make_first_range(ContainerTy &&c)
Given a container of pairs, return a range over the first elements.
Definition STLExtras.h:1398
class LLVM_GSL_OWNER SmallVector
Forward declaration of SmallVector so that calculateSmallVectorDefaultInlinedElements can reference s...
IRBuilder(LLVMContext &, FolderTy, InserterTy, MDNode *, ArrayRef< OperandBundleDef >) -> IRBuilder< FolderTy, InserterTy >
iterator_range< pointer_iterator< WrappedIteratorT > > make_pointer_range(RangeT &&Range)
Definition iterator.h:368
bool is_contained(R &&Range, const E &Element)
Returns true if Element is found in Range.
Definition STLExtras.h:1946