reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/IR/PatternMatch.h
 1623     if (!m_ICmp(Pred, m_Value(ICmpLHS), m_Value(ICmpRHS)).match(V))
 1631       if (AddExpr.match(ICmpLHS) && (ICmpRHS == AddLHS || ICmpRHS == AddRHS))
 1632         return L.match(AddLHS) && R.match(AddRHS) && S.match(ICmpLHS);
 1636       if (AddExpr.match(ICmpRHS) && (ICmpLHS == AddLHS || ICmpLHS == AddRHS))
 1636       if (AddExpr.match(ICmpRHS) && (ICmpLHS == AddLHS || ICmpLHS == AddRHS))
 1643       if (AddExpr.match(ICmpLHS) && m_ZeroInt().match(ICmpRHS) &&
 1645         return L.match(AddLHS) && R.match(AddRHS) && S.match(ICmpLHS);
 1648       if (m_ZeroInt().match(ICmpLHS) && AddExpr.match(ICmpRHS) &&