ac: fix WAITCNT flags for GFX9
Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
This commit is contained in:
@@ -43,6 +43,12 @@ enum {
|
||||
AC_CONST_32BIT_ADDR_SPACE = 6, /* same as CONST, but the pointer type has 32 bits */
|
||||
};
|
||||
|
||||
/* Combine these with & instead of |. */
|
||||
#define NOOP_WAITCNT 0xcf7f
|
||||
#define LGKM_CNT 0xc07f
|
||||
#define EXP_CNT 0xcf0f
|
||||
#define VM_CNT 0x0f70 /* On GFX9, vmcnt has 6 bits in [0:3] and [14:15] */
|
||||
|
||||
struct ac_llvm_flow;
|
||||
|
||||
struct ac_llvm_context {
|
||||
|
@@ -2537,10 +2537,6 @@ static LLVMValueRef visit_image_size(struct ac_nir_context *ctx,
|
||||
return res;
|
||||
}
|
||||
|
||||
#define NOOP_WAITCNT 0xf7f
|
||||
#define LGKM_CNT 0x07f
|
||||
#define VM_CNT 0xf70
|
||||
|
||||
static void emit_membar(struct ac_llvm_context *ac,
|
||||
const nir_intrinsic_instr *instr)
|
||||
{
|
||||
|
@@ -288,11 +288,6 @@ void si_llvm_emit_store(struct lp_build_tgsi_context *bld_base,
|
||||
unsigned index,
|
||||
LLVMValueRef dst[4]);
|
||||
|
||||
/* Combine these with & instead of |. */
|
||||
#define NOOP_WAITCNT 0xf7f
|
||||
#define LGKM_CNT 0x07f
|
||||
#define VM_CNT 0xf70
|
||||
|
||||
LLVMValueRef si_get_indirect_index(struct si_shader_context *ctx,
|
||||
const struct tgsi_ind_register *ind,
|
||||
unsigned addr_mul, int rel_index);
|
||||
|
Reference in New Issue
Block a user