nir: Generalize nir_intrinsic_vote_eq
The SPIR-V extension wants us to be able to do an AllEqual on any vector or scalar type. This has two implications: 1) We need to be able to handle vectors so we switch the vote_eq intrinsics to be vectorized intrinsics. 2) We need to handle floats which have different behavior with respect to +-0, NaN, etc. than the integer variant so we need two variants. Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
This commit is contained in:
@@ -814,7 +814,7 @@ nir_visitor::visit(ir_call *ir)
|
||||
op = nir_intrinsic_vote_all;
|
||||
break;
|
||||
case ir_intrinsic_vote_eq:
|
||||
op = nir_intrinsic_vote_eq;
|
||||
op = nir_intrinsic_vote_ieq;
|
||||
break;
|
||||
case ir_intrinsic_ballot:
|
||||
op = nir_intrinsic_ballot;
|
||||
@@ -1163,8 +1163,9 @@ nir_visitor::visit(ir_call *ir)
|
||||
}
|
||||
case nir_intrinsic_vote_any:
|
||||
case nir_intrinsic_vote_all:
|
||||
case nir_intrinsic_vote_eq: {
|
||||
case nir_intrinsic_vote_ieq: {
|
||||
nir_ssa_dest_init(&instr->instr, &instr->dest, 1, 32, NULL);
|
||||
instr->num_components = 1;
|
||||
|
||||
ir_rvalue *value = (ir_rvalue *) ir->actual_parameters.get_head();
|
||||
instr->src[0] = nir_src_for_ssa(evaluate_rvalue(value));
|
||||
|
Reference in New Issue
Block a user