]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
x86: Add more feature definitions to isa-level.h
authorNoah Goldstein <goldstein.w.n@gmail.com>
Tue, 28 Jun 2022 04:07:03 +0000 (21:07 -0700)
committerNoah Goldstein <goldstein.w.n@gmail.com>
Tue, 28 Jun 2022 15:24:56 +0000 (08:24 -0700)
This commit doesn't change anything in itself.  It is just to add
definitions that will be needed by future patches.

sysdeps/x86/isa-level.h

index f293aea9068cc2a9034c0a3be383f4fe0a770f8b..77f9e2c0c3ccd41d9068ee6d618d5903885b5660 100644 (file)
 /* Depending on the minimum ISA level, a feature check result can be a
    compile-time constant.. */
 
+
+/* For CPU_FEATURE_USABLE_P.  */
+
 /* ISA level >= 4 guaranteed includes.  */
 #define AVX512F_X86_ISA_LEVEL 4
 #define AVX512VL_X86_ISA_LEVEL 4
 #define AVX512BW_X86_ISA_LEVEL 4
+#define AVX512DQ_X86_ISA_LEVEL 4
 
 /* ISA level >= 3 guaranteed includes.  */
 #define AVX_X86_ISA_LEVEL 3
 #define AVX2_X86_ISA_LEVEL 3
 #define BMI2_X86_ISA_LEVEL 3
+#define MOVBE_X86_ISA_LEVEL 3
+
+/* ISA level >= 2 guaranteed includes.  */
+#define SSE4_2_X86_ISA_LEVEL 2
+#define SSSE3_X86_ISA_LEVEL 2
+
+
+/* For X86_ISA_CPU_FEATURES_ARCH_P.  */
 
 /* NB: This feature is enabled when ISA level >= 3, which was disabled
    for the following CPUs:
    when ISA level < 3.  */
 #define Prefer_No_VZEROUPPER_X86_ISA_LEVEL 3
 
+/* Feature(s) enabled when ISA level >= 2.  */
+#define Fast_Unaligned_Load_X86_ISA_LEVEL 2
+
 /* Both X86_ISA_CPU_FEATURE_USABLE_P and X86_ISA_CPU_FEATURES_ARCH_P
    macros are wrappers for the respective CPU_FEATURE{S}_{USABLE|ARCH}_P
    runtime checks.  They differ in two ways.