Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DLoopAccessAnalysis.cpp1775 VectorizerParams::MaxVectorWidth * TypeByteSize, MinDepDistBytes); in couldPreventStoreLoadForward()
1795 if (MaxVFWithoutSLForwardIssues < MinDepDistBytes && in couldPreventStoreLoadForward()
1798 MinDepDistBytes = MaxVFWithoutSLForwardIssues; in couldPreventStoreLoadForward()
2120 if (MinDistanceNeeded > MinDepDistBytes) { in isDependent()
2142 MinDepDistBytes = in isDependent()
2143 std::min(static_cast<uint64_t>(Distance), MinDepDistBytes); in isDependent()
2146 uint64_t MinDepDistBytesOld = MinDepDistBytes; in isDependent()
2151 assert(MinDepDistBytes == MinDepDistBytesOld && in isDependent()
2160 uint64_t MaxVF = MinDepDistBytes / (TypeByteSize * Stride); in isDependent()
2174 MinDepDistBytes = -1; in areDepsSafe()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DLoopAccessAnalysis.h291 uint64_t MinDepDistBytes = 0; variable