Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/CodeGen/Targets/
H A DX86.cpp1303 unsigned &MaxVectorWidth) const;
1307 unsigned &MaxVectorWidth) const;
2853 unsigned &MaxVectorWidth) const { in classifyRegCallStructTypeImpl()
2869 MaxVectorWidth) in classifyRegCallStructTypeImpl()
2881 MaxVectorWidth) in classifyRegCallStructTypeImpl()
2897 if (getContext().getTypeSize(VT) > MaxVectorWidth) in classifyRegCallStructTypeImpl()
2898 MaxVectorWidth = getContext().getTypeSize(VT); in classifyRegCallStructTypeImpl()
2910 unsigned &MaxVectorWidth) const { in classifyRegCallStructType()
2914 MaxVectorWidth = 0; in classifyRegCallStructType()
2917 MaxVectorWidth); in classifyRegCallStructType()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/CodeGen/
H A DCGFunctionInfo.h627 unsigned MaxVectorWidth : 4; variable
776 return MaxVectorWidth ? 1U << (MaxVectorWidth - 1) : 0; in getMaxVectorWidth()
782 MaxVectorWidth = llvm::countr_zero(Width) + 1; in setMaxVectorWidth()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DLoopAccessAnalysis.h36 LLVM_ABI static const unsigned MaxVectorWidth; member
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DLoopAccessAnalysis.cpp101 const unsigned VectorizerParams::MaxVectorWidth = 64; member in VectorizerParams
1821 std::min(VectorizerParams::MaxVectorWidth * TypeByteSize, in couldPreventStoreLoadForward()
1846 VectorizerParams::MaxVectorWidth * TypeByteSize) { in couldPreventStoreLoadForward()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCall.cpp929 FI->MaxVectorWidth = 0; in create()
5178 unsigned MaxVectorWidth = 0; in getMaxVectorWidth() local
5181 MaxVectorWidth = std::max(MaxVectorWidth, getMaxVectorWidth(I)); in getMaxVectorWidth()
5182 return MaxVectorWidth; in getMaxVectorWidth()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoopVectorizationLegality.cpp92 return isPowerOf2_32(Val) && Val <= VectorizerParams::MaxVectorWidth; in validate()