Home
last modified time | relevance | path

Searched refs:MAttrs (Results 1 – 8 of 8) sorted by relevance

/third_party/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_misc.cpp377 llvm::SmallVector<std::string, 16> MAttrs; in lp_build_create_jit_compiler_for_module() local
391 MAttrs.push_back(((*f).second ? "+" : "-") + (*f).first().str()); in lp_build_create_jit_compiler_for_module()
403 MAttrs.push_back(util_get_cpu_caps()->has_sse ? "+sse" : "-sse" ); in lp_build_create_jit_compiler_for_module()
404 MAttrs.push_back(util_get_cpu_caps()->has_sse2 ? "+sse2" : "-sse2" ); in lp_build_create_jit_compiler_for_module()
405 MAttrs.push_back(util_get_cpu_caps()->has_sse3 ? "+sse3" : "-sse3" ); in lp_build_create_jit_compiler_for_module()
406 MAttrs.push_back(util_get_cpu_caps()->has_ssse3 ? "+ssse3" : "-ssse3" ); in lp_build_create_jit_compiler_for_module()
407 MAttrs.push_back(util_get_cpu_caps()->has_sse4_1 ? "+sse4.1" : "-sse4.1"); in lp_build_create_jit_compiler_for_module()
408 MAttrs.push_back(util_get_cpu_caps()->has_sse4_2 ? "+sse4.2" : "-sse4.2"); in lp_build_create_jit_compiler_for_module()
415 MAttrs.push_back(util_get_cpu_caps()->has_avx ? "+avx" : "-avx"); in lp_build_create_jit_compiler_for_module()
416 MAttrs.push_back(util_get_cpu_caps()->has_f16c ? "+f16c" : "-f16c"); in lp_build_create_jit_compiler_for_module()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/
DTargetSelect.cpp34 return selectTarget(TT, MArch, MCPU, MAttrs); in selectTarget()
42 const SmallVectorImpl<std::string>& MAttrs) { in selectTarget() argument
79 if (!MAttrs.empty()) { in selectTarget()
81 for (unsigned i = 0; i != MAttrs.size(); ++i) in selectTarget()
82 Features.AddFeature(MAttrs[i]); in selectTarget()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/
DExecutionEngine.h539 SmallVector<std::string, 4> MAttrs; variable
632 MAttrs.clear(); in setMAttrs()
633 MAttrs.append(mattrs.begin(), mattrs.end()); in setMAttrs()
659 const SmallVectorImpl<std::string>& MAttrs);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/LTO/
DConfig.h43 std::vector<std::string> MAttrs; member
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DCommandFlags.inc39 MAttrs("mattr", cl::CommaSeparated,
354 for (unsigned i = 0; i != MAttrs.size(); ++i)
355 Features.AddFeature(MAttrs[i]);
374 for (unsigned i = 0; i != MAttrs.size(); ++i)
375 Features.AddFeature(MAttrs[i]);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/LTO/
DLTOBackend.cpp135 for (const std::string &A : Conf.MAttrs) in createTargetMachine()
DThinLTOCodeGenerator.cpp337 Conf.MAttrs.push_back(TMBuilder.MAttr); in ModuleCacheEntry()
DLTO.cpp126 for (auto &A : Conf.MAttrs) in computeLTOCacheKey()