aco: support 32bit address in nir_load_smem_amd
authorQiang Yu <yuq825@gmail.com>
Fri, 14 Apr 2023 07:47:10 +0000 (15:47 +0800)
committerMarge Bot <emma+marge@anholt.net>
Wed, 19 Apr 2023 08:39:46 +0000 (08:39 +0000)
radeonsi uses 32bit address.

Reviewed-by: Rhys Perry <pendingchaos02@gmail.com>
Signed-off-by: Qiang Yu <yuq825@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/22525>

src/amd/compiler/aco_instruction_selection.cpp

index 7b685c3..0f09500 100644 (file)
@@ -7179,6 +7179,12 @@ visit_load_smem(isel_context* ctx, nir_intrinsic_instr* instr)
    Temp base = bld.as_uniform(get_ssa_temp(ctx, instr->src[0].ssa));
    Temp offset = bld.as_uniform(get_ssa_temp(ctx, instr->src[1].ssa));
 
+   /* If base address is 32bit, convert to 64bit with the high 32bit part. */
+   if (base.bytes() == 4) {
+      base = bld.pseudo(aco_opcode::p_create_vector, bld.def(s2),
+                        base, Operand::c32(ctx->options->address32_hi));
+   }
+
    aco_opcode opcode = aco_opcode::s_load_dword;
    unsigned size = 1;