Searched refs:ChainInstrs (Results 1 - 1 of 1) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoadStoreVectorizer.cpp605 SmallVector<Instruction *, 16> ChainInstrs; local
624 ChainInstrs.push_back(&I);
642 // Loop until we find an instruction in ChainInstrs that we can't vectorize.
646 for (unsigned E = ChainInstrs.size(); ChainInstrIdx < E; ++ChainInstrIdx) {
647 Instruction *ChainInstr = ChainInstrs[ChainInstrIdx];
714 // ChainInstrs[0, ChainInstrIdx). This is the largest vectorizable prefix of
715 // Chain. (Recall that Chain is in address order, but ChainInstrs is in BB
718 ChainInstrs.begin(), ChainInstrs.begin() + ChainInstrIdx);

Completed in 94 milliseconds