Home
last modified time | relevance | path

Searched refs:m_LogicalShift (Results 1 – 5 of 5) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/
DInstCombineAndOrXor.cpp1754 if (match(Op0, m_OneUse(m_LogicalShift(m_One(), m_Value(X)))) && in visitAnd()
1995 bool OrOfShifts = match(Op0, m_LogicalShift(m_Value(), m_Value())) && in matchBSwap()
1996 match(Op1, m_LogicalShift(m_Value(), m_Value())); in matchBSwap()
2008 bool OrOfAndAndSh = (match(Op0, m_LogicalShift(m_Value(), m_Value())) && in matchBSwap()
2011 match(Op1, m_LogicalShift(m_Value(), m_Value()))); in matchBSwap()
2043 if (!match(Or0, m_OneUse(m_LogicalShift(m_Value(ShVal), m_Value(ShAmt0)))) || in matchRotate()
2044 !match(Or1, m_OneUse(m_LogicalShift(m_Specific(ShVal), m_Value(ShAmt1))))) in matchRotate()
DInstCombineCasts.cpp515 if (!match(Or0, m_OneUse(m_LogicalShift(m_Value(ShVal), m_Value(ShAmt0)))) || in narrowRotate()
516 !match(Or1, m_OneUse(m_LogicalShift(m_Specific(ShVal), m_Value(ShAmt1))))) in narrowRotate()
DInstCombineSelect.cpp2284 if (!match(Or0, m_OneUse(m_LogicalShift(m_Specific(TVal), m_Value(SA0)))) || in foldSelectRotate()
2285 !match(Or1, m_OneUse(m_LogicalShift(m_Specific(TVal), m_Value(SA1))))) in foldSelectRotate()
DInstCombineCompares.cpp3476 auto m_AnyLogicalShift = m_LogicalShift(m_Value(), m_Value()); in foldShiftIntoShiftInAnotherHandOfAndInICmp()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DPatternMatch.h1097 m_LogicalShift(const LHS &L, const RHS &R) { in m_LogicalShift() function