LLVM API Documentation
Go to the documentation of this file.
11 #ifndef R600DEFINES_H_
12 #define R600DEFINES_H_
17 #define MO_FLAG_CLAMP (1 << 0)
18 #define MO_FLAG_NEG (1 << 1)
19 #define MO_FLAG_ABS (1 << 2)
20 #define MO_FLAG_MASK (1 << 3)
21 #define MO_FLAG_PUSH (1 << 4)
22 #define MO_FLAG_NOT_LAST (1 << 5)
23 #define MO_FLAG_LAST (1 << 6)
24 #define NUM_MO_FLAGS 7
28 #define GET_FLAG_OPERAND_IDX(Flags) (((Flags) >> 7) & 0x3)
30 namespace R600_InstFlag {
53 #define HAS_NATIVE_OPERANDS(Flags) ((Flags) & R600_InstFlag::NATIVE_OPERANDS)
56 #define HW_REG_MASK 0x1ff
57 #define HW_CHAN_SHIFT 9
59 #define GET_REG_CHAN(reg) ((reg) >> HW_CHAN_SHIFT)
60 #define GET_REG_INDEX(reg) ((reg) & HW_REG_MASK)
62 #define IS_VTX(desc) ((desc).TSFlags & R600_InstFlag::VTX_INST)
63 #define IS_TEX(desc) ((desc).TSFlags & R600_InstFlag::TEX_INST)
147 #define R_02880C_DB_SHADER_CONTROL 0x02880C
148 #define S_02880C_KILL_ENABLE(x) (((x) & 0x1) << 6)
151 #define S_NUM_GPRS(x) (((x) & 0xFF) << 0)
152 #define S_STACK_SIZE(x) (((x) & 0xFF) << 8)
157 #define R_028850_SQ_PGM_RESOURCES_PS 0x028850
158 #define R_028868_SQ_PGM_RESOURCES_VS 0x028868
164 #define R_028844_SQ_PGM_RESOURCES_PS 0x028844
165 #define R_028860_SQ_PGM_RESOURCES_VS 0x028860
166 #define R_028878_SQ_PGM_RESOURCES_GS 0x028878
167 #define R_0288D4_SQ_PGM_RESOURCES_LS 0x0288d4
169 #define R_0288E8_SQ_LDS_ALLOC 0x0288E8
171 #endif // R600DEFINES_H_