Lines Matching defs:CmpLHS
6420 Register CmpLHS, CmpRHS;
6423 m_GFCmp(m_Pred(Pred), m_Reg(CmpLHS), m_Reg(CmpRHS)))) ||
6427 computeRetValAgainstNaN(CmpLHS, CmpRHS, CmpInst::isOrdered(Pred));
6430 if (TrueVal == CmpRHS && FalseVal == CmpLHS) {
6431 std::swap(CmpLHS, CmpRHS);
6438 if (TrueVal != CmpLHS || FalseVal != CmpRHS)
6450 auto KnownNonZeroSide = getFConstantVRegValWithLookThrough(CmpLHS, MRI);
6458 B.buildInstr(Opc, {Dst}, {CmpLHS, CmpRHS});
6916 Register CmpLHS = Cmp->getLHSReg();
6919 // We can swap CmpLHS and CmpRHS for higher hitrate.
6920 if (True == CmpRHS && False == CmpLHS) {
6921 std::swap(CmpLHS, CmpRHS);
6928 if (True != CmpLHS || False != CmpRHS)