VirtualBox

source: vbox/trunk/src/VBox/VMM/TRPMInternal.mac@ 1272

Last change on this file since 1272 was 716, checked in by vboxsync, 18 years ago

More stats

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 3.5 KB
Line 
1; $Id: TRPMInternal.mac 716 2007-02-06 15:56:35Z vboxsync $
2;; @file
3; TRPM - Internal header file.
4;
5
6;
7; Copyright (C) 2006 InnoTek Systemberatung GmbH
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 as published by the Free Software Foundation,
13; in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
14; distribution. VirtualBox OSE is distributed in the hope that it will
15; be useful, but WITHOUT ANY WARRANTY of any kind.
16;
17; If you received this file as part of a commercial VirtualBox
18; distribution, then only the terms of your commercial VirtualBox
19; license agreement apply instead of the previous paragraph.
20;
21
22%include "VBox/stam.mac"
23
24%define TRPM_TRAP_IN_OP_MASK 0xffff
25%define TRPM_TRAP_IN_MOV_GS 1
26%define TRPM_TRAP_IN_MOV_FS 2
27%define TRPM_TRAP_IN_MOV_ES 3
28%define TRPM_TRAP_IN_MOV_DS 4
29%define TRPM_TRAP_IN_IRET 5
30%define TRPM_TRAP_IN_V86 BIT(30)
31%define TRPM_TRAP_IN_HYPER BIT(31)
32
33
34struc TRPM
35 .offVM resd 1
36 .uActiveVector resd 1
37 .fActiveSoftwareInterrupt resd 1
38 .uActiveErrorCode resd 1
39 .uActiveCR2 resd 1
40 .uSavedVector resd 1
41 .fSavedSoftwareInterrupt resd 1
42 .uSavedErrorCode resd 1
43 .uSavedCR2 resd 1
44 .uPrevVector resd 1
45 .fDisableMonitoring resd 1
46 .achPadding1 resb 4
47 .aIdt resd 512
48 .au32IdtPatched resd 8
49 .aTmpTrapHandlers resd 256
50
51 .GCPtrIdt resd 1
52 .GuestIdtr resb 6
53 .au8Padding resb 2
54
55 .aGuestTrapHandler resd 256
56
57 .StatGCWriteGuestIDT resb STAMCOUNTER_size
58 .StatSyncIDT resb STAMPROFILE_size
59 .aStatGCTraps resb STAMPROFILEADV_size * 0x14
60
61 .StatForwardFailNoHandler resb STAMCOUNTER_size
62 .StatForwardFailPatchAddr resb STAMCOUNTER_size
63 .StatForwardFailGC resb STAMCOUNTER_size
64 .StatForwardFailHC resb STAMCOUNTER_size
65
66 .StatForwardProfGC resb STAMPROFILEADV_size
67 .StatForwardProfHC resb STAMPROFILEADV_size
68 .StatTrap0dDisasm resb STAMPROFILEADV_size
69
70 .paStatForwardedIRQR3 RTR3PTR_RES 1
71 .paStatForwardedIRQR0 RTR0PTR_RES 1
72 .paStatForwardedIRQGC RTGCPTR_RES 1
73endstruc
74
75struc VBOXTSS
76 .selPrev resw 1
77 .padding1 resw 1
78 .esp0 resd 1
79 .ss0 resw 1
80 .padding_ss0 resw 1
81 .esp1 resd 1
82 .ss1 resw 1
83 .padding_ss1 resw 1
84 .esp2 resd 1
85 .ss2 resw 1
86 .padding_ss2 resw 1
87 .cr3 resd 1
88 .eip resd 1
89 .eflags resd 1
90 .eax resd 1
91 .ecx resd 1
92 .edx resd 1
93 .ebx resd 1
94 .esp resd 1
95 .ebp resd 1
96 .esi resd 1
97 .edi resd 1
98 .es resw 1
99 .padding_es resw 1
100 .cs resw 1
101 .padding_cs resw 1
102 .ss resw 1
103 .padding_ss resw 1
104 .ds resw 1
105 .padding_ds resw 1
106 .fs resw 1
107 .padding_fs resw 1
108 .gs resw 1
109 .padding_gs resw 1
110 .selLdt resw 1
111 .padding_ldt resw 1
112 .fDebugTrap resw 1
113 .offIoBitmap resw 1
114endstruc
115
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