diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2009-12-16 15:43:16 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2009-12-16 15:43:16 +0000 |
commit | 7f399153c6099e976a06562a602f9654f506b64e (patch) | |
tree | 33f7b86622b4c070c7987fdd5bb79b1fc82a0d5c /opcodes/i386-gen.c | |
parent | 76c10ea2bb2559aa32ea4b846d30a606b6f78bff (diff) | |
download | gdb-7f399153c6099e976a06562a602f9654f506b64e.zip gdb-7f399153c6099e976a06562a602f9654f506b64e.tar.gz gdb-7f399153c6099e976a06562a602f9654f506b64e.tar.bz2 |
Replace Vex0F, Vex0F38, Vex0F3A, XOP08, XOP09 and XOP0A with VexOpcode.
gas/
2009-12-16 H.J. Lu <hongjiu.lu@intel.com>
* config/tc-i386.c (build_vex_prefix): Replace vex0f, vex0f38,
vex0f3a, xop08, xop09 and xop0a with vexopcode.
opcodes/
2009-12-16 H.J. Lu <hongjiu.lu@intel.com>
* i386-gen.c (opcode_modifiers): Remove Vex0F, Vex0F38,
Vex0F3A, XOP08, XOP09 and XOP0A. Add VexOpcode.
* i386-opc.h (Vex0F): Removed.
(Vex0F38): Likewise.
(Vex0F3A): Likewise.
(VexOpcode): New.
(VEX0F): Likewise.
(VEX0F38): Likewise.
(VEX0F3A): Likewise.
(XOP08): Defined as a macro.
(XOP09): Likewise.
(XOP0A): Likewise.
(i386_opcode_modifier): Remove vex0f, vex0f38, vex0f3a, xop08,
xop09 and xop0a. Add vexopcode.
* i386-opc.tbl: Replace Vex0F with VexOpcode=0, Vex0F38 with
VexOpcode=1, Vex0F3A with VexOpcode=2, XOP08 with VexOpcode=3,
XOP09 with VexOpcode=4 and XOP0A with VexOpcode=5.
* i386-tbl.h: Regenerated.
Diffstat (limited to 'opcodes/i386-gen.c')
-rw-r--r-- | opcodes/i386-gen.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/opcodes/i386-gen.c b/opcodes/i386-gen.c index 20217c4..3a9f070 100644 --- a/opcodes/i386-gen.c +++ b/opcodes/i386-gen.c @@ -358,12 +358,7 @@ static bitfield opcode_modifiers[] = BITFIELD (VexNDD), BITFIELD (VexLWP), BITFIELD (VexW), - BITFIELD (Vex0F), - BITFIELD (Vex0F38), - BITFIELD (Vex0F3A), - BITFIELD (XOP08), - BITFIELD (XOP09), - BITFIELD (XOP0A), + BITFIELD (VexOpcode), BITFIELD (VexSources), BITFIELD (VexImmExt), BITFIELD (SSE2AVX), |