1 | /** @file
|
---|
2 | *
|
---|
3 | * VBox disassembler:
|
---|
4 | * Tables.header
|
---|
5 | */
|
---|
6 |
|
---|
7 | /*
|
---|
8 | * Copyright (C) 2006-2007 Oracle Corporation
|
---|
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 |
|
---|
19 | #ifndef __disasmtable_h__
|
---|
20 | #define __disasmtable_h__
|
---|
21 |
|
---|
22 | #include <VBox/dis.h>
|
---|
23 |
|
---|
24 | extern const OPCODE g_InvalidOpcode[1];
|
---|
25 |
|
---|
26 | extern const OPCODE g_aOneByteMapX86[256];
|
---|
27 | extern const OPCODE g_aOneByteMapX64[256];
|
---|
28 | extern const OPCODE g_aTwoByteMapX86[256];
|
---|
29 |
|
---|
30 | /** Two byte opcode map with prefix 0x66 */
|
---|
31 | extern const OPCODE g_aTwoByteMapX86_PF66[256];
|
---|
32 |
|
---|
33 | /** Two byte opcode map with prefix 0xF2 */
|
---|
34 | extern const OPCODE g_aTwoByteMapX86_PFF2[256];
|
---|
35 |
|
---|
36 | /** Two byte opcode map with prefix 0xF3 */
|
---|
37 | extern const OPCODE g_aTwoByteMapX86_PFF3[256];
|
---|
38 |
|
---|
39 | /** Three byte opcode map (0xF 0x38) */
|
---|
40 | extern const OPCODE *g_apThreeByteMapX86_0F38[16];
|
---|
41 |
|
---|
42 | /** Three byte opcode map with prefix 0x66 (0xF 0x38) */
|
---|
43 | extern const OPCODE *g_apThreeByteMapX86_660F38[16];
|
---|
44 |
|
---|
45 | /** Three byte opcode map with prefix 0xF2 (0xF 0x38) */
|
---|
46 | extern const OPCODE *g_apThreeByteMapX86_F20F38[16];
|
---|
47 |
|
---|
48 | /** Three byte opcode map with prefix 0x66 (0xF 0x3A) */
|
---|
49 | extern const OPCODE *g_apThreeByteMapX86_660F3A[16];
|
---|
50 |
|
---|
51 | /** Opcode extensions (Group tables)
|
---|
52 | * @{ */
|
---|
53 | extern const OPCODE g_aMapX86_Group1[8*4];
|
---|
54 | extern const OPCODE g_aMapX86_Group2[8*6];
|
---|
55 | extern const OPCODE g_aMapX86_Group3[8*2];
|
---|
56 | extern const OPCODE g_aMapX86_Group4[8];
|
---|
57 | extern const OPCODE g_aMapX86_Group5[8];
|
---|
58 | extern const OPCODE g_aMapX86_Group6[8];
|
---|
59 | extern const OPCODE g_aMapX86_Group7_mem[8];
|
---|
60 | extern const OPCODE g_aMapX86_Group7_mod11_rm000[8];
|
---|
61 | extern const OPCODE g_aMapX86_Group7_mod11_rm001[8];
|
---|
62 | extern const OPCODE g_aMapX86_Group8[8];
|
---|
63 | extern const OPCODE g_aMapX86_Group9[8];
|
---|
64 | extern const OPCODE g_aMapX86_Group10[8];
|
---|
65 | extern const OPCODE g_aMapX86_Group11[8*2];
|
---|
66 | extern const OPCODE g_aMapX86_Group12[8*2];
|
---|
67 | extern const OPCODE g_aMapX86_Group13[8*2];
|
---|
68 | extern const OPCODE g_aMapX86_Group14[8*2];
|
---|
69 | extern const OPCODE g_aMapX86_Group15_mem[8];
|
---|
70 | extern const OPCODE g_aMapX86_Group15_mod11_rm000[8];
|
---|
71 | extern const OPCODE g_aMapX86_Group16[8];
|
---|
72 | extern const OPCODE g_aMapX86_NopPause[2];
|
---|
73 | /** @} */
|
---|
74 |
|
---|
75 | /** 3DNow! map (0x0F 0x0F prefix) */
|
---|
76 | extern const OPCODE g_aTwoByteMapX86_3DNow[256];
|
---|
77 |
|
---|
78 | /** Floating point opcodes starting with escape byte 0xDF
|
---|
79 | * @{ */
|
---|
80 | extern const OPCODE g_aMapX86_EscF0_Low[8];
|
---|
81 | extern const OPCODE g_aMapX86_EscF0_High[16*4];
|
---|
82 | extern const OPCODE g_aMapX86_EscF1_Low[8];
|
---|
83 | extern const OPCODE g_aMapX86_EscF1_High[16*4];
|
---|
84 | extern const OPCODE g_aMapX86_EscF2_Low[8];
|
---|
85 | extern const OPCODE g_aMapX86_EscF2_High[16*4];
|
---|
86 | extern const OPCODE g_aMapX86_EscF3_Low[8];
|
---|
87 | extern const OPCODE g_aMapX86_EscF3_High[16*4];
|
---|
88 | extern const OPCODE g_aMapX86_EscF4_Low[8];
|
---|
89 | extern const OPCODE g_aMapX86_EscF4_High[16*4];
|
---|
90 | extern const OPCODE g_aMapX86_EscF5_Low[8];
|
---|
91 | extern const OPCODE g_aMapX86_EscF5_High[16*4];
|
---|
92 | extern const OPCODE g_aMapX86_EscF6_Low[8];
|
---|
93 | extern const OPCODE g_aMapX86_EscF6_High[16*4];
|
---|
94 | extern const OPCODE g_aMapX86_EscF7_Low[8];
|
---|
95 | extern const OPCODE g_aMapX86_EscF7_High[16*4];
|
---|
96 |
|
---|
97 | extern PCOPCODE g_paMapX86_FP_Low[8];
|
---|
98 | extern PCOPCODE g_paMapX86_FP_High[8];
|
---|
99 | /** @} */
|
---|
100 |
|
---|
101 | #endif /* !__disasmtable_h__ */
|
---|
102 |
|
---|