Lines Matching refs:SSELevel
357 SSELevel = std::max(SSELevel, Level); in handleTargetFeatures()
359 HasFloat16 = SSELevel >= SSE2; in handleTargetFeatures()
361 HasBFloat16 = SSELevel >= SSE2; in handleTargetFeatures()
380 if ((FPMath == FP_SSE && SSELevel < SSE1) || in handleTargetFeatures()
381 (FPMath == FP_387 && SSELevel >= SSE1)) { 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()
978 .Case("avx512f", SSELevel >= AVX512F) in hasFeature()
1041 .Case("sse", SSELevel >= SSE1) in hasFeature()
1042 .Case("sse2", SSELevel >= SSE2) in hasFeature()
1043 .Case("sse3", SSELevel >= SSE3) in hasFeature()
1044 .Case("ssse3", SSELevel >= SSSE3) in hasFeature()
1045 .Case("sse4.1", SSELevel >= SSE41) in hasFeature()
1046 .Case("sse4.2", SSELevel >= SSE42) in hasFeature()
1461 if (SSELevel < SSE2) in validateOperandSize()