Lines Matching defs:CmpLHS
6503 Register CmpLHS, CmpRHS;
6506 m_GFCmp(m_Pred(Pred), m_Reg(CmpLHS), m_Reg(CmpRHS)))) ||
6510 computeRetValAgainstNaN(CmpLHS, CmpRHS, CmpInst::isOrdered(Pred));
6513 if (TrueVal == CmpRHS && FalseVal == CmpLHS) {
6514 std::swap(CmpLHS, CmpRHS);
6521 if (TrueVal != CmpLHS || FalseVal != CmpRHS)
6533 auto KnownNonZeroSide = getFConstantVRegValWithLookThrough(CmpLHS, MRI);
6541 B.buildInstr(Opc, {Dst}, {CmpLHS, CmpRHS});
7061 Register CmpLHS = Cmp->getLHSReg();
7064 // We can swap CmpLHS and CmpRHS for higher hitrate.
7065 if (True == CmpRHS && False == CmpLHS) {
7066 std::swap(CmpLHS, CmpRHS);
7073 if (True != CmpLHS || False != CmpRHS)