diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2011-01-05 00:16:57 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2011-01-05 00:16:57 +0000 |
commit | f12dc42220ed7e6c33d5d2334be971ae74b805d5 (patch) | |
tree | 71d59b9307167ea4998ab908e74a00848183cc7b /opcodes/i386-opc.h | |
parent | e94277cb75ef79dcbb700df6fa8a61951e43d8f6 (diff) | |
download | gdb-f12dc42220ed7e6c33d5d2334be971ae74b805d5.zip gdb-f12dc42220ed7e6c33d5d2334be971ae74b805d5.tar.gz gdb-f12dc42220ed7e6c33d5d2334be971ae74b805d5.tar.bz2 |
Implement BMI instructions.
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 fe4fe97..6696983 100644 --- a/opcodes/i386-opc.h +++ b/opcodes/i386-opc.h @@ -110,6 +110,8 @@ enum CpuXOP, /* LWP support required */ CpuLWP, + /* BMI support required */ + CpuBMI, /* MOVBE Instruction support required */ CpuMovbe, /* EPT Instructions required */ @@ -186,6 +188,7 @@ typedef union i386_cpu_flags unsigned int cpufma4:1; unsigned int cpuxop:1; unsigned int cpulwp:1; + unsigned int cpubmi:1; unsigned int cpumovbe:1; unsigned int cpuept:1; unsigned int cpurdtscp:1; |