nir/gather_info: Move setting uses_64bit out of the switch

Otherwise, as we add things to the switch, we're going to forget and add
some 64-bit op at some point in the future and it'll stop getting
flagged.  There's no reason why we can't do the check for derivatives.

Reviewed-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
Jason Ekstrand 2019-06-07 18:03:10 -05:00
parent 0e6cb481fa
commit 41ab92a327
1 changed files with 6 additions and 5 deletions

View File

@ -302,13 +302,14 @@ gather_alu_info(nir_alu_instr *instr, nir_shader *shader)
shader->info.uses_fddx_fddy = true;
break;
default:
shader->info.uses_64bit |= instr->dest.dest.ssa.bit_size == 64;
unsigned num_srcs = nir_op_infos[instr->op].num_inputs;
for (unsigned i = 0; i < num_srcs; i++) {
shader->info.uses_64bit |= nir_src_bit_size(instr->src[i].src) == 64;
}
break;
}
shader->info.uses_64bit |= instr->dest.dest.ssa.bit_size == 64;
unsigned num_srcs = nir_op_infos[instr->op].num_inputs;
for (unsigned i = 0; i < num_srcs; i++) {
shader->info.uses_64bit |= nir_src_bit_size(instr->src[i].src) == 64;
}
}
static void