Home
last modified time | relevance | path

Searched refs:emit_alu_op2 (Results 1 – 2 of 2) sorted by relevance

/third_party/mesa3d/src/gallium/drivers/r600/sfn/
Dsfn_emitaluinstruction.cpp111 case nir_op_fadd: return emit_alu_op2(instr, op2_add); in do_emit()
129 case nir_op_feq32: return emit_alu_op2(instr, op2_sete_dx10); in do_emit()
130 case nir_op_feq: return emit_alu_op2(instr, op2_sete_dx10); in do_emit()
135 case nir_op_fge32: return emit_alu_op2(instr, op2_setge_dx10); in do_emit()
136 case nir_op_fge: return emit_alu_op2(instr, op2_setge_dx10); in do_emit()
139 case nir_op_flt32: return emit_alu_op2(instr, op2_setgt_dx10, op2_opt_reverse); in do_emit()
140 case nir_op_flt: return emit_alu_op2(instr, op2_setgt_dx10, op2_opt_reverse); in do_emit()
141 case nir_op_fmax: return emit_alu_op2(instr, op2_max_dx10); in do_emit()
142 case nir_op_fmin: return emit_alu_op2(instr, op2_min_dx10); in do_emit()
143 case nir_op_fmul: return emit_alu_op2(instr, op2_mul_ieee); in do_emit()
[all …]
Dsfn_emitaluinstruction.h58 bool emit_alu_op2(const nir_alu_instr& instr, EAluOp opcode, AluOp2Opts ops = op2_opt_none);