Home
last modified time | relevance | path

Searched refs:MaxVectorWidth (Results 1 – 6 of 6) sorted by relevance

/openbsd-src/gnu/llvm/clang/include/clang/CodeGen/
H A DCGFunctionInfo.h590 unsigned MaxVectorWidth : 4; variable
739 return MaxVectorWidth ? 1U << (MaxVectorWidth - 1) : 0; in getMaxVectorWidth()
745 MaxVectorWidth = llvm::countTrailingZeros(Width) + 1; in setMaxVectorWidth()
/openbsd-src/gnu/llvm/llvm/include/llvm/Analysis/
H A DLoopAccessAnalysis.h39 static const unsigned MaxVectorWidth; member
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DTargetInfo.cpp2358 unsigned &MaxVectorWidth) const;
2362 unsigned &MaxVectorWidth) const;
3883 unsigned &MaxVectorWidth) const { in classifyRegCallStructTypeImpl()
3899 MaxVectorWidth) in classifyRegCallStructTypeImpl()
3911 MaxVectorWidth) in classifyRegCallStructTypeImpl()
3927 if (getContext().getTypeSize(VT) > MaxVectorWidth) in classifyRegCallStructTypeImpl()
3928 MaxVectorWidth = getContext().getTypeSize(VT); in classifyRegCallStructTypeImpl()
3940 unsigned &MaxVectorWidth) const { in classifyRegCallStructType()
3944 MaxVectorWidth = 0; in classifyRegCallStructType()
3947 MaxVectorWidth); in classifyRegCallStructType()
[all …]
H A DCGCall.cpp850 FI->MaxVectorWidth = 0; in create()
4737 unsigned MaxVectorWidth = 0; in getMaxVectorWidth() local
4740 MaxVectorWidth = std::max(MaxVectorWidth, getMaxVectorWidth(I)); in getMaxVectorWidth()
4741 return MaxVectorWidth; in getMaxVectorWidth()
/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DLoopAccessAnalysis.cpp103 const unsigned VectorizerParams::MaxVectorWidth = 64; member in VectorizerParams
1695 VectorizerParams::MaxVectorWidth * TypeByteSize, MaxSafeDepDistBytes); in couldPreventStoreLoadForward()
1717 VectorizerParams::MaxVectorWidth * TypeByteSize) in couldPreventStoreLoadForward()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Vectorize/
H A DLoopVectorizationLegality.cpp84 return isPowerOf2_32(Val) && Val <= VectorizerParams::MaxVectorWidth; in validate()