VirtualBox

source: vbox/trunk/src/VBox/VMM/include/VMMInternal.mac@ 77807

Last change on this file since 77807 was 76553, checked in by vboxsync, 6 years ago

scm --update-copyright-year

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 3.8 KB
Line 
1; $Id: VMMInternal.mac 76553 2019-01-01 01:45:53Z vboxsync $
2;; @file
3; VMM - Internal header file.
4;
5
6;
7; Copyright (C) 2006-2019 Oracle Corporation
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
18%include "VBox/asmdefs.mac"
19%include "VBox/sup.mac"
20
21;
22; Determine the default stack switching unless specified explicitly.
23;
24%ifndef VMM_R0_SWITCH_STACK
25 %ifndef VMM_R0_NO_SWITCH_STACK
26 %ifdef RT_OS_DARWIN
27 %define VMM_R0_SWITCH_STACK
28 %endif
29 %endif
30%endif
31
32
33struc VMMR0JMPBUF
34%ifdef RT_ARCH_X86
35 ; traditional jmp_buf
36 .ebx resd 1
37 .esi resd 1
38 .edi resd 1
39 .ebp resd 1
40 .esp resd 1
41 .eip resd 1
42 .eflags resd 1
43
44 ; additional state and stack info.
45 .fInRing3Call resd 1
46 .cbSavedStack resd 1
47 .pvSavedStack resd 1
48 .SpCheck resd 1
49 .SpResume resd 1
50 .SavedEsp resd 1
51 .SavedEbp resd 1
52 .SavedEipForUnwind resd 1
53 .UnwindRetPcValue resd 1
54 .UnwindRetPcLocation resd 1
55%endif
56%ifdef RT_ARCH_AMD64
57 ; traditional jmp_buf
58 .rbx resq 1
59 %ifdef RT_OS_WINDOWS
60 .rsi resq 1
61 .rdi resq 1
62 %endif
63 .rbp resq 1
64 .r12 resq 1
65 .r13 resq 1
66 .r14 resq 1
67 .r15 resq 1
68 .rsp resq 1
69 .rip resq 1
70 %ifdef RT_OS_WINDOWS
71 .xmm6 resq 2
72 .xmm7 resq 2
73 .xmm8 resq 2
74 .xmm9 resq 2
75 .xmm10 resq 2
76 .xmm11 resq 2
77 .xmm12 resq 2
78 .xmm13 resq 2
79 .xmm14 resq 2
80 .xmm15 resq 2
81 %endif
82 .rflags resq 1
83
84 ; additional state and stack info.
85 .fInRing3Call resd 1
86 .cbSavedStack resd 1
87 .pvSavedStack resq 1
88 .SpCheck resq 1
89 .SpResume resq 1
90 .SavedEsp resq 1
91 .SavedEbp resq 1
92 .SavedEipForUnwind resq 1
93 .UnwindRetPcValue resq 1
94 .UnwindRetPcLocation resq 1
95%endif
96
97 ; Statistics
98 alignb 8
99 .cbUsedMax resd 1
100 .cbUsedAvg resd 1
101 .cbUsedTotal resq 1
102 .cUsedTotal resq 1
103endstruc
104
105
106struc VMMCPU
107
108 .offVMCPU resd 1
109 .iLastGZRc resd 1
110 .pbEMTStackR3 RTR3PTR_RES 1
111 .pbEMTStackRC RTRCPTR_RES 1
112 .pbEMTStackBottomRC RTRCPTR_RES 1
113
114 .pR0LoggerR3 RTR3PTR_RES 1
115 .pR0LoggerR0 RTR0PTR_RES 1
116 .pR0RelLoggerR3 RTR3PTR_RES 1
117 .pR0RelLoggerR0 RTR0PTR_RES 1
118
119 .hCtxHook RTR0PTR_RES 1
120
121 .fInRendezvous resb 1
122%if HC_ARCH_BITS == 32
123 .afPadding resb 2
124%else
125 .afPadding resb 6+4
126%endif
127 .fMayHaltInRing0 resb 1
128 .cNsSpinBlockThreshold resd 1
129 .cR0Halts resd 1
130 .cR0HaltsSucceeded resd 1
131 .cR0HaltsToRing3 resd 1
132
133 alignb 8
134 .TracerCtx resb SUPDRVTRACERUSRCTX64_size
135
136 .au32Padding1 resd 3
137
138 .cCallRing3Disabled resd 1
139 .enmCallRing3Operation resd 1
140 .rcCallRing3 resd 1
141 .u64CallRing3Arg resq 1
142 .pfnCallRing3CallbackR0 RTR0PTR_RES 1
143 .pvCallRing3CallbackUserR0 RTR0PTR_RES 1
144 ; .CallRing3JmpBufR0 resb no-can-do
145endstruc
146
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