VirtualBox

source: vbox/trunk/include/VBox/vmm/vm.mac@ 41933

Last change on this file since 41933 was 41933, checked in by vboxsync, 13 years ago

VMMSwitcher: Drop the unused assembly switcher functions taking guest or host contexts as arguments.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.9 KB
Line 
1;; @file
2; VM - The Virtual Machine.
3;
4
5;
6; Copyright (C) 2006-2011 Oracle Corporation
7;
8; This file is part of VirtualBox Open Source Edition (OSE), as
9; available from http://www.virtualbox.org. This file is free software;
10; you can redistribute it and/or modify it under the terms of the GNU
11; General Public License (GPL) as published by the Free Software
12; Foundation, in version 2 as it comes in the "COPYING" file of the
13; VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14; hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15;
16; The contents of this file may alternatively be used under the terms
17; of the Common Development and Distribution License Version 1.0
18; (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19; VirtualBox OSE distribution, in which case the provisions of the
20; CDDL are applicable instead of those of the GPL.
21;
22; You may elect to license modified versions of this file under the
23; terms and conditions of either the GPL or the CDDL or both.
24;
25
26%ifndef ___VBox_vmm_vm_mac
27%define ___VBox_vmm_vm_mac
28
29%include "VBox/vmm/stam.mac"
30
31;/** This action forces the VM to service check and pending interrups on the APIC. */
32%define VMCPU_FF_INTERRUPT_APIC (1 << 0)
33;/** This action forces the VM to service check and pending interrups on the PIC. */
34%define VMCPU_FF_INTERRUPT_PIC (1 << 1)
35;/** This action forces the VM to schedule and run pending timer (TM). */
36%define VMCPU_FF_TIMER (1 << 2)
37;/** This action forces the VM to service pending requests from other
38; * thread or requests which must be executed in another context. */
39%define VMCPU_FF_REQUEST (1 << 9)
40
41;;
42; This is part of the VM structure.
43struc VM
44 .enmVMState resd 1
45 .fGlobalForcedActions resd 1
46 .paVMPagesR3 RTR3PTR_RES 1
47 .pSession RTR0PTR_RES 1
48 .pUVM RTR3PTR_RES 1
49 .pVMR3 RTR3PTR_RES 1
50 .pVMR0 RTR0PTR_RES 1
51 .pVMRC RTRCPTR_RES 1
52 .hSelf resd 1
53 .cCpus resd 1
54 .uCpuExecutionCap resd 1
55 .cbSelf resd 1
56 .offVMCPU resd 1
57 .pfnVMMGCGuestToHostAsm resd 1
58 .fRecompileUser resb 1
59 .fRecompileSupervisor resb 1
60 .fPATMEnabled resb 1
61 .fCSAMEnabled resb 1
62 .fHWACCMEnabled resb 1
63 .fHwVirtExtForced resb 1
64 .fFaultTolerantMaster resb 1
65 .fUseLargePages resb 1
66
67 .hTraceBufRC RTRCPTR_RES 1
68 .hTraceBufR3 RTR3PTR_RES 1
69 .hTraceBufR0 RTR0PTR_RES 1
70
71 alignb 8
72
73 .StatTotalQemuToGC resb STAMPROFILEADV_size
74 .StatTotalGCToQemu resb STAMPROFILEADV_size
75 .StatTotalInGC resb STAMPROFILEADV_size
76 .StatTotalInQemu resb STAMPROFILEADV_size
77 .StatSwitcherToGC resb STAMPROFILEADV_size
78 .StatSwitcherToHC resb STAMPROFILEADV_size
79 .StatSwitcherSaveRegs resb STAMPROFILEADV_size
80 .StatSwitcherSysEnter resb STAMPROFILEADV_size
81 .StatSwitcherDebug resb STAMPROFILEADV_size
82 .StatSwitcherCR0 resb STAMPROFILEADV_size
83 .StatSwitcherCR4 resb STAMPROFILEADV_size
84 .StatSwitcherJmpCR3 resb STAMPROFILEADV_size
85 .StatSwitcherRstrRegs resb STAMPROFILEADV_size
86 .StatSwitcherLgdt resb STAMPROFILEADV_size
87 .StatSwitcherLidt resb STAMPROFILEADV_size
88 .StatSwitcherLldt resb STAMPROFILEADV_size
89 .StatSwitcherTSS resb STAMPROFILEADV_size
90
91%ifndef HC_ARCH_BITS
92 %error "Missing HC_ARCH_BITS"
93%endif
94%if HC_ARCH_BITS == 32
95 .abAlignment3 resb 24
96%else
97; .abAlignment3 resb 16
98%endif
99
100 alignb 64
101 .cpum resb 1536
102 .vmm resb 1536
103
104endstruc
105
106;;
107; This is part of the VMCPU structure.
108struc VMCPU
109 .fLocalForcedActions resd 1
110 .enmState resd 1
111 .pUVCpu RTR3PTR_RES 1
112 .pVMR3 RTR3PTR_RES 1
113 .pVMR0 RTR0PTR_RES 1
114 .pVMRC RTRCPTR_RES 1
115 .idCpu resd 1
116
117 .hNativeThread RTR0PTR_RES 1
118 .hNativeThreadR0 RTR0PTR_RES 1
119 .idHostCpu resd 1
120 .fTraceGroups resd 1
121%if HC_ARCH_BITS == 32
122 .abAlignment1 resb 16+64
123%else
124 .abAlignment1 resb 60
125%endif
126 .uAdHoc resd 1
127 .aStatAdHoc resb STAMPROFILEADV_size * 8
128
129 alignb 64
130
131 .cpum resb 3584
132 .hwaccm resb 5376
133 .em resb 1472
134 .iem resb 3072
135 .trpm resb 128
136 .tm resb 384
137 .vmm resb 640
138 .pdm resb 128
139 .iom resb 512
140 .dbgf resb 64
141 alignb 4096
142 .pgm resb 4096
143endstruc
144
145
146%endif
147
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette