Home
last modified time | relevance | path

Searched refs:m_Exact (Results 1 – 4 of 4) sorted by relevance

/external/llvm/lib/Analysis/
DValueTracking.cpp1578 if (match(V, m_Exact(m_LShr(m_Value(), m_Value()))) || in isKnownToBeAPowerOfTwo()
1579 match(V, m_Exact(m_UDiv(m_Value(), m_Value())))) { in isKnownToBeAPowerOfTwo()
1776 else if (match(V, m_Exact(m_IDiv(m_Value(X), m_Value())))) { in isKnownNonZero()
DInstructionSimplify.cpp909 if (match(Op0, m_Exact(m_IDiv(m_Value(X), m_Specific(Op1)))) || // (X / Y) * Y in SimplifyMulInst()
910 match(Op1, m_Exact(m_IDiv(m_Value(X), m_Specific(Op0))))) // Y * (X / Y) in SimplifyMulInst()
1387 if (match(Op0, m_Exact(m_Shr(m_Value(X), m_Specific(Op1))))) in SimplifyShlInst()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineMulDivRem.cpp1078 bool IsExact = I.isExact() && match(Op0, m_Exact(m_Value())); in visitUDiv()
/external/llvm/include/llvm/IR/
DPatternMatch.h691 template <typename T> inline Exact_match<T> m_Exact(const T &SubPattern) { in m_Exact() function