LLVM  8.0.1
AMDGPUMetadata.cpp
Go to the documentation of this file.
1 //===--- AMDGPUMetadata.cpp -------------------------------------*- C++ -*-===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 /// \file
11 /// AMDGPU metadata definitions and in-memory representations.
12 ///
13 //
14 //===----------------------------------------------------------------------===//
15 
16 #include "llvm/ADT/Twine.h"
19 
20 using namespace llvm::AMDGPU;
21 using namespace llvm::AMDGPU::HSAMD;
22 
23 LLVM_YAML_IS_SEQUENCE_VECTOR(Kernel::Arg::Metadata)
24 LLVM_YAML_IS_SEQUENCE_VECTOR(Kernel::Metadata)
25 
26 namespace llvm {
27 namespace yaml {
28 
29 template <>
30 struct ScalarEnumerationTraits<AccessQualifier> {
31  static void enumeration(IO &YIO, AccessQualifier &EN) {
32  YIO.enumCase(EN, "Default", AccessQualifier::Default);
33  YIO.enumCase(EN, "ReadOnly", AccessQualifier::ReadOnly);
34  YIO.enumCase(EN, "WriteOnly", AccessQualifier::WriteOnly);
35  YIO.enumCase(EN, "ReadWrite", AccessQualifier::ReadWrite);
36  }
37 };
38 
39 template <>
40 struct ScalarEnumerationTraits<AddressSpaceQualifier> {
41  static void enumeration(IO &YIO, AddressSpaceQualifier &EN) {
42  YIO.enumCase(EN, "Private", AddressSpaceQualifier::Private);
43  YIO.enumCase(EN, "Global", AddressSpaceQualifier::Global);
44  YIO.enumCase(EN, "Constant", AddressSpaceQualifier::Constant);
45  YIO.enumCase(EN, "Local", AddressSpaceQualifier::Local);
46  YIO.enumCase(EN, "Generic", AddressSpaceQualifier::Generic);
47  YIO.enumCase(EN, "Region", AddressSpaceQualifier::Region);
48  }
49 };
50 
51 template <>
52 struct ScalarEnumerationTraits<ValueKind> {
53  static void enumeration(IO &YIO, ValueKind &EN) {
54  YIO.enumCase(EN, "ByValue", ValueKind::ByValue);
55  YIO.enumCase(EN, "GlobalBuffer", ValueKind::GlobalBuffer);
56  YIO.enumCase(EN, "DynamicSharedPointer", ValueKind::DynamicSharedPointer);
57  YIO.enumCase(EN, "Sampler", ValueKind::Sampler);
58  YIO.enumCase(EN, "Image", ValueKind::Image);
59  YIO.enumCase(EN, "Pipe", ValueKind::Pipe);
60  YIO.enumCase(EN, "Queue", ValueKind::Queue);
61  YIO.enumCase(EN, "HiddenGlobalOffsetX", ValueKind::HiddenGlobalOffsetX);
62  YIO.enumCase(EN, "HiddenGlobalOffsetY", ValueKind::HiddenGlobalOffsetY);
63  YIO.enumCase(EN, "HiddenGlobalOffsetZ", ValueKind::HiddenGlobalOffsetZ);
64  YIO.enumCase(EN, "HiddenNone", ValueKind::HiddenNone);
65  YIO.enumCase(EN, "HiddenPrintfBuffer", ValueKind::HiddenPrintfBuffer);
66  YIO.enumCase(EN, "HiddenDefaultQueue", ValueKind::HiddenDefaultQueue);
67  YIO.enumCase(EN, "HiddenCompletionAction",
69  }
70 };
71 
72 template <>
73 struct ScalarEnumerationTraits<ValueType> {
74  static void enumeration(IO &YIO, ValueType &EN) {
75  YIO.enumCase(EN, "Struct", ValueType::Struct);
76  YIO.enumCase(EN, "I8", ValueType::I8);
77  YIO.enumCase(EN, "U8", ValueType::U8);
78  YIO.enumCase(EN, "I16", ValueType::I16);
79  YIO.enumCase(EN, "U16", ValueType::U16);
80  YIO.enumCase(EN, "F16", ValueType::F16);
81  YIO.enumCase(EN, "I32", ValueType::I32);
82  YIO.enumCase(EN, "U32", ValueType::U32);
83  YIO.enumCase(EN, "F32", ValueType::F32);
84  YIO.enumCase(EN, "I64", ValueType::I64);
85  YIO.enumCase(EN, "U64", ValueType::U64);
86  YIO.enumCase(EN, "F64", ValueType::F64);
87  }
88 };
89 
90 template <>
92  static void mapping(IO &YIO, Kernel::Attrs::Metadata &MD) {
94  MD.mReqdWorkGroupSize, std::vector<uint32_t>());
96  MD.mWorkGroupSizeHint, std::vector<uint32_t>());
97  YIO.mapOptional(Kernel::Attrs::Key::VecTypeHint,
98  MD.mVecTypeHint, std::string());
100  std::string());
101  }
102 };
103 
104 template <>
106  static void mapping(IO &YIO, Kernel::Arg::Metadata &MD) {
107  YIO.mapOptional(Kernel::Arg::Key::Name, MD.mName, std::string());
108  YIO.mapOptional(Kernel::Arg::Key::TypeName, MD.mTypeName, std::string());
109  YIO.mapRequired(Kernel::Arg::Key::Size, MD.mSize);
110  YIO.mapRequired(Kernel::Arg::Key::Align, MD.mAlign);
111  YIO.mapRequired(Kernel::Arg::Key::ValueKind, MD.mValueKind);
112  YIO.mapRequired(Kernel::Arg::Key::ValueType, MD.mValueType);
113  YIO.mapOptional(Kernel::Arg::Key::PointeeAlign, MD.mPointeeAlign,
114  uint32_t(0));
117  YIO.mapOptional(Kernel::Arg::Key::AccQual, MD.mAccQual,
121  YIO.mapOptional(Kernel::Arg::Key::IsConst, MD.mIsConst, false);
122  YIO.mapOptional(Kernel::Arg::Key::IsRestrict, MD.mIsRestrict, false);
123  YIO.mapOptional(Kernel::Arg::Key::IsVolatile, MD.mIsVolatile, false);
124  YIO.mapOptional(Kernel::Arg::Key::IsPipe, MD.mIsPipe, false);
125  }
126 };
127 
128 template <>
130  static void mapping(IO &YIO, Kernel::CodeProps::Metadata &MD) {
140  MD.mWavefrontSize);
141  YIO.mapOptional(Kernel::CodeProps::Key::NumSGPRs,
142  MD.mNumSGPRs, uint16_t(0));
143  YIO.mapOptional(Kernel::CodeProps::Key::NumVGPRs,
144  MD.mNumVGPRs, uint16_t(0));
148  MD.mIsDynamicCallStack, false);
150  MD.mIsXNACKEnabled, false);
152  MD.mNumSpilledSGPRs, uint16_t(0));
154  MD.mNumSpilledVGPRs, uint16_t(0));
155  }
156 };
157 
158 template <>
160  static void mapping(IO &YIO, Kernel::DebugProps::Metadata &MD) {
162  MD.mDebuggerABIVersion, std::vector<uint32_t>());
164  MD.mReservedNumVGPRs, uint16_t(0));
166  MD.mReservedFirstVGPR, uint16_t(-1));
168  MD.mPrivateSegmentBufferSGPR, uint16_t(-1));
170  MD.mWavefrontPrivateSegmentOffsetSGPR, uint16_t(-1));
171  }
172 };
173 
174 template <>
176  static void mapping(IO &YIO, Kernel::Metadata &MD) {
177  YIO.mapRequired(Kernel::Key::Name, MD.mName);
178  YIO.mapRequired(Kernel::Key::SymbolName, MD.mSymbolName);
179  YIO.mapOptional(Kernel::Key::Language, MD.mLanguage, std::string());
181  std::vector<uint32_t>());
182  if (!MD.mAttrs.empty() || !YIO.outputting())
183  YIO.mapOptional(Kernel::Key::Attrs, MD.mAttrs);
184  if (!MD.mArgs.empty() || !YIO.outputting())
185  YIO.mapOptional(Kernel::Key::Args, MD.mArgs);
186  if (!MD.mCodeProps.empty() || !YIO.outputting())
187  YIO.mapOptional(Kernel::Key::CodeProps, MD.mCodeProps);
188  if (!MD.mDebugProps.empty() || !YIO.outputting())
189  YIO.mapOptional(Kernel::Key::DebugProps, MD.mDebugProps);
190  }
191 };
192 
193 template <>
194 struct MappingTraits<HSAMD::Metadata> {
195  static void mapping(IO &YIO, HSAMD::Metadata &MD) {
196  YIO.mapRequired(Key::Version, MD.mVersion);
197  YIO.mapOptional(Key::Printf, MD.mPrintf, std::vector<std::string>());
198  if (!MD.mKernels.empty() || !YIO.outputting())
199  YIO.mapOptional(Key::Kernels, MD.mKernels);
200  }
201 };
202 
203 } // end namespace yaml
204 
205 namespace AMDGPU {
206 namespace HSAMD {
207 
208 std::error_code fromString(std::string String, Metadata &HSAMetadata) {
209  yaml::Input YamlInput(String);
210  YamlInput >> HSAMetadata;
211  return YamlInput.error();
212 }
213 
214 std::error_code toString(Metadata HSAMetadata, std::string &String) {
215  raw_string_ostream YamlStream(String);
216  yaml::Output YamlOutput(YamlStream, nullptr, std::numeric_limits<int>::max());
217  YamlOutput << HSAMetadata;
218  return std::error_code();
219 }
220 
221 } // end namespace HSAMD
222 
223 namespace PALMD {
224 
225 std::error_code toString(const Metadata &PALMetadata, std::string &String) {
226  raw_string_ostream Stream(String);
227  for (auto I = PALMetadata.begin(), E = PALMetadata.end(); I != E; ++I) {
228  Stream << Twine(I == PALMetadata.begin() ? " 0x" : ",0x");
229  Stream << Twine::utohexstr(*I);
230  }
231  Stream.flush();
232  return std::error_code();
233 }
234 
235 } // end namespace PALMD
236 } // end namespace AMDGPU
237 } // end namespace llvm
constexpr char IsXNACKEnabled[]
Key for Kernel::CodeProps::Metadata::mIsXNACKEnabled.
std::vector< uint32_t > mLanguageVersion
Language version. Optional.
In-memory representation of HSA metadata.
constexpr char Align[]
Key for Kernel::Arg::Metadata::mAlign.
constexpr char GroupSegmentFixedSize[]
Key for Kernel::CodeProps::Metadata::mGroupSegmentFixedSize.
uint16_t mNumVGPRs
Total number of VGPRs used by a workitem. Optional.
GCNRegPressure max(const GCNRegPressure &P1, const GCNRegPressure &P2)
constexpr char Name[]
Key for Kernel::Metadata::mName.
This class represents lattice values for constants.
Definition: AllocatorList.h:24
static void mapping(IO &YIO, Kernel::DebugProps::Metadata &MD)
constexpr char IsVolatile[]
Key for Kernel::Arg::Metadata::mIsVolatile.
constexpr char PointeeAlign[]
Key for Kernel::Arg::Metadata::mPointeeAlign.
uint32_t mPrivateSegmentFixedSize
Size in bytes of the private segment memory required by a workitem.
bool mIsConst
True if &#39;const&#39; qualifier is specified. Optional.
ValueKind mValueKind
Value kind. Required.
constexpr char ReqdWorkGroupSize[]
Key for Kernel::Attr::Metadata::mReqdWorkGroupSize.
uint16_t mReservedFirstVGPR
First fixed VGPR reserved.
uint32_t mWavefrontSize
Wavefront size. Required.
constexpr char KernargSegmentAlign[]
Key for Kernel::CodeProps::Metadata::mKernargSegmentAlign.
AccessQualifier mActualAccQual
Actual access qualifier. Optional.
constexpr char RuntimeHandle[]
Key for Kernel::Attr::Metadata::mRuntimeHandle.
constexpr char ReservedFirstVGPR[]
Key for Kernel::DebugProps::Metadata::mReservedFirstVGPR.
constexpr char NumSpilledSGPRs[]
Key for Kernel::CodeProps::Metadata::mNumSpilledSGPRs.
constexpr char PrivateSegmentBufferSGPR[]
Key for Kernel::DebugProps::Metadata::mPrivateSegmentBufferSGPR.
constexpr char Language[]
Key for Kernel::Metadata::mLanguage.
constexpr char KernargSegmentSize[]
Key for Kernel::CodeProps::Metadata::mKernargSegmentSize.
bool mIsXNACKEnabled
True if the generated machine code is capable of supporting XNACK.
In-memory representation of kernel debug properties metadata.
constexpr char SymbolName[]
Key for Kernel::Metadata::mSymbolName.
static void enumeration(IO &YIO, AccessQualifier &EN)
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
Definition: Twine.h:81
constexpr char AddrSpaceQual[]
Key for Kernel::Arg::Metadata::mAddrSpaceQual.
constexpr char Printf[]
Key for HSA::Metadata::mPrintf.
constexpr char DebuggerABIVersion[]
Key for Kernel::DebugProps::Metadata::mDebuggerABIVersion.
std::vector< Arg::Metadata > mArgs
Arguments metadata. Optional.
static void mapping(IO &YIO, Kernel::Arg::Metadata &MD)
std::error_code fromString(std::string String, Metadata &HSAMetadata)
Converts String to HSAMetadata.
std::string mTypeName
Type name. Optional.
static void enumeration(IO &YIO, ValueKind &EN)
uint16_t mNumSGPRs
Total number of SGPRs used by a wavefront. Optional.
constexpr char Attrs[]
Key for Kernel::Metadata::mAttrs.
bool mIsPipe
True if &#39;pipe&#39; qualifier is specified. Optional.
uint32_t mKernargSegmentAlign
Maximum byte alignment of variables used by the kernel in the kernarg memory segment.
constexpr char IsPipe[]
Key for Kernel::Arg::Metadata::mIsPipe.
bool mIsVolatile
True if &#39;volatile&#39; qualifier is specified. Optional.
uint32_t mSize
Size in bytes. Required.
uint16_t mNumSpilledSGPRs
Number of SGPRs spilled by a wavefront. Optional.
static void mapping(IO &YIO, HSAMD::Metadata &MD)
std::string mRuntimeHandle
External symbol created by runtime to store the kernel address for enqueued blocks.
static void mapping(IO &YIO, Kernel::Attrs::Metadata &MD)
std::string mSymbolName
Kernel descriptor name. Required.
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
In-memory representation of kernel metadata.
ValueType mValueType
Value type. Required.
constexpr char WavefrontSize[]
Key for Kernel::CodeProps::Metadata::mWavefrontSize.
ValueKind
Value kinds.
std::vector< uint32_t > mVersion
HSA metadata version. Required.
std::vector< uint32_t > mReqdWorkGroupSize
&#39;reqd_work_group_size&#39; attribute. Optional.
In-memory representation of kernel argument metadata.
static void enumeration(IO &YIO, AddressSpaceQualifier &EN)
constexpr char TypeName[]
Key for Kernel::Arg::Metadata::mTypeName.
CodeProps::Metadata mCodeProps
Code properties metadata. Optional.
constexpr char ActualAccQual[]
Key for Kernel::Arg::Metadata::mActualAccQual.
uint32_t mAlign
Alignment in bytes. Required.
Attrs::Metadata mAttrs
Attributes metadata. Optional.
constexpr char IsDynamicCallStack[]
Key for Kernel::CodeProps::Metadata::mIsDynamicCallStack.
In-memory representation of kernel attributes metadata.
constexpr char Version[]
Key for HSA::Metadata::mVersion.
constexpr char NumSGPRs[]
Key for Kernel::CodeProps::Metadata::mNumSGPRs.
AccessQualifier
Access qualifiers.
DebugProps::Metadata mDebugProps
Debug properties metadata. Optional.
constexpr char IsRestrict[]
Key for Kernel::Arg::Metadata::mIsRestrict.
std::vector< std::string > mPrintf
Printf metadata. Optional.
uint16_t mPrivateSegmentBufferSGPR
Fixed SGPR of the first of 4 SGPRs used to hold the scratch V# used for the entire kernel execution...
uint16_t mReservedNumVGPRs
Consecutive number of VGPRs reserved for debugger use.
std::vector< uint32_t > mWorkGroupSizeHint
&#39;work_group_size_hint&#39; attribute. Optional.
uint32_t mPointeeAlign
Pointee alignment in bytes. Optional.
constexpr char CodeProps[]
Key for Kernel::Metadata::mCodeProps.
static Twine utohexstr(const uint64_t &Val)
Definition: Twine.h:385
constexpr char Name[]
Key for Kernel::Arg::Metadata::mName.
constexpr char LanguageVersion[]
Key for Kernel::Metadata::mLanguageVersion.
constexpr char ValueType[]
Key for Kernel::Arg::Metadata::mValueType.
uint16_t mNumSpilledVGPRs
Number of VGPRs spilled by a workitem. Optional.
constexpr char MaxFlatWorkGroupSize[]
Key for Kernel::CodeProps::Metadata::mMaxFlatWorkGroupSize.
constexpr char NumVGPRs[]
Key for Kernel::CodeProps::Metadata::mNumVGPRs.
constexpr char Kernels[]
Key for HSA::Metadata::mKernels.
static void mapping(IO &YIO, Kernel::CodeProps::Metadata &MD)
constexpr char PrivateSegmentFixedSize[]
Key for Kernel::CodeProps::Metadata::mPrivateSegmentFixedSize.
std::error_code toString(Metadata HSAMetadata, std::string &String)
Converts HSAMetadata to String.
uint32_t mMaxFlatWorkGroupSize
Maximum flat work-group size supported by the kernel. Optional.
constexpr char NumSpilledVGPRs[]
Key for Kernel::CodeProps::Metadata::mNumSpilledVGPRs.
bool mIsDynamicCallStack
True if the generated machine code is using a dynamically sized call stack.
constexpr char DebugProps[]
Key for Kernel::Metadata::mDebugProps.
AddressSpaceQualifier
Address space qualifiers.
#define I(x, y, z)
Definition: MD5.cpp:58
constexpr char VecTypeHint[]
Key for Kernel::Attr::Metadata::mVecTypeHint.
constexpr char AccQual[]
Key for Kernel::Arg::Metadata::mAccQual.
bool mIsRestrict
True if &#39;restrict&#39; qualifier is specified. Optional.
In-memory representation of kernel code properties metadata.
constexpr char IsConst[]
Key for Kernel::Arg::Metadata::mIsConst.
constexpr char WorkGroupSizeHint[]
Key for Kernel::Attr::Metadata::mWorkGroupSizeHint.
uint16_t mWavefrontPrivateSegmentOffsetSGPR
Fixed SGPR used to hold the wave scratch offset for the entire kernel execution.
uint64_t mKernargSegmentSize
Size in bytes of the kernarg segment memory.
static void enumeration(IO &YIO, ValueType &EN)
A raw_ostream that writes to an std::string.
Definition: raw_ostream.h:483
constexpr char WavefrontPrivateSegmentOffsetSGPR[]
Key for Kernel::DebugProps::Metadata::mWavefrontPrivateSegmentOffsetSGPR.
constexpr char Size[]
Key for Kernel::Arg::Metadata::mSize.
AddressSpaceQualifier mAddrSpaceQual
Address space qualifier. Optional.
constexpr char ReservedNumVGPRs[]
Key for Kernel::DebugProps::Metadata::mReservedNumVGPRs.
std::string mName
Kernel source name. Required.
uint32_t mGroupSegmentFixedSize
Size in bytes of the group segment memory required by a workgroup.
AMDGPU metadata definitions and in-memory representations.
static void mapping(IO &YIO, Kernel::Metadata &MD)
std::vector< Kernel::Metadata > mKernels
Kernels metadata. Required.
Root of the metadata hierarchy.
Definition: Metadata.h:58
constexpr char ValueKind[]
Key for Kernel::Arg::Metadata::mValueKind.
constexpr char Args[]
Key for Kernel::Metadata::mArgs.
std::vector< uint32_t > Metadata
PAL metadata represented as a vector.
std::vector< uint32_t > mDebuggerABIVersion
Debugger ABI version. Optional.
A discriminated union of two pointer types, with the discriminator in the low bit of the pointer...
Definition: PointerUnion.h:87
AccessQualifier mAccQual
Access qualifier. Optional.
std::string mLanguage
Language. Optional.
std::string mVecTypeHint
&#39;vec_type_hint&#39; attribute. Optional.