1 | /* $Id: DisasmInternal.h 76566 2019-01-01 04:24:32Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VBox disassembler - Internal header.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2019 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 VBOX_INCLUDED_SRC_DisasmInternal_h
|
---|
19 | #define VBOX_INCLUDED_SRC_DisasmInternal_h
|
---|
20 | #ifndef RT_WITHOUT_PRAGMA_ONCE
|
---|
21 | # pragma once
|
---|
22 | #endif
|
---|
23 |
|
---|
24 | #include <VBox/types.h>
|
---|
25 | #include <VBox/dis.h>
|
---|
26 |
|
---|
27 |
|
---|
28 | /** @defgroup grp_dis_int Internals.
|
---|
29 | * @ingroup grp_dis
|
---|
30 | * @{
|
---|
31 | */
|
---|
32 |
|
---|
33 | /** @name Index into g_apfnCalcSize and g_apfnFullDisasm.
|
---|
34 | * @{ */
|
---|
35 | enum IDX_Parse
|
---|
36 | {
|
---|
37 | IDX_ParseNop = 0,
|
---|
38 | IDX_ParseModRM,
|
---|
39 | IDX_UseModRM,
|
---|
40 | IDX_ParseImmByte,
|
---|
41 | IDX_ParseImmBRel,
|
---|
42 | IDX_ParseImmUshort,
|
---|
43 | IDX_ParseImmV,
|
---|
44 | IDX_ParseImmVRel,
|
---|
45 | IDX_ParseImmAddr,
|
---|
46 | IDX_ParseFixedReg,
|
---|
47 | IDX_ParseImmUlong,
|
---|
48 | IDX_ParseImmQword,
|
---|
49 | IDX_ParseTwoByteEsc,
|
---|
50 | IDX_ParseGrp1,
|
---|
51 | IDX_ParseShiftGrp2,
|
---|
52 | IDX_ParseGrp3,
|
---|
53 | IDX_ParseGrp4,
|
---|
54 | IDX_ParseGrp5,
|
---|
55 | IDX_Parse3DNow,
|
---|
56 | IDX_ParseGrp6,
|
---|
57 | IDX_ParseGrp7,
|
---|
58 | IDX_ParseGrp8,
|
---|
59 | IDX_ParseGrp9,
|
---|
60 | IDX_ParseGrp10,
|
---|
61 | IDX_ParseGrp12,
|
---|
62 | IDX_ParseGrp13,
|
---|
63 | IDX_ParseGrp14,
|
---|
64 | IDX_ParseGrp15,
|
---|
65 | IDX_ParseGrp16,
|
---|
66 | IDX_ParseModFence,
|
---|
67 | IDX_ParseYv,
|
---|
68 | IDX_ParseYb,
|
---|
69 | IDX_ParseXv,
|
---|
70 | IDX_ParseXb,
|
---|
71 | IDX_ParseEscFP,
|
---|
72 | IDX_ParseNopPause,
|
---|
73 | IDX_ParseImmByteSX,
|
---|
74 | IDX_ParseImmZ,
|
---|
75 | IDX_ParseThreeByteEsc4,
|
---|
76 | IDX_ParseThreeByteEsc5,
|
---|
77 | IDX_ParseImmAddrF,
|
---|
78 | IDX_ParseInvOpModRM,
|
---|
79 | IDX_ParseVex2b,
|
---|
80 | IDX_ParseVex3b,
|
---|
81 | IDX_ParseVexDest,
|
---|
82 | IDX_ParseMax
|
---|
83 | };
|
---|
84 | /** @} */
|
---|
85 |
|
---|
86 |
|
---|
87 | /** @name Opcode maps.
|
---|
88 | * @{ */
|
---|
89 | extern const DISOPCODE g_InvalidOpcode[1];
|
---|
90 |
|
---|
91 | extern const DISOPCODE g_aOneByteMapX86[256];
|
---|
92 | extern const DISOPCODE g_aOneByteMapX64[256];
|
---|
93 | extern const DISOPCODE g_aTwoByteMapX86[256];
|
---|
94 |
|
---|
95 | /** Two byte opcode map with prefix 0x66 */
|
---|
96 | extern const DISOPCODE g_aTwoByteMapX86_PF66[256];
|
---|
97 |
|
---|
98 | /** Two byte opcode map with prefix 0xF2 */
|
---|
99 | extern const DISOPCODE g_aTwoByteMapX86_PFF2[256];
|
---|
100 |
|
---|
101 | /** Two byte opcode map with prefix 0xF3 */
|
---|
102 | extern const DISOPCODE g_aTwoByteMapX86_PFF3[256];
|
---|
103 |
|
---|
104 | /** Three byte opcode map (0xF 0x38) */
|
---|
105 | extern PCDISOPCODE const g_apThreeByteMapX86_0F38[16];
|
---|
106 |
|
---|
107 | /** Three byte opcode map with prefix 0x66 (0xF 0x38) */
|
---|
108 | extern PCDISOPCODE const g_apThreeByteMapX86_660F38[16];
|
---|
109 |
|
---|
110 | /** Three byte opcode map with prefix 0xF2 (0xF 0x38) */
|
---|
111 | extern PCDISOPCODE const g_apThreeByteMapX86_F20F38[16];
|
---|
112 |
|
---|
113 | /** Three byte opcode map with prefix 0xF3 (0xF 0x38) */
|
---|
114 | extern PCDISOPCODE const g_apThreeByteMapX86_F30F38[16];
|
---|
115 |
|
---|
116 | extern PCDISOPCODE const g_apThreeByteMapX86_0F3A[16];
|
---|
117 |
|
---|
118 | /** Three byte opcode map with prefix 0x66 (0xF 0x3A) */
|
---|
119 | extern PCDISOPCODE const g_apThreeByteMapX86_660F3A[16];
|
---|
120 |
|
---|
121 | /** Three byte opcode map with prefixes 0x66 0xF2 (0xF 0x38) */
|
---|
122 | extern PCDISOPCODE const g_apThreeByteMapX86_66F20F38[16];
|
---|
123 |
|
---|
124 | /** VEX opcodes table defined by [VEX.m-mmmm - 1].
|
---|
125 | * 0Fh, 0F38h, 0F3Ah correspondingly, VEX.pp = 00b */
|
---|
126 | extern PCDISOPCODE const g_aVexOpcodesMap[3];
|
---|
127 |
|
---|
128 | /** VEX opcodes table defined by [VEX.m-mmmm - 1].
|
---|
129 | * 0Fh, 0F38h, 0F3Ah correspondingly, VEX.pp = 01b (66h) */
|
---|
130 | extern PCDISOPCODE const g_aVexOpcodesMap_66H[3];
|
---|
131 |
|
---|
132 | /** 0Fh, 0F38h, 0F3Ah correspondingly, VEX.pp = 10b (F3h) */
|
---|
133 | extern PCDISOPCODE const g_aVexOpcodesMap_F3H[3];
|
---|
134 |
|
---|
135 | /** 0Fh, 0F38h, 0F3Ah correspondingly, VEX.pp = 11b (F2h) */
|
---|
136 | extern PCDISOPCODE const g_aVexOpcodesMap_F2H[3];
|
---|
137 | /** @} */
|
---|
138 |
|
---|
139 | /** @name Opcode extensions (Group tables)
|
---|
140 | * @{ */
|
---|
141 | extern const DISOPCODE g_aMapX86_Group1[8*4];
|
---|
142 | extern const DISOPCODE g_aMapX86_Group2[8*6];
|
---|
143 | extern const DISOPCODE g_aMapX86_Group3[8*2];
|
---|
144 | extern const DISOPCODE g_aMapX86_Group4[8];
|
---|
145 | extern const DISOPCODE g_aMapX86_Group5[8];
|
---|
146 | extern const DISOPCODE g_aMapX86_Group6[8];
|
---|
147 | extern const DISOPCODE g_aMapX86_Group7_mem[8];
|
---|
148 | extern const DISOPCODE g_aMapX86_Group7_mod11_rm000[8];
|
---|
149 | extern const DISOPCODE g_aMapX86_Group7_mod11_rm001[8];
|
---|
150 | extern const DISOPCODE g_aMapX86_Group8[8];
|
---|
151 | extern const DISOPCODE g_aMapX86_Group9[8];
|
---|
152 | extern const DISOPCODE g_aMapX86_Group10[8];
|
---|
153 | extern const DISOPCODE g_aMapX86_Group11[8*2];
|
---|
154 | extern const DISOPCODE g_aMapX86_Group12[8*2];
|
---|
155 | extern const DISOPCODE g_aMapX86_Group13[8*2];
|
---|
156 | extern const DISOPCODE g_aMapX86_Group14[8*2];
|
---|
157 | extern const DISOPCODE g_aMapX86_Group15_mem[8];
|
---|
158 | extern const DISOPCODE g_aMapX86_Group15_mod11_rm000[8];
|
---|
159 | extern const DISOPCODE g_aMapX86_Group16[8];
|
---|
160 | extern const DISOPCODE g_aMapX86_NopPause[2];
|
---|
161 | /** @} */
|
---|
162 |
|
---|
163 | /** 3DNow! map (0x0F 0x0F prefix) */
|
---|
164 | extern const DISOPCODE g_aTwoByteMapX86_3DNow[256];
|
---|
165 |
|
---|
166 | /** Floating point opcodes starting with escape byte 0xDF
|
---|
167 | * @{ */
|
---|
168 | extern const DISOPCODE g_aMapX86_EscF0_Low[8];
|
---|
169 | extern const DISOPCODE g_aMapX86_EscF0_High[16*4];
|
---|
170 | extern const DISOPCODE g_aMapX86_EscF1_Low[8];
|
---|
171 | extern const DISOPCODE g_aMapX86_EscF1_High[16*4];
|
---|
172 | extern const DISOPCODE g_aMapX86_EscF2_Low[8];
|
---|
173 | extern const DISOPCODE g_aMapX86_EscF2_High[16*4];
|
---|
174 | extern const DISOPCODE g_aMapX86_EscF3_Low[8];
|
---|
175 | extern const DISOPCODE g_aMapX86_EscF3_High[16*4];
|
---|
176 | extern const DISOPCODE g_aMapX86_EscF4_Low[8];
|
---|
177 | extern const DISOPCODE g_aMapX86_EscF4_High[16*4];
|
---|
178 | extern const DISOPCODE g_aMapX86_EscF5_Low[8];
|
---|
179 | extern const DISOPCODE g_aMapX86_EscF5_High[16*4];
|
---|
180 | extern const DISOPCODE g_aMapX86_EscF6_Low[8];
|
---|
181 | extern const DISOPCODE g_aMapX86_EscF6_High[16*4];
|
---|
182 | extern const DISOPCODE g_aMapX86_EscF7_Low[8];
|
---|
183 | extern const DISOPCODE g_aMapX86_EscF7_High[16*4];
|
---|
184 |
|
---|
185 | extern const PCDISOPCODE g_apMapX86_FP_Low[8];
|
---|
186 | extern const PCDISOPCODE g_apMapX86_FP_High[8];
|
---|
187 | /** @} */
|
---|
188 |
|
---|
189 | /** @def OP
|
---|
190 | * Wrapper which initializes an DISOPCODE.
|
---|
191 | * We must use this so that we can exclude unused fields in order
|
---|
192 | * to save precious bytes in the GC version.
|
---|
193 | *
|
---|
194 | * @internal
|
---|
195 | */
|
---|
196 | #ifndef DIS_CORE_ONLY
|
---|
197 | # define OP(pszOpcode, idxParse1, idxParse2, idxParse3, opcode, param1, param2, param3, optype) \
|
---|
198 | { pszOpcode, idxParse1, idxParse2, idxParse3, 0, opcode, param1, param2, param3, 0, 0, optype }
|
---|
199 | # define OPVEX(pszOpcode, idxParse1, idxParse2, idxParse3, idxParse4, opcode, param1, param2, param3, param4, optype) \
|
---|
200 | { pszOpcode, idxParse1, idxParse2, idxParse3, idxParse4, opcode, param1, param2, param3, param4, 0, optype | DISOPTYPE_SSE }
|
---|
201 | #else
|
---|
202 | # define OP(pszOpcode, idxParse1, idxParse2, idxParse3, opcode, param1, param2, param3, optype) \
|
---|
203 | { idxParse1, idxParse2, idxParse3, 0, opcode, param1, param2, param3, 0, 0, optype }
|
---|
204 | # define OPVEX(pszOpcode, idxParse1, idxParse2, idxParse3, idxParse4, opcode, param1, param2, param3, param4, optype) \
|
---|
205 | { idxParse1, idxParse2, idxParse3, idxParse4, opcode, param1, param2, param3, param4, 0, optype | DISOPTYPE_SSE}
|
---|
206 | #endif
|
---|
207 |
|
---|
208 |
|
---|
209 | size_t disFormatBytes(PCDISSTATE pDis, char *pszDst, size_t cchDst, uint32_t fFlags);
|
---|
210 |
|
---|
211 | /** @} */
|
---|
212 | #endif /* !VBOX_INCLUDED_SRC_DisasmInternal_h */
|
---|
213 |
|
---|