Fix Python help() test for Python 3
[deliverable/binutils-gdb.git] / opcodes / i386-opc.h
index 90b51d99ab0fb4c58010dbae23b86a8767b64665..a8f63330a7750850a334470f63323e61325a44db 100644 (file)
@@ -102,6 +102,12 @@ enum
   CpuAVX512ER,
   /* Intel AVX-512 Prefetch Instructions support required */
   CpuAVX512PF,
+  /* Intel AVX-512 VL Instructions support required.  */
+  CpuAVX512VL,
+  /* Intel AVX-512 DQ Instructions support required.  */
+  CpuAVX512DQ,
+  /* Intel AVX-512 BW Instructions support required.  */
+  CpuAVX512BW,
   /* Intel L1OM support required */
   CpuL1OM,
   /* Intel K1OM support required */
@@ -176,6 +182,16 @@ enum
   CpuXSAVEC,
   /* PREFETCHWT1 instruction required */
   CpuPREFETCHWT1,
+  /* SE1 instruction required */
+  CpuSE1,
+  /* CLWB instruction required */
+  CpuCLWB,
+  /* PCOMMIT instruction required */
+  CpuPCOMMIT,
+  /* Intel AVX-512 IFMA Instructions support required.  */
+  CpuAVX512IFMA,
+  /* Intel AVX-512 VBMI Instructions support required.  */
+  CpuAVX512VBMI,
   /* 64bit support required  */
   Cpu64,
   /* Not supported in the 64bit mode  */
@@ -234,6 +250,9 @@ typedef union i386_cpu_flags
       unsigned int cpuavx512cd:1;
       unsigned int cpuavx512er:1;
       unsigned int cpuavx512pf:1;
+      unsigned int cpuavx512vl:1;
+      unsigned int cpuavx512dq:1;
+      unsigned int cpuavx512bw:1;
       unsigned int cpul1om:1;
       unsigned int cpuk1om:1;
       unsigned int cpuxsave:1;
@@ -271,6 +290,11 @@ typedef union i386_cpu_flags
       unsigned int cpuxsaves:1;
       unsigned int cpuxsavec:1;
       unsigned int cpuprefetchwt1:1;
+      unsigned int cpuse1:1;
+      unsigned int cpuclwb:1;
+      unsigned int cpupcommit:1;
+      unsigned int cpuavx512ifma:1;
+      unsigned int cpuavx512vbmi:1;
       unsigned int cpu64:1;
       unsigned int cpuno64:1;
 #ifdef CpuUnused
@@ -489,6 +513,8 @@ enum
 #define NO_BROADCAST   0
 #define BROADCAST_1TO16        1
 #define BROADCAST_1TO8 2
+#define BROADCAST_1TO4 3
+#define BROADCAST_1TO2 4
   Broadcast,
 
   /* Static rounding control is supported.  */
This page took 0.022858 seconds and 4 git commands to generate.