446cf2
commit 875a50ff63b2c86af770949d563ee851d08eb46e
446cf2
Author: H.J. Lu <hjl.tools@gmail.com>
446cf2
Date:   Thu Oct 8 08:33:45 2020 -0700
446cf2
446cf2
    <sys/platform/x86.h>: Add AVX-VNNI support
446cf2
    
446cf2
    Add AVX-VNNI support to <sys/platform/x86.h>.
446cf2
446cf2
diff --git a/manual/platform.texi b/manual/platform.texi
446cf2
index 4f5fdff9d9ef16fd..283f255679643d3e 100644
446cf2
--- a/manual/platform.texi
446cf2
+++ b/manual/platform.texi
446cf2
@@ -198,6 +198,9 @@ The supported processor features are:
446cf2
 @item
446cf2
 @code{AVX2} -- The AVX2 instruction extensions.
446cf2
 
446cf2
+@item
446cf2
+@code{AVX_VNNI} -- The AVX-VNNI instruction extensions.
446cf2
+
446cf2
 @item
446cf2
 @code{AVX512_4FMAPS} -- The AVX512_4FMAPS instruction extensions.
446cf2
 
446cf2
diff --git a/sysdeps/x86/cpu-features.c b/sysdeps/x86/cpu-features.c
446cf2
index 67f137259fccf4ad..3e5b9341c9756009 100644
446cf2
--- a/sysdeps/x86/cpu-features.c
446cf2
+++ b/sysdeps/x86/cpu-features.c
446cf2
@@ -119,6 +119,8 @@ update_usable (struct cpu_features *cpu_features)
446cf2
 		  cpu_features->preferred[index_arch_AVX_Fast_Unaligned_Load]
446cf2
 		    |= bit_arch_AVX_Fast_Unaligned_Load;
446cf2
 		}
446cf2
+	      /* Determine if AVX-VNNI is usable.  */
446cf2
+	      CPU_FEATURE_SET_USABLE (cpu_features, AVX_VNNI);
446cf2
 	      /* Determine if FMA is usable.  */
446cf2
 	      CPU_FEATURE_SET_USABLE (cpu_features, FMA);
446cf2
 	      /* Determine if VAES is usable.  */
446cf2
diff --git a/sysdeps/x86/sys/platform/x86.h b/sysdeps/x86/sys/platform/x86.h
446cf2
index 0b18257e20105ea4..0942ad7a7f7d4ce2 100644
446cf2
--- a/sysdeps/x86/sys/platform/x86.h
446cf2
+++ b/sysdeps/x86/sys/platform/x86.h
446cf2
@@ -311,6 +311,7 @@ extern const struct cpu_features *__x86_get_cpu_features (unsigned int)
446cf2
 /* COMMON_CPUID_INDEX_7_ECX_1.  */
446cf2
 
446cf2
 /* EAX.  */
446cf2
+#define bit_cpu_AVX_VNNI	(1u << 4)
446cf2
 #define bit_cpu_AVX512_BF16	(1u << 5)
446cf2
 
446cf2
 /* COMMON_CPUID_INDEX_19.  */
446cf2
@@ -530,6 +531,7 @@ extern const struct cpu_features *__x86_get_cpu_features (unsigned int)
446cf2
 /* COMMON_CPUID_INDEX_7_ECX_1.  */
446cf2
 
446cf2
 /* EAX.  */
446cf2
+#define index_cpu_AVX_VNNI	COMMON_CPUID_INDEX_7_ECX_1
446cf2
 #define index_cpu_AVX512_BF16	COMMON_CPUID_INDEX_7_ECX_1
446cf2
 
446cf2
 /* COMMON_CPUID_INDEX_19.  */
446cf2
@@ -749,6 +751,7 @@ extern const struct cpu_features *__x86_get_cpu_features (unsigned int)
446cf2
 /* COMMON_CPUID_INDEX_7_ECX_1.  */
446cf2
 
446cf2
 /* EAX.  */
446cf2
+#define reg_AVX_VNNI		eax
446cf2
 #define reg_AVX512_BF16		eax
446cf2
 
446cf2
 /* COMMON_CPUID_INDEX_19.  */
446cf2
diff --git a/sysdeps/x86/tst-get-cpu-features.c b/sysdeps/x86/tst-get-cpu-features.c
446cf2
index bcdeb243a82c4adc..8894d9f08ac36633 100644
446cf2
--- a/sysdeps/x86/tst-get-cpu-features.c
446cf2
+++ b/sysdeps/x86/tst-get-cpu-features.c
446cf2
@@ -219,6 +219,7 @@ do_test (void)
446cf2
   CHECK_CPU_FEATURE (XFD);
446cf2
   CHECK_CPU_FEATURE (INVARIANT_TSC);
446cf2
   CHECK_CPU_FEATURE (WBNOINVD);
446cf2
+  CHECK_CPU_FEATURE (AVX_VNNI);
446cf2
   CHECK_CPU_FEATURE (AVX512_BF16);
446cf2
   CHECK_CPU_FEATURE (AESKLE);
446cf2
   CHECK_CPU_FEATURE (WIDE_KL);
446cf2
@@ -374,6 +375,7 @@ do_test (void)
446cf2
   CHECK_CPU_FEATURE_USABLE (XFD);
446cf2
   CHECK_CPU_FEATURE_USABLE (INVARIANT_TSC);
446cf2
   CHECK_CPU_FEATURE_USABLE (WBNOINVD);
446cf2
+  CHECK_CPU_FEATURE_USABLE (AVX_VNNI);
446cf2
   CHECK_CPU_FEATURE_USABLE (AVX512_BF16);
446cf2
   CHECK_CPU_FEATURE_USABLE (AESKLE);
446cf2
   CHECK_CPU_FEATURE_USABLE (WIDE_KL);