1 | /** @file
|
---|
2 | *
|
---|
3 | * VBox disassembler:
|
---|
4 | * Internal header
|
---|
5 | */
|
---|
6 |
|
---|
7 | /*
|
---|
8 | * Copyright (C) 2006-2007 Sun Microsystems, Inc.
|
---|
9 | *
|
---|
10 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
11 | * available from http://www.virtualbox.org. This file is free software;
|
---|
12 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
13 | * General Public License (GPL) as published by the Free Software
|
---|
14 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
15 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
16 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
17 | *
|
---|
18 | * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
19 | * Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
20 | * additional information or have any questions.
|
---|
21 | */
|
---|
22 |
|
---|
23 | #ifndef __DisasmInternal_h__
|
---|
24 | #define __DisasmInternal_h__
|
---|
25 |
|
---|
26 | #include <VBox/cdefs.h>
|
---|
27 | #include <VBox/types.h>
|
---|
28 | #include <VBox/dis.h>
|
---|
29 |
|
---|
30 | #define ExceptionMemRead 0x666
|
---|
31 | #define ExceptionInvalidModRM 0x667
|
---|
32 | #define ExceptionInvalidParameter 0x668
|
---|
33 |
|
---|
34 | #define IDX_ParseNop 0
|
---|
35 | #define IDX_ParseModRM 1
|
---|
36 | #define IDX_UseModRM 2
|
---|
37 | #define IDX_ParseImmByte 3
|
---|
38 | #define IDX_ParseImmBRel 4
|
---|
39 | #define IDX_ParseImmUshort 5
|
---|
40 | #define IDX_ParseImmV 6
|
---|
41 | #define IDX_ParseImmVRel 7
|
---|
42 | #define IDX_ParseImmAddr 8
|
---|
43 | #define IDX_ParseFixedReg 9
|
---|
44 | #define IDX_ParseImmUlong 10
|
---|
45 | #define IDX_ParseImmQword 11
|
---|
46 | #define IDX_ParseTwoByteEsc 12
|
---|
47 | #define IDX_ParseImmGrpl 13
|
---|
48 | #define IDX_ParseShiftGrp2 14
|
---|
49 | #define IDX_ParseGrp3 15
|
---|
50 | #define IDX_ParseGrp4 16
|
---|
51 | #define IDX_ParseGrp5 17
|
---|
52 | #define IDX_Parse3DNow 18
|
---|
53 | #define IDX_ParseGrp6 19
|
---|
54 | #define IDX_ParseGrp7 20
|
---|
55 | #define IDX_ParseGrp8 21
|
---|
56 | #define IDX_ParseGrp9 22
|
---|
57 | #define IDX_ParseGrp10 23
|
---|
58 | #define IDX_ParseGrp12 24
|
---|
59 | #define IDX_ParseGrp13 25
|
---|
60 | #define IDX_ParseGrp14 26
|
---|
61 | #define IDX_ParseGrp15 27
|
---|
62 | #define IDX_ParseGrp16 28
|
---|
63 | #define IDX_ParseModFence 29
|
---|
64 | #define IDX_ParseYv 30
|
---|
65 | #define IDX_ParseYb 31
|
---|
66 | #define IDX_ParseXv 32
|
---|
67 | #define IDX_ParseXb 33
|
---|
68 | #define IDX_ParseEscFP 34
|
---|
69 | #define IDX_ParseNopPause 35
|
---|
70 | #define IDX_ParseImmByteSX 36
|
---|
71 | #define IDX_ParseImmZ 37
|
---|
72 | #define IDX_ParseMax (IDX_ParseImmZ+1)
|
---|
73 |
|
---|
74 | #ifdef IN_RING0
|
---|
75 | #define DIS_THROW(a) /* Not available. */
|
---|
76 | #elif __L4ENV__
|
---|
77 | #define DIS_THROW(a) longjmp(*pCpu->pJumpBuffer, a)
|
---|
78 | #else
|
---|
79 | #define DIS_THROW(a) throw(a)
|
---|
80 | #endif
|
---|
81 |
|
---|
82 |
|
---|
83 | extern PFNDISPARSE pfnFullDisasm[IDX_ParseMax];
|
---|
84 | extern PFNDISPARSE pfnCalcSize[IDX_ParseMax];
|
---|
85 |
|
---|
86 |
|
---|
87 | __BEGIN_DECLS
|
---|
88 |
|
---|
89 | unsigned ParseInstruction(RTUINTPTR pu8CodeBlock, PCOPCODE pOp, PDISCPUSTATE pCpu);
|
---|
90 |
|
---|
91 | unsigned ParseIllegal(RTUINTPTR lpszCodeBlock, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu);
|
---|
92 | unsigned ParseModRM(RTUINTPTR pu8CodeBlock, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu);
|
---|
93 | unsigned ParseModRM_SizeOnly(RTUINTPTR pu8CodeBlock, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu);
|
---|
94 | unsigned UseModRM(RTUINTPTR pu8CodeBlock, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu);
|
---|
95 | unsigned ParseImmByte(RTUINTPTR pu8CodeBlock, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu);
|
---|
96 | unsigned ParseImmByte_SizeOnly(RTUINTPTR pu8CodeBlock, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu);
|
---|
97 | unsigned ParseImmByteSX(RTUINTPTR pu8CodeBlock, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu);
|
---|
98 | unsigned ParseImmByteSX_SizeOnly(RTUINTPTR pu8CodeBlock, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu);
|
---|
99 | unsigned ParseImmBRel(RTUINTPTR pu8CodeBlock, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu);
|
---|
100 | unsigned ParseImmBRel_SizeOnly(RTUINTPTR pu8CodeBlock, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu);
|
---|
101 | unsigned ParseImmUshort(RTUINTPTR pu8CodeBlock, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu);
|
---|
102 | unsigned ParseImmUshort_SizeOnly(RTUINTPTR pu8CodeBlock, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu);
|
---|
103 | unsigned ParseImmV(RTUINTPTR pu8CodeBlock, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu);
|
---|
104 | unsigned ParseImmV_SizeOnly(RTUINTPTR pu8CodeBlock, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu);
|
---|
105 | unsigned ParseImmVRel(RTUINTPTR pu8CodeBlock, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu);
|
---|
106 | unsigned ParseImmVRel_SizeOnly(RTUINTPTR pu8CodeBlock, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu);
|
---|
107 | unsigned ParseImmZ(RTUINTPTR pu8CodeBlock, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu);
|
---|
108 | unsigned ParseImmZ_SizeOnly(RTUINTPTR pu8CodeBlock, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu);
|
---|
109 |
|
---|
110 | unsigned ParseImmAddr(RTUINTPTR pu8CodeBlock, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu);
|
---|
111 | unsigned ParseImmAddr_SizeOnly(RTUINTPTR pu8CodeBlock, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu);
|
---|
112 | unsigned ParseFixedReg(RTUINTPTR pu8CodeBlock, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu);
|
---|
113 | unsigned ParseImmUlong(RTUINTPTR pu8CodeBlock, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu);
|
---|
114 | unsigned ParseImmUlong_SizeOnly(RTUINTPTR pu8CodeBlock, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu);
|
---|
115 | unsigned ParseImmQword(RTUINTPTR pu8CodeBlock, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu);
|
---|
116 | unsigned ParseImmQword_SizeOnly(RTUINTPTR pu8CodeBlock, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu);
|
---|
117 |
|
---|
118 | unsigned ParseTwoByteEsc(RTUINTPTR pu8CodeBlock, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu);
|
---|
119 | unsigned ParseImmGrpl(RTUINTPTR pu8CodeBlock, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu);
|
---|
120 | unsigned ParseShiftGrp2(RTUINTPTR pu8CodeBlock, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu);
|
---|
121 | unsigned ParseGrp3(RTUINTPTR pu8CodeBlock, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu);
|
---|
122 | unsigned ParseGrp4(RTUINTPTR pu8CodeBlock, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu);
|
---|
123 | unsigned ParseGrp5(RTUINTPTR pu8CodeBlock, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu);
|
---|
124 | unsigned Parse3DNow(RTUINTPTR pu8CodeBlock, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu);
|
---|
125 | unsigned ParseGrp6(RTUINTPTR pu8CodeBlock, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu);
|
---|
126 | unsigned ParseGrp7(RTUINTPTR pu8CodeBlock, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu);
|
---|
127 | unsigned ParseGrp8(RTUINTPTR pu8CodeBlock, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu);
|
---|
128 | unsigned ParseGrp9(RTUINTPTR pu8CodeBlock, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu);
|
---|
129 | unsigned ParseGrp10(RTUINTPTR pu8CodeBlock, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu);
|
---|
130 | unsigned ParseGrp12(RTUINTPTR pu8CodeBlock, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu);
|
---|
131 | unsigned ParseGrp13(RTUINTPTR pu8CodeBlock, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu);
|
---|
132 | unsigned ParseGrp14(RTUINTPTR pu8CodeBlock, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu);
|
---|
133 | unsigned ParseGrp15(RTUINTPTR pu8CodeBlock, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu);
|
---|
134 | unsigned ParseGrp16(RTUINTPTR pu8CodeBlock, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu);
|
---|
135 | unsigned ParseModFence(RTUINTPTR pu8CodeBlock, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu);
|
---|
136 | unsigned ParseNopPause(RTUINTPTR pu8CodeBlock, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu);
|
---|
137 |
|
---|
138 | unsigned ParseYv(RTUINTPTR pu8CodeBlock, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu);
|
---|
139 | unsigned ParseYb(RTUINTPTR pu8CodeBlock, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu);
|
---|
140 | unsigned ParseXv(RTUINTPTR pu8CodeBlock, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu);
|
---|
141 | unsigned ParseXb(RTUINTPTR pu8CodeBlock, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu);
|
---|
142 |
|
---|
143 | /* Floating point parsing */
|
---|
144 | unsigned ParseEscFP(RTUINTPTR pu8CodeBlock, PCOPCODE pOp, POP_PARAMETER pParam, PDISCPUSTATE pCpu);
|
---|
145 |
|
---|
146 | void disValidateLockSequence(PDISCPUSTATE pCpu);
|
---|
147 |
|
---|
148 | /* Disassembler printf */
|
---|
149 | void disasmSprintf(char *pszOutput, RTUINTPTR pu8Instruction, PDISCPUSTATE pCpu, POP_PARAMETER pParam1, POP_PARAMETER pParam2, POP_PARAMETER pParam3 = NULL);
|
---|
150 | void disasmGetPtrString(PDISCPUSTATE pCpu, PCOPCODE pOp, POP_PARAMETER pParam);
|
---|
151 | void disasmModRMReg(PDISCPUSTATE pCpu, PCOPCODE pOp, int idx, POP_PARAMETER pParam, int fRegAddr);
|
---|
152 | void disasmModRMReg16(PDISCPUSTATE pCpu, PCOPCODE pOp, int idx, POP_PARAMETER pParam);
|
---|
153 | void disasmModRMSReg(PDISCPUSTATE pCpu, PCOPCODE pOp, int idx, POP_PARAMETER pParam);
|
---|
154 | void disasmPrintAbs32(POP_PARAMETER pParam);
|
---|
155 | void disasmPrintDisp32(POP_PARAMETER pParam);
|
---|
156 | void disasmPrintDisp8(POP_PARAMETER pParam);
|
---|
157 | void disasmPrintDisp16(POP_PARAMETER pParam);
|
---|
158 |
|
---|
159 |
|
---|
160 | #ifdef IN_GC
|
---|
161 | #define DISReadByte(pCpu, pAddress) (*(uint8_t *)(pAddress))
|
---|
162 | #define DISReadWord(pCpu, pAddress) (*(uint16_t *)(pAddress))
|
---|
163 | #define DISReadDWord(pCpu, pAddress) (*(uint32_t *)(pAddress))
|
---|
164 | #define DISReadQWord(pCpu, pAddress) (*(uint64_t *)(pAddress))
|
---|
165 | #else
|
---|
166 | /* Read functions */
|
---|
167 | uint8_t DISReadByte(PDISCPUSTATE pCpu, RTUINTPTR pAddress);
|
---|
168 | uint16_t DISReadWord(PDISCPUSTATE pCpu, RTUINTPTR pAddress);
|
---|
169 | uint32_t DISReadDWord(PDISCPUSTATE pCpu, RTUINTPTR pAddress);
|
---|
170 | uint64_t DISReadQWord(PDISCPUSTATE pCpu, RTUINTPTR pAddress);
|
---|
171 | #endif
|
---|
172 |
|
---|
173 | __END_DECLS
|
---|
174 |
|
---|
175 | #endif /* !__DisasmInternal_h__ */
|
---|
176 |
|
---|