Line 1... |
Line 1... |
/* Print i386 instructions for GDB, the GNU debugger.
|
/* Print i386 instructions for GDB, the GNU debugger.
|
Copyright 1988, 1989, 1991, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
|
Copyright 1988, 1989, 1991, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
|
2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
|
2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
|
|
Free Software Foundation, Inc.
|
|
|
This file is part of the GNU opcodes library.
|
This file is part of the GNU opcodes library.
|
|
|
This library is free software; you can redistribute it and/or modify
|
This library is free software; you can redistribute it and/or modify
|
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
Line 51... |
Line 52... |
static int putop (const char *, int);
|
static int putop (const char *, int);
|
static void oappend (const char *);
|
static void oappend (const char *);
|
static void append_seg (void);
|
static void append_seg (void);
|
static void OP_indirE (int, int);
|
static void OP_indirE (int, int);
|
static void print_operand_value (char *, int, bfd_vma);
|
static void print_operand_value (char *, int, bfd_vma);
|
static void OP_E_extended (int, int, int);
|
static void OP_E_register (int, int);
|
|
static void OP_E_memory (int, int);
|
|
static void OP_E_extended (int, int);
|
static void print_displacement (char *, bfd_vma);
|
static void print_displacement (char *, bfd_vma);
|
static void OP_E (int, int);
|
static void OP_E (int, int);
|
static void OP_G (int, int);
|
static void OP_G (int, int);
|
static bfd_vma get64 (void);
|
static bfd_vma get64 (void);
|
static bfd_signed_vma get32 (void);
|
static bfd_signed_vma get32 (void);
|
Line 87... |
Line 90... |
static void OP_EMC (int,int);
|
static void OP_EMC (int,int);
|
static void OP_MXC (int,int);
|
static void OP_MXC (int,int);
|
static void OP_MS (int, int);
|
static void OP_MS (int, int);
|
static void OP_XS (int, int);
|
static void OP_XS (int, int);
|
static void OP_M (int, int);
|
static void OP_M (int, int);
|
|
static void OP_VEX (int, int);
|
|
static void OP_VEX_FMA (int, int);
|
|
static void OP_EX_Vex (int, int);
|
|
static void OP_EX_VexW (int, int);
|
|
static void OP_XMM_Vex (int, int);
|
|
static void OP_XMM_VexW (int, int);
|
|
static void OP_REG_VexI4 (int, int);
|
|
static void PCLMUL_Fixup (int, int);
|
|
static void VEXI4_Fixup (int, int);
|
|
static void VZERO_Fixup (int, int);
|
|
static void VCMP_Fixup (int, int);
|
static void OP_0f07 (int, int);
|
static void OP_0f07 (int, int);
|
static void OP_Monitor (int, int);
|
static void OP_Monitor (int, int);
|
static void OP_Mwait (int, int);
|
static void OP_Mwait (int, int);
|
static void NOP_Fixup1 (int, int);
|
static void NOP_Fixup1 (int, int);
|
static void NOP_Fixup2 (int, int);
|
static void NOP_Fixup2 (int, int);
|
Line 99... |
Line 113... |
static void BadOp (void);
|
static void BadOp (void);
|
static void REP_Fixup (int, int);
|
static void REP_Fixup (int, int);
|
static void CMPXCHG8B_Fixup (int, int);
|
static void CMPXCHG8B_Fixup (int, int);
|
static void XMM_Fixup (int, int);
|
static void XMM_Fixup (int, int);
|
static void CRC32_Fixup (int, int);
|
static void CRC32_Fixup (int, int);
|
static void print_drex_arg (unsigned int, int, int);
|
|
static void OP_DREX4 (int, int);
|
static void MOVBE_Fixup (int, int);
|
static void OP_DREX3 (int, int);
|
|
static void OP_DREX_ICMP (int, int);
|
|
static void OP_DREX_FCMP (int, int);
|
|
|
|
struct dis_private {
|
struct dis_private {
|
/* Points to first byte not fetched. */
|
/* Points to first byte not fetched. */
|
bfd_byte *max_fetched;
|
bfd_byte *max_fetched;
|
bfd_byte the_buffer[MAX_MNEM_SIZE];
|
bfd_byte the_buffer[MAX_MNEM_SIZE];
|
Line 130... |
Line 141... |
|
|
/* REX prefix the current instruction. See below. */
|
/* REX prefix the current instruction. See below. */
|
static int rex;
|
static int rex;
|
/* Bits of REX we've already used. */
|
/* Bits of REX we've already used. */
|
static int rex_used;
|
static int rex_used;
|
|
/* Original REX prefix. */
|
|
static int rex_original;
|
|
/* REX bits in original REX prefix ignored. It may not be the same
|
|
as rex_original since some bits may not be ignored. */
|
|
static int rex_ignored;
|
/* Mark parts used in the REX prefix. When we are testing for
|
/* Mark parts used in the REX prefix. When we are testing for
|
empty prefix (for 8bit register REX extension), just mask it
|
empty prefix (for 8bit register REX extension), just mask it
|
out. Otherwise test for REX bit is excuse for existence of REX
|
out. Otherwise test for REX bit is excuse for existence of REX
|
only in case value is nonzero. */
|
only in case value is nonzero. */
|
#define USED_REX(value) \
|
#define USED_REX(value) \
|
Line 145... |
Line 161... |
} \
|
} \
|
else \
|
else \
|
rex_used |= REX_OPCODE; \
|
rex_used |= REX_OPCODE; \
|
}
|
}
|
|
|
/* Special 'registers' for DREX handling */
|
|
#define DREX_REG_UNKNOWN 1000 /* not initialized */
|
|
#define DREX_REG_MEMORY 1001 /* use MODRM/SIB/OFFSET memory */
|
|
|
|
/* The DREX byte has the following fields:
|
|
Bits 7-4 -- DREX.Dest, xmm destination register
|
|
Bit 3 -- DREX.OC0, operand config bit defines operand order
|
|
Bit 2 -- DREX.R, equivalent to REX_R bit, to extend ModRM register
|
|
Bit 1 -- DREX.X, equivalent to REX_X bit, to extend SIB index field
|
|
Bit 0 -- DREX.W, equivalent to REX_B bit, to extend ModRM r/m field,
|
|
SIB base field, or opcode reg field. */
|
|
#define DREX_XMM(drex) ((drex >> 4) & 0xf)
|
|
#define DREX_OC0(drex) ((drex >> 3) & 0x1)
|
|
|
|
/* Flags for prefixes which we somehow handled when printing the
|
/* Flags for prefixes which we somehow handled when printing the
|
current instruction. */
|
current instruction. */
|
static int used_prefixes;
|
static int used_prefixes;
|
|
|
/* Flags stored in PREFIXES. */
|
/* Flags stored in PREFIXES. */
|
Line 216... |
Line 218... |
}
|
}
|
|
|
#define XX { NULL, 0 }
|
#define XX { NULL, 0 }
|
|
|
#define Eb { OP_E, b_mode }
|
#define Eb { OP_E, b_mode }
|
|
#define EbS { OP_E, b_swap_mode }
|
#define Ev { OP_E, v_mode }
|
#define Ev { OP_E, v_mode }
|
|
#define EvS { OP_E, v_swap_mode }
|
#define Ed { OP_E, d_mode }
|
#define Ed { OP_E, d_mode }
|
#define Edq { OP_E, dq_mode }
|
#define Edq { OP_E, dq_mode }
|
#define Edqw { OP_E, dqw_mode }
|
#define Edqw { OP_E, dqw_mode }
|
#define Edqb { OP_E, dqb_mode }
|
#define Edqb { OP_E, dqb_mode }
|
#define Edqd { OP_E, dqd_mode }
|
#define Edqd { OP_E, dqd_mode }
|
Line 232... |
Line 236... |
#define Ew { OP_E, w_mode }
|
#define Ew { OP_E, w_mode }
|
#define M { OP_M, 0 } /* lea, lgdt, etc. */
|
#define M { OP_M, 0 } /* lea, lgdt, etc. */
|
#define Ma { OP_M, a_mode }
|
#define Ma { OP_M, a_mode }
|
#define Mb { OP_M, b_mode }
|
#define Mb { OP_M, b_mode }
|
#define Md { OP_M, d_mode }
|
#define Md { OP_M, d_mode }
|
|
#define Mo { OP_M, o_mode }
|
#define Mp { OP_M, f_mode } /* 32 or 48 bit memory operand for LDS, LES etc */
|
#define Mp { OP_M, f_mode } /* 32 or 48 bit memory operand for LDS, LES etc */
|
#define Mq { OP_M, q_mode }
|
#define Mq { OP_M, q_mode }
|
#define Mx { OP_M, x_mode }
|
#define Mx { OP_M, x_mode }
|
|
#define Mxmm { OP_M, xmm_mode }
|
#define Gb { OP_G, b_mode }
|
#define Gb { OP_G, b_mode }
|
#define Gv { OP_G, v_mode }
|
#define Gv { OP_G, v_mode }
|
#define Gd { OP_G, d_mode }
|
#define Gd { OP_G, d_mode }
|
#define Gdq { OP_G, dq_mode }
|
#define Gdq { OP_G, dq_mode }
|
#define Gm { OP_G, m_mode }
|
#define Gm { OP_G, m_mode }
|
Line 327... |
Line 333... |
#define fs { OP_REG, fs_reg }
|
#define fs { OP_REG, fs_reg }
|
#define gs { OP_REG, gs_reg }
|
#define gs { OP_REG, gs_reg }
|
|
|
#define MX { OP_MMX, 0 }
|
#define MX { OP_MMX, 0 }
|
#define XM { OP_XMM, 0 }
|
#define XM { OP_XMM, 0 }
|
|
#define XMM { OP_XMM, xmm_mode }
|
#define EM { OP_EM, v_mode }
|
#define EM { OP_EM, v_mode }
|
|
#define EMS { OP_EM, v_swap_mode }
|
#define EMd { OP_EM, d_mode }
|
#define EMd { OP_EM, d_mode }
|
#define EMx { OP_EM, x_mode }
|
#define EMx { OP_EM, x_mode }
|
#define EXw { OP_EX, w_mode }
|
#define EXw { OP_EX, w_mode }
|
#define EXd { OP_EX, d_mode }
|
#define EXd { OP_EX, d_mode }
|
|
#define EXdS { OP_EX, d_swap_mode }
|
#define EXq { OP_EX, q_mode }
|
#define EXq { OP_EX, q_mode }
|
|
#define EXqS { OP_EX, q_swap_mode }
|
#define EXx { OP_EX, x_mode }
|
#define EXx { OP_EX, x_mode }
|
|
#define EXxS { OP_EX, x_swap_mode }
|
|
#define EXxmm { OP_EX, xmm_mode }
|
|
#define EXxmmq { OP_EX, xmmq_mode }
|
|
#define EXymmq { OP_EX, ymmq_mode }
|
|
#define EXVexWdq { OP_EX, vex_w_dq_mode }
|
#define MS { OP_MS, v_mode }
|
#define MS { OP_MS, v_mode }
|
#define XS { OP_XS, v_mode }
|
#define XS { OP_XS, v_mode }
|
#define EMCq { OP_EMC, q_mode }
|
#define EMCq { OP_EMC, q_mode }
|
#define MXC { OP_MXC, 0 }
|
#define MXC { OP_MXC, 0 }
|
#define OPSUF { OP_3DNowSuffix, 0 }
|
#define OPSUF { OP_3DNowSuffix, 0 }
|
#define CMP { CMP_Fixup, 0 }
|
#define CMP { CMP_Fixup, 0 }
|
#define XMM0 { XMM_Fixup, 0 }
|
#define XMM0 { XMM_Fixup, 0 }
|
|
|
|
#define Vex { OP_VEX, vex_mode }
|
|
#define Vex128 { OP_VEX, vex128_mode }
|
|
#define Vex256 { OP_VEX, vex256_mode }
|
|
#define VexI4 { VEXI4_Fixup, 0}
|
|
#define VexFMA { OP_VEX_FMA, vex_mode }
|
|
#define Vex128FMA { OP_VEX_FMA, vex128_mode }
|
|
#define EXdVex { OP_EX_Vex, d_mode }
|
|
#define EXdVexS { OP_EX_Vex, d_swap_mode }
|
|
#define EXqVex { OP_EX_Vex, q_mode }
|
|
#define EXqVexS { OP_EX_Vex, q_swap_mode }
|
|
#define EXVexW { OP_EX_VexW, x_mode }
|
|
#define EXdVexW { OP_EX_VexW, d_mode }
|
|
#define EXqVexW { OP_EX_VexW, q_mode }
|
|
#define XMVex { OP_XMM_Vex, 0 }
|
|
#define XMVexW { OP_XMM_VexW, 0 }
|
|
#define XMVexI4 { OP_REG_VexI4, x_mode }
|
|
#define PCLMUL { PCLMUL_Fixup, 0 }
|
|
#define VZERO { VZERO_Fixup, 0 }
|
|
#define VCMP { VCMP_Fixup, 0 }
|
|
|
/* Used handle "rep" prefix for string instructions. */
|
/* Used handle "rep" prefix for string instructions. */
|
#define Xbr { REP_Fixup, eSI_reg }
|
#define Xbr { REP_Fixup, eSI_reg }
|
#define Xvr { REP_Fixup, eSI_reg }
|
#define Xvr { REP_Fixup, eSI_reg }
|
#define Ybr { REP_Fixup, eDI_reg }
|
#define Ybr { REP_Fixup, eDI_reg }
|
#define Yvr { REP_Fixup, eDI_reg }
|
#define Yvr { REP_Fixup, eDI_reg }
|
Line 362... |
Line 397... |
#define AFLAG 2
|
#define AFLAG 2
|
#define DFLAG 1
|
#define DFLAG 1
|
|
|
/* byte operand */
|
/* byte operand */
|
#define b_mode 1
|
#define b_mode 1
|
|
/* byte operand with operand swapped */
|
|
#define b_swap_mode (b_mode + 1)
|
/* operand size depends on prefixes */
|
/* operand size depends on prefixes */
|
#define v_mode (b_mode + 1)
|
#define v_mode (b_swap_mode + 1)
|
|
/* operand size depends on prefixes with operand swapped */
|
|
#define v_swap_mode (v_mode + 1)
|
/* word operand */
|
/* word operand */
|
#define w_mode (v_mode + 1)
|
#define w_mode (v_swap_mode + 1)
|
/* double word operand */
|
/* double word operand */
|
#define d_mode (w_mode + 1)
|
#define d_mode (w_mode + 1)
|
|
/* double word operand with operand swapped */
|
|
#define d_swap_mode (d_mode + 1)
|
/* quad word operand */
|
/* quad word operand */
|
#define q_mode (d_mode + 1)
|
#define q_mode (d_swap_mode + 1)
|
|
/* quad word operand with operand swapped */
|
|
#define q_swap_mode (q_mode + 1)
|
/* ten-byte operand */
|
/* ten-byte operand */
|
#define t_mode (q_mode + 1)
|
#define t_mode (q_swap_mode + 1)
|
/* 16-byte XMM operand */
|
/* 16-byte XMM or 32-byte YMM operand */
|
#define x_mode (t_mode + 1)
|
#define x_mode (t_mode + 1)
|
|
/* 16-byte XMM or 32-byte YMM operand with operand swapped */
|
|
#define x_swap_mode (x_mode + 1)
|
|
/* 16-byte XMM operand */
|
|
#define xmm_mode (x_swap_mode + 1)
|
|
/* 16-byte XMM or quad word operand */
|
|
#define xmmq_mode (xmm_mode + 1)
|
|
/* 32-byte YMM or quad word operand */
|
|
#define ymmq_mode (xmmq_mode + 1)
|
/* d_mode in 32bit, q_mode in 64bit mode. */
|
/* d_mode in 32bit, q_mode in 64bit mode. */
|
#define m_mode (x_mode + 1)
|
#define m_mode (ymmq_mode + 1)
|
/* pair of v_mode operands */
|
/* pair of v_mode operands */
|
#define a_mode (m_mode + 1)
|
#define a_mode (m_mode + 1)
|
#define cond_jump_mode (a_mode + 1)
|
#define cond_jump_mode (a_mode + 1)
|
#define loop_jcxz_mode (cond_jump_mode + 1)
|
#define loop_jcxz_mode (cond_jump_mode + 1)
|
/* operand size depends on REX prefixes. */
|
/* operand size depends on REX prefixes. */
|
Line 397... |
Line 448... |
#define o_mode (z_mode + 1)
|
#define o_mode (z_mode + 1)
|
/* registers like dq_mode, memory like b_mode. */
|
/* registers like dq_mode, memory like b_mode. */
|
#define dqb_mode (o_mode + 1)
|
#define dqb_mode (o_mode + 1)
|
/* registers like dq_mode, memory like d_mode. */
|
/* registers like dq_mode, memory like d_mode. */
|
#define dqd_mode (dqb_mode + 1)
|
#define dqd_mode (dqb_mode + 1)
|
|
/* normal vex mode */
|
|
#define vex_mode (dqd_mode + 1)
|
|
/* 128bit vex mode */
|
|
#define vex128_mode (vex_mode + 1)
|
|
/* 256bit vex mode */
|
|
#define vex256_mode (vex128_mode + 1)
|
|
/* operand size depends on the VEX.W bit. */
|
|
#define vex_w_dq_mode (vex256_mode + 1)
|
|
|
#define es_reg (dqd_mode + 1)
|
#define es_reg (vex_w_dq_mode + 1)
|
#define cs_reg (es_reg + 1)
|
#define cs_reg (es_reg + 1)
|
#define ss_reg (cs_reg + 1)
|
#define ss_reg (cs_reg + 1)
|
#define ds_reg (ss_reg + 1)
|
#define ds_reg (ss_reg + 1)
|
#define fs_reg (ds_reg + 1)
|
#define fs_reg (ds_reg + 1)
|
#define gs_reg (fs_reg + 1)
|
#define gs_reg (fs_reg + 1)
|
Line 446... |
Line 505... |
#define z_mode_ax_reg (rDI_reg + 1)
|
#define z_mode_ax_reg (rDI_reg + 1)
|
#define indir_dx_reg (z_mode_ax_reg + 1)
|
#define indir_dx_reg (z_mode_ax_reg + 1)
|
|
|
#define MAX_BYTEMODE indir_dx_reg
|
#define MAX_BYTEMODE indir_dx_reg
|
|
|
/* Flags that are OR'ed into the bytemode field to pass extra
|
|
information. */
|
|
#define DREX_OC1 0x10000 /* OC1 bit set */
|
|
#define DREX_NO_OC0 0x20000 /* OC0 bit not used */
|
|
#define DREX_MASK 0x40000 /* mask to delete */
|
|
|
|
#if MAX_BYTEMODE >= DREX_OC1
|
|
#error MAX_BYTEMODE must be less than DREX_OC1
|
|
#endif
|
|
|
|
#define FLOATCODE 1
|
#define FLOATCODE 1
|
#define USE_REG_TABLE (FLOATCODE + 1)
|
#define USE_REG_TABLE (FLOATCODE + 1)
|
#define USE_MOD_TABLE (USE_REG_TABLE + 1)
|
#define USE_MOD_TABLE (USE_REG_TABLE + 1)
|
#define USE_RM_TABLE (USE_MOD_TABLE + 1)
|
#define USE_RM_TABLE (USE_MOD_TABLE + 1)
|
#define USE_PREFIX_TABLE (USE_RM_TABLE + 1)
|
#define USE_PREFIX_TABLE (USE_RM_TABLE + 1)
|
#define USE_X86_64_TABLE (USE_PREFIX_TABLE + 1)
|
#define USE_X86_64_TABLE (USE_PREFIX_TABLE + 1)
|
#define USE_3BYTE_TABLE (USE_X86_64_TABLE + 1)
|
#define USE_3BYTE_TABLE (USE_X86_64_TABLE + 1)
|
|
#define USE_VEX_C4_TABLE (USE_3BYTE_TABLE + 1)
|
|
#define USE_VEX_C5_TABLE (USE_VEX_C4_TABLE + 1)
|
|
#define USE_VEX_LEN_TABLE (USE_VEX_C5_TABLE + 1)
|
|
|
#define FLOAT NULL, { { NULL, FLOATCODE } }
|
#define FLOAT NULL, { { NULL, FLOATCODE } }
|
|
|
#define DIS386(T, I) NULL, { { NULL, (T)}, { NULL, (I) } }
|
#define DIS386(T, I) NULL, { { NULL, (T)}, { NULL, (I) } }
|
#define REG_TABLE(I) DIS386 (USE_REG_TABLE, (I))
|
#define REG_TABLE(I) DIS386 (USE_REG_TABLE, (I))
|
#define MOD_TABLE(I) DIS386 (USE_MOD_TABLE, (I))
|
#define MOD_TABLE(I) DIS386 (USE_MOD_TABLE, (I))
|
#define RM_TABLE(I) DIS386 (USE_RM_TABLE, (I))
|
#define RM_TABLE(I) DIS386 (USE_RM_TABLE, (I))
|
#define PREFIX_TABLE(I) DIS386 (USE_PREFIX_TABLE, (I))
|
#define PREFIX_TABLE(I) DIS386 (USE_PREFIX_TABLE, (I))
|
#define X86_64_TABLE(I) DIS386 (USE_X86_64_TABLE, (I))
|
#define X86_64_TABLE(I) DIS386 (USE_X86_64_TABLE, (I))
|
#define THREE_BYTE_TABLE(I) DIS386 (USE_3BYTE_TABLE, (I))
|
#define THREE_BYTE_TABLE(I) DIS386 (USE_3BYTE_TABLE, (I))
|
|
#define VEX_C4_TABLE(I) DIS386 (USE_VEX_C4_TABLE, (I))
|
|
#define VEX_C5_TABLE(I) DIS386 (USE_VEX_C5_TABLE, (I))
|
|
#define VEX_LEN_TABLE(I) DIS386 (USE_VEX_LEN_TABLE, (I))
|
|
|
#define REG_80 0
|
#define REG_80 0
|
#define REG_81 (REG_80 + 1)
|
#define REG_81 (REG_80 + 1)
|
#define REG_82 (REG_81 + 1)
|
#define REG_82 (REG_81 + 1)
|
#define REG_8F (REG_82 + 1)
|
#define REG_8F (REG_82 + 1)
|
Line 502... |
Line 558... |
#define REG_0FA6 (REG_0F73 + 1)
|
#define REG_0FA6 (REG_0F73 + 1)
|
#define REG_0FA7 (REG_0FA6 + 1)
|
#define REG_0FA7 (REG_0FA6 + 1)
|
#define REG_0FAE (REG_0FA7 + 1)
|
#define REG_0FAE (REG_0FA7 + 1)
|
#define REG_0FBA (REG_0FAE + 1)
|
#define REG_0FBA (REG_0FAE + 1)
|
#define REG_0FC7 (REG_0FBA + 1)
|
#define REG_0FC7 (REG_0FBA + 1)
|
|
#define REG_VEX_71 (REG_0FC7 + 1)
|
|
#define REG_VEX_72 (REG_VEX_71 + 1)
|
|
#define REG_VEX_73 (REG_VEX_72 + 1)
|
|
#define REG_VEX_AE (REG_VEX_73 + 1)
|
|
|
#define MOD_8D 0
|
#define MOD_8D 0
|
#define MOD_0F01_REG_0 (MOD_8D + 1)
|
#define MOD_0F01_REG_0 (MOD_8D + 1)
|
#define MOD_0F01_REG_1 (MOD_0F01_REG_0 + 1)
|
#define MOD_0F01_REG_1 (MOD_0F01_REG_0 + 1)
|
#define MOD_0F01_REG_2 (MOD_0F01_REG_1 + 1)
|
#define MOD_0F01_REG_2 (MOD_0F01_REG_1 + 1)
|
Line 558... |
Line 618... |
#define MOD_0FF0_PREFIX_3 (MOD_0FE7_PREFIX_2 + 1)
|
#define MOD_0FF0_PREFIX_3 (MOD_0FE7_PREFIX_2 + 1)
|
#define MOD_0F382A_PREFIX_2 (MOD_0FF0_PREFIX_3 + 1)
|
#define MOD_0F382A_PREFIX_2 (MOD_0FF0_PREFIX_3 + 1)
|
#define MOD_62_32BIT (MOD_0F382A_PREFIX_2 + 1)
|
#define MOD_62_32BIT (MOD_0F382A_PREFIX_2 + 1)
|
#define MOD_C4_32BIT (MOD_62_32BIT + 1)
|
#define MOD_C4_32BIT (MOD_62_32BIT + 1)
|
#define MOD_C5_32BIT (MOD_C4_32BIT + 1)
|
#define MOD_C5_32BIT (MOD_C4_32BIT + 1)
|
|
#define MOD_VEX_12_PREFIX_0 (MOD_C5_32BIT + 1)
|
|
#define MOD_VEX_13 (MOD_VEX_12_PREFIX_0 + 1)
|
|
#define MOD_VEX_16_PREFIX_0 (MOD_VEX_13 + 1)
|
|
#define MOD_VEX_17 (MOD_VEX_16_PREFIX_0 + 1)
|
|
#define MOD_VEX_2B (MOD_VEX_17 + 1)
|
|
#define MOD_VEX_51 (MOD_VEX_2B + 1)
|
|
#define MOD_VEX_71_REG_2 (MOD_VEX_51 + 1)
|
|
#define MOD_VEX_71_REG_4 (MOD_VEX_71_REG_2 + 1)
|
|
#define MOD_VEX_71_REG_6 (MOD_VEX_71_REG_4 + 1)
|
|
#define MOD_VEX_72_REG_2 (MOD_VEX_71_REG_6 + 1)
|
|
#define MOD_VEX_72_REG_4 (MOD_VEX_72_REG_2 + 1)
|
|
#define MOD_VEX_72_REG_6 (MOD_VEX_72_REG_4 + 1)
|
|
#define MOD_VEX_73_REG_2 (MOD_VEX_72_REG_6 + 1)
|
|
#define MOD_VEX_73_REG_3 (MOD_VEX_73_REG_2 + 1)
|
|
#define MOD_VEX_73_REG_6 (MOD_VEX_73_REG_3 + 1)
|
|
#define MOD_VEX_73_REG_7 (MOD_VEX_73_REG_6 + 1)
|
|
#define MOD_VEX_AE_REG_2 (MOD_VEX_73_REG_7 + 1)
|
|
#define MOD_VEX_AE_REG_3 (MOD_VEX_AE_REG_2 + 1)
|
|
#define MOD_VEX_D7_PREFIX_2 (MOD_VEX_AE_REG_3 + 1)
|
|
#define MOD_VEX_E7_PREFIX_2 (MOD_VEX_D7_PREFIX_2 + 1)
|
|
#define MOD_VEX_F0_PREFIX_3 (MOD_VEX_E7_PREFIX_2 + 1)
|
|
#define MOD_VEX_3818_PREFIX_2 (MOD_VEX_F0_PREFIX_3 + 1)
|
|
#define MOD_VEX_3819_PREFIX_2 (MOD_VEX_3818_PREFIX_2 + 1)
|
|
#define MOD_VEX_381A_PREFIX_2 (MOD_VEX_3819_PREFIX_2 + 1)
|
|
#define MOD_VEX_382A_PREFIX_2 (MOD_VEX_381A_PREFIX_2 + 1)
|
|
#define MOD_VEX_382C_PREFIX_2 (MOD_VEX_382A_PREFIX_2 + 1)
|
|
#define MOD_VEX_382D_PREFIX_2 (MOD_VEX_382C_PREFIX_2 + 1)
|
|
#define MOD_VEX_382E_PREFIX_2 (MOD_VEX_382D_PREFIX_2 + 1)
|
|
#define MOD_VEX_382F_PREFIX_2 (MOD_VEX_382E_PREFIX_2 + 1)
|
|
|
#define RM_0F01_REG_0 0
|
#define RM_0F01_REG_0 0
|
#define RM_0F01_REG_1 (RM_0F01_REG_0 + 1)
|
#define RM_0F01_REG_1 (RM_0F01_REG_0 + 1)
|
#define RM_0F01_REG_2 (RM_0F01_REG_1 + 1)
|
#define RM_0F01_REG_2 (RM_0F01_REG_1 + 1)
|
#define RM_0F01_REG_3 (RM_0F01_REG_2 + 1)
|
#define RM_0F01_REG_3 (RM_0F01_REG_2 + 1)
|
Line 647... |
Line 736... |
#define PREFIX_0F383D (PREFIX_0F383C + 1)
|
#define PREFIX_0F383D (PREFIX_0F383C + 1)
|
#define PREFIX_0F383E (PREFIX_0F383D + 1)
|
#define PREFIX_0F383E (PREFIX_0F383D + 1)
|
#define PREFIX_0F383F (PREFIX_0F383E + 1)
|
#define PREFIX_0F383F (PREFIX_0F383E + 1)
|
#define PREFIX_0F3840 (PREFIX_0F383F + 1)
|
#define PREFIX_0F3840 (PREFIX_0F383F + 1)
|
#define PREFIX_0F3841 (PREFIX_0F3840 + 1)
|
#define PREFIX_0F3841 (PREFIX_0F3840 + 1)
|
#define PREFIX_0F38F0 (PREFIX_0F3841 + 1)
|
#define PREFIX_0F3880 (PREFIX_0F3841 + 1)
|
|
#define PREFIX_0F3881 (PREFIX_0F3880 + 1)
|
|
#define PREFIX_0F38DB (PREFIX_0F3881 + 1)
|
|
#define PREFIX_0F38DC (PREFIX_0F38DB + 1)
|
|
#define PREFIX_0F38DD (PREFIX_0F38DC + 1)
|
|
#define PREFIX_0F38DE (PREFIX_0F38DD + 1)
|
|
#define PREFIX_0F38DF (PREFIX_0F38DE + 1)
|
|
#define PREFIX_0F38F0 (PREFIX_0F38DF + 1)
|
#define PREFIX_0F38F1 (PREFIX_0F38F0 + 1)
|
#define PREFIX_0F38F1 (PREFIX_0F38F0 + 1)
|
#define PREFIX_0F3A08 (PREFIX_0F38F1 + 1)
|
#define PREFIX_0F3A08 (PREFIX_0F38F1 + 1)
|
#define PREFIX_0F3A09 (PREFIX_0F3A08 + 1)
|
#define PREFIX_0F3A09 (PREFIX_0F3A08 + 1)
|
#define PREFIX_0F3A0A (PREFIX_0F3A09 + 1)
|
#define PREFIX_0F3A0A (PREFIX_0F3A09 + 1)
|
#define PREFIX_0F3A0B (PREFIX_0F3A0A + 1)
|
#define PREFIX_0F3A0B (PREFIX_0F3A0A + 1)
|
Line 666... |
Line 762... |
#define PREFIX_0F3A21 (PREFIX_0F3A20 + 1)
|
#define PREFIX_0F3A21 (PREFIX_0F3A20 + 1)
|
#define PREFIX_0F3A22 (PREFIX_0F3A21 + 1)
|
#define PREFIX_0F3A22 (PREFIX_0F3A21 + 1)
|
#define PREFIX_0F3A40 (PREFIX_0F3A22 + 1)
|
#define PREFIX_0F3A40 (PREFIX_0F3A22 + 1)
|
#define PREFIX_0F3A41 (PREFIX_0F3A40 + 1)
|
#define PREFIX_0F3A41 (PREFIX_0F3A40 + 1)
|
#define PREFIX_0F3A42 (PREFIX_0F3A41 + 1)
|
#define PREFIX_0F3A42 (PREFIX_0F3A41 + 1)
|
#define PREFIX_0F3A60 (PREFIX_0F3A42 + 1)
|
#define PREFIX_0F3A44 (PREFIX_0F3A42 + 1)
|
|
#define PREFIX_0F3A60 (PREFIX_0F3A44 + 1)
|
#define PREFIX_0F3A61 (PREFIX_0F3A60 + 1)
|
#define PREFIX_0F3A61 (PREFIX_0F3A60 + 1)
|
#define PREFIX_0F3A62 (PREFIX_0F3A61 + 1)
|
#define PREFIX_0F3A62 (PREFIX_0F3A61 + 1)
|
#define PREFIX_0F3A63 (PREFIX_0F3A62 + 1)
|
#define PREFIX_0F3A63 (PREFIX_0F3A62 + 1)
|
|
#define PREFIX_0F3ADF (PREFIX_0F3A63 + 1)
|
|
#define PREFIX_VEX_10 (PREFIX_0F3ADF + 1)
|
|
#define PREFIX_VEX_11 (PREFIX_VEX_10 + 1)
|
|
#define PREFIX_VEX_12 (PREFIX_VEX_11 + 1)
|
|
#define PREFIX_VEX_16 (PREFIX_VEX_12 + 1)
|
|
#define PREFIX_VEX_2A (PREFIX_VEX_16 + 1)
|
|
#define PREFIX_VEX_2C (PREFIX_VEX_2A + 1)
|
|
#define PREFIX_VEX_2D (PREFIX_VEX_2C + 1)
|
|
#define PREFIX_VEX_2E (PREFIX_VEX_2D + 1)
|
|
#define PREFIX_VEX_2F (PREFIX_VEX_2E + 1)
|
|
#define PREFIX_VEX_51 (PREFIX_VEX_2F + 1)
|
|
#define PREFIX_VEX_52 (PREFIX_VEX_51 + 1)
|
|
#define PREFIX_VEX_53 (PREFIX_VEX_52 + 1)
|
|
#define PREFIX_VEX_58 (PREFIX_VEX_53 + 1)
|
|
#define PREFIX_VEX_59 (PREFIX_VEX_58 + 1)
|
|
#define PREFIX_VEX_5A (PREFIX_VEX_59 + 1)
|
|
#define PREFIX_VEX_5B (PREFIX_VEX_5A + 1)
|
|
#define PREFIX_VEX_5C (PREFIX_VEX_5B + 1)
|
|
#define PREFIX_VEX_5D (PREFIX_VEX_5C + 1)
|
|
#define PREFIX_VEX_5E (PREFIX_VEX_5D + 1)
|
|
#define PREFIX_VEX_5F (PREFIX_VEX_5E + 1)
|
|
#define PREFIX_VEX_60 (PREFIX_VEX_5F + 1)
|
|
#define PREFIX_VEX_61 (PREFIX_VEX_60 + 1)
|
|
#define PREFIX_VEX_62 (PREFIX_VEX_61 + 1)
|
|
#define PREFIX_VEX_63 (PREFIX_VEX_62 + 1)
|
|
#define PREFIX_VEX_64 (PREFIX_VEX_63 + 1)
|
|
#define PREFIX_VEX_65 (PREFIX_VEX_64 + 1)
|
|
#define PREFIX_VEX_66 (PREFIX_VEX_65 + 1)
|
|
#define PREFIX_VEX_67 (PREFIX_VEX_66 + 1)
|
|
#define PREFIX_VEX_68 (PREFIX_VEX_67 + 1)
|
|
#define PREFIX_VEX_69 (PREFIX_VEX_68 + 1)
|
|
#define PREFIX_VEX_6A (PREFIX_VEX_69 + 1)
|
|
#define PREFIX_VEX_6B (PREFIX_VEX_6A + 1)
|
|
#define PREFIX_VEX_6C (PREFIX_VEX_6B + 1)
|
|
#define PREFIX_VEX_6D (PREFIX_VEX_6C + 1)
|
|
#define PREFIX_VEX_6E (PREFIX_VEX_6D + 1)
|
|
#define PREFIX_VEX_6F (PREFIX_VEX_6E + 1)
|
|
#define PREFIX_VEX_70 (PREFIX_VEX_6F + 1)
|
|
#define PREFIX_VEX_71_REG_2 (PREFIX_VEX_70 + 1)
|
|
#define PREFIX_VEX_71_REG_4 (PREFIX_VEX_71_REG_2 + 1)
|
|
#define PREFIX_VEX_71_REG_6 (PREFIX_VEX_71_REG_4 + 1)
|
|
#define PREFIX_VEX_72_REG_2 (PREFIX_VEX_71_REG_6 + 1)
|
|
#define PREFIX_VEX_72_REG_4 (PREFIX_VEX_72_REG_2 + 1)
|
|
#define PREFIX_VEX_72_REG_6 (PREFIX_VEX_72_REG_4 + 1)
|
|
#define PREFIX_VEX_73_REG_2 (PREFIX_VEX_72_REG_6 + 1)
|
|
#define PREFIX_VEX_73_REG_3 (PREFIX_VEX_73_REG_2 + 1)
|
|
#define PREFIX_VEX_73_REG_6 (PREFIX_VEX_73_REG_3 + 1)
|
|
#define PREFIX_VEX_73_REG_7 (PREFIX_VEX_73_REG_6 + 1)
|
|
#define PREFIX_VEX_74 (PREFIX_VEX_73_REG_7 + 1)
|
|
#define PREFIX_VEX_75 (PREFIX_VEX_74 + 1)
|
|
#define PREFIX_VEX_76 (PREFIX_VEX_75 + 1)
|
|
#define PREFIX_VEX_77 (PREFIX_VEX_76 + 1)
|
|
#define PREFIX_VEX_7C (PREFIX_VEX_77 + 1)
|
|
#define PREFIX_VEX_7D (PREFIX_VEX_7C + 1)
|
|
#define PREFIX_VEX_7E (PREFIX_VEX_7D + 1)
|
|
#define PREFIX_VEX_7F (PREFIX_VEX_7E + 1)
|
|
#define PREFIX_VEX_C2 (PREFIX_VEX_7F + 1)
|
|
#define PREFIX_VEX_C4 (PREFIX_VEX_C2 + 1)
|
|
#define PREFIX_VEX_C5 (PREFIX_VEX_C4 + 1)
|
|
#define PREFIX_VEX_D0 (PREFIX_VEX_C5 + 1)
|
|
#define PREFIX_VEX_D1 (PREFIX_VEX_D0 + 1)
|
|
#define PREFIX_VEX_D2 (PREFIX_VEX_D1 + 1)
|
|
#define PREFIX_VEX_D3 (PREFIX_VEX_D2 + 1)
|
|
#define PREFIX_VEX_D4 (PREFIX_VEX_D3 + 1)
|
|
#define PREFIX_VEX_D5 (PREFIX_VEX_D4 + 1)
|
|
#define PREFIX_VEX_D6 (PREFIX_VEX_D5 + 1)
|
|
#define PREFIX_VEX_D7 (PREFIX_VEX_D6 + 1)
|
|
#define PREFIX_VEX_D8 (PREFIX_VEX_D7 + 1)
|
|
#define PREFIX_VEX_D9 (PREFIX_VEX_D8 + 1)
|
|
#define PREFIX_VEX_DA (PREFIX_VEX_D9 + 1)
|
|
#define PREFIX_VEX_DB (PREFIX_VEX_DA + 1)
|
|
#define PREFIX_VEX_DC (PREFIX_VEX_DB + 1)
|
|
#define PREFIX_VEX_DD (PREFIX_VEX_DC + 1)
|
|
#define PREFIX_VEX_DE (PREFIX_VEX_DD + 1)
|
|
#define PREFIX_VEX_DF (PREFIX_VEX_DE + 1)
|
|
#define PREFIX_VEX_E0 (PREFIX_VEX_DF + 1)
|
|
#define PREFIX_VEX_E1 (PREFIX_VEX_E0 + 1)
|
|
#define PREFIX_VEX_E2 (PREFIX_VEX_E1 + 1)
|
|
#define PREFIX_VEX_E3 (PREFIX_VEX_E2 + 1)
|
|
#define PREFIX_VEX_E4 (PREFIX_VEX_E3 + 1)
|
|
#define PREFIX_VEX_E5 (PREFIX_VEX_E4 + 1)
|
|
#define PREFIX_VEX_E6 (PREFIX_VEX_E5 + 1)
|
|
#define PREFIX_VEX_E7 (PREFIX_VEX_E6 + 1)
|
|
#define PREFIX_VEX_E8 (PREFIX_VEX_E7 + 1)
|
|
#define PREFIX_VEX_E9 (PREFIX_VEX_E8 + 1)
|
|
#define PREFIX_VEX_EA (PREFIX_VEX_E9 + 1)
|
|
#define PREFIX_VEX_EB (PREFIX_VEX_EA + 1)
|
|
#define PREFIX_VEX_EC (PREFIX_VEX_EB + 1)
|
|
#define PREFIX_VEX_ED (PREFIX_VEX_EC + 1)
|
|
#define PREFIX_VEX_EE (PREFIX_VEX_ED + 1)
|
|
#define PREFIX_VEX_EF (PREFIX_VEX_EE + 1)
|
|
#define PREFIX_VEX_F0 (PREFIX_VEX_EF + 1)
|
|
#define PREFIX_VEX_F1 (PREFIX_VEX_F0 + 1)
|
|
#define PREFIX_VEX_F2 (PREFIX_VEX_F1 + 1)
|
|
#define PREFIX_VEX_F3 (PREFIX_VEX_F2 + 1)
|
|
#define PREFIX_VEX_F4 (PREFIX_VEX_F3 + 1)
|
|
#define PREFIX_VEX_F5 (PREFIX_VEX_F4 + 1)
|
|
#define PREFIX_VEX_F6 (PREFIX_VEX_F5 + 1)
|
|
#define PREFIX_VEX_F7 (PREFIX_VEX_F6 + 1)
|
|
#define PREFIX_VEX_F8 (PREFIX_VEX_F7 + 1)
|
|
#define PREFIX_VEX_F9 (PREFIX_VEX_F8 + 1)
|
|
#define PREFIX_VEX_FA (PREFIX_VEX_F9 + 1)
|
|
#define PREFIX_VEX_FB (PREFIX_VEX_FA + 1)
|
|
#define PREFIX_VEX_FC (PREFIX_VEX_FB + 1)
|
|
#define PREFIX_VEX_FD (PREFIX_VEX_FC + 1)
|
|
#define PREFIX_VEX_FE (PREFIX_VEX_FD + 1)
|
|
#define PREFIX_VEX_3800 (PREFIX_VEX_FE + 1)
|
|
#define PREFIX_VEX_3801 (PREFIX_VEX_3800 + 1)
|
|
#define PREFIX_VEX_3802 (PREFIX_VEX_3801 + 1)
|
|
#define PREFIX_VEX_3803 (PREFIX_VEX_3802 + 1)
|
|
#define PREFIX_VEX_3804 (PREFIX_VEX_3803 + 1)
|
|
#define PREFIX_VEX_3805 (PREFIX_VEX_3804 + 1)
|
|
#define PREFIX_VEX_3806 (PREFIX_VEX_3805 + 1)
|
|
#define PREFIX_VEX_3807 (PREFIX_VEX_3806 + 1)
|
|
#define PREFIX_VEX_3808 (PREFIX_VEX_3807 + 1)
|
|
#define PREFIX_VEX_3809 (PREFIX_VEX_3808 + 1)
|
|
#define PREFIX_VEX_380A (PREFIX_VEX_3809 + 1)
|
|
#define PREFIX_VEX_380B (PREFIX_VEX_380A + 1)
|
|
#define PREFIX_VEX_380C (PREFIX_VEX_380B + 1)
|
|
#define PREFIX_VEX_380D (PREFIX_VEX_380C + 1)
|
|
#define PREFIX_VEX_380E (PREFIX_VEX_380D + 1)
|
|
#define PREFIX_VEX_380F (PREFIX_VEX_380E + 1)
|
|
#define PREFIX_VEX_3817 (PREFIX_VEX_380F + 1)
|
|
#define PREFIX_VEX_3818 (PREFIX_VEX_3817 + 1)
|
|
#define PREFIX_VEX_3819 (PREFIX_VEX_3818 + 1)
|
|
#define PREFIX_VEX_381A (PREFIX_VEX_3819 + 1)
|
|
#define PREFIX_VEX_381C (PREFIX_VEX_381A + 1)
|
|
#define PREFIX_VEX_381D (PREFIX_VEX_381C + 1)
|
|
#define PREFIX_VEX_381E (PREFIX_VEX_381D + 1)
|
|
#define PREFIX_VEX_3820 (PREFIX_VEX_381E + 1)
|
|
#define PREFIX_VEX_3821 (PREFIX_VEX_3820 + 1)
|
|
#define PREFIX_VEX_3822 (PREFIX_VEX_3821 + 1)
|
|
#define PREFIX_VEX_3823 (PREFIX_VEX_3822 + 1)
|
|
#define PREFIX_VEX_3824 (PREFIX_VEX_3823 + 1)
|
|
#define PREFIX_VEX_3825 (PREFIX_VEX_3824 + 1)
|
|
#define PREFIX_VEX_3828 (PREFIX_VEX_3825 + 1)
|
|
#define PREFIX_VEX_3829 (PREFIX_VEX_3828 + 1)
|
|
#define PREFIX_VEX_382A (PREFIX_VEX_3829 + 1)
|
|
#define PREFIX_VEX_382B (PREFIX_VEX_382A + 1)
|
|
#define PREFIX_VEX_382C (PREFIX_VEX_382B + 1)
|
|
#define PREFIX_VEX_382D (PREFIX_VEX_382C + 1)
|
|
#define PREFIX_VEX_382E (PREFIX_VEX_382D + 1)
|
|
#define PREFIX_VEX_382F (PREFIX_VEX_382E + 1)
|
|
#define PREFIX_VEX_3830 (PREFIX_VEX_382F + 1)
|
|
#define PREFIX_VEX_3831 (PREFIX_VEX_3830 + 1)
|
|
#define PREFIX_VEX_3832 (PREFIX_VEX_3831 + 1)
|
|
#define PREFIX_VEX_3833 (PREFIX_VEX_3832 + 1)
|
|
#define PREFIX_VEX_3834 (PREFIX_VEX_3833 + 1)
|
|
#define PREFIX_VEX_3835 (PREFIX_VEX_3834 + 1)
|
|
#define PREFIX_VEX_3837 (PREFIX_VEX_3835 + 1)
|
|
#define PREFIX_VEX_3838 (PREFIX_VEX_3837 + 1)
|
|
#define PREFIX_VEX_3839 (PREFIX_VEX_3838 + 1)
|
|
#define PREFIX_VEX_383A (PREFIX_VEX_3839 + 1)
|
|
#define PREFIX_VEX_383B (PREFIX_VEX_383A + 1)
|
|
#define PREFIX_VEX_383C (PREFIX_VEX_383B + 1)
|
|
#define PREFIX_VEX_383D (PREFIX_VEX_383C + 1)
|
|
#define PREFIX_VEX_383E (PREFIX_VEX_383D + 1)
|
|
#define PREFIX_VEX_383F (PREFIX_VEX_383E + 1)
|
|
#define PREFIX_VEX_3840 (PREFIX_VEX_383F + 1)
|
|
#define PREFIX_VEX_3841 (PREFIX_VEX_3840 + 1)
|
|
#define PREFIX_VEX_3896 (PREFIX_VEX_3841 + 1)
|
|
#define PREFIX_VEX_3897 (PREFIX_VEX_3896 + 1)
|
|
#define PREFIX_VEX_3898 (PREFIX_VEX_3897 + 1)
|
|
#define PREFIX_VEX_3899 (PREFIX_VEX_3898 + 1)
|
|
#define PREFIX_VEX_389A (PREFIX_VEX_3899 + 1)
|
|
#define PREFIX_VEX_389B (PREFIX_VEX_389A + 1)
|
|
#define PREFIX_VEX_389C (PREFIX_VEX_389B + 1)
|
|
#define PREFIX_VEX_389D (PREFIX_VEX_389C + 1)
|
|
#define PREFIX_VEX_389E (PREFIX_VEX_389D + 1)
|
|
#define PREFIX_VEX_389F (PREFIX_VEX_389E + 1)
|
|
#define PREFIX_VEX_38A6 (PREFIX_VEX_389F + 1)
|
|
#define PREFIX_VEX_38A7 (PREFIX_VEX_38A6 + 1)
|
|
#define PREFIX_VEX_38A8 (PREFIX_VEX_38A7 + 1)
|
|
#define PREFIX_VEX_38A9 (PREFIX_VEX_38A8 + 1)
|
|
#define PREFIX_VEX_38AA (PREFIX_VEX_38A9 + 1)
|
|
#define PREFIX_VEX_38AB (PREFIX_VEX_38AA + 1)
|
|
#define PREFIX_VEX_38AC (PREFIX_VEX_38AB + 1)
|
|
#define PREFIX_VEX_38AD (PREFIX_VEX_38AC + 1)
|
|
#define PREFIX_VEX_38AE (PREFIX_VEX_38AD + 1)
|
|
#define PREFIX_VEX_38AF (PREFIX_VEX_38AE + 1)
|
|
#define PREFIX_VEX_38B6 (PREFIX_VEX_38AF + 1)
|
|
#define PREFIX_VEX_38B7 (PREFIX_VEX_38B6 + 1)
|
|
#define PREFIX_VEX_38B8 (PREFIX_VEX_38B7 + 1)
|
|
#define PREFIX_VEX_38B9 (PREFIX_VEX_38B8 + 1)
|
|
#define PREFIX_VEX_38BA (PREFIX_VEX_38B9 + 1)
|
|
#define PREFIX_VEX_38BB (PREFIX_VEX_38BA + 1)
|
|
#define PREFIX_VEX_38BC (PREFIX_VEX_38BB + 1)
|
|
#define PREFIX_VEX_38BD (PREFIX_VEX_38BC + 1)
|
|
#define PREFIX_VEX_38BE (PREFIX_VEX_38BD + 1)
|
|
#define PREFIX_VEX_38BF (PREFIX_VEX_38BE + 1)
|
|
#define PREFIX_VEX_38DB (PREFIX_VEX_38BF + 1)
|
|
#define PREFIX_VEX_38DC (PREFIX_VEX_38DB + 1)
|
|
#define PREFIX_VEX_38DD (PREFIX_VEX_38DC + 1)
|
|
#define PREFIX_VEX_38DE (PREFIX_VEX_38DD + 1)
|
|
#define PREFIX_VEX_38DF (PREFIX_VEX_38DE + 1)
|
|
#define PREFIX_VEX_3A04 (PREFIX_VEX_38DF + 1)
|
|
#define PREFIX_VEX_3A05 (PREFIX_VEX_3A04 + 1)
|
|
#define PREFIX_VEX_3A06 (PREFIX_VEX_3A05 + 1)
|
|
#define PREFIX_VEX_3A08 (PREFIX_VEX_3A06 + 1)
|
|
#define PREFIX_VEX_3A09 (PREFIX_VEX_3A08 + 1)
|
|
#define PREFIX_VEX_3A0A (PREFIX_VEX_3A09 + 1)
|
|
#define PREFIX_VEX_3A0B (PREFIX_VEX_3A0A + 1)
|
|
#define PREFIX_VEX_3A0C (PREFIX_VEX_3A0B + 1)
|
|
#define PREFIX_VEX_3A0D (PREFIX_VEX_3A0C + 1)
|
|
#define PREFIX_VEX_3A0E (PREFIX_VEX_3A0D + 1)
|
|
#define PREFIX_VEX_3A0F (PREFIX_VEX_3A0E + 1)
|
|
#define PREFIX_VEX_3A14 (PREFIX_VEX_3A0F + 1)
|
|
#define PREFIX_VEX_3A15 (PREFIX_VEX_3A14 + 1)
|
|
#define PREFIX_VEX_3A16 (PREFIX_VEX_3A15 + 1)
|
|
#define PREFIX_VEX_3A17 (PREFIX_VEX_3A16 + 1)
|
|
#define PREFIX_VEX_3A18 (PREFIX_VEX_3A17 + 1)
|
|
#define PREFIX_VEX_3A19 (PREFIX_VEX_3A18 + 1)
|
|
#define PREFIX_VEX_3A20 (PREFIX_VEX_3A19 + 1)
|
|
#define PREFIX_VEX_3A21 (PREFIX_VEX_3A20 + 1)
|
|
#define PREFIX_VEX_3A22 (PREFIX_VEX_3A21 + 1)
|
|
#define PREFIX_VEX_3A40 (PREFIX_VEX_3A22 + 1)
|
|
#define PREFIX_VEX_3A41 (PREFIX_VEX_3A40 + 1)
|
|
#define PREFIX_VEX_3A42 (PREFIX_VEX_3A41 + 1)
|
|
#define PREFIX_VEX_3A44 (PREFIX_VEX_3A42 + 1)
|
|
#define PREFIX_VEX_3A4A (PREFIX_VEX_3A44 + 1)
|
|
#define PREFIX_VEX_3A4B (PREFIX_VEX_3A4A + 1)
|
|
#define PREFIX_VEX_3A4C (PREFIX_VEX_3A4B + 1)
|
|
#define PREFIX_VEX_3A5C (PREFIX_VEX_3A4C + 1)
|
|
#define PREFIX_VEX_3A5D (PREFIX_VEX_3A5C + 1)
|
|
#define PREFIX_VEX_3A5E (PREFIX_VEX_3A5D + 1)
|
|
#define PREFIX_VEX_3A5F (PREFIX_VEX_3A5E + 1)
|
|
#define PREFIX_VEX_3A60 (PREFIX_VEX_3A5F + 1)
|
|
#define PREFIX_VEX_3A61 (PREFIX_VEX_3A60 + 1)
|
|
#define PREFIX_VEX_3A62 (PREFIX_VEX_3A61 + 1)
|
|
#define PREFIX_VEX_3A63 (PREFIX_VEX_3A62 + 1)
|
|
#define PREFIX_VEX_3A68 (PREFIX_VEX_3A63 + 1)
|
|
#define PREFIX_VEX_3A69 (PREFIX_VEX_3A68 + 1)
|
|
#define PREFIX_VEX_3A6A (PREFIX_VEX_3A69 + 1)
|
|
#define PREFIX_VEX_3A6B (PREFIX_VEX_3A6A + 1)
|
|
#define PREFIX_VEX_3A6C (PREFIX_VEX_3A6B + 1)
|
|
#define PREFIX_VEX_3A6D (PREFIX_VEX_3A6C + 1)
|
|
#define PREFIX_VEX_3A6E (PREFIX_VEX_3A6D + 1)
|
|
#define PREFIX_VEX_3A6F (PREFIX_VEX_3A6E + 1)
|
|
#define PREFIX_VEX_3A78 (PREFIX_VEX_3A6F + 1)
|
|
#define PREFIX_VEX_3A79 (PREFIX_VEX_3A78 + 1)
|
|
#define PREFIX_VEX_3A7A (PREFIX_VEX_3A79 + 1)
|
|
#define PREFIX_VEX_3A7B (PREFIX_VEX_3A7A + 1)
|
|
#define PREFIX_VEX_3A7C (PREFIX_VEX_3A7B + 1)
|
|
#define PREFIX_VEX_3A7D (PREFIX_VEX_3A7C + 1)
|
|
#define PREFIX_VEX_3A7E (PREFIX_VEX_3A7D + 1)
|
|
#define PREFIX_VEX_3A7F (PREFIX_VEX_3A7E + 1)
|
|
#define PREFIX_VEX_3ADF (PREFIX_VEX_3A7F + 1)
|
|
|
#define X86_64_06 0
|
#define X86_64_06 0
|
#define X86_64_07 (X86_64_06 + 1)
|
#define X86_64_07 (X86_64_06 + 1)
|
#define X86_64_0D (X86_64_07 + 1)
|
#define X86_64_0D (X86_64_07 + 1)
|
#define X86_64_16 (X86_64_0D + 1)
|
#define X86_64_16 (X86_64_0D + 1)
|
Line 700... |
Line 1044... |
#define X86_64_0F01_REG_0 (X86_64_EA + 1)
|
#define X86_64_0F01_REG_0 (X86_64_EA + 1)
|
#define X86_64_0F01_REG_1 (X86_64_0F01_REG_0 + 1)
|
#define X86_64_0F01_REG_1 (X86_64_0F01_REG_0 + 1)
|
#define X86_64_0F01_REG_2 (X86_64_0F01_REG_1 + 1)
|
#define X86_64_0F01_REG_2 (X86_64_0F01_REG_1 + 1)
|
#define X86_64_0F01_REG_3 (X86_64_0F01_REG_2 + 1)
|
#define X86_64_0F01_REG_3 (X86_64_0F01_REG_2 + 1)
|
|
|
#define THREE_BYTE_0F24 0
|
#define THREE_BYTE_0F38 0
|
#define THREE_BYTE_0F25 (THREE_BYTE_0F24 + 1)
|
|
#define THREE_BYTE_0F38 (THREE_BYTE_0F25 + 1)
|
|
#define THREE_BYTE_0F3A (THREE_BYTE_0F38 + 1)
|
#define THREE_BYTE_0F3A (THREE_BYTE_0F38 + 1)
|
#define THREE_BYTE_0F7A (THREE_BYTE_0F3A + 1)
|
#define THREE_BYTE_0F7A (THREE_BYTE_0F3A + 1)
|
#define THREE_BYTE_0F7B (THREE_BYTE_0F7A + 1)
|
|
|
#define VEX_0F 0
|
|
#define VEX_0F38 (VEX_0F + 1)
|
|
#define VEX_0F3A (VEX_0F38 + 1)
|
|
|
|
#define VEX_LEN_10_P_1 0
|
|
#define VEX_LEN_10_P_3 (VEX_LEN_10_P_1 + 1)
|
|
#define VEX_LEN_11_P_1 (VEX_LEN_10_P_3 + 1)
|
|
#define VEX_LEN_11_P_3 (VEX_LEN_11_P_1 + 1)
|
|
#define VEX_LEN_12_P_0_M_0 (VEX_LEN_11_P_3 + 1)
|
|
#define VEX_LEN_12_P_0_M_1 (VEX_LEN_12_P_0_M_0 + 1)
|
|
#define VEX_LEN_12_P_2 (VEX_LEN_12_P_0_M_1 + 1)
|
|
#define VEX_LEN_13_M_0 (VEX_LEN_12_P_2 + 1)
|
|
#define VEX_LEN_16_P_0_M_0 (VEX_LEN_13_M_0 + 1)
|
|
#define VEX_LEN_16_P_0_M_1 (VEX_LEN_16_P_0_M_0 + 1)
|
|
#define VEX_LEN_16_P_2 (VEX_LEN_16_P_0_M_1 + 1)
|
|
#define VEX_LEN_17_M_0 (VEX_LEN_16_P_2 + 1)
|
|
#define VEX_LEN_2A_P_1 (VEX_LEN_17_M_0 + 1)
|
|
#define VEX_LEN_2A_P_3 (VEX_LEN_2A_P_1 + 1)
|
|
#define VEX_LEN_2C_P_1 (VEX_LEN_2A_P_3 + 1)
|
|
#define VEX_LEN_2C_P_3 (VEX_LEN_2C_P_1 + 1)
|
|
#define VEX_LEN_2D_P_1 (VEX_LEN_2C_P_3 + 1)
|
|
#define VEX_LEN_2D_P_3 (VEX_LEN_2D_P_1 + 1)
|
|
#define VEX_LEN_2E_P_0 (VEX_LEN_2D_P_3 + 1)
|
|
#define VEX_LEN_2E_P_2 (VEX_LEN_2E_P_0 + 1)
|
|
#define VEX_LEN_2F_P_0 (VEX_LEN_2E_P_2 + 1)
|
|
#define VEX_LEN_2F_P_2 (VEX_LEN_2F_P_0 + 1)
|
|
#define VEX_LEN_51_P_1 (VEX_LEN_2F_P_2 + 1)
|
|
#define VEX_LEN_51_P_3 (VEX_LEN_51_P_1 + 1)
|
|
#define VEX_LEN_52_P_1 (VEX_LEN_51_P_3 + 1)
|
|
#define VEX_LEN_53_P_1 (VEX_LEN_52_P_1 + 1)
|
|
#define VEX_LEN_58_P_1 (VEX_LEN_53_P_1 + 1)
|
|
#define VEX_LEN_58_P_3 (VEX_LEN_58_P_1 + 1)
|
|
#define VEX_LEN_59_P_1 (VEX_LEN_58_P_3 + 1)
|
|
#define VEX_LEN_59_P_3 (VEX_LEN_59_P_1 + 1)
|
|
#define VEX_LEN_5A_P_1 (VEX_LEN_59_P_3 + 1)
|
|
#define VEX_LEN_5A_P_3 (VEX_LEN_5A_P_1 + 1)
|
|
#define VEX_LEN_5C_P_1 (VEX_LEN_5A_P_3 + 1)
|
|
#define VEX_LEN_5C_P_3 (VEX_LEN_5C_P_1 + 1)
|
|
#define VEX_LEN_5D_P_1 (VEX_LEN_5C_P_3 + 1)
|
|
#define VEX_LEN_5D_P_3 (VEX_LEN_5D_P_1 + 1)
|
|
#define VEX_LEN_5E_P_1 (VEX_LEN_5D_P_3 + 1)
|
|
#define VEX_LEN_5E_P_3 (VEX_LEN_5E_P_1 + 1)
|
|
#define VEX_LEN_5F_P_1 (VEX_LEN_5E_P_3 + 1)
|
|
#define VEX_LEN_5F_P_3 (VEX_LEN_5F_P_1 + 1)
|
|
#define VEX_LEN_60_P_2 (VEX_LEN_5F_P_3 + 1)
|
|
#define VEX_LEN_61_P_2 (VEX_LEN_60_P_2 + 1)
|
|
#define VEX_LEN_62_P_2 (VEX_LEN_61_P_2 + 1)
|
|
#define VEX_LEN_63_P_2 (VEX_LEN_62_P_2 + 1)
|
|
#define VEX_LEN_64_P_2 (VEX_LEN_63_P_2 + 1)
|
|
#define VEX_LEN_65_P_2 (VEX_LEN_64_P_2 + 1)
|
|
#define VEX_LEN_66_P_2 (VEX_LEN_65_P_2 + 1)
|
|
#define VEX_LEN_67_P_2 (VEX_LEN_66_P_2 + 1)
|
|
#define VEX_LEN_68_P_2 (VEX_LEN_67_P_2 + 1)
|
|
#define VEX_LEN_69_P_2 (VEX_LEN_68_P_2 + 1)
|
|
#define VEX_LEN_6A_P_2 (VEX_LEN_69_P_2 + 1)
|
|
#define VEX_LEN_6B_P_2 (VEX_LEN_6A_P_2 + 1)
|
|
#define VEX_LEN_6C_P_2 (VEX_LEN_6B_P_2 + 1)
|
|
#define VEX_LEN_6D_P_2 (VEX_LEN_6C_P_2 + 1)
|
|
#define VEX_LEN_6E_P_2 (VEX_LEN_6D_P_2 + 1)
|
|
#define VEX_LEN_70_P_1 (VEX_LEN_6E_P_2 + 1)
|
|
#define VEX_LEN_70_P_2 (VEX_LEN_70_P_1 + 1)
|
|
#define VEX_LEN_70_P_3 (VEX_LEN_70_P_2 + 1)
|
|
#define VEX_LEN_71_R_2_P_2 (VEX_LEN_70_P_3 + 1)
|
|
#define VEX_LEN_71_R_4_P_2 (VEX_LEN_71_R_2_P_2 + 1)
|
|
#define VEX_LEN_71_R_6_P_2 (VEX_LEN_71_R_4_P_2 + 1)
|
|
#define VEX_LEN_72_R_2_P_2 (VEX_LEN_71_R_6_P_2 + 1)
|
|
#define VEX_LEN_72_R_4_P_2 (VEX_LEN_72_R_2_P_2 + 1)
|
|
#define VEX_LEN_72_R_6_P_2 (VEX_LEN_72_R_4_P_2 + 1)
|
|
#define VEX_LEN_73_R_2_P_2 (VEX_LEN_72_R_6_P_2 + 1)
|
|
#define VEX_LEN_73_R_3_P_2 (VEX_LEN_73_R_2_P_2 + 1)
|
|
#define VEX_LEN_73_R_6_P_2 (VEX_LEN_73_R_3_P_2 + 1)
|
|
#define VEX_LEN_73_R_7_P_2 (VEX_LEN_73_R_6_P_2 + 1)
|
|
#define VEX_LEN_74_P_2 (VEX_LEN_73_R_7_P_2 + 1)
|
|
#define VEX_LEN_75_P_2 (VEX_LEN_74_P_2 + 1)
|
|
#define VEX_LEN_76_P_2 (VEX_LEN_75_P_2 + 1)
|
|
#define VEX_LEN_7E_P_1 (VEX_LEN_76_P_2 + 1)
|
|
#define VEX_LEN_7E_P_2 (VEX_LEN_7E_P_1 + 1)
|
|
#define VEX_LEN_AE_R_2_M_0 (VEX_LEN_7E_P_2 + 1)
|
|
#define VEX_LEN_AE_R_3_M_0 (VEX_LEN_AE_R_2_M_0 + 1)
|
|
#define VEX_LEN_C2_P_1 (VEX_LEN_AE_R_3_M_0 + 1)
|
|
#define VEX_LEN_C2_P_3 (VEX_LEN_C2_P_1 + 1)
|
|
#define VEX_LEN_C4_P_2 (VEX_LEN_C2_P_3 + 1)
|
|
#define VEX_LEN_C5_P_2 (VEX_LEN_C4_P_2 + 1)
|
|
#define VEX_LEN_D1_P_2 (VEX_LEN_C5_P_2 + 1)
|
|
#define VEX_LEN_D2_P_2 (VEX_LEN_D1_P_2 + 1)
|
|
#define VEX_LEN_D3_P_2 (VEX_LEN_D2_P_2 + 1)
|
|
#define VEX_LEN_D4_P_2 (VEX_LEN_D3_P_2 + 1)
|
|
#define VEX_LEN_D5_P_2 (VEX_LEN_D4_P_2 + 1)
|
|
#define VEX_LEN_D6_P_2 (VEX_LEN_D5_P_2 + 1)
|
|
#define VEX_LEN_D7_P_2_M_1 (VEX_LEN_D6_P_2 + 1)
|
|
#define VEX_LEN_D8_P_2 (VEX_LEN_D7_P_2_M_1 + 1)
|
|
#define VEX_LEN_D9_P_2 (VEX_LEN_D8_P_2 + 1)
|
|
#define VEX_LEN_DA_P_2 (VEX_LEN_D9_P_2 + 1)
|
|
#define VEX_LEN_DB_P_2 (VEX_LEN_DA_P_2 + 1)
|
|
#define VEX_LEN_DC_P_2 (VEX_LEN_DB_P_2 + 1)
|
|
#define VEX_LEN_DD_P_2 (VEX_LEN_DC_P_2 + 1)
|
|
#define VEX_LEN_DE_P_2 (VEX_LEN_DD_P_2 + 1)
|
|
#define VEX_LEN_DF_P_2 (VEX_LEN_DE_P_2 + 1)
|
|
#define VEX_LEN_E0_P_2 (VEX_LEN_DF_P_2 + 1)
|
|
#define VEX_LEN_E1_P_2 (VEX_LEN_E0_P_2 + 1)
|
|
#define VEX_LEN_E2_P_2 (VEX_LEN_E1_P_2 + 1)
|
|
#define VEX_LEN_E3_P_2 (VEX_LEN_E2_P_2 + 1)
|
|
#define VEX_LEN_E4_P_2 (VEX_LEN_E3_P_2 + 1)
|
|
#define VEX_LEN_E5_P_2 (VEX_LEN_E4_P_2 + 1)
|
|
#define VEX_LEN_E8_P_2 (VEX_LEN_E5_P_2 + 1)
|
|
#define VEX_LEN_E9_P_2 (VEX_LEN_E8_P_2 + 1)
|
|
#define VEX_LEN_EA_P_2 (VEX_LEN_E9_P_2 + 1)
|
|
#define VEX_LEN_EB_P_2 (VEX_LEN_EA_P_2 + 1)
|
|
#define VEX_LEN_EC_P_2 (VEX_LEN_EB_P_2 + 1)
|
|
#define VEX_LEN_ED_P_2 (VEX_LEN_EC_P_2 + 1)
|
|
#define VEX_LEN_EE_P_2 (VEX_LEN_ED_P_2 + 1)
|
|
#define VEX_LEN_EF_P_2 (VEX_LEN_EE_P_2 + 1)
|
|
#define VEX_LEN_F1_P_2 (VEX_LEN_EF_P_2 + 1)
|
|
#define VEX_LEN_F2_P_2 (VEX_LEN_F1_P_2 + 1)
|
|
#define VEX_LEN_F3_P_2 (VEX_LEN_F2_P_2 + 1)
|
|
#define VEX_LEN_F4_P_2 (VEX_LEN_F3_P_2 + 1)
|
|
#define VEX_LEN_F5_P_2 (VEX_LEN_F4_P_2 + 1)
|
|
#define VEX_LEN_F6_P_2 (VEX_LEN_F5_P_2 + 1)
|
|
#define VEX_LEN_F7_P_2 (VEX_LEN_F6_P_2 + 1)
|
|
#define VEX_LEN_F8_P_2 (VEX_LEN_F7_P_2 + 1)
|
|
#define VEX_LEN_F9_P_2 (VEX_LEN_F8_P_2 + 1)
|
|
#define VEX_LEN_FA_P_2 (VEX_LEN_F9_P_2 + 1)
|
|
#define VEX_LEN_FB_P_2 (VEX_LEN_FA_P_2 + 1)
|
|
#define VEX_LEN_FC_P_2 (VEX_LEN_FB_P_2 + 1)
|
|
#define VEX_LEN_FD_P_2 (VEX_LEN_FC_P_2 + 1)
|
|
#define VEX_LEN_FE_P_2 (VEX_LEN_FD_P_2 + 1)
|
|
#define VEX_LEN_3800_P_2 (VEX_LEN_FE_P_2 + 1)
|
|
#define VEX_LEN_3801_P_2 (VEX_LEN_3800_P_2 + 1)
|
|
#define VEX_LEN_3802_P_2 (VEX_LEN_3801_P_2 + 1)
|
|
#define VEX_LEN_3803_P_2 (VEX_LEN_3802_P_2 + 1)
|
|
#define VEX_LEN_3804_P_2 (VEX_LEN_3803_P_2 + 1)
|
|
#define VEX_LEN_3805_P_2 (VEX_LEN_3804_P_2 + 1)
|
|
#define VEX_LEN_3806_P_2 (VEX_LEN_3805_P_2 + 1)
|
|
#define VEX_LEN_3807_P_2 (VEX_LEN_3806_P_2 + 1)
|
|
#define VEX_LEN_3808_P_2 (VEX_LEN_3807_P_2 + 1)
|
|
#define VEX_LEN_3809_P_2 (VEX_LEN_3808_P_2 + 1)
|
|
#define VEX_LEN_380A_P_2 (VEX_LEN_3809_P_2 + 1)
|
|
#define VEX_LEN_380B_P_2 (VEX_LEN_380A_P_2 + 1)
|
|
#define VEX_LEN_3819_P_2_M_0 (VEX_LEN_380B_P_2 + 1)
|
|
#define VEX_LEN_381A_P_2_M_0 (VEX_LEN_3819_P_2_M_0 + 1)
|
|
#define VEX_LEN_381C_P_2 (VEX_LEN_381A_P_2_M_0 + 1)
|
|
#define VEX_LEN_381D_P_2 (VEX_LEN_381C_P_2 + 1)
|
|
#define VEX_LEN_381E_P_2 (VEX_LEN_381D_P_2 + 1)
|
|
#define VEX_LEN_3820_P_2 (VEX_LEN_381E_P_2 + 1)
|
|
#define VEX_LEN_3821_P_2 (VEX_LEN_3820_P_2 + 1)
|
|
#define VEX_LEN_3822_P_2 (VEX_LEN_3821_P_2 + 1)
|
|
#define VEX_LEN_3823_P_2 (VEX_LEN_3822_P_2 + 1)
|
|
#define VEX_LEN_3824_P_2 (VEX_LEN_3823_P_2 + 1)
|
|
#define VEX_LEN_3825_P_2 (VEX_LEN_3824_P_2 + 1)
|
|
#define VEX_LEN_3828_P_2 (VEX_LEN_3825_P_2 + 1)
|
|
#define VEX_LEN_3829_P_2 (VEX_LEN_3828_P_2 + 1)
|
|
#define VEX_LEN_382A_P_2_M_0 (VEX_LEN_3829_P_2 + 1)
|
|
#define VEX_LEN_382B_P_2 (VEX_LEN_382A_P_2_M_0 + 1)
|
|
#define VEX_LEN_3830_P_2 (VEX_LEN_382B_P_2 + 1)
|
|
#define VEX_LEN_3831_P_2 (VEX_LEN_3830_P_2 + 1)
|
|
#define VEX_LEN_3832_P_2 (VEX_LEN_3831_P_2 + 1)
|
|
#define VEX_LEN_3833_P_2 (VEX_LEN_3832_P_2 + 1)
|
|
#define VEX_LEN_3834_P_2 (VEX_LEN_3833_P_2 + 1)
|
|
#define VEX_LEN_3835_P_2 (VEX_LEN_3834_P_2 + 1)
|
|
#define VEX_LEN_3837_P_2 (VEX_LEN_3835_P_2 + 1)
|
|
#define VEX_LEN_3838_P_2 (VEX_LEN_3837_P_2 + 1)
|
|
#define VEX_LEN_3839_P_2 (VEX_LEN_3838_P_2 + 1)
|
|
#define VEX_LEN_383A_P_2 (VEX_LEN_3839_P_2 + 1)
|
|
#define VEX_LEN_383B_P_2 (VEX_LEN_383A_P_2 + 1)
|
|
#define VEX_LEN_383C_P_2 (VEX_LEN_383B_P_2 + 1)
|
|
#define VEX_LEN_383D_P_2 (VEX_LEN_383C_P_2 + 1)
|
|
#define VEX_LEN_383E_P_2 (VEX_LEN_383D_P_2 + 1)
|
|
#define VEX_LEN_383F_P_2 (VEX_LEN_383E_P_2 + 1)
|
|
#define VEX_LEN_3840_P_2 (VEX_LEN_383F_P_2 + 1)
|
|
#define VEX_LEN_3841_P_2 (VEX_LEN_3840_P_2 + 1)
|
|
#define VEX_LEN_38DB_P_2 (VEX_LEN_3841_P_2 + 1)
|
|
#define VEX_LEN_38DC_P_2 (VEX_LEN_38DB_P_2 + 1)
|
|
#define VEX_LEN_38DD_P_2 (VEX_LEN_38DC_P_2 + 1)
|
|
#define VEX_LEN_38DE_P_2 (VEX_LEN_38DD_P_2 + 1)
|
|
#define VEX_LEN_38DF_P_2 (VEX_LEN_38DE_P_2 + 1)
|
|
#define VEX_LEN_3A06_P_2 (VEX_LEN_38DF_P_2 + 1)
|
|
#define VEX_LEN_3A0A_P_2 (VEX_LEN_3A06_P_2 + 1)
|
|
#define VEX_LEN_3A0B_P_2 (VEX_LEN_3A0A_P_2 + 1)
|
|
#define VEX_LEN_3A0E_P_2 (VEX_LEN_3A0B_P_2 + 1)
|
|
#define VEX_LEN_3A0F_P_2 (VEX_LEN_3A0E_P_2 + 1)
|
|
#define VEX_LEN_3A14_P_2 (VEX_LEN_3A0F_P_2 + 1)
|
|
#define VEX_LEN_3A15_P_2 (VEX_LEN_3A14_P_2 + 1)
|
|
#define VEX_LEN_3A16_P_2 (VEX_LEN_3A15_P_2 + 1)
|
|
#define VEX_LEN_3A17_P_2 (VEX_LEN_3A16_P_2 + 1)
|
|
#define VEX_LEN_3A18_P_2 (VEX_LEN_3A17_P_2 + 1)
|
|
#define VEX_LEN_3A19_P_2 (VEX_LEN_3A18_P_2 + 1)
|
|
#define VEX_LEN_3A20_P_2 (VEX_LEN_3A19_P_2 + 1)
|
|
#define VEX_LEN_3A21_P_2 (VEX_LEN_3A20_P_2 + 1)
|
|
#define VEX_LEN_3A22_P_2 (VEX_LEN_3A21_P_2 + 1)
|
|
#define VEX_LEN_3A41_P_2 (VEX_LEN_3A22_P_2 + 1)
|
|
#define VEX_LEN_3A42_P_2 (VEX_LEN_3A41_P_2 + 1)
|
|
#define VEX_LEN_3A44_P_2 (VEX_LEN_3A42_P_2 + 1)
|
|
#define VEX_LEN_3A4C_P_2 (VEX_LEN_3A44_P_2 + 1)
|
|
#define VEX_LEN_3A60_P_2 (VEX_LEN_3A4C_P_2 + 1)
|
|
#define VEX_LEN_3A61_P_2 (VEX_LEN_3A60_P_2 + 1)
|
|
#define VEX_LEN_3A62_P_2 (VEX_LEN_3A61_P_2 + 1)
|
|
#define VEX_LEN_3A63_P_2 (VEX_LEN_3A62_P_2 + 1)
|
|
#define VEX_LEN_3A6A_P_2 (VEX_LEN_3A63_P_2 + 1)
|
|
#define VEX_LEN_3A6B_P_2 (VEX_LEN_3A6A_P_2 + 1)
|
|
#define VEX_LEN_3A6E_P_2 (VEX_LEN_3A6B_P_2 + 1)
|
|
#define VEX_LEN_3A6F_P_2 (VEX_LEN_3A6E_P_2 + 1)
|
|
#define VEX_LEN_3A7A_P_2 (VEX_LEN_3A6F_P_2 + 1)
|
|
#define VEX_LEN_3A7B_P_2 (VEX_LEN_3A7A_P_2 + 1)
|
|
#define VEX_LEN_3A7E_P_2 (VEX_LEN_3A7B_P_2 + 1)
|
|
#define VEX_LEN_3A7F_P_2 (VEX_LEN_3A7E_P_2 + 1)
|
|
#define VEX_LEN_3ADF_P_2 (VEX_LEN_3A7F_P_2 + 1)
|
|
|
typedef void (*op_rtn) (int bytemode, int sizeflag);
|
typedef void (*op_rtn) (int bytemode, int sizeflag);
|
|
|
struct dis386 {
|
struct dis386 {
|
const char *name;
|
const char *name;
|
Line 755... |
Line 1303... |
'Z' => print 'q' in 64bit mode and behave as 'L' otherwise
|
'Z' => print 'q' in 64bit mode and behave as 'L' otherwise
|
'!' => change condition from true to false or from false to true.
|
'!' => change condition from true to false or from false to true.
|
'%' => add 1 upper case letter to the macro.
|
'%' => add 1 upper case letter to the macro.
|
|
|
2 upper case letter macros:
|
2 upper case letter macros:
|
|
"XY" => print 'x' or 'y' if no register operands or suffix_always
|
|
is true.
|
|
'XW' => print 's', 'd' depending on the VEX.W bit (for FMA)
|
'LQ' => print 'l' ('d' in Intel mode) or 'q' for memory operand
|
'LQ' => print 'l' ('d' in Intel mode) or 'q' for memory operand
|
or suffix_always is true
|
or suffix_always is true
|
|
|
Many of the above letters print nothing in Intel mode. See "putop"
|
Many of the above letters print nothing in Intel mode. See "putop"
|
for the details.
|
for the details.
|
Line 768... |
Line 1319... |
|
|
static const struct dis386 dis386[] = {
|
static const struct dis386 dis386[] = {
|
/* 00 */
|
/* 00 */
|
{ "addB", { Eb, Gb } },
|
{ "addB", { Eb, Gb } },
|
{ "addS", { Ev, Gv } },
|
{ "addS", { Ev, Gv } },
|
{ "addB", { Gb, Eb } },
|
{ "addB", { Gb, EbS } },
|
{ "addS", { Gv, Ev } },
|
{ "addS", { Gv, EvS } },
|
{ "addB", { AL, Ib } },
|
{ "addB", { AL, Ib } },
|
{ "addS", { eAX, Iv } },
|
{ "addS", { eAX, Iv } },
|
{ X86_64_TABLE (X86_64_06) },
|
{ X86_64_TABLE (X86_64_06) },
|
{ X86_64_TABLE (X86_64_07) },
|
{ X86_64_TABLE (X86_64_07) },
|
/* 08 */
|
/* 08 */
|
{ "orB", { Eb, Gb } },
|
{ "orB", { Eb, Gb } },
|
{ "orS", { Ev, Gv } },
|
{ "orS", { Ev, Gv } },
|
{ "orB", { Gb, Eb } },
|
{ "orB", { Gb, EbS } },
|
{ "orS", { Gv, Ev } },
|
{ "orS", { Gv, EvS } },
|
{ "orB", { AL, Ib } },
|
{ "orB", { AL, Ib } },
|
{ "orS", { eAX, Iv } },
|
{ "orS", { eAX, Iv } },
|
{ X86_64_TABLE (X86_64_0D) },
|
{ X86_64_TABLE (X86_64_0D) },
|
{ "(bad)", { XX } }, /* 0x0f extended opcode escape */
|
{ "(bad)", { XX } }, /* 0x0f extended opcode escape */
|
/* 10 */
|
/* 10 */
|
{ "adcB", { Eb, Gb } },
|
{ "adcB", { Eb, Gb } },
|
{ "adcS", { Ev, Gv } },
|
{ "adcS", { Ev, Gv } },
|
{ "adcB", { Gb, Eb } },
|
{ "adcB", { Gb, EbS } },
|
{ "adcS", { Gv, Ev } },
|
{ "adcS", { Gv, EvS } },
|
{ "adcB", { AL, Ib } },
|
{ "adcB", { AL, Ib } },
|
{ "adcS", { eAX, Iv } },
|
{ "adcS", { eAX, Iv } },
|
{ X86_64_TABLE (X86_64_16) },
|
{ X86_64_TABLE (X86_64_16) },
|
{ X86_64_TABLE (X86_64_17) },
|
{ X86_64_TABLE (X86_64_17) },
|
/* 18 */
|
/* 18 */
|
{ "sbbB", { Eb, Gb } },
|
{ "sbbB", { Eb, Gb } },
|
{ "sbbS", { Ev, Gv } },
|
{ "sbbS", { Ev, Gv } },
|
{ "sbbB", { Gb, Eb } },
|
{ "sbbB", { Gb, EbS } },
|
{ "sbbS", { Gv, Ev } },
|
{ "sbbS", { Gv, EvS } },
|
{ "sbbB", { AL, Ib } },
|
{ "sbbB", { AL, Ib } },
|
{ "sbbS", { eAX, Iv } },
|
{ "sbbS", { eAX, Iv } },
|
{ X86_64_TABLE (X86_64_1E) },
|
{ X86_64_TABLE (X86_64_1E) },
|
{ X86_64_TABLE (X86_64_1F) },
|
{ X86_64_TABLE (X86_64_1F) },
|
/* 20 */
|
/* 20 */
|
{ "andB", { Eb, Gb } },
|
{ "andB", { Eb, Gb } },
|
{ "andS", { Ev, Gv } },
|
{ "andS", { Ev, Gv } },
|
{ "andB", { Gb, Eb } },
|
{ "andB", { Gb, EbS } },
|
{ "andS", { Gv, Ev } },
|
{ "andS", { Gv, EvS } },
|
{ "andB", { AL, Ib } },
|
{ "andB", { AL, Ib } },
|
{ "andS", { eAX, Iv } },
|
{ "andS", { eAX, Iv } },
|
{ "(bad)", { XX } }, /* SEG ES prefix */
|
{ "(bad)", { XX } }, /* SEG ES prefix */
|
{ X86_64_TABLE (X86_64_27) },
|
{ X86_64_TABLE (X86_64_27) },
|
/* 28 */
|
/* 28 */
|
{ "subB", { Eb, Gb } },
|
{ "subB", { Eb, Gb } },
|
{ "subS", { Ev, Gv } },
|
{ "subS", { Ev, Gv } },
|
{ "subB", { Gb, Eb } },
|
{ "subB", { Gb, EbS } },
|
{ "subS", { Gv, Ev } },
|
{ "subS", { Gv, EvS } },
|
{ "subB", { AL, Ib } },
|
{ "subB", { AL, Ib } },
|
{ "subS", { eAX, Iv } },
|
{ "subS", { eAX, Iv } },
|
{ "(bad)", { XX } }, /* SEG CS prefix */
|
{ "(bad)", { XX } }, /* SEG CS prefix */
|
{ X86_64_TABLE (X86_64_2F) },
|
{ X86_64_TABLE (X86_64_2F) },
|
/* 30 */
|
/* 30 */
|
{ "xorB", { Eb, Gb } },
|
{ "xorB", { Eb, Gb } },
|
{ "xorS", { Ev, Gv } },
|
{ "xorS", { Ev, Gv } },
|
{ "xorB", { Gb, Eb } },
|
{ "xorB", { Gb, EbS } },
|
{ "xorS", { Gv, Ev } },
|
{ "xorS", { Gv, EvS } },
|
{ "xorB", { AL, Ib } },
|
{ "xorB", { AL, Ib } },
|
{ "xorS", { eAX, Iv } },
|
{ "xorS", { eAX, Iv } },
|
{ "(bad)", { XX } }, /* SEG SS prefix */
|
{ "(bad)", { XX } }, /* SEG SS prefix */
|
{ X86_64_TABLE (X86_64_37) },
|
{ X86_64_TABLE (X86_64_37) },
|
/* 38 */
|
/* 38 */
|
{ "cmpB", { Eb, Gb } },
|
{ "cmpB", { Eb, Gb } },
|
{ "cmpS", { Ev, Gv } },
|
{ "cmpS", { Ev, Gv } },
|
{ "cmpB", { Gb, Eb } },
|
{ "cmpB", { Gb, EbS } },
|
{ "cmpS", { Gv, Ev } },
|
{ "cmpS", { Gv, EvS } },
|
{ "cmpB", { AL, Ib } },
|
{ "cmpB", { AL, Ib } },
|
{ "cmpS", { eAX, Iv } },
|
{ "cmpS", { eAX, Iv } },
|
{ "(bad)", { XX } }, /* SEG DS prefix */
|
{ "(bad)", { XX } }, /* SEG DS prefix */
|
{ X86_64_TABLE (X86_64_3F) },
|
{ X86_64_TABLE (X86_64_3F) },
|
/* 40 */
|
/* 40 */
|
Line 921... |
Line 1472... |
{ "xchgB", { Eb, Gb } },
|
{ "xchgB", { Eb, Gb } },
|
{ "xchgS", { Ev, Gv } },
|
{ "xchgS", { Ev, Gv } },
|
/* 88 */
|
/* 88 */
|
{ "movB", { Eb, Gb } },
|
{ "movB", { Eb, Gb } },
|
{ "movS", { Ev, Gv } },
|
{ "movS", { Ev, Gv } },
|
{ "movB", { Gb, Eb } },
|
{ "movB", { Gb, EbS } },
|
{ "movS", { Gv, Ev } },
|
{ "movS", { Gv, EvS } },
|
{ "movD", { Sv, Sw } },
|
{ "movD", { Sv, Sw } },
|
{ MOD_TABLE (MOD_8D) },
|
{ MOD_TABLE (MOD_8D) },
|
{ "movD", { Sw, Sv } },
|
{ "movD", { Sw, Sv } },
|
{ REG_TABLE (REG_8F) },
|
{ REG_TABLE (REG_8F) },
|
/* 90 */
|
/* 90 */
|
Line 993... |
Line 1544... |
{ REG_TABLE (REG_C6) },
|
{ REG_TABLE (REG_C6) },
|
{ REG_TABLE (REG_C7) },
|
{ REG_TABLE (REG_C7) },
|
/* c8 */
|
/* c8 */
|
{ "enterT", { Iw, Ib } },
|
{ "enterT", { Iw, Ib } },
|
{ "leaveT", { XX } },
|
{ "leaveT", { XX } },
|
{ "lretP", { Iw } },
|
{ "Jret{|f}P", { Iw } },
|
{ "lretP", { XX } },
|
{ "Jret{|f}P", { XX } },
|
{ "int3", { XX } },
|
{ "int3", { XX } },
|
{ "int", { Ib } },
|
{ "int", { Ib } },
|
{ X86_64_TABLE (X86_64_CE) },
|
{ X86_64_TABLE (X86_64_CE) },
|
{ "iretP", { XX } },
|
{ "iretP", { XX } },
|
/* d0 */
|
/* d0 */
|
Line 1098... |
Line 1649... |
{ MOD_TABLE (MOD_0F20) },
|
{ MOD_TABLE (MOD_0F20) },
|
{ MOD_TABLE (MOD_0F21) },
|
{ MOD_TABLE (MOD_0F21) },
|
{ MOD_TABLE (MOD_0F22) },
|
{ MOD_TABLE (MOD_0F22) },
|
{ MOD_TABLE (MOD_0F23) },
|
{ MOD_TABLE (MOD_0F23) },
|
{ MOD_TABLE (MOD_0F24) },
|
{ MOD_TABLE (MOD_0F24) },
|
{ THREE_BYTE_TABLE (THREE_BYTE_0F25) },
|
{ "(bad)", { XX } },
|
{ MOD_TABLE (MOD_0F26) },
|
{ MOD_TABLE (MOD_0F26) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 28 */
|
/* 28 */
|
{ "movapX", { XM, EXx } },
|
{ "movapX", { XM, EXx } },
|
{ "movapX", { EXx, XM } },
|
{ "movapX", { EXxS, XM } },
|
{ PREFIX_TABLE (PREFIX_0F2A) },
|
{ PREFIX_TABLE (PREFIX_0F2A) },
|
{ PREFIX_TABLE (PREFIX_0F2B) },
|
{ PREFIX_TABLE (PREFIX_0F2B) },
|
{ PREFIX_TABLE (PREFIX_0F2C) },
|
{ PREFIX_TABLE (PREFIX_0F2C) },
|
{ PREFIX_TABLE (PREFIX_0F2D) },
|
{ PREFIX_TABLE (PREFIX_0F2D) },
|
{ PREFIX_TABLE (PREFIX_0F2E) },
|
{ PREFIX_TABLE (PREFIX_0F2E) },
|
Line 1129... |
Line 1680... |
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 40 */
|
/* 40 */
|
{ "cmovo", { Gv, Ev } },
|
{ "cmovoS", { Gv, Ev } },
|
{ "cmovno", { Gv, Ev } },
|
{ "cmovnoS", { Gv, Ev } },
|
{ "cmovb", { Gv, Ev } },
|
{ "cmovbS", { Gv, Ev } },
|
{ "cmovae", { Gv, Ev } },
|
{ "cmovaeS", { Gv, Ev } },
|
{ "cmove", { Gv, Ev } },
|
{ "cmoveS", { Gv, Ev } },
|
{ "cmovne", { Gv, Ev } },
|
{ "cmovneS", { Gv, Ev } },
|
{ "cmovbe", { Gv, Ev } },
|
{ "cmovbeS", { Gv, Ev } },
|
{ "cmova", { Gv, Ev } },
|
{ "cmovaS", { Gv, Ev } },
|
/* 48 */
|
/* 48 */
|
{ "cmovs", { Gv, Ev } },
|
{ "cmovsS", { Gv, Ev } },
|
{ "cmovns", { Gv, Ev } },
|
{ "cmovnsS", { Gv, Ev } },
|
{ "cmovp", { Gv, Ev } },
|
{ "cmovpS", { Gv, Ev } },
|
{ "cmovnp", { Gv, Ev } },
|
{ "cmovnpS", { Gv, Ev } },
|
{ "cmovl", { Gv, Ev } },
|
{ "cmovlS", { Gv, Ev } },
|
{ "cmovge", { Gv, Ev } },
|
{ "cmovgeS", { Gv, Ev } },
|
{ "cmovle", { Gv, Ev } },
|
{ "cmovleS", { Gv, Ev } },
|
{ "cmovg", { Gv, Ev } },
|
{ "cmovgS", { Gv, Ev } },
|
/* 50 */
|
/* 50 */
|
{ MOD_TABLE (MOD_0F51) },
|
{ MOD_TABLE (MOD_0F51) },
|
{ PREFIX_TABLE (PREFIX_0F51) },
|
{ PREFIX_TABLE (PREFIX_0F51) },
|
{ PREFIX_TABLE (PREFIX_0F52) },
|
{ PREFIX_TABLE (PREFIX_0F52) },
|
{ PREFIX_TABLE (PREFIX_0F53) },
|
{ PREFIX_TABLE (PREFIX_0F53) },
|
Line 1195... |
Line 1746... |
{ "emms", { XX } },
|
{ "emms", { XX } },
|
/* 78 */
|
/* 78 */
|
{ PREFIX_TABLE (PREFIX_0F78) },
|
{ PREFIX_TABLE (PREFIX_0F78) },
|
{ PREFIX_TABLE (PREFIX_0F79) },
|
{ PREFIX_TABLE (PREFIX_0F79) },
|
{ THREE_BYTE_TABLE (THREE_BYTE_0F7A) },
|
{ THREE_BYTE_TABLE (THREE_BYTE_0F7A) },
|
{ THREE_BYTE_TABLE (THREE_BYTE_0F7B) },
|
{ "(bad)", { XX } },
|
{ PREFIX_TABLE (PREFIX_0F7C) },
|
{ PREFIX_TABLE (PREFIX_0F7C) },
|
{ PREFIX_TABLE (PREFIX_0F7D) },
|
{ PREFIX_TABLE (PREFIX_0F7D) },
|
{ PREFIX_TABLE (PREFIX_0F7E) },
|
{ PREFIX_TABLE (PREFIX_0F7E) },
|
{ PREFIX_TABLE (PREFIX_0F7F) },
|
{ PREFIX_TABLE (PREFIX_0F7F) },
|
/* 80 */
|
/* 80 */
|
Line 1394... |
Line 1945... |
/* 0 1 2 3 4 5 6 7 8 9 a b c d e f */
|
/* 0 1 2 3 4 5 6 7 8 9 a b c d e f */
|
};
|
};
|
|
|
static char obuf[100];
|
static char obuf[100];
|
static char *obufp;
|
static char *obufp;
|
|
static char *mnemonicendp;
|
static char scratchbuf[100];
|
static char scratchbuf[100];
|
static unsigned char *start_codep;
|
static unsigned char *start_codep;
|
static unsigned char *insn_codep;
|
static unsigned char *insn_codep;
|
static unsigned char *codep;
|
static unsigned char *codep;
|
static const char *lock_prefix;
|
static const char *lock_prefix;
|
Line 1412... |
Line 1964... |
int reg;
|
int reg;
|
int rm;
|
int rm;
|
}
|
}
|
modrm;
|
modrm;
|
static unsigned char need_modrm;
|
static unsigned char need_modrm;
|
|
static struct
|
|
{
|
|
int register_specifier;
|
|
int length;
|
|
int prefix;
|
|
int w;
|
|
}
|
|
vex;
|
|
static unsigned char need_vex;
|
|
static unsigned char need_vex_reg;
|
|
static unsigned char vex_w_done;
|
|
|
|
struct op
|
|
{
|
|
const char *name;
|
|
unsigned int len;
|
|
};
|
|
|
/* If we are accessing mod/rm/reg without need_modrm set, then the
|
/* If we are accessing mod/rm/reg without need_modrm set, then the
|
values are stale. Hitting this abort likely indicates that you
|
values are stale. Hitting this abort likely indicates that you
|
need to update onebyte_has_modrm or twobyte_has_modrm. */
|
need to update onebyte_has_modrm or twobyte_has_modrm. */
|
#define MODRM_CHECK if (!need_modrm) abort ()
|
#define MODRM_CHECK if (!need_modrm) abort ()
|
Line 1793... |
Line 2362... |
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ MOD_TABLE (MOD_0FC7_REG_6) },
|
{ MOD_TABLE (MOD_0FC7_REG_6) },
|
{ MOD_TABLE (MOD_0FC7_REG_7) },
|
{ MOD_TABLE (MOD_0FC7_REG_7) },
|
},
|
},
|
|
/* REG_VEX_71 */
|
|
{
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ MOD_TABLE (MOD_VEX_71_REG_2) },
|
|
{ "(bad)", { XX } },
|
|
{ MOD_TABLE (MOD_VEX_71_REG_4) },
|
|
{ "(bad)", { XX } },
|
|
{ MOD_TABLE (MOD_VEX_71_REG_6) },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
/* REG_VEX_72 */
|
|
{
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ MOD_TABLE (MOD_VEX_72_REG_2) },
|
|
{ "(bad)", { XX } },
|
|
{ MOD_TABLE (MOD_VEX_72_REG_4) },
|
|
{ "(bad)", { XX } },
|
|
{ MOD_TABLE (MOD_VEX_72_REG_6) },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
/* REG_VEX_73 */
|
|
{
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ MOD_TABLE (MOD_VEX_73_REG_2) },
|
|
{ MOD_TABLE (MOD_VEX_73_REG_3) },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ MOD_TABLE (MOD_VEX_73_REG_6) },
|
|
{ MOD_TABLE (MOD_VEX_73_REG_7) },
|
|
},
|
|
/* REG_VEX_AE */
|
|
{
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ MOD_TABLE (MOD_VEX_AE_REG_2) },
|
|
{ MOD_TABLE (MOD_VEX_AE_REG_3) },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
},
|
};
|
};
|
|
|
static const struct dis386 prefix_table[][4] = {
|
static const struct dis386 prefix_table[][4] = {
|
/* PREFIX_90 */
|
/* PREFIX_90 */
|
{
|
{
|
Line 1814... |
Line 2427... |
{ "movsd", { XM, EXq } },
|
{ "movsd", { XM, EXq } },
|
},
|
},
|
|
|
/* PREFIX_0F11 */
|
/* PREFIX_0F11 */
|
{
|
{
|
{ "movups", { EXx, XM } },
|
{ "movups", { EXxS, XM } },
|
{ "movss", { EXd, XM } },
|
{ "movss", { EXdS, XM } },
|
{ "movupd", { EXx, XM } },
|
{ "movupd", { EXxS, XM } },
|
{ "movsd", { EXq, XM } },
|
{ "movsd", { EXqS, XM } },
|
},
|
},
|
|
|
/* PREFIX_0F12 */
|
/* PREFIX_0F12 */
|
{
|
{
|
{ MOD_TABLE (MOD_0F12_PREFIX_0) },
|
{ MOD_TABLE (MOD_0F12_PREFIX_0) },
|
Line 2086... |
Line 2699... |
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
},
|
},
|
|
|
/* PREFIX_0F7F */
|
/* PREFIX_0F7F */
|
{
|
{
|
{ "movq", { EM, MX } },
|
{ "movq", { EMS, MX } },
|
{ "movdqu", { EXx, XM } },
|
{ "movdqu", { EXxS, XM } },
|
{ "movdqa", { EXx, XM } },
|
{ "movdqa", { EXxS, XM } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
},
|
},
|
|
|
/* PREFIX_0FB8 */
|
/* PREFIX_0FB8 */
|
{
|
{
|
Line 2144... |
Line 2757... |
|
|
/* PREFIX_0FD6 */
|
/* PREFIX_0FD6 */
|
{
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "movq2dq",{ XM, MS } },
|
{ "movq2dq",{ XM, MS } },
|
{ "movq", { EXq, XM } },
|
{ "movq", { EXqS, XM } },
|
{ "movdq2q",{ MX, XS } },
|
{ "movdq2q",{ MX, XS } },
|
},
|
},
|
|
|
/* PREFIX_0FE6 */
|
/* PREFIX_0FE6 */
|
{
|
{
|
Line 2428... |
Line 3041... |
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "phminposuw", { XM, EXx } },
|
{ "phminposuw", { XM, EXx } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
},
|
},
|
|
|
/* PREFIX_0F38F0 */
|
/* PREFIX_0F3880 */
|
{
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "invept", { Gm, Mo } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "crc32", { Gdq, { CRC32_Fixup, b_mode } } },
|
|
},
|
},
|
|
|
/* PREFIX_0F38F1 */
|
/* PREFIX_0F3881 */
|
|
{
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "invvpid", { Gm, Mo } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_0F38DB */
|
|
{
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "aesimc", { XM, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_0F38DC */
|
|
{
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "aesenc", { XM, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_0F38DD */
|
|
{
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "aesenclast", { XM, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_0F38DE */
|
|
{
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "aesdec", { XM, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_0F38DF */
|
{
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "aesdeclast", { XM, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_0F38F0 */
|
|
{
|
|
{ "movbeS", { Gv, { MOVBE_Fixup, v_mode } } },
|
|
{ "(bad)", { XX } },
|
|
{ "movbeS", { Gv, { MOVBE_Fixup, v_mode } } },
|
|
{ "crc32", { Gdq, { CRC32_Fixup, b_mode } } },
|
|
},
|
|
|
|
/* PREFIX_0F38F1 */
|
|
{
|
|
{ "movbeS", { { MOVBE_Fixup, v_mode }, Gv } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "movbeS", { { MOVBE_Fixup, v_mode }, Gv } },
|
{ "crc32", { Gdq, { CRC32_Fixup, v_mode } } },
|
{ "crc32", { Gdq, { CRC32_Fixup, v_mode } } },
|
},
|
},
|
|
|
/* PREFIX_0F3A08 */
|
/* PREFIX_0F3A08 */
|
{
|
{
|
Line 2580... |
Line 3249... |
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "mpsadbw", { XM, EXx, Ib } },
|
{ "mpsadbw", { XM, EXx, Ib } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
},
|
},
|
|
|
|
/* PREFIX_0F3A44 */
|
|
{
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "pclmulqdq", { XM, EXx, PCLMUL } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
/* PREFIX_0F3A60 */
|
/* PREFIX_0F3A60 */
|
{
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "pcmpestrm", { XM, EXx, Ib } },
|
{ "pcmpestrm", { XM, EXx, Ib } },
|
Line 2611... |
Line 3288... |
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "pcmpistri", { XM, EXx, Ib } },
|
{ "pcmpistri", { XM, EXx, Ib } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
},
|
},
|
};
|
|
|
|
static const struct dis386 x86_64_table[][2] = {
|
/* PREFIX_0F3ADF */
|
/* X86_64_06 */
|
|
{
|
{
|
{ "push{T|}", { es } },
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "aeskeygenassist", { XM, EXx, Ib } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
},
|
},
|
|
|
/* X86_64_07 */
|
/* PREFIX_VEX_10 */
|
{
|
{
|
{ "pop{T|}", { es } },
|
{ "vmovups", { XM, EXx } },
|
{ "(bad)", { XX } },
|
{ VEX_LEN_TABLE (VEX_LEN_10_P_1) },
|
|
{ "vmovupd", { XM, EXx } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_10_P_3) },
|
},
|
},
|
|
|
/* X86_64_0D */
|
/* PREFIX_VEX_11 */
|
{
|
{
|
{ "push{T|}", { cs } },
|
{ "vmovups", { EXxS, XM } },
|
{ "(bad)", { XX } },
|
{ VEX_LEN_TABLE (VEX_LEN_11_P_1) },
|
|
{ "vmovupd", { EXxS, XM } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_11_P_3) },
|
},
|
},
|
|
|
/* X86_64_16 */
|
/* PREFIX_VEX_12 */
|
{
|
{
|
{ "push{T|}", { ss } },
|
{ MOD_TABLE (MOD_VEX_12_PREFIX_0) },
|
{ "(bad)", { XX } },
|
{ "vmovsldup", { XM, EXx } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_12_P_2) },
|
|
{ "vmovddup", { XM, EXymmq } },
|
},
|
},
|
|
|
/* X86_64_17 */
|
/* PREFIX_VEX_16 */
|
{
|
{
|
{ "pop{T|}", { ss } },
|
{ MOD_TABLE (MOD_VEX_16_PREFIX_0) },
|
|
{ "vmovshdup", { XM, EXx } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_16_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
},
|
},
|
|
|
/* X86_64_1E */
|
/* PREFIX_VEX_2A */
|
{
|
{
|
{ "push{T|}", { ds } },
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_2A_P_1) },
|
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_2A_P_3) },
|
},
|
},
|
|
|
/* X86_64_1F */
|
/* PREFIX_VEX_2C */
|
{
|
{
|
{ "pop{T|}", { ds } },
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_2C_P_1) },
|
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_2C_P_3) },
|
},
|
},
|
|
|
/* X86_64_27 */
|
/* PREFIX_VEX_2D */
|
{
|
{
|
{ "daa", { XX } },
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_2D_P_1) },
|
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_2D_P_3) },
|
},
|
},
|
|
|
/* X86_64_2F */
|
/* PREFIX_VEX_2E */
|
{
|
{
|
{ "das", { XX } },
|
{ VEX_LEN_TABLE (VEX_LEN_2E_P_0) },
|
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_2E_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
},
|
},
|
|
|
/* X86_64_37 */
|
/* PREFIX_VEX_2F */
|
{
|
{
|
{ "aaa", { XX } },
|
{ VEX_LEN_TABLE (VEX_LEN_2F_P_0) },
|
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_2F_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
},
|
},
|
|
|
/* X86_64_3F */
|
/* PREFIX_VEX_51 */
|
{
|
{
|
{ "aas", { XX } },
|
{ "vsqrtps", { XM, EXx } },
|
{ "(bad)", { XX } },
|
{ VEX_LEN_TABLE (VEX_LEN_51_P_1) },
|
|
{ "vsqrtpd", { XM, EXx } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_51_P_3) },
|
},
|
},
|
|
|
/* X86_64_60 */
|
/* PREFIX_VEX_52 */
|
{
|
{
|
{ "pusha{P|}", { XX } },
|
{ "vrsqrtps", { XM, EXx } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_52_P_1) },
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
},
|
},
|
|
|
/* X86_64_61 */
|
/* PREFIX_VEX_53 */
|
{
|
{
|
{ "popa{P|}", { XX } },
|
{ "vrcpps", { XM, EXx } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_53_P_1) },
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
},
|
},
|
|
|
/* X86_64_62 */
|
/* PREFIX_VEX_58 */
|
{
|
{
|
{ MOD_TABLE (MOD_62_32BIT) },
|
{ "vaddps", { XM, Vex, EXx } },
|
{ "(bad)", { XX } },
|
{ VEX_LEN_TABLE (VEX_LEN_58_P_1) },
|
|
{ "vaddpd", { XM, Vex, EXx } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_58_P_3) },
|
},
|
},
|
|
|
/* X86_64_63 */
|
/* PREFIX_VEX_59 */
|
{
|
{
|
{ "arpl", { Ew, Gw } },
|
{ "vmulps", { XM, Vex, EXx } },
|
{ "movs{lq|xd}", { Gv, Ed } },
|
{ VEX_LEN_TABLE (VEX_LEN_59_P_1) },
|
|
{ "vmulpd", { XM, Vex, EXx } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_59_P_3) },
|
},
|
},
|
|
|
/* X86_64_6D */
|
/* PREFIX_VEX_5A */
|
{
|
{
|
{ "ins{R|}", { Yzr, indirDX } },
|
{ "vcvtps2pd", { XM, EXxmmq } },
|
{ "ins{G|}", { Yzr, indirDX } },
|
{ VEX_LEN_TABLE (VEX_LEN_5A_P_1) },
|
|
{ "vcvtpd2ps%XY", { XMM, EXx } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_5A_P_3) },
|
},
|
},
|
|
|
/* X86_64_6F */
|
/* PREFIX_VEX_5B */
|
{
|
{
|
{ "outs{R|}", { indirDXr, Xz } },
|
{ "vcvtdq2ps", { XM, EXx } },
|
{ "outs{G|}", { indirDXr, Xz } },
|
{ "vcvttps2dq", { XM, EXx } },
|
|
{ "vcvtps2dq", { XM, EXx } },
|
|
{ "(bad)", { XX } },
|
},
|
},
|
|
|
/* X86_64_9A */
|
/* PREFIX_VEX_5C */
|
{
|
{
|
{ "Jcall{T|}", { Ap } },
|
{ "vsubps", { XM, Vex, EXx } },
|
{ "(bad)", { XX } },
|
{ VEX_LEN_TABLE (VEX_LEN_5C_P_1) },
|
|
{ "vsubpd", { XM, Vex, EXx } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_5C_P_3) },
|
},
|
},
|
|
|
/* X86_64_C4 */
|
/* PREFIX_VEX_5D */
|
{
|
{
|
{ MOD_TABLE (MOD_C4_32BIT) },
|
{ "vminps", { XM, Vex, EXx } },
|
{ "(bad)", { XX } },
|
{ VEX_LEN_TABLE (VEX_LEN_5D_P_1) },
|
|
{ "vminpd", { XM, Vex, EXx } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_5D_P_3) },
|
},
|
},
|
|
|
/* X86_64_C5 */
|
/* PREFIX_VEX_5E */
|
{
|
{
|
{ MOD_TABLE (MOD_C5_32BIT) },
|
{ "vdivps", { XM, Vex, EXx } },
|
{ "(bad)", { XX } },
|
{ VEX_LEN_TABLE (VEX_LEN_5E_P_1) },
|
|
{ "vdivpd", { XM, Vex, EXx } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_5E_P_3) },
|
},
|
},
|
|
|
/* X86_64_CE */
|
/* PREFIX_VEX_5F */
|
{
|
{
|
{ "into", { XX } },
|
{ "vmaxps", { XM, Vex, EXx } },
|
{ "(bad)", { XX } },
|
{ VEX_LEN_TABLE (VEX_LEN_5F_P_1) },
|
|
{ "vmaxpd", { XM, Vex, EXx } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_5F_P_3) },
|
},
|
},
|
|
|
/* X86_64_D4 */
|
/* PREFIX_VEX_60 */
|
{
|
{
|
{ "aam", { sIb } },
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_60_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
},
|
},
|
|
|
/* X86_64_D5 */
|
/* PREFIX_VEX_61 */
|
{
|
{
|
{ "aad", { sIb } },
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_61_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
},
|
},
|
|
|
/* X86_64_EA */
|
/* PREFIX_VEX_62 */
|
{
|
{
|
{ "Jjmp{T|}", { Ap } },
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_62_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
},
|
},
|
|
|
/* X86_64_0F01_REG_0 */
|
/* PREFIX_VEX_63 */
|
{
|
{
|
{ "sgdt{Q|IQ}", { M } },
|
{ "(bad)", { XX } },
|
{ "sgdt", { M } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_63_P_2) },
|
|
{ "(bad)", { XX } },
|
},
|
},
|
|
|
/* X86_64_0F01_REG_1 */
|
/* PREFIX_VEX_64 */
|
{
|
{
|
{ "sidt{Q|IQ}", { M } },
|
{ "(bad)", { XX } },
|
{ "sidt", { M } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_64_P_2) },
|
|
{ "(bad)", { XX } },
|
},
|
},
|
|
|
/* X86_64_0F01_REG_2 */
|
/* PREFIX_VEX_65 */
|
{
|
{
|
{ "lgdt{Q|Q}", { M } },
|
{ "(bad)", { XX } },
|
{ "lgdt", { M } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_65_P_2) },
|
|
{ "(bad)", { XX } },
|
},
|
},
|
|
|
/* X86_64_0F01_REG_3 */
|
/* PREFIX_VEX_66 */
|
{
|
{
|
{ "lidt{Q|Q}", { M } },
|
{ "(bad)", { XX } },
|
{ "lidt", { M } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_66_P_2) },
|
|
{ "(bad)", { XX } },
|
},
|
},
|
};
|
|
|
|
static const struct dis386 three_byte_table[][256] = {
|
/* PREFIX_VEX_67 */
|
/* THREE_BYTE_0F24 */
|
|
{
|
{
|
/* 00 */
|
|
{ "fmaddps", { { OP_DREX4, q_mode } } },
|
|
{ "fmaddpd", { { OP_DREX4, q_mode } } },
|
|
{ "fmaddss", { { OP_DREX4, w_mode } } },
|
|
{ "fmaddsd", { { OP_DREX4, d_mode } } },
|
|
{ "fmaddps", { { OP_DREX4, DREX_OC1 + q_mode } } },
|
|
{ "fmaddpd", { { OP_DREX4, DREX_OC1 + q_mode } } },
|
|
{ "fmaddss", { { OP_DREX4, DREX_OC1 + w_mode } } },
|
|
{ "fmaddsd", { { OP_DREX4, DREX_OC1 + d_mode } } },
|
|
/* 08 */
|
|
{ "fmsubps", { { OP_DREX4, q_mode } } },
|
|
{ "fmsubpd", { { OP_DREX4, q_mode } } },
|
|
{ "fmsubss", { { OP_DREX4, w_mode } } },
|
|
{ "fmsubsd", { { OP_DREX4, d_mode } } },
|
|
{ "fmsubps", { { OP_DREX4, DREX_OC1 + q_mode } } },
|
|
{ "fmsubpd", { { OP_DREX4, DREX_OC1 + q_mode } } },
|
|
{ "fmsubss", { { OP_DREX4, DREX_OC1 + w_mode } } },
|
|
{ "fmsubsd", { { OP_DREX4, DREX_OC1 + d_mode } } },
|
|
/* 10 */
|
|
{ "fnmaddps", { { OP_DREX4, q_mode } } },
|
|
{ "fnmaddpd", { { OP_DREX4, q_mode } } },
|
|
{ "fnmaddss", { { OP_DREX4, w_mode } } },
|
|
{ "fnmaddsd", { { OP_DREX4, d_mode } } },
|
|
{ "fnmaddps", { { OP_DREX4, DREX_OC1 + q_mode } } },
|
|
{ "fnmaddpd", { { OP_DREX4, DREX_OC1 + q_mode } } },
|
|
{ "fnmaddss", { { OP_DREX4, DREX_OC1 + w_mode } } },
|
|
{ "fnmaddsd", { { OP_DREX4, DREX_OC1 + d_mode } } },
|
|
/* 18 */
|
|
{ "fnmsubps", { { OP_DREX4, q_mode } } },
|
|
{ "fnmsubpd", { { OP_DREX4, q_mode } } },
|
|
{ "fnmsubss", { { OP_DREX4, w_mode } } },
|
|
{ "fnmsubsd", { { OP_DREX4, d_mode } } },
|
|
{ "fnmsubps", { { OP_DREX4, DREX_OC1 + q_mode } } },
|
|
{ "fnmsubpd", { { OP_DREX4, DREX_OC1 + q_mode } } },
|
|
{ "fnmsubss", { { OP_DREX4, DREX_OC1 + w_mode } } },
|
|
{ "fnmsubsd", { { OP_DREX4, DREX_OC1 + d_mode } } },
|
|
/* 20 */
|
|
{ "permps", { { OP_DREX4, q_mode } } },
|
|
{ "permpd", { { OP_DREX4, q_mode } } },
|
|
{ "pcmov", { { OP_DREX4, q_mode } } },
|
|
{ "pperm", { { OP_DREX4, q_mode } } },
|
|
{ "permps", { { OP_DREX4, DREX_OC1 + q_mode } } },
|
|
{ "permpd", { { OP_DREX4, DREX_OC1 + q_mode } } },
|
|
{ "pcmov", { { OP_DREX4, DREX_OC1 + w_mode } } },
|
|
{ "pperm", { { OP_DREX4, DREX_OC1 + d_mode } } },
|
|
/* 28 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_67_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_68 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_68_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_69 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 30 */
|
{ VEX_LEN_TABLE (VEX_LEN_69_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_6A */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_6A_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_6B */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_6B_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_6C */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 38 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_6C_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_6D */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_6D_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_6E */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_6E_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 40 */
|
},
|
{ "protb", { { OP_DREX3, q_mode } } },
|
|
{ "protw", { { OP_DREX3, q_mode } } },
|
/* PREFIX_VEX_6F */
|
{ "protd", { { OP_DREX3, q_mode } } },
|
{
|
{ "protq", { { OP_DREX3, q_mode } } },
|
|
{ "pshlb", { { OP_DREX3, q_mode } } },
|
|
{ "pshlw", { { OP_DREX3, q_mode } } },
|
|
{ "pshld", { { OP_DREX3, q_mode } } },
|
|
{ "pshlq", { { OP_DREX3, q_mode } } },
|
|
/* 48 */
|
|
{ "pshab", { { OP_DREX3, q_mode } } },
|
|
{ "pshaw", { { OP_DREX3, q_mode } } },
|
|
{ "pshad", { { OP_DREX3, q_mode } } },
|
|
{ "pshaq", { { OP_DREX3, q_mode } } },
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vmovdqu", { XM, EXx } },
|
|
{ "vmovdqa", { XM, EXx } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_70 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_70_P_1) },
|
|
{ VEX_LEN_TABLE (VEX_LEN_70_P_2) },
|
|
{ VEX_LEN_TABLE (VEX_LEN_70_P_3) },
|
|
},
|
|
|
|
/* PREFIX_VEX_71_REG_2 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 50 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_71_R_2_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_71_REG_4 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_71_R_4_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_71_REG_6 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_71_R_6_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 58 */
|
},
|
|
|
|
/* PREFIX_VEX_72_REG_2 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_72_R_2_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_72_REG_4 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_72_R_4_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_72_REG_6 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 60 */
|
{ VEX_LEN_TABLE (VEX_LEN_72_R_6_P_2) },
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_73_REG_2 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_73_R_2_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_73_REG_3 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_73_R_3_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 68 */
|
},
|
|
|
|
/* PREFIX_VEX_73_REG_6 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_73_R_6_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_73_REG_7 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_73_R_7_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_74 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 70 */
|
{ VEX_LEN_TABLE (VEX_LEN_74_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_75 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_75_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_76 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_76_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_77 */
|
|
{
|
|
{ "", { VZERO } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 78 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_7C */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vhaddpd", { XM, Vex, EXx } },
|
|
{ "vhaddps", { XM, Vex, EXx } },
|
|
},
|
|
|
|
/* PREFIX_VEX_7D */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vhsubpd", { XM, Vex, EXx } },
|
|
{ "vhsubps", { XM, Vex, EXx } },
|
|
},
|
|
|
|
/* PREFIX_VEX_7E */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_7E_P_1) },
|
|
{ VEX_LEN_TABLE (VEX_LEN_7E_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 80 */
|
},
|
|
|
|
/* PREFIX_VEX_7F */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vmovdqu", { EXxS, XM } },
|
|
{ "vmovdqa", { EXxS, XM } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_C2 */
|
|
{
|
|
{ "vcmpps", { XM, Vex, EXx, VCMP } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_C2_P_1) },
|
|
{ "vcmppd", { XM, Vex, EXx, VCMP } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_C2_P_3) },
|
|
},
|
|
|
|
/* PREFIX_VEX_C4 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_C4_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "pmacssww", { { OP_DREX4, DREX_OC1 + DREX_NO_OC0 + q_mode } } },
|
},
|
{ "pmacsswd", { { OP_DREX4, DREX_OC1 + DREX_NO_OC0 + q_mode } } },
|
|
{ "pmacssdql", { { OP_DREX4, DREX_OC1 + DREX_NO_OC0 + q_mode } } },
|
/* PREFIX_VEX_C5 */
|
/* 88 */
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_C5_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_D0 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vaddsubpd", { XM, Vex, EXx } },
|
|
{ "vaddsubps", { XM, Vex, EXx } },
|
|
},
|
|
|
|
/* PREFIX_VEX_D1 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "pmacssdd", { { OP_DREX4, DREX_OC1 + DREX_NO_OC0 + q_mode } } },
|
|
{ "pmacssdqh", { { OP_DREX4, DREX_OC1 + DREX_NO_OC0 + q_mode } } },
|
|
/* 90 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_D1_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_D2 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_D2_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "pmacsww", { { OP_DREX4, DREX_OC1 + DREX_NO_OC0 + q_mode } } },
|
},
|
{ "pmacswd", { { OP_DREX4, DREX_OC1 + DREX_NO_OC0 + q_mode } } },
|
|
{ "pmacsdql", { { OP_DREX4, DREX_OC1 + DREX_NO_OC0 + q_mode } } },
|
/* PREFIX_VEX_D3 */
|
/* 98 */
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_D3_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_D4 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_D4_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "pmacsdd", { { OP_DREX4, DREX_OC1 + DREX_NO_OC0 + q_mode } } },
|
},
|
{ "pmacsdqh", { { OP_DREX4, DREX_OC1 + DREX_NO_OC0 + q_mode } } },
|
|
/* a0 */
|
/* PREFIX_VEX_D5 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_D5_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_D6 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_D6_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "pmadcsswd", { { OP_DREX4, DREX_OC1 + DREX_NO_OC0 + q_mode } } },
|
},
|
|
|
|
/* PREFIX_VEX_D7 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* a8 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ MOD_TABLE (MOD_VEX_D7_PREFIX_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_D8 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_D8_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_D9 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_D9_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* b0 */
|
},
|
|
|
|
/* PREFIX_VEX_DA */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_DA_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_DB */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_DB_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "pmadcswd", { { OP_DREX4, DREX_OC1 + DREX_NO_OC0 + q_mode } } },
|
},
|
|
|
|
/* PREFIX_VEX_DC */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* b8 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_DC_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_DD */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_DD_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_DE */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_DE_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* c0 */
|
},
|
|
|
|
/* PREFIX_VEX_DF */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_DF_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_E0 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_E0_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_E1 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* c8 */
|
{ VEX_LEN_TABLE (VEX_LEN_E1_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_E2 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_E2_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_E3 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_E3_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_E4 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* d0 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_E4_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_E5 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_E5_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_E6 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vcvtdq2pd", { XM, EXxmmq } },
|
|
{ "vcvttpd2dq%XY", { XMM, EXx } },
|
|
{ "vcvtpd2dq%XY", { XMM, EXx } },
|
|
},
|
|
|
|
/* PREFIX_VEX_E7 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* d8 */
|
{ MOD_TABLE (MOD_VEX_E7_PREFIX_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_E8 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_E8_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_E9 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_E9_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_EA */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* e0 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_EA_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_EB */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_EB_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_EC */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_EC_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* e8 */
|
},
|
|
|
|
/* PREFIX_VEX_ED */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_ED_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_EE */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_EE_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_EF */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* f0 */
|
{ VEX_LEN_TABLE (VEX_LEN_EF_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_F0 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ MOD_TABLE (MOD_VEX_F0_PREFIX_3) },
|
|
},
|
|
|
|
/* PREFIX_VEX_F1 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_F1_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_F2 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* f8 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_F2_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_F3 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_F3_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_F4 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_F4_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
},
|
},
|
/* THREE_BYTE_0F25 */
|
|
|
/* PREFIX_VEX_F5 */
|
{
|
{
|
/* 00 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_F5_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_F6 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_F6_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_F7 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 08 */
|
{ VEX_LEN_TABLE (VEX_LEN_F7_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_F8 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_F8_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_F9 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_F9_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_FA */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 10 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_FA_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_FB */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_FB_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_FC */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_FC_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 18 */
|
},
|
|
|
|
/* PREFIX_VEX_FD */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_FD_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_FE */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_FE_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3800 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 20 */
|
{ VEX_LEN_TABLE (VEX_LEN_3800_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3801 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3801_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3802 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3802_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3803 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 28 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3803_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3804 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "comps", { { OP_DREX3, q_mode }, { OP_DREX_FCMP, b_mode } } },
|
{ VEX_LEN_TABLE (VEX_LEN_3804_P_2) },
|
{ "compd", { { OP_DREX3, q_mode }, { OP_DREX_FCMP, b_mode } } },
|
|
{ "comss", { { OP_DREX3, w_mode }, { OP_DREX_FCMP, b_mode } } },
|
|
{ "comsd", { { OP_DREX3, d_mode }, { OP_DREX_FCMP, b_mode } } },
|
|
/* 30 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3805 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3805_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3806 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3806_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3807 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 38 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3807_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3808 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3808_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3809 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3809_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 40 */
|
},
|
|
|
|
/* PREFIX_VEX_380A */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_380A_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_380B */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_380B_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_380C */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 48 */
|
{ "vpermilps", { XM, Vex, EXx } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_380D */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vpermilpd", { XM, Vex, EXx } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "pcomb", { { OP_DREX3, q_mode }, { OP_DREX_ICMP, b_mode } } },
|
},
|
{ "pcomw", { { OP_DREX3, q_mode }, { OP_DREX_ICMP, b_mode } } },
|
|
{ "pcomd", { { OP_DREX3, q_mode }, { OP_DREX_ICMP, b_mode } } },
|
/* PREFIX_VEX_380E */
|
{ "pcomq", { { OP_DREX3, q_mode }, { OP_DREX_ICMP, b_mode } } },
|
{
|
/* 50 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vtestps", { XM, EXx } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_380F */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vtestpd", { XM, EXx } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3817 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 58 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vptest", { XM, EXx } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3818 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ MOD_TABLE (MOD_VEX_3818_PREFIX_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3819 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ MOD_TABLE (MOD_VEX_3819_PREFIX_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 60 */
|
},
|
|
|
|
/* PREFIX_VEX_381A */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ MOD_TABLE (MOD_VEX_381A_PREFIX_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_381C */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_381C_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_381D */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 68 */
|
{ VEX_LEN_TABLE (VEX_LEN_381D_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_381E */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_381E_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "pcomub", { { OP_DREX3, q_mode }, { OP_DREX_ICMP, b_mode } } },
|
},
|
{ "pcomuw", { { OP_DREX3, q_mode }, { OP_DREX_ICMP, b_mode } } },
|
|
{ "pcomud", { { OP_DREX3, q_mode }, { OP_DREX_ICMP, b_mode } } },
|
/* PREFIX_VEX_3820 */
|
{ "pcomuq", { { OP_DREX3, q_mode }, { OP_DREX_ICMP, b_mode } } },
|
{
|
/* 70 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3820_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3821 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3821_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3822 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 78 */
|
{ VEX_LEN_TABLE (VEX_LEN_3822_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3823 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3823_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3824 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3824_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3825 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 80 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3825_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3828 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3828_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3829 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3829_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 88 */
|
},
|
|
|
|
/* PREFIX_VEX_382A */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ MOD_TABLE (MOD_VEX_382A_PREFIX_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_382B */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_382B_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_382C */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 90 */
|
{ MOD_TABLE (MOD_VEX_382C_PREFIX_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_382D */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ MOD_TABLE (MOD_VEX_382D_PREFIX_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_382E */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ MOD_TABLE (MOD_VEX_382E_PREFIX_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_382F */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 98 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ MOD_TABLE (MOD_VEX_382F_PREFIX_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3830 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3830_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3831 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3831_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* a0 */
|
},
|
|
|
|
/* PREFIX_VEX_3832 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3832_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3833 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3833_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3834 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* a8 */
|
{ VEX_LEN_TABLE (VEX_LEN_3834_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3835 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3835_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3837 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3837_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3838 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* b0 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3838_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3839 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3839_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_383A */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_383A_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* b8 */
|
},
|
|
|
|
/* PREFIX_VEX_383B */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_383B_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_383C */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_383C_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_383D */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* c0 */
|
{ VEX_LEN_TABLE (VEX_LEN_383D_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_383E */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_383E_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_383F */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_383F_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3840 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* c8 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3840_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3841 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3841_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3896 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vfmaddsub132p%XW", { XM, Vex, EXx } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* d0 */
|
},
|
|
|
|
/* PREFIX_VEX_3897 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vfmsubadd132p%XW", { XM, Vex, EXx } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3898 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vfmadd132p%XW", { XM, Vex, EXx } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3899 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* d8 */
|
{ "vfmadd132s%XW", { XM, Vex, EXVexWdq } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_389A */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vfmsub132p%XW", { XM, Vex, EXx } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_389B */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vfmsub132s%XW", { XM, Vex, EXVexWdq } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_389C */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* e0 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vfnmadd132p%XW", { XM, Vex, EXx } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_389D */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vfnmadd132s%XW", { XM, Vex, EXVexWdq } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_389E */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vfnmsub132p%XW", { XM, Vex, EXx } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* e8 */
|
},
|
|
|
|
/* PREFIX_VEX_389F */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vfnmsub132s%XW", { XM, Vex, EXVexWdq } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_38A6 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vfmaddsub213p%XW", { XM, Vex, EXx } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_38A7 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* f0 */
|
{ "vfmsubadd213p%XW", { XM, Vex, EXx } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_38A8 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vfmadd213p%XW", { XM, Vex, EXx } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_38A9 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vfmadd213s%XW", { XM, Vex, EXVexWdq } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_38AA */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* f8 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vfmsub213p%XW", { XM, Vex, EXx } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_38AB */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vfmsub213s%XW", { XM, Vex, EXVexWdq } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_38AC */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vfnmadd213p%XW", { XM, Vex, EXx } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
},
|
},
|
/* THREE_BYTE_0F38 */
|
|
|
/* PREFIX_VEX_38AD */
|
{
|
{
|
/* 00 */
|
|
{ "pshufb", { MX, EM } },
|
|
{ "phaddw", { MX, EM } },
|
|
{ "phaddd", { MX, EM } },
|
|
{ "phaddsw", { MX, EM } },
|
|
{ "pmaddubsw", { MX, EM } },
|
|
{ "phsubw", { MX, EM } },
|
|
{ "phsubd", { MX, EM } },
|
|
{ "phsubsw", { MX, EM } },
|
|
/* 08 */
|
|
{ "psignb", { MX, EM } },
|
|
{ "psignw", { MX, EM } },
|
|
{ "psignd", { MX, EM } },
|
|
{ "pmulhrsw", { MX, EM } },
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vfnmadd213s%XW", { XM, Vex, EXVexWdq } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_38AE */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 10 */
|
|
{ PREFIX_TABLE (PREFIX_0F3810) },
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vfnmsub213p%XW", { XM, Vex, EXx } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_38AF */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ PREFIX_TABLE (PREFIX_0F3814) },
|
|
{ PREFIX_TABLE (PREFIX_0F3815) },
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ PREFIX_TABLE (PREFIX_0F3817) },
|
{ "vfnmsub213s%XW", { XM, Vex, EXVexWdq } },
|
/* 18 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_38B6 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vfmaddsub231p%XW", { XM, Vex, EXx } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "pabsb", { MX, EM } },
|
},
|
{ "pabsw", { MX, EM } },
|
|
{ "pabsd", { MX, EM } },
|
/* PREFIX_VEX_38B7 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 20 */
|
|
{ PREFIX_TABLE (PREFIX_0F3820) },
|
|
{ PREFIX_TABLE (PREFIX_0F3821) },
|
|
{ PREFIX_TABLE (PREFIX_0F3822) },
|
|
{ PREFIX_TABLE (PREFIX_0F3823) },
|
|
{ PREFIX_TABLE (PREFIX_0F3824) },
|
|
{ PREFIX_TABLE (PREFIX_0F3825) },
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vfmsubadd231p%XW", { XM, Vex, EXx } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 28 */
|
},
|
{ PREFIX_TABLE (PREFIX_0F3828) },
|
|
{ PREFIX_TABLE (PREFIX_0F3829) },
|
/* PREFIX_VEX_38B8 */
|
{ PREFIX_TABLE (PREFIX_0F382A) },
|
{
|
{ PREFIX_TABLE (PREFIX_0F382B) },
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vfmadd231p%XW", { XM, Vex, EXx } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_38B9 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 30 */
|
|
{ PREFIX_TABLE (PREFIX_0F3830) },
|
|
{ PREFIX_TABLE (PREFIX_0F3831) },
|
|
{ PREFIX_TABLE (PREFIX_0F3832) },
|
|
{ PREFIX_TABLE (PREFIX_0F3833) },
|
|
{ PREFIX_TABLE (PREFIX_0F3834) },
|
|
{ PREFIX_TABLE (PREFIX_0F3835) },
|
|
{ "(bad)", { XX } },
|
|
{ PREFIX_TABLE (PREFIX_0F3837) },
|
|
/* 38 */
|
|
{ PREFIX_TABLE (PREFIX_0F3838) },
|
|
{ PREFIX_TABLE (PREFIX_0F3839) },
|
|
{ PREFIX_TABLE (PREFIX_0F383A) },
|
|
{ PREFIX_TABLE (PREFIX_0F383B) },
|
|
{ PREFIX_TABLE (PREFIX_0F383C) },
|
|
{ PREFIX_TABLE (PREFIX_0F383D) },
|
|
{ PREFIX_TABLE (PREFIX_0F383E) },
|
|
{ PREFIX_TABLE (PREFIX_0F383F) },
|
|
/* 40 */
|
|
{ PREFIX_TABLE (PREFIX_0F3840) },
|
|
{ PREFIX_TABLE (PREFIX_0F3841) },
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vfmadd231s%XW", { XM, Vex, EXVexWdq } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_38BA */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vfmsub231p%XW", { XM, Vex, EXx } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_38BB */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 48 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vfmsub231s%XW", { XM, Vex, EXVexWdq } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_38BC */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vfnmadd231p%XW", { XM, Vex, EXx } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_38BD */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vfnmadd231s%XW", { XM, Vex, EXVexWdq } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 50 */
|
},
|
|
|
|
/* PREFIX_VEX_38BE */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vfnmsub231p%XW", { XM, Vex, EXx } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_38BF */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vfnmsub231s%XW", { XM, Vex, EXVexWdq } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_38DB */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 58 */
|
{ VEX_LEN_TABLE (VEX_LEN_38DB_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_38DC */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_38DC_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_38DD */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_38DD_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_38DE */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 60 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_38DE_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_38DF */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_38DF_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3A04 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vpermilps", { XM, EXx, Ib } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 68 */
|
},
|
|
|
|
/* PREFIX_VEX_3A05 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vpermilpd", { XM, EXx, Ib } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3A06 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3A06_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3A08 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 70 */
|
{ "vroundps", { XM, EXx, Ib } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3A09 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vroundpd", { XM, EXx, Ib } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3A0A */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3A0A_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3A0B */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 78 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3A0B_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3A0C */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vblendps", { XM, Vex, EXx, Ib } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3A0D */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vblendpd", { XM, Vex, EXx, Ib } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 80 */
|
},
|
|
|
|
/* PREFIX_VEX_3A0E */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3A0E_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3A0F */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3A0F_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3A14 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 88 */
|
{ VEX_LEN_TABLE (VEX_LEN_3A14_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3A15 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3A15_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3A16 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3A16_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3A17 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 90 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3A17_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3A18 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3A18_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3A19 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3A19_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 98 */
|
},
|
|
|
|
/* PREFIX_VEX_3A20 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3A20_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3A21 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3A21_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3A22 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* a0 */
|
{ VEX_LEN_TABLE (VEX_LEN_3A22_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3A40 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vdpps", { XM, Vex, EXx, Ib } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3A41 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3A41_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3A42 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* a8 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3A42_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3A44 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3A44_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3A4A */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vblendvps", { XM, Vex, EXx, XMVexI4 } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* b0 */
|
},
|
|
|
|
/* PREFIX_VEX_3A4B */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vblendvpd", { XM, Vex, EXx, XMVexI4 } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3A4C */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3A4C_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3A5C */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* b8 */
|
{ "vfmaddsubps", { XMVexW, VexFMA, EXVexW, EXVexW, VexI4 } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3A5D */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vfmaddsubpd", { XMVexW, VexFMA, EXVexW, EXVexW, VexI4 } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3A5E */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vfmsubaddps", { XMVexW, VexFMA, EXVexW, EXVexW, VexI4 } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3A5F */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* c0 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vfmsubaddpd", { XMVexW, VexFMA, EXVexW, EXVexW, VexI4 } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3A60 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3A60_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3A61 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3A61_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* c8 */
|
},
|
|
|
|
/* PREFIX_VEX_3A62 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3A62_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3A63 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3A63_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3A68 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* d0 */
|
{ "vfmaddps", { XMVexW, VexFMA, EXVexW, EXVexW, VexI4 } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3A69 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vfmaddpd", { XMVexW, VexFMA, EXVexW, EXVexW, VexI4 } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3A6A */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3A6A_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3A6B */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* d8 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3A6B_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3A6C */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vfmsubps", { XMVexW, VexFMA, EXVexW, EXVexW, VexI4 } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3A6D */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vfmsubpd", { XMVexW, VexFMA, EXVexW, EXVexW, VexI4 } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* e0 */
|
},
|
|
|
|
/* PREFIX_VEX_3A6E */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3A6E_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3A6F */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3A6F_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3A78 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* e8 */
|
{ "vfnmaddps", { XMVexW, VexFMA, EXVexW, EXVexW, VexI4 } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3A79 */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vfnmaddpd", { XMVexW, VexFMA, EXVexW, EXVexW, VexI4 } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3A7A */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3A7A_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3A7B */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* f0 */
|
|
{ PREFIX_TABLE (PREFIX_0F38F0) },
|
|
{ PREFIX_TABLE (PREFIX_0F38F1) },
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3A7B_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3A7C */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vfnmsubps", { XMVexW, VexFMA, EXVexW, EXVexW, VexI4 } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3A7D */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* f8 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "vfnmsubpd", { XMVexW, VexFMA, EXVexW, EXVexW, VexI4 } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3A7E */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3A7E_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* PREFIX_VEX_3A7F */
|
|
{
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3A7F_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
},
|
},
|
/* THREE_BYTE_0F3A */
|
|
|
/* PREFIX_VEX_3ADF */
|
{
|
{
|
/* 00 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_3ADF_P_2) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
};
|
|
|
|
static const struct dis386 x86_64_table[][2] = {
|
|
/* X86_64_06 */
|
|
{
|
|
{ "push{T|}", { es } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* X86_64_07 */
|
|
{
|
|
{ "pop{T|}", { es } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* X86_64_0D */
|
|
{
|
|
{ "push{T|}", { cs } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* X86_64_16 */
|
|
{
|
|
{ "push{T|}", { ss } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* X86_64_17 */
|
|
{
|
|
{ "pop{T|}", { ss } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 08 */
|
},
|
{ PREFIX_TABLE (PREFIX_0F3A08) },
|
|
{ PREFIX_TABLE (PREFIX_0F3A09) },
|
/* X86_64_1E */
|
{ PREFIX_TABLE (PREFIX_0F3A0A) },
|
{
|
{ PREFIX_TABLE (PREFIX_0F3A0B) },
|
{ "push{T|}", { ds } },
|
{ PREFIX_TABLE (PREFIX_0F3A0C) },
|
|
{ PREFIX_TABLE (PREFIX_0F3A0D) },
|
|
{ PREFIX_TABLE (PREFIX_0F3A0E) },
|
|
{ "palignr", { MX, EM, Ib } },
|
|
/* 10 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ PREFIX_TABLE (PREFIX_0F3A14) },
|
|
{ PREFIX_TABLE (PREFIX_0F3A15) },
|
|
{ PREFIX_TABLE (PREFIX_0F3A16) },
|
|
{ PREFIX_TABLE (PREFIX_0F3A17) },
|
|
/* 18 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* X86_64_1F */
|
|
{
|
|
{ "pop{T|}", { ds } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* X86_64_27 */
|
|
{
|
|
{ "daa", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* X86_64_2F */
|
|
{
|
|
{ "das", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* X86_64_37 */
|
|
{
|
|
{ "aaa", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 20 */
|
},
|
{ PREFIX_TABLE (PREFIX_0F3A20) },
|
|
{ PREFIX_TABLE (PREFIX_0F3A21) },
|
/* X86_64_3F */
|
{ PREFIX_TABLE (PREFIX_0F3A22) },
|
{
|
|
{ "aas", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* X86_64_60 */
|
|
{
|
|
{ "pusha{P|}", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* X86_64_61 */
|
|
{
|
|
{ "popa{P|}", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* X86_64_62 */
|
|
{
|
|
{ MOD_TABLE (MOD_62_32BIT) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* X86_64_63 */
|
|
{
|
|
{ "arpl", { Ew, Gw } },
|
|
{ "movs{lq|xd}", { Gv, Ed } },
|
|
},
|
|
|
|
/* X86_64_6D */
|
|
{
|
|
{ "ins{R|}", { Yzr, indirDX } },
|
|
{ "ins{G|}", { Yzr, indirDX } },
|
|
},
|
|
|
|
/* X86_64_6F */
|
|
{
|
|
{ "outs{R|}", { indirDXr, Xz } },
|
|
{ "outs{G|}", { indirDXr, Xz } },
|
|
},
|
|
|
|
/* X86_64_9A */
|
|
{
|
|
{ "Jcall{T|}", { Ap } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 28 */
|
},
|
|
|
|
/* X86_64_C4 */
|
|
{
|
|
{ MOD_TABLE (MOD_C4_32BIT) },
|
|
{ VEX_C4_TABLE (VEX_0F) },
|
|
},
|
|
|
|
/* X86_64_C5 */
|
|
{
|
|
{ MOD_TABLE (MOD_C5_32BIT) },
|
|
{ VEX_C5_TABLE (VEX_0F) },
|
|
},
|
|
|
|
/* X86_64_CE */
|
|
{
|
|
{ "into", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* X86_64_D4 */
|
|
{
|
|
{ "aam", { sIb } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* X86_64_D5 */
|
|
{
|
|
{ "aad", { sIb } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* X86_64_EA */
|
|
{
|
|
{ "Jjmp{T|}", { Ap } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* X86_64_0F01_REG_0 */
|
|
{
|
|
{ "sgdt{Q|IQ}", { M } },
|
|
{ "sgdt", { M } },
|
|
},
|
|
|
|
/* X86_64_0F01_REG_1 */
|
|
{
|
|
{ "sidt{Q|IQ}", { M } },
|
|
{ "sidt", { M } },
|
|
},
|
|
|
|
/* X86_64_0F01_REG_2 */
|
|
{
|
|
{ "lgdt{Q|Q}", { M } },
|
|
{ "lgdt", { M } },
|
|
},
|
|
|
|
/* X86_64_0F01_REG_3 */
|
|
{
|
|
{ "lidt{Q|Q}", { M } },
|
|
{ "lidt", { M } },
|
|
},
|
|
};
|
|
|
|
static const struct dis386 three_byte_table[][256] = {
|
|
|
|
/* THREE_BYTE_0F38 */
|
|
{
|
|
/* 00 */
|
|
{ "pshufb", { MX, EM } },
|
|
{ "phaddw", { MX, EM } },
|
|
{ "phaddd", { MX, EM } },
|
|
{ "phaddsw", { MX, EM } },
|
|
{ "pmaddubsw", { MX, EM } },
|
|
{ "phsubw", { MX, EM } },
|
|
{ "phsubd", { MX, EM } },
|
|
{ "phsubsw", { MX, EM } },
|
|
/* 08 */
|
|
{ "psignb", { MX, EM } },
|
|
{ "psignw", { MX, EM } },
|
|
{ "psignd", { MX, EM } },
|
|
{ "pmulhrsw", { MX, EM } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 30 */
|
/* 10 */
|
|
{ PREFIX_TABLE (PREFIX_0F3810) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ PREFIX_TABLE (PREFIX_0F3814) },
|
|
{ PREFIX_TABLE (PREFIX_0F3815) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ PREFIX_TABLE (PREFIX_0F3817) },
|
|
/* 18 */
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 38 */
|
{ "pabsb", { MX, EM } },
|
|
{ "pabsw", { MX, EM } },
|
|
{ "pabsd", { MX, EM } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
/* 20 */
|
|
{ PREFIX_TABLE (PREFIX_0F3820) },
|
|
{ PREFIX_TABLE (PREFIX_0F3821) },
|
|
{ PREFIX_TABLE (PREFIX_0F3822) },
|
|
{ PREFIX_TABLE (PREFIX_0F3823) },
|
|
{ PREFIX_TABLE (PREFIX_0F3824) },
|
|
{ PREFIX_TABLE (PREFIX_0F3825) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
/* 28 */
|
|
{ PREFIX_TABLE (PREFIX_0F3828) },
|
|
{ PREFIX_TABLE (PREFIX_0F3829) },
|
|
{ PREFIX_TABLE (PREFIX_0F382A) },
|
|
{ PREFIX_TABLE (PREFIX_0F382B) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
/* 30 */
|
|
{ PREFIX_TABLE (PREFIX_0F3830) },
|
|
{ PREFIX_TABLE (PREFIX_0F3831) },
|
|
{ PREFIX_TABLE (PREFIX_0F3832) },
|
|
{ PREFIX_TABLE (PREFIX_0F3833) },
|
|
{ PREFIX_TABLE (PREFIX_0F3834) },
|
|
{ PREFIX_TABLE (PREFIX_0F3835) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ PREFIX_TABLE (PREFIX_0F3837) },
|
|
/* 38 */
|
|
{ PREFIX_TABLE (PREFIX_0F3838) },
|
|
{ PREFIX_TABLE (PREFIX_0F3839) },
|
|
{ PREFIX_TABLE (PREFIX_0F383A) },
|
|
{ PREFIX_TABLE (PREFIX_0F383B) },
|
|
{ PREFIX_TABLE (PREFIX_0F383C) },
|
|
{ PREFIX_TABLE (PREFIX_0F383D) },
|
|
{ PREFIX_TABLE (PREFIX_0F383E) },
|
|
{ PREFIX_TABLE (PREFIX_0F383F) },
|
/* 40 */
|
/* 40 */
|
{ PREFIX_TABLE (PREFIX_0F3A40) },
|
{ PREFIX_TABLE (PREFIX_0F3840) },
|
{ PREFIX_TABLE (PREFIX_0F3A41) },
|
{ PREFIX_TABLE (PREFIX_0F3841) },
|
{ PREFIX_TABLE (PREFIX_0F3A42) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
Line 3768... |
Line 5549... |
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 60 */
|
/* 60 */
|
{ PREFIX_TABLE (PREFIX_0F3A60) },
|
{ "(bad)", { XX } },
|
{ PREFIX_TABLE (PREFIX_0F3A61) },
|
{ "(bad)", { XX } },
|
{ PREFIX_TABLE (PREFIX_0F3A62) },
|
{ "(bad)", { XX } },
|
{ PREFIX_TABLE (PREFIX_0F3A63) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 68 */
|
/* 68 */
|
Line 3804... |
Line 5585... |
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 80 */
|
/* 80 */
|
{ "(bad)", { XX } },
|
{ PREFIX_TABLE (PREFIX_0F3880) },
|
{ "(bad)", { XX } },
|
{ PREFIX_TABLE (PREFIX_0F3881) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
Line 3906... |
Line 5687... |
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* d8 */
|
/* d8 */
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ PREFIX_TABLE (PREFIX_0F38DB) },
|
{ "(bad)", { XX } },
|
{ PREFIX_TABLE (PREFIX_0F38DC) },
|
{ "(bad)", { XX } },
|
{ PREFIX_TABLE (PREFIX_0F38DD) },
|
{ "(bad)", { XX } },
|
{ PREFIX_TABLE (PREFIX_0F38DE) },
|
{ "(bad)", { XX } },
|
{ PREFIX_TABLE (PREFIX_0F38DF) },
|
/* e0 */
|
/* e0 */
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
Line 3930... |
Line 5711... |
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* f0 */
|
/* f0 */
|
{ "(bad)", { XX } },
|
{ PREFIX_TABLE (PREFIX_0F38F0) },
|
{ "(bad)", { XX } },
|
{ PREFIX_TABLE (PREFIX_0F38F1) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
Line 3948... |
Line 5729... |
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
},
|
},
|
/* THREE_BYTE_0F7A */
|
/* THREE_BYTE_0F3A */
|
{
|
{
|
/* 00 */
|
/* 00 */
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
Line 3960... |
Line 5741... |
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 08 */
|
/* 08 */
|
|
{ PREFIX_TABLE (PREFIX_0F3A08) },
|
|
{ PREFIX_TABLE (PREFIX_0F3A09) },
|
|
{ PREFIX_TABLE (PREFIX_0F3A0A) },
|
|
{ PREFIX_TABLE (PREFIX_0F3A0B) },
|
|
{ PREFIX_TABLE (PREFIX_0F3A0C) },
|
|
{ PREFIX_TABLE (PREFIX_0F3A0D) },
|
|
{ PREFIX_TABLE (PREFIX_0F3A0E) },
|
|
{ "palignr", { MX, EM, Ib } },
|
|
/* 10 */
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ PREFIX_TABLE (PREFIX_0F3A14) },
|
|
{ PREFIX_TABLE (PREFIX_0F3A15) },
|
|
{ PREFIX_TABLE (PREFIX_0F3A16) },
|
|
{ PREFIX_TABLE (PREFIX_0F3A17) },
|
|
/* 18 */
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 10 */
|
|
{ "frczps", { XM, EXq } },
|
|
{ "frczpd", { XM, EXq } },
|
|
{ "frczss", { XM, EXq } },
|
|
{ "frczsd", { XM, EXq } },
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 18 */
|
/* 20 */
|
{ "(bad)", { XX } },
|
{ PREFIX_TABLE (PREFIX_0F3A20) },
|
|
{ PREFIX_TABLE (PREFIX_0F3A21) },
|
|
{ PREFIX_TABLE (PREFIX_0F3A22) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
/* 28 */
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 20 */
|
|
{ "ptest", { XX } },
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
/* 30 */
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 28 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
/* 38 */
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 30 */
|
|
{ "cvtph2ps", { XM, EXd } },
|
|
{ "cvtps2ph", { EXd, XM } },
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 38 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
/* 40 */
|
|
{ PREFIX_TABLE (PREFIX_0F3A40) },
|
|
{ PREFIX_TABLE (PREFIX_0F3A41) },
|
|
{ PREFIX_TABLE (PREFIX_0F3A42) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ PREFIX_TABLE (PREFIX_0F3A44) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
/* 48 */
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 40 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "phaddbw", { XM, EXq } },
|
|
{ "phaddbd", { XM, EXq } },
|
|
{ "phaddbq", { XM, EXq } },
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "phaddwd", { XM, EXq } },
|
|
{ "phaddwq", { XM, EXq } },
|
|
/* 48 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
/* 50 */
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "phadddq", { XM, EXq } },
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 50 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "phaddubw", { XM, EXq } },
|
|
{ "phaddubd", { XM, EXq } },
|
|
{ "phaddubq", { XM, EXq } },
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "phadduwd", { XM, EXq } },
|
|
{ "phadduwq", { XM, EXq } },
|
|
/* 58 */
|
/* 58 */
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "phaddudq", { XM, EXq } },
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 60 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "phsubbw", { XM, EXq } },
|
/* 60 */
|
{ "phsubbd", { XM, EXq } },
|
{ PREFIX_TABLE (PREFIX_0F3A60) },
|
{ "phsubbq", { XM, EXq } },
|
{ PREFIX_TABLE (PREFIX_0F3A61) },
|
|
{ PREFIX_TABLE (PREFIX_0F3A62) },
|
|
{ PREFIX_TABLE (PREFIX_0F3A63) },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 68 */
|
/* 68 */
|
Line 4201... |
Line 5982... |
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ PREFIX_TABLE (PREFIX_0F3ADF) },
|
/* e0 */
|
/* e0 */
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
Line 4239... |
Line 6020... |
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
},
|
},
|
/* THREE_BYTE_0F7B */
|
|
|
/* THREE_BYTE_0F7A */
|
{
|
{
|
/* 00 */
|
/* 00 */
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
Line 4278... |
Line 6060... |
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 20 */
|
/* 20 */
|
{ "(bad)", { XX } },
|
{ "ptest", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
Line 4314... |
Line 6096... |
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 40 */
|
/* 40 */
|
{ "protb", { XM, EXq, Ib } },
|
{ "(bad)", { XX } },
|
{ "protw", { XM, EXq, Ib } },
|
{ "phaddbw", { XM, EXq } },
|
{ "protd", { XM, EXq, Ib } },
|
{ "phaddbd", { XM, EXq } },
|
{ "protq", { XM, EXq, Ib } },
|
{ "phaddbq", { XM, EXq } },
|
{ "pshlb", { XM, EXq, Ib } },
|
|
{ "pshlw", { XM, EXq, Ib } },
|
|
{ "pshld", { XM, EXq, Ib } },
|
|
{ "pshlq", { XM, EXq, Ib } },
|
|
/* 48 */
|
|
{ "pshab", { XM, EXq, Ib } },
|
|
{ "pshaw", { XM, EXq, Ib } },
|
|
{ "pshad", { XM, EXq, Ib } },
|
|
{ "pshaq", { XM, EXq, Ib } },
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "phaddwd", { XM, EXq } },
|
|
{ "phaddwq", { XM, EXq } },
|
|
/* 48 */
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 50 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "phadddq", { XM, EXq } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
/* 50 */
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "phaddubw", { XM, EXq } },
|
|
{ "phaddubd", { XM, EXq } },
|
|
{ "phaddubq", { XM, EXq } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
|
{ "phadduwd", { XM, EXq } },
|
|
{ "phadduwq", { XM, EXq } },
|
/* 58 */
|
/* 58 */
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "phaddudq", { XM, EXq } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 60 */
|
/* 60 */
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "phsubbw", { XM, EXq } },
|
{ "(bad)", { XX } },
|
{ "phsubbd", { XM, EXq } },
|
{ "(bad)", { XX } },
|
{ "phsubbq", { XM, EXq } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
/* 68 */
|
/* 68 */
|
Line 4529... |
Line 6311... |
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
}
|
},
|
};
|
};
|
|
|
static const struct dis386 mod_table[][2] = {
|
|
|
static const struct dis386 vex_table[][256] = {
|
|
/* VEX_0F */
|
{
|
{
|
/* MOD_8D */
|
/* 00 */
|
{ "leaS", { Gv, M } },
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
},
|
|
{
|
|
/* MOD_0F01_REG_0 */
|
|
{ X86_64_TABLE (X86_64_0F01_REG_0) },
|
|
{ RM_TABLE (RM_0F01_REG_0) },
|
|
},
|
|
{
|
|
/* MOD_0F01_REG_1 */
|
|
{ X86_64_TABLE (X86_64_0F01_REG_1) },
|
|
{ RM_TABLE (RM_0F01_REG_1) },
|
|
},
|
|
{
|
|
/* MOD_0F01_REG_2 */
|
|
{ X86_64_TABLE (X86_64_0F01_REG_2) },
|
|
{ RM_TABLE (RM_0F01_REG_2) },
|
|
},
|
|
{
|
|
/* MOD_0F01_REG_3 */
|
|
{ X86_64_TABLE (X86_64_0F01_REG_3) },
|
|
{ RM_TABLE (RM_0F01_REG_3) },
|
|
},
|
|
{
|
|
/* MOD_0F01_REG_7 */
|
|
{ "invlpg", { Mb } },
|
|
{ RM_TABLE (RM_0F01_REG_7) },
|
|
},
|
|
{
|
|
/* MOD_0F12_PREFIX_0 */
|
|
{ "movlps", { XM, EXq } },
|
|
{ "movhlps", { XM, EXq } },
|
|
},
|
|
{
|
|
/* MOD_0F13 */
|
|
{ "movlpX", { EXq, XM } },
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
},
|
|
{
|
|
/* MOD_0F16_PREFIX_0 */
|
|
{ "movhps", { XM, EXq } },
|
|
{ "movlhps", { XM, EXq } },
|
|
},
|
|
{
|
|
/* MOD_0F17 */
|
|
{ "movhpX", { EXq, XM } },
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
},
|
|
{
|
|
/* MOD_0F18_REG_0 */
|
|
{ "prefetchnta", { Mb } },
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
},
|
|
{
|
|
/* MOD_0F18_REG_1 */
|
|
{ "prefetcht0", { Mb } },
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
},
|
|
{
|
|
/* MOD_0F18_REG_2 */
|
|
{ "prefetcht1", { Mb } },
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
},
|
|
{
|
|
/* MOD_0F18_REG_3 */
|
|
{ "prefetcht2", { Mb } },
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
},
|
|
{
|
|
/* MOD_0F20 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "movZ", { Rm, Cm } },
|
/* 08 */
|
},
|
|
{
|
|
/* MOD_0F21 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "movZ", { Rm, Dm } },
|
|
},
|
|
{
|
|
/* MOD_0F22 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "movZ", { Cm, Rm } },
|
|
},
|
|
{
|
|
/* MOD_0F23 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "movZ", { Dm, Rm } },
|
|
},
|
|
{
|
|
/* MOD_0F24 */
|
|
{ THREE_BYTE_TABLE (THREE_BYTE_0F24) },
|
|
{ "movL", { Rd, Td } },
|
|
},
|
|
{
|
|
/* MOD_0F26 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "movL", { Td, Rd } },
|
|
},
|
|
{
|
|
/* MOD_0F2B_PREFIX_0 */
|
|
{"movntps", { Mx, XM } },
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
},
|
|
{
|
|
/* MOD_0F2B_PREFIX_1 */
|
|
{"movntss", { Md, XM } },
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
},
|
|
{
|
|
/* MOD_0F2B_PREFIX_2 */
|
|
{"movntpd", { Mx, XM } },
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
},
|
|
{
|
|
/* MOD_0F2B_PREFIX_3 */
|
|
{"movntsd", { Mq, XM } },
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
},
|
/* 10 */
|
{
|
{ PREFIX_TABLE (PREFIX_VEX_10) },
|
/* MOD_0F51 */
|
{ PREFIX_TABLE (PREFIX_VEX_11) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_12) },
|
|
{ MOD_TABLE (MOD_VEX_13) },
|
|
{ "vunpcklpX", { XM, Vex, EXx } },
|
|
{ "vunpckhpX", { XM, Vex, EXx } },
|
|
{ PREFIX_TABLE (PREFIX_VEX_16) },
|
|
{ MOD_TABLE (MOD_VEX_17) },
|
|
/* 18 */
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "movmskpX", { Gdq, XS } },
|
|
},
|
|
{
|
|
/* MOD_0F71_REG_2 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "psrlw", { MS, Ib } },
|
|
},
|
|
{
|
|
/* MOD_0F71_REG_4 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "psraw", { MS, Ib } },
|
|
},
|
|
{
|
|
/* MOD_0F71_REG_6 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "psllw", { MS, Ib } },
|
|
},
|
|
{
|
|
/* MOD_0F72_REG_2 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "psrld", { MS, Ib } },
|
|
},
|
|
{
|
|
/* MOD_0F72_REG_4 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "psrad", { MS, Ib } },
|
|
},
|
|
{
|
|
/* MOD_0F72_REG_6 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "pslld", { MS, Ib } },
|
|
},
|
|
{
|
|
/* MOD_0F73_REG_2 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "psrlq", { MS, Ib } },
|
/* 20 */
|
},
|
|
{
|
|
/* MOD_0F73_REG_3 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ PREFIX_TABLE (PREFIX_0F73_REG_3) },
|
|
},
|
|
{
|
|
/* MOD_0F73_REG_6 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ "psllq", { MS, Ib } },
|
|
},
|
|
{
|
|
/* MOD_0F73_REG_7 */
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ PREFIX_TABLE (PREFIX_0F73_REG_7) },
|
|
},
|
|
{
|
|
/* MOD_0FAE_REG_0 */
|
|
{ "fxsave", { M } },
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
},
|
|
{
|
|
/* MOD_0FAE_REG_1 */
|
|
{ "fxrstor", { M } },
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
},
|
|
{
|
|
/* MOD_0FAE_REG_2 */
|
|
{ "ldmxcsr", { Md } },
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
},
|
|
{
|
|
/* MOD_0FAE_REG_3 */
|
|
{ "stmxcsr", { Md } },
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
},
|
|
{
|
|
/* MOD_0FAE_REG_4 */
|
|
{ "xsave", { M } },
|
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
},
|
/* 28 */
|
{
|
{ "vmovapX", { XM, EXx } },
|
/* MOD_0FAE_REG_5 */
|
{ "vmovapX", { EXxS, XM } },
|
{ "xrstor", { M } },
|
{ PREFIX_TABLE (PREFIX_VEX_2A) },
|
{ RM_TABLE (RM_0FAE_REG_5) },
|
{ MOD_TABLE (MOD_VEX_2B) },
|
},
|
{ PREFIX_TABLE (PREFIX_VEX_2C) },
|
{
|
{ PREFIX_TABLE (PREFIX_VEX_2D) },
|
/* MOD_0FAE_REG_6 */
|
{ PREFIX_TABLE (PREFIX_VEX_2E) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_2F) },
|
|
/* 30 */
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
{ RM_TABLE (RM_0FAE_REG_6) },
|
{ "(bad)", { XX } },
|
},
|
{ "(bad)", { XX } },
|
{
|
{ "(bad)", { XX } },
|
/* MOD_0FAE_REG_7 */
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
/* 38 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
/* 40 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
/* 48 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
/* 50 */
|
|
{ MOD_TABLE (MOD_VEX_51) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_51) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_52) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_53) },
|
|
{ "vandpX", { XM, Vex, EXx } },
|
|
{ "vandnpX", { XM, Vex, EXx } },
|
|
{ "vorpX", { XM, Vex, EXx } },
|
|
{ "vxorpX", { XM, Vex, EXx } },
|
|
/* 58 */
|
|
{ PREFIX_TABLE (PREFIX_VEX_58) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_59) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_5A) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_5B) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_5C) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_5D) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_5E) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_5F) },
|
|
/* 60 */
|
|
{ PREFIX_TABLE (PREFIX_VEX_60) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_61) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_62) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_63) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_64) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_65) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_66) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_67) },
|
|
/* 68 */
|
|
{ PREFIX_TABLE (PREFIX_VEX_68) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_69) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_6A) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_6B) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_6C) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_6D) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_6E) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_6F) },
|
|
/* 70 */
|
|
{ PREFIX_TABLE (PREFIX_VEX_70) },
|
|
{ REG_TABLE (REG_VEX_71) },
|
|
{ REG_TABLE (REG_VEX_72) },
|
|
{ REG_TABLE (REG_VEX_73) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_74) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_75) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_76) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_77) },
|
|
/* 78 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ PREFIX_TABLE (PREFIX_VEX_7C) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_7D) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_7E) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_7F) },
|
|
/* 80 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
/* 88 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
/* 90 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
/* 98 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
/* a0 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
/* a8 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ REG_TABLE (REG_VEX_AE) },
|
|
{ "(bad)", { XX } },
|
|
/* b0 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
/* b8 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
/* c0 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ PREFIX_TABLE (PREFIX_VEX_C2) },
|
|
{ "(bad)", { XX } },
|
|
{ PREFIX_TABLE (PREFIX_VEX_C4) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_C5) },
|
|
{ "vshufpX", { XM, Vex, EXx, Ib } },
|
|
{ "(bad)", { XX } },
|
|
/* c8 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
/* d0 */
|
|
{ PREFIX_TABLE (PREFIX_VEX_D0) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_D1) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_D2) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_D3) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_D4) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_D5) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_D6) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_D7) },
|
|
/* d8 */
|
|
{ PREFIX_TABLE (PREFIX_VEX_D8) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_D9) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_DA) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_DB) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_DC) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_DD) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_DE) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_DF) },
|
|
/* e0 */
|
|
{ PREFIX_TABLE (PREFIX_VEX_E0) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_E1) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_E2) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_E3) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_E4) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_E5) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_E6) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_E7) },
|
|
/* e8 */
|
|
{ PREFIX_TABLE (PREFIX_VEX_E8) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_E9) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_EA) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_EB) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_EC) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_ED) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_EE) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_EF) },
|
|
/* f0 */
|
|
{ PREFIX_TABLE (PREFIX_VEX_F0) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_F1) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_F2) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_F3) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_F4) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_F5) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_F6) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_F7) },
|
|
/* f8 */
|
|
{ PREFIX_TABLE (PREFIX_VEX_F8) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_F9) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_FA) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_FB) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_FC) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_FD) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_FE) },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
/* VEX_0F38 */
|
|
{
|
|
/* 00 */
|
|
{ PREFIX_TABLE (PREFIX_VEX_3800) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3801) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3802) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3803) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3804) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3805) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3806) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3807) },
|
|
/* 08 */
|
|
{ PREFIX_TABLE (PREFIX_VEX_3808) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3809) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_380A) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_380B) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_380C) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_380D) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_380E) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_380F) },
|
|
/* 10 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3817) },
|
|
/* 18 */
|
|
{ PREFIX_TABLE (PREFIX_VEX_3818) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3819) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_381A) },
|
|
{ "(bad)", { XX } },
|
|
{ PREFIX_TABLE (PREFIX_VEX_381C) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_381D) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_381E) },
|
|
{ "(bad)", { XX } },
|
|
/* 20 */
|
|
{ PREFIX_TABLE (PREFIX_VEX_3820) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3821) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3822) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3823) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3824) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3825) },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
/* 28 */
|
|
{ PREFIX_TABLE (PREFIX_VEX_3828) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3829) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_382A) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_382B) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_382C) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_382D) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_382E) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_382F) },
|
|
/* 30 */
|
|
{ PREFIX_TABLE (PREFIX_VEX_3830) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3831) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3832) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3833) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3834) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3835) },
|
|
{ "(bad)", { XX } },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3837) },
|
|
/* 38 */
|
|
{ PREFIX_TABLE (PREFIX_VEX_3838) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3839) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_383A) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_383B) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_383C) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_383D) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_383E) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_383F) },
|
|
/* 40 */
|
|
{ PREFIX_TABLE (PREFIX_VEX_3840) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3841) },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
/* 48 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
/* 50 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
/* 58 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
/* 60 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
/* 68 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
/* 70 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
/* 78 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
/* 80 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
/* 88 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
/* 90 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3896) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3897) },
|
|
/* 98 */
|
|
{ PREFIX_TABLE (PREFIX_VEX_3898) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3899) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_389A) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_389B) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_389C) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_389D) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_389E) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_389F) },
|
|
/* a0 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ PREFIX_TABLE (PREFIX_VEX_38A6) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_38A7) },
|
|
/* a8 */
|
|
{ PREFIX_TABLE (PREFIX_VEX_38A8) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_38A9) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_38AA) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_38AB) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_38AC) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_38AD) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_38AE) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_38AF) },
|
|
/* b0 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ PREFIX_TABLE (PREFIX_VEX_38B6) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_38B7) },
|
|
/* b8 */
|
|
{ PREFIX_TABLE (PREFIX_VEX_38B8) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_38B9) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_38BA) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_38BB) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_38BC) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_38BD) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_38BE) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_38BF) },
|
|
/* c0 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
/* c8 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
/* d0 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
/* d8 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ PREFIX_TABLE (PREFIX_VEX_38DB) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_38DC) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_38DD) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_38DE) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_38DF) },
|
|
/* e0 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
/* e8 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
/* f0 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
/* f8 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
/* VEX_0F3A */
|
|
{
|
|
/* 00 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3A04) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3A05) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3A06) },
|
|
{ "(bad)", { XX } },
|
|
/* 08 */
|
|
{ PREFIX_TABLE (PREFIX_VEX_3A08) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3A09) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3A0A) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3A0B) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3A0C) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3A0D) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3A0E) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3A0F) },
|
|
/* 10 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3A14) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3A15) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3A16) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3A17) },
|
|
/* 18 */
|
|
{ PREFIX_TABLE (PREFIX_VEX_3A18) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3A19) },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
/* 20 */
|
|
{ PREFIX_TABLE (PREFIX_VEX_3A20) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3A21) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3A22) },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
/* 28 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
/* 30 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
/* 38 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
/* 40 */
|
|
{ PREFIX_TABLE (PREFIX_VEX_3A40) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3A41) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3A42) },
|
|
{ "(bad)", { XX } },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3A44) },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
/* 48 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3A4A) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3A4B) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3A4C) },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
/* 50 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
/* 58 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3A5C) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3A5D) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3A5E) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3A5F) },
|
|
/* 60 */
|
|
{ PREFIX_TABLE (PREFIX_VEX_3A60) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3A61) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3A62) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3A63) },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
/* 68 */
|
|
{ PREFIX_TABLE (PREFIX_VEX_3A68) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3A69) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3A6A) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3A6B) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3A6C) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3A6D) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3A6E) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3A6F) },
|
|
/* 70 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
/* 78 */
|
|
{ PREFIX_TABLE (PREFIX_VEX_3A78) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3A79) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3A7A) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3A7B) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3A7C) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3A7D) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3A7E) },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3A7F) },
|
|
/* 80 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
/* 88 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
/* 90 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
/* 98 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
/* a0 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
/* a8 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
/* b0 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
/* b8 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
/* c0 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
/* c8 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
/* d0 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
/* d8 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ PREFIX_TABLE (PREFIX_VEX_3ADF) },
|
|
/* e0 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
/* e8 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
/* f0 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
/* f8 */
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
};
|
|
|
|
static const struct dis386 vex_len_table[][2] = {
|
|
/* VEX_LEN_10_P_1 */
|
|
{
|
|
{ "vmovss", { XMVex, Vex128, EXd } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_10_P_3 */
|
|
{
|
|
{ "vmovsd", { XMVex, Vex128, EXq } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_11_P_1 */
|
|
{
|
|
{ "vmovss", { EXdVexS, Vex128, XM } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_11_P_3 */
|
|
{
|
|
{ "vmovsd", { EXqVexS, Vex128, XM } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_12_P_0_M_0 */
|
|
{
|
|
{ "vmovlps", { XM, Vex128, EXq } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_12_P_0_M_1 */
|
|
{
|
|
{ "vmovhlps", { XM, Vex128, EXq } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_12_P_2 */
|
|
{
|
|
{ "vmovlpd", { XM, Vex128, EXq } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_13_M_0 */
|
|
{
|
|
{ "vmovlpX", { EXq, XM } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_16_P_0_M_0 */
|
|
{
|
|
{ "vmovhps", { XM, Vex128, EXq } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_16_P_0_M_1 */
|
|
{
|
|
{ "vmovlhps", { XM, Vex128, EXq } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_16_P_2 */
|
|
{
|
|
{ "vmovhpd", { XM, Vex128, EXq } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_17_M_0 */
|
|
{
|
|
{ "vmovhpX", { EXq, XM } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_2A_P_1 */
|
|
{
|
|
{ "vcvtsi2ss%LQ", { XM, Vex128, Ev } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_2A_P_3 */
|
|
{
|
|
{ "vcvtsi2sd%LQ", { XM, Vex128, Ev } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_2C_P_1 */
|
|
{
|
|
{ "vcvttss2siY", { Gv, EXd } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_2C_P_3 */
|
|
{
|
|
{ "vcvttsd2siY", { Gv, EXq } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_2D_P_1 */
|
|
{
|
|
{ "vcvtss2siY", { Gv, EXd } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_2D_P_3 */
|
|
{
|
|
{ "vcvtsd2siY", { Gv, EXq } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_2E_P_0 */
|
|
{
|
|
{ "vucomiss", { XM, EXd } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_2E_P_2 */
|
|
{
|
|
{ "vucomisd", { XM, EXq } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_2F_P_0 */
|
|
{
|
|
{ "vcomiss", { XM, EXd } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_2F_P_2 */
|
|
{
|
|
{ "vcomisd", { XM, EXq } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_51_P_1 */
|
|
{
|
|
{ "vsqrtss", { XM, Vex128, EXd } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_51_P_3 */
|
|
{
|
|
{ "vsqrtsd", { XM, Vex128, EXq } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_52_P_1 */
|
|
{
|
|
{ "vrsqrtss", { XM, Vex128, EXd } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_53_P_1 */
|
|
{
|
|
{ "vrcpss", { XM, Vex128, EXd } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_58_P_1 */
|
|
{
|
|
{ "vaddss", { XM, Vex128, EXd } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_58_P_3 */
|
|
{
|
|
{ "vaddsd", { XM, Vex128, EXq } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_59_P_1 */
|
|
{
|
|
{ "vmulss", { XM, Vex128, EXd } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_59_P_3 */
|
|
{
|
|
{ "vmulsd", { XM, Vex128, EXq } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_5A_P_1 */
|
|
{
|
|
{ "vcvtss2sd", { XM, Vex128, EXd } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_5A_P_3 */
|
|
{
|
|
{ "vcvtsd2ss", { XM, Vex128, EXq } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_5C_P_1 */
|
|
{
|
|
{ "vsubss", { XM, Vex128, EXd } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_5C_P_3 */
|
|
{
|
|
{ "vsubsd", { XM, Vex128, EXq } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_5D_P_1 */
|
|
{
|
|
{ "vminss", { XM, Vex128, EXd } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_5D_P_3 */
|
|
{
|
|
{ "vminsd", { XM, Vex128, EXq } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_5E_P_1 */
|
|
{
|
|
{ "vdivss", { XM, Vex128, EXd } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_5E_P_3 */
|
|
{
|
|
{ "vdivsd", { XM, Vex128, EXq } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_5F_P_1 */
|
|
{
|
|
{ "vmaxss", { XM, Vex128, EXd } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_5F_P_3 */
|
|
{
|
|
{ "vmaxsd", { XM, Vex128, EXq } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_60_P_2 */
|
|
{
|
|
{ "vpunpcklbw", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_61_P_2 */
|
|
{
|
|
{ "vpunpcklwd", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_62_P_2 */
|
|
{
|
|
{ "vpunpckldq", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_63_P_2 */
|
|
{
|
|
{ "vpacksswb", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_64_P_2 */
|
|
{
|
|
{ "vpcmpgtb", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_65_P_2 */
|
|
{
|
|
{ "vpcmpgtw", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_66_P_2 */
|
|
{
|
|
{ "vpcmpgtd", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_67_P_2 */
|
|
{
|
|
{ "vpackuswb", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_68_P_2 */
|
|
{
|
|
{ "vpunpckhbw", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_69_P_2 */
|
|
{
|
|
{ "vpunpckhwd", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_6A_P_2 */
|
|
{
|
|
{ "vpunpckhdq", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_6B_P_2 */
|
|
{
|
|
{ "vpackssdw", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_6C_P_2 */
|
|
{
|
|
{ "vpunpcklqdq", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_6D_P_2 */
|
|
{
|
|
{ "vpunpckhqdq", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_6E_P_2 */
|
|
{
|
|
{ "vmovK", { XM, Edq } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_70_P_1 */
|
|
{
|
|
{ "vpshufhw", { XM, EXx, Ib } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_70_P_2 */
|
|
{
|
|
{ "vpshufd", { XM, EXx, Ib } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_70_P_3 */
|
|
{
|
|
{ "vpshuflw", { XM, EXx, Ib } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_71_R_2_P_2 */
|
|
{
|
|
{ "vpsrlw", { Vex128, XS, Ib } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_71_R_4_P_2 */
|
|
{
|
|
{ "vpsraw", { Vex128, XS, Ib } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_71_R_6_P_2 */
|
|
{
|
|
{ "vpsllw", { Vex128, XS, Ib } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_72_R_2_P_2 */
|
|
{
|
|
{ "vpsrld", { Vex128, XS, Ib } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_72_R_4_P_2 */
|
|
{
|
|
{ "vpsrad", { Vex128, XS, Ib } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_72_R_6_P_2 */
|
|
{
|
|
{ "vpslld", { Vex128, XS, Ib } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_73_R_2_P_2 */
|
|
{
|
|
{ "vpsrlq", { Vex128, XS, Ib } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_73_R_3_P_2 */
|
|
{
|
|
{ "vpsrldq", { Vex128, XS, Ib } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_73_R_6_P_2 */
|
|
{
|
|
{ "vpsllq", { Vex128, XS, Ib } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_73_R_7_P_2 */
|
|
{
|
|
{ "vpslldq", { Vex128, XS, Ib } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_74_P_2 */
|
|
{
|
|
{ "vpcmpeqb", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_75_P_2 */
|
|
{
|
|
{ "vpcmpeqw", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_76_P_2 */
|
|
{
|
|
{ "vpcmpeqd", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_7E_P_1 */
|
|
{
|
|
{ "vmovq", { XM, EXq } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_7E_P_2 */
|
|
{
|
|
{ "vmovK", { Edq, XM } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_AE_R_2_M0 */
|
|
{
|
|
{ "vldmxcsr", { Md } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_AE_R_3_M0 */
|
|
{
|
|
{ "vstmxcsr", { Md } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_C2_P_1 */
|
|
{
|
|
{ "vcmpss", { XM, Vex128, EXd, VCMP } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_C2_P_3 */
|
|
{
|
|
{ "vcmpsd", { XM, Vex128, EXq, VCMP } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_C4_P_2 */
|
|
{
|
|
{ "vpinsrw", { XM, Vex128, Edqw, Ib } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_C5_P_2 */
|
|
{
|
|
{ "vpextrw", { Gdq, XS, Ib } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_D1_P_2 */
|
|
{
|
|
{ "vpsrlw", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_D2_P_2 */
|
|
{
|
|
{ "vpsrld", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_D3_P_2 */
|
|
{
|
|
{ "vpsrlq", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_D4_P_2 */
|
|
{
|
|
{ "vpaddq", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_D5_P_2 */
|
|
{
|
|
{ "vpmullw", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_D6_P_2 */
|
|
{
|
|
{ "vmovq", { EXqS, XM } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_D7_P_2_M_1 */
|
|
{
|
|
{ "vpmovmskb", { Gdq, XS } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_D8_P_2 */
|
|
{
|
|
{ "vpsubusb", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_D9_P_2 */
|
|
{
|
|
{ "vpsubusw", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_DA_P_2 */
|
|
{
|
|
{ "vpminub", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_DB_P_2 */
|
|
{
|
|
{ "vpand", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_DC_P_2 */
|
|
{
|
|
{ "vpaddusb", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_DD_P_2 */
|
|
{
|
|
{ "vpaddusw", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_DE_P_2 */
|
|
{
|
|
{ "vpmaxub", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_DF_P_2 */
|
|
{
|
|
{ "vpandn", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_E0_P_2 */
|
|
{
|
|
{ "vpavgb", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_E1_P_2 */
|
|
{
|
|
{ "vpsraw", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_E2_P_2 */
|
|
{
|
|
{ "vpsrad", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_E3_P_2 */
|
|
{
|
|
{ "vpavgw", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_E4_P_2 */
|
|
{
|
|
{ "vpmulhuw", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_E5_P_2 */
|
|
{
|
|
{ "vpmulhw", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_E8_P_2 */
|
|
{
|
|
{ "vpsubsb", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_E9_P_2 */
|
|
{
|
|
{ "vpsubsw", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_EA_P_2 */
|
|
{
|
|
{ "vpminsw", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_EB_P_2 */
|
|
{
|
|
{ "vpor", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_EC_P_2 */
|
|
{
|
|
{ "vpaddsb", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_ED_P_2 */
|
|
{
|
|
{ "vpaddsw", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_EE_P_2 */
|
|
{
|
|
{ "vpmaxsw", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_EF_P_2 */
|
|
{
|
|
{ "vpxor", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_F1_P_2 */
|
|
{
|
|
{ "vpsllw", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_F2_P_2 */
|
|
{
|
|
{ "vpslld", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_F3_P_2 */
|
|
{
|
|
{ "vpsllq", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_F4_P_2 */
|
|
{
|
|
{ "vpmuludq", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_F5_P_2 */
|
|
{
|
|
{ "vpmaddwd", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_F6_P_2 */
|
|
{
|
|
{ "vpsadbw", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_F7_P_2 */
|
|
{
|
|
{ "vmaskmovdqu", { XM, XS } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_F8_P_2 */
|
|
{
|
|
{ "vpsubb", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_F9_P_2 */
|
|
{
|
|
{ "vpsubw", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_FA_P_2 */
|
|
{
|
|
{ "vpsubd", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_FB_P_2 */
|
|
{
|
|
{ "vpsubq", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_FC_P_2 */
|
|
{
|
|
{ "vpaddb", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_FD_P_2 */
|
|
{
|
|
{ "vpaddw", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_FE_P_2 */
|
|
{
|
|
{ "vpaddd", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3800_P_2 */
|
|
{
|
|
{ "vpshufb", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3801_P_2 */
|
|
{
|
|
{ "vphaddw", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3802_P_2 */
|
|
{
|
|
{ "vphaddd", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3803_P_2 */
|
|
{
|
|
{ "vphaddsw", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3804_P_2 */
|
|
{
|
|
{ "vpmaddubsw", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3805_P_2 */
|
|
{
|
|
{ "vphsubw", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3806_P_2 */
|
|
{
|
|
{ "vphsubd", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3807_P_2 */
|
|
{
|
|
{ "vphsubsw", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3808_P_2 */
|
|
{
|
|
{ "vpsignb", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3809_P_2 */
|
|
{
|
|
{ "vpsignw", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_380A_P_2 */
|
|
{
|
|
{ "vpsignd", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_380B_P_2 */
|
|
{
|
|
{ "vpmulhrsw", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3819_P_2_M_0 */
|
|
{
|
|
{ "(bad)", { XX } },
|
|
{ "vbroadcastsd", { XM, Mq } },
|
|
},
|
|
|
|
/* VEX_LEN_381A_P_2_M_0 */
|
|
{
|
|
{ "(bad)", { XX } },
|
|
{ "vbroadcastf128", { XM, Mxmm } },
|
|
},
|
|
|
|
/* VEX_LEN_381C_P_2 */
|
|
{
|
|
{ "vpabsb", { XM, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_381D_P_2 */
|
|
{
|
|
{ "vpabsw", { XM, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_381E_P_2 */
|
|
{
|
|
{ "vpabsd", { XM, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3820_P_2 */
|
|
{
|
|
{ "vpmovsxbw", { XM, EXq } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3821_P_2 */
|
|
{
|
|
{ "vpmovsxbd", { XM, EXd } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3822_P_2 */
|
|
{
|
|
{ "vpmovsxbq", { XM, EXw } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3823_P_2 */
|
|
{
|
|
{ "vpmovsxwd", { XM, EXq } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3824_P_2 */
|
|
{
|
|
{ "vpmovsxwq", { XM, EXd } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3825_P_2 */
|
|
{
|
|
{ "vpmovsxdq", { XM, EXq } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3828_P_2 */
|
|
{
|
|
{ "vpmuldq", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3829_P_2 */
|
|
{
|
|
{ "vpcmpeqq", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_382A_P_2_M_0 */
|
|
{
|
|
{ "vmovntdqa", { XM, Mx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_382B_P_2 */
|
|
{
|
|
{ "vpackusdw", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3830_P_2 */
|
|
{
|
|
{ "vpmovzxbw", { XM, EXq } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3831_P_2 */
|
|
{
|
|
{ "vpmovzxbd", { XM, EXd } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3832_P_2 */
|
|
{
|
|
{ "vpmovzxbq", { XM, EXw } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3833_P_2 */
|
|
{
|
|
{ "vpmovzxwd", { XM, EXq } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3834_P_2 */
|
|
{
|
|
{ "vpmovzxwq", { XM, EXd } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3835_P_2 */
|
|
{
|
|
{ "vpmovzxdq", { XM, EXq } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3837_P_2 */
|
|
{
|
|
{ "vpcmpgtq", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3838_P_2 */
|
|
{
|
|
{ "vpminsb", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3839_P_2 */
|
|
{
|
|
{ "vpminsd", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_383A_P_2 */
|
|
{
|
|
{ "vpminuw", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_383B_P_2 */
|
|
{
|
|
{ "vpminud", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_383C_P_2 */
|
|
{
|
|
{ "vpmaxsb", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_383D_P_2 */
|
|
{
|
|
{ "vpmaxsd", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_383E_P_2 */
|
|
{
|
|
{ "vpmaxuw", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_383F_P_2 */
|
|
{
|
|
{ "vpmaxud", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3840_P_2 */
|
|
{
|
|
{ "vpmulld", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3841_P_2 */
|
|
{
|
|
{ "vphminposuw", { XM, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_38DB_P_2 */
|
|
{
|
|
{ "vaesimc", { XM, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_38DC_P_2 */
|
|
{
|
|
{ "vaesenc", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_38DD_P_2 */
|
|
{
|
|
{ "vaesenclast", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_38DE_P_2 */
|
|
{
|
|
{ "vaesdec", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_38DF_P_2 */
|
|
{
|
|
{ "vaesdeclast", { XM, Vex128, EXx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3A06_P_2 */
|
|
{
|
|
{ "(bad)", { XX } },
|
|
{ "vperm2f128", { XM, Vex256, EXx, Ib } },
|
|
},
|
|
|
|
/* VEX_LEN_3A0A_P_2 */
|
|
{
|
|
{ "vroundss", { XM, Vex128, EXd, Ib } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3A0B_P_2 */
|
|
{
|
|
{ "vroundsd", { XM, Vex128, EXq, Ib } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3A0E_P_2 */
|
|
{
|
|
{ "vpblendw", { XM, Vex128, EXx, Ib } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3A0F_P_2 */
|
|
{
|
|
{ "vpalignr", { XM, Vex128, EXx, Ib } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3A14_P_2 */
|
|
{
|
|
{ "vpextrb", { Edqb, XM, Ib } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3A15_P_2 */
|
|
{
|
|
{ "vpextrw", { Edqw, XM, Ib } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3A16_P_2 */
|
|
{
|
|
{ "vpextrK", { Edq, XM, Ib } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3A17_P_2 */
|
|
{
|
|
{ "vextractps", { Edqd, XM, Ib } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3A18_P_2 */
|
|
{
|
|
{ "(bad)", { XX } },
|
|
{ "vinsertf128", { XM, Vex256, EXxmm, Ib } },
|
|
},
|
|
|
|
/* VEX_LEN_3A19_P_2 */
|
|
{
|
|
{ "(bad)", { XX } },
|
|
{ "vextractf128", { EXxmm, XM, Ib } },
|
|
},
|
|
|
|
/* VEX_LEN_3A20_P_2 */
|
|
{
|
|
{ "vpinsrb", { XM, Vex128, Edqb, Ib } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3A21_P_2 */
|
|
{
|
|
{ "vinsertps", { XM, Vex128, EXd, Ib } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3A22_P_2 */
|
|
{
|
|
{ "vpinsrK", { XM, Vex128, Edq, Ib } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3A41_P_2 */
|
|
{
|
|
{ "vdppd", { XM, Vex128, EXx, Ib } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3A42_P_2 */
|
|
{
|
|
{ "vmpsadbw", { XM, Vex128, EXx, Ib } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3A44_P_2 */
|
|
{
|
|
{ "vpclmulqdq", { XM, Vex128, EXx, PCLMUL } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3A4C_P_2 */
|
|
{
|
|
{ "vpblendvb", { XM, Vex128, EXx, XMVexI4 } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3A60_P_2 */
|
|
{
|
|
{ "vpcmpestrm", { XM, EXx, Ib } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3A61_P_2 */
|
|
{
|
|
{ "vpcmpestri", { XM, EXx, Ib } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3A62_P_2 */
|
|
{
|
|
{ "vpcmpistrm", { XM, EXx, Ib } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3A63_P_2 */
|
|
{
|
|
{ "vpcmpistri", { XM, EXx, Ib } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3A6A_P_2 */
|
|
{
|
|
{ "vfmaddss", { XMVexW, Vex128FMA, EXdVexW, EXdVexW, VexI4 } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3A6B_P_2 */
|
|
{
|
|
{ "vfmaddsd", { XMVexW, Vex128FMA, EXqVexW, EXqVexW, VexI4 } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3A6E_P_2 */
|
|
{
|
|
{ "vfmsubss", { XMVexW, Vex128FMA, EXdVexW, EXdVexW, VexI4 } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3A6F_P_2 */
|
|
{
|
|
{ "vfmsubsd", { XMVexW, Vex128FMA, EXqVexW, EXqVexW, VexI4 } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3A7A_P_2 */
|
|
{
|
|
{ "vfnmaddss", { XMVexW, Vex128FMA, EXdVexW, EXdVexW, VexI4 } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3A7B_P_2 */
|
|
{
|
|
{ "vfnmaddsd", { XMVexW, Vex128FMA, EXqVexW, EXqVexW, VexI4 } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3A7E_P_2 */
|
|
{
|
|
{ "vfnmsubss", { XMVexW, Vex128FMA, EXdVexW, EXdVexW, VexI4 } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3A7F_P_2 */
|
|
{
|
|
{ "vfnmsubsd", { XMVexW, Vex128FMA, EXqVexW, EXqVexW, VexI4 } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
|
|
/* VEX_LEN_3ADF_P_2 */
|
|
{
|
|
{ "vaeskeygenassist", { XM, EXx, Ib } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
};
|
|
|
|
static const struct dis386 mod_table[][2] = {
|
|
{
|
|
/* MOD_8D */
|
|
{ "leaS", { Gv, M } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
{
|
|
/* MOD_0F01_REG_0 */
|
|
{ X86_64_TABLE (X86_64_0F01_REG_0) },
|
|
{ RM_TABLE (RM_0F01_REG_0) },
|
|
},
|
|
{
|
|
/* MOD_0F01_REG_1 */
|
|
{ X86_64_TABLE (X86_64_0F01_REG_1) },
|
|
{ RM_TABLE (RM_0F01_REG_1) },
|
|
},
|
|
{
|
|
/* MOD_0F01_REG_2 */
|
|
{ X86_64_TABLE (X86_64_0F01_REG_2) },
|
|
{ RM_TABLE (RM_0F01_REG_2) },
|
|
},
|
|
{
|
|
/* MOD_0F01_REG_3 */
|
|
{ X86_64_TABLE (X86_64_0F01_REG_3) },
|
|
{ RM_TABLE (RM_0F01_REG_3) },
|
|
},
|
|
{
|
|
/* MOD_0F01_REG_7 */
|
|
{ "invlpg", { Mb } },
|
|
{ RM_TABLE (RM_0F01_REG_7) },
|
|
},
|
|
{
|
|
/* MOD_0F12_PREFIX_0 */
|
|
{ "movlps", { XM, EXq } },
|
|
{ "movhlps", { XM, EXq } },
|
|
},
|
|
{
|
|
/* MOD_0F13 */
|
|
{ "movlpX", { EXq, XM } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
{
|
|
/* MOD_0F16_PREFIX_0 */
|
|
{ "movhps", { XM, EXq } },
|
|
{ "movlhps", { XM, EXq } },
|
|
},
|
|
{
|
|
/* MOD_0F17 */
|
|
{ "movhpX", { EXq, XM } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
{
|
|
/* MOD_0F18_REG_0 */
|
|
{ "prefetchnta", { Mb } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
{
|
|
/* MOD_0F18_REG_1 */
|
|
{ "prefetcht0", { Mb } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
{
|
|
/* MOD_0F18_REG_2 */
|
|
{ "prefetcht1", { Mb } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
{
|
|
/* MOD_0F18_REG_3 */
|
|
{ "prefetcht2", { Mb } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
{
|
|
/* MOD_0F20 */
|
|
{ "(bad)", { XX } },
|
|
{ "movZ", { Rm, Cm } },
|
|
},
|
|
{
|
|
/* MOD_0F21 */
|
|
{ "(bad)", { XX } },
|
|
{ "movZ", { Rm, Dm } },
|
|
},
|
|
{
|
|
/* MOD_0F22 */
|
|
{ "(bad)", { XX } },
|
|
{ "movZ", { Cm, Rm } },
|
|
},
|
|
{
|
|
/* MOD_0F23 */
|
|
{ "(bad)", { XX } },
|
|
{ "movZ", { Dm, Rm } },
|
|
},
|
|
{
|
|
/* MOD_0F24 */
|
|
{ "(bad)", { XX } },
|
|
{ "movL", { Rd, Td } },
|
|
},
|
|
{
|
|
/* MOD_0F26 */
|
|
{ "(bad)", { XX } },
|
|
{ "movL", { Td, Rd } },
|
|
},
|
|
{
|
|
/* MOD_0F2B_PREFIX_0 */
|
|
{"movntps", { Mx, XM } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
{
|
|
/* MOD_0F2B_PREFIX_1 */
|
|
{"movntss", { Md, XM } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
{
|
|
/* MOD_0F2B_PREFIX_2 */
|
|
{"movntpd", { Mx, XM } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
{
|
|
/* MOD_0F2B_PREFIX_3 */
|
|
{"movntsd", { Mq, XM } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
{
|
|
/* MOD_0F51 */
|
|
{ "(bad)", { XX } },
|
|
{ "movmskpX", { Gdq, XS } },
|
|
},
|
|
{
|
|
/* MOD_0F71_REG_2 */
|
|
{ "(bad)", { XX } },
|
|
{ "psrlw", { MS, Ib } },
|
|
},
|
|
{
|
|
/* MOD_0F71_REG_4 */
|
|
{ "(bad)", { XX } },
|
|
{ "psraw", { MS, Ib } },
|
|
},
|
|
{
|
|
/* MOD_0F71_REG_6 */
|
|
{ "(bad)", { XX } },
|
|
{ "psllw", { MS, Ib } },
|
|
},
|
|
{
|
|
/* MOD_0F72_REG_2 */
|
|
{ "(bad)", { XX } },
|
|
{ "psrld", { MS, Ib } },
|
|
},
|
|
{
|
|
/* MOD_0F72_REG_4 */
|
|
{ "(bad)", { XX } },
|
|
{ "psrad", { MS, Ib } },
|
|
},
|
|
{
|
|
/* MOD_0F72_REG_6 */
|
|
{ "(bad)", { XX } },
|
|
{ "pslld", { MS, Ib } },
|
|
},
|
|
{
|
|
/* MOD_0F73_REG_2 */
|
|
{ "(bad)", { XX } },
|
|
{ "psrlq", { MS, Ib } },
|
|
},
|
|
{
|
|
/* MOD_0F73_REG_3 */
|
|
{ "(bad)", { XX } },
|
|
{ PREFIX_TABLE (PREFIX_0F73_REG_3) },
|
|
},
|
|
{
|
|
/* MOD_0F73_REG_6 */
|
|
{ "(bad)", { XX } },
|
|
{ "psllq", { MS, Ib } },
|
|
},
|
|
{
|
|
/* MOD_0F73_REG_7 */
|
|
{ "(bad)", { XX } },
|
|
{ PREFIX_TABLE (PREFIX_0F73_REG_7) },
|
|
},
|
|
{
|
|
/* MOD_0FAE_REG_0 */
|
|
{ "fxsave", { M } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
{
|
|
/* MOD_0FAE_REG_1 */
|
|
{ "fxrstor", { M } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
{
|
|
/* MOD_0FAE_REG_2 */
|
|
{ "ldmxcsr", { Md } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
{
|
|
/* MOD_0FAE_REG_3 */
|
|
{ "stmxcsr", { Md } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
{
|
|
/* MOD_0FAE_REG_4 */
|
|
{ "xsave", { M } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
{
|
|
/* MOD_0FAE_REG_5 */
|
|
{ "xrstor", { M } },
|
|
{ RM_TABLE (RM_0FAE_REG_5) },
|
|
},
|
|
{
|
|
/* MOD_0FAE_REG_6 */
|
|
{ "xsaveopt", { M } },
|
|
{ RM_TABLE (RM_0FAE_REG_6) },
|
|
},
|
|
{
|
|
/* MOD_0FAE_REG_7 */
|
{ "clflush", { Mb } },
|
{ "clflush", { Mb } },
|
{ RM_TABLE (RM_0FAE_REG_7) },
|
{ RM_TABLE (RM_0FAE_REG_7) },
|
},
|
},
|
{
|
{
|
/* MOD_0FB2 */
|
/* MOD_0FB2 */
|
Line 4801... |
Line 8674... |
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
},
|
},
|
{
|
{
|
/* MOD_C4_32BIT */
|
/* MOD_C4_32BIT */
|
{ "lesS", { Gv, Mp } },
|
{ "lesS", { Gv, Mp } },
|
{ "(bad)", { XX } },
|
{ VEX_C4_TABLE (VEX_0F) },
|
},
|
},
|
{
|
{
|
/* MOD_C5_32BIT */
|
/* MOD_C5_32BIT */
|
{ "ldsS", { Gv, Mp } },
|
{ "ldsS", { Gv, Mp } },
|
|
{ VEX_C5_TABLE (VEX_0F) },
|
|
},
|
|
{
|
|
/* MOD_VEX_12_PREFIX_0 */
|
|
{ VEX_LEN_TABLE (VEX_LEN_12_P_0_M_0) },
|
|
{ VEX_LEN_TABLE (VEX_LEN_12_P_0_M_1) },
|
|
},
|
|
{
|
|
/* MOD_VEX_13 */
|
|
{ VEX_LEN_TABLE (VEX_LEN_13_M_0) },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
{
|
|
/* MOD_VEX_16_PREFIX_0 */
|
|
{ VEX_LEN_TABLE (VEX_LEN_16_P_0_M_0) },
|
|
{ VEX_LEN_TABLE (VEX_LEN_16_P_0_M_1) },
|
|
},
|
|
{
|
|
/* MOD_VEX_17 */
|
|
{ VEX_LEN_TABLE (VEX_LEN_17_M_0) },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
{
|
|
/* MOD_VEX_2B */
|
|
{ "vmovntpX", { Mx, XM } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
{
|
|
/* MOD_VEX_51 */
|
|
{ "(bad)", { XX } },
|
|
{ "vmovmskpX", { Gdq, XS } },
|
|
},
|
|
{
|
|
/* MOD_VEX_71_REG_2 */
|
|
{ "(bad)", { XX } },
|
|
{ PREFIX_TABLE (PREFIX_VEX_71_REG_2) },
|
|
},
|
|
{
|
|
/* MOD_VEX_71_REG_4 */
|
|
{ "(bad)", { XX } },
|
|
{ PREFIX_TABLE (PREFIX_VEX_71_REG_4) },
|
|
},
|
|
{
|
|
/* MOD_VEX_71_REG_6 */
|
|
{ "(bad)", { XX } },
|
|
{ PREFIX_TABLE (PREFIX_VEX_71_REG_6) },
|
|
},
|
|
{
|
|
/* MOD_VEX_72_REG_2 */
|
|
{ "(bad)", { XX } },
|
|
{ PREFIX_TABLE (PREFIX_VEX_72_REG_2) },
|
|
},
|
|
{
|
|
/* MOD_VEX_72_REG_4 */
|
|
{ "(bad)", { XX } },
|
|
{ PREFIX_TABLE (PREFIX_VEX_72_REG_4) },
|
|
},
|
|
{
|
|
/* MOD_VEX_72_REG_6 */
|
|
{ "(bad)", { XX } },
|
|
{ PREFIX_TABLE (PREFIX_VEX_72_REG_6) },
|
|
},
|
|
{
|
|
/* MOD_VEX_73_REG_2 */
|
|
{ "(bad)", { XX } },
|
|
{ PREFIX_TABLE (PREFIX_VEX_73_REG_2) },
|
|
},
|
|
{
|
|
/* MOD_VEX_73_REG_3 */
|
|
{ "(bad)", { XX } },
|
|
{ PREFIX_TABLE (PREFIX_VEX_73_REG_3) },
|
|
},
|
|
{
|
|
/* MOD_VEX_73_REG_6 */
|
|
{ "(bad)", { XX } },
|
|
{ PREFIX_TABLE (PREFIX_VEX_73_REG_6) },
|
|
},
|
|
{
|
|
/* MOD_VEX_73_REG_7 */
|
|
{ "(bad)", { XX } },
|
|
{ PREFIX_TABLE (PREFIX_VEX_73_REG_7) },
|
|
},
|
|
{
|
|
/* MOD_VEX_AE_REG_2 */
|
|
{ VEX_LEN_TABLE (VEX_LEN_AE_R_2_M_0) },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
{
|
|
/* MOD_VEX_AE_REG_3 */
|
|
{ VEX_LEN_TABLE (VEX_LEN_AE_R_3_M_0) },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
{
|
|
/* MOD_VEX_D7_PREFIX_2 */
|
|
{ "(bad)", { XX } },
|
|
{ VEX_LEN_TABLE (VEX_LEN_D7_P_2_M_1) },
|
|
},
|
|
{
|
|
/* MOD_VEX_E7_PREFIX_2 */
|
|
{ "vmovntdq", { Mx, XM } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
{
|
|
/* MOD_VEX_F0_PREFIX_3 */
|
|
{ "vlddqu", { XM, M } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
{
|
|
/* MOD_VEX_3818_PREFIX_2 */
|
|
{ "vbroadcastss", { XM, Md } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
{
|
|
/* MOD_VEX_3819_PREFIX_2 */
|
|
{ VEX_LEN_TABLE (VEX_LEN_3819_P_2_M_0) },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
{
|
|
/* MOD_VEX_381A_PREFIX_2 */
|
|
{ VEX_LEN_TABLE (VEX_LEN_381A_P_2_M_0) },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
{
|
|
/* MOD_VEX_382A_PREFIX_2 */
|
|
{ VEX_LEN_TABLE (VEX_LEN_382A_P_2_M_0) },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
{
|
|
/* MOD_VEX_382C_PREFIX_2 */
|
|
{ "vmaskmovps", { XM, Vex, Mx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
{
|
|
/* MOD_VEX_382D_PREFIX_2 */
|
|
{ "vmaskmovpd", { XM, Vex, Mx } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
{
|
|
/* MOD_VEX_382E_PREFIX_2 */
|
|
{ "vmaskmovps", { Mx, Vex, XM } },
|
|
{ "(bad)", { XX } },
|
|
},
|
|
{
|
|
/* MOD_VEX_382F_PREFIX_2 */
|
|
{ "vmaskmovpd", { Mx, Vex, XM } },
|
{ "(bad)", { XX } },
|
{ "(bad)", { XX } },
|
},
|
},
|
};
|
};
|
|
|
static const struct dis386 rm_table[][8] = {
|
static const struct dis386 rm_table[][8] = {
|
Line 4908... |
Line 8926... |
static void
|
static void
|
ckprefix (void)
|
ckprefix (void)
|
{
|
{
|
int newrex;
|
int newrex;
|
rex = 0;
|
rex = 0;
|
|
rex_original = 0;
|
|
rex_ignored = 0;
|
prefixes = 0;
|
prefixes = 0;
|
used_prefixes = 0;
|
used_prefixes = 0;
|
rex_used = 0;
|
rex_used = 0;
|
while (1)
|
while (1)
|
{
|
{
|
Line 4994... |
Line 9014... |
{
|
{
|
rex_used = rex;
|
rex_used = rex;
|
return;
|
return;
|
}
|
}
|
rex = newrex;
|
rex = newrex;
|
|
rex_original = rex;
|
codep++;
|
codep++;
|
}
|
}
|
}
|
}
|
|
|
/* Return the name of the prefix byte PREF, or NULL if PREF is not a
|
/* Return the name of the prefix byte PREF, or NULL if PREF is not a
|
Line 5155... |
Line 9176... |
/* Get a pointer to struct dis386 with a valid name. */
|
/* Get a pointer to struct dis386 with a valid name. */
|
|
|
static const struct dis386 *
|
static const struct dis386 *
|
get_valid_dis386 (const struct dis386 *dp, disassemble_info *info)
|
get_valid_dis386 (const struct dis386 *dp, disassemble_info *info)
|
{
|
{
|
int index;
|
int index, vex_table_index;
|
|
|
if (dp->name != NULL)
|
if (dp->name != NULL)
|
return dp;
|
return dp;
|
|
|
switch (dp->op[0].bytemode)
|
switch (dp->op[0].bytemode)
|
{
|
{
|
case USE_REG_TABLE:
|
case USE_REG_TABLE:
|
dp = ®_table[dp->op[1].bytemode][modrm.reg];
|
dp = ®_table[dp->op[1].bytemode][modrm.reg];
|
break;
|
break;
|
|
|
case USE_MOD_TABLE:
|
case USE_MOD_TABLE:
|
index = modrm.mod == 0x3 ? 1 : 0;
|
index = modrm.mod == 0x3 ? 1 : 0;
|
dp = &mod_table[dp->op[1].bytemode][index];
|
dp = &mod_table[dp->op[1].bytemode][index];
|
|
break;
|
|
|
|
case USE_RM_TABLE:
|
|
dp = &rm_table[dp->op[1].bytemode][modrm.rm];
|
|
break;
|
|
|
|
case USE_PREFIX_TABLE:
|
|
if (need_vex)
|
|
{
|
|
/* The prefix in VEX is implicit. */
|
|
switch (vex.prefix)
|
|
{
|
|
case 0:
|
|
index = 0;
|
|
break;
|
|
case REPE_PREFIX_OPCODE:
|
|
index = 1;
|
|
break;
|
|
case DATA_PREFIX_OPCODE:
|
|
index = 2;
|
|
break;
|
|
case REPNE_PREFIX_OPCODE:
|
|
index = 3;
|
|
break;
|
|
default:
|
|
abort ();
|
|
break;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
index = 0;
|
|
used_prefixes |= (prefixes & PREFIX_REPZ);
|
|
if (prefixes & PREFIX_REPZ)
|
|
{
|
|
index = 1;
|
|
repz_prefix = NULL;
|
|
}
|
|
else
|
|
{
|
|
/* We should check PREFIX_REPNZ and PREFIX_REPZ before
|
|
PREFIX_DATA. */
|
|
used_prefixes |= (prefixes & PREFIX_REPNZ);
|
|
if (prefixes & PREFIX_REPNZ)
|
|
{
|
|
index = 3;
|
|
repnz_prefix = NULL;
|
|
}
|
|
else
|
|
{
|
|
used_prefixes |= (prefixes & PREFIX_DATA);
|
|
if (prefixes & PREFIX_DATA)
|
|
{
|
|
index = 2;
|
|
data_prefix = NULL;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
dp = &prefix_table[dp->op[1].bytemode][index];
|
|
break;
|
|
|
|
case USE_X86_64_TABLE:
|
|
index = address_mode == mode_64bit ? 1 : 0;
|
|
dp = &x86_64_table[dp->op[1].bytemode][index];
|
|
break;
|
|
|
|
case USE_3BYTE_TABLE:
|
|
FETCH_DATA (info, codep + 2);
|
|
index = *codep++;
|
|
dp = &three_byte_table[dp->op[1].bytemode][index];
|
|
modrm.mod = (*codep >> 6) & 3;
|
|
modrm.reg = (*codep >> 3) & 7;
|
|
modrm.rm = *codep & 7;
|
|
break;
|
|
|
|
case USE_VEX_LEN_TABLE:
|
|
if (!need_vex)
|
|
abort ();
|
|
|
|
switch (vex.length)
|
|
{
|
|
case 128:
|
|
index = 0;
|
|
break;
|
|
case 256:
|
|
index = 1;
|
|
break;
|
|
default:
|
|
abort ();
|
|
break;
|
|
}
|
|
|
|
dp = &vex_len_table[dp->op[1].bytemode][index];
|
|
break;
|
|
|
|
case USE_VEX_C4_TABLE:
|
|
FETCH_DATA (info, codep + 3);
|
|
/* All bits in the REX prefix are ignored. */
|
|
rex_ignored = rex;
|
|
rex = ~(*codep >> 5) & 0x7;
|
|
switch ((*codep & 0x1f))
|
|
{
|
|
default:
|
|
BadOp ();
|
|
case 0x1:
|
|
vex_table_index = 0;
|
|
break;
|
|
case 0x2:
|
|
vex_table_index = 1;
|
|
break;
|
|
case 0x3:
|
|
vex_table_index = 2;
|
|
break;
|
|
}
|
|
codep++;
|
|
vex.w = *codep & 0x80;
|
|
if (vex.w && address_mode == mode_64bit)
|
|
rex |= REX_W;
|
|
|
|
vex.register_specifier = (~(*codep >> 3)) & 0xf;
|
|
if (address_mode != mode_64bit
|
|
&& vex.register_specifier > 0x7)
|
|
BadOp ();
|
|
|
|
vex.length = (*codep & 0x4) ? 256 : 128;
|
|
switch ((*codep & 0x3))
|
|
{
|
|
case 0:
|
|
vex.prefix = 0;
|
|
break;
|
|
case 1:
|
|
vex.prefix = DATA_PREFIX_OPCODE;
|
|
break;
|
|
case 2:
|
|
vex.prefix = REPE_PREFIX_OPCODE;
|
break;
|
break;
|
|
case 3:
|
case USE_RM_TABLE:
|
vex.prefix = REPNE_PREFIX_OPCODE;
|
dp = &rm_table[dp->op[1].bytemode][modrm.rm];
|
|
break;
|
break;
|
|
|
case USE_PREFIX_TABLE:
|
|
index = 0;
|
|
used_prefixes |= (prefixes & PREFIX_REPZ);
|
|
if (prefixes & PREFIX_REPZ)
|
|
{
|
|
index = 1;
|
|
repz_prefix = NULL;
|
|
}
|
|
else
|
|
{
|
|
/* We should check PREFIX_REPNZ and PREFIX_REPZ before
|
|
PREFIX_DATA. */
|
|
used_prefixes |= (prefixes & PREFIX_REPNZ);
|
|
if (prefixes & PREFIX_REPNZ)
|
|
{
|
|
index = 3;
|
|
repnz_prefix = NULL;
|
|
}
|
}
|
else
|
need_vex = 1;
|
{
|
need_vex_reg = 1;
|
used_prefixes |= (prefixes & PREFIX_DATA);
|
codep++;
|
if (prefixes & PREFIX_DATA)
|
index = *codep++;
|
|
dp = &vex_table[vex_table_index][index];
|
|
/* There is no MODRM byte for VEX [82|77]. */
|
|
if (index != 0x77 && index != 0x82)
|
{
|
{
|
index = 2;
|
FETCH_DATA (info, codep + 1);
|
data_prefix = NULL;
|
modrm.mod = (*codep >> 6) & 3;
|
}
|
modrm.reg = (*codep >> 3) & 7;
|
}
|
modrm.rm = *codep & 7;
|
}
|
}
|
dp = &prefix_table[dp->op[1].bytemode][index];
|
|
break;
|
|
|
|
case USE_X86_64_TABLE:
|
|
index = address_mode == mode_64bit ? 1 : 0;
|
|
dp = &x86_64_table[dp->op[1].bytemode][index];
|
|
break;
|
break;
|
|
|
case USE_3BYTE_TABLE:
|
case USE_VEX_C5_TABLE:
|
FETCH_DATA (info, codep + 2);
|
FETCH_DATA (info, codep + 2);
|
|
/* All bits in the REX prefix are ignored. */
|
|
rex_ignored = rex;
|
|
rex = (*codep & 0x80) ? 0 : REX_R;
|
|
|
|
vex.register_specifier = (~(*codep >> 3)) & 0xf;
|
|
if (address_mode != mode_64bit
|
|
&& vex.register_specifier > 0x7)
|
|
BadOp ();
|
|
|
|
vex.length = (*codep & 0x4) ? 256 : 128;
|
|
switch ((*codep & 0x3))
|
|
{
|
|
case 0:
|
|
vex.prefix = 0;
|
|
break;
|
|
case 1:
|
|
vex.prefix = DATA_PREFIX_OPCODE;
|
|
break;
|
|
case 2:
|
|
vex.prefix = REPE_PREFIX_OPCODE;
|
|
break;
|
|
case 3:
|
|
vex.prefix = REPNE_PREFIX_OPCODE;
|
|
break;
|
|
}
|
|
need_vex = 1;
|
|
need_vex_reg = 1;
|
|
codep++;
|
index = *codep++;
|
index = *codep++;
|
dp = &three_byte_table[dp->op[1].bytemode][index];
|
dp = &vex_table[dp->op[1].bytemode][index];
|
|
/* There is no MODRM byte for VEX [82|77]. */
|
|
if (index != 0x77 && index != 0x82)
|
|
{
|
|
FETCH_DATA (info, codep + 1);
|
modrm.mod = (*codep >> 6) & 3;
|
modrm.mod = (*codep >> 6) & 3;
|
modrm.reg = (*codep >> 3) & 7;
|
modrm.reg = (*codep >> 3) & 7;
|
modrm.rm = *codep & 7;
|
modrm.rm = *codep & 7;
|
|
}
|
break;
|
break;
|
|
|
default:
|
default:
|
oappend (INTERNAL_DISASSEMBLER_ERROR);
|
abort ();
|
return NULL;
|
|
}
|
}
|
|
|
if (dp->name != NULL)
|
if (dp->name != NULL)
|
return dp;
|
return dp;
|
else
|
else
|
Line 5246... |
Line 9413... |
unsigned char op;
|
unsigned char op;
|
char prefix_obuf[32];
|
char prefix_obuf[32];
|
char *prefix_obufp;
|
char *prefix_obufp;
|
|
|
if (info->mach == bfd_mach_x86_64_intel_syntax
|
if (info->mach == bfd_mach_x86_64_intel_syntax
|
|| info->mach == bfd_mach_x86_64)
|
|| info->mach == bfd_mach_x86_64
|
|
|| info->mach == bfd_mach_l1om
|
|
|| info->mach == bfd_mach_l1om_intel_syntax)
|
address_mode = mode_64bit;
|
address_mode = mode_64bit;
|
else
|
else
|
address_mode = mode_32bit;
|
address_mode = mode_32bit;
|
|
|
if (intel_syntax == (char) -1)
|
if (intel_syntax == (char) -1)
|
intel_syntax = (info->mach == bfd_mach_i386_i386_intel_syntax
|
intel_syntax = (info->mach == bfd_mach_i386_i386_intel_syntax
|
|| info->mach == bfd_mach_x86_64_intel_syntax);
|
|| info->mach == bfd_mach_x86_64_intel_syntax
|
|
|| info->mach == bfd_mach_l1om_intel_syntax);
|
|
|
if (info->mach == bfd_mach_i386_i386
|
if (info->mach == bfd_mach_i386_i386
|
|| info->mach == bfd_mach_x86_64
|
|| info->mach == bfd_mach_x86_64
|
|
|| info->mach == bfd_mach_l1om
|
|| info->mach == bfd_mach_i386_i386_intel_syntax
|
|| info->mach == bfd_mach_i386_i386_intel_syntax
|
|| info->mach == bfd_mach_x86_64_intel_syntax)
|
|| info->mach == bfd_mach_x86_64_intel_syntax
|
|
|| info->mach == bfd_mach_l1om_intel_syntax)
|
priv.orig_sizeflag = AFLAG | DFLAG;
|
priv.orig_sizeflag = AFLAG | DFLAG;
|
else if (info->mach == bfd_mach_i386_i8086)
|
else if (info->mach == bfd_mach_i386_i8086)
|
priv.orig_sizeflag = 0;
|
priv.orig_sizeflag = 0;
|
else
|
else
|
abort ();
|
abort ();
|
Line 5360... |
Line 9532... |
separator_char = ',';
|
separator_char = ',';
|
scale_char = ',';
|
scale_char = ',';
|
}
|
}
|
|
|
/* The output looks better if we put 7 bytes on a line, since that
|
/* The output looks better if we put 7 bytes on a line, since that
|
puts most long word instructions on a single line. */
|
puts most long word instructions on a single line. Use 8 bytes
|
|
for Intel L1OM. */
|
|
if (info->mach == bfd_mach_l1om
|
|
|| info->mach == bfd_mach_l1om_intel_syntax)
|
|
info->bytes_per_line = 8;
|
|
else
|
info->bytes_per_line = 7;
|
info->bytes_per_line = 7;
|
|
|
info->private_data = &priv;
|
info->private_data = &priv;
|
priv.max_fetched = priv.the_buffer;
|
priv.max_fetched = priv.the_buffer;
|
priv.insn_start = pc;
|
priv.insn_start = pc;
|
Line 5429... |
Line 9606... |
(*info->fprintf_func) (info->stream, "%s", name);
|
(*info->fprintf_func) (info->stream, "%s", name);
|
return 1;
|
return 1;
|
}
|
}
|
|
|
op = 0;
|
op = 0;
|
|
|
if (*codep == 0x0f)
|
if (*codep == 0x0f)
|
{
|
{
|
unsigned char threebyte;
|
unsigned char threebyte;
|
FETCH_DATA (info, codep + 2);
|
FETCH_DATA (info, codep + 2);
|
threebyte = *++codep;
|
threebyte = *++codep;
|
Line 5513... |
Line 9691... |
{
|
{
|
dofloat (sizeflag);
|
dofloat (sizeflag);
|
}
|
}
|
else
|
else
|
{
|
{
|
|
need_vex = 0;
|
|
need_vex_reg = 0;
|
|
vex_w_done = 0;
|
dp = get_valid_dis386 (dp, info);
|
dp = get_valid_dis386 (dp, info);
|
if (dp != NULL && putop (dp->name, sizeflag) == 0)
|
if (dp != NULL && putop (dp->name, sizeflag) == 0)
|
{
|
{
|
for (i = 0; i < MAX_OPERANDS; ++i)
|
for (i = 0; i < MAX_OPERANDS; ++i)
|
{
|
{
|
Line 5540... |
Line 9721... |
if (name == NULL)
|
if (name == NULL)
|
name = INTERNAL_DISASSEMBLER_ERROR;
|
name = INTERNAL_DISASSEMBLER_ERROR;
|
(*info->fprintf_func) (info->stream, "%s", name);
|
(*info->fprintf_func) (info->stream, "%s", name);
|
return 1;
|
return 1;
|
}
|
}
|
if (rex & ~rex_used)
|
if ((rex_original & ~rex_used) || rex_ignored)
|
{
|
{
|
const char *name;
|
const char *name;
|
name = prefix_name (rex | 0x40, priv.orig_sizeflag);
|
name = prefix_name (rex_original, priv.orig_sizeflag);
|
if (name == NULL)
|
if (name == NULL)
|
name = INTERNAL_DISASSEMBLER_ERROR;
|
name = INTERNAL_DISASSEMBLER_ERROR;
|
(*info->fprintf_func) (info->stream, "%s ", name);
|
(*info->fprintf_func) (info->stream, "%s ", name);
|
}
|
}
|
|
|
Line 5565... |
Line 9746... |
prefix_obufp = stpcpy (prefix_obufp, data_prefix);
|
prefix_obufp = stpcpy (prefix_obufp, data_prefix);
|
|
|
if (prefix_obuf[0] != 0)
|
if (prefix_obuf[0] != 0)
|
(*info->fprintf_func) (info->stream, "%s", prefix_obuf);
|
(*info->fprintf_func) (info->stream, "%s", prefix_obuf);
|
|
|
obufp = obuf + strlen (obuf);
|
obufp = mnemonicendp;
|
for (i = strlen (obuf) + strlen (prefix_obuf); i < 6; i++)
|
for (i = strlen (obuf) + strlen (prefix_obuf); i < 6; i++)
|
oappend (" ");
|
oappend (" ");
|
oappend (" ");
|
oappend (" ");
|
(*info->fprintf_func) (info->stream, "%s", obuf);
|
(*info->fprintf_func) (info->stream, "%s", obuf);
|
|
|
Line 5907... |
Line 10088... |
"(bad)","fucompp","(bad)","(bad)","(bad)","(bad)","(bad)","(bad)",
|
"(bad)","fucompp","(bad)","(bad)","(bad)","(bad)","(bad)","(bad)",
|
},
|
},
|
|
|
/* db_4 6 */
|
/* db_4 6 */
|
{
|
{
|
"feni(287 only)","fdisi(287 only)","fNclex","fNinit",
|
"fNeni(8087 only)","fNdisi(8087 only)","fNclex","fNinit",
|
"fNsetpm(287 only)","(bad)","(bad)","(bad)",
|
"fNsetpm(287 only)","frstpm(287 only)","(bad)","(bad)",
|
},
|
},
|
|
|
/* de_3 7 */
|
/* de_3 7 */
|
{
|
{
|
"(bad)","fcompp","(bad)","(bad)","(bad)","(bad)","(bad)","(bad)",
|
"(bad)","fcompp","(bad)","(bad)","(bad)","(bad)","(bad)","(bad)",
|
Line 5923... |
Line 10104... |
"fNstsw","(bad)","(bad)","(bad)","(bad)","(bad)","(bad)","(bad)",
|
"fNstsw","(bad)","(bad)","(bad)","(bad)","(bad)","(bad)","(bad)",
|
},
|
},
|
};
|
};
|
|
|
static void
|
static void
|
|
swap_operand (void)
|
|
{
|
|
mnemonicendp[0] = '.';
|
|
mnemonicendp[1] = 's';
|
|
mnemonicendp += 2;
|
|
}
|
|
|
|
static void
|
OP_Skip_MODRM (int bytemode ATTRIBUTE_UNUSED,
|
OP_Skip_MODRM (int bytemode ATTRIBUTE_UNUSED,
|
int sizeflag ATTRIBUTE_UNUSED)
|
int sizeflag ATTRIBUTE_UNUSED)
|
{
|
{
|
/* Skip mod/rm byte. */
|
/* Skip mod/rm byte. */
|
MODRM_CHECK;
|
MODRM_CHECK;
|
Line 5993... |
Line 10182... |
oappend (scratchbuf + intel_syntax);
|
oappend (scratchbuf + intel_syntax);
|
}
|
}
|
|
|
/* Capital letters in template are macros. */
|
/* Capital letters in template are macros. */
|
static int
|
static int
|
putop (const char *template, int sizeflag)
|
putop (const char *in_template, int sizeflag)
|
{
|
{
|
const char *p;
|
const char *p;
|
int alt = 0;
|
int alt = 0;
|
int cond = 1;
|
int cond = 1;
|
unsigned int l = 0, len = 1;
|
unsigned int l = 0, len = 1;
|
Line 6007... |
Line 10196... |
if (l < len && l < sizeof (last)) \
|
if (l < len && l < sizeof (last)) \
|
last[l++] = c; \
|
last[l++] = c; \
|
else \
|
else \
|
abort ();
|
abort ();
|
|
|
for (p = template; *p; p++)
|
for (p = in_template; *p; p++)
|
{
|
{
|
switch (*p)
|
switch (*p)
|
{
|
{
|
default:
|
default:
|
*obufp++ = *p;
|
*obufp++ = *p;
|
Line 6314... |
Line 10503... |
used_prefixes |= (prefixes & PREFIX_DATA);
|
used_prefixes |= (prefixes & PREFIX_DATA);
|
}
|
}
|
}
|
}
|
break;
|
break;
|
case 'X':
|
case 'X':
|
if (prefixes & PREFIX_DATA)
|
if (l != 0 || len != 1)
|
|
{
|
|
SAVE_LAST (*p);
|
|
break;
|
|
}
|
|
if (need_vex && vex.prefix)
|
|
{
|
|
if (vex.prefix == DATA_PREFIX_OPCODE)
|
|
*obufp++ = 'd';
|
|
else
|
|
*obufp++ = 's';
|
|
}
|
|
else if (prefixes & PREFIX_DATA)
|
*obufp++ = 'd';
|
*obufp++ = 'd';
|
else
|
else
|
*obufp++ = 's';
|
*obufp++ = 's';
|
used_prefixes |= (prefixes & PREFIX_DATA);
|
used_prefixes |= (prefixes & PREFIX_DATA);
|
break;
|
break;
|
case 'Y':
|
case 'Y':
|
|
if (l == 0 && len == 1)
|
|
{
|
if (intel_syntax || !(sizeflag & SUFFIX_ALWAYS))
|
if (intel_syntax || !(sizeflag & SUFFIX_ALWAYS))
|
break;
|
break;
|
if (rex & REX_W)
|
if (rex & REX_W)
|
{
|
{
|
USED_REX (REX_W);
|
USED_REX (REX_W);
|
*obufp++ = 'q';
|
*obufp++ = 'q';
|
}
|
}
|
break;
|
break;
|
/* implicit operand size 'l' for i386 or 'q' for x86-64 */
|
}
|
|
else
|
|
{
|
|
if (l != 1 || len != 2 || last[0] != 'X')
|
|
{
|
|
SAVE_LAST (*p);
|
|
break;
|
|
}
|
|
if (!need_vex)
|
|
abort ();
|
|
if (intel_syntax
|
|
|| (modrm.mod == 3 && !(sizeflag & SUFFIX_ALWAYS)))
|
|
break;
|
|
switch (vex.length)
|
|
{
|
|
case 128:
|
|
*obufp++ = 'x';
|
|
break;
|
|
case 256:
|
|
*obufp++ = 'y';
|
|
break;
|
|
default:
|
|
abort ();
|
|
}
|
|
}
|
|
break;
|
case 'W':
|
case 'W':
|
|
if (l == 0 && len == 1)
|
|
{
|
/* operand size flag for cwtl, cbtw */
|
/* operand size flag for cwtl, cbtw */
|
USED_REX (REX_W);
|
USED_REX (REX_W);
|
if (rex & REX_W)
|
if (rex & REX_W)
|
{
|
{
|
if (intel_syntax)
|
if (intel_syntax)
|
Line 6346... |
Line 10576... |
*obufp++ = 'w';
|
*obufp++ = 'w';
|
else
|
else
|
*obufp++ = 'b';
|
*obufp++ = 'b';
|
if (!(rex & REX_W))
|
if (!(rex & REX_W))
|
used_prefixes |= (prefixes & PREFIX_DATA);
|
used_prefixes |= (prefixes & PREFIX_DATA);
|
|
}
|
|
else
|
|
{
|
|
if (l != 1 || len != 2 || last[0] != 'X')
|
|
{
|
|
SAVE_LAST (*p);
|
|
break;
|
|
}
|
|
if (!need_vex)
|
|
abort ();
|
|
*obufp++ = vex.w ? 'd': 's';
|
|
}
|
break;
|
break;
|
}
|
}
|
alt = 0;
|
alt = 0;
|
}
|
}
|
*obufp = 0;
|
*obufp = 0;
|
|
mnemonicendp = obufp;
|
return 0;
|
return 0;
|
}
|
}
|
|
|
static void
|
static void
|
oappend (const char *s)
|
oappend (const char *s)
|
{
|
{
|
strcpy (obufp, s);
|
obufp = stpcpy (obufp, s);
|
obufp += strlen (s);
|
|
}
|
}
|
|
|
static void
|
static void
|
append_seg (void)
|
append_seg (void)
|
{
|
{
|
Line 6497... |
Line 10739... |
}
|
}
|
|
|
buf[j++] = '0';
|
buf[j++] = '0';
|
buf[j++] = 'x';
|
buf[j++] = 'x';
|
|
|
sprintf_vma (tmp, val);
|
sprintf_vma (tmp, (bfd_vma) val);
|
for (i = 0; tmp[i] == '0'; i++)
|
for (i = 0; tmp[i] == '0'; i++)
|
continue;
|
continue;
|
if (tmp[i] == '\0')
|
if (tmp[i] == '\0')
|
i--;
|
i--;
|
strcpy (buf + j, tmp + i);
|
strcpy (buf + j, tmp + i);
|
Line 6511... |
Line 10753... |
intel_operand_size (int bytemode, int sizeflag)
|
intel_operand_size (int bytemode, int sizeflag)
|
{
|
{
|
switch (bytemode)
|
switch (bytemode)
|
{
|
{
|
case b_mode:
|
case b_mode:
|
|
case b_swap_mode:
|
case dqb_mode:
|
case dqb_mode:
|
oappend ("BYTE PTR ");
|
oappend ("BYTE PTR ");
|
break;
|
break;
|
case w_mode:
|
case w_mode:
|
case dqw_mode:
|
case dqw_mode:
|
Line 6527... |
Line 10770... |
used_prefixes |= (prefixes & PREFIX_DATA);
|
used_prefixes |= (prefixes & PREFIX_DATA);
|
break;
|
break;
|
}
|
}
|
/* FALLTHRU */
|
/* FALLTHRU */
|
case v_mode:
|
case v_mode:
|
|
case v_swap_mode:
|
case dq_mode:
|
case dq_mode:
|
USED_REX (REX_W);
|
USED_REX (REX_W);
|
if (rex & REX_W)
|
if (rex & REX_W)
|
oappend ("QWORD PTR ");
|
oappend ("QWORD PTR ");
|
else if ((sizeflag & DFLAG) || bytemode == dq_mode)
|
else if ((sizeflag & DFLAG) || bytemode == dq_mode)
|
Line 6552... |
Line 10796... |
else
|
else
|
oappend ("DWORD PTR ");
|
oappend ("DWORD PTR ");
|
used_prefixes |= (prefixes & PREFIX_DATA);
|
used_prefixes |= (prefixes & PREFIX_DATA);
|
break;
|
break;
|
case d_mode:
|
case d_mode:
|
|
case d_swap_mode:
|
case dqd_mode:
|
case dqd_mode:
|
oappend ("DWORD PTR ");
|
oappend ("DWORD PTR ");
|
break;
|
break;
|
case q_mode:
|
case q_mode:
|
|
case q_swap_mode:
|
oappend ("QWORD PTR ");
|
oappend ("QWORD PTR ");
|
break;
|
break;
|
case m_mode:
|
case m_mode:
|
if (address_mode == mode_64bit)
|
if (address_mode == mode_64bit)
|
oappend ("QWORD PTR ");
|
oappend ("QWORD PTR ");
|
Line 6575... |
Line 10821... |
break;
|
break;
|
case t_mode:
|
case t_mode:
|
oappend ("TBYTE PTR ");
|
oappend ("TBYTE PTR ");
|
break;
|
break;
|
case x_mode:
|
case x_mode:
|
|
case x_swap_mode:
|
|
if (need_vex)
|
|
{
|
|
switch (vex.length)
|
|
{
|
|
case 128:
|
|
oappend ("XMMWORD PTR ");
|
|
break;
|
|
case 256:
|
|
oappend ("YMMWORD PTR ");
|
|
break;
|
|
default:
|
|
abort ();
|
|
}
|
|
}
|
|
else
|
|
oappend ("XMMWORD PTR ");
|
|
break;
|
|
case xmm_mode:
|
|
oappend ("XMMWORD PTR ");
|
|
break;
|
|
case xmmq_mode:
|
|
if (!need_vex)
|
|
abort ();
|
|
|
|
switch (vex.length)
|
|
{
|
|
case 128:
|
|
oappend ("QWORD PTR ");
|
|
break;
|
|
case 256:
|
oappend ("XMMWORD PTR ");
|
oappend ("XMMWORD PTR ");
|
break;
|
break;
|
|
default:
|
|
abort ();
|
|
}
|
|
break;
|
|
case ymmq_mode:
|
|
if (!need_vex)
|
|
abort ();
|
|
|
|
switch (vex.length)
|
|
{
|
|
case 128:
|
|
oappend ("QWORD PTR ");
|
|
break;
|
|
case 256:
|
|
oappend ("YMMWORD PTR ");
|
|
break;
|
|
default:
|
|
abort ();
|
|
}
|
|
break;
|
case o_mode:
|
case o_mode:
|
oappend ("OWORD PTR ");
|
oappend ("OWORD PTR ");
|
break;
|
break;
|
|
case vex_w_dq_mode:
|
|
if (!need_vex)
|
|
abort ();
|
|
|
|
if (vex.w)
|
|
oappend ("QWORD PTR ");
|
|
else
|
|
oappend ("DWORD PTR ");
|
|
break;
|
default:
|
default:
|
break;
|
break;
|
}
|
}
|
}
|
}
|
|
|
static void
|
static void
|
OP_E_extended (int bytemode, int sizeflag, int has_drex)
|
OP_E_register (int bytemode, int sizeflag)
|
{
|
{
|
bfd_vma disp;
|
int reg = modrm.rm;
|
int add = 0;
|
const char **names;
|
int riprel = 0;
|
|
USED_REX (REX_B);
|
USED_REX (REX_B);
|
if (rex & REX_B)
|
if ((rex & REX_B))
|
add += 8;
|
reg += 8;
|
|
|
/* Skip mod/rm byte. */
|
if ((sizeflag & SUFFIX_ALWAYS)
|
MODRM_CHECK;
|
&& (bytemode == b_swap_mode || bytemode == v_swap_mode))
|
codep++;
|
swap_operand ();
|
|
|
if (modrm.mod == 3)
|
|
{
|
|
switch (bytemode)
|
switch (bytemode)
|
{
|
{
|
case b_mode:
|
case b_mode:
|
|
case b_swap_mode:
|
USED_REX (0);
|
USED_REX (0);
|
if (rex)
|
if (rex)
|
oappend (names8rex[modrm.rm + add]);
|
names = names8rex;
|
else
|
else
|
oappend (names8[modrm.rm + add]);
|
names = names8;
|
break;
|
break;
|
case w_mode:
|
case w_mode:
|
oappend (names16[modrm.rm + add]);
|
names = names16;
|
break;
|
break;
|
case d_mode:
|
case d_mode:
|
oappend (names32[modrm.rm + add]);
|
names = names32;
|
break;
|
break;
|
case q_mode:
|
case q_mode:
|
oappend (names64[modrm.rm + add]);
|
names = names64;
|
break;
|
break;
|
case m_mode:
|
case m_mode:
|
if (address_mode == mode_64bit)
|
names = address_mode == mode_64bit ? names64 : names32;
|
oappend (names64[modrm.rm + add]);
|
|
else
|
|
oappend (names32[modrm.rm + add]);
|
|
break;
|
break;
|
case stack_v_mode:
|
case stack_v_mode:
|
if (address_mode == mode_64bit && (sizeflag & DFLAG))
|
if (address_mode == mode_64bit && (sizeflag & DFLAG))
|
{
|
{
|
oappend (names64[modrm.rm + add]);
|
names = names64;
|
used_prefixes |= (prefixes & PREFIX_DATA);
|
used_prefixes |= (prefixes & PREFIX_DATA);
|
break;
|
break;
|
}
|
}
|
bytemode = v_mode;
|
bytemode = v_mode;
|
/* FALLTHRU */
|
/* FALLTHRU */
|
case v_mode:
|
case v_mode:
|
|
case v_swap_mode:
|
case dq_mode:
|
case dq_mode:
|
case dqb_mode:
|
case dqb_mode:
|
case dqd_mode:
|
case dqd_mode:
|
case dqw_mode:
|
case dqw_mode:
|
USED_REX (REX_W);
|
USED_REX (REX_W);
|
if (rex & REX_W)
|
if (rex & REX_W)
|
oappend (names64[modrm.rm + add]);
|
names = names64;
|
else if ((sizeflag & DFLAG) || bytemode != v_mode)
|
else if ((sizeflag & DFLAG)
|
oappend (names32[modrm.rm + add]);
|
|| (bytemode != v_mode
|
|
&& bytemode != v_swap_mode))
|
|
names = names32;
|
else
|
else
|
oappend (names16[modrm.rm + add]);
|
names = names16;
|
used_prefixes |= (prefixes & PREFIX_DATA);
|
used_prefixes |= (prefixes & PREFIX_DATA);
|
break;
|
break;
|
case 0:
|
case 0:
|
break;
|
return;
|
default:
|
default:
|
oappend (INTERNAL_DISASSEMBLER_ERROR);
|
oappend (INTERNAL_DISASSEMBLER_ERROR);
|
break;
|
|
}
|
|
return;
|
return;
|
}
|
}
|
|
oappend (names[reg]);
|
|
}
|
|
|
|
static void
|
|
OP_E_memory (int bytemode, int sizeflag)
|
|
{
|
|
bfd_vma disp = 0;
|
|
int add = (rex & REX_B) ? 8 : 0;
|
|
int riprel = 0;
|
|
|
disp = 0;
|
USED_REX (REX_B);
|
if (intel_syntax)
|
if (intel_syntax)
|
intel_operand_size (bytemode, sizeflag);
|
intel_operand_size (bytemode, sizeflag);
|
append_seg ();
|
append_seg ();
|
|
|
if ((sizeflag & AFLAG) || address_mode == mode_64bit)
|
if ((sizeflag & AFLAG) || address_mode == mode_64bit)
|
Line 6694... |
Line 11006... |
haveindex = index != 4;
|
haveindex = index != 4;
|
codep++;
|
codep++;
|
}
|
}
|
rbase = base + add;
|
rbase = base + add;
|
|
|
/* If we have a DREX byte, skip it now
|
|
(it has already been handled) */
|
|
if (has_drex)
|
|
{
|
|
FETCH_DATA (the_info, codep + 1);
|
|
codep++;
|
|
}
|
|
|
|
switch (modrm.mod)
|
switch (modrm.mod)
|
{
|
{
|
case 0:
|
case 0:
|
if (base == 5)
|
if (base == 5)
|
{
|
{
|
Line 6911... |
Line 11215... |
}
|
}
|
}
|
}
|
}
|
}
|
|
|
static void
|
static void
|
|
OP_E_extended (int bytemode, int sizeflag)
|
|
{
|
|
/* Skip mod/rm byte. */
|
|
MODRM_CHECK;
|
|
codep++;
|
|
|
|
if (modrm.mod == 3)
|
|
OP_E_register (bytemode, sizeflag);
|
|
else
|
|
OP_E_memory (bytemode, sizeflag);
|
|
}
|
|
|
|
static void
|
OP_E (int bytemode, int sizeflag)
|
OP_E (int bytemode, int sizeflag)
|
{
|
{
|
OP_E_extended (bytemode, sizeflag, 0);
|
OP_E_extended (bytemode, sizeflag);
|
}
|
}
|
|
|
|
|
static void
|
static void
|
OP_G (int bytemode, int sizeflag)
|
OP_G (int bytemode, int sizeflag)
|
Line 7602... |
Line 11919... |
sprintf (scratchbuf, "%%mm%d", modrm.reg);
|
sprintf (scratchbuf, "%%mm%d", modrm.reg);
|
oappend (scratchbuf + intel_syntax);
|
oappend (scratchbuf + intel_syntax);
|
}
|
}
|
|
|
static void
|
static void
|
OP_XMM (int bytemode ATTRIBUTE_UNUSED, int sizeflag ATTRIBUTE_UNUSED)
|
OP_XMM (int bytemode, int sizeflag ATTRIBUTE_UNUSED)
|
{
|
{
|
int add;
|
int add;
|
USED_REX (REX_R);
|
USED_REX (REX_R);
|
if (rex & REX_R)
|
if (rex & REX_R)
|
add = 8;
|
add = 8;
|
else
|
else
|
add = 0;
|
add = 0;
|
|
if (need_vex && bytemode != xmm_mode)
|
|
{
|
|
switch (vex.length)
|
|
{
|
|
case 128:
|
|
sprintf (scratchbuf, "%%xmm%d", modrm.reg + add);
|
|
break;
|
|
case 256:
|
|
sprintf (scratchbuf, "%%ymm%d", modrm.reg + add);
|
|
break;
|
|
default:
|
|
abort ();
|
|
}
|
|
}
|
|
else
|
sprintf (scratchbuf, "%%xmm%d", modrm.reg + add);
|
sprintf (scratchbuf, "%%xmm%d", modrm.reg + add);
|
oappend (scratchbuf + intel_syntax);
|
oappend (scratchbuf + intel_syntax);
|
}
|
}
|
|
|
static void
|
static void
|
OP_EM (int bytemode, int sizeflag)
|
OP_EM (int bytemode, int sizeflag)
|
{
|
{
|
if (modrm.mod != 3)
|
if (modrm.mod != 3)
|
{
|
{
|
if (intel_syntax && bytemode == v_mode)
|
if (intel_syntax
|
|
&& (bytemode == v_mode || bytemode == v_swap_mode))
|
{
|
{
|
bytemode = (prefixes & PREFIX_DATA) ? x_mode : q_mode;
|
bytemode = (prefixes & PREFIX_DATA) ? x_mode : q_mode;
|
used_prefixes |= (prefixes & PREFIX_DATA);
|
used_prefixes |= (prefixes & PREFIX_DATA);
|
}
|
}
|
OP_E (bytemode, sizeflag);
|
OP_E (bytemode, sizeflag);
|
return;
|
return;
|
}
|
}
|
|
|
|
if ((sizeflag & SUFFIX_ALWAYS) && bytemode == v_swap_mode)
|
|
swap_operand ();
|
|
|
/* Skip mod/rm byte. */
|
/* Skip mod/rm byte. */
|
MODRM_CHECK;
|
MODRM_CHECK;
|
codep++;
|
codep++;
|
used_prefixes |= (prefixes & PREFIX_DATA);
|
used_prefixes |= (prefixes & PREFIX_DATA);
|
if (prefixes & PREFIX_DATA)
|
if (prefixes & PREFIX_DATA)
|
Line 7687... |
Line 12023... |
|
|
static void
|
static void
|
OP_EX (int bytemode, int sizeflag)
|
OP_EX (int bytemode, int sizeflag)
|
{
|
{
|
int add;
|
int add;
|
|
|
|
/* Skip mod/rm byte. */
|
|
MODRM_CHECK;
|
|
codep++;
|
|
|
if (modrm.mod != 3)
|
if (modrm.mod != 3)
|
{
|
{
|
OP_E (bytemode, sizeflag);
|
OP_E_memory (bytemode, sizeflag);
|
return;
|
return;
|
}
|
}
|
|
|
USED_REX (REX_B);
|
USED_REX (REX_B);
|
if (rex & REX_B)
|
if (rex & REX_B)
|
add = 8;
|
add = 8;
|
else
|
else
|
add = 0;
|
add = 0;
|
|
|
/* Skip mod/rm byte. */
|
if ((sizeflag & SUFFIX_ALWAYS)
|
MODRM_CHECK;
|
&& (bytemode == x_swap_mode
|
codep++;
|
|| bytemode == d_swap_mode
|
|
|| bytemode == q_swap_mode))
|
|
swap_operand ();
|
|
|
|
if (need_vex
|
|
&& bytemode != xmm_mode
|
|
&& bytemode != xmmq_mode)
|
|
{
|
|
switch (vex.length)
|
|
{
|
|
case 128:
|
|
sprintf (scratchbuf, "%%xmm%d", modrm.rm + add);
|
|
break;
|
|
case 256:
|
|
sprintf (scratchbuf, "%%ymm%d", modrm.rm + add);
|
|
break;
|
|
default:
|
|
abort ();
|
|
}
|
|
}
|
|
else
|
sprintf (scratchbuf, "%%xmm%d", modrm.rm + add);
|
sprintf (scratchbuf, "%%xmm%d", modrm.rm + add);
|
oappend (scratchbuf + intel_syntax);
|
oappend (scratchbuf + intel_syntax);
|
}
|
}
|
|
|
static void
|
static void
|
Line 7843... |
Line 12205... |
|
|
FETCH_DATA (the_info, codep + 1);
|
FETCH_DATA (the_info, codep + 1);
|
/* AMD 3DNow! instructions are specified by an opcode suffix in the
|
/* AMD 3DNow! instructions are specified by an opcode suffix in the
|
place where an 8-bit immediate would normally go. ie. the last
|
place where an 8-bit immediate would normally go. ie. the last
|
byte of the instruction. */
|
byte of the instruction. */
|
obufp = obuf + strlen (obuf);
|
obufp = mnemonicendp;
|
mnemonic = Suffix3DNow[*codep++ & 0xff];
|
mnemonic = Suffix3DNow[*codep++ & 0xff];
|
if (mnemonic)
|
if (mnemonic)
|
oappend (mnemonic);
|
oappend (mnemonic);
|
else
|
else
|
{
|
{
|
Line 7857... |
Line 12219... |
we have a bad opcode. This necessitates some cleaning up. */
|
we have a bad opcode. This necessitates some cleaning up. */
|
op_out[0][0] = '\0';
|
op_out[0][0] = '\0';
|
op_out[1][0] = '\0';
|
op_out[1][0] = '\0';
|
BadOp ();
|
BadOp ();
|
}
|
}
|
|
mnemonicendp = obufp;
|
}
|
}
|
|
|
static const char *simd_cmp_op[] = {
|
static struct op simd_cmp_op[] =
|
"eq",
|
{
|
"lt",
|
{ STRING_COMMA_LEN ("eq") },
|
"le",
|
{ STRING_COMMA_LEN ("lt") },
|
"unord",
|
{ STRING_COMMA_LEN ("le") },
|
"neq",
|
{ STRING_COMMA_LEN ("unord") },
|
"nlt",
|
{ STRING_COMMA_LEN ("neq") },
|
"nle",
|
{ STRING_COMMA_LEN ("nlt") },
|
"ord"
|
{ STRING_COMMA_LEN ("nle") },
|
|
{ STRING_COMMA_LEN ("ord") }
|
};
|
};
|
|
|
static void
|
static void
|
CMP_Fixup (int bytemode ATTRIBUTE_UNUSED, int sizeflag ATTRIBUTE_UNUSED)
|
CMP_Fixup (int bytemode ATTRIBUTE_UNUSED, int sizeflag ATTRIBUTE_UNUSED)
|
{
|
{
|
unsigned int cmp_type;
|
unsigned int cmp_type;
|
|
|
FETCH_DATA (the_info, codep + 1);
|
FETCH_DATA (the_info, codep + 1);
|
cmp_type = *codep++ & 0xff;
|
cmp_type = *codep++ & 0xff;
|
if (cmp_type < 8)
|
if (cmp_type < ARRAY_SIZE (simd_cmp_op))
|
{
|
{
|
char suffix [3];
|
char suffix [3];
|
char *p = obuf + strlen (obuf) - 2;
|
char *p = mnemonicendp - 2;
|
suffix[0] = p[0];
|
suffix[0] = p[0];
|
suffix[1] = p[1];
|
suffix[1] = p[1];
|
suffix[2] = '\0';
|
suffix[2] = '\0';
|
sprintf (p, "%s%s", simd_cmp_op[cmp_type], suffix);
|
sprintf (p, "%s%s", simd_cmp_op[cmp_type].name, suffix);
|
|
mnemonicendp += simd_cmp_op[cmp_type].len;
|
}
|
}
|
else
|
else
|
{
|
{
|
/* We have a reserved extension byte. Output it directly. */
|
/* We have a reserved extension byte. Output it directly. */
|
scratchbuf[0] = '$';
|
scratchbuf[0] = '$';
|
Line 7988... |
Line 12353... |
{
|
{
|
USED_REX (REX_W);
|
USED_REX (REX_W);
|
if (rex & REX_W)
|
if (rex & REX_W)
|
{
|
{
|
/* Change cmpxchg8b to cmpxchg16b. */
|
/* Change cmpxchg8b to cmpxchg16b. */
|
char *p = obuf + strlen (obuf) - 2;
|
char *p = mnemonicendp - 2;
|
strcpy (p, "16b");
|
mnemonicendp = stpcpy (p, "16b");
|
bytemode = o_mode;
|
bytemode = o_mode;
|
}
|
}
|
OP_M (bytemode, sizeflag);
|
OP_M (bytemode, sizeflag);
|
}
|
}
|
|
|
static void
|
static void
|
XMM_Fixup (int reg, int sizeflag ATTRIBUTE_UNUSED)
|
XMM_Fixup (int reg, int sizeflag ATTRIBUTE_UNUSED)
|
{
|
{
|
|
if (need_vex)
|
|
{
|
|
switch (vex.length)
|
|
{
|
|
case 128:
|
|
sprintf (scratchbuf, "%%xmm%d", reg);
|
|
break;
|
|
case 256:
|
|
sprintf (scratchbuf, "%%ymm%d", reg);
|
|
break;
|
|
default:
|
|
abort ();
|
|
}
|
|
}
|
|
else
|
sprintf (scratchbuf, "%%xmm%d", reg);
|
sprintf (scratchbuf, "%%xmm%d", reg);
|
oappend (scratchbuf + intel_syntax);
|
oappend (scratchbuf + intel_syntax);
|
}
|
}
|
|
|
static void
|
static void
|
CRC32_Fixup (int bytemode, int sizeflag)
|
CRC32_Fixup (int bytemode, int sizeflag)
|
{
|
{
|
/* Add proper suffix to "crc32". */
|
/* Add proper suffix to "crc32". */
|
char *p = obuf + strlen (obuf);
|
char *p = mnemonicendp;
|
|
|
switch (bytemode)
|
switch (bytemode)
|
{
|
{
|
case b_mode:
|
case b_mode:
|
if (intel_syntax)
|
if (intel_syntax)
|
break;
|
goto skip;
|
|
|
*p++ = 'b';
|
*p++ = 'b';
|
break;
|
break;
|
case v_mode:
|
case v_mode:
|
if (intel_syntax)
|
if (intel_syntax)
|
break;
|
goto skip;
|
|
|
USED_REX (REX_W);
|
USED_REX (REX_W);
|
if (rex & REX_W)
|
if (rex & REX_W)
|
*p++ = 'q';
|
*p++ = 'q';
|
else if (sizeflag & DFLAG)
|
else if (sizeflag & DFLAG)
|
Line 8033... |
Line 12413... |
break;
|
break;
|
default:
|
default:
|
oappend (INTERNAL_DISASSEMBLER_ERROR);
|
oappend (INTERNAL_DISASSEMBLER_ERROR);
|
break;
|
break;
|
}
|
}
|
|
mnemonicendp = p;
|
*p = '\0';
|
*p = '\0';
|
|
|
|
skip:
|
if (modrm.mod == 3)
|
if (modrm.mod == 3)
|
{
|
{
|
int add;
|
int add;
|
|
|
/* Skip mod/rm byte. */
|
/* Skip mod/rm byte. */
|
Line 8068... |
Line 12450... |
}
|
}
|
else
|
else
|
OP_E (bytemode, sizeflag);
|
OP_E (bytemode, sizeflag);
|
}
|
}
|
|
|
/* Print a DREX argument as either a register or memory operation. */
|
/* Display the destination register operand for instructions with
|
|
VEX. */
|
|
|
static void
|
static void
|
print_drex_arg (unsigned int reg, int bytemode, int sizeflag)
|
OP_VEX (int bytemode, int sizeflag ATTRIBUTE_UNUSED)
|
{
|
{
|
if (reg == DREX_REG_UNKNOWN)
|
if (!need_vex)
|
BadOp ();
|
abort ();
|
|
|
|
if (!need_vex_reg)
|
|
return;
|
|
|
else if (reg != DREX_REG_MEMORY)
|
switch (vex.length)
|
{
|
{
|
sprintf (scratchbuf, "%%xmm%d", reg);
|
case 128:
|
oappend (scratchbuf + intel_syntax);
|
switch (bytemode)
|
|
{
|
|
case vex_mode:
|
|
case vex128_mode:
|
|
break;
|
|
default:
|
|
abort ();
|
|
return;
|
}
|
}
|
|
|
else
|
sprintf (scratchbuf, "%%xmm%d", vex.register_specifier);
|
OP_E_extended (bytemode, sizeflag, 1);
|
break;
|
|
case 256:
|
|
switch (bytemode)
|
|
{
|
|
case vex_mode:
|
|
case vex256_mode:
|
|
break;
|
|
default:
|
|
abort ();
|
|
return;
|
}
|
}
|
|
|
/* SSE5 instructions that have 4 arguments are encoded as:
|
sprintf (scratchbuf, "%%ymm%d", vex.register_specifier);
|
0f 24 <sub-opcode> <modrm> <optional-sib> <drex> <offset>.
|
break;
|
|
default:
|
The <sub-opcode> byte has 1 bit (0x4) that is combined with 1 bit in
|
abort ();
|
the DREX field (0x8) to determine how the arguments are laid out.
|
break;
|
The destination register must be the same register as one of the
|
}
|
inputs, and it is encoded in the DREX byte. No REX prefix is used
|
oappend (scratchbuf + intel_syntax);
|
for these instructions, since the DREX field contains the 3 extension
|
}
|
bits provided by the REX prefix.
|
|
|
|
The bytemode argument adds 2 extra bits for passing extra information:
|
/* Get the VEX immediate byte without moving codep. */
|
DREX_OC1 -- Set the OC1 bit to indicate dest == 1st arg
|
|
DREX_NO_OC0 -- OC0 in DREX is invalid
|
|
(but pretend it is set). */
|
|
|
|
static void
|
static unsigned char
|
OP_DREX4 (int flag_bytemode, int sizeflag)
|
get_vex_imm8 (int sizeflag)
|
{
|
{
|
unsigned int drex_byte;
|
int bytes_before_imm = 0;
|
unsigned int regs[4];
|
|
unsigned int modrm_regmem;
|
|
unsigned int modrm_reg;
|
|
unsigned int drex_reg;
|
|
int bytemode;
|
|
int rex_save = rex;
|
|
int rex_used_save = rex_used;
|
|
int has_sib = 0;
|
|
int oc1 = (flag_bytemode & DREX_OC1) ? 2 : 0;
|
|
int oc0;
|
|
int i;
|
|
|
|
bytemode = flag_bytemode & ~ DREX_MASK;
|
|
|
|
for (i = 0; i < 4; i++)
|
/* Skip mod/rm byte. */
|
regs[i] = DREX_REG_UNKNOWN;
|
MODRM_CHECK;
|
|
codep++;
|
/* Determine if we have a SIB byte in addition to MODRM before the
|
|
DREX byte. */
|
|
if (((sizeflag & AFLAG) || address_mode == mode_64bit)
|
|
&& (modrm.mod != 3)
|
|
&& (modrm.rm == 4))
|
|
has_sib = 1;
|
|
|
|
/* Get the DREX byte. */
|
|
FETCH_DATA (the_info, codep + 2 + has_sib);
|
|
drex_byte = codep[has_sib+1];
|
|
drex_reg = DREX_XMM (drex_byte);
|
|
modrm_reg = modrm.reg + ((drex_byte & REX_R) ? 8 : 0);
|
|
|
|
/* Is OC0 legal? If not, hardwire oc0 == 1. */
|
if (modrm.mod != 3)
|
if (flag_bytemode & DREX_NO_OC0)
|
|
{
|
{
|
oc0 = 1;
|
/* There are SIB/displacement bytes. */
|
if (DREX_OC0 (drex_byte))
|
if ((sizeflag & AFLAG) || address_mode == mode_64bit)
|
BadOp ();
|
|
}
|
|
else
|
|
oc0 = DREX_OC0 (drex_byte);
|
|
|
|
if (modrm.mod == 3)
|
|
{
|
{
|
/* regmem == register */
|
/* 32/64 bit address mode */
|
modrm_regmem = modrm.rm + ((drex_byte & REX_B) ? 8 : 0);
|
int base = modrm.rm;
|
rex = rex_used = 0;
|
|
/* skip modrm/drex since we don't call OP_E_extended */
|
/* Check SIB byte. */
|
codep += 2;
|
if (base == 4)
|
}
|
|
else
|
|
{
|
{
|
/* regmem == memory, fill in appropriate REX bits */
|
FETCH_DATA (the_info, codep + 1);
|
modrm_regmem = DREX_REG_MEMORY;
|
base = *codep & 7;
|
rex = drex_byte & (REX_B | REX_X | REX_R);
|
bytes_before_imm++;
|
if (rex)
|
|
rex |= REX_OPCODE;
|
|
rex_used = rex;
|
|
}
|
}
|
|
|
/* Based on the OC1/OC0 bits, lay out the arguments in the correct
|
switch (modrm.mod)
|
order. */
|
|
switch (oc0 + oc1)
|
|
{
|
{
|
default:
|
|
BadOp ();
|
|
return;
|
|
|
|
case 0:
|
case 0:
|
regs[0] = modrm_regmem;
|
/* When modrm.rm == 5 or modrm.rm == 4 and base in
|
regs[1] = modrm_reg;
|
SIB == 5, there is a 4 byte displacement. */
|
regs[2] = drex_reg;
|
if (base != 5)
|
regs[3] = drex_reg;
|
/* No displacement. */
|
|
break;
|
|
case 2:
|
|
/* 4 byte displacement. */
|
|
bytes_before_imm += 4;
|
break;
|
break;
|
|
|
case 1:
|
case 1:
|
regs[0] = modrm_reg;
|
/* 1 byte displacement. */
|
regs[1] = modrm_regmem;
|
bytes_before_imm++;
|
regs[2] = drex_reg;
|
break;
|
regs[3] = drex_reg;
|
}
|
|
}
|
|
else
|
|
{ /* 16 bit address mode */
|
|
switch (modrm.mod)
|
|
{
|
|
case 0:
|
|
/* When modrm.rm == 6, there is a 2 byte displacement. */
|
|
if (modrm.rm != 6)
|
|
/* No displacement. */
|
break;
|
break;
|
|
|
case 2:
|
case 2:
|
regs[0] = drex_reg;
|
/* 2 byte displacement. */
|
regs[1] = modrm_regmem;
|
bytes_before_imm += 2;
|
regs[2] = modrm_reg;
|
|
regs[3] = drex_reg;
|
|
break;
|
break;
|
|
case 1:
|
case 3:
|
/* 1 byte displacement. */
|
regs[0] = drex_reg;
|
bytes_before_imm++;
|
regs[1] = modrm_reg;
|
|
regs[2] = modrm_regmem;
|
|
regs[3] = drex_reg;
|
|
break;
|
break;
|
}
|
}
|
|
}
|
|
}
|
|
|
|
FETCH_DATA (the_info, codep + bytes_before_imm + 1);
|
|
return codep [bytes_before_imm];
|
|
}
|
|
|
/* Print out the arguments. */
|
static void
|
for (i = 0; i < 4; i++)
|
OP_EX_VexReg (int bytemode, int sizeflag, int reg)
|
{
|
{
|
int j = (intel_syntax) ? 3 - i : i;
|
if (reg == -1 && modrm.mod != 3)
|
if (i > 0)
|
|
{
|
{
|
*obufp++ = ',';
|
OP_E_memory (bytemode, sizeflag);
|
*obufp = '\0';
|
return;
|
}
|
}
|
|
else
|
print_drex_arg (regs[j], bytemode, sizeflag);
|
{
|
|
if (reg == -1)
|
|
{
|
|
reg = modrm.rm;
|
|
USED_REX (REX_B);
|
|
if (rex & REX_B)
|
|
reg += 8;
|
}
|
}
|
|
else if (reg > 7 && address_mode != mode_64bit)
|
rex = rex_save;
|
BadOp ();
|
rex_used = rex_used_save;
|
|
}
|
}
|
|
|
/* SSE5 instructions that have 3 arguments, and are encoded as:
|
switch (vex.length)
|
0f 24 <sub-opcode> <modrm> <optional-sib> <drex> <offset> (or)
|
{
|
0f 25 <sub-opcode> <modrm> <optional-sib> <drex> <offset> <cmp-byte>
|
case 128:
|
|
sprintf (scratchbuf, "%%xmm%d", reg);
|
The DREX field has 1 bit (0x8) to determine how the arguments are
|
break;
|
laid out. The destination register is encoded in the DREX byte.
|
case 256:
|
No REX prefix is used for these instructions, since the DREX field
|
sprintf (scratchbuf, "%%ymm%d", reg);
|
contains the 3 extension bits provided by the REX prefix. */
|
break;
|
|
default:
|
|
abort ();
|
|
}
|
|
oappend (scratchbuf + intel_syntax);
|
|
}
|
|
|
static void
|
static void
|
OP_DREX3 (int flag_bytemode, int sizeflag)
|
OP_EX_VexW (int bytemode, int sizeflag)
|
{
|
{
|
unsigned int drex_byte;
|
int reg = -1;
|
unsigned int regs[3];
|
|
unsigned int modrm_regmem;
|
if (!vex_w_done)
|
unsigned int modrm_reg;
|
{
|
unsigned int drex_reg;
|
vex_w_done = 1;
|
int bytemode;
|
if (vex.w)
|
int rex_save = rex;
|
reg = vex.register_specifier;
|
int rex_used_save = rex_used;
|
}
|
int has_sib = 0;
|
else
|
int oc0;
|
{
|
int i;
|
if (!vex.w)
|
|
reg = vex.register_specifier;
|
|
}
|
|
|
bytemode = flag_bytemode & ~ DREX_MASK;
|
OP_EX_VexReg (bytemode, sizeflag, reg);
|
|
}
|
|
|
for (i = 0; i < 3; i++)
|
static void
|
regs[i] = DREX_REG_UNKNOWN;
|
OP_VEX_FMA (int bytemode, int sizeflag)
|
|
{
|
|
int reg = get_vex_imm8 (sizeflag) >> 4;
|
|
|
/* Determine if we have a SIB byte in addition to MODRM before the
|
if (reg > 7 && address_mode != mode_64bit)
|
DREX byte. */
|
|
if (((sizeflag & AFLAG) || address_mode == mode_64bit)
|
|
&& (modrm.mod != 3)
|
|
&& (modrm.rm == 4))
|
|
has_sib = 1;
|
|
|
|
/* Get the DREX byte. */
|
|
FETCH_DATA (the_info, codep + 2 + has_sib);
|
|
drex_byte = codep[has_sib+1];
|
|
drex_reg = DREX_XMM (drex_byte);
|
|
modrm_reg = modrm.reg + ((drex_byte & REX_R) ? 8 : 0);
|
|
|
|
/* Is OC0 legal? If not, hardwire oc0 == 0 */
|
|
oc0 = DREX_OC0 (drex_byte);
|
|
if ((flag_bytemode & DREX_NO_OC0) && oc0)
|
|
BadOp ();
|
BadOp ();
|
|
|
if (modrm.mod == 3)
|
switch (vex.length)
|
{
|
{
|
/* regmem == register */
|
case 128:
|
modrm_regmem = modrm.rm + ((drex_byte & REX_B) ? 8 : 0);
|
switch (bytemode)
|
rex = rex_used = 0;
|
|
/* skip modrm/drex since we don't call OP_E_extended. */
|
|
codep += 2;
|
|
}
|
|
else
|
|
{
|
{
|
/* regmem == memory, fill in appropriate REX bits. */
|
case vex_mode:
|
modrm_regmem = DREX_REG_MEMORY;
|
case vex128_mode:
|
rex = drex_byte & (REX_B | REX_X | REX_R);
|
break;
|
if (rex)
|
default:
|
rex |= REX_OPCODE;
|
abort ();
|
rex_used = rex;
|
return;
|
}
|
}
|
|
|
/* Based on the OC1/OC0 bits, lay out the arguments in the correct
|
sprintf (scratchbuf, "%%xmm%d", reg);
|
order. */
|
break;
|
switch (oc0)
|
case 256:
|
|
switch (bytemode)
|
{
|
{
|
|
case vex_mode:
|
|
break;
|
default:
|
default:
|
BadOp ();
|
abort ();
|
return;
|
return;
|
|
}
|
|
|
case 0:
|
sprintf (scratchbuf, "%%ymm%d", reg);
|
regs[0] = modrm_regmem;
|
|
regs[1] = modrm_reg;
|
|
regs[2] = drex_reg;
|
|
break;
|
break;
|
|
default:
|
|
abort ();
|
|
}
|
|
oappend (scratchbuf + intel_syntax);
|
|
}
|
|
|
case 1:
|
static void
|
regs[0] = modrm_reg;
|
VEXI4_Fixup (int bytemode ATTRIBUTE_UNUSED,
|
regs[1] = modrm_regmem;
|
int sizeflag ATTRIBUTE_UNUSED)
|
regs[2] = drex_reg;
|
{
|
break;
|
/* Skip the immediate byte and check for invalid bits. */
|
|
FETCH_DATA (the_info, codep + 1);
|
|
if (*codep++ & 0xf)
|
|
BadOp ();
|
}
|
}
|
|
|
/* Print out the arguments. */
|
static void
|
for (i = 0; i < 3; i++)
|
OP_REG_VexI4 (int bytemode, int sizeflag ATTRIBUTE_UNUSED)
|
{
|
{
|
int j = (intel_syntax) ? 2 - i : i;
|
int reg;
|
if (i > 0)
|
FETCH_DATA (the_info, codep + 1);
|
|
reg = *codep++;
|
|
|
|
if (bytemode != x_mode)
|
|
abort ();
|
|
|
|
if (reg & 0xf)
|
|
BadOp ();
|
|
|
|
reg >>= 4;
|
|
if (reg > 7 && address_mode != mode_64bit)
|
|
BadOp ();
|
|
|
|
switch (vex.length)
|
{
|
{
|
*obufp++ = ',';
|
case 128:
|
*obufp = '\0';
|
sprintf (scratchbuf, "%%xmm%d", reg);
|
|
break;
|
|
case 256:
|
|
sprintf (scratchbuf, "%%ymm%d", reg);
|
|
break;
|
|
default:
|
|
abort ();
|
|
}
|
|
oappend (scratchbuf + intel_syntax);
|
}
|
}
|
|
|
print_drex_arg (regs[j], bytemode, sizeflag);
|
static void
|
|
OP_XMM_VexW (int bytemode, int sizeflag)
|
|
{
|
|
/* Turn off the REX.W bit since it is used for swapping operands
|
|
now. */
|
|
rex &= ~REX_W;
|
|
OP_XMM (bytemode, sizeflag);
|
}
|
}
|
|
|
rex = rex_save;
|
static void
|
rex_used = rex_used_save;
|
OP_EX_Vex (int bytemode, int sizeflag)
|
|
{
|
|
if (modrm.mod != 3)
|
|
{
|
|
if (vex.register_specifier != 0)
|
|
BadOp ();
|
|
need_vex_reg = 0;
|
|
}
|
|
OP_EX (bytemode, sizeflag);
|
}
|
}
|
|
|
/* Emit a floating point comparison for comp<xx> instructions. */
|
static void
|
|
OP_XMM_Vex (int bytemode, int sizeflag)
|
|
{
|
|
if (modrm.mod != 3)
|
|
{
|
|
if (vex.register_specifier != 0)
|
|
BadOp ();
|
|
need_vex_reg = 0;
|
|
}
|
|
OP_XMM (bytemode, sizeflag);
|
|
}
|
|
|
static void
|
static void
|
OP_DREX_FCMP (int bytemode ATTRIBUTE_UNUSED,
|
VZERO_Fixup (int bytemode ATTRIBUTE_UNUSED, int sizeflag ATTRIBUTE_UNUSED)
|
int sizeflag ATTRIBUTE_UNUSED)
|
{
|
|
switch (vex.length)
|
{
|
{
|
unsigned char byte;
|
case 128:
|
|
mnemonicendp = stpcpy (obuf, "vzeroupper");
|
|
break;
|
|
case 256:
|
|
mnemonicendp = stpcpy (obuf, "vzeroall");
|
|
break;
|
|
default:
|
|
abort ();
|
|
}
|
|
}
|
|
|
static const char *const cmp_test[] = {
|
static struct op vex_cmp_op[] =
|
"eq",
|
{
|
"lt",
|
{ STRING_COMMA_LEN ("eq") },
|
"le",
|
{ STRING_COMMA_LEN ("lt") },
|
"unord",
|
{ STRING_COMMA_LEN ("le") },
|
"ne",
|
{ STRING_COMMA_LEN ("unord") },
|
"nlt",
|
{ STRING_COMMA_LEN ("neq") },
|
"nle",
|
{ STRING_COMMA_LEN ("nlt") },
|
"ord",
|
{ STRING_COMMA_LEN ("nle") },
|
"ueq",
|
{ STRING_COMMA_LEN ("ord") },
|
"ult",
|
{ STRING_COMMA_LEN ("eq_uq") },
|
"ule",
|
{ STRING_COMMA_LEN ("nge") },
|
"false",
|
{ STRING_COMMA_LEN ("ngt") },
|
"une",
|
{ STRING_COMMA_LEN ("false") },
|
"unlt",
|
{ STRING_COMMA_LEN ("neq_oq") },
|
"unle",
|
{ STRING_COMMA_LEN ("ge") },
|
"true"
|
{ STRING_COMMA_LEN ("gt") },
|
|
{ STRING_COMMA_LEN ("true") },
|
|
{ STRING_COMMA_LEN ("eq_os") },
|
|
{ STRING_COMMA_LEN ("lt_oq") },
|
|
{ STRING_COMMA_LEN ("le_oq") },
|
|
{ STRING_COMMA_LEN ("unord_s") },
|
|
{ STRING_COMMA_LEN ("neq_us") },
|
|
{ STRING_COMMA_LEN ("nlt_uq") },
|
|
{ STRING_COMMA_LEN ("nle_uq") },
|
|
{ STRING_COMMA_LEN ("ord_s") },
|
|
{ STRING_COMMA_LEN ("eq_us") },
|
|
{ STRING_COMMA_LEN ("nge_uq") },
|
|
{ STRING_COMMA_LEN ("ngt_uq") },
|
|
{ STRING_COMMA_LEN ("false_os") },
|
|
{ STRING_COMMA_LEN ("neq_os") },
|
|
{ STRING_COMMA_LEN ("ge_oq") },
|
|
{ STRING_COMMA_LEN ("gt_oq") },
|
|
{ STRING_COMMA_LEN ("true_us") },
|
};
|
};
|
|
|
FETCH_DATA (the_info, codep + 1);
|
static void
|
byte = *codep & 0xff;
|
VCMP_Fixup (int bytemode ATTRIBUTE_UNUSED, int sizeflag ATTRIBUTE_UNUSED)
|
|
{
|
|
unsigned int cmp_type;
|
|
|
if (byte >= ARRAY_SIZE (cmp_test)
|
FETCH_DATA (the_info, codep + 1);
|
|| obuf[0] != 'c'
|
cmp_type = *codep++ & 0xff;
|
|| obuf[1] != 'o'
|
if (cmp_type < ARRAY_SIZE (vex_cmp_op))
|
|| obuf[2] != 'm')
|
|
{
|
{
|
/* The instruction isn't one we know about, so just append the
|
char suffix [3];
|
extension byte as a numeric value. */
|
char *p = mnemonicendp - 2;
|
OP_I (b_mode, 0);
|
suffix[0] = p[0];
|
|
suffix[1] = p[1];
|
|
suffix[2] = '\0';
|
|
sprintf (p, "%s%s", vex_cmp_op[cmp_type].name, suffix);
|
|
mnemonicendp += vex_cmp_op[cmp_type].len;
|
}
|
}
|
|
|
else
|
else
|
{
|
{
|
sprintf (scratchbuf, "com%s%s", cmp_test[byte], obuf+3);
|
/* We have a reserved extension byte. Output it directly. */
|
strcpy (obuf, scratchbuf);
|
scratchbuf[0] = '$';
|
codep++;
|
print_operand_value (scratchbuf + 1, 1, cmp_type);
|
|
oappend (scratchbuf + intel_syntax);
|
|
scratchbuf[0] = '\0';
|
}
|
}
|
}
|
}
|
|
|
/* Emit an integer point comparison for pcom<xx> instructions,
|
static const struct op pclmul_op[] =
|
rewriting the instruction to have the test inside of it. */
|
{
|
|
{ STRING_COMMA_LEN ("lql") },
|
|
{ STRING_COMMA_LEN ("hql") },
|
|
{ STRING_COMMA_LEN ("lqh") },
|
|
{ STRING_COMMA_LEN ("hqh") }
|
|
};
|
|
|
static void
|
static void
|
OP_DREX_ICMP (int bytemode ATTRIBUTE_UNUSED,
|
PCLMUL_Fixup (int bytemode ATTRIBUTE_UNUSED,
|
int sizeflag ATTRIBUTE_UNUSED)
|
int sizeflag ATTRIBUTE_UNUSED)
|
{
|
{
|
unsigned char byte;
|
unsigned int pclmul_type;
|
|
|
static const char *const cmp_test[] = {
|
|
"lt",
|
|
"le",
|
|
"gt",
|
|
"ge",
|
|
"eq",
|
|
"ne",
|
|
"false",
|
|
"true"
|
|
};
|
|
|
|
FETCH_DATA (the_info, codep + 1);
|
FETCH_DATA (the_info, codep + 1);
|
byte = *codep & 0xff;
|
pclmul_type = *codep++ & 0xff;
|
|
switch (pclmul_type)
|
if (byte >= ARRAY_SIZE (cmp_test)
|
{
|
|| obuf[0] != 'p'
|
case 0x10:
|
|| obuf[1] != 'c'
|
pclmul_type = 2;
|
|| obuf[2] != 'o'
|
break;
|
|| obuf[3] != 'm')
|
case 0x11:
|
|
pclmul_type = 3;
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
if (pclmul_type < ARRAY_SIZE (pclmul_op))
|
{
|
{
|
/* The instruction isn't one we know about, so just print the
|
char suffix [4];
|
comparison test byte as a numeric value. */
|
char *p = mnemonicendp - 3;
|
OP_I (b_mode, 0);
|
suffix[0] = p[0];
|
|
suffix[1] = p[1];
|
|
suffix[2] = p[2];
|
|
suffix[3] = '\0';
|
|
sprintf (p, "%s%s", pclmul_op[pclmul_type].name, suffix);
|
|
mnemonicendp += pclmul_op[pclmul_type].len;
|
}
|
}
|
|
|
else
|
else
|
{
|
{
|
sprintf (scratchbuf, "pcom%s%s", cmp_test[byte], obuf+4);
|
/* We have a reserved extension byte. Output it directly. */
|
strcpy (obuf, scratchbuf);
|
scratchbuf[0] = '$';
|
codep++;
|
print_operand_value (scratchbuf + 1, 1, pclmul_type);
|
|
oappend (scratchbuf + intel_syntax);
|
|
scratchbuf[0] = '\0';
|
|
}
|
|
}
|
|
|
|
static void
|
|
MOVBE_Fixup (int bytemode, int sizeflag)
|
|
{
|
|
/* Add proper suffix to "movbe". */
|
|
char *p = mnemonicendp;
|
|
|
|
switch (bytemode)
|
|
{
|
|
case v_mode:
|
|
if (intel_syntax)
|
|
goto skip;
|
|
|
|
USED_REX (REX_W);
|
|
if (sizeflag & SUFFIX_ALWAYS)
|
|
{
|
|
if (rex & REX_W)
|
|
*p++ = 'q';
|
|
else if (sizeflag & DFLAG)
|
|
*p++ = 'l';
|
|
else
|
|
*p++ = 'w';
|
|
}
|
|
used_prefixes |= (prefixes & PREFIX_DATA);
|
|
break;
|
|
default:
|
|
oappend (INTERNAL_DISASSEMBLER_ERROR);
|
|
break;
|
}
|
}
|
|
mnemonicendp = p;
|
|
*p = '\0';
|
|
|
|
skip:
|
|
OP_M (bytemode, sizeflag);
|
}
|
}
|
|
|
No newline at end of file
|
No newline at end of file
|