1 //===-- R600Defines.h - R600 Helper Macros ----------------------*- C++ -*-===//
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
8 //===----------------------------------------------------------------------===//
10 #ifndef LLVM_LIB_TARGET_AMDGPU_R600DEFINES_H
11 #define LLVM_LIB_TARGET_AMDGPU_R600DEFINES_H
14 #define MO_FLAG_CLAMP (1 << 0)
15 #define MO_FLAG_NEG (1 << 1)
16 #define MO_FLAG_ABS (1 << 2)
17 #define MO_FLAG_MASK (1 << 3)
18 #define MO_FLAG_PUSH (1 << 4)
19 #define MO_FLAG_NOT_LAST (1 << 5)
20 #define MO_FLAG_LAST (1 << 6)
21 #define NUM_MO_FLAGS 7
23 /// Helper for getting the operand index for the instruction flags
25 #define GET_FLAG_OPERAND_IDX(Flags) (((Flags) >> 7) & 0x3)
27 namespace R600_InstFlag
{
29 TRANS_ONLY
= (1 << 0),
36 //FlagOperand bits 7, 8
37 NATIVE_OPERANDS
= (1 << 9),
45 IS_EXPORT
= (1 << 17),
50 #define HAS_NATIVE_OPERANDS(Flags) ((Flags) & R600_InstFlag::NATIVE_OPERANDS)
52 /// Defines for extracting register information from register encoding
53 #define HW_REG_MASK 0x1ff
54 #define HW_CHAN_SHIFT 9
56 #define GET_REG_CHAN(reg) ((reg) >> HW_CHAN_SHIFT)
57 #define GET_REG_INDEX(reg) ((reg) & HW_REG_MASK)
59 #define IS_VTX(desc) ((desc).TSFlags & R600_InstFlag::VTX_INST)
60 #define IS_TEX(desc) ((desc).TSFlags & R600_InstFlag::TEX_INST)
140 //===----------------------------------------------------------------------===//
141 // Config register definitions
142 //===----------------------------------------------------------------------===//
144 #define R_02880C_DB_SHADER_CONTROL 0x02880C
145 #define S_02880C_KILL_ENABLE(x) (((x) & 0x1) << 6)
147 // These fields are the same for all shader types and families.
148 #define S_NUM_GPRS(x) (((x) & 0xFF) << 0)
149 #define S_STACK_SIZE(x) (((x) & 0xFF) << 8)
150 //===----------------------------------------------------------------------===//
151 // R600, R700 Registers
152 //===----------------------------------------------------------------------===//
154 #define R_028850_SQ_PGM_RESOURCES_PS 0x028850
155 #define R_028868_SQ_PGM_RESOURCES_VS 0x028868
157 //===----------------------------------------------------------------------===//
158 // Evergreen, Northern Islands Registers
159 //===----------------------------------------------------------------------===//
161 #define R_028844_SQ_PGM_RESOURCES_PS 0x028844
162 #define R_028860_SQ_PGM_RESOURCES_VS 0x028860
163 #define R_028878_SQ_PGM_RESOURCES_GS 0x028878
164 #define R_0288D4_SQ_PGM_RESOURCES_LS 0x0288d4
166 #define R_0288E8_SQ_LDS_ALLOC 0x0288E8