clang 23.0.0git
AMDGPU.cpp
Go to the documentation of this file.
1//===- AMDGPU.cpp ---------------------------------------------------------===//
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#include "ABIInfoImpl.h"
10#include "TargetInfo.h"
11#include "llvm/ADT/StringExtras.h"
12#include "llvm/Support/AMDGPUAddrSpace.h"
13
14using namespace clang;
15using namespace clang::CodeGen;
16
17//===----------------------------------------------------------------------===//
18// AMDGPU ABI Implementation
19//===----------------------------------------------------------------------===//
20
21namespace {
22
23class AMDGPUABIInfo final : public DefaultABIInfo {
24private:
25 static const unsigned MaxNumRegsForArgsRet = 16;
26
27 uint64_t numRegsForType(QualType Ty) const;
28
29 bool isHomogeneousAggregateBaseType(QualType Ty) const override;
30 bool isHomogeneousAggregateSmallEnough(const Type *Base,
31 uint64_t Members) const override;
32
33 // Coerce HIP scalar pointer arguments from generic pointers to global ones.
34 llvm::Type *coerceKernelArgumentType(llvm::Type *Ty, unsigned FromAS,
35 unsigned ToAS) const {
36 // Single value types.
37 auto *PtrTy = llvm::dyn_cast<llvm::PointerType>(Ty);
38 if (PtrTy && PtrTy->getAddressSpace() == FromAS)
39 return llvm::PointerType::get(Ty->getContext(), ToAS);
40 return Ty;
41 }
42
43public:
44 explicit AMDGPUABIInfo(CodeGen::CodeGenTypes &CGT) :
45 DefaultABIInfo(CGT) {}
46
47 ABIArgInfo classifyReturnType(QualType RetTy) const;
48 ABIArgInfo classifyKernelArgumentType(QualType Ty) const;
49 ABIArgInfo classifyArgumentType(QualType Ty, bool Variadic,
50 unsigned &NumRegsLeft) const;
51
52 void computeInfo(CGFunctionInfo &FI) const override;
53 RValue EmitVAArg(CodeGenFunction &CGF, Address VAListAddr, QualType Ty,
54 AggValueSlot Slot) const override;
55
56 llvm::FixedVectorType *
57 getOptimalVectorMemoryType(llvm::FixedVectorType *T,
58 const LangOptions &Opt) const override {
59 // We have legal instructions for 96-bit so 3x32 can be supported.
60 // FIXME: This check should be a subtarget feature as technically SI doesn't
61 // support it.
62 if (T->getNumElements() == 3 && getDataLayout().getTypeSizeInBits(T) == 96)
63 return T;
64 return DefaultABIInfo::getOptimalVectorMemoryType(T, Opt);
65 }
66};
67
68bool AMDGPUABIInfo::isHomogeneousAggregateBaseType(QualType Ty) const {
69 return true;
70}
71
72bool AMDGPUABIInfo::isHomogeneousAggregateSmallEnough(
73 const Type *Base, uint64_t Members) const {
74 uint32_t NumRegs = (getContext().getTypeSize(Base) + 31) / 32;
75
76 // Homogeneous Aggregates may occupy at most 16 registers.
77 return Members * NumRegs <= MaxNumRegsForArgsRet;
78}
79
80/// Estimate number of registers the type will use when passed in registers.
81uint64_t AMDGPUABIInfo::numRegsForType(QualType Ty) const {
82 uint64_t NumRegs = 0;
83
84 if (const VectorType *VT = Ty->getAs<VectorType>()) {
85 // Compute from the number of elements. The reported size is based on the
86 // in-memory size, which includes the padding 4th element for 3-vectors.
87 QualType EltTy = VT->getElementType();
88 uint64_t EltSize = getContext().getTypeSize(EltTy);
89
90 // 16-bit element vectors should be passed as packed.
91 if (EltSize == 16)
92 return (VT->getNumElements() + 1) / 2;
93
94 uint64_t EltNumRegs = (EltSize + 31) / 32;
95 return EltNumRegs * VT->getNumElements();
96 }
97
98 if (const auto *RD = Ty->getAsRecordDecl()) {
99 assert(!RD->hasFlexibleArrayMember());
100
101 for (const FieldDecl *Field : RD->fields()) {
102 QualType FieldTy = Field->getType();
103 NumRegs += numRegsForType(FieldTy);
104 }
105
106 return NumRegs;
107 }
108
109 return (getContext().getTypeSize(Ty) + 31) / 32;
110}
111
112void AMDGPUABIInfo::computeInfo(CGFunctionInfo &FI) const {
113 llvm::CallingConv::ID CC = FI.getCallingConvention();
114
115 if (!getCXXABI().classifyReturnType(FI))
117
118 unsigned ArgumentIndex = 0;
119 const unsigned numFixedArguments = FI.getNumRequiredArgs();
120
121 unsigned NumRegsLeft = MaxNumRegsForArgsRet;
122 for (auto &Arg : FI.arguments()) {
123 if (CC == llvm::CallingConv::AMDGPU_KERNEL) {
124 Arg.info = classifyKernelArgumentType(Arg.type);
125 } else {
126 bool FixedArgument = ArgumentIndex++ < numFixedArguments;
127 Arg.info = classifyArgumentType(Arg.type, !FixedArgument, NumRegsLeft);
128 }
129 }
130}
131
132RValue AMDGPUABIInfo::EmitVAArg(CodeGenFunction &CGF, Address VAListAddr,
133 QualType Ty, AggValueSlot Slot) const {
134 const bool IsIndirect = false;
135 const bool AllowHigherAlign = false;
136 return emitVoidPtrVAArg(CGF, VAListAddr, Ty, IsIndirect,
137 getContext().getTypeInfoInChars(Ty),
138 CharUnits::fromQuantity(4), AllowHigherAlign, Slot);
139}
140
141ABIArgInfo AMDGPUABIInfo::classifyReturnType(QualType RetTy) const {
142 if (isAggregateTypeForABI(RetTy)) {
143 // Records with non-trivial destructors/copy-constructors should not be
144 // returned by value.
145 if (!getRecordArgABI(RetTy, getCXXABI())) {
146 // Ignore empty structs/unions.
147 if (isEmptyRecord(getContext(), RetTy, true))
148 return ABIArgInfo::getIgnore();
149
150 // Lower single-element structs to just return a regular value.
151 if (const Type *SeltTy = isSingleElementStruct(RetTy, getContext()))
152 return ABIArgInfo::getDirect(CGT.ConvertType(QualType(SeltTy, 0)));
153
154 if (const auto *RD = RetTy->getAsRecordDecl();
155 RD && RD->hasFlexibleArrayMember())
157
158 // Pack aggregates <= 4 bytes into single VGPR or pair.
159 uint64_t Size = getContext().getTypeSize(RetTy);
160 if (Size <= 16)
161 return ABIArgInfo::getDirect(llvm::Type::getInt16Ty(getVMContext()));
162
163 if (Size <= 32)
164 return ABIArgInfo::getDirect(llvm::Type::getInt32Ty(getVMContext()));
165
166 if (Size <= 64) {
167 llvm::Type *I32Ty = llvm::Type::getInt32Ty(getVMContext());
168 return ABIArgInfo::getDirect(llvm::ArrayType::get(I32Ty, 2));
169 }
170
171 if (numRegsForType(RetTy) <= MaxNumRegsForArgsRet)
172 return ABIArgInfo::getDirect();
173 }
174 }
175
176 // Otherwise just do the default thing.
178}
179
180/// For kernels all parameters are really passed in a special buffer. It doesn't
181/// make sense to pass anything byval, so everything must be direct.
182ABIArgInfo AMDGPUABIInfo::classifyKernelArgumentType(QualType Ty) const {
184
185 // TODO: Can we omit empty structs?
186
187 if (const Type *SeltTy = isSingleElementStruct(Ty, getContext()))
188 Ty = QualType(SeltTy, 0);
189
190 llvm::Type *OrigLTy = CGT.ConvertType(Ty);
191 llvm::Type *LTy = OrigLTy;
192 if (getContext().getLangOpts().HIP) {
193 LTy = coerceKernelArgumentType(
194 OrigLTy, /*FromAS=*/getContext().getTargetAddressSpace(LangAS::Default),
195 /*ToAS=*/getContext().getTargetAddressSpace(LangAS::cuda_device));
196 }
197
198 // FIXME: This doesn't apply the optimization of coercing pointers in structs
199 // to global address space when using byref. This would require implementing a
200 // new kind of coercion of the in-memory type when for indirect arguments.
201 if (LTy == OrigLTy && isAggregateTypeForABI(Ty)) {
203 getContext().getTypeAlignInChars(Ty),
204 getContext().getTargetAddressSpace(LangAS::opencl_constant),
205 false /*Realign*/, nullptr /*Padding*/);
206 }
207
208 // If we set CanBeFlattened to true, CodeGen will expand the struct to its
209 // individual elements, which confuses the Clover OpenCL backend; therefore we
210 // have to set it to false here. Other args of getDirect() are just defaults.
211 return ABIArgInfo::getDirect(LTy, 0, nullptr, false);
212}
213
214ABIArgInfo AMDGPUABIInfo::classifyArgumentType(QualType Ty, bool Variadic,
215 unsigned &NumRegsLeft) const {
216 assert(NumRegsLeft <= MaxNumRegsForArgsRet && "register estimate underflow");
217
219
220 if (Variadic) {
221 return ABIArgInfo::getDirect(/*T=*/nullptr,
222 /*Offset=*/0,
223 /*Padding=*/nullptr,
224 /*CanBeFlattened=*/false,
225 /*Align=*/0);
226 }
227
228 if (isAggregateTypeForABI(Ty)) {
229 // Records with non-trivial destructors/copy-constructors should not be
230 // passed by value.
231 if (auto RAA = getRecordArgABI(Ty, getCXXABI()))
232 return getNaturalAlignIndirect(Ty, getDataLayout().getAllocaAddrSpace(),
234
235 // Ignore empty structs/unions.
236 if (isEmptyRecord(getContext(), Ty, true))
237 return ABIArgInfo::getIgnore();
238
239 // Lower single-element structs to just pass a regular value. TODO: We
240 // could do reasonable-size multiple-element structs too, using getExpand(),
241 // though watch out for things like bitfields.
242 if (const Type *SeltTy = isSingleElementStruct(Ty, getContext()))
243 return ABIArgInfo::getDirect(CGT.ConvertType(QualType(SeltTy, 0)));
244
245 if (const auto *RD = Ty->getAsRecordDecl();
246 RD && RD->hasFlexibleArrayMember())
248
249 // Pack aggregates <= 8 bytes into single VGPR or pair.
250 uint64_t Size = getContext().getTypeSize(Ty);
251 if (Size <= 64) {
252 unsigned NumRegs = (Size + 31) / 32;
253 NumRegsLeft -= std::min(NumRegsLeft, NumRegs);
254
255 if (Size <= 16)
256 return ABIArgInfo::getDirect(llvm::Type::getInt16Ty(getVMContext()));
257
258 if (Size <= 32)
259 return ABIArgInfo::getDirect(llvm::Type::getInt32Ty(getVMContext()));
260
261 // XXX: Should this be i64 instead, and should the limit increase?
262 llvm::Type *I32Ty = llvm::Type::getInt32Ty(getVMContext());
263 return ABIArgInfo::getDirect(llvm::ArrayType::get(I32Ty, 2));
264 }
265
266 if (NumRegsLeft > 0) {
267 uint64_t NumRegs = numRegsForType(Ty);
268 if (NumRegsLeft >= NumRegs) {
269 NumRegsLeft -= NumRegs;
270 return ABIArgInfo::getDirect();
271 }
272 }
273
274 // Use pass-by-reference in stead of pass-by-value for struct arguments in
275 // function ABI.
277 getContext().getTypeAlignInChars(Ty),
278 getContext().getTargetAddressSpace(LangAS::opencl_private));
279 }
280
281 // Otherwise just do the default thing.
282 ABIArgInfo ArgInfo = DefaultABIInfo::classifyArgumentType(Ty);
283 if (!ArgInfo.isIndirect()) {
284 uint64_t NumRegs = numRegsForType(Ty);
285 NumRegsLeft -= std::min(NumRegs, uint64_t{NumRegsLeft});
286 }
287
288 return ArgInfo;
289}
290
291class AMDGPUTargetCodeGenInfo : public TargetCodeGenInfo {
292public:
293 AMDGPUTargetCodeGenInfo(CodeGenTypes &CGT)
294 : TargetCodeGenInfo(std::make_unique<AMDGPUABIInfo>(CGT)) {}
295
296 bool supportsLibCall() const override { return false; }
297 void setFunctionDeclAttributes(const FunctionDecl *FD, llvm::Function *F,
298 CodeGenModule &CGM) const;
299
300 void setTargetAttributes(const Decl *D, llvm::GlobalValue *GV,
301 CodeGen::CodeGenModule &M) const override;
302 unsigned getDeviceKernelCallingConv() const override;
303
304 llvm::Constant *getNullPointer(const CodeGen::CodeGenModule &CGM,
305 llvm::PointerType *T, QualType QT) const override;
306
307 LangAS getASTAllocaAddressSpace() const override {
309 getABIInfo().getDataLayout().getAllocaAddrSpace());
310 }
311 LangAS getGlobalVarAddressSpace(CodeGenModule &CGM,
312 const VarDecl *D) const override;
313 StringRef getLLVMSyncScopeStr(const LangOptions &LangOpts, SyncScope Scope,
314 llvm::AtomicOrdering Ordering) const override;
315 void setTargetAtomicMetadata(CodeGenFunction &CGF,
316 llvm::Instruction &AtomicInst,
317 const AtomicExpr *Expr = nullptr) const override;
318 llvm::Value *createEnqueuedBlockKernel(CodeGenFunction &CGF,
319 llvm::Function *BlockInvokeFunc,
320 llvm::Type *BlockTy) const override;
321 bool shouldEmitStaticExternCAliases() const override;
322 bool shouldEmitDWARFBitFieldSeparators() const override;
323 void setCUDAKernelCallingConvention(const FunctionType *&FT) const override;
324};
325}
326
328 llvm::GlobalValue *GV) {
329 if (GV->getVisibility() != llvm::GlobalValue::HiddenVisibility)
330 return false;
331
332 return !D->hasAttr<OMPDeclareTargetDeclAttr>() &&
333 (D->hasAttr<DeviceKernelAttr>() ||
334 (isa<FunctionDecl>(D) && D->hasAttr<CUDAGlobalAttr>()) ||
335 (isa<VarDecl>(D) &&
336 (D->hasAttr<CUDADeviceAttr>() || D->hasAttr<CUDAConstantAttr>() ||
337 cast<VarDecl>(D)->getType()->isCUDADeviceBuiltinSurfaceType() ||
338 cast<VarDecl>(D)->getType()->isCUDADeviceBuiltinTextureType())));
339}
340
341void AMDGPUTargetCodeGenInfo::setFunctionDeclAttributes(
342 const FunctionDecl *FD, llvm::Function *F, CodeGenModule &M) const {
343 const auto *ReqdWGS =
344 M.getLangOpts().OpenCL ? FD->getAttr<ReqdWorkGroupSizeAttr>() : nullptr;
345 const bool IsOpenCLKernel =
346 M.getLangOpts().OpenCL && FD->hasAttr<DeviceKernelAttr>();
347 const bool IsHIPKernel = M.getLangOpts().HIP && FD->hasAttr<CUDAGlobalAttr>();
348
349 const auto *FlatWGS = FD->getAttr<AMDGPUFlatWorkGroupSizeAttr>();
350 if (ReqdWGS || FlatWGS) {
351 M.handleAMDGPUFlatWorkGroupSizeAttr(F, FlatWGS, ReqdWGS);
352 } else if (IsOpenCLKernel || IsHIPKernel) {
353 // By default, restrict the maximum size to a value specified by
354 // --gpu-max-threads-per-block=n or its default value for HIP.
355 const unsigned OpenCLDefaultMaxWorkGroupSize = 256;
356 const unsigned DefaultMaxWorkGroupSize =
357 IsOpenCLKernel ? OpenCLDefaultMaxWorkGroupSize
358 : M.getLangOpts().GPUMaxThreadsPerBlock;
359 std::string AttrVal =
360 std::string("1,") + llvm::utostr(DefaultMaxWorkGroupSize);
361 F->addFnAttr("amdgpu-flat-work-group-size", AttrVal);
362 }
363
364 if (const auto *Attr = FD->getAttr<AMDGPUWavesPerEUAttr>())
366
367 if (const auto *Attr = FD->getAttr<AMDGPUNumSGPRAttr>()) {
368 unsigned NumSGPR = Attr->getNumSGPR();
369
370 if (NumSGPR != 0)
371 F->addFnAttr("amdgpu-num-sgpr", llvm::utostr(NumSGPR));
372 }
373
374 if (const auto *Attr = FD->getAttr<AMDGPUNumVGPRAttr>()) {
375 uint32_t NumVGPR = Attr->getNumVGPR();
376
377 if (NumVGPR != 0)
378 F->addFnAttr("amdgpu-num-vgpr", llvm::utostr(NumVGPR));
379 }
380
381 if (const auto *Attr = FD->getAttr<AMDGPUMaxNumWorkGroupsAttr>()) {
382 uint32_t X = Attr->getMaxNumWorkGroupsX()
383 ->EvaluateKnownConstInt(M.getContext())
384 .getExtValue();
385 // Y and Z dimensions default to 1 if not specified
386 uint32_t Y = Attr->getMaxNumWorkGroupsY()
387 ? Attr->getMaxNumWorkGroupsY()
388 ->EvaluateKnownConstInt(M.getContext())
389 .getExtValue()
390 : 1;
391 uint32_t Z = Attr->getMaxNumWorkGroupsZ()
392 ? Attr->getMaxNumWorkGroupsZ()
393 ->EvaluateKnownConstInt(M.getContext())
394 .getExtValue()
395 : 1;
396
397 llvm::SmallString<32> AttrVal;
398 llvm::raw_svector_ostream OS(AttrVal);
399 OS << X << ',' << Y << ',' << Z;
400
401 F->addFnAttr("amdgpu-max-num-workgroups", AttrVal.str());
402 }
403
404 if (auto *Attr = FD->getAttr<CUDAClusterDimsAttr>()) {
405 auto GetExprVal = [&](const auto &E) {
406 return E ? E->EvaluateKnownConstInt(M.getContext()).getExtValue() : 1;
407 };
408 unsigned X = GetExprVal(Attr->getX());
409 unsigned Y = GetExprVal(Attr->getY());
410 unsigned Z = GetExprVal(Attr->getZ());
411 llvm::SmallString<32> AttrVal;
412 llvm::raw_svector_ostream OS(AttrVal);
413 OS << X << ',' << Y << ',' << Z;
414 F->addFnAttr("amdgpu-cluster-dims", AttrVal.str());
415 }
416
417 // OpenCL doesn't support cluster feature.
418 const TargetInfo &TTI = M.getContext().getTargetInfo();
419 if ((IsOpenCLKernel &&
420 TTI.hasFeatureEnabled(TTI.getTargetOpts().FeatureMap, "clusters")) ||
421 FD->hasAttr<CUDANoClusterAttr>())
422 F->addFnAttr("amdgpu-cluster-dims", "0,0,0");
423}
424
425void AMDGPUTargetCodeGenInfo::setTargetAttributes(
426 const Decl *D, llvm::GlobalValue *GV, CodeGen::CodeGenModule &M) const {
428 GV->setVisibility(llvm::GlobalValue::ProtectedVisibility);
429 GV->setDSOLocal(true);
430 }
431
432 if (GV->isDeclaration())
433 return;
434
435 llvm::Function *F = dyn_cast<llvm::Function>(GV);
436 if (!F)
437 return;
438
439 const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(D);
440 if (FD)
441 setFunctionDeclAttributes(FD, F, M);
442 if (!getABIInfo().getCodeGenOpts().EmitIEEENaNCompliantInsts)
443 F->addFnAttr("amdgpu-ieee", "false");
444 if (getABIInfo().getCodeGenOpts().AMDGPUExpandWaitcntProfiling)
445 F->addFnAttr("amdgpu-expand-waitcnt-profiling");
446}
447
448unsigned AMDGPUTargetCodeGenInfo::getDeviceKernelCallingConv() const {
449 return llvm::CallingConv::AMDGPU_KERNEL;
450}
451
452// Currently LLVM assumes null pointers always have value 0,
453// which results in incorrectly transformed IR. Therefore, instead of
454// emitting null pointers in private and local address spaces, a null
455// pointer in generic address space is emitted which is casted to a
456// pointer in local or private address space.
457llvm::Constant *AMDGPUTargetCodeGenInfo::getNullPointer(
458 const CodeGen::CodeGenModule &CGM, llvm::PointerType *PT,
459 QualType QT) const {
460 if (CGM.getContext().getTargetNullPointerValue(QT) == 0)
461 return llvm::ConstantPointerNull::get(PT);
462
463 auto &Ctx = CGM.getContext();
464 auto NPT = llvm::PointerType::get(
465 PT->getContext(), Ctx.getTargetAddressSpace(LangAS::opencl_generic));
466 return llvm::ConstantExpr::getAddrSpaceCast(
467 llvm::ConstantPointerNull::get(NPT), PT);
468}
469
470LangAS
471AMDGPUTargetCodeGenInfo::getGlobalVarAddressSpace(CodeGenModule &CGM,
472 const VarDecl *D) const {
473 assert(!CGM.getLangOpts().OpenCL &&
474 !(CGM.getLangOpts().CUDA && CGM.getLangOpts().CUDAIsDevice) &&
475 "Address space agnostic languages only");
476 LangAS DefaultGlobalAS = getLangASFromTargetAS(
477 CGM.getContext().getTargetAddressSpace(LangAS::opencl_global));
478 if (!D)
479 return DefaultGlobalAS;
480
481 LangAS AddrSpace = D->getType().getAddressSpace();
482 if (AddrSpace != LangAS::Default)
483 return AddrSpace;
484
485 // Only promote to address space 4 if VarDecl has constant initialization.
486 if (D->getType().isConstantStorage(CGM.getContext(), false, false) &&
488 if (auto ConstAS = CGM.getTarget().getConstantAddressSpace())
489 return *ConstAS;
490 }
491 return DefaultGlobalAS;
492}
493
494StringRef AMDGPUTargetCodeGenInfo::getLLVMSyncScopeStr(
495 const LangOptions &LangOpts, SyncScope Scope,
496 llvm::AtomicOrdering Ordering) const {
497
498 // OpenCL assumes by default that atomic scopes are per-address space for
499 // non-sequentially consistent operations.
500 bool IsOneAs = (Scope >= SyncScope::OpenCLWorkGroup &&
501 Scope <= SyncScope::OpenCLSubGroup &&
502 Ordering != llvm::AtomicOrdering::SequentiallyConsistent);
503
504 switch (Scope) {
505 case SyncScope::HIPSingleThread:
506 case SyncScope::SingleScope:
507 return IsOneAs ? "singlethread-one-as" : "singlethread";
508 case SyncScope::HIPWavefront:
509 case SyncScope::OpenCLSubGroup:
510 case SyncScope::WavefrontScope:
511 return IsOneAs ? "wavefront-one-as" : "wavefront";
512 case SyncScope::HIPCluster:
513 case SyncScope::ClusterScope:
514 assert(!IsOneAs && "OpenCL does not have cluster scope");
515 return "cluster";
516 case SyncScope::HIPWorkgroup:
517 case SyncScope::OpenCLWorkGroup:
518 case SyncScope::WorkgroupScope:
519 return IsOneAs ? "workgroup-one-as" : "workgroup";
520 case SyncScope::HIPAgent:
521 case SyncScope::OpenCLDevice:
522 case SyncScope::DeviceScope:
523 return IsOneAs ? "agent-one-as" : "agent";
524 case SyncScope::SystemScope:
525 case SyncScope::HIPSystem:
526 case SyncScope::OpenCLAllSVMDevices:
527 return IsOneAs ? "one-as" : "";
528 }
529 llvm_unreachable("Unknown SyncScope enum");
530}
531
532void AMDGPUTargetCodeGenInfo::setTargetAtomicMetadata(
533 CodeGenFunction &CGF, llvm::Instruction &AtomicInst,
534 const AtomicExpr *AE) const {
535 auto *RMW = dyn_cast<llvm::AtomicRMWInst>(&AtomicInst);
536 auto *CmpX = dyn_cast<llvm::AtomicCmpXchgInst>(&AtomicInst);
537
538 // OpenCL and old style HIP atomics consider atomics targeting thread private
539 // memory to be undefined.
540 //
541 // TODO: This is probably undefined for atomic load/store, but there's not
542 // much direct codegen benefit to knowing this.
543 if (((RMW && RMW->getPointerAddressSpace() == llvm::AMDGPUAS::FLAT_ADDRESS) ||
544 (CmpX &&
545 CmpX->getPointerAddressSpace() == llvm::AMDGPUAS::FLAT_ADDRESS)) &&
547 llvm::MDBuilder MDHelper(CGF.getLLVMContext());
548 llvm::MDNode *ASRange = MDHelper.createRange(
549 llvm::APInt(32, llvm::AMDGPUAS::PRIVATE_ADDRESS),
550 llvm::APInt(32, llvm::AMDGPUAS::PRIVATE_ADDRESS + 1));
551 AtomicInst.setMetadata(llvm::LLVMContext::MD_noalias_addrspace, ASRange);
552 }
553
554 if (!RMW)
555 return;
556
557 AtomicOptions AO = CGF.CGM.getAtomicOpts();
558 llvm::MDNode *Empty = llvm::MDNode::get(CGF.getLLVMContext(), {});
560 RMW->setMetadata("amdgpu.no.fine.grained.memory", Empty);
562 RMW->setMetadata("amdgpu.no.remote.memory", Empty);
564 RMW->getOperation() == llvm::AtomicRMWInst::FAdd &&
565 RMW->getType()->isFloatTy())
566 RMW->setMetadata("amdgpu.ignore.denormal.mode", Empty);
567}
568
569bool AMDGPUTargetCodeGenInfo::shouldEmitStaticExternCAliases() const {
570 return false;
571}
572
573bool AMDGPUTargetCodeGenInfo::shouldEmitDWARFBitFieldSeparators() const {
574 return true;
575}
576
577void AMDGPUTargetCodeGenInfo::setCUDAKernelCallingConvention(
578 const FunctionType *&FT) const {
579 FT = getABIInfo().getContext().adjustFunctionType(
581}
582
583/// Return IR struct type for rtinfo struct in rocm-device-libs used for device
584/// enqueue.
585///
586/// ptr addrspace(1) kernel_object, i32 private_segment_size,
587/// i32 group_segment_size
588
589static llvm::StructType *
590getAMDGPURuntimeHandleType(llvm::LLVMContext &C,
591 llvm::Type *KernelDescriptorPtrTy) {
592 llvm::Type *Int32 = llvm::Type::getInt32Ty(C);
593 return llvm::StructType::create(C, {KernelDescriptorPtrTy, Int32, Int32},
594 "block.runtime.handle.t");
595}
596
597/// Create an OpenCL kernel for an enqueued block.
598///
599/// The type of the first argument (the block literal) is the struct type
600/// of the block literal instead of a pointer type. The first argument
601/// (block literal) is passed directly by value to the kernel. The kernel
602/// allocates the same type of struct on stack and stores the block literal
603/// to it and passes its pointer to the block invoke function. The kernel
604/// has "enqueued-block" function attribute and kernel argument metadata.
605llvm::Value *AMDGPUTargetCodeGenInfo::createEnqueuedBlockKernel(
606 CodeGenFunction &CGF, llvm::Function *Invoke, llvm::Type *BlockTy) const {
607 auto &Builder = CGF.Builder;
608 auto &C = CGF.getLLVMContext();
609
610 auto *InvokeFT = Invoke->getFunctionType();
611 llvm::SmallVector<llvm::Type *, 2> ArgTys;
612 llvm::SmallVector<llvm::Metadata *, 8> AddressQuals;
613 llvm::SmallVector<llvm::Metadata *, 8> AccessQuals;
614 llvm::SmallVector<llvm::Metadata *, 8> ArgTypeNames;
615 llvm::SmallVector<llvm::Metadata *, 8> ArgBaseTypeNames;
616 llvm::SmallVector<llvm::Metadata *, 8> ArgTypeQuals;
617 llvm::SmallVector<llvm::Metadata *, 8> ArgNames;
618
619 ArgTys.push_back(BlockTy);
620 ArgTypeNames.push_back(llvm::MDString::get(C, "__block_literal"));
621 AddressQuals.push_back(llvm::ConstantAsMetadata::get(Builder.getInt32(0)));
622 ArgBaseTypeNames.push_back(llvm::MDString::get(C, "__block_literal"));
623 ArgTypeQuals.push_back(llvm::MDString::get(C, ""));
624 AccessQuals.push_back(llvm::MDString::get(C, "none"));
625 ArgNames.push_back(llvm::MDString::get(C, "block_literal"));
626 for (unsigned I = 1, E = InvokeFT->getNumParams(); I < E; ++I) {
627 ArgTys.push_back(InvokeFT->getParamType(I));
628 ArgTypeNames.push_back(llvm::MDString::get(C, "void*"));
629 AddressQuals.push_back(llvm::ConstantAsMetadata::get(Builder.getInt32(3)));
630 AccessQuals.push_back(llvm::MDString::get(C, "none"));
631 ArgBaseTypeNames.push_back(llvm::MDString::get(C, "void*"));
632 ArgTypeQuals.push_back(llvm::MDString::get(C, ""));
633 ArgNames.push_back(
634 llvm::MDString::get(C, (Twine("local_arg") + Twine(I)).str()));
635 }
636
637 llvm::Module &Mod = CGF.CGM.getModule();
638 const llvm::DataLayout &DL = Mod.getDataLayout();
639
640 llvm::Twine Name = Invoke->getName() + "_kernel";
641 auto *FT = llvm::FunctionType::get(llvm::Type::getVoidTy(C), ArgTys, false);
642
643 // The kernel itself can be internal, the runtime does not directly access the
644 // kernel address (only the kernel descriptor).
645 auto *F = llvm::Function::Create(FT, llvm::GlobalValue::InternalLinkage, Name,
646 &Mod);
647 F->setCallingConv(getDeviceKernelCallingConv());
648
649 llvm::AttrBuilder KernelAttrs(C);
650 // FIXME: The invoke isn't applying the right attributes either
651 // FIXME: This is missing setTargetAttributes
653 F->addFnAttrs(KernelAttrs);
654
655 auto IP = CGF.Builder.saveIP();
656 auto *BB = llvm::BasicBlock::Create(C, "entry", F);
657 Builder.SetInsertPoint(BB);
658 const auto BlockAlign = DL.getPrefTypeAlign(BlockTy);
659 auto *BlockPtr = Builder.CreateAlloca(BlockTy, nullptr);
660 BlockPtr->setAlignment(BlockAlign);
661 Builder.CreateAlignedStore(F->arg_begin(), BlockPtr, BlockAlign);
662 auto *Cast = Builder.CreatePointerCast(BlockPtr, InvokeFT->getParamType(0));
663 llvm::SmallVector<llvm::Value *, 2> Args;
664 Args.push_back(Cast);
665 for (llvm::Argument &A : llvm::drop_begin(F->args()))
666 Args.push_back(&A);
667 llvm::CallInst *call = Builder.CreateCall(Invoke, Args);
668 call->setCallingConv(Invoke->getCallingConv());
669 Builder.CreateRetVoid();
670 Builder.restoreIP(IP);
671
672 F->setMetadata("kernel_arg_addr_space", llvm::MDNode::get(C, AddressQuals));
673 F->setMetadata("kernel_arg_access_qual", llvm::MDNode::get(C, AccessQuals));
674 F->setMetadata("kernel_arg_type", llvm::MDNode::get(C, ArgTypeNames));
675 F->setMetadata("kernel_arg_base_type",
676 llvm::MDNode::get(C, ArgBaseTypeNames));
677 F->setMetadata("kernel_arg_type_qual", llvm::MDNode::get(C, ArgTypeQuals));
678 if (CGF.CGM.getCodeGenOpts().EmitOpenCLArgMetadata)
679 F->setMetadata("kernel_arg_name", llvm::MDNode::get(C, ArgNames));
680
681 llvm::StructType *HandleTy = getAMDGPURuntimeHandleType(
682 C, llvm::PointerType::get(C, DL.getDefaultGlobalsAddressSpace()));
683 llvm::Constant *RuntimeHandleInitializer =
684 llvm::ConstantAggregateZero::get(HandleTy);
685
686 llvm::Twine RuntimeHandleName = F->getName() + ".runtime.handle";
687
688 // The runtime needs access to the runtime handle as an external symbol. The
689 // runtime handle will need to be made external later, in
690 // AMDGPUExportOpenCLEnqueuedBlocks. The kernel itself has a hidden reference
691 // inside the runtime handle, and is not directly referenced.
692
693 // TODO: We would initialize the first field by declaring F->getName() + ".kd"
694 // to reference the kernel descriptor. The runtime wouldn't need to bother
695 // setting it. We would need to have a final symbol name though.
696 // TODO: Can we directly use an external symbol with getGlobalIdentifier?
697 auto *RuntimeHandle = new llvm::GlobalVariable(
698 Mod, HandleTy,
699 /*isConstant=*/true, llvm::GlobalValue::InternalLinkage,
700 /*Initializer=*/RuntimeHandleInitializer, RuntimeHandleName,
701 /*InsertBefore=*/nullptr, llvm::GlobalValue::NotThreadLocal,
702 DL.getDefaultGlobalsAddressSpace(),
703 /*isExternallyInitialized=*/true);
704
705 llvm::MDNode *HandleAsMD =
706 llvm::MDNode::get(C, llvm::ValueAsMetadata::get(RuntimeHandle));
707 F->setMetadata(llvm::LLVMContext::MD_associated, HandleAsMD);
708
709 RuntimeHandle->setSection(".amdgpu.kernel.runtime.handle");
710
711 CGF.CGM.addUsedGlobal(F);
712 CGF.CGM.addUsedGlobal(RuntimeHandle);
713 return RuntimeHandle;
714}
715
717 llvm::Function *F, const AMDGPUFlatWorkGroupSizeAttr *FlatWGS,
718 const ReqdWorkGroupSizeAttr *ReqdWGS, int32_t *MinThreadsVal,
719 int32_t *MaxThreadsVal) {
720 unsigned Min = 0;
721 unsigned Max = 0;
722 auto Eval = [&](Expr *E) {
723 return E->EvaluateKnownConstInt(getContext()).getExtValue();
724 };
725 if (FlatWGS) {
726 Min = Eval(FlatWGS->getMin());
727 Max = Eval(FlatWGS->getMax());
728 }
729 if (ReqdWGS && Min == 0 && Max == 0)
730 Min = Max = Eval(ReqdWGS->getXDim()) * Eval(ReqdWGS->getYDim()) *
731 Eval(ReqdWGS->getZDim());
732
733 if (Min != 0) {
734 assert(Min <= Max && "Min must be less than or equal Max");
735
736 if (MinThreadsVal)
737 *MinThreadsVal = Min;
738 if (MaxThreadsVal)
739 *MaxThreadsVal = Max;
740 std::string AttrVal = llvm::utostr(Min) + "," + llvm::utostr(Max);
741 if (F)
742 F->addFnAttr("amdgpu-flat-work-group-size", AttrVal);
743 } else
744 assert(Max == 0 && "Max must be zero");
745}
746
748 llvm::Function *F, const AMDGPUWavesPerEUAttr *Attr) {
749 unsigned Min =
750 Attr->getMin()->EvaluateKnownConstInt(getContext()).getExtValue();
751 unsigned Max =
752 Attr->getMax()
753 ? Attr->getMax()->EvaluateKnownConstInt(getContext()).getExtValue()
754 : 0;
755
756 if (Min != 0) {
757 assert((Max == 0 || Min <= Max) && "Min must be less than or equal Max");
758
759 std::string AttrVal = llvm::utostr(Min);
760 if (Max != 0)
761 AttrVal = AttrVal + "," + llvm::utostr(Max);
762 F->addFnAttr("amdgpu-waves-per-eu", AttrVal);
763 } else
764 assert(Max == 0 && "Max must be zero");
765}
766
767std::unique_ptr<TargetCodeGenInfo>
769 return std::make_unique<AMDGPUTargetCodeGenInfo>(CGM.getTypes());
770}
static void setCUDAKernelCallingConvention(CanQualType &FTy, CodeGenModule &CGM, const FunctionDecl *FD)
Set calling convention for CUDA/HIP kernel.
Definition CGCall.cpp:362
static bool requiresAMDGPUProtectedVisibility(const Decl *D, llvm::GlobalValue *GV)
Definition AMDGPU.cpp:327
static llvm::StructType * getAMDGPURuntimeHandleType(llvm::LLVMContext &C, llvm::Type *KernelDescriptorPtrTy)
Return IR struct type for rtinfo struct in rocm-device-libs used for device enqueue.
Definition AMDGPU.cpp:590
#define X(type, name)
Definition Value.h:97
uint64_t getTargetNullPointerValue(QualType QT) const
Get target-dependent integer value for null pointer which is used for constant folding.
const TargetInfo & getTargetInfo() const
Definition ASTContext.h:917
unsigned getTargetAddressSpace(LangAS AS) const
bool threadPrivateMemoryAtomicsAreUndefined() const
Return true if atomics operations targeting allocations in private memory are undefined.
Definition Expr.h:7051
Attr - This represents one attribute.
Definition Attr.h:46
static CharUnits fromQuantity(QuantityType Quantity)
fromQuantity - Construct a CharUnits quantity from a raw integer type.
Definition CharUnits.h:63
static ABIArgInfo getIgnore()
static ABIArgInfo getDirect(llvm::Type *T=nullptr, unsigned Offset=0, llvm::Type *Padding=nullptr, bool CanBeFlattened=true, unsigned Align=0)
static ABIArgInfo getIndirectAliased(CharUnits Alignment, unsigned AddrSpace, bool Realign=false, llvm::Type *Padding=nullptr)
Pass this in memory using the IR byref attribute.
@ RAA_DirectInMemory
Pass it on the stack using its defined layout.
Definition CGCXXABI.h:158
unsigned getCallingConvention() const
getCallingConvention - Return the user specified calling convention, which has been translated into a...
CanQualType getReturnType() const
MutableArrayRef< ArgInfo > arguments()
llvm::LLVMContext & getLLVMContext()
This class organizes the cross-function state that is used while generating LLVM code.
llvm::Module & getModule() const
void handleAMDGPUWavesPerEUAttr(llvm::Function *F, const AMDGPUWavesPerEUAttr *A)
Emit the IR encoding to attach the AMD GPU waves-per-eu attribute to F.
Definition AMDGPU.cpp:747
const LangOptions & getLangOpts() const
const TargetInfo & getTarget() const
void addUsedGlobal(llvm::GlobalValue *GV)
Add a global to a list to be added to the llvm.used metadata.
void handleAMDGPUFlatWorkGroupSizeAttr(llvm::Function *F, const AMDGPUFlatWorkGroupSizeAttr *A, const ReqdWorkGroupSizeAttr *ReqdWGS=nullptr, int32_t *MinThreadsVal=nullptr, int32_t *MaxThreadsVal=nullptr)
Emit the IR encoding to attach the AMD GPU flat-work-group-size attribute to F.
Definition AMDGPU.cpp:716
AtomicOptions getAtomicOpts()
Get the current Atomic options.
ASTContext & getContext() const
const CodeGenOptions & getCodeGenOpts() const
void addDefaultFunctionDefinitionAttributes(llvm::AttrBuilder &attrs)
Like the overload taking a Function &, but intended specifically for frontends that want to build on ...
Definition CGCall.cpp:2307
DefaultABIInfo - The default implementation for ABI specific details.
Definition ABIInfoImpl.h:21
ABIArgInfo classifyArgumentType(QualType RetTy) const
ABIArgInfo classifyReturnType(QualType RetTy) const
Decl - This represents one declaration (or definition), e.g.
Definition DeclBase.h:86
T * getAttr() const
Definition DeclBase.h:573
bool hasAttr() const
Definition DeclBase.h:577
This represents one expression.
Definition Expr.h:112
ExtInfo withCallingConv(CallingConv cc) const
Definition TypeBase.h:4776
ExtInfo getExtInfo() const
Definition TypeBase.h:4909
A (possibly-)qualified type.
Definition TypeBase.h:937
LangAS getAddressSpace() const
Return the address space of this type.
Definition TypeBase.h:8557
bool isConstantStorage(const ASTContext &Ctx, bool ExcludeCtor, bool ExcludeDtor)
Definition TypeBase.h:1036
bool hasFlexibleArrayMember() const
Definition Decl.h:4360
TargetOptions & getTargetOpts() const
Retrieve the target options.
Definition TargetInfo.h:327
virtual std::optional< LangAS > getConstantAddressSpace() const
Return an AST address space which can be used opportunistically for constant global memory.
virtual bool hasFeatureEnabled(const llvm::StringMap< bool > &Features, StringRef Name) const
Check if target has a given feature enabled.
llvm::StringMap< bool > FeatureMap
The map of which features have been enabled disabled based on the command line.
RecordDecl * getAsRecordDecl() const
Retrieves the RecordDecl this type refers to.
Definition Type.h:41
const T * getAs() const
Member-template getAs<specific type>'.
Definition TypeBase.h:9261
QualType getType() const
Definition Decl.h:723
bool hasConstantInitialization() const
Determine whether this variable has constant initialization.
Definition Decl.cpp:2660
ABIArgInfo classifyArgumentType(CodeGenModule &CGM, CanQualType type)
Classify the rules for how to pass a particular type.
@ Decl
The l-value was an access to a declared entity or something equivalently strong, like the address of ...
Definition CGValue.h:146
CGCXXABI::RecordArgABI getRecordArgABI(const RecordType *RT, CGCXXABI &CXXABI)
bool classifyReturnType(const CGCXXABI &CXXABI, CGFunctionInfo &FI, const ABIInfo &Info)
std::unique_ptr< TargetCodeGenInfo > createAMDGPUTargetCodeGenInfo(CodeGenModule &CGM)
Definition AMDGPU.cpp:768
RValue emitVoidPtrVAArg(CodeGenFunction &CGF, Address VAListAddr, QualType ValueTy, bool IsIndirect, TypeInfoChars ValueInfo, CharUnits SlotSizeAndAlign, bool AllowHigherAlign, AggValueSlot Slot, bool ForceRightAdjust=false)
Emit va_arg for a platform using the common void* representation, where arguments are simply emitted ...
bool isAggregateTypeForABI(QualType T)
const Type * isSingleElementStruct(QualType T, ASTContext &Context)
isSingleElementStruct - Determine if a structure is a "singleelement struct", i.e.
QualType useFirstFieldIfTransparentUnion(QualType Ty)
Pass transparent unions as if they were the type of the first element.
bool isEmptyRecord(ASTContext &Context, QualType T, bool AllowArrays, bool AsIfNoUniqueAddr=false)
isEmptyRecord - Return true iff a structure contains only empty fields.
@ OS
Indicates that the tracking object is a descendant of a referenced-counted OSObject,...
bool Cast(InterpState &S, CodePtr OpPC)
Definition Interp.h:2532
The JSON file list parser is used to communicate input to InstallAPI.
bool isa(CodeGen::Address addr)
Definition Address.h:330
nullptr
This class represents a compute construct, representing a 'Kind' of ‘parallel’, 'serial',...
@ Type
The name was classified as a type.
Definition Sema.h:564
LangAS
Defines the address space values used by the address space qualifier of QualType.
SyncScope
Defines sync scope values used internally by clang.
Definition SyncScope.h:42
@ CC_DeviceKernel
Definition Specifiers.h:292
U cast(CodeGen::Address addr)
Definition Address.h:327
LangAS getLangASFromTargetAS(unsigned TargetAS)
unsigned long uint64_t
unsigned int uint32_t
bool getOption(AtomicOptionKind Kind) const