VirtualBox

source: vbox/trunk/src/VBox/Disassembler/DisasmInternal.h@ 53007

Last change on this file since 53007 was 53007, checked in by vboxsync, 10 years ago

DIS: Fixed VMREAD/VMWRITE disassembling, added support for MOVBE, POPCNT, TZCNT, LZCNT, ADCX, ADOX and CRC32 (only CRC32 Gd, Eb & CRC32 Gd, Ey forms).

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.4 KB
Line 
1/* $Id: DisasmInternal.h 53007 2014-10-09 09:13:24Z vboxsync $ */
2/** @file
3 * VBox disassembler - Internal header.
4 */
5
6/*
7 * Copyright (C) 2006-2012 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18#ifndef ___DisasmInternal_h___
19#define ___DisasmInternal_h___
20
21#include <VBox/types.h>
22#include <VBox/dis.h>
23
24
25/** @defgroup grp_dis_int Internals.
26 * @ingroup grp_dis
27 * @{
28 */
29
30/** @name Index into g_apfnCalcSize and g_apfnFullDisasm.
31 * @{ */
32enum IDX_Parse
33{
34 IDX_ParseNop = 0,
35 IDX_ParseModRM,
36 IDX_UseModRM,
37 IDX_ParseImmByte,
38 IDX_ParseImmBRel,
39 IDX_ParseImmUshort,
40 IDX_ParseImmV,
41 IDX_ParseImmVRel,
42 IDX_ParseImmAddr,
43 IDX_ParseFixedReg,
44 IDX_ParseImmUlong,
45 IDX_ParseImmQword,
46 IDX_ParseTwoByteEsc,
47 IDX_ParseImmGrpl,
48 IDX_ParseShiftGrp2,
49 IDX_ParseGrp3,
50 IDX_ParseGrp4,
51 IDX_ParseGrp5,
52 IDX_Parse3DNow,
53 IDX_ParseGrp6,
54 IDX_ParseGrp7,
55 IDX_ParseGrp8,
56 IDX_ParseGrp9,
57 IDX_ParseGrp10,
58 IDX_ParseGrp12,
59 IDX_ParseGrp13,
60 IDX_ParseGrp14,
61 IDX_ParseGrp15,
62 IDX_ParseGrp16,
63 IDX_ParseModFence,
64 IDX_ParseYv,
65 IDX_ParseYb,
66 IDX_ParseXv,
67 IDX_ParseXb,
68 IDX_ParseEscFP,
69 IDX_ParseNopPause,
70 IDX_ParseImmByteSX,
71 IDX_ParseImmZ,
72 IDX_ParseThreeByteEsc4,
73 IDX_ParseThreeByteEsc5,
74 IDX_ParseImmAddrF,
75 IDX_ParseInvOpModRM,
76 IDX_ParseMax
77};
78/** @} */
79
80
81/** @name Opcode maps.
82 * @{ */
83extern const DISOPCODE g_InvalidOpcode[1];
84
85extern const DISOPCODE g_aOneByteMapX86[256];
86extern const DISOPCODE g_aOneByteMapX64[256];
87extern const DISOPCODE g_aTwoByteMapX86[256];
88
89/** Two byte opcode map with prefix 0x66 */
90extern const DISOPCODE g_aTwoByteMapX86_PF66[256];
91
92/** Two byte opcode map with prefix 0xF2 */
93extern const DISOPCODE g_aTwoByteMapX86_PFF2[256];
94
95/** Two byte opcode map with prefix 0xF3 */
96extern const DISOPCODE g_aTwoByteMapX86_PFF3[256];
97
98/** Three byte opcode map (0xF 0x38) */
99extern PCDISOPCODE const g_apThreeByteMapX86_0F38[16];
100
101/** Three byte opcode map with prefix 0x66 (0xF 0x38) */
102extern PCDISOPCODE const g_apThreeByteMapX86_660F38[16];
103
104/** Three byte opcode map with prefix 0xF2 (0xF 0x38) */
105extern PCDISOPCODE const g_apThreeByteMapX86_F20F38[16];
106
107/** Three byte opcode map with prefix 0xF3 (0xF 0x38) */
108extern PCDISOPCODE const g_apThreeByteMapX86_F30F38[16];
109
110/** Three byte opcode map with prefix 0x66 (0xF 0x3A) */
111extern PCDISOPCODE const g_apThreeByteMapX86_660F3A[16];
112/** @} */
113
114/** @name Opcode extensions (Group tables)
115 * @{ */
116extern const DISOPCODE g_aMapX86_Group1[8*4];
117extern const DISOPCODE g_aMapX86_Group2[8*6];
118extern const DISOPCODE g_aMapX86_Group3[8*2];
119extern const DISOPCODE g_aMapX86_Group4[8];
120extern const DISOPCODE g_aMapX86_Group5[8];
121extern const DISOPCODE g_aMapX86_Group6[8];
122extern const DISOPCODE g_aMapX86_Group7_mem[8];
123extern const DISOPCODE g_aMapX86_Group7_mod11_rm000[8];
124extern const DISOPCODE g_aMapX86_Group7_mod11_rm001[8];
125extern const DISOPCODE g_aMapX86_Group8[8];
126extern const DISOPCODE g_aMapX86_Group9[8];
127extern const DISOPCODE g_aMapX86_Group10[8];
128extern const DISOPCODE g_aMapX86_Group11[8*2];
129extern const DISOPCODE g_aMapX86_Group12[8*2];
130extern const DISOPCODE g_aMapX86_Group13[8*2];
131extern const DISOPCODE g_aMapX86_Group14[8*2];
132extern const DISOPCODE g_aMapX86_Group15_mem[8];
133extern const DISOPCODE g_aMapX86_Group15_mod11_rm000[8];
134extern const DISOPCODE g_aMapX86_Group16[8];
135extern const DISOPCODE g_aMapX86_NopPause[2];
136/** @} */
137
138/** 3DNow! map (0x0F 0x0F prefix) */
139extern const DISOPCODE g_aTwoByteMapX86_3DNow[256];
140
141/** Floating point opcodes starting with escape byte 0xDF
142 * @{ */
143extern const DISOPCODE g_aMapX86_EscF0_Low[8];
144extern const DISOPCODE g_aMapX86_EscF0_High[16*4];
145extern const DISOPCODE g_aMapX86_EscF1_Low[8];
146extern const DISOPCODE g_aMapX86_EscF1_High[16*4];
147extern const DISOPCODE g_aMapX86_EscF2_Low[8];
148extern const DISOPCODE g_aMapX86_EscF2_High[16*4];
149extern const DISOPCODE g_aMapX86_EscF3_Low[8];
150extern const DISOPCODE g_aMapX86_EscF3_High[16*4];
151extern const DISOPCODE g_aMapX86_EscF4_Low[8];
152extern const DISOPCODE g_aMapX86_EscF4_High[16*4];
153extern const DISOPCODE g_aMapX86_EscF5_Low[8];
154extern const DISOPCODE g_aMapX86_EscF5_High[16*4];
155extern const DISOPCODE g_aMapX86_EscF6_Low[8];
156extern const DISOPCODE g_aMapX86_EscF6_High[16*4];
157extern const DISOPCODE g_aMapX86_EscF7_Low[8];
158extern const DISOPCODE g_aMapX86_EscF7_High[16*4];
159
160extern const PCDISOPCODE g_apMapX86_FP_Low[8];
161extern const PCDISOPCODE g_apMapX86_FP_High[8];
162/** @} */
163
164/** @def OP
165 * Wrapper which initializes an OPCODE.
166 * We must use this so that we can exclude unused fields in order
167 * to save precious bytes in the GC version.
168 *
169 * @internal
170 */
171#ifndef DIS_CORE_ONLY
172# define OP(pszOpcode, idxParse1, idxParse2, idxParse3, opcode, param1, param2, param3, optype) \
173 { pszOpcode, idxParse1, idxParse2, idxParse3, 0, opcode, param1, param2, param3, optype }
174#else
175# define OP(pszOpcode, idxParse1, idxParse2, idxParse3, opcode, param1, param2, param3, optype) \
176 { idxParse1, idxParse2, idxParse3, 0, opcode, param1, param2, param3, optype }
177#endif
178
179
180size_t disFormatBytes(PCDISSTATE pDis, char *pszDst, size_t cchDst, uint32_t fFlags);
181
182/** @} */
183#endif
184
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette