Searched refs:AddLHS (Results 1 – 3 of 3) sorted by relevance
1977 Value *AddLHS, *AddRHS; in match() local1978 auto AddExpr = m_Add(m_Value(AddLHS), m_Value(AddRHS)); in match()1982 if (AddExpr.match(ICmpLHS) && (ICmpRHS == AddLHS || ICmpRHS == AddRHS)) in match()1983 return L.match(AddLHS) && R.match(AddRHS) && S.match(ICmpLHS); in match()1987 if (AddExpr.match(ICmpRHS) && (ICmpLHS == AddLHS || ICmpLHS == AddRHS)) in match()1988 return L.match(AddLHS) && R.match(AddRHS) && S.match(ICmpRHS); in match()2008 (m_One().match(AddLHS) || m_One().match(AddRHS))) in match()2009 return L.match(AddLHS) && R.match(AddRHS) && S.match(ICmpLHS); in match()2013 (m_One().match(AddLHS) || m_One().match(AddRHS))) in match()2014 return L.match(AddLHS) && R.match(AddRHS) && S.match(ICmpRHS); in match()
899 Value *AddLHS; in computeValueKnownInPredecessorsImpl() local902 match(CmpLHS, m_Add(m_Value(AddLHS), m_ConstantInt(AddConst)))) { in computeValueKnownInPredecessorsImpl()903 if (!isa<Instruction>(AddLHS) || in computeValueKnownInPredecessorsImpl()904 cast<Instruction>(AddLHS)->getParent() != BB) { in computeValueKnownInPredecessorsImpl()910 AddLHS, P, BB, CxtI ? CxtI : cast<Instruction>(CmpLHS)); in computeValueKnownInPredecessorsImpl()
3879 ConstantInt *CI = nullptr; Value *AddLHS = nullptr; in matchScaledValue() local3881 match(ScaleReg, m_Add(m_Value(AddLHS), m_ConstantInt(CI))) && in matchScaledValue()3884 TestAddrMode.ScaledReg = AddLHS; in matchScaledValue()