Searched refs:m_ZeroInt (Results 1 – 6 of 6) sorted by relevance
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/ |
D | ValueTracking.cpp | 4521 if ((!NeedNSW && match(X, m_Sub(m_ZeroInt(), m_Specific(Y)))) || in isKnownNegation() 4522 (NeedNSW && match(X, m_NSWSub(m_ZeroInt(), m_Specific(Y))))) in isKnownNegation() 4526 if ((!NeedNSW && match(Y, m_Sub(m_ZeroInt(), m_Specific(X)))) || in isKnownNegation() 4527 (NeedNSW && match(Y, m_NSWSub(m_ZeroInt(), m_Specific(X))))) in isKnownNegation() 4642 auto ZeroOrAllOnes = m_CombineOr(m_ZeroInt(), m_AllOnes()); in matchSelectPattern() 4643 auto ZeroOrOne = m_CombineOr(m_ZeroInt(), m_One()); in matchSelectPattern()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/ |
D | PatternMatch.h | 361 inline cst_pred_ty<is_zero_int> m_ZeroInt() { in m_ZeroInt() function 1685 return m_Sub(m_ZeroInt(), V);
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/ |
D | InstCombineAddSub.cpp | 1626 bool IsNegate = match(C, m_ZeroInt()); in visitSub()
|
D | InstCombineSelect.cpp | 858 match(Cmp.getOperand(1), m_ZeroInt()) && in canonicalizeAbsNabs()
|
D | InstCombineCasts.cpp | 1198 if ((Pred == ICmpInst::ICMP_SLT && match(Op1, m_ZeroInt())) || in transformSExtICmp()
|
D | InstCombineCalls.cpp | 3172 if (match(KeyArg, m_ZeroInt()) && in visitCallInst()
|