LLVM 18.0.0git
SIDefines.h
Go to the documentation of this file.
1//===-- SIDefines.h - SI Helper Macros ----------------------*- C++ -*-===//
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/// \file
8//===----------------------------------------------------------------------===//
9
10#ifndef LLVM_LIB_TARGET_AMDGPU_SIDEFINES_H
11#define LLVM_LIB_TARGET_AMDGPU_SIDEFINES_H
12
13#include "llvm/MC/MCInstrDesc.h"
14
15namespace llvm {
16
17// This needs to be kept in sync with the field bits in SIRegisterClass.
18enum SIRCFlags : uint8_t {
23
27
30}; // enum SIRCFlagsr
31
32namespace SIEncodingFamily {
33// This must be kept in sync with the SIEncodingFamily class in SIInstrInfo.td
34// and the columns of the getMCOpcodeGen table.
35enum {
36 SI = 0,
37 VI = 1,
38 SDWA = 2,
39 SDWA9 = 3,
40 GFX80 = 4,
41 GFX9 = 5,
42 GFX10 = 6,
43 SDWA10 = 7,
44 GFX90A = 8,
45 GFX940 = 9,
46 GFX11 = 10,
47 GFX12 = 11,
48};
49}
50
51namespace SIInstrFlags {
52// This needs to be kept in sync with the field bits in InstSI.
53enum : uint64_t {
54 // Low bits - basic encoding information.
55 SALU = 1 << 0,
56 VALU = 1 << 1,
57
58 // SALU instruction formats.
59 SOP1 = 1 << 2,
60 SOP2 = 1 << 3,
61 SOPC = 1 << 4,
62 SOPK = 1 << 5,
63 SOPP = 1 << 6,
64
65 // VALU instruction formats.
66 VOP1 = 1 << 7,
67 VOP2 = 1 << 8,
68 VOPC = 1 << 9,
69
70 // TODO: Should this be spilt into VOP3 a and b?
71 VOP3 = 1 << 10,
72 VOP3P = 1 << 12,
73
74 VINTRP = 1 << 13,
75 SDWA = 1 << 14,
76 DPP = 1 << 15,
77 TRANS = 1 << 16,
78
79 // Memory instruction formats.
80 MUBUF = 1 << 17,
81 MTBUF = 1 << 18,
82 SMRD = 1 << 19,
83 MIMG = 1 << 20,
84 VIMAGE = 1 << 21,
85 VSAMPLE = 1 << 22,
86 EXP = 1 << 23,
87 FLAT = 1 << 24,
88 DS = 1 << 25,
89
90 // Pseudo instruction formats.
91 VGPRSpill = 1 << 26,
92 SGPRSpill = 1 << 27,
93
94 // LDSDIR instruction format.
95 LDSDIR = 1 << 28,
96
97 // VINTERP instruction format.
98 VINTERP = 1 << 29,
99
100 // High bits - other information.
101 VM_CNT = UINT64_C(1) << 32,
102 EXP_CNT = UINT64_C(1) << 33,
103 LGKM_CNT = UINT64_C(1) << 34,
104
105 WQM = UINT64_C(1) << 35,
106 DisableWQM = UINT64_C(1) << 36,
107 Gather4 = UINT64_C(1) << 37,
108 SOPK_ZEXT = UINT64_C(1) << 38,
109 SCALAR_STORE = UINT64_C(1) << 39,
110 FIXED_SIZE = UINT64_C(1) << 40,
111 VOPAsmPrefer32Bit = UINT64_C(1) << 41,
112 VOP3_OPSEL = UINT64_C(1) << 42,
113 maybeAtomic = UINT64_C(1) << 43,
114 renamedInGFX9 = UINT64_C(1) << 44,
115
116 // Is a clamp on FP type.
117 FPClamp = UINT64_C(1) << 45,
118
119 // Is an integer clamp
120 IntClamp = UINT64_C(1) << 46,
121
122 // Clamps lo component of register.
123 ClampLo = UINT64_C(1) << 47,
124
125 // Clamps hi component of register.
126 // ClampLo and ClampHi set for packed clamp.
127 ClampHi = UINT64_C(1) << 48,
128
129 // Is a packed VOP3P instruction.
130 IsPacked = UINT64_C(1) << 49,
131
132 // Is a D16 buffer instruction.
133 D16Buf = UINT64_C(1) << 50,
134
135 // FLAT instruction accesses FLAT_GLBL segment.
136 FlatGlobal = UINT64_C(1) << 51,
137
138 // Uses floating point double precision rounding mode
139 FPDPRounding = UINT64_C(1) << 52,
140
141 // Instruction is FP atomic.
142 FPAtomic = UINT64_C(1) << 53,
143
144 // Is a MFMA instruction.
145 IsMAI = UINT64_C(1) << 54,
146
147 // Is a DOT instruction.
148 IsDOT = UINT64_C(1) << 55,
149
150 // FLAT instruction accesses FLAT_SCRATCH segment.
151 FlatScratch = UINT64_C(1) << 56,
152
153 // Atomic without return.
154 IsAtomicNoRet = UINT64_C(1) << 57,
155
156 // Atomic with return.
157 IsAtomicRet = UINT64_C(1) << 58,
158
159 // Is a WMMA instruction.
160 IsWMMA = UINT64_C(1) << 59,
161
162 // Whether tied sources will be read.
163 TiedSourceNotRead = UINT64_C(1) << 60,
164
165 // Is never uniform.
166 IsNeverUniform = UINT64_C(1) << 61,
167
168 // ds_gws_* instructions.
169 GWS = UINT64_C(1) << 62,
170};
171
172// v_cmp_class_* etc. use a 10-bit mask for what operation is checked.
173// The result is true if any of these tests are true.
174enum ClassFlags : unsigned {
175 S_NAN = 1 << 0, // Signaling NaN
176 Q_NAN = 1 << 1, // Quiet NaN
177 N_INFINITY = 1 << 2, // Negative infinity
178 N_NORMAL = 1 << 3, // Negative normal
179 N_SUBNORMAL = 1 << 4, // Negative subnormal
180 N_ZERO = 1 << 5, // Negative zero
181 P_ZERO = 1 << 6, // Positive zero
182 P_SUBNORMAL = 1 << 7, // Positive subnormal
183 P_NORMAL = 1 << 8, // Positive normal
184 P_INFINITY = 1 << 9 // Positive infinity
186}
187
188namespace AMDGPU {
189enum OperandType : unsigned {
190 /// Operands with register or 32-bit immediate
203
204 /// Operands with register or inline constant
215
216 /// Operand with 32-bit immediate that uses the constant bus.
219
220 /// Operands with an AccVGPR register or inline constant
230
231 // Operand for source modifiers for VOP instructions
233
234 // Operand for SDWA instructions
236
239
242
245
248
251
253}
254
255// Input operand modifiers bit-masks
256// NEG and SEXT share same bit-mask because they can't be set simultaneously.
257namespace SISrcMods {
258 enum : unsigned {
259 NONE = 0,
260 NEG = 1 << 0, // Floating-point negate modifier
261 ABS = 1 << 1, // Floating-point absolute modifier
262 SEXT = 1 << 0, // Integer sign-extend modifier
263 NEG_HI = ABS, // Floating-point negate high packed component modifier.
264 OP_SEL_0 = 1 << 2,
265 OP_SEL_1 = 1 << 3,
266 DST_OP_SEL = 1 << 3 // VOP3 dst op_sel (share mask with OP_SEL_1)
267 };
268}
269
270namespace SIOutMods {
271 enum : unsigned {
272 NONE = 0,
273 MUL2 = 1,
274 MUL4 = 2,
275 DIV2 = 3
276 };
277}
278
279namespace AMDGPU {
280namespace VGPRIndexMode {
281
282enum Id : unsigned { // id of symbolic names
287
289 ID_MAX = ID_DST
291
292enum EncBits : unsigned {
293 OFF = 0,
299 UNDEF = 0xFFFF
301
302} // namespace VGPRIndexMode
303} // namespace AMDGPU
304
305namespace AMDGPUAsmVariants {
306 enum : unsigned {
308 VOP3 = 1,
309 SDWA = 2,
310 SDWA9 = 3,
311 DPP = 4,
312 VOP3_DPP = 5
313 };
314} // namespace AMDGPUAsmVariants
315
316namespace AMDGPU {
317namespace EncValues { // Encoding values of enum9/8/7 operands
318
319enum : unsigned {
333 VGPR_MIN = 256,
334 VGPR_MAX = 511,
335 IS_VGPR = 256, // Indicates VGPR or AGPR
336};
337
338} // namespace EncValues
339
340// Register codes as defined in the TableGen's HWEncoding field.
341namespace HWEncoding {
342enum : unsigned {
345 IS_HI = 1 << 9, // High 16-bit register.
346};
347} // namespace HWEncoding
348
349namespace CPol {
350
351enum CPol {
352 GLC = 1,
353 SLC = 2,
354 DLC = 4,
355 SCC = 16,
361
362 // Below are GFX12+ cache policy bits
363
364 // Temporal hint
365 TH = 0x7, // All TH bits
366 TH_RT = 0, // regular
367 TH_NT = 1, // non-temporal
368 TH_HT = 2, // high-temporal
369 TH_LU = 3, // last use
370 TH_RT_WB = 3, // regular (CU, SE), high-temporal with write-back (MALL)
371 TH_NT_RT = 4, // non-temporal (CU, SE), regular (MALL)
372 TH_RT_NT = 5, // regular (CU, SE), non-temporal (MALL)
373 TH_NT_HT = 6, // non-temporal (CU, SE), high-temporal (MALL)
374 TH_NT_WB = 7, // non-temporal (CU, SE), high-temporal with write-back (MALL)
375 TH_BYPASS = 3, // only to be used with scope = 3
376
377 TH_RESERVED = 7, // unused value for load insts
378
379 // Bits of TH for atomics
380 TH_ATOMIC_RETURN = GLC, // Returning vs non-returning
381 TH_ATOMIC_NT = SLC, // Non-temporal vs regular
382 TH_ATOMIC_CASCADE = 4, // Cascading vs regular
383
384 // Scope
385 SCOPE = 0x3 << 3, // All Scope bits
386 SCOPE_CU = 0 << 3,
387 SCOPE_SE = 1 << 3,
388 SCOPE_DEV = 2 << 3,
389 SCOPE_SYS = 3 << 3,
390
391 SWZ = 1 << 6, // Swizzle bit
392
394
395 // Helper bits
396 TH_TYPE_LOAD = 1 << 7, // TH_LOAD policy
397 TH_TYPE_STORE = 1 << 8, // TH_STORE policy
398 TH_TYPE_ATOMIC = 1 << 9, // TH_ATOMIC policy
399 TH_REAL_BYPASS = 1 << 10, // is TH=3 bypass policy or not
400};
401
402} // namespace CPol
403
404namespace SendMsg { // Encoding of SIMM16 used in s_sendmsg* insns.
405
406enum Id { // Message ID, width(4) [3:0].
408
409 ID_GS_PreGFX11 = 2, // replaced in GFX11
410 ID_GS_DONE_PreGFX11 = 3, // replaced in GFX11
411
412 ID_HS_TESSFACTOR_GFX11Plus = 2, // reused in GFX11
413 ID_DEALLOC_VGPRS_GFX11Plus = 3, // reused in GFX11
414
415 ID_SAVEWAVE = 4, // added in GFX8, removed in GFX11
416 ID_STALL_WAVE_GEN = 5, // added in GFX9
417 ID_HALT_WAVES = 6, // added in GFX9
418 ID_ORDERED_PS_DONE = 7, // added in GFX9, removed in GFX11
419 ID_EARLY_PRIM_DEALLOC = 8, // added in GFX9, removed in GFX10
420 ID_GS_ALLOC_REQ = 9, // added in GFX9
421 ID_GET_DOORBELL = 10, // added in GFX9, removed in GFX11
422 ID_GET_DDID = 11, // added in GFX10, removed in GFX11
424
431
433 ID_MASK_GFX11Plus_ = 0xFF
435
436enum Op { // Both GS and SYS operation IDs.
440 // Bits used for operation encoding
442 OP_MASK_ = (((1 << OP_WIDTH_) - 1) << OP_SHIFT_),
443 // GS operations are encoded in bits 5:4
450 // SYS operations are encoded in bits 6:4
457};
458
459enum StreamId : unsigned { // Stream ID, (2) [9:8].
468
469} // namespace SendMsg
470
471namespace Hwreg { // Encoding of SIMM16 used in s_setreg/getreg* insns.
472
473enum Id { // HwRegCode, (6) [5:0]
500
501 // Register numbers reused in GFX11
504
505 // Register numbers reused in GFX12+
512
513 // GFX940 specific registers
519
522 ID_MASK_ = (((1 << ID_WIDTH_) - 1) << ID_SHIFT_)
524
525enum Offset : unsigned { // Offset, (5) [10:6]
530
532};
533
534enum WidthMinusOne : unsigned { // WidthMinusOne, (5) [15:11]
539};
540
541// Some values from WidthMinusOne mapped into Width domain.
542enum Width : unsigned {
544};
545
547 FP_ROUND_MASK = 0xf << 0, // Bits 0..3
548 FP_DENORM_MASK = 0xf << 4, // Bits 4..7
551 LOD_CLAMP_MASK = 1 << 10,
552 DEBUG_MASK = 1 << 11,
553
554 // EXCP_EN fields.
562
564 VSKIP_MASK = 1 << 28,
565 CSP_MASK = 0x7u << 29 // Bits 29..31
567
568} // namespace Hwreg
569
570namespace MTBUFFormat {
571
572enum DataFormat : int64_t {
589
592
595
597 DFMT_MASK = 0xF
599
600enum NumFormat : int64_t {
607 NFMT_RESERVED_6, // VI and GFX9
608 NFMT_SNORM_OGL = NFMT_RESERVED_6, // SI and CI only
610
613
616
618 NFMT_MASK = 7
620
621enum MergedFormat : int64_t {
625
626
628
631
632enum UnifiedFormatCommon : int64_t {
633 UFMT_MAX = 127,
635 UFMT_DEFAULT = 1
637
638} // namespace MTBUFFormat
639
640namespace UfmtGFX10 {
641enum UnifiedFormat : int64_t {
643
650
658
665
669
677
685
693
700
707
714
718
726
733
736};
737
738} // namespace UfmtGFX10
739
740namespace UfmtGFX11 {
741enum UnifiedFormat : int64_t {
743
750
758
765
769
777
779
781
786
793
800
804
812
819
822};
823
824} // namespace UfmtGFX11
825
826namespace Swizzle { // Encoding of swizzle macro used in ds_swizzle_b32.
827
828enum Id : unsigned { // id of symbolic names
835
836enum EncBits : unsigned {
837
838 // swizzle mode encodings
839
842
845
846 // QUAD_PERM encodings
847
852
853 // BITMASK_PERM encodings
854
858
863
864} // namespace Swizzle
865
866namespace SDWA {
867
868enum SdwaSel : unsigned {
875 DWORD = 6,
876};
877
878enum DstUnused : unsigned {
882};
883
884enum SDWA9EncValues : unsigned {
889
897};
898
899} // namespace SDWA
900
901namespace DPP {
902
903// clang-format off
904enum DppCtrl : unsigned {
906 QUAD_PERM_ID = 0xE4, // identity permutation
908 DPP_UNUSED1 = 0x100,
909 ROW_SHL0 = 0x100,
912 DPP_UNUSED2 = 0x110,
913 ROW_SHR0 = 0x110,
916 DPP_UNUSED3 = 0x120,
917 ROW_ROR0 = 0x120,
920 WAVE_SHL1 = 0x130,
923 WAVE_ROL1 = 0x134,
926 WAVE_SHR1 = 0x138,
929 WAVE_ROR1 = 0x13C,
932 ROW_MIRROR = 0x140,
934 BCAST15 = 0x142,
935 BCAST31 = 0x143,
940 ROW_SHARE0 = 0x150,
943 ROW_XMASK0 = 0x160,
948// clang-format on
949
953 DPP8_FI_0 = 0xE9,
954 DPP8_FI_1 = 0xEA,
955};
956
957} // namespace DPP
958
959namespace Exp {
960
961enum Target : unsigned {
965 ET_NULL = 9, // Pre-GFX11
968 ET_POS4 = 16, // GFX10+
969 ET_POS_LAST = ET_POS4, // Highest pos used on any subtarget
970 ET_PRIM = 20, // GFX10+
971 ET_DUAL_SRC_BLEND0 = 21, // GFX11+
972 ET_DUAL_SRC_BLEND1 = 22, // GFX11+
973 ET_PARAM0 = 32, // Pre-GFX11
974 ET_PARAM31 = 63, // Pre-GFX11
975
983
985};
986
987} // namespace Exp
988
989namespace VOP3PEncoding {
990
992 OP_SEL_HI_0 = UINT64_C(1) << 59,
993 OP_SEL_HI_1 = UINT64_C(1) << 60,
994 OP_SEL_HI_2 = UINT64_C(1) << 14,
995};
996
997} // namespace VOP3PEncoding
998
999namespace ImplicitArg {
1000// Implicit kernel argument offset for code object version 5.
1001enum Offset_COV5 : unsigned {
1005
1008
1012};
1013
1014} // namespace ImplicitArg
1015
1016namespace VirtRegFlag {
1017// Virtual register flags used for various target specific handlings during
1018// codegen.
1019enum Register_Flag : uint8_t {
1020 // Register operand in a whole-wave mode operation.
1021 WWM_REG = 1 << 0,
1022};
1023
1024} // namespace VirtRegFlag
1025
1026} // namespace AMDGPU
1027
1028#define R_00B028_SPI_SHADER_PGM_RSRC1_PS 0x00B028
1029#define S_00B028_VGPRS(x) (((x) & 0x3F) << 0)
1030#define S_00B028_SGPRS(x) (((x) & 0x0F) << 6)
1031#define S_00B028_MEM_ORDERED(x) (((x) & 0x1) << 25)
1032#define G_00B028_MEM_ORDERED(x) (((x) >> 25) & 0x1)
1033#define C_00B028_MEM_ORDERED 0xFDFFFFFF
1034
1035#define R_00B02C_SPI_SHADER_PGM_RSRC2_PS 0x00B02C
1036#define S_00B02C_EXTRA_LDS_SIZE(x) (((x) & 0xFF) << 8)
1037#define R_00B128_SPI_SHADER_PGM_RSRC1_VS 0x00B128
1038#define S_00B128_MEM_ORDERED(x) (((x) & 0x1) << 27)
1039#define G_00B128_MEM_ORDERED(x) (((x) >> 27) & 0x1)
1040#define C_00B128_MEM_ORDERED 0xF7FFFFFF
1041
1042#define R_00B228_SPI_SHADER_PGM_RSRC1_GS 0x00B228
1043#define S_00B228_WGP_MODE(x) (((x) & 0x1) << 27)
1044#define G_00B228_WGP_MODE(x) (((x) >> 27) & 0x1)
1045#define C_00B228_WGP_MODE 0xF7FFFFFF
1046#define S_00B228_MEM_ORDERED(x) (((x) & 0x1) << 25)
1047#define G_00B228_MEM_ORDERED(x) (((x) >> 25) & 0x1)
1048#define C_00B228_MEM_ORDERED 0xFDFFFFFF
1049
1050#define R_00B328_SPI_SHADER_PGM_RSRC1_ES 0x00B328
1051#define R_00B428_SPI_SHADER_PGM_RSRC1_HS 0x00B428
1052#define S_00B428_WGP_MODE(x) (((x) & 0x1) << 26)
1053#define G_00B428_WGP_MODE(x) (((x) >> 26) & 0x1)
1054#define C_00B428_WGP_MODE 0xFBFFFFFF
1055#define S_00B428_MEM_ORDERED(x) (((x) & 0x1) << 24)
1056#define G_00B428_MEM_ORDERED(x) (((x) >> 24) & 0x1)
1057#define C_00B428_MEM_ORDERED 0xFEFFFFFF
1058
1059#define R_00B528_SPI_SHADER_PGM_RSRC1_LS 0x00B528
1060
1061#define R_00B84C_COMPUTE_PGM_RSRC2 0x00B84C
1062#define S_00B84C_SCRATCH_EN(x) (((x) & 0x1) << 0)
1063#define G_00B84C_SCRATCH_EN(x) (((x) >> 0) & 0x1)
1064#define C_00B84C_SCRATCH_EN 0xFFFFFFFE
1065#define S_00B84C_USER_SGPR(x) (((x) & 0x1F) << 1)
1066#define G_00B84C_USER_SGPR(x) (((x) >> 1) & 0x1F)
1067#define C_00B84C_USER_SGPR 0xFFFFFFC1
1068#define S_00B84C_TRAP_HANDLER(x) (((x) & 0x1) << 6)
1069#define G_00B84C_TRAP_HANDLER(x) (((x) >> 6) & 0x1)
1070#define C_00B84C_TRAP_HANDLER 0xFFFFFFBF
1071#define S_00B84C_TGID_X_EN(x) (((x) & 0x1) << 7)
1072#define G_00B84C_TGID_X_EN(x) (((x) >> 7) & 0x1)
1073#define C_00B84C_TGID_X_EN 0xFFFFFF7F
1074#define S_00B84C_TGID_Y_EN(x) (((x) & 0x1) << 8)
1075#define G_00B84C_TGID_Y_EN(x) (((x) >> 8) & 0x1)
1076#define C_00B84C_TGID_Y_EN 0xFFFFFEFF
1077#define S_00B84C_TGID_Z_EN(x) (((x) & 0x1) << 9)
1078#define G_00B84C_TGID_Z_EN(x) (((x) >> 9) & 0x1)
1079#define C_00B84C_TGID_Z_EN 0xFFFFFDFF
1080#define S_00B84C_TG_SIZE_EN(x) (((x) & 0x1) << 10)
1081#define G_00B84C_TG_SIZE_EN(x) (((x) >> 10) & 0x1)
1082#define C_00B84C_TG_SIZE_EN 0xFFFFFBFF
1083#define S_00B84C_TIDIG_COMP_CNT(x) (((x) & 0x03) << 11)
1084#define G_00B84C_TIDIG_COMP_CNT(x) (((x) >> 11) & 0x03)
1085#define C_00B84C_TIDIG_COMP_CNT 0xFFFFE7FF
1086/* CIK */
1087#define S_00B84C_EXCP_EN_MSB(x) (((x) & 0x03) << 13)
1088#define G_00B84C_EXCP_EN_MSB(x) (((x) >> 13) & 0x03)
1089#define C_00B84C_EXCP_EN_MSB 0xFFFF9FFF
1090/* */
1091#define S_00B84C_LDS_SIZE(x) (((x) & 0x1FF) << 15)
1092#define G_00B84C_LDS_SIZE(x) (((x) >> 15) & 0x1FF)
1093#define C_00B84C_LDS_SIZE 0xFF007FFF
1094#define S_00B84C_EXCP_EN(x) (((x) & 0x7F) << 24)
1095#define G_00B84C_EXCP_EN(x) (((x) >> 24) & 0x7F)
1096#define C_00B84C_EXCP_EN
1097
1098#define R_0286CC_SPI_PS_INPUT_ENA 0x0286CC
1099#define R_0286D0_SPI_PS_INPUT_ADDR 0x0286D0
1100
1101#define R_00B848_COMPUTE_PGM_RSRC1 0x00B848
1102#define S_00B848_VGPRS(x) (((x) & 0x3F) << 0)
1103#define G_00B848_VGPRS(x) (((x) >> 0) & 0x3F)
1104#define C_00B848_VGPRS 0xFFFFFFC0
1105#define S_00B848_SGPRS(x) (((x) & 0x0F) << 6)
1106#define G_00B848_SGPRS(x) (((x) >> 6) & 0x0F)
1107#define C_00B848_SGPRS 0xFFFFFC3F
1108#define S_00B848_PRIORITY(x) (((x) & 0x03) << 10)
1109#define G_00B848_PRIORITY(x) (((x) >> 10) & 0x03)
1110#define C_00B848_PRIORITY 0xFFFFF3FF
1111#define S_00B848_FLOAT_MODE(x) (((x) & 0xFF) << 12)
1112#define G_00B848_FLOAT_MODE(x) (((x) >> 12) & 0xFF)
1113#define C_00B848_FLOAT_MODE 0xFFF00FFF
1114#define S_00B848_PRIV(x) (((x) & 0x1) << 20)
1115#define G_00B848_PRIV(x) (((x) >> 20) & 0x1)
1116#define C_00B848_PRIV 0xFFEFFFFF
1117#define S_00B848_DX10_CLAMP(x) (((x) & 0x1) << 21)
1118#define G_00B848_DX10_CLAMP(x) (((x) >> 21) & 0x1)
1119#define C_00B848_DX10_CLAMP 0xFFDFFFFF
1120#define S_00B848_DEBUG_MODE(x) (((x) & 0x1) << 22)
1121#define G_00B848_DEBUG_MODE(x) (((x) >> 22) & 0x1)
1122#define C_00B848_DEBUG_MODE 0xFFBFFFFF
1123#define S_00B848_IEEE_MODE(x) (((x) & 0x1) << 23)
1124#define G_00B848_IEEE_MODE(x) (((x) >> 23) & 0x1)
1125#define C_00B848_IEEE_MODE 0xFF7FFFFF
1126#define S_00B848_WGP_MODE(x) (((x) & 0x1) << 29)
1127#define G_00B848_WGP_MODE(x) (((x) >> 29) & 0x1)
1128#define C_00B848_WGP_MODE 0xDFFFFFFF
1129#define S_00B848_MEM_ORDERED(x) (((x) & 0x1) << 30)
1130#define G_00B848_MEM_ORDERED(x) (((x) >> 30) & 0x1)
1131#define C_00B848_MEM_ORDERED 0xBFFFFFFF
1132#define S_00B848_FWD_PROGRESS(x) (((x) & 0x1) << 31)
1133#define G_00B848_FWD_PROGRESS(x) (((x) >> 31) & 0x1)
1134#define C_00B848_FWD_PROGRESS 0x7FFFFFFF
1135
1136
1137// Helpers for setting FLOAT_MODE
1138#define FP_ROUND_ROUND_TO_NEAREST 0
1139#define FP_ROUND_ROUND_TO_INF 1
1140#define FP_ROUND_ROUND_TO_NEGINF 2
1141#define FP_ROUND_ROUND_TO_ZERO 3
1142
1143// Bits 3:0 control rounding mode. 1:0 control single precision, 3:2 double
1144// precision.
1145#define FP_ROUND_MODE_SP(x) ((x) & 0x3)
1146#define FP_ROUND_MODE_DP(x) (((x) & 0x3) << 2)
1147
1148#define FP_DENORM_FLUSH_IN_FLUSH_OUT 0
1149#define FP_DENORM_FLUSH_OUT 1
1150#define FP_DENORM_FLUSH_IN 2
1151#define FP_DENORM_FLUSH_NONE 3
1152
1153
1154// Bits 7:4 control denormal handling. 5:4 control single precision, 6:7 double
1155// precision.
1156#define FP_DENORM_MODE_SP(x) (((x) & 0x3) << 4)
1157#define FP_DENORM_MODE_DP(x) (((x) & 0x3) << 6)
1158
1159#define R_00B860_COMPUTE_TMPRING_SIZE 0x00B860
1160#define S_00B860_WAVESIZE_PreGFX11(x) (((x) & 0x1FFF) << 12)
1161#define S_00B860_WAVESIZE_GFX11Plus(x) (((x) & 0x7FFF) << 12)
1162
1163#define R_0286E8_SPI_TMPRING_SIZE 0x0286E8
1164#define S_0286E8_WAVESIZE_PreGFX11(x) (((x) & 0x1FFF) << 12)
1165#define S_0286E8_WAVESIZE_GFX11Plus(x) (((x) & 0x7FFF) << 12)
1166
1167#define R_028B54_VGT_SHADER_STAGES_EN 0x028B54
1168#define S_028B54_HS_W32_EN(x) (((x) & 0x1) << 21)
1169#define S_028B54_GS_W32_EN(x) (((x) & 0x1) << 22)
1170#define S_028B54_VS_W32_EN(x) (((x) & 0x1) << 23)
1171#define R_0286D8_SPI_PS_IN_CONTROL 0x0286D8
1172#define S_0286D8_PS_W32_EN(x) (((x) & 0x1) << 15)
1173#define R_00B800_COMPUTE_DISPATCH_INITIATOR 0x00B800
1174#define S_00B800_CS_W32_EN(x) (((x) & 0x1) << 15)
1175
1176#define R_SPILLED_SGPRS 0x4
1177#define R_SPILLED_VGPRS 0x8
1178} // End namespace llvm
1179
1180#endif
static std::vector< std::pair< int, unsigned > > Swizzle(std::vector< std::pair< int, unsigned > > Src, R600InstrInfo::BankSwizzle Swz)
@ OPERAND_KIMM_LAST
Definition: SIDefines.h:250
@ OPERAND_KIMM32
Operand with 32-bit immediate that uses the constant bus.
Definition: SIDefines.h:217
@ OPERAND_REG_INLINE_C_LAST
Definition: SIDefines.h:241
@ OPERAND_REG_INLINE_AC_V2FP32
Definition: SIDefines.h:229
@ OPERAND_REG_INLINE_AC_V2INT32
Definition: SIDefines.h:228
@ OPERAND_REG_IMM_INT64
Definition: SIDefines.h:192
@ OPERAND_REG_IMM_V2FP16
Definition: SIDefines.h:199
@ OPERAND_REG_INLINE_C_V2INT32
Definition: SIDefines.h:213
@ OPERAND_REG_INLINE_C_FP64
Definition: SIDefines.h:210
@ OPERAND_REG_IMM_FIRST
Definition: SIDefines.h:237
@ OPERAND_REG_IMM_V2INT16
Definition: SIDefines.h:200
@ OPERAND_REG_INLINE_AC_V2FP16
Definition: SIDefines.h:227
@ OPERAND_REG_IMM_INT32
Operands with register or 32-bit immediate.
Definition: SIDefines.h:191
@ OPERAND_SRC_FIRST
Definition: SIDefines.h:246
@ OPERAND_REG_INLINE_AC_FIRST
Definition: SIDefines.h:243
@ OPERAND_KIMM_FIRST
Definition: SIDefines.h:249
@ OPERAND_REG_IMM_FP16
Definition: SIDefines.h:196
@ OPERAND_REG_INLINE_C_INT64
Definition: SIDefines.h:207
@ OPERAND_REG_INLINE_C_INT16
Operands with register or inline constant.
Definition: SIDefines.h:205
@ OPERAND_REG_INLINE_AC_INT16
Operands with an AccVGPR register or inline constant.
Definition: SIDefines.h:221
@ OPERAND_REG_IMM_FP64
Definition: SIDefines.h:195
@ OPERAND_REG_INLINE_C_V2FP16
Definition: SIDefines.h:212
@ OPERAND_REG_INLINE_AC_V2INT16
Definition: SIDefines.h:226
@ OPERAND_REG_INLINE_AC_FP16
Definition: SIDefines.h:223
@ OPERAND_REG_INLINE_AC_INT32
Definition: SIDefines.h:222
@ OPERAND_REG_INLINE_AC_FP32
Definition: SIDefines.h:224
@ OPERAND_REG_IMM_V2INT32
Definition: SIDefines.h:201
@ OPERAND_SDWA_VOPC_DST
Definition: SIDefines.h:235
@ OPERAND_REG_IMM_FP32
Definition: SIDefines.h:194
@ OPERAND_INPUT_MODS
Definition: SIDefines.h:232
@ OPERAND_REG_INLINE_C_FIRST
Definition: SIDefines.h:240
@ OPERAND_REG_INLINE_C_FP32
Definition: SIDefines.h:209
@ OPERAND_REG_INLINE_AC_LAST
Definition: SIDefines.h:244
@ OPERAND_REG_IMM_LAST
Definition: SIDefines.h:238
@ OPERAND_REG_INLINE_C_INT32
Definition: SIDefines.h:206
@ OPERAND_REG_INLINE_C_V2INT16
Definition: SIDefines.h:211
@ OPERAND_REG_IMM_V2FP32
Definition: SIDefines.h:202
@ OPERAND_REG_INLINE_AC_FP64
Definition: SIDefines.h:225
@ OPERAND_REG_INLINE_C_FP16
Definition: SIDefines.h:208
@ OPERAND_REG_IMM_INT16
Definition: SIDefines.h:193
@ OPERAND_REG_INLINE_C_V2FP32
Definition: SIDefines.h:214
@ OPERAND_REG_IMM_FP32_DEFERRED
Definition: SIDefines.h:198
@ OPERAND_SRC_LAST
Definition: SIDefines.h:247
@ OPERAND_REG_IMM_FP16_DEFERRED
Definition: SIDefines.h:197
@ OPERAND_FIRST_TARGET
Definition: MCInstrDesc.h:78
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
SIRCFlags
Definition: SIDefines.h:18
@ HasSGPR
Definition: SIDefines.h:26
@ HasAGPRBit
Definition: SIDefines.h:21
@ HasSGPRbit
Definition: SIDefines.h:22
@ RegTupleAlignUnitsWidth
Definition: SIDefines.h:19
@ RegTupleAlignUnitsMask
Definition: SIDefines.h:28
@ HasVGPRBit
Definition: SIDefines.h:20
@ HasVGPR
Definition: SIDefines.h:24
@ RegKindMask
Definition: SIDefines.h:29
@ HasAGPR
Definition: SIDefines.h:25