Home
last modified time | relevance | path

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

/third_party/mesa3d/src/gallium/drivers/r600/sfn/
Dsfn_instr_alu.cpp1110 static bool emit_alu_op3(const nir_alu_instr& alu, EAluOp opcode, Shader& shader,
1290 case nir_op_bitfield_select: return emit_alu_op3(*alu, op3_bfi_int, shader); in from_nir()
1304 case nir_op_b32csel: return emit_alu_op3(*alu, op3_cnde_int, shader, {0, 2, 1}); in from_nir()
1310 case nir_op_fcsel: return emit_alu_op3(*alu, op3_cnde, shader, {0, 2, 1}); in from_nir()
1311 case nir_op_fcsel_ge: return emit_alu_op3(*alu, op3_cndge, shader, {0, 1, 2}); in from_nir()
1312 case nir_op_fcsel_gt: return emit_alu_op3(*alu, op3_cndgt, shader, {0, 1, 2}); in from_nir()
1350 case nir_op_ibfe: return emit_alu_op3(*alu, op3_bfe_int, shader); in from_nir()
1351 case nir_op_i32csel_ge: return emit_alu_op3(*alu, op3_cndge_int, shader, {0, 1, 2}); in from_nir()
1352 case nir_op_i32csel_gt: return emit_alu_op3(*alu, op3_cndgt_int, shader, {0, 1, 2}); in from_nir()
1375 case nir_op_ubfe: return emit_alu_op3(*alu, op3_bfe_uint, shader); in from_nir()
[all …]