Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DPatternMatch.h2405 Value *ICmpLHS, *ICmpRHS; in match() local
2407 if (!m_ICmp(Pred, m_Value(ICmpLHS), m_Value(ICmpRHS)).match(V)) in match()
2415 if (AddExpr.match(ICmpLHS) && (ICmpRHS == AddLHS || ICmpRHS == AddRHS)) in match()
2420 if (AddExpr.match(ICmpRHS) && (ICmpLHS == AddLHS || ICmpLHS == AddRHS)) in match()
2421 return L.match(AddLHS) && R.match(AddRHS) && S.match(ICmpRHS); in match()
2428 return L.match(Op1) && R.match(ICmpRHS) && S.match(ICmpLHS); in match()
2432 if (XorExpr.match(ICmpRHS)) in match()
2433 return L.match(Op1) && R.match(ICmpLHS) && S.match(ICmpRHS); in match()
2440 if (AddExpr.match(ICmpLHS) && m_ZeroInt().match(ICmpRHS) && in match()
2445 if (m_ZeroInt().match(ICmpLHS) && AddExpr.match(ICmpRHS) && in match()
[all …]