Searched refs:m_Neg (Results 1 – 7 of 7) sorted by relevance
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineSelect.cpp | 74 if ((CmpLHS == TrueVal && match(FalseVal, m_Neg(m_Specific(CmpLHS)))) || in MatchSelectPattern() 75 (CmpLHS == FalseVal && match(TrueVal, m_Neg(m_Specific(CmpLHS))))) { in MatchSelectPattern()
|
D | InstCombineAddSub.cpp | 1652 if (match(Op1, m_Mul(m_Value(A), m_Neg(m_Value(B)))) || in visitSub() 1653 match(Op1, m_Mul(m_Neg(m_Value(A)), m_Value(B)))) in visitSub()
|
D | InstructionCombining.cpp | 1529 if (match(V, m_Neg(m_PtrToInt(m_Value())))) { in visitGetElementPtrInst()
|
D | InstCombineCompares.cpp | 3383 if (match(BO0, m_Neg(m_Value(X)))) in visitICmpInst()
|
/external/llvm/lib/Analysis/ |
D | InstructionSimplify.cpp | 1591 if (match(Op0, m_Neg(m_Specific(Op1))) || in SimplifyAndInst() 1592 match(Op1, m_Neg(m_Specific(Op0)))) { in SimplifyAndInst() 2616 if (!CmpInst::isUnsigned(Pred) && match(LHS, m_Neg(m_ZExt(m_Value())))) { in SimplifyICmpInst()
|
D | ValueTracking.cpp | 1577 if (match(X, m_Neg(m_Specific(Y))) || match(Y, m_Neg(m_Specific(X)))) in isKnownToBeAPowerOfTwo()
|
/external/llvm/include/llvm/IR/ |
D | PatternMatch.h | 877 template <typename LHS> inline neg_match<LHS> m_Neg(const LHS &L) { return L; } in m_Neg() function
|