nir: Drop nir_alu_dest

Instead, we replace it directly with nir_def.  We could replace it with
nir_dest but the next commit gets rid of that so this avoids unnecessary
churn.  Most of this commit was generated by sed:

   sed -i -e 's/dest.dest.ssa/def/g' src/**/*.h src/**/*.c src/**/*.cpp

There were a few manual fixups required in the nir_legacy.c and
nir_from_ssa.c as nir_legacy_reg and nir_parallel_copy_entry both have a
similar pattern.

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 11:43:35 -05:00
committed by Marge Bot
parent 977999d836
commit 6c1d32581a
110 changed files with 676 additions and 685 deletions

View File

@@ -1225,9 +1225,9 @@ static agx_instr *
agx_emit_alu(agx_builder *b, nir_alu_instr *instr)
{
unsigned srcs = nir_op_infos[instr->op].num_inputs;
unsigned sz = instr->dest.dest.ssa.bit_size;
unsigned sz = instr->def.bit_size;
unsigned src_sz = srcs ? nir_src_bit_size(instr->src[0].src) : 0;
ASSERTED unsigned comps = instr->dest.dest.ssa.num_components;
ASSERTED unsigned comps = instr->def.num_components;
assert(comps == 1 || nir_op_is_vec(instr->op));
assert(sz == 1 ||
@@ -1235,7 +1235,7 @@ agx_emit_alu(agx_builder *b, nir_alu_instr *instr)
sz == 8) ||
sz == 16 || sz == 32 || sz == 64);
agx_index dst = agx_def_index(&instr->dest.dest.ssa);
agx_index dst = agx_def_index(&instr->def);
agx_index s0 = srcs > 0 ? agx_alu_src_index(b, instr->src[0]) : agx_null();
agx_index s1 = srcs > 1 ? agx_alu_src_index(b, instr->src[1]) : agx_null();
agx_index s2 = srcs > 2 ? agx_alu_src_index(b, instr->src[2]) : agx_null();
@@ -2461,7 +2461,7 @@ lower_bit_size_callback(const nir_instr *instr, UNUSED void *_)
* implemented natively.
*/
nir_alu_instr *alu = nir_instr_as_alu(instr);
if (alu->dest.dest.ssa.bit_size == 8 && !is_conversion_to_8bit(alu->op))
if (alu->def.bit_size == 8 && !is_conversion_to_8bit(alu->op))
return 16;
else
return 0;