diff options
author | Jan Beulich <jbeulich@novell.com> | 2018-11-06 11:45:11 +0100 |
---|---|---|
committer | Jan Beulich <jbeulich@suse.com> | 2018-11-06 11:45:11 +0100 |
commit | 9819647a63bfca45a879650ac23fe80f51b89edb (patch) | |
tree | b66dab102a91cab94582794f77b2ec8ae96f2a81 /opcodes/i386-dis.c | |
parent | 58a211d2602df0a39779c84a344b1b4d12deb2d0 (diff) | |
download | gdb-9819647a63bfca45a879650ac23fe80f51b89edb.zip gdb-9819647a63bfca45a879650ac23fe80f51b89edb.tar.gz gdb-9819647a63bfca45a879650ac23fe80f51b89edb.tar.bz2 |
x86: correctly handle VMOVD with EVEX.W set outside of 64-bit mode
For the flavors having a GPR operand EVEX.W is ignored outside of 64-bit
mode. The mnemonic should therefore not be KMOVQ, the GPR operand should
not name a non-existing 64-bit register, just like is already the case
for the AVX counterparts, and the Disp8 scaling factor should be 4
rather than 8.
Diffstat (limited to 'opcodes/i386-dis.c')
-rw-r--r-- | opcodes/i386-dis.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/opcodes/i386-dis.c b/opcodes/i386-dis.c index f3fbf19..3f3fd36 100644 --- a/opcodes/i386-dis.c +++ b/opcodes/i386-dis.c @@ -2100,7 +2100,6 @@ enum EVEX_W_0F6B_P_2, EVEX_W_0F6C_P_2, EVEX_W_0F6D_P_2, - EVEX_W_0F6E_P_2, EVEX_W_0F6F_P_1, EVEX_W_0F6F_P_2, EVEX_W_0F6F_P_3, @@ -2121,7 +2120,6 @@ enum EVEX_W_0F7B_P_2, EVEX_W_0F7B_P_3, EVEX_W_0F7E_P_1, - EVEX_W_0F7E_P_2, EVEX_W_0F7F_P_1, EVEX_W_0F7F_P_2, EVEX_W_0F7F_P_3, |