Searched refs:m_Exact (Results 1 – 4 of 4) sorted by relevance
/external/llvm/lib/Analysis/ |
D | InstructionSimplify.cpp | 921 if (match(Op0, m_Exact(m_IDiv(m_Value(X), m_Specific(Op1)))) || // (X / Y) * Y in SimplifyMulInst() 922 match(Op1, m_Exact(m_IDiv(m_Value(X), m_Specific(Op0))))) // Y * (X / Y) in SimplifyMulInst() 1392 if (match(Op0, m_Exact(m_Shr(m_Value(X), m_Specific(Op1))))) in SimplifyShlInst()
|
D | ValueTracking.cpp | 1803 if (match(V, m_Exact(m_LShr(m_Value(), m_Value()))) || in isKnownToBeAPowerOfTwo() 1804 match(V, m_Exact(m_UDiv(m_Value(), m_Value())))) { in isKnownToBeAPowerOfTwo() 1990 else if (match(V, m_Exact(m_IDiv(m_Value(X), m_Value())))) { in isKnownNonZero()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineMulDivRem.cpp | 1064 bool IsExact = I.isExact() && match(Op0, m_Exact(m_Value())); in visitUDiv()
|
/external/llvm/include/llvm/IR/ |
D | PatternMatch.h | 691 template <typename T> inline Exact_match<T> m_Exact(const T &SubPattern) { in m_Exact() function
|