Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/
H A DLoopAccessAnalysis.cpp75 cl::location(VectorizerParams::VectorizationFactor));
76 unsigned VectorizerParams::VectorizationFactor;
83 VectorizerParams::VectorizationInterleave));
84 unsigned VectorizerParams::VectorizationInterleave;
91 unsigned VectorizerParams::RuntimeMemoryCheckThreshold;
101 const unsigned VectorizerParams::MaxVectorWidth = 64;
132 bool VectorizerParams::isInterleaveForced() { in isInterleaveForced()
1358 VectorizerParams::MaxVectorWidth * TypeByteSize) in couldPreventStoreLoadForward()
1585 unsigned ForcedFactor = (VectorizerParams::VectorizationFactor ? in isDependent()
1586 VectorizerParams::VectorizationFactor : 1); in isDependent()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoopVectorizationLegality.cpp83 return isPowerOf2_32(Val) && Val <= VectorizerParams::MaxVectorWidth; in validate()
99 : Width("vectorize.width", VectorizerParams::VectorizationFactor, HK_WIDTH), in LoopVectorizeHints()
110 if (VectorizerParams::isInterleaveForced()) in LoopVectorizeHints()
111 Interleave.Value = VectorizerParams::VectorizationInterleave; in LoopVectorizeHints()
H A DLoopVectorize.cpp8105 NumRuntimePointerChecks > VectorizerParams::RuntimeMemoryCheckThreshold; in plan()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopVersioningLICM.cpp426 VectorizerParams::RuntimeMemoryCheckThreshold) { in legalLoopInstructions()
436 << NV("Threshold", VectorizerParams::RuntimeMemoryCheckThreshold); in legalLoopInstructions()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DLoopAccessAnalysis.h37 struct VectorizerParams { struct