nir: use num_components wrappers in print/validate.
These wrappers were introduces, so start using them. Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
This commit is contained in:
@@ -199,9 +199,7 @@ print_alu_src(nir_alu_instr *instr, unsigned src, print_state *state)
|
||||
}
|
||||
}
|
||||
|
||||
unsigned live_channels = instr->src[src].src.is_ssa
|
||||
? instr->src[src].src.ssa->num_components
|
||||
: instr->src[src].src.reg.reg->num_components;
|
||||
unsigned live_channels = nir_src_num_components(instr->src[src].src);
|
||||
|
||||
if (print_swizzle || used_channels != live_channels) {
|
||||
fprintf(fp, ".");
|
||||
|
@@ -228,15 +228,9 @@ validate_alu_src(nir_alu_instr *instr, unsigned index, validate_state *state)
|
||||
{
|
||||
nir_alu_src *src = &instr->src[index];
|
||||
|
||||
unsigned num_components;
|
||||
if (src->src.is_ssa) {
|
||||
num_components = src->src.ssa->num_components;
|
||||
} else {
|
||||
if (src->src.reg.reg->is_packed)
|
||||
unsigned num_components = nir_src_num_components(src->src);
|
||||
if (!src->src.is_ssa && src->src.reg.reg->is_packed)
|
||||
num_components = 4; /* can't check anything */
|
||||
else
|
||||
num_components = src->src.reg.reg->num_components;
|
||||
}
|
||||
for (unsigned i = 0; i < 4; i++) {
|
||||
validate_assert(state, src->swizzle[i] < 4);
|
||||
|
||||
@@ -333,9 +327,7 @@ validate_alu_dest(nir_alu_instr *instr, validate_state *state)
|
||||
{
|
||||
nir_alu_dest *dest = &instr->dest;
|
||||
|
||||
unsigned dest_size =
|
||||
dest->dest.is_ssa ? dest->dest.ssa.num_components
|
||||
: dest->dest.reg.reg->num_components;
|
||||
unsigned dest_size = nir_dest_num_components(dest->dest);
|
||||
bool is_packed = !dest->dest.is_ssa && dest->dest.reg.reg->is_packed;
|
||||
/*
|
||||
* validate that the instruction doesn't write to components not in the
|
||||
|
Reference in New Issue
Block a user