VirtualBox

source: vbox/trunk/src/VBox/Disassembler/DisasmTables.h@ 13538

Last change on this file since 13538 was 13241, checked in by vboxsync, 16 years ago

Added support for three byte opcodes (not complete; just to test invept & invvpid)

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

© 2023 Oracle
ContactPrivacy policyTerms of Use