Skip to content

Commit 4eda756

Browse files
committed
[X86] Improve the unknown stepping support for Intel CPUs in getHostCPUName
This patch improves our guessing of unknown Intel CPUs to support Goldmont and skylake-avx512. Differential Revision: https://reviews.llvm.org/D35161 llvm-svn: 309246
1 parent d736964 commit 4eda756

File tree

1 file changed

+22
-2
lines changed

1 file changed

+22
-2
lines changed

llvm/lib/Support/Host.cpp

+22-2
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,9 @@ enum ProcessorFeatures {
380380
// Only one bit free left in the first 32 features.
381381
FEATURE_MOVBE = 32,
382382
FEATURE_ADX,
383-
FEATURE_EM64T
383+
FEATURE_EM64T,
384+
FEATURE_CLFLUSHOPT,
385+
FEATURE_SHA,
384386
};
385387

386388
// The check below for i386 was copied from clang's cpuid.h (__get_cpuid_max).
@@ -714,7 +716,21 @@ getIntelProcessorTypeAndSubtype(unsigned Family, unsigned Model,
714716

715717
default: // Unknown family 6 CPU, try to guess.
716718
if (Features & (1 << FEATURE_AVX512F)) {
717-
*Type = INTEL_KNL; // knl
719+
if (Features & (1 << FEATURE_AVX512VL)) {
720+
*Type = INTEL_COREI7;
721+
*Subtype = INTEL_COREI7_SKYLAKE_AVX512;
722+
} else {
723+
*Type = INTEL_KNL; // knl
724+
}
725+
break;
726+
}
727+
if (Features2 & (1 << (FEATURE_CLFLUSHOPT - 32))) {
728+
if (Features2 & (1 << (FEATURE_SHA - 32))) {
729+
*Type = INTEL_GOLDMONT;
730+
} else {
731+
*Type = INTEL_COREI7;
732+
*Subtype = INTEL_COREI7_SKYLAKE;
733+
}
718734
break;
719735
}
720736
if (Features2 & (1 << (FEATURE_ADX - 32))) {
@@ -974,12 +990,16 @@ static void getAvailableFeatures(unsigned ECX, unsigned EDX, unsigned MaxLeaf,
974990
Features2 |= 1 << (FEATURE_ADX - 32);
975991
if (HasLeaf7 && ((EBX >> 21) & 1) && HasAVX512Save)
976992
Features |= 1 << FEATURE_AVX512IFMA;
993+
if (HasLeaf7 && ((EBX >> 23) & 1))
994+
Features2 |= 1 << (FEATURE_CLFLUSHOPT - 32);
977995
if (HasLeaf7 && ((EBX >> 26) & 1) && HasAVX512Save)
978996
Features |= 1 << FEATURE_AVX512PF;
979997
if (HasLeaf7 && ((EBX >> 27) & 1) && HasAVX512Save)
980998
Features |= 1 << FEATURE_AVX512ER;
981999
if (HasLeaf7 && ((EBX >> 28) & 1) && HasAVX512Save)
9821000
Features |= 1 << FEATURE_AVX512CD;
1001+
if (HasLeaf7 && ((EBX >> 29) & 1))
1002+
Features2 |= 1 << (FEATURE_SHA - 32);
9831003
if (HasLeaf7 && ((EBX >> 30) & 1) && HasAVX512Save)
9841004
Features |= 1 << FEATURE_AVX512BW;
9851005
if (HasLeaf7 && ((EBX >> 31) & 1) && HasAVX512Save)

0 commit comments

Comments
 (0)