Searched refs:EAluOp (Results 1 – 13 of 13) sorted by relevance
/third_party/mesa3d/src/gallium/drivers/r600/sfn/ |
D | sfn_emitaluinstruction.h | 57 bool emit_alu_op1(const nir_alu_instr& instr, EAluOp opcode, const AluOpFlags &flags = 0); 58 bool emit_alu_op2(const nir_alu_instr& instr, EAluOp opcode, AluOp2Opts ops = op2_opt_none); 60 bool emit_alu_trans_op2(const nir_alu_instr& instr, EAluOp opcode); 61 bool emit_alu_cm_trig(const nir_alu_instr& instr, EAluOp opcode); 65 bool emit_alu_op2_int(const nir_alu_instr& instr, EAluOp opcode, AluOp2Opts ops = op2_opt_none); 67 …bool emit_alu_op3(const nir_alu_instr& instr, EAluOp opcode, std::array<uint8_t, 3> reorder={0,1,2… 68 bool emit_alu_trans_op1(const nir_alu_instr& instr, EAluOp opcode, bool absolute = false); 71 bool emit_alu_i2orf2_b1(const nir_alu_instr& instr, EAluOp op); 74 bool emit_any_all_icomp(const nir_alu_instr& instr, EAluOp op, unsigned nc, bool all); 77 bool emit_any_all_fcomp(const nir_alu_instr& instr, EAluOp op, unsigned nc, bool all); [all …]
|
D | sfn_instruction_alu.h | 87 AluInstruction(EAluOp opcode); 88 AluInstruction(EAluOp opcode, PValue dest, 92 AluInstruction(EAluOp opcode, PValue dest, PValue src0, 95 AluInstruction(EAluOp opcode, PValue dest, 99 AluInstruction(EAluOp opcode, PValue dest, PValue src0, PValue src1, 107 EAluOp opcode() const {return m_opcode;} in opcode() 132 EAluOp m_opcode;
|
D | sfn_instruction_alu.cpp | 39 AluInstruction::AluInstruction(EAluOp opcode): in AluInstruction() 50 AluInstruction::AluInstruction(EAluOp opcode, PValue dest, in AluInstruction() 73 AluInstruction::AluInstruction(EAluOp opcode, PValue dest, PValue src0, in AluInstruction() 79 AluInstruction::AluInstruction(EAluOp opcode, PValue dest, in AluInstruction() 86 AluInstruction::AluInstruction(EAluOp opcode, PValue dest, PValue src0, in AluInstruction()
|
D | sfn_shader_fragment.h | 61 …bool load_interpolated_one_comp(GPRVector &dest, ShaderInput& io, const Interpolator& ip, EAluOp o… 62 …bool load_interpolated_two_comp(GPRVector &dest, ShaderInput& io, const Interpolator& ip,EAluOp op… 64 … ShaderInput& io, const Interpolator& ip, EAluOp op, int start, int comp);
|
D | sfn_emitaluinstruction.cpp | 365 bool EmitAluInstruction::emit_alu_op1(const nir_alu_instr& instr, EAluOp opcode, in emit_alu_op1() 410 bool EmitAluInstruction::emit_alu_trans_op1(const nir_alu_instr& instr, EAluOp opcode, in emit_alu_trans_op1() 445 bool EmitAluInstruction::emit_alu_cm_trig(const nir_alu_instr& instr, EAluOp opcode) in emit_alu_cm_trig() 470 bool EmitAluInstruction::emit_alu_f2i32_or_u32(const nir_alu_instr& instr, EAluOp op) in emit_alu_f2i32_or_u32() 652 bool EmitAluInstruction::emit_alu_i2orf2_b1(const nir_alu_instr& instr, EAluOp op) in emit_alu_i2orf2_b1() 686 bool EmitAluInstruction::emit_any_all_icomp(const nir_alu_instr& instr, EAluOp op, unsigned nc, boo… in emit_any_all_icomp() 694 EAluOp combine = all ? op2_and_int : op2_or_int; in emit_any_all_icomp() 727 bool EmitAluInstruction::emit_any_all_fcomp(const nir_alu_instr& instr, EAluOp op, unsigned nc, boo… in emit_any_all_fcomp() 782 bool EmitAluInstruction::emit_any_all_fcomp2(const nir_alu_instr& instr, EAluOp op, bool all) in emit_any_all_fcomp2() 813 bool EmitAluInstruction::emit_alu_trans_op2(const nir_alu_instr& instr, EAluOp opcode) in emit_alu_trans_op2() [all …]
|
D | sfn_alu_defines.h | 36 enum EAluOp { enum 269 extern const std::map<EAluOp, AluOp> alu_ops;
|
D | sfn_emitinstruction.h | 70 bool emit_instruction(EAluOp opcode, PValue dest,
|
D | sfn_emitinstruction.cpp | 88 bool EmitInstruction::emit_instruction(EAluOp opcode, PValue dest, in emit_instruction()
|
D | sfn_shader_base.h | 70 bool emit_instruction(EAluOp opcode, PValue dest,
|
D | sfn_shader_fragment.cpp | 855 … ShaderInput& io, const Interpolator& ip, EAluOp op) in load_interpolated_one_comp() 875 … const Interpolator& ip, EAluOp op, int writemask) in load_interpolated_two_comp() 893 … EAluOp op, UNUSED int start, int comp) in load_interpolated_two_comp_for_one()
|
D | sfn_ir_to_assembly.cpp | 197 extern const std::map<EAluOp, int> opcode_map; 1090 EAluOp idxop = idx ? op1_set_cf_idx1 : op1_set_cf_idx0; in emit_index_reg() 1226 const std::map<EAluOp, int> opcode_map = {
|
D | sfn_alu_defines.cpp | 31 const std::map<EAluOp, AluOp> alu_ops = {
|
D | sfn_shader_base.cpp | 1112 bool ShaderFromNirProcessor::emit_instruction(EAluOp opcode, PValue dest, in emit_instruction()
|