HomeSort by: relevance | last modified time | path
    Searched refs:AddExpr (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
MVETailPredication.cpp 316 auto *AddExpr = dyn_cast<SCEVAddRecExpr>(IVExpr);
318 if (!AddExpr) {
323 if (AddExpr->getLoop() != L) {
327 auto *Base = dyn_cast<SCEVConstant>(AddExpr->getOperand(0));
332 auto *Step = dyn_cast<SCEVConstant>(AddExpr->getOperand(1));
335 AddExpr->getOperand(1)->dump());
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
PatternMatch.h 1978 auto AddExpr = m_Add(m_Value(AddLHS), m_Value(AddRHS));
1982 if (AddExpr.match(ICmpLHS) && (ICmpRHS == AddLHS || ICmpRHS == AddRHS))
1987 if (AddExpr.match(ICmpRHS) && (ICmpLHS == AddLHS || ICmpLHS == AddRHS))
2007 if (AddExpr.match(ICmpLHS) && m_ZeroInt().match(ICmpRHS) &&
2012 if (m_ZeroInt().match(ICmpLHS) && AddExpr.match(ICmpRHS) &&

Completed in 1428 milliseconds