Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 1 | //===--- AMDGPUMetadata.h ---------------------------------------*- 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 |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 11 | /// AMDGPU metadata definitions and in-memory representations. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 12 | /// |
| 13 | // |
| 14 | //===----------------------------------------------------------------------===// |
| 15 | |
| 16 | #ifndef LLVM_SUPPORT_AMDGPUMETADATA_H |
| 17 | #define LLVM_SUPPORT_AMDGPUMETADATA_H |
| 18 | |
| 19 | #include <cstdint> |
| 20 | #include <string> |
| 21 | #include <system_error> |
| 22 | #include <vector> |
| 23 | |
| 24 | namespace llvm { |
| 25 | namespace AMDGPU { |
| 26 | |
| 27 | //===----------------------------------------------------------------------===// |
| 28 | // HSA metadata. |
| 29 | //===----------------------------------------------------------------------===// |
| 30 | namespace HSAMD { |
| 31 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 32 | /// HSA metadata major version. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 33 | constexpr uint32_t VersionMajor = 1; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 34 | /// HSA metadata minor version. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 35 | constexpr uint32_t VersionMinor = 0; |
| 36 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 37 | /// HSA metadata beginning assembler directive. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 38 | constexpr char AssemblerDirectiveBegin[] = ".amd_amdgpu_hsa_metadata"; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 39 | /// HSA metadata ending assembler directive. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 40 | constexpr char AssemblerDirectiveEnd[] = ".end_amd_amdgpu_hsa_metadata"; |
| 41 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 42 | /// Access qualifiers. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 43 | enum class AccessQualifier : uint8_t { |
| 44 | Default = 0, |
| 45 | ReadOnly = 1, |
| 46 | WriteOnly = 2, |
| 47 | ReadWrite = 3, |
| 48 | Unknown = 0xff |
| 49 | }; |
| 50 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 51 | /// Address space qualifiers. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 52 | enum class AddressSpaceQualifier : uint8_t { |
| 53 | Private = 0, |
| 54 | Global = 1, |
| 55 | Constant = 2, |
| 56 | Local = 3, |
| 57 | Generic = 4, |
| 58 | Region = 5, |
| 59 | Unknown = 0xff |
| 60 | }; |
| 61 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 62 | /// Value kinds. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 63 | enum class ValueKind : uint8_t { |
| 64 | ByValue = 0, |
| 65 | GlobalBuffer = 1, |
| 66 | DynamicSharedPointer = 2, |
| 67 | Sampler = 3, |
| 68 | Image = 4, |
| 69 | Pipe = 5, |
| 70 | Queue = 6, |
| 71 | HiddenGlobalOffsetX = 7, |
| 72 | HiddenGlobalOffsetY = 8, |
| 73 | HiddenGlobalOffsetZ = 9, |
| 74 | HiddenNone = 10, |
| 75 | HiddenPrintfBuffer = 11, |
| 76 | HiddenDefaultQueue = 12, |
| 77 | HiddenCompletionAction = 13, |
| 78 | Unknown = 0xff |
| 79 | }; |
| 80 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 81 | /// Value types. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 82 | enum class ValueType : uint8_t { |
| 83 | Struct = 0, |
| 84 | I8 = 1, |
| 85 | U8 = 2, |
| 86 | I16 = 3, |
| 87 | U16 = 4, |
| 88 | F16 = 5, |
| 89 | I32 = 6, |
| 90 | U32 = 7, |
| 91 | F32 = 8, |
| 92 | I64 = 9, |
| 93 | U64 = 10, |
| 94 | F64 = 11, |
| 95 | Unknown = 0xff |
| 96 | }; |
| 97 | |
| 98 | //===----------------------------------------------------------------------===// |
| 99 | // Kernel Metadata. |
| 100 | //===----------------------------------------------------------------------===// |
| 101 | namespace Kernel { |
| 102 | |
| 103 | //===----------------------------------------------------------------------===// |
| 104 | // Kernel Attributes Metadata. |
| 105 | //===----------------------------------------------------------------------===// |
| 106 | namespace Attrs { |
| 107 | |
| 108 | namespace Key { |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 109 | /// Key for Kernel::Attr::Metadata::mReqdWorkGroupSize. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 110 | constexpr char ReqdWorkGroupSize[] = "ReqdWorkGroupSize"; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 111 | /// Key for Kernel::Attr::Metadata::mWorkGroupSizeHint. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 112 | constexpr char WorkGroupSizeHint[] = "WorkGroupSizeHint"; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 113 | /// Key for Kernel::Attr::Metadata::mVecTypeHint. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 114 | constexpr char VecTypeHint[] = "VecTypeHint"; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 115 | /// Key for Kernel::Attr::Metadata::mRuntimeHandle. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 116 | constexpr char RuntimeHandle[] = "RuntimeHandle"; |
| 117 | } // end namespace Key |
| 118 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 119 | /// In-memory representation of kernel attributes metadata. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 120 | struct Metadata final { |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 121 | /// 'reqd_work_group_size' attribute. Optional. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 122 | std::vector<uint32_t> mReqdWorkGroupSize = std::vector<uint32_t>(); |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 123 | /// 'work_group_size_hint' attribute. Optional. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 124 | std::vector<uint32_t> mWorkGroupSizeHint = std::vector<uint32_t>(); |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 125 | /// 'vec_type_hint' attribute. Optional. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 126 | std::string mVecTypeHint = std::string(); |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 127 | /// External symbol created by runtime to store the kernel address |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 128 | /// for enqueued blocks. |
| 129 | std::string mRuntimeHandle = std::string(); |
| 130 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 131 | /// Default constructor. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 132 | Metadata() = default; |
| 133 | |
| 134 | /// \returns True if kernel attributes metadata is empty, false otherwise. |
| 135 | bool empty() const { |
| 136 | return !notEmpty(); |
| 137 | } |
| 138 | |
| 139 | /// \returns True if kernel attributes metadata is not empty, false otherwise. |
| 140 | bool notEmpty() const { |
| 141 | return !mReqdWorkGroupSize.empty() || !mWorkGroupSizeHint.empty() || |
| 142 | !mVecTypeHint.empty() || !mRuntimeHandle.empty(); |
| 143 | } |
| 144 | }; |
| 145 | |
| 146 | } // end namespace Attrs |
| 147 | |
| 148 | //===----------------------------------------------------------------------===// |
| 149 | // Kernel Argument Metadata. |
| 150 | //===----------------------------------------------------------------------===// |
| 151 | namespace Arg { |
| 152 | |
| 153 | namespace Key { |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 154 | /// Key for Kernel::Arg::Metadata::mName. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 155 | constexpr char Name[] = "Name"; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 156 | /// Key for Kernel::Arg::Metadata::mTypeName. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 157 | constexpr char TypeName[] = "TypeName"; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 158 | /// Key for Kernel::Arg::Metadata::mSize. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 159 | constexpr char Size[] = "Size"; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 160 | /// Key for Kernel::Arg::Metadata::mAlign. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 161 | constexpr char Align[] = "Align"; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 162 | /// Key for Kernel::Arg::Metadata::mValueKind. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 163 | constexpr char ValueKind[] = "ValueKind"; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 164 | /// Key for Kernel::Arg::Metadata::mValueType. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 165 | constexpr char ValueType[] = "ValueType"; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 166 | /// Key for Kernel::Arg::Metadata::mPointeeAlign. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 167 | constexpr char PointeeAlign[] = "PointeeAlign"; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 168 | /// Key for Kernel::Arg::Metadata::mAddrSpaceQual. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 169 | constexpr char AddrSpaceQual[] = "AddrSpaceQual"; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 170 | /// Key for Kernel::Arg::Metadata::mAccQual. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 171 | constexpr char AccQual[] = "AccQual"; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 172 | /// Key for Kernel::Arg::Metadata::mActualAccQual. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 173 | constexpr char ActualAccQual[] = "ActualAccQual"; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 174 | /// Key for Kernel::Arg::Metadata::mIsConst. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 175 | constexpr char IsConst[] = "IsConst"; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 176 | /// Key for Kernel::Arg::Metadata::mIsRestrict. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 177 | constexpr char IsRestrict[] = "IsRestrict"; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 178 | /// Key for Kernel::Arg::Metadata::mIsVolatile. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 179 | constexpr char IsVolatile[] = "IsVolatile"; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 180 | /// Key for Kernel::Arg::Metadata::mIsPipe. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 181 | constexpr char IsPipe[] = "IsPipe"; |
| 182 | } // end namespace Key |
| 183 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 184 | /// In-memory representation of kernel argument metadata. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 185 | struct Metadata final { |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 186 | /// Name. Optional. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 187 | std::string mName = std::string(); |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 188 | /// Type name. Optional. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 189 | std::string mTypeName = std::string(); |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 190 | /// Size in bytes. Required. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 191 | uint32_t mSize = 0; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 192 | /// Alignment in bytes. Required. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 193 | uint32_t mAlign = 0; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 194 | /// Value kind. Required. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 195 | ValueKind mValueKind = ValueKind::Unknown; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 196 | /// Value type. Required. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 197 | ValueType mValueType = ValueType::Unknown; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 198 | /// Pointee alignment in bytes. Optional. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 199 | uint32_t mPointeeAlign = 0; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 200 | /// Address space qualifier. Optional. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 201 | AddressSpaceQualifier mAddrSpaceQual = AddressSpaceQualifier::Unknown; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 202 | /// Access qualifier. Optional. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 203 | AccessQualifier mAccQual = AccessQualifier::Unknown; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 204 | /// Actual access qualifier. Optional. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 205 | AccessQualifier mActualAccQual = AccessQualifier::Unknown; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 206 | /// True if 'const' qualifier is specified. Optional. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 207 | bool mIsConst = false; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 208 | /// True if 'restrict' qualifier is specified. Optional. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 209 | bool mIsRestrict = false; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 210 | /// True if 'volatile' qualifier is specified. Optional. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 211 | bool mIsVolatile = false; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 212 | /// True if 'pipe' qualifier is specified. Optional. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 213 | bool mIsPipe = false; |
| 214 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 215 | /// Default constructor. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 216 | Metadata() = default; |
| 217 | }; |
| 218 | |
| 219 | } // end namespace Arg |
| 220 | |
| 221 | //===----------------------------------------------------------------------===// |
| 222 | // Kernel Code Properties Metadata. |
| 223 | //===----------------------------------------------------------------------===// |
| 224 | namespace CodeProps { |
| 225 | |
| 226 | namespace Key { |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 227 | /// Key for Kernel::CodeProps::Metadata::mKernargSegmentSize. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 228 | constexpr char KernargSegmentSize[] = "KernargSegmentSize"; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 229 | /// Key for Kernel::CodeProps::Metadata::mGroupSegmentFixedSize. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 230 | constexpr char GroupSegmentFixedSize[] = "GroupSegmentFixedSize"; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 231 | /// Key for Kernel::CodeProps::Metadata::mPrivateSegmentFixedSize. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 232 | constexpr char PrivateSegmentFixedSize[] = "PrivateSegmentFixedSize"; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 233 | /// Key for Kernel::CodeProps::Metadata::mKernargSegmentAlign. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 234 | constexpr char KernargSegmentAlign[] = "KernargSegmentAlign"; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 235 | /// Key for Kernel::CodeProps::Metadata::mWavefrontSize. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 236 | constexpr char WavefrontSize[] = "WavefrontSize"; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 237 | /// Key for Kernel::CodeProps::Metadata::mNumSGPRs. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 238 | constexpr char NumSGPRs[] = "NumSGPRs"; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 239 | /// Key for Kernel::CodeProps::Metadata::mNumVGPRs. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 240 | constexpr char NumVGPRs[] = "NumVGPRs"; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 241 | /// Key for Kernel::CodeProps::Metadata::mMaxFlatWorkGroupSize. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 242 | constexpr char MaxFlatWorkGroupSize[] = "MaxFlatWorkGroupSize"; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 243 | /// Key for Kernel::CodeProps::Metadata::mIsDynamicCallStack. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 244 | constexpr char IsDynamicCallStack[] = "IsDynamicCallStack"; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 245 | /// Key for Kernel::CodeProps::Metadata::mIsXNACKEnabled. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 246 | constexpr char IsXNACKEnabled[] = "IsXNACKEnabled"; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 247 | /// Key for Kernel::CodeProps::Metadata::mNumSpilledSGPRs. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 248 | constexpr char NumSpilledSGPRs[] = "NumSpilledSGPRs"; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 249 | /// Key for Kernel::CodeProps::Metadata::mNumSpilledVGPRs. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 250 | constexpr char NumSpilledVGPRs[] = "NumSpilledVGPRs"; |
| 251 | } // end namespace Key |
| 252 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 253 | /// In-memory representation of kernel code properties metadata. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 254 | struct Metadata final { |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 255 | /// Size in bytes of the kernarg segment memory. Kernarg segment memory |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 256 | /// holds the values of the arguments to the kernel. Required. |
| 257 | uint64_t mKernargSegmentSize = 0; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 258 | /// Size in bytes of the group segment memory required by a workgroup. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 259 | /// This value does not include any dynamically allocated group segment memory |
| 260 | /// that may be added when the kernel is dispatched. Required. |
| 261 | uint32_t mGroupSegmentFixedSize = 0; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 262 | /// Size in bytes of the private segment memory required by a workitem. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 263 | /// Private segment memory includes arg, spill and private segments. Required. |
| 264 | uint32_t mPrivateSegmentFixedSize = 0; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 265 | /// Maximum byte alignment of variables used by the kernel in the |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 266 | /// kernarg memory segment. Required. |
| 267 | uint32_t mKernargSegmentAlign = 0; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 268 | /// Wavefront size. Required. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 269 | uint32_t mWavefrontSize = 0; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 270 | /// Total number of SGPRs used by a wavefront. Optional. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 271 | uint16_t mNumSGPRs = 0; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 272 | /// Total number of VGPRs used by a workitem. Optional. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 273 | uint16_t mNumVGPRs = 0; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 274 | /// Maximum flat work-group size supported by the kernel. Optional. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 275 | uint32_t mMaxFlatWorkGroupSize = 0; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 276 | /// True if the generated machine code is using a dynamically sized |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 277 | /// call stack. Optional. |
| 278 | bool mIsDynamicCallStack = false; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 279 | /// True if the generated machine code is capable of supporting XNACK. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 280 | /// Optional. |
| 281 | bool mIsXNACKEnabled = false; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 282 | /// Number of SGPRs spilled by a wavefront. Optional. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 283 | uint16_t mNumSpilledSGPRs = 0; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 284 | /// Number of VGPRs spilled by a workitem. Optional. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 285 | uint16_t mNumSpilledVGPRs = 0; |
| 286 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 287 | /// Default constructor. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 288 | Metadata() = default; |
| 289 | |
| 290 | /// \returns True if kernel code properties metadata is empty, false |
| 291 | /// otherwise. |
| 292 | bool empty() const { |
| 293 | return !notEmpty(); |
| 294 | } |
| 295 | |
| 296 | /// \returns True if kernel code properties metadata is not empty, false |
| 297 | /// otherwise. |
| 298 | bool notEmpty() const { |
| 299 | return true; |
| 300 | } |
| 301 | }; |
| 302 | |
| 303 | } // end namespace CodeProps |
| 304 | |
| 305 | //===----------------------------------------------------------------------===// |
| 306 | // Kernel Debug Properties Metadata. |
| 307 | //===----------------------------------------------------------------------===// |
| 308 | namespace DebugProps { |
| 309 | |
| 310 | namespace Key { |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 311 | /// Key for Kernel::DebugProps::Metadata::mDebuggerABIVersion. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 312 | constexpr char DebuggerABIVersion[] = "DebuggerABIVersion"; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 313 | /// Key for Kernel::DebugProps::Metadata::mReservedNumVGPRs. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 314 | constexpr char ReservedNumVGPRs[] = "ReservedNumVGPRs"; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 315 | /// Key for Kernel::DebugProps::Metadata::mReservedFirstVGPR. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 316 | constexpr char ReservedFirstVGPR[] = "ReservedFirstVGPR"; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 317 | /// Key for Kernel::DebugProps::Metadata::mPrivateSegmentBufferSGPR. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 318 | constexpr char PrivateSegmentBufferSGPR[] = "PrivateSegmentBufferSGPR"; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 319 | /// Key for |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 320 | /// Kernel::DebugProps::Metadata::mWavefrontPrivateSegmentOffsetSGPR. |
| 321 | constexpr char WavefrontPrivateSegmentOffsetSGPR[] = |
| 322 | "WavefrontPrivateSegmentOffsetSGPR"; |
| 323 | } // end namespace Key |
| 324 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 325 | /// In-memory representation of kernel debug properties metadata. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 326 | struct Metadata final { |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 327 | /// Debugger ABI version. Optional. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 328 | std::vector<uint32_t> mDebuggerABIVersion = std::vector<uint32_t>(); |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 329 | /// Consecutive number of VGPRs reserved for debugger use. Must be 0 if |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 330 | /// mDebuggerABIVersion is not set. Optional. |
| 331 | uint16_t mReservedNumVGPRs = 0; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 332 | /// First fixed VGPR reserved. Must be uint16_t(-1) if |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 333 | /// mDebuggerABIVersion is not set or mReservedFirstVGPR is 0. Optional. |
| 334 | uint16_t mReservedFirstVGPR = uint16_t(-1); |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 335 | /// Fixed SGPR of the first of 4 SGPRs used to hold the scratch V# used |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 336 | /// for the entire kernel execution. Must be uint16_t(-1) if |
| 337 | /// mDebuggerABIVersion is not set or SGPR not used or not known. Optional. |
| 338 | uint16_t mPrivateSegmentBufferSGPR = uint16_t(-1); |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 339 | /// Fixed SGPR used to hold the wave scratch offset for the entire |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 340 | /// kernel execution. Must be uint16_t(-1) if mDebuggerABIVersion is not set |
| 341 | /// or SGPR is not used or not known. Optional. |
| 342 | uint16_t mWavefrontPrivateSegmentOffsetSGPR = uint16_t(-1); |
| 343 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 344 | /// Default constructor. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 345 | Metadata() = default; |
| 346 | |
| 347 | /// \returns True if kernel debug properties metadata is empty, false |
| 348 | /// otherwise. |
| 349 | bool empty() const { |
| 350 | return !notEmpty(); |
| 351 | } |
| 352 | |
| 353 | /// \returns True if kernel debug properties metadata is not empty, false |
| 354 | /// otherwise. |
| 355 | bool notEmpty() const { |
| 356 | return !mDebuggerABIVersion.empty(); |
| 357 | } |
| 358 | }; |
| 359 | |
| 360 | } // end namespace DebugProps |
| 361 | |
| 362 | namespace Key { |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 363 | /// Key for Kernel::Metadata::mName. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 364 | constexpr char Name[] = "Name"; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 365 | /// Key for Kernel::Metadata::mSymbolName. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 366 | constexpr char SymbolName[] = "SymbolName"; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 367 | /// Key for Kernel::Metadata::mLanguage. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 368 | constexpr char Language[] = "Language"; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 369 | /// Key for Kernel::Metadata::mLanguageVersion. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 370 | constexpr char LanguageVersion[] = "LanguageVersion"; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 371 | /// Key for Kernel::Metadata::mAttrs. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 372 | constexpr char Attrs[] = "Attrs"; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 373 | /// Key for Kernel::Metadata::mArgs. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 374 | constexpr char Args[] = "Args"; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 375 | /// Key for Kernel::Metadata::mCodeProps. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 376 | constexpr char CodeProps[] = "CodeProps"; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 377 | /// Key for Kernel::Metadata::mDebugProps. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 378 | constexpr char DebugProps[] = "DebugProps"; |
| 379 | } // end namespace Key |
| 380 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 381 | /// In-memory representation of kernel metadata. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 382 | struct Metadata final { |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 383 | /// Kernel source name. Required. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 384 | std::string mName = std::string(); |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 385 | /// Kernel descriptor name. Required. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 386 | std::string mSymbolName = std::string(); |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 387 | /// Language. Optional. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 388 | std::string mLanguage = std::string(); |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 389 | /// Language version. Optional. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 390 | std::vector<uint32_t> mLanguageVersion = std::vector<uint32_t>(); |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 391 | /// Attributes metadata. Optional. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 392 | Attrs::Metadata mAttrs = Attrs::Metadata(); |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 393 | /// Arguments metadata. Optional. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 394 | std::vector<Arg::Metadata> mArgs = std::vector<Arg::Metadata>(); |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 395 | /// Code properties metadata. Optional. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 396 | CodeProps::Metadata mCodeProps = CodeProps::Metadata(); |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 397 | /// Debug properties metadata. Optional. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 398 | DebugProps::Metadata mDebugProps = DebugProps::Metadata(); |
| 399 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 400 | /// Default constructor. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 401 | Metadata() = default; |
| 402 | }; |
| 403 | |
| 404 | } // end namespace Kernel |
| 405 | |
| 406 | namespace Key { |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 407 | /// Key for HSA::Metadata::mVersion. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 408 | constexpr char Version[] = "Version"; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 409 | /// Key for HSA::Metadata::mPrintf. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 410 | constexpr char Printf[] = "Printf"; |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 411 | /// Key for HSA::Metadata::mKernels. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 412 | constexpr char Kernels[] = "Kernels"; |
| 413 | } // end namespace Key |
| 414 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 415 | /// In-memory representation of HSA metadata. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 416 | struct Metadata final { |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 417 | /// HSA metadata version. Required. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 418 | std::vector<uint32_t> mVersion = std::vector<uint32_t>(); |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 419 | /// Printf metadata. Optional. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 420 | std::vector<std::string> mPrintf = std::vector<std::string>(); |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 421 | /// Kernels metadata. Required. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 422 | std::vector<Kernel::Metadata> mKernels = std::vector<Kernel::Metadata>(); |
| 423 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 424 | /// Default constructor. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 425 | Metadata() = default; |
| 426 | }; |
| 427 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 428 | /// Converts \p String to \p HSAMetadata. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 429 | std::error_code fromString(std::string String, Metadata &HSAMetadata); |
| 430 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 431 | /// Converts \p HSAMetadata to \p String. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 432 | std::error_code toString(Metadata HSAMetadata, std::string &String); |
| 433 | |
| 434 | } // end namespace HSAMD |
| 435 | |
| 436 | //===----------------------------------------------------------------------===// |
| 437 | // PAL metadata. |
| 438 | //===----------------------------------------------------------------------===// |
| 439 | namespace PALMD { |
| 440 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 441 | /// PAL metadata assembler directive. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 442 | constexpr char AssemblerDirective[] = ".amd_amdgpu_pal_metadata"; |
| 443 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 444 | /// PAL metadata keys. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 445 | enum Key : uint32_t { |
| 446 | LS_NUM_USED_VGPRS = 0x10000021, |
| 447 | HS_NUM_USED_VGPRS = 0x10000022, |
| 448 | ES_NUM_USED_VGPRS = 0x10000023, |
| 449 | GS_NUM_USED_VGPRS = 0x10000024, |
| 450 | VS_NUM_USED_VGPRS = 0x10000025, |
| 451 | PS_NUM_USED_VGPRS = 0x10000026, |
| 452 | CS_NUM_USED_VGPRS = 0x10000027, |
| 453 | |
| 454 | LS_NUM_USED_SGPRS = 0x10000028, |
| 455 | HS_NUM_USED_SGPRS = 0x10000029, |
| 456 | ES_NUM_USED_SGPRS = 0x1000002a, |
| 457 | GS_NUM_USED_SGPRS = 0x1000002b, |
| 458 | VS_NUM_USED_SGPRS = 0x1000002c, |
| 459 | PS_NUM_USED_SGPRS = 0x1000002d, |
| 460 | CS_NUM_USED_SGPRS = 0x1000002e, |
| 461 | |
| 462 | LS_SCRATCH_SIZE = 0x10000044, |
| 463 | HS_SCRATCH_SIZE = 0x10000045, |
| 464 | ES_SCRATCH_SIZE = 0x10000046, |
| 465 | GS_SCRATCH_SIZE = 0x10000047, |
| 466 | VS_SCRATCH_SIZE = 0x10000048, |
| 467 | PS_SCRATCH_SIZE = 0x10000049, |
| 468 | CS_SCRATCH_SIZE = 0x1000004a |
| 469 | }; |
| 470 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 471 | /// PAL metadata represented as a vector. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 472 | typedef std::vector<uint32_t> Metadata; |
| 473 | |
Andrew Scull | cdfcccc | 2018-10-05 20:58:37 +0100 | [diff] [blame^] | 474 | /// Converts \p PALMetadata to \p String. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 475 | std::error_code toString(const Metadata &PALMetadata, std::string &String); |
| 476 | |
| 477 | } // end namespace PALMD |
| 478 | } // end namespace AMDGPU |
| 479 | } // end namespace llvm |
| 480 | |
| 481 | #endif // LLVM_SUPPORT_AMDGPUMETADATA_H |