VirtualBox

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

Last change on this file since 2870 was 2124, checked in by vboxsync, 18 years ago

TRPM changes to assert and report trap/interrupt types accurately.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 3.6 KB
Line 
1; $Id: TRPMInternal.mac 2124 2007-04-17 12:25:17Z 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 .enmActiveType resd 1
38 .uActiveErrorCode resd 1
39 .uActiveCR2 resd 1
40 .uSavedVector resd 1
41 .enmSavedType 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 .StatGCWriteGuestIDTFault resb STAMCOUNTER_size
58 .StatGCWriteGuestIDTHandled resb STAMCOUNTER_size
59 .StatSyncIDT resb STAMPROFILE_size
60 .aStatGCTraps resb STAMPROFILEADV_size * 0x14
61
62 .StatForwardFailNoHandler resb STAMCOUNTER_size
63 .StatForwardFailPatchAddr resb STAMCOUNTER_size
64 .StatForwardFailGC resb STAMCOUNTER_size
65 .StatForwardFailHC resb STAMCOUNTER_size
66
67 .StatForwardProfGC resb STAMPROFILEADV_size
68 .StatForwardProfHC resb STAMPROFILEADV_size
69 .StatTrap0dDisasm resb STAMPROFILEADV_size
70
71 .paStatForwardedIRQR3 RTR3PTR_RES 1
72 .paStatForwardedIRQR0 RTR0PTR_RES 1
73 .paStatForwardedIRQGC RTGCPTR_RES 1
74endstruc
75
76struc VBOXTSS
77 .selPrev resw 1
78 .padding1 resw 1
79 .esp0 resd 1
80 .ss0 resw 1
81 .padding_ss0 resw 1
82 .esp1 resd 1
83 .ss1 resw 1
84 .padding_ss1 resw 1
85 .esp2 resd 1
86 .ss2 resw 1
87 .padding_ss2 resw 1
88 .cr3 resd 1
89 .eip resd 1
90 .eflags resd 1
91 .eax resd 1
92 .ecx resd 1
93 .edx resd 1
94 .ebx resd 1
95 .esp resd 1
96 .ebp resd 1
97 .esi resd 1
98 .edi resd 1
99 .es resw 1
100 .padding_es resw 1
101 .cs resw 1
102 .padding_cs resw 1
103 .ss resw 1
104 .padding_ss resw 1
105 .ds resw 1
106 .padding_ds resw 1
107 .fs resw 1
108 .padding_fs resw 1
109 .gs resw 1
110 .padding_gs resw 1
111 .selLdt resw 1
112 .padding_ldt resw 1
113 .fDebugTrap resw 1
114 .offIoBitmap resw 1
115 .IntRedirBitmap resb 32
116endstruc
117
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