Home
last modified time | relevance | path

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

/external/swiftshader/third_party/subzero/src/
DIceAssemblerMIPS32.cpp443 emitCOP1Fcmp(Opcode, DoublePrecision, OpFs, OpFt, OperandMIPS32FCC::FCC0, in c_eq_d()
449 emitCOP1Fcmp(Opcode, SinglePrecision, OpFs, OpFt, OperandMIPS32FCC::FCC0, in c_eq_s()
455 emitCOP1Fcmp(Opcode, DoublePrecision, OpFs, OpFt, OperandMIPS32FCC::FCC0, in c_ole_d()
461 emitCOP1Fcmp(Opcode, SinglePrecision, OpFs, OpFt, OperandMIPS32FCC::FCC0, in c_ole_s()
467 emitCOP1Fcmp(Opcode, DoublePrecision, OpFs, OpFt, OperandMIPS32FCC::FCC0, in c_olt_d()
473 emitCOP1Fcmp(Opcode, SinglePrecision, OpFs, OpFt, OperandMIPS32FCC::FCC0, in c_olt_s()
479 emitCOP1Fcmp(Opcode, DoublePrecision, OpFs, OpFt, OperandMIPS32FCC::FCC0, in c_ueq_d()
485 emitCOP1Fcmp(Opcode, SinglePrecision, OpFs, OpFt, OperandMIPS32FCC::FCC0, in c_ueq_s()
491 emitCOP1Fcmp(Opcode, DoublePrecision, OpFs, OpFt, OperandMIPS32FCC::FCC0, in c_ule_d()
497 emitCOP1Fcmp(Opcode, SinglePrecision, OpFs, OpFt, OperandMIPS32FCC::FCC0, in c_ule_s()
[all …]
DIceInstMIPS32.h74 class OperandMIPS32FCC : public OperandMIPS32 {
75 OperandMIPS32FCC() = delete;
76 OperandMIPS32FCC(const OperandMIPS32FCC &) = delete;
77 OperandMIPS32FCC &operator=(const OperandMIPS32FCC &) = delete;
81 static OperandMIPS32FCC *create(Cfg *Func, OperandMIPS32FCC::FCC FCC) { in create()
82 return new (Func->allocate<OperandMIPS32FCC>()) OperandMIPS32FCC(FCC); in create()
85 OperandMIPS32FCC::FCC getFCC() const { return FpCondCode; } in getFCC()
106 OperandMIPS32FCC(OperandMIPS32FCC::FCC CC) in OperandMIPS32FCC() function
109 const OperandMIPS32FCC::FCC FpCondCode;
DIceTargetLoweringMIPS32.cpp3989 Operand *FCC0 = OperandMIPS32FCC::create(getFunc(), OperandMIPS32FCC::FCC0); in lowerFcmp()