LLVM  8.0.1
SIDefines.h
Go to the documentation of this file.
1 //===-- SIDefines.h - SI Helper Macros ----------------------*- 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 /// \file
9 //===----------------------------------------------------------------------===//
10 
11 #include "llvm/MC/MCInstrDesc.h"
12 
13 #ifndef LLVM_LIB_TARGET_AMDGPU_SIDEFINES_H
14 #define LLVM_LIB_TARGET_AMDGPU_SIDEFINES_H
15 
16 namespace llvm {
17 
18 namespace SIInstrFlags {
19 // This needs to be kept in sync with the field bits in InstSI.
20 enum : uint64_t {
21  // Low bits - basic encoding information.
22  SALU = 1 << 0,
23  VALU = 1 << 1,
24 
25  // SALU instruction formats.
26  SOP1 = 1 << 2,
27  SOP2 = 1 << 3,
28  SOPC = 1 << 4,
29  SOPK = 1 << 5,
30  SOPP = 1 << 6,
31 
32  // VALU instruction formats.
33  VOP1 = 1 << 7,
34  VOP2 = 1 << 8,
35  VOPC = 1 << 9,
36 
37  // TODO: Should this be spilt into VOP3 a and b?
38  VOP3 = 1 << 10,
39  VOP3P = 1 << 12,
40 
41  VINTRP = 1 << 13,
42  SDWA = 1 << 14,
43  DPP = 1 << 15,
44 
45  // Memory instruction formats.
46  MUBUF = 1 << 16,
47  MTBUF = 1 << 17,
48  SMRD = 1 << 18,
49  MIMG = 1 << 19,
50  EXP = 1 << 20,
51  FLAT = 1 << 21,
52  DS = 1 << 22,
53 
54  // Pseudo instruction formats.
55  VGPRSpill = 1 << 23,
56  SGPRSpill = 1 << 24,
57 
58  // High bits - other information.
59  VM_CNT = UINT64_C(1) << 32,
60  EXP_CNT = UINT64_C(1) << 33,
61  LGKM_CNT = UINT64_C(1) << 34,
62 
63  WQM = UINT64_C(1) << 35,
64  DisableWQM = UINT64_C(1) << 36,
65  Gather4 = UINT64_C(1) << 37,
66  SOPK_ZEXT = UINT64_C(1) << 38,
67  SCALAR_STORE = UINT64_C(1) << 39,
68  FIXED_SIZE = UINT64_C(1) << 40,
69  VOPAsmPrefer32Bit = UINT64_C(1) << 41,
70  VOP3_OPSEL = UINT64_C(1) << 42,
71  maybeAtomic = UINT64_C(1) << 43,
72  renamedInGFX9 = UINT64_C(1) << 44,
73 
74  // Is a clamp on FP type.
75  FPClamp = UINT64_C(1) << 45,
76 
77  // Is an integer clamp
78  IntClamp = UINT64_C(1) << 46,
79 
80  // Clamps lo component of register.
81  ClampLo = UINT64_C(1) << 47,
82 
83  // Clamps hi component of register.
84  // ClampLo and ClampHi set for packed clamp.
85  ClampHi = UINT64_C(1) << 48,
86 
87  // Is a packed VOP3P instruction.
88  IsPacked = UINT64_C(1) << 49,
89 
90  // Is a D16 buffer instruction.
91  D16Buf = UINT64_C(1) << 50,
92 
93  // Uses floating point double precision rounding mode
94  FPDPRounding = UINT64_C(1) << 51
95 };
96 
97 // v_cmp_class_* etc. use a 10-bit mask for what operation is checked.
98 // The result is true if any of these tests are true.
99 enum ClassFlags {
100  S_NAN = 1 << 0, // Signaling NaN
101  Q_NAN = 1 << 1, // Quiet NaN
102  N_INFINITY = 1 << 2, // Negative infinity
103  N_NORMAL = 1 << 3, // Negative normal
104  N_SUBNORMAL = 1 << 4, // Negative subnormal
105  N_ZERO = 1 << 5, // Negative zero
106  P_ZERO = 1 << 6, // Positive zero
107  P_SUBNORMAL = 1 << 7, // Positive subnormal
108  P_NORMAL = 1 << 8, // Positive normal
109  P_INFINITY = 1 << 9 // Positive infinity
110 };
111 }
112 
113 namespace AMDGPU {
114  enum OperandType {
115  /// Operands with register or 32-bit immediate
122 
123  /// Operands with register or inline constant
132 
135 
138 
141 
142  // Operand for source modifiers for VOP instructions
144 
145  // Operand for SDWA instructions
147 
148  /// Operand with 32-bit immediate that uses the constant bus.
151  };
152 }
153 
154 namespace SIStackID {
155 enum StackTypes : uint8_t {
156  SCRATCH = 0,
158 };
159 }
160 
161 // Input operand modifiers bit-masks
162 // NEG and SEXT share same bit-mask because they can't be set simultaneously.
163 namespace SISrcMods {
164  enum {
165  NEG = 1 << 0, // Floating-point negate modifier
166  ABS = 1 << 1, // Floating-point absolute modifier
167  SEXT = 1 << 0, // Integer sign-extend modifier
168  NEG_HI = ABS, // Floating-point negate high packed component modifier.
169  OP_SEL_0 = 1 << 2,
170  OP_SEL_1 = 1 << 3,
171  DST_OP_SEL = 1 << 3 // VOP3 dst op_sel (share mask with OP_SEL_1)
172  };
173 }
174 
175 namespace SIOutMods {
176  enum {
177  NONE = 0,
178  MUL2 = 1,
179  MUL4 = 2,
180  DIV2 = 3
181  };
182 }
183 
184 namespace VGPRIndexMode {
185  enum {
186  SRC0_ENABLE = 1 << 0,
187  SRC1_ENABLE = 1 << 1,
188  SRC2_ENABLE = 1 << 2,
189  DST_ENABLE = 1 << 3
190  };
191 }
192 
193 namespace AMDGPUAsmVariants {
194  enum {
195  DEFAULT = 0,
196  VOP3 = 1,
197  SDWA = 2,
198  SDWA9 = 3,
199  DPP = 4
200  };
201 }
202 
203 namespace AMDGPU {
204 namespace EncValues { // Encoding values of enum9/8/7 operands
205 
206 enum {
207  SGPR_MIN = 0,
208  SGPR_MAX = 101,
209  TTMP_VI_MIN = 112,
210  TTMP_VI_MAX = 123,
219  VGPR_MIN = 256,
220  VGPR_MAX = 511
221 };
222 
223 } // namespace EncValues
224 } // namespace AMDGPU
225 
226 namespace AMDGPU {
227 namespace SendMsg { // Encoding of SIMM16 used in s_sendmsg* insns.
228 
229 enum Id { // Message ID, width(4) [3:0].
234  ID_SYSMSG = 15,
235  ID_GAPS_LAST_, // Indicate that sequence has gaps.
239  ID_MASK_ = (((1 << ID_WIDTH_) - 1) << ID_SHIFT_)
240 };
241 
242 enum Op { // Both GS and SYS operation IDs.
245  // width(2) [5:4]
253  OP_GS_MASK_ = (((1 << OP_GS_WIDTH_) - 1) << OP_SHIFT_),
254  // width(3) [6:4]
263 };
264 
265 enum StreamId { // Stream ID, (2) [9:8].
272 };
273 
274 } // namespace SendMsg
275 
276 namespace Hwreg { // Encoding of SIMM16 used in s_setreg/getreg* insns.
277 
278 enum Id { // HwRegCode, (6) [5:0]
280  ID_SYMBOLIC_FIRST_ = 1, // There are corresponding symbolic names defined.
281  ID_MODE = 1,
284  ID_HW_ID = 4,
293  ID_MASK_ = (((1 << ID_WIDTH_) - 1) << ID_SHIFT_)
294 };
295 
296 enum Offset { // Offset, (5) [10:6]
301 
304 };
305 
306 enum WidthMinusOne { // WidthMinusOne, (5) [15:11]
311 
314 };
315 
316 } // namespace Hwreg
317 
318 namespace Swizzle { // Encoding of swizzle macro used in ds_swizzle_b32.
319 
320 enum Id { // id of symbolic names
326 };
327 
328 enum EncBits {
329 
330  // swizzle mode encodings
331 
332  QUAD_PERM_ENC = 0x8000,
334 
337 
338  // QUAD_PERM encodings
339 
340  LANE_MASK = 0x3,
343  LANE_NUM = 4,
344 
345  // BITMASK_PERM encodings
346 
347  BITMASK_MASK = 0x1F,
350 
354 };
355 
356 } // namespace Swizzle
357 
358 namespace SDWA {
359 
360 enum SdwaSel {
361  BYTE_0 = 0,
362  BYTE_1 = 1,
363  BYTE_2 = 2,
364  BYTE_3 = 3,
365  WORD_0 = 4,
366  WORD_1 = 5,
367  DWORD = 6,
368 };
369 
370 enum DstUnused {
374 };
375 
377  SRC_SGPR_MASK = 0x100,
381 
388 };
389 
390 } // namespace SDWA
391 
392 namespace DPP {
393 
394 enum DppCtrl {
397  DPP_UNUSED1 = 0x100,
398  ROW_SHL0 = 0x100,
399  ROW_SHL_FIRST = 0x101,
400  ROW_SHL_LAST = 0x10F,
401  DPP_UNUSED2 = 0x110,
402  ROW_SHR0 = 0x110,
403  ROW_SHR_FIRST = 0x111,
404  ROW_SHR_LAST = 0x11F,
405  DPP_UNUSED3 = 0x120,
406  ROW_ROR0 = 0x120,
407  ROW_ROR_FIRST = 0x121,
408  ROW_ROR_LAST = 0x12F,
409  WAVE_SHL1 = 0x130,
412  WAVE_ROL1 = 0x134,
415  WAVE_SHR1 = 0x138,
418  WAVE_ROR1 = 0x13C,
421  ROW_MIRROR = 0x140,
423  BCAST15 = 0x142,
424  BCAST31 = 0x143,
426 };
427 
428 } // namespace DPP
429 } // namespace AMDGPU
430 
431 #define R_00B028_SPI_SHADER_PGM_RSRC1_PS 0x00B028
432 #define R_00B02C_SPI_SHADER_PGM_RSRC2_PS 0x00B02C
433 #define S_00B02C_EXTRA_LDS_SIZE(x) (((x) & 0xFF) << 8)
434 #define R_00B128_SPI_SHADER_PGM_RSRC1_VS 0x00B128
435 #define R_00B228_SPI_SHADER_PGM_RSRC1_GS 0x00B228
436 #define R_00B328_SPI_SHADER_PGM_RSRC1_ES 0x00B328
437 #define R_00B428_SPI_SHADER_PGM_RSRC1_HS 0x00B428
438 #define R_00B528_SPI_SHADER_PGM_RSRC1_LS 0x00B528
439 #define R_00B848_COMPUTE_PGM_RSRC1 0x00B848
440 #define S_00B028_VGPRS(x) (((x) & 0x3F) << 0)
441 #define S_00B028_SGPRS(x) (((x) & 0x0F) << 6)
442 
443 #define R_00B84C_COMPUTE_PGM_RSRC2 0x00B84C
444 #define S_00B84C_SCRATCH_EN(x) (((x) & 0x1) << 0)
445 #define G_00B84C_SCRATCH_EN(x) (((x) >> 0) & 0x1)
446 #define C_00B84C_SCRATCH_EN 0xFFFFFFFE
447 #define S_00B84C_USER_SGPR(x) (((x) & 0x1F) << 1)
448 #define G_00B84C_USER_SGPR(x) (((x) >> 1) & 0x1F)
449 #define C_00B84C_USER_SGPR 0xFFFFFFC1
450 #define S_00B84C_TRAP_HANDLER(x) (((x) & 0x1) << 6)
451 #define G_00B84C_TRAP_HANDLER(x) (((x) >> 6) & 0x1)
452 #define C_00B84C_TRAP_HANDLER 0xFFFFFFBF
453 #define S_00B84C_TGID_X_EN(x) (((x) & 0x1) << 7)
454 #define G_00B84C_TGID_X_EN(x) (((x) >> 7) & 0x1)
455 #define C_00B84C_TGID_X_EN 0xFFFFFF7F
456 #define S_00B84C_TGID_Y_EN(x) (((x) & 0x1) << 8)
457 #define G_00B84C_TGID_Y_EN(x) (((x) >> 8) & 0x1)
458 #define C_00B84C_TGID_Y_EN 0xFFFFFEFF
459 #define S_00B84C_TGID_Z_EN(x) (((x) & 0x1) << 9)
460 #define G_00B84C_TGID_Z_EN(x) (((x) >> 9) & 0x1)
461 #define C_00B84C_TGID_Z_EN 0xFFFFFDFF
462 #define S_00B84C_TG_SIZE_EN(x) (((x) & 0x1) << 10)
463 #define G_00B84C_TG_SIZE_EN(x) (((x) >> 10) & 0x1)
464 #define C_00B84C_TG_SIZE_EN 0xFFFFFBFF
465 #define S_00B84C_TIDIG_COMP_CNT(x) (((x) & 0x03) << 11)
466 #define G_00B84C_TIDIG_COMP_CNT(x) (((x) >> 11) & 0x03)
467 #define C_00B84C_TIDIG_COMP_CNT 0xFFFFE7FF
468 /* CIK */
469 #define S_00B84C_EXCP_EN_MSB(x) (((x) & 0x03) << 13)
470 #define G_00B84C_EXCP_EN_MSB(x) (((x) >> 13) & 0x03)
471 #define C_00B84C_EXCP_EN_MSB 0xFFFF9FFF
472 /* */
473 #define S_00B84C_LDS_SIZE(x) (((x) & 0x1FF) << 15)
474 #define G_00B84C_LDS_SIZE(x) (((x) >> 15) & 0x1FF)
475 #define C_00B84C_LDS_SIZE 0xFF007FFF
476 #define S_00B84C_EXCP_EN(x) (((x) & 0x7F) << 24)
477 #define G_00B84C_EXCP_EN(x) (((x) >> 24) & 0x7F)
478 #define C_00B84C_EXCP_EN
479 
480 #define R_0286CC_SPI_PS_INPUT_ENA 0x0286CC
481 #define R_0286D0_SPI_PS_INPUT_ADDR 0x0286D0
482 
483 #define R_00B848_COMPUTE_PGM_RSRC1 0x00B848
484 #define S_00B848_VGPRS(x) (((x) & 0x3F) << 0)
485 #define G_00B848_VGPRS(x) (((x) >> 0) & 0x3F)
486 #define C_00B848_VGPRS 0xFFFFFFC0
487 #define S_00B848_SGPRS(x) (((x) & 0x0F) << 6)
488 #define G_00B848_SGPRS(x) (((x) >> 6) & 0x0F)
489 #define C_00B848_SGPRS 0xFFFFFC3F
490 #define S_00B848_PRIORITY(x) (((x) & 0x03) << 10)
491 #define G_00B848_PRIORITY(x) (((x) >> 10) & 0x03)
492 #define C_00B848_PRIORITY 0xFFFFF3FF
493 #define S_00B848_FLOAT_MODE(x) (((x) & 0xFF) << 12)
494 #define G_00B848_FLOAT_MODE(x) (((x) >> 12) & 0xFF)
495 #define C_00B848_FLOAT_MODE 0xFFF00FFF
496 #define S_00B848_PRIV(x) (((x) & 0x1) << 20)
497 #define G_00B848_PRIV(x) (((x) >> 20) & 0x1)
498 #define C_00B848_PRIV 0xFFEFFFFF
499 #define S_00B848_DX10_CLAMP(x) (((x) & 0x1) << 21)
500 #define G_00B848_DX10_CLAMP(x) (((x) >> 21) & 0x1)
501 #define C_00B848_DX10_CLAMP 0xFFDFFFFF
502 #define S_00B848_DEBUG_MODE(x) (((x) & 0x1) << 22)
503 #define G_00B848_DEBUG_MODE(x) (((x) >> 22) & 0x1)
504 #define C_00B848_DEBUG_MODE 0xFFBFFFFF
505 #define S_00B848_IEEE_MODE(x) (((x) & 0x1) << 23)
506 #define G_00B848_IEEE_MODE(x) (((x) >> 23) & 0x1)
507 #define C_00B848_IEEE_MODE 0xFF7FFFFF
508 
509 
510 // Helpers for setting FLOAT_MODE
511 #define FP_ROUND_ROUND_TO_NEAREST 0
512 #define FP_ROUND_ROUND_TO_INF 1
513 #define FP_ROUND_ROUND_TO_NEGINF 2
514 #define FP_ROUND_ROUND_TO_ZERO 3
515 
516 // Bits 3:0 control rounding mode. 1:0 control single precision, 3:2 double
517 // precision.
518 #define FP_ROUND_MODE_SP(x) ((x) & 0x3)
519 #define FP_ROUND_MODE_DP(x) (((x) & 0x3) << 2)
520 
521 #define FP_DENORM_FLUSH_IN_FLUSH_OUT 0
522 #define FP_DENORM_FLUSH_OUT 1
523 #define FP_DENORM_FLUSH_IN 2
524 #define FP_DENORM_FLUSH_NONE 3
525 
526 
527 // Bits 7:4 control denormal handling. 5:4 control single precision, 6:7 double
528 // precision.
529 #define FP_DENORM_MODE_SP(x) (((x) & 0x3) << 4)
530 #define FP_DENORM_MODE_DP(x) (((x) & 0x3) << 6)
531 
532 #define R_00B860_COMPUTE_TMPRING_SIZE 0x00B860
533 #define S_00B860_WAVESIZE(x) (((x) & 0x1FFF) << 12)
534 
535 #define R_0286E8_SPI_TMPRING_SIZE 0x0286E8
536 #define S_0286E8_WAVESIZE(x) (((x) & 0x1FFF) << 12)
537 
538 #define R_SPILLED_SGPRS 0x4
539 #define R_SPILLED_VGPRS 0x8
540 } // End namespace llvm
541 
542 #endif
This class represents lattice values for constants.
Definition: AllocatorList.h:24
static std::vector< std::pair< int, unsigned > > Swizzle(std::vector< std::pair< int, unsigned >> Src, R600InstrInfo::BankSwizzle Swz)
Operands with register or inline constant.
Definition: SIDefines.h:124
Operands with register or 32-bit immediate.
Definition: SIDefines.h:116
Operand with 32-bit immediate that uses the constant bus.
Definition: SIDefines.h:149