VirtualBox

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

Last change on this file since 25414 was 19286, checked in by vboxsync, 15 years ago

VMM,VBoxDbg: SMP refactoring, part 1.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 3.9 KB
Line 
1; $Id: TRPMInternal.mac 19286 2009-05-01 12:41:07Z vboxsync $
2;; @file
3; TRPM - Internal header file.
4;
5
6;
7; Copyright (C) 2006-2007 Sun Microsystems, Inc.
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; Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
18; Clara, CA 95054 USA or visit http://www.sun.com if you need
19; additional information or have any questions.
20;
21
22%include "VBox/asmdefs.mac"
23%include "VBox/stam.mac"
24
25%define TRPM_TRAP_IN_OP_MASK 0xffff
26%define TRPM_TRAP_IN_MOV_GS 1
27%define TRPM_TRAP_IN_MOV_FS 2
28%define TRPM_TRAP_IN_MOV_ES 3
29%define TRPM_TRAP_IN_MOV_DS 4
30%define TRPM_TRAP_IN_IRET 5
31%define TRPM_TRAP_IN_V86 RT_BIT(30)
32%define TRPM_TRAP_IN_HYPER RT_BIT(31)
33
34struc TRPM
35 .offVM resd 1
36 .offTRPMCPU resd 1
37 .fDisableMonitoring resb 1
38 .fSafeToDropGuestIDTMonitoring resb 1
39 .abPadding1 resb 6
40 .aIdt resd 512
41 .au32IdtPatched resd 8
42 .aTmpTrapHandlers RTRCPTR_RES 256
43
44 .pvMonShwIdtRC RTRCPTR_RES 1
45 .GuestIdtr resb 10
46 .au8Padding resb 2
47
48 .aGuestTrapHandler RTRCPTR_RES 256
49
50 .StatRCWriteGuestIDTFault resb STAMCOUNTER_size
51 .StatRCWriteGuestIDTHandled resb STAMCOUNTER_size
52 .StatSyncIDT resb STAMPROFILE_size
53 .aStatGCTraps resb STAMPROFILEADV_size * 0x14
54
55 .StatForwardProfR3 resb STAMPROFILEADV_size
56 .StatForwardProfRZ resb STAMPROFILEADV_size
57 .StatForwardFailNoHandler resb STAMCOUNTER_size
58 .StatForwardFailPatchAddr resb STAMCOUNTER_size
59 .StatForwardFailR3 resb STAMCOUNTER_size
60 .StatForwardFailRZ resb STAMCOUNTER_size
61
62 .StatTrap0dDisasm resb STAMPROFILE_size
63 .StatTrap0dRdTsc resb STAMCOUNTER_size
64
65%ifdef VBOX_WITH_STATISTICS
66 .paStatForwardedIRQR3 RTR3PTR_RES 1
67 .paStatForwardedIRQR0 RTR0PTR_RES 1
68 .paStatForwardedIRQRC RTRCPTR_RES 1
69%endif
70endstruc
71
72struc TRPMCPU
73 .offVM resd 1
74 .offVMCpu resd 1
75 .uActiveVector resd 1
76 .enmActiveType resd 1
77 .uActiveErrorCode RTGCPTR_RES 1
78 .uActiveCR2 RTGCPTR_RES 1
79 .uSavedVector RTGCPTR_RES 1
80 .enmSavedType resd 1
81 .uSavedErrorCode RTGCPTR_RES 1
82 .uSavedCR2 RTGCPTR_RES 1
83 .uPrevVector RTGCPTR_RES 1
84endstruc
85
86struc VBOXTSS
87 .selPrev resw 1
88 .padding1 resw 1
89 .esp0 resd 1
90 .ss0 resw 1
91 .padding_ss0 resw 1
92 .esp1 resd 1
93 .ss1 resw 1
94 .padding_ss1 resw 1
95 .esp2 resd 1
96 .ss2 resw 1
97 .padding_ss2 resw 1
98 .cr3 resd 1
99 .eip resd 1
100 .eflags resd 1
101 .eax resd 1
102 .ecx resd 1
103 .edx resd 1
104 .ebx resd 1
105 .esp resd 1
106 .ebp resd 1
107 .esi resd 1
108 .edi resd 1
109 .es resw 1
110 .padding_es resw 1
111 .cs resw 1
112 .padding_cs resw 1
113 .ss resw 1
114 .padding_ss resw 1
115 .ds resw 1
116 .padding_ds resw 1
117 .fs resw 1
118 .padding_fs resw 1
119 .gs resw 1
120 .padding_gs resw 1
121 .selLdt resw 1
122 .padding_ldt resw 1
123 .fDebugTrap resw 1
124 .offIoBitmap resw 1
125 .IntRedirBitmap resb 32
126endstruc
127
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use