Home | History | Annotate | Download | only in InstCombine

Lines Matching refs:m_APInt

419     if (match(FalseVal, m_Xor(m_Specific(X), m_APInt(C2))) && C1 == C2)
422 if (match(FalseVal, m_And(m_Specific(X), m_APInt(C2))) && *C1 == ~(*C2))
426 if (match(TrueVal, m_Xor(m_Specific(X), m_APInt(C2))) && C1 == C2)
429 if (match(TrueVal, m_And(m_Specific(X), m_APInt(C2))) && *C1 == ~(*C2))
432 if (match(TrueVal, m_Or(m_Specific(X), m_APInt(C2))) && C1 == C2)