Last change
on this file since 89363 was 87792, checked in by vboxsync, 4 years ago |
VMM/TM: Moved the timers off the hyper heap. Replaced the relative offset addressing with queue array indexing. bugref:9943
|
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Author Date Id Revision
|
File size:
2.8 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 |
|
---|
31 | struc 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 1024
|
---|
45 | %ifdef VBOX_WITH_NEM_R0
|
---|
46 | .nemr0 resb 64
|
---|
47 | %endif
|
---|
48 | alignb 4096
|
---|
49 | endstruc
|
---|
50 |
|
---|
51 |
|
---|
52 | struc 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 | alignb 64
|
---|
67 | .hmr0 resb 256
|
---|
68 | %ifdef VBOX_WITH_NEM_R0
|
---|
69 | alignb 64
|
---|
70 | .nemr0 resb 256
|
---|
71 | %endif
|
---|
72 | alignb 64
|
---|
73 | .rawpci resb 64
|
---|
74 | alignb 64
|
---|
75 | .pdmr0 resb 2176
|
---|
76 | alignb 64
|
---|
77 | .pgmr0 resb 640
|
---|
78 | alignb 64
|
---|
79 | .iomr0 resb 512
|
---|
80 | alignb 64
|
---|
81 | .apicr0 resb 64
|
---|
82 | alignb 64
|
---|
83 | .dbgfr0 resb 1024
|
---|
84 | alignb 64
|
---|
85 | .tmr0 resb 128
|
---|
86 |
|
---|
87 | times ((($ + VMM_MAX_CPU_COUNT * RTR0PTR_CB + 4095) & ~4095) - ($ + VMM_MAX_CPU_COUNT * RTR0PTR_CB)) resb 1
|
---|
88 | .apCpusR0 RTR0PTR_RES VMM_MAX_CPU_COUNT
|
---|
89 |
|
---|
90 | alignb 4096
|
---|
91 | .aCpus resb GVMCPU_size
|
---|
92 | endstruc
|
---|
93 |
|
---|
94 | %define GVM_MAGIC 0x19330825
|
---|
95 |
|
---|
96 |
|
---|
97 | %endif
|
---|
98 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.