Lines Matching refs:m_APInt

1512         if (!match(I->getOperand(2), m_APInt(SA)))  in computeKnownBitsFromOperator()
1614 if (match(V, m_APInt(C))) { in computeKnownBits()
2246 if (!match(RHS, m_APInt(CLow))) in isSignedMinMaxClamp()
2253 if (!match(RHS2, m_APInt(CHigh))) in isSignedMinMaxClamp()
2335 if (match(U->getOperand(1), m_APInt(Denominator))) { in ComputeNumSignBitsImpl()
2355 if (match(U->getOperand(1), m_APInt(Denominator))) { in ComputeNumSignBitsImpl()
2389 if (match(U->getOperand(1), m_APInt(ShAmt))) { in ComputeNumSignBitsImpl()
2400 if (match(U->getOperand(1), m_APInt(ShAmt))) { in ComputeNumSignBitsImpl()
3857 if (match(Inst->getOperand(1), m_APInt(V))) in isSafeToSpeculativelyExecute()
3865 if (!match(Inst->getOperand(1), m_APInt(Denominator))) in isSafeToSpeculativelyExecute()
3875 if (match(Inst->getOperand(0), m_APInt(Numerator))) in isSafeToSpeculativelyExecute()
4580 if (CmpRHS == TrueVal && match(CmpRHS, m_APInt(C1))) { in matchClamp()
4583 if (match(FalseVal, m_SMin(m_Specific(CmpLHS), m_APInt(C2))) && in matchClamp()
4588 if (match(FalseVal, m_SMax(m_Specific(CmpLHS), m_APInt(C2))) && in matchClamp()
4593 if (match(FalseVal, m_UMin(m_Specific(CmpLHS), m_APInt(C2))) && in matchClamp()
4598 if (match(FalseVal, m_UMax(m_Specific(CmpLHS), m_APInt(C2))) && in matchClamp()
4736 if (!match(CmpRHS, m_APInt(C1))) in matchMinMax()
4741 if ((CmpLHS == TrueVal && match(FalseVal, m_APInt(C2))) || in matchMinMax()
4742 (CmpLHS == FalseVal && match(TrueVal, m_APInt(C2)))) { in matchMinMax()
4762 match(FalseVal, m_APInt(C2)) && ~(*C1) == *C2) in matchMinMax()
4768 match(TrueVal, m_APInt(C2)) && ~(*C1) == *C2) in matchMinMax()
5171 if (match(RHS, m_NSWAdd(m_Specific(LHS), m_APInt(C)))) in isTruePredicate()
5180 if (match(RHS, m_NUWAdd(m_Specific(LHS), m_APInt(C)))) in isTruePredicate()
5187 if (match(A, m_NUWAdd(m_Value(X), m_APInt(CA))) && in isTruePredicate()
5188 match(B, m_NUWAdd(m_Specific(X), m_APInt(CB)))) in isTruePredicate()
5192 if (match(A, m_Or(m_Value(X), m_APInt(CA))) && in isTruePredicate()
5193 match(B, m_Or(m_Specific(X), m_APInt(CB)))) { in isTruePredicate()