Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/Basic/Targets/
H A DX86.cpp357 SSELevel = std::max(SSELevel, Level); in handleTargetFeatures()
359 HasFloat16 = SSELevel >= SSE2; in handleTargetFeatures()
361 HasBFloat16 = SSELevel >= SSE2; in handleTargetFeatures()
546 if (SSELevel != NoSSE) { in getTargetDefines()
788 switch (SSELevel) { in getTargetDefines()
823 switch (SSELevel) { in getTargetDefines()
976 .Case("avx", SSELevel >= AVX) in hasFeature()
977 .Case("avx2", SSELevel >= AVX2) in hasFeature()
1041 .Case("sse", SSELevel >= SSE1) in hasFeature()
1042 .Case("sse2", SSELevel >= SSE2) in hasFeature()
[all …]
H A DX86.h64 } SSELevel = NoSSE; variable
177 return SSELevel == NoSSE ? LangOptions::FPEvalMethodKind::FEM_Extended in getFPEvalMethod()
182 bool supportSourceEvalMethod() const override { return SSELevel > NoSSE; } in supportSourceEvalMethod()
312 if (getTriple().getArch() == llvm::Triple::x86_64 && SSELevel >= AVX512F) in getABI()
314 if (getTriple().getArch() == llvm::Triple::x86_64 && SSELevel >= AVX) in getABI()