Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp6666 Value *ZextLoad = Root; in isLoadCombineCandidateImpl() local
6669 while (!isa<ConstantExpr>(ZextLoad) && in isLoadCombineCandidateImpl()
6670 (match(ZextLoad, m_Or(m_Value(), m_Value())) || in isLoadCombineCandidateImpl()
6671 (match(ZextLoad, m_Shl(m_Value(), m_APInt(ShAmtC))) && in isLoadCombineCandidateImpl()
6673 auto *BinOp = cast<BinaryOperator>(ZextLoad); in isLoadCombineCandidateImpl()
6674 ZextLoad = BinOp->getOperand(0); in isLoadCombineCandidateImpl()
6680 if ((MustMatchOrInst && !FoundOr) || ZextLoad == Root || in isLoadCombineCandidateImpl()
6681 !match(ZextLoad, m_ZExt(m_Value(Load))) || !isa<LoadInst>(Load)) in isLoadCombineCandidateImpl()