Home
last modified time | relevance | path

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

/src/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp10054 Value *ZextLoad = Root; in isLoadCombineCandidateImpl() local
10057 while (!isa<ConstantExpr>(ZextLoad) && in isLoadCombineCandidateImpl()
10058 (match(ZextLoad, m_Or(m_Value(), m_Value())) || in isLoadCombineCandidateImpl()
10059 (match(ZextLoad, m_Shl(m_Value(), m_APInt(ShAmtC))) && in isLoadCombineCandidateImpl()
10061 auto *BinOp = cast<BinaryOperator>(ZextLoad); in isLoadCombineCandidateImpl()
10062 ZextLoad = BinOp->getOperand(0); in isLoadCombineCandidateImpl()
10068 if ((MustMatchOrInst && !FoundOr) || ZextLoad == Root || in isLoadCombineCandidateImpl()
10069 !match(ZextLoad, m_ZExt(m_Value(Load))) || !isa<LoadInst>(Load)) in isLoadCombineCandidateImpl()