aboutsummaryrefslogtreecommitdiff
path: root/opcodes/i386-opc.h
diff options
context:
space:
mode:
authorGanesh Gopalasubramanian <Ganesh.Gopalasubramanian@amd.com>2015-03-17 21:49:15 +0530
committerGanesh Gopalasubramanian <Ganesh.Gopalasubramanian@amd.com>2015-03-17 21:49:15 +0530
commit029f3522619e8b77a7b848be23f4c13e50087d8b (patch)
tree484cbee2753ca7c12d2d0db7a28864e2e45e7456 /opcodes/i386-opc.h
parent393bd0c06b64ff6076f28053cbd2fce352023c70 (diff)
downloadgdb-029f3522619e8b77a7b848be23f4c13e50087d8b.zip
gdb-029f3522619e8b77a7b848be23f4c13e50087d8b.tar.gz
gdb-029f3522619e8b77a7b848be23f4c13e50087d8b.tar.bz2
Add znver1 processor
Diffstat (limited to 'opcodes/i386-opc.h')
-rw-r--r--opcodes/i386-opc.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/opcodes/i386-opc.h b/opcodes/i386-opc.h
index 76402d1..ed486a3 100644
--- a/opcodes/i386-opc.h
+++ b/opcodes/i386-opc.h
@@ -192,6 +192,8 @@ enum
CpuAVX512IFMA,
/* Intel AVX-512 VBMI Instructions support required. */
CpuAVX512VBMI,
+ /* Clzero instruction required */
+ CpuCLZERO,
/* 64bit support required */
Cpu64,
/* Not supported in the 64bit mode */
@@ -295,6 +297,7 @@ typedef union i386_cpu_flags
unsigned int cpupcommit:1;
unsigned int cpuavx512ifma:1;
unsigned int cpuavx512vbmi:1;
+ unsigned int cpuclzero:1;
unsigned int cpu64:1;
unsigned int cpuno64:1;
#ifdef CpuUnused