Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86Subtarget.cpp279 PreferVectorWidth = PreferVectorWidthOverride; in initSubtargetFeatures()
281 PreferVectorWidth = 128; in initSubtargetFeatures()
283 PreferVectorWidth = 256; in initSubtargetFeatures()
H A DX86Subtarget.h515 unsigned PreferVectorWidth = UINT32_MAX; variable
789 unsigned getPreferVectorWidth() const { return PreferVectorWidth; } in getPreferVectorWidth()
H A DX86TargetTransformInfo.cpp134 unsigned PreferVectorWidth = ST->getPreferVectorWidth(); in getRegisterBitWidth() local
139 if (ST->hasAVX512() && PreferVectorWidth >= 512) in getRegisterBitWidth()
141 if (ST->hasAVX() && PreferVectorWidth >= 256) in getRegisterBitWidth()
143 if (ST->hasSSE1() && PreferVectorWidth >= 128) in getRegisterBitWidth()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DCodeGenOptions.h347 std::string PreferVectorWidth; variable
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGCall.cpp1831 if (!CodeGenOpts.PreferVectorWidth.empty() && in getDefaultFunctionAttributes()
1832 CodeGenOpts.PreferVectorWidth != "none") in getDefaultFunctionAttributes()
1834 CodeGenOpts.PreferVectorWidth); in getDefaultFunctionAttributes()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Driver/
H A DOptions.td3426 MarshallingInfoString<CodeGenOpts<"PreferVectorWidth">>;