Home
last modified time | relevance | path

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

/external/mesa3d/src/intel/compiler/
Dbrw_vec4_nir.cpp1276 inst = emit_math(SHADER_OPCODE_RCP, dst, op[0]); in nir_emit_alu()
1281 inst = emit_math(SHADER_OPCODE_EXP2, dst, op[0]); in nir_emit_alu()
1286 inst = emit_math(SHADER_OPCODE_LOG2, dst, op[0]); in nir_emit_alu()
1291 inst = emit_math(SHADER_OPCODE_SIN, dst, op[0]); in nir_emit_alu()
1296 inst = emit_math(SHADER_OPCODE_COS, dst, op[0]); in nir_emit_alu()
1303 emit_math(SHADER_OPCODE_INT_QUOTIENT, dst, op[0], op[1]); in nir_emit_alu()
1313 emit_math(SHADER_OPCODE_INT_REMAINDER, dst, op[0], op[1]); in nir_emit_alu()
1318 inst = emit_math(SHADER_OPCODE_INT_REMAINDER, dst, op[0], op[1]); in nir_emit_alu()
1351 inst = emit_math(SHADER_OPCODE_SQRT, dst, op[0]); in nir_emit_alu()
1356 inst = emit_math(SHADER_OPCODE_RSQ, dst, op[0]); in nir_emit_alu()
[all …]
Dbrw_vec4.h252 vec4_instruction *emit_math(enum opcode opcode, const dst_reg &dst, const src_reg &src0,
Dbrw_vec4_visitor.cpp347 vec4_visitor::emit_math(enum opcode opcode, in emit_math() function in brw::vec4_visitor
1169 emit_math(SHADER_OPCODE_RCP, ndc_w, pos_w); in emit_ndc_computation()