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

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoadStoreVectorizer.cpp912 int ConsecutiveChain[64]; local
917 ConsecutiveChain[i] = -1;
923 if (ConsecutiveChain[i] != -1) {
924 int CurDistance = std::abs(ConsecutiveChain[i] - i);
925 int NewDistance = std::abs(ConsecutiveChain[i] - j);
932 ConsecutiveChain[i] = j;
962 I = ConsecutiveChain[I];
H A DSLPVectorizer.cpp5816 SmallVector<int, 16> ConsecutiveChain(E, E + 1);
5820 &ConsecutiveChain](int K, int Idx) {
5828 ConsecutiveChain[K] = Idx;
5849 if (ConsecutiveChain[I] == E + 1 || Tails.test(I))
5858 I = ConsecutiveChain[I];
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopIdiomRecognize.cpp616 SmallDenseMap<StoreInst *, StoreInst *> ConsecutiveChain; local
695 ConsecutiveChain[SL[i]] = SL[k];
728 I = ConsecutiveChain[I];

Completed in 139 milliseconds