VirtualBox

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

Last change on this file since 84044 was 82968, checked in by vboxsync, 4 years ago

Copyright year updates by scm.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 3.6 KB
Line 
1; $Id: VMMInternal.mac 82968 2020-02-04 10:35:17Z vboxsync $
2;; @file
3; VMM - Internal header file.
4;
5
6;
7; Copyright (C) 2006-2020 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 .iLastGZRc resd 1
109 alignb 8
110 .pbEMTStackR3 RTR3PTR_RES 1
111
112 .pR0LoggerR3 RTR3PTR_RES 1
113 .pR0LoggerR0 RTR0PTR_RES 1
114 .pR0RelLoggerR3 RTR3PTR_RES 1
115 .pR0RelLoggerR0 RTR0PTR_RES 1
116
117 .hCtxHook RTR0PTR_RES 1
118
119 .fInRendezvous resb 1
120 .afPadding1 resb 10
121 .fMayHaltInRing0 resb 1
122 .cNsSpinBlockThreshold resd 1
123 .cR0Halts resd 1
124 .cR0HaltsSucceeded resd 1
125 .cR0HaltsToRing3 resd 1
126
127 alignb 8
128 .TracerCtx resb SUPDRVTRACERUSRCTX64_size
129
130 .au32Padding3 resd 1
131
132 .cCallRing3Disabled resd 1
133 .enmCallRing3Operation resd 1
134 .rcCallRing3 resd 1
135 alignb 8
136 .u64CallRing3Arg resq 1
137 .pfnCallRing3CallbackR0 RTR0PTR_RES 1
138 .pvCallRing3CallbackUserR0 RTR0PTR_RES 1
139 ; .CallRing3JmpBufR0 resb no-can-do
140endstruc
141
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use