Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/Basic/Targets/
H A DX86.cpp330 SSELevel = std::max(SSELevel, Level); in handleTargetFeatures()
349 if ((FPMath == FP_SSE && SSELevel < SSE1) || in handleTargetFeatures()
350 (FPMath == FP_387 && SSELevel >= SSE1)) { in handleTargetFeatures()
509 if (SSELevel != NoSSE) { in getTargetDefines()
744 switch (SSELevel) { in getTargetDefines()
779 switch (SSELevel) { in getTargetDefines()
928 .Case("avx", SSELevel >= AVX) in hasFeature()
929 .Case("avx2", SSELevel >= AVX2) in hasFeature()
930 .Case("avx512f", SSELevel >= AVX512F) in hasFeature()
990 .Case("sse", SSELevel >= SSE1) in hasFeature()
[all …]
H A DX86.h63 } SSELevel = NoSSE; variable
170 return SSELevel == NoSSE ? 2 : 0; in getFloatEvalMethod()
299 if (getTriple().getArch() == llvm::Triple::x86_64 && SSELevel >= AVX512F) in getABI()
301 if (getTriple().getArch() == llvm::Triple::x86_64 && SSELevel >= AVX) in getABI()