|
|
e354a5 |
commit 27f8864bd41f0f1b61e8e947d9a030b1a0d23df9
|
|
|
e354a5 |
Author: H.J. Lu <hjl.tools@gmail.com>
|
|
|
e354a5 |
Date: Thu Jun 18 05:34:15 2020 -0700
|
|
|
e354a5 |
|
|
|
e354a5 |
x86: Update F16C detection [BZ #26133]
|
|
|
e354a5 |
|
|
|
e354a5 |
Since F16C requires AVX, set F16C usable only when AVX is usable.
|
|
|
e354a5 |
|
|
|
e354a5 |
diff --git a/sysdeps/x86/cpu-features.c b/sysdeps/x86/cpu-features.c
|
|
|
e354a5 |
index 2a801e1856cfe1b3..37619c93f8dbcc5d 100644
|
|
|
e354a5 |
--- a/sysdeps/x86/cpu-features.c
|
|
|
e354a5 |
+++ b/sysdeps/x86/cpu-features.c
|
|
|
e354a5 |
@@ -146,6 +146,10 @@ get_common_indices (struct cpu_features *cpu_features,
|
|
|
e354a5 |
if (CPU_FEATURES_CPU_P (cpu_features, XOP))
|
|
|
e354a5 |
cpu_features->feature[index_arch_XOP_Usable]
|
|
|
e354a5 |
|= bit_arch_XOP_Usable;
|
|
|
e354a5 |
+ /* Determine if F16C is usable. */
|
|
|
e354a5 |
+ if (CPU_FEATURES_CPU_P (cpu_features, F16C))
|
|
|
e354a5 |
+ cpu_features->feature[index_arch_F16C_Usable]
|
|
|
e354a5 |
+ |= bit_arch_F16C_Usable;
|
|
|
e354a5 |
}
|
|
|
e354a5 |
|
|
|
e354a5 |
/* Check if OPMASK state, upper 256-bit of ZMM0-ZMM15 and
|
|
|
e354a5 |
diff --git a/sysdeps/x86/cpu-features.h b/sysdeps/x86/cpu-features.h
|
|
|
e354a5 |
index 7abfa046c4b8f6ac..f18f7520fcb7714a 100644
|
|
|
e354a5 |
--- a/sysdeps/x86/cpu-features.h
|
|
|
e354a5 |
+++ b/sysdeps/x86/cpu-features.h
|
|
|
e354a5 |
@@ -142,6 +142,7 @@ extern const struct cpu_features *__get_cpu_features (void)
|
|
|
e354a5 |
#define bit_arch_VPCLMULQDQ_Usable (1u << 20)
|
|
|
e354a5 |
#define bit_arch_XOP_Usable (1u << 21)
|
|
|
e354a5 |
#define bit_arch_XSAVEC_Usable (1u << 22)
|
|
|
e354a5 |
+#define bit_arch_F16C_Usable (1u << 23)
|
|
|
e354a5 |
|
|
|
e354a5 |
#define index_arch_AVX_Usable FEATURE_INDEX_1
|
|
|
e354a5 |
#define index_arch_AVX2_Usable FEATURE_INDEX_1
|
|
|
e354a5 |
@@ -166,6 +167,7 @@ extern const struct cpu_features *__get_cpu_features (void)
|
|
|
e354a5 |
#define index_arch_VPCLMULQDQ_Usable FEATURE_INDEX_1
|
|
|
e354a5 |
#define index_arch_XOP_Usable FEATURE_INDEX_1
|
|
|
e354a5 |
#define index_arch_XSAVEC_Usable FEATURE_INDEX_1
|
|
|
e354a5 |
+#define index_arch_F16C_Usable FEATURE_INDEX_1
|
|
|
e354a5 |
|
|
|
e354a5 |
/* Unused. Compiler will optimize them out. */
|
|
|
e354a5 |
#define bit_arch_SSE3_Usable (1u << 0)
|
|
|
e354a5 |
@@ -179,7 +181,6 @@ extern const struct cpu_features *__get_cpu_features (void)
|
|
|
e354a5 |
#define bit_arch_AES_Usable (1u << 0)
|
|
|
e354a5 |
#define bit_arch_XSAVE_Usable (1u << 0)
|
|
|
e354a5 |
#define bit_arch_OSXSAVE_Usable (1u << 0)
|
|
|
e354a5 |
-#define bit_arch_F16C_Usable (1u << 0)
|
|
|
e354a5 |
#define bit_arch_RDRAND_Usable (1u << 0)
|
|
|
e354a5 |
#define bit_arch_FPU_Usable (1u << 0)
|
|
|
e354a5 |
#define bit_arch_TSC_Usable (1u << 0)
|
|
|
e354a5 |
@@ -236,7 +237,6 @@ extern const struct cpu_features *__get_cpu_features (void)
|
|
|
e354a5 |
#define index_arch_AES_Usable FEATURE_INDEX_1
|
|
|
e354a5 |
#define index_arch_XSAVE_Usable FEATURE_INDEX_1
|
|
|
e354a5 |
#define index_arch_OSXSAVE_Usable FEATURE_INDEX_1
|
|
|
e354a5 |
-#define index_arch_F16C_Usable FEATURE_INDEX_1
|
|
|
e354a5 |
#define index_arch_RDRAND_Usable FEATURE_INDEX_1
|
|
|
e354a5 |
#define index_arch_FPU_Usable FEATURE_INDEX_1
|
|
|
e354a5 |
#define index_arch_TSC_Usable FEATURE_INDEX_1
|
|
|
e354a5 |
@@ -296,7 +296,7 @@ extern const struct cpu_features *__get_cpu_features (void)
|
|
|
e354a5 |
#define need_arch_feature_XSAVE 0
|
|
|
e354a5 |
#define need_arch_feature_OSXSAVE 0
|
|
|
e354a5 |
#define need_arch_feature_AVX 1
|
|
|
e354a5 |
-#define need_arch_feature_F16C 0
|
|
|
e354a5 |
+#define need_arch_feature_F16C 1
|
|
|
e354a5 |
#define need_arch_feature_RDRAND 0
|
|
|
e354a5 |
|
|
|
e354a5 |
/* EDX. */
|