Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/clang/lib/Basic/Targets/
DX86.cpp343 SSELevel = std::max(SSELevel, Level); in handleTargetFeatures()
362 if ((FPMath == FP_SSE && SSELevel < SSE1) || in handleTargetFeatures()
363 (FPMath == FP_387 && SSELevel >= SSE1)) { in handleTargetFeatures()
522 if (SSELevel != NoSSE) { in getTargetDefines()
758 switch (SSELevel) { in getTargetDefines()
793 switch (SSELevel) { in getTargetDefines()
943 .Case("avx", SSELevel >= AVX) in hasFeature()
944 .Case("avx2", SSELevel >= AVX2) in hasFeature()
945 .Case("avx512f", SSELevel >= AVX512F) in hasFeature()
1005 .Case("sse", SSELevel >= SSE1) in hasFeature()
[all …]
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()