diff options
author | Jan Beulich <jbeulich@suse.com> | 2021-03-10 08:18:24 +0100 |
---|---|---|
committer | Jan Beulich <jbeulich@suse.com> | 2021-03-10 08:18:24 +0100 |
commit | 066f82b96a4902b9f4f76dfc8d24f8d73ceeef0f (patch) | |
tree | 8d917b84badb62b27971af72db81d8a05ece397f /opcodes/i386-dis-evex-len.h | |
parent | fc681dd6a1264a1560a711a6b69cb5a229d2316a (diff) | |
download | gdb-066f82b96a4902b9f4f76dfc8d24f8d73ceeef0f.zip gdb-066f82b96a4902b9f4f76dfc8d24f8d73ceeef0f.tar.gz gdb-066f82b96a4902b9f4f76dfc8d24f8d73ceeef0f.tar.bz2 |
x86: reuse VEX entries for EVEX vperm{q,pd}
By matching VEX decode order (L before W), some EVEX entries can refer
back to VEX ones instead of carrying duplicates.
Diffstat (limited to 'opcodes/i386-dis-evex-len.h')
-rw-r--r-- | opcodes/i386-dis-evex-len.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/opcodes/i386-dis-evex-len.h b/opcodes/i386-dis-evex-len.h index cef8ad9..01a8ee5 100644 --- a/opcodes/i386-dis-evex-len.h +++ b/opcodes/i386-dis-evex-len.h @@ -92,18 +92,18 @@ static const struct dis386 evex_len_table[][3] = { { VEX_W_TABLE (EVEX_W_0F38C7_M_0_L_2) }, }, - /* EVEX_LEN_0F3A00_W_1 */ + /* EVEX_LEN_0F3A00 */ { { Bad_Opcode }, - { "vpermq", { XM, EXx, Ib }, PREFIX_DATA }, - { "vpermq", { XM, EXx, Ib }, PREFIX_DATA }, + { VEX_W_TABLE (VEX_W_0F3A00_L_1) }, + { VEX_W_TABLE (VEX_W_0F3A00_L_1) }, }, - /* EVEX_LEN_0F3A01_W_1 */ + /* EVEX_LEN_0F3A01 */ { { Bad_Opcode }, - { "vpermpd", { XM, EXx, Ib }, PREFIX_DATA }, - { "vpermpd", { XM, EXx, Ib }, PREFIX_DATA }, + { VEX_W_TABLE (VEX_W_0F3A01_L_1) }, + { VEX_W_TABLE (VEX_W_0F3A01_L_1) }, }, /* EVEX_LEN_0F3A14 */ |