Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp7524 Value *ZextLoad = Root; in isLoadCombineCandidateImpl() local
7527 while (!isa<ConstantExpr>(ZextLoad) && in isLoadCombineCandidateImpl()
7528 (match(ZextLoad, m_Or(m_Value(), m_Value())) || in isLoadCombineCandidateImpl()
7529 (match(ZextLoad, m_Shl(m_Value(), m_APInt(ShAmtC))) && in isLoadCombineCandidateImpl()
7531 auto *BinOp = cast<BinaryOperator>(ZextLoad); in isLoadCombineCandidateImpl()
7532 ZextLoad = BinOp->getOperand(0); in isLoadCombineCandidateImpl()
7538 if ((MustMatchOrInst && !FoundOr) || ZextLoad == Root || in isLoadCombineCandidateImpl()
7539 !match(ZextLoad, m_ZExt(m_Value(Load))) || !isa<LoadInst>(Load)) in isLoadCombineCandidateImpl()