Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Vectorize/
DLoopVectorize.cpp4973 unsigned MaxVectorSize = WidestRegister / WidestType; in computeFeasibleMaxVF() local
4980 assert(MaxVectorSize <= 256 && "Did not expect to pack so many elements" in computeFeasibleMaxVF()
4982 if (MaxVectorSize == 0) { in computeFeasibleMaxVF()
4984 MaxVectorSize = 1; in computeFeasibleMaxVF()
4985 return MaxVectorSize; in computeFeasibleMaxVF()
4986 } else if (ConstTripCount && ConstTripCount < MaxVectorSize && in computeFeasibleMaxVF()
4992 MaxVectorSize = ConstTripCount; in computeFeasibleMaxVF()
4993 return MaxVectorSize; in computeFeasibleMaxVF()
4996 unsigned MaxVF = MaxVectorSize; in computeFeasibleMaxVF()
5003 for (unsigned VS = MaxVectorSize * 2; VS <= NewMaxVectorSize; VS *= 2) in computeFeasibleMaxVF()
/external/llvm/lib/Transforms/Vectorize/
DLoopVectorize.cpp5207 unsigned MaxVectorSize = WidestRegister / WidestType; in selectVectorizationFactor() local
5214 if (MaxVectorSize == 0) { in selectVectorizationFactor()
5216 MaxVectorSize = 1; in selectVectorizationFactor()
5219 assert(MaxVectorSize <= 64 && "Did not expect to pack so many elements" in selectVectorizationFactor()
5222 unsigned VF = MaxVectorSize; in selectVectorizationFactor()
5227 for (unsigned VS = MaxVectorSize; VS <= NewMaxVectorSize; VS *= 2) in selectVectorizationFactor()
5256 VF = TC % MaxVectorSize; in selectVectorizationFactor()
5259 VF = MaxVectorSize; in selectVectorizationFactor()