VirtualBox

source: vbox/trunk/include/VBox/vmm/gvm.mac@ 87467

Last change on this file since 87467 was 87466, checked in by vboxsync, 4 years ago

VMM/HM,gvm: Started splitting up the HVMCPU and HVM structures. Created assembly version of gvm.h. bugref:9217

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.6 KB
Line 
1;; @file
2; GVM - The Global VM Data.
3;
4
5;
6; Copyright (C) 2006-2021 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_gvm_mac
27%define ___VBox_vmm_gvm_mac
28
29%include "VBox/vmm/vm.mac"
30
31struc GVMCPU
32 .s resb VMCPU_size
33 .idCpu resd 1
34
35 alignb 8
36 .hEMT RTR0PTR_RES 1
37 .pGVM RTR0PTR_RES 1
38 .pVMR0 RTR0PTR_RES 1
39 .pVCpuR3 RTR3PTR_RES 1
40
41 alignb 64
42 .gvmm resb 64
43 alignb 64
44 .hmr0 resb 512
45%ifdef VBOX_WITH_NEM_R0
46 .nemr0 resb 64
47%endif
48 alignb 4096
49endstruc
50
51
52struc GVM
53 .s resb VM_size
54 .u32Magic resd 1
55 .hSelf resd 1
56 alignb 8
57 .pSelf RTR0PTR_RES 1
58 .pVMR3 RTR3PTR_RES 1
59 .pSession RTR0PTR_RES 1
60 .cCpus resd 1
61
62 alignb 64
63 .gvmm resb 256
64 alignb 64
65 .gmm resb 1024
66%ifdef VBOX_WITH_NEM_R0
67 alignb 64
68 .nemr0 resb 256
69%endif
70 alignb 64
71 .rawpci resb 64
72 alignb 64
73 .pdmr0 resb 2176
74 alignb 64
75 .pgmr0 resb 640
76 alignb 64
77 .iomr0 resb 512
78 alignb 64
79 .apicr0 resb 64
80 alignb 64
81 .dbgfr0 resb 1024
82
83 times ((($ + VMM_MAX_CPU_COUNT * RTR0PTR_CB + 4095) & ~4095) - ($ + VMM_MAX_CPU_COUNT * RTR0PTR_CB)) resb 1
84 .apCpusR0 RTR0PTR_RES VMM_MAX_CPU_COUNT
85
86 alignb 4096
87 .aCpus resb GVMCPU_size
88endstruc
89
90%define GVM_MAGIC 0x19330825
91
92
93%endif
94
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