VirtualBox

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

Last change on this file since 90189 was 90189, checked in by vboxsync, 3 years ago

VMM: Make the setjmp code a bit stricter with when to resume a call. bugref:10064 ticketref:20090 ticketref:20456

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 3.8 KB
Line 
1; $Id: VMMInternal.mac 90189 2021-07-14 16:39:09Z 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 .pfn resd 1
56 .pvUser1 resd 1
57 .pvUser2 resd 1
58%endif
59%ifdef RT_ARCH_AMD64
60 ; traditional jmp_buf
61 .rbx resq 1
62 %ifdef RT_OS_WINDOWS
63 .rsi resq 1
64 .rdi resq 1
65 %endif
66 .rbp resq 1
67 .r12 resq 1
68 .r13 resq 1
69 .r14 resq 1
70 .r15 resq 1
71 .rsp resq 1
72 .rip resq 1
73 %ifdef RT_OS_WINDOWS
74 .xmm6 resq 2
75 .xmm7 resq 2
76 .xmm8 resq 2
77 .xmm9 resq 2
78 .xmm10 resq 2
79 .xmm11 resq 2
80 .xmm12 resq 2
81 .xmm13 resq 2
82 .xmm14 resq 2
83 .xmm15 resq 2
84 %endif
85 .rflags resq 1
86
87 ; additional state and stack info.
88 .fInRing3Call resd 1
89 .cbSavedStack resd 1
90 .pvSavedStack resq 1
91 .SpCheck resq 1
92 .SpResume resq 1
93 .SavedEsp resq 1
94 .SavedEbp resq 1
95 .SavedEipForUnwind resq 1
96 .UnwindRetPcValue resq 1
97 .UnwindRetPcLocation resq 1
98 .pfn resq 1
99 .pvUser1 resq 1
100 .pvUser2 resq 1
101%endif
102
103 ; Statistics
104 alignb 8
105 .cbUsedMax resd 1
106 .cbUsedAvg resd 1
107 .cbUsedTotal resq 1
108 .cUsedTotal resq 1
109endstruc
110
111
112struc VMMCPU
113
114 .iLastGZRc resd 1
115 alignb 8
116 .pbEMTStackR3 RTR3PTR_RES 1
117
118 .pR0LoggerR3 RTR3PTR_RES 1
119 .pR0LoggerR0 RTR0PTR_RES 1
120 .pR0RelLoggerR3 RTR3PTR_RES 1
121 .pR0RelLoggerR0 RTR0PTR_RES 1
122
123 .hCtxHook RTR0PTR_RES 1
124
125 .fInRendezvous resb 1
126 .afPadding1 resb 10
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 .au32Padding3 resd 1
137
138 .cCallRing3Disabled resd 1
139 .enmCallRing3Operation resd 1
140 .rcCallRing3 resd 1
141 alignb 8
142 .u64CallRing3Arg resq 1
143 .pfnCallRing3CallbackR0 RTR0PTR_RES 1
144 .pvCallRing3CallbackUserR0 RTR0PTR_RES 1
145 ; .CallRing3JmpBufR0 resb no-can-do
146endstruc
147
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