diff options
Diffstat (limited to 'opcodes/i386-opc.h')
-rw-r--r-- | opcodes/i386-opc.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/opcodes/i386-opc.h b/opcodes/i386-opc.h index d4d8f34..140235f 100644 --- a/opcodes/i386-opc.h +++ b/opcodes/i386-opc.h @@ -196,6 +196,8 @@ enum CpuAVX512_4FMAPS, /* Intel AVX-512 4VNNIW Instructions support required. */ CpuAVX512_4VNNIW, + /* Intel AVX-512 VPOPCNTDQ Instructions support required. */ + CpuAVX512_VPOPCNTDQ, /* mwaitx instruction required */ CpuMWAITX, /* Clzero instruction required */ @@ -321,6 +323,7 @@ typedef union i386_cpu_flags unsigned int cpuavx512vbmi:1; unsigned int cpuavx512_4fmaps:1; unsigned int cpuavx512_4vnniw:1; + unsigned int cpuavx512_vpopcntdq:1; unsigned int cpumwaitx:1; unsigned int cpuclzero:1; unsigned int cpuospke:1; |