etnaviv: Stop passing around nir_dest

We want to get rid of nir_dest so back-ends need to stop storing it
in structs and passing it through helpers.

Acked-by: Alyssa Rosenzweig <alyssa@rosenzweig.io>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24674>
This commit is contained in:
Faith Ekstrand
2023-08-14 09:22:30 -05:00
committed by Marge Bot
parent 11af0c1f1b
commit 734b15186b
4 changed files with 51 additions and 52 deletions

View File

@@ -444,16 +444,16 @@ vec_dest_has_swizzle(nir_alu_instr *vec, nir_def *ssa)
return false; return false;
} }
/* get allocated dest register for nir_dest /* get allocated dest register for nir_def
* *p_swiz tells how the components need to be placed into register * *p_swiz tells how the components need to be placed into register
*/ */
static hw_dst static hw_dst
ra_dest(struct etna_compile *c, nir_dest *dest, unsigned *p_swiz) ra_def(struct etna_compile *c, nir_def *def, unsigned *p_swiz)
{ {
unsigned swiz = INST_SWIZ_IDENTITY, mask = 0xf; unsigned swiz = INST_SWIZ_IDENTITY, mask = 0xf;
dest = real_dest(dest, &swiz, &mask); def = real_def(def, &swiz, &mask);
unsigned r = ra_get_node_reg(c->g, c->live_map[dest_index(c->impl, dest)]); unsigned r = ra_get_node_reg(c->g, c->live_map[def_index(c->impl, def)]);
unsigned t = reg_get_type(r); unsigned t = reg_get_type(r);
*p_swiz = inst_swiz_compose(swiz, reg_dst_swiz[t]); *p_swiz = inst_swiz_compose(swiz, reg_dst_swiz[t]);
@@ -477,7 +477,7 @@ emit_alu(struct etna_compile *c, nir_alu_instr * alu)
assert(!(alu->op >= nir_op_vec2 && alu->op <= nir_op_vec4)); assert(!(alu->op >= nir_op_vec2 && alu->op <= nir_op_vec4));
unsigned dst_swiz; unsigned dst_swiz;
hw_dst dst = ra_dest(c, &alu->dest.dest, &dst_swiz); hw_dst dst = ra_def(c, &alu->dest.dest.ssa, &dst_swiz);
switch (alu->op) { switch (alu->op) {
case nir_op_fdot2: case nir_op_fdot2:
@@ -523,7 +523,7 @@ static void
emit_tex(struct etna_compile *c, nir_tex_instr * tex) emit_tex(struct etna_compile *c, nir_tex_instr * tex)
{ {
unsigned dst_swiz; unsigned dst_swiz;
hw_dst dst = ra_dest(c, &tex->dest, &dst_swiz); hw_dst dst = ra_def(c, &tex->dest.ssa, &dst_swiz);
nir_src *coord = NULL, *src1 = NULL, *src2 = NULL; nir_src *coord = NULL, *src1 = NULL, *src2 = NULL;
for (unsigned i = 0; i < tex->num_srcs; i++) { for (unsigned i = 0; i < tex->num_srcs; i++) {
@@ -568,7 +568,7 @@ emit_intrinsic(struct etna_compile *c, nir_intrinsic_instr * intr)
break; break;
case nir_intrinsic_load_uniform: { case nir_intrinsic_load_uniform: {
unsigned dst_swiz; unsigned dst_swiz;
struct etna_inst_dst dst = ra_dest(c, &intr->dest, &dst_swiz); struct etna_inst_dst dst = ra_def(c, &intr->dest.ssa, &dst_swiz);
/* TODO: rework so extra MOV isn't required, load up to 4 addresses at once */ /* TODO: rework so extra MOV isn't required, load up to 4 addresses at once */
emit_inst(c, &(struct etna_inst) { emit_inst(c, &(struct etna_inst) {
@@ -595,7 +595,7 @@ emit_intrinsic(struct etna_compile *c, nir_intrinsic_instr * intr)
emit_inst(c, &(struct etna_inst) { emit_inst(c, &(struct etna_inst) {
.opcode = INST_OPCODE_LOAD, .opcode = INST_OPCODE_LOAD,
.type = INST_TYPE_U32, .type = INST_TYPE_U32,
.dst = ra_dest(c, &intr->dest, &dst_swiz), .dst = ra_def(c, &intr->dest.ssa, &dst_swiz),
.src[0] = get_src(c, &intr->src[1]), .src[0] = get_src(c, &intr->src[1]),
.src[1] = const_src(c, &CONST_VAL(ETNA_UNIFORM_UBO0_ADDR + idx, 0), 1), .src[1] = const_src(c, &CONST_VAL(ETNA_UNIFORM_UBO0_ADDR + idx, 0), 1),
}); });

View File

@@ -155,11 +155,11 @@ src_index(nir_function_impl *impl, nir_src *src)
return src->ssa->index; return src->ssa->index;
} }
/* get unique ssa/reg index for nir_dest */ /* get unique ssa/reg index for nir_def */
static inline unsigned static inline unsigned
dest_index(nir_function_impl *impl, nir_dest *dest) def_index(nir_function_impl *impl, nir_def *def)
{ {
nir_intrinsic_instr *store = nir_store_reg_for_def(&dest->ssa); nir_intrinsic_instr *store = nir_store_reg_for_def(def);
if (store) { if (store) {
nir_def *reg = store->src[1].ssa; nir_def *reg = store->src[1].ssa;
@@ -170,20 +170,20 @@ dest_index(nir_function_impl *impl, nir_dest *dest)
return reg->index; return reg->index;
} }
return dest->ssa.index; return def->index;
} }
static inline void static inline void
update_swiz_mask(nir_alu_instr *alu, nir_dest *dest, unsigned *swiz, unsigned *mask) update_swiz_mask(nir_alu_instr *alu, nir_def *def, unsigned *swiz, unsigned *mask)
{ {
if (!swiz) if (!swiz)
return; return;
bool is_vec = dest != NULL; bool is_vec = def != NULL;
unsigned swizzle = 0, write_mask = 0; unsigned swizzle = 0, write_mask = 0;
for (unsigned i = 0; i < nir_dest_num_components(alu->dest.dest); i++) { for (unsigned i = 0; i < def->num_components; i++) {
/* src is different (only check for vecN) */ /* src is different (only check for vecN) */
if (is_vec && alu->src[i].src.ssa != &dest->ssa) if (is_vec && alu->src[i].src.ssa != def)
continue; continue;
unsigned src_swiz = is_vec ? alu->src[i].swizzle[0] : alu->src[0].swizzle[i]; unsigned src_swiz = is_vec ? alu->src[i].swizzle[0] : alu->src[0].swizzle[i];
@@ -196,20 +196,20 @@ update_swiz_mask(nir_alu_instr *alu, nir_dest *dest, unsigned *swiz, unsigned *m
*mask = write_mask; *mask = write_mask;
} }
static nir_dest * static nir_def *
real_dest(nir_dest *dest, unsigned *swiz, unsigned *mask) real_def(nir_def *def, unsigned *swiz, unsigned *mask)
{ {
if (!dest) if (!def)
return dest; return def;
bool can_bypass_src = !nir_def_used_by_if(&dest->ssa); bool can_bypass_src = !nir_def_used_by_if(def);
nir_instr *p_instr = dest->ssa.parent_instr; nir_instr *p_instr = def->parent_instr;
/* if used by a vecN, the "real" destination becomes the vecN destination /* if used by a vecN, the "real" destination becomes the vecN destination
* lower_alu guarantees that values used by a vecN are only used by that vecN * lower_alu guarantees that values used by a vecN are only used by that vecN
* we can apply the same logic to movs in a some cases too * we can apply the same logic to movs in a some cases too
*/ */
nir_foreach_use(use_src, &dest->ssa) { nir_foreach_use(use_src, def) {
nir_instr *instr = use_src->parent_instr; nir_instr *instr = use_src->parent_instr;
/* src bypass check: for now only deal with tex src mov case /* src bypass check: for now only deal with tex src mov case
@@ -236,22 +236,21 @@ real_dest(nir_dest *dest, unsigned *swiz, unsigned *mask)
case nir_op_vec2: case nir_op_vec2:
case nir_op_vec3: case nir_op_vec3:
case nir_op_vec4: case nir_op_vec4:
assert(!nir_def_used_by_if(&dest->ssa)); assert(!nir_def_used_by_if(def));
nir_foreach_use(use_src, &dest->ssa) nir_foreach_use(use_src, def)
assert(use_src->parent_instr == instr); assert(use_src->parent_instr == instr);
update_swiz_mask(alu, dest, swiz, mask); update_swiz_mask(alu, def, swiz, mask);
break; break;
case nir_op_mov: { case nir_op_mov: {
switch (dest->ssa.parent_instr->type) { switch (def->parent_instr->type) {
case nir_instr_type_alu: case nir_instr_type_alu:
case nir_instr_type_tex: case nir_instr_type_tex:
break; break;
default: default:
continue; continue;
} }
if (nir_def_used_by_if(&dest->ssa) || if (nir_def_used_by_if(def) || list_length(&def->uses) > 1)
list_length(&dest->ssa.uses) > 1)
continue; continue;
update_swiz_mask(alu, NULL, swiz, mask); update_swiz_mask(alu, NULL, swiz, mask);
@@ -263,7 +262,7 @@ real_dest(nir_dest *dest, unsigned *swiz, unsigned *mask)
assert(!(instr->pass_flags & BYPASS_SRC)); assert(!(instr->pass_flags & BYPASS_SRC));
instr->pass_flags |= BYPASS_DST; instr->pass_flags |= BYPASS_DST;
return real_dest(&alu->dest.dest, swiz, mask); return real_def(&alu->dest.dest.ssa, swiz, mask);
} }
if (can_bypass_src && !(p_instr->pass_flags & BYPASS_DST)) { if (can_bypass_src && !(p_instr->pass_flags & BYPASS_DST)) {
@@ -271,21 +270,21 @@ real_dest(nir_dest *dest, unsigned *swiz, unsigned *mask)
return NULL; return NULL;
} }
return dest; return def;
} }
/* if instruction dest needs a register, return nir_dest for it */ /* if instruction dest needs a register, return nir_def for it */
static inline nir_dest * static inline nir_def *
dest_for_instr(nir_instr *instr) def_for_instr(nir_instr *instr)
{ {
nir_dest *dest = NULL; nir_def *def = NULL;
switch (instr->type) { switch (instr->type) {
case nir_instr_type_alu: case nir_instr_type_alu:
dest = &nir_instr_as_alu(instr)->dest.dest; def = &nir_instr_as_alu(instr)->dest.dest.ssa;
break; break;
case nir_instr_type_tex: case nir_instr_type_tex:
dest = &nir_instr_as_tex(instr)->dest; def = &nir_instr_as_tex(instr)->dest.ssa;
break; break;
case nir_instr_type_intrinsic: { case nir_instr_type_intrinsic: {
nir_intrinsic_instr *intr = nir_instr_as_intrinsic(instr); nir_intrinsic_instr *intr = nir_instr_as_intrinsic(instr);
@@ -295,19 +294,19 @@ dest_for_instr(nir_instr *instr)
intr->intrinsic == nir_intrinsic_load_instance_id || intr->intrinsic == nir_intrinsic_load_instance_id ||
intr->intrinsic == nir_intrinsic_load_texture_scale || intr->intrinsic == nir_intrinsic_load_texture_scale ||
intr->intrinsic == nir_intrinsic_load_texture_size_etna) intr->intrinsic == nir_intrinsic_load_texture_size_etna)
dest = &intr->dest; def = &intr->dest.ssa;
} break; } break;
case nir_instr_type_deref: case nir_instr_type_deref:
return NULL; return NULL;
default: default:
break; break;
} }
return real_dest(dest, NULL, NULL); return real_def(def, NULL, NULL);
} }
struct live_def { struct live_def {
nir_instr *instr; nir_instr *instr;
nir_dest *dest; /* cached dest_for_instr */ nir_def *def; /* cached def_for_instr */
unsigned live_start, live_end; /* live range */ unsigned live_start, live_end; /* live range */
}; };

View File

@@ -130,16 +130,16 @@ etna_live_defs(nir_function_impl *impl, struct live_def *defs, unsigned *live_ma
nir_foreach_block(block, impl) { nir_foreach_block(block, impl) {
block_live_index[block->index] = state.num_defs; block_live_index[block->index] = state.num_defs;
nir_foreach_instr(instr, block) { nir_foreach_instr(instr, block) {
nir_dest *dest = dest_for_instr(instr); nir_def *def = def_for_instr(instr);
if (!dest) if (!def)
continue; continue;
unsigned idx = dest_index(impl, dest); unsigned idx = def_index(impl, def);
/* register is already in defs */ /* register is already in defs */
if (live_map[idx] != ~0u) if (live_map[idx] != ~0u)
continue; continue;
defs[state.num_defs] = (struct live_def) {instr, dest, state.num_defs, 0}; defs[state.num_defs] = (struct live_def) {instr, def, state.num_defs, 0};
/* input live from the start */ /* input live from the start */
if (instr->type == nir_instr_type_intrinsic) { if (instr->type == nir_instr_type_intrinsic) {

View File

@@ -147,8 +147,8 @@ etna_ra_assign(struct etna_compile *c, nir_shader *shader)
/* set classes from num_components */ /* set classes from num_components */
for (unsigned i = 0; i < num_nodes; i++) { for (unsigned i = 0; i < num_nodes; i++) {
nir_instr *instr = defs[i].instr; nir_instr *instr = defs[i].instr;
nir_dest *dest = defs[i].dest; nir_def *def = defs[i].def;
unsigned comp = nir_dest_num_components(*dest) - 1; unsigned comp = def->num_components - 1;
if (instr->type == nir_instr_type_alu && if (instr->type == nir_instr_type_alu &&
c->specs->has_new_transcendentals) { c->specs->has_new_transcendentals) {
@@ -168,10 +168,10 @@ etna_ra_assign(struct etna_compile *c, nir_shader *shader)
nir_intrinsic_instr *intr = nir_instr_as_intrinsic(instr); nir_intrinsic_instr *intr = nir_instr_as_intrinsic(instr);
/* can't have dst swizzle or sparse writemask on UBO loads */ /* can't have dst swizzle or sparse writemask on UBO loads */
if (intr->intrinsic == nir_intrinsic_load_ubo) { if (intr->intrinsic == nir_intrinsic_load_ubo) {
assert(dest == &intr->dest); assert(def == &intr->dest.ssa);
if (dest->ssa.num_components == 2) if (def->num_components == 2)
comp = REG_CLASS_VIRT_VEC2C; comp = REG_CLASS_VIRT_VEC2C;
if (dest->ssa.num_components == 3) if (def->num_components == 3)
comp = REG_CLASS_VIRT_VEC3C; comp = REG_CLASS_VIRT_VEC3C;
} }
} }
@@ -184,7 +184,7 @@ etna_ra_assign(struct etna_compile *c, nir_shader *shader)
if (instr->type != nir_instr_type_intrinsic) if (instr->type != nir_instr_type_intrinsic)
continue; continue;
nir_dest *dest = dest_for_instr(instr); nir_def *def = def_for_instr(instr);
nir_intrinsic_instr *intr = nir_instr_as_intrinsic(instr); nir_intrinsic_instr *intr = nir_instr_as_intrinsic(instr);
unsigned reg; unsigned reg;
@@ -210,7 +210,7 @@ etna_ra_assign(struct etna_compile *c, nir_shader *shader)
REG_TYPE_VIRT_VEC2_XY, REG_TYPE_VIRT_VEC2_XY,
REG_TYPE_VIRT_VEC3_XYZ, REG_TYPE_VIRT_VEC3_XYZ,
REG_TYPE_VEC4, REG_TYPE_VEC4,
}[nir_dest_num_components(*dest) - 1]; }[def->num_components - 1];
break; break;
case nir_intrinsic_load_instance_id: case nir_intrinsic_load_instance_id:
reg = c->variant->infile.num_reg * NUM_REG_TYPES + REG_TYPE_VIRT_SCALAR_Y; reg = c->variant->infile.num_reg * NUM_REG_TYPES + REG_TYPE_VIRT_SCALAR_Y;
@@ -219,7 +219,7 @@ etna_ra_assign(struct etna_compile *c, nir_shader *shader)
continue; continue;
} }
ra_set_node_reg(g, live_map[dest_index(impl, dest)], reg); ra_set_node_reg(g, live_map[def_index(impl, def)], reg);
} }
} }