LLVM 22.0.0git
AMDGPUAsmUtils.cpp
Go to the documentation of this file.
1//===-- AMDGPUAsmUtils.cpp - AsmParser/InstPrinter common -----------------===//
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#include "AMDGPUAsmUtils.h"
9#include "AMDGPUBaseInfo.h"
10#include "SIDefines.h"
11
12namespace llvm::AMDGPU {
13
14//===----------------------------------------------------------------------===//
15// Custom Operands.
16//
17// A table of custom operands shall describe "primary" operand names first
18// followed by aliases if any. It is not required but recommended to arrange
19// operands so that operand encoding match operand position in the table. This
20// will make getNameFromOperandTable() a bit more efficient. Unused slots in the
21// table shall have an empty name.
22//
23//===----------------------------------------------------------------------===//
24
25/// Map from the encoding of a sendmsg/hwreg asm operand to it's name.
26template <size_t N>
28 unsigned Encoding,
29 const MCSubtargetInfo &STI) {
30 auto isValidIndexForEncoding = [&](size_t Idx) {
31 return Idx < N && Table[Idx].Encoding == Encoding &&
32 !Table[Idx].Name.empty() &&
33 (!Table[Idx].Cond || Table[Idx].Cond(STI));
34 };
35
36 // This is an optimization that should work in most cases. As a side effect,
37 // it may cause selection of an alias instead of a primary operand name in
38 // case of sparse tables.
39 if (isValidIndexForEncoding(Encoding))
40 return Table[Encoding].Name;
41
42 for (size_t Idx = 0; Idx != N; ++Idx)
43 if (isValidIndexForEncoding(Idx))
44 return Table[Idx].Name;
45
46 return "";
47}
48
49/// Map from a symbolic name for a sendmsg/hwreg asm operand to it's encoding.
50template <size_t N>
51static int64_t getEncodingFromOperandTable(const CustomOperand (&Table)[N],
53 const MCSubtargetInfo &STI) {
54 int64_t InvalidEncoding = OPR_ID_UNKNOWN;
55 for (const CustomOperand &Entry : Table) {
56 if (Entry.Name != Name)
57 continue;
58
59 if (!Entry.Cond || Entry.Cond(STI))
60 return Entry.Encoding;
61
62 InvalidEncoding = OPR_ID_UNSUPPORTED;
63 }
64
65 return InvalidEncoding;
66}
67
68namespace DepCtr {
69
70// NOLINTBEGIN
72 // Name max dflt offset width constraint
73 {{"depctr_hold_cnt"}, 1, 1, 7, 1, isGFX10_BEncoding},
74 {{"depctr_sa_sdst"}, 1, 1, 0, 1},
75 {{"depctr_va_vdst"}, 15, 15, 12, 4},
76 {{"depctr_va_sdst"}, 7, 7, 9, 3},
77 {{"depctr_va_ssrc"}, 1, 1, 8, 1},
78 {{"depctr_va_vcc"}, 1, 1, 1, 1},
79 {{"depctr_vm_vsrc"}, 7, 7, 2, 3},
80};
81// NOLINTEND
82
83const int DEP_CTR_SIZE =
84 static_cast<int>(sizeof(DepCtrInfo) / sizeof(CustomOperandVal));
85
86} // namespace DepCtr
87
88namespace SendMsg {
89
90// Disable lint checking here since it makes these tables unreadable.
91// NOLINTBEGIN
92// clang-format off
93
94static constexpr CustomOperand MsgOperands[] = {
95 {{""}},
96 {{"MSG_INTERRUPT"}, ID_INTERRUPT},
97 {{"MSG_GS"}, ID_GS_PreGFX11, isNotGFX11Plus},
98 {{"MSG_GS_DONE"}, ID_GS_DONE_PreGFX11, isNotGFX11Plus},
99 {{"MSG_SAVEWAVE"}, ID_SAVEWAVE, isGFX8_GFX9_GFX10},
100 {{"MSG_STALL_WAVE_GEN"}, ID_STALL_WAVE_GEN, isGFX9_GFX10_GFX11},
101 {{"MSG_HALT_WAVES"}, ID_HALT_WAVES, isGFX9_GFX10_GFX11},
102 {{"MSG_ORDERED_PS_DONE"}, ID_ORDERED_PS_DONE, isGFX9_GFX10},
103 {{"MSG_EARLY_PRIM_DEALLOC"}, ID_EARLY_PRIM_DEALLOC, isGFX9_GFX10},
104 {{"MSG_GS_ALLOC_REQ"}, ID_GS_ALLOC_REQ, isGFX9Plus},
105 {{"MSG_GET_DOORBELL"}, ID_GET_DOORBELL, isGFX9_GFX10},
106 {{"MSG_GET_DDID"}, ID_GET_DDID, isGFX10},
107 {{"MSG_HS_TESSFACTOR"}, ID_HS_TESSFACTOR_GFX11Plus, isGFX11Plus},
108 {{"MSG_DEALLOC_VGPRS"}, ID_DEALLOC_VGPRS_GFX11Plus, isGFX11Plus},
109 {{"MSG_SAVEWAVE_HAS_TDM"}, ID_SAVEWAVE_HAS_TDM, isGFX1250},
110 {{"MSG_SYSMSG"}, ID_SYSMSG},
111 {{"MSG_RTN_GET_DOORBELL"}, ID_RTN_GET_DOORBELL, isGFX11Plus},
112 {{"MSG_RTN_GET_DDID"}, ID_RTN_GET_DDID, isGFX11Plus},
113 {{"MSG_RTN_GET_TMA"}, ID_RTN_GET_TMA, isGFX11Plus},
114 {{"MSG_RTN_GET_REALTIME"}, ID_RTN_GET_REALTIME, isGFX11Plus},
115 {{"MSG_RTN_SAVE_WAVE"}, ID_RTN_SAVE_WAVE, isGFX11Plus},
116 {{"MSG_RTN_GET_TBA"}, ID_RTN_GET_TBA, isGFX11Plus},
117 {{"MSG_RTN_GET_TBA_TO_PC"}, ID_RTN_GET_TBA_TO_PC, isGFX11Plus},
118 {{"MSG_RTN_GET_SE_AID_ID"}, ID_RTN_GET_SE_AID_ID, isGFX12Plus},
119};
120
121static constexpr CustomOperand SysMsgOperands[] = {
122 {{""}},
123 {{"SYSMSG_OP_ECC_ERR_INTERRUPT"}, OP_SYS_ECC_ERR_INTERRUPT},
124 {{"SYSMSG_OP_REG_RD"}, OP_SYS_REG_RD},
125 {{"SYSMSG_OP_HOST_TRAP_ACK"}, OP_SYS_HOST_TRAP_ACK, isNotGFX9Plus},
126 {{"SYSMSG_OP_TTRACE_PC"}, OP_SYS_TTRACE_PC},
127};
128
129static constexpr CustomOperand StreamMsgOperands[] = {
130 {{"GS_OP_NOP"}, OP_GS_NOP},
131 {{"GS_OP_CUT"}, OP_GS_CUT},
132 {{"GS_OP_EMIT"}, OP_GS_EMIT},
133 {{"GS_OP_EMIT_CUT"}, OP_GS_EMIT_CUT},
134};
135
136// clang-format on
137// NOLINTEND
138
141}
142
144 return getNameFromOperandTable(MsgOperands, Encoding, STI);
145}
146
147int64_t getMsgOpId(int64_t MsgId, StringRef Name, const MCSubtargetInfo &STI) {
148 if (MsgId == ID_SYSMSG)
151}
152
153StringRef getMsgOpName(int64_t MsgId, uint64_t Encoding,
154 const MCSubtargetInfo &STI) {
155 assert(msgRequiresOp(MsgId, STI) && "must have an operand");
156
157 if (MsgId == ID_SYSMSG)
158 return getNameFromOperandTable(SysMsgOperands, Encoding, STI);
159 return getNameFromOperandTable(StreamMsgOperands, Encoding, STI);
160}
161
162} // namespace SendMsg
163
164namespace Hwreg {
165
166// Disable lint checking for this block since it makes the table unreadable.
167// NOLINTBEGIN
168// clang-format off
169static constexpr CustomOperand Operands[] = {
170 {{""}},
171 {{"HW_REG_MODE"}, ID_MODE},
172 {{"HW_REG_STATUS"}, ID_STATUS},
173 {{"HW_REG_TRAPSTS"}, ID_TRAPSTS, isNotGFX12Plus},
174 {{"HW_REG_HW_ID"}, ID_HW_ID, isNotGFX10Plus},
175 {{"HW_REG_GPR_ALLOC"}, ID_GPR_ALLOC},
176 {{"HW_REG_LDS_ALLOC"}, ID_LDS_ALLOC},
177 {{"HW_REG_IB_STS"}, ID_IB_STS},
178 {{""}},
179 {{""}},
180 {{"HW_REG_PERF_SNAPSHOT_DATA"}, ID_PERF_SNAPSHOT_DATA_gfx12, isGFX12Plus},
181 {{"HW_REG_PERF_SNAPSHOT_PC_LO"}, ID_PERF_SNAPSHOT_PC_LO_gfx12, isGFX12Plus},
182 {{"HW_REG_PERF_SNAPSHOT_PC_HI"}, ID_PERF_SNAPSHOT_PC_HI_gfx12, isGFX12Plus},
183 {{""}},
184 {{""}},
185 {{"HW_REG_SH_MEM_BASES"}, ID_MEM_BASES, isGFX9_GFX10_GFX11},
186 {{"HW_REG_TBA_LO"}, ID_TBA_LO, isGFX9_GFX10},
187 {{"HW_REG_TBA_HI"}, ID_TBA_HI, isGFX9_GFX10},
188 {{"HW_REG_TMA_LO"}, ID_TMA_LO, isGFX9_GFX10},
189 {{"HW_REG_TMA_HI"}, ID_TMA_HI, isGFX9_GFX10},
190 {{"HW_REG_FLAT_SCR_LO"}, ID_FLAT_SCR_LO, isGFX10_GFX11},
191 {{"HW_REG_FLAT_SCR_HI"}, ID_FLAT_SCR_HI, isGFX10_GFX11},
192 {{"HW_REG_XNACK_MASK"}, ID_XNACK_MASK, isGFX10Before1030},
193 {{"HW_REG_HW_ID1"}, ID_HW_ID1, isGFX10Plus},
194 {{"HW_REG_HW_ID2"}, ID_HW_ID2, isGFX10Plus},
195 {{"HW_REG_POPS_PACKER"}, ID_POPS_PACKER, isGFX10},
196 {{""}},
197 {{"HW_REG_PERF_SNAPSHOT_DATA"}, ID_PERF_SNAPSHOT_DATA_gfx11, isGFX11},
198 {{"HW_REG_IB_STS2"}, ID_IB_STS2, isGFX1250},
199 {{"HW_REG_SHADER_CYCLES"}, ID_SHADER_CYCLES, isGFX10_3_GFX11},
200 {{"HW_REG_SHADER_CYCLES_HI"}, ID_SHADER_CYCLES_HI, isGFX12Plus},
201 {{"HW_REG_DVGPR_ALLOC_LO"}, ID_DVGPR_ALLOC_LO, isGFX12Plus},
202 {{"HW_REG_DVGPR_ALLOC_HI"}, ID_DVGPR_ALLOC_HI, isGFX12Plus},
203
204 // Register numbers reused in GFX11
205 {{"HW_REG_PERF_SNAPSHOT_PC_LO"}, ID_PERF_SNAPSHOT_PC_LO_gfx11, isGFX11},
206 {{"HW_REG_PERF_SNAPSHOT_PC_HI"}, ID_PERF_SNAPSHOT_PC_HI_gfx11, isGFX11},
207
208 // Register numbers reused in GFX12+
209 {{"HW_REG_STATE_PRIV"}, ID_STATE_PRIV, isGFX12Plus},
210 {{"HW_REG_PERF_SNAPSHOT_DATA1"}, ID_PERF_SNAPSHOT_DATA1, isGFX12Plus},
211 {{"HW_REG_PERF_SNAPSHOT_DATA2"}, ID_PERF_SNAPSHOT_DATA2, isGFX12Plus},
212 {{"HW_REG_EXCP_FLAG_PRIV"}, ID_EXCP_FLAG_PRIV, isGFX12Plus},
213 {{"HW_REG_EXCP_FLAG_USER"}, ID_EXCP_FLAG_USER, isGFX12Plus},
214 {{"HW_REG_TRAP_CTRL"}, ID_TRAP_CTRL, isGFX12Plus},
215 {{"HW_REG_SCRATCH_BASE_LO"}, ID_FLAT_SCR_LO, isGFX12Plus},
216 {{"HW_REG_SCRATCH_BASE_HI"}, ID_FLAT_SCR_HI, isGFX12Plus},
217 {{"HW_REG_SHADER_CYCLES_LO"}, ID_SHADER_CYCLES, isGFX12Plus},
218
219 // GFX942 specific registers
220 {{"HW_REG_XCC_ID"}, ID_XCC_ID, isGFX940},
221 {{"HW_REG_SQ_PERF_SNAPSHOT_DATA"}, ID_SQ_PERF_SNAPSHOT_DATA, isGFX940},
222 {{"HW_REG_SQ_PERF_SNAPSHOT_DATA1"}, ID_SQ_PERF_SNAPSHOT_DATA1, isGFX940},
223 {{"HW_REG_SQ_PERF_SNAPSHOT_PC_LO"}, ID_SQ_PERF_SNAPSHOT_PC_LO, isGFX940},
224 {{"HW_REG_SQ_PERF_SNAPSHOT_PC_HI"}, ID_SQ_PERF_SNAPSHOT_PC_HI, isGFX940},
225
226 // GFX1250
227 {{"HW_REG_XNACK_STATE_PRIV"}, ID_XNACK_STATE_PRIV, isGFX1250},
228 {{"HW_REG_XNACK_MASK"}, ID_XNACK_MASK_gfx1250, isGFX1250},
229
230 // Aliases
231 {{"HW_REG_HW_ID"}, ID_HW_ID1, isGFX10},
232};
233// clang-format on
234// NOLINTEND
235
238}
239
241 return getNameFromOperandTable(Operands, Encoding, STI);
242}
243
244} // namespace Hwreg
245
246namespace MTBUFFormat {
247
249 "BUF_DATA_FORMAT_INVALID",
250 "BUF_DATA_FORMAT_8",
251 "BUF_DATA_FORMAT_16",
252 "BUF_DATA_FORMAT_8_8",
253 "BUF_DATA_FORMAT_32",
254 "BUF_DATA_FORMAT_16_16",
255 "BUF_DATA_FORMAT_10_11_11",
256 "BUF_DATA_FORMAT_11_11_10",
257 "BUF_DATA_FORMAT_10_10_10_2",
258 "BUF_DATA_FORMAT_2_10_10_10",
259 "BUF_DATA_FORMAT_8_8_8_8",
260 "BUF_DATA_FORMAT_32_32",
261 "BUF_DATA_FORMAT_16_16_16_16",
262 "BUF_DATA_FORMAT_32_32_32",
263 "BUF_DATA_FORMAT_32_32_32_32",
264 "BUF_DATA_FORMAT_RESERVED_15"
265};
266
268 "BUF_NUM_FORMAT_UNORM",
269 "BUF_NUM_FORMAT_SNORM",
270 "BUF_NUM_FORMAT_USCALED",
271 "BUF_NUM_FORMAT_SSCALED",
272 "BUF_NUM_FORMAT_UINT",
273 "BUF_NUM_FORMAT_SINT",
274 "",
275 "BUF_NUM_FORMAT_FLOAT"
276};
277
279 "BUF_NUM_FORMAT_UNORM",
280 "BUF_NUM_FORMAT_SNORM",
281 "BUF_NUM_FORMAT_USCALED",
282 "BUF_NUM_FORMAT_SSCALED",
283 "BUF_NUM_FORMAT_UINT",
284 "BUF_NUM_FORMAT_SINT",
285 "BUF_NUM_FORMAT_SNORM_OGL",
286 "BUF_NUM_FORMAT_FLOAT"
287};
288
289StringLiteral const NfmtSymbolicVI[] = { // VI and GFX9
290 "BUF_NUM_FORMAT_UNORM",
291 "BUF_NUM_FORMAT_SNORM",
292 "BUF_NUM_FORMAT_USCALED",
293 "BUF_NUM_FORMAT_SSCALED",
294 "BUF_NUM_FORMAT_UINT",
295 "BUF_NUM_FORMAT_SINT",
296 "BUF_NUM_FORMAT_RESERVED_6",
297 "BUF_NUM_FORMAT_FLOAT"
298};
299
301 "BUF_FMT_INVALID",
302
303 "BUF_FMT_8_UNORM",
304 "BUF_FMT_8_SNORM",
305 "BUF_FMT_8_USCALED",
306 "BUF_FMT_8_SSCALED",
307 "BUF_FMT_8_UINT",
308 "BUF_FMT_8_SINT",
309
310 "BUF_FMT_16_UNORM",
311 "BUF_FMT_16_SNORM",
312 "BUF_FMT_16_USCALED",
313 "BUF_FMT_16_SSCALED",
314 "BUF_FMT_16_UINT",
315 "BUF_FMT_16_SINT",
316 "BUF_FMT_16_FLOAT",
317
318 "BUF_FMT_8_8_UNORM",
319 "BUF_FMT_8_8_SNORM",
320 "BUF_FMT_8_8_USCALED",
321 "BUF_FMT_8_8_SSCALED",
322 "BUF_FMT_8_8_UINT",
323 "BUF_FMT_8_8_SINT",
324
325 "BUF_FMT_32_UINT",
326 "BUF_FMT_32_SINT",
327 "BUF_FMT_32_FLOAT",
328
329 "BUF_FMT_16_16_UNORM",
330 "BUF_FMT_16_16_SNORM",
331 "BUF_FMT_16_16_USCALED",
332 "BUF_FMT_16_16_SSCALED",
333 "BUF_FMT_16_16_UINT",
334 "BUF_FMT_16_16_SINT",
335 "BUF_FMT_16_16_FLOAT",
336
337 "BUF_FMT_10_11_11_UNORM",
338 "BUF_FMT_10_11_11_SNORM",
339 "BUF_FMT_10_11_11_USCALED",
340 "BUF_FMT_10_11_11_SSCALED",
341 "BUF_FMT_10_11_11_UINT",
342 "BUF_FMT_10_11_11_SINT",
343 "BUF_FMT_10_11_11_FLOAT",
344
345 "BUF_FMT_11_11_10_UNORM",
346 "BUF_FMT_11_11_10_SNORM",
347 "BUF_FMT_11_11_10_USCALED",
348 "BUF_FMT_11_11_10_SSCALED",
349 "BUF_FMT_11_11_10_UINT",
350 "BUF_FMT_11_11_10_SINT",
351 "BUF_FMT_11_11_10_FLOAT",
352
353 "BUF_FMT_10_10_10_2_UNORM",
354 "BUF_FMT_10_10_10_2_SNORM",
355 "BUF_FMT_10_10_10_2_USCALED",
356 "BUF_FMT_10_10_10_2_SSCALED",
357 "BUF_FMT_10_10_10_2_UINT",
358 "BUF_FMT_10_10_10_2_SINT",
359
360 "BUF_FMT_2_10_10_10_UNORM",
361 "BUF_FMT_2_10_10_10_SNORM",
362 "BUF_FMT_2_10_10_10_USCALED",
363 "BUF_FMT_2_10_10_10_SSCALED",
364 "BUF_FMT_2_10_10_10_UINT",
365 "BUF_FMT_2_10_10_10_SINT",
366
367 "BUF_FMT_8_8_8_8_UNORM",
368 "BUF_FMT_8_8_8_8_SNORM",
369 "BUF_FMT_8_8_8_8_USCALED",
370 "BUF_FMT_8_8_8_8_SSCALED",
371 "BUF_FMT_8_8_8_8_UINT",
372 "BUF_FMT_8_8_8_8_SINT",
373
374 "BUF_FMT_32_32_UINT",
375 "BUF_FMT_32_32_SINT",
376 "BUF_FMT_32_32_FLOAT",
377
378 "BUF_FMT_16_16_16_16_UNORM",
379 "BUF_FMT_16_16_16_16_SNORM",
380 "BUF_FMT_16_16_16_16_USCALED",
381 "BUF_FMT_16_16_16_16_SSCALED",
382 "BUF_FMT_16_16_16_16_UINT",
383 "BUF_FMT_16_16_16_16_SINT",
384 "BUF_FMT_16_16_16_16_FLOAT",
385
386 "BUF_FMT_32_32_32_UINT",
387 "BUF_FMT_32_32_32_SINT",
388 "BUF_FMT_32_32_32_FLOAT",
389 "BUF_FMT_32_32_32_32_UINT",
390 "BUF_FMT_32_32_32_32_SINT",
391 "BUF_FMT_32_32_32_32_FLOAT"
392};
393
394unsigned const DfmtNfmt2UFmtGFX10[] = {
396
403
411
418
422
430
438
446
453
460
467
471
479
486};
487
489 "BUF_FMT_INVALID",
490
491 "BUF_FMT_8_UNORM",
492 "BUF_FMT_8_SNORM",
493 "BUF_FMT_8_USCALED",
494 "BUF_FMT_8_SSCALED",
495 "BUF_FMT_8_UINT",
496 "BUF_FMT_8_SINT",
497
498 "BUF_FMT_16_UNORM",
499 "BUF_FMT_16_SNORM",
500 "BUF_FMT_16_USCALED",
501 "BUF_FMT_16_SSCALED",
502 "BUF_FMT_16_UINT",
503 "BUF_FMT_16_SINT",
504 "BUF_FMT_16_FLOAT",
505
506 "BUF_FMT_8_8_UNORM",
507 "BUF_FMT_8_8_SNORM",
508 "BUF_FMT_8_8_USCALED",
509 "BUF_FMT_8_8_SSCALED",
510 "BUF_FMT_8_8_UINT",
511 "BUF_FMT_8_8_SINT",
512
513 "BUF_FMT_32_UINT",
514 "BUF_FMT_32_SINT",
515 "BUF_FMT_32_FLOAT",
516
517 "BUF_FMT_16_16_UNORM",
518 "BUF_FMT_16_16_SNORM",
519 "BUF_FMT_16_16_USCALED",
520 "BUF_FMT_16_16_SSCALED",
521 "BUF_FMT_16_16_UINT",
522 "BUF_FMT_16_16_SINT",
523 "BUF_FMT_16_16_FLOAT",
524
525 "BUF_FMT_10_11_11_FLOAT",
526
527 "BUF_FMT_11_11_10_FLOAT",
528
529 "BUF_FMT_10_10_10_2_UNORM",
530 "BUF_FMT_10_10_10_2_SNORM",
531 "BUF_FMT_10_10_10_2_UINT",
532 "BUF_FMT_10_10_10_2_SINT",
533
534 "BUF_FMT_2_10_10_10_UNORM",
535 "BUF_FMT_2_10_10_10_SNORM",
536 "BUF_FMT_2_10_10_10_USCALED",
537 "BUF_FMT_2_10_10_10_SSCALED",
538 "BUF_FMT_2_10_10_10_UINT",
539 "BUF_FMT_2_10_10_10_SINT",
540
541 "BUF_FMT_8_8_8_8_UNORM",
542 "BUF_FMT_8_8_8_8_SNORM",
543 "BUF_FMT_8_8_8_8_USCALED",
544 "BUF_FMT_8_8_8_8_SSCALED",
545 "BUF_FMT_8_8_8_8_UINT",
546 "BUF_FMT_8_8_8_8_SINT",
547
548 "BUF_FMT_32_32_UINT",
549 "BUF_FMT_32_32_SINT",
550 "BUF_FMT_32_32_FLOAT",
551
552 "BUF_FMT_16_16_16_16_UNORM",
553 "BUF_FMT_16_16_16_16_SNORM",
554 "BUF_FMT_16_16_16_16_USCALED",
555 "BUF_FMT_16_16_16_16_SSCALED",
556 "BUF_FMT_16_16_16_16_UINT",
557 "BUF_FMT_16_16_16_16_SINT",
558 "BUF_FMT_16_16_16_16_FLOAT",
559
560 "BUF_FMT_32_32_32_UINT",
561 "BUF_FMT_32_32_32_SINT",
562 "BUF_FMT_32_32_32_FLOAT",
563 "BUF_FMT_32_32_32_32_UINT",
564 "BUF_FMT_32_32_32_32_SINT",
565 "BUF_FMT_32_32_32_32_FLOAT"
566};
567
568unsigned const DfmtNfmt2UFmtGFX11[] = {
570
577
585
592
596
604
606
608
613
620
627
631
639
646};
647
648} // namespace MTBUFFormat
649
650namespace Swizzle {
651
652// clang-format off
653// This must be in sync with llvm::AMDGPU::Swizzle::Id enum members, see SIDefines.h.
654const char *const IdSymbolic[] = {
655 "QUAD_PERM",
656 "BITMASK_PERM",
657 "SWAP",
658 "REVERSE",
659 "BROADCAST",
660 "FFT",
661 "ROTATE",
662};
663// clang-format on
664
665} // namespace Swizzle
666
667namespace VGPRIndexMode {
668
669// This must be in sync with llvm::AMDGPU::VGPRIndexMode::Id enum members, see SIDefines.h.
670const char* const IdSymbolic[] = {
671 "SRC0",
672 "SRC1",
673 "SRC2",
674 "DST",
675};
676
677} // namespace VGPRIndexMode
678
679namespace UCVersion {
680
682 // GFX6, GFX8 and GFX9 don't support s_version and there are no
683 // UC_VERSION_GFX* codes for them.
684 static const GFXVersion Versions[] = {{"UC_VERSION_GFX7", 0},
685 {"UC_VERSION_GFX10", 4},
686 {"UC_VERSION_GFX11", 6},
687 {"UC_VERSION_GFX12", 9}};
688
689 return Versions;
690}
691
692} // namespace UCVersion
693
694} // namespace llvm::AMDGPU
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
Returns the sub type a function will return at a given Idx Should correspond to the result type of an ExtractValue instruction executed with just that one unsigned Idx
std::string Name
static std::vector< std::pair< int, unsigned > > Swizzle(std::vector< std::pair< int, unsigned > > Src, R600InstrInfo::BankSwizzle Swz)
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition: ArrayRef.h:41
Generic base class for all target subtargets.
A wrapper around a string literal that serves as a proxy for constructing global tables of StringRefs...
Definition: StringRef.h:862
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:55
const CustomOperandVal DepCtrInfo[]
StringRef getHwreg(uint64_t Encoding, const MCSubtargetInfo &STI)
int64_t getHwregId(StringRef Name, const MCSubtargetInfo &STI)
static constexpr CustomOperand Operands[]
StringLiteral const UfmtSymbolicGFX11[]
unsigned const DfmtNfmt2UFmtGFX10[]
StringLiteral const DfmtSymbolic[]
StringLiteral const NfmtSymbolicGFX10[]
unsigned const DfmtNfmt2UFmtGFX11[]
StringLiteral const NfmtSymbolicVI[]
StringLiteral const NfmtSymbolicSICI[]
StringLiteral const UfmtSymbolicGFX10[]
int64_t getMsgOpId(int64_t MsgId, StringRef Name, const MCSubtargetInfo &STI)
Map from a symbolic name for a sendmsg operation to the operation portion of the immediate encoding.
int64_t getMsgId(StringRef Name, const MCSubtargetInfo &STI)
Map from a symbolic name for a msg_id to the message portion of the immediate encoding.
static constexpr CustomOperand SysMsgOperands[]
static constexpr CustomOperand StreamMsgOperands[]
StringRef getMsgName(uint64_t Encoding, const MCSubtargetInfo &STI)
Map from an encoding to the symbolic name for a msg_id immediate.
static constexpr CustomOperand MsgOperands[]
StringRef getMsgOpName(int64_t MsgId, uint64_t Encoding, const MCSubtargetInfo &STI)
Map from an encoding to the symbolic name for a sendmsg operation.
bool msgRequiresOp(int64_t MsgId, const MCSubtargetInfo &STI)
const char *const IdSymbolic[]
ArrayRef< GFXVersion > getGFXVersions()
const char *const IdSymbolic[]
bool isGFX10_BEncoding(const MCSubtargetInfo &STI)
bool isGFX10_GFX11(const MCSubtargetInfo &STI)
bool isGFX10Before1030(const MCSubtargetInfo &STI)
const int OPR_ID_UNSUPPORTED
bool isGFX10(const MCSubtargetInfo &STI)
static int64_t getEncodingFromOperandTable(const CustomOperand(&Table)[N], StringRef Name, const MCSubtargetInfo &STI)
Map from a symbolic name for a sendmsg/hwreg asm operand to it's encoding.
bool isGFX12Plus(const MCSubtargetInfo &STI)
bool isGFX940(const MCSubtargetInfo &STI)
bool isGFX11(const MCSubtargetInfo &STI)
bool isGFX10_3_GFX11(const MCSubtargetInfo &STI)
bool isGFX8_GFX9_GFX10(const MCSubtargetInfo &STI)
bool isNotGFX10Plus(const MCSubtargetInfo &STI)
static StringRef getNameFromOperandTable(const CustomOperand(&Table)[N], unsigned Encoding, const MCSubtargetInfo &STI)
Map from the encoding of a sendmsg/hwreg asm operand to it's name.
bool isNotGFX11Plus(const MCSubtargetInfo &STI)
bool isGFX11Plus(const MCSubtargetInfo &STI)
bool isGFX10Plus(const MCSubtargetInfo &STI)
bool isNotGFX9Plus(const MCSubtargetInfo &STI)
bool isGFX9Plus(const MCSubtargetInfo &STI)
bool isGFX1250(const MCSubtargetInfo &STI)
const int OPR_ID_UNKNOWN
bool isNotGFX12Plus(const MCSubtargetInfo &STI)
bool isGFX9_GFX10_GFX11(const MCSubtargetInfo &STI)
bool isGFX9_GFX10(const MCSubtargetInfo &STI)
#define N