VirtualBox

source: vbox/trunk/include/VBox/uvm.h@ 25149

Last change on this file since 25149 was 23000, checked in by vboxsync, 15 years ago

Corrected 52285

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 4.5 KB
Line 
1/* $Id: uvm.h 23000 2009-09-14 13:08:24Z vboxsync $ */
2/** @file
3 * GVM - The Global VM Data. (VMM)
4 */
5
6/*
7 * Copyright (C) 2007 Sun Microsystems, Inc.
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 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 *
26 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
27 * Clara, CA 95054 USA or visit http://www.sun.com if you need
28 * additional information or have any questions.
29 */
30
31
32#ifndef ___VBox_uvm_h
33#define ___VBox_uvm_h
34
35#include <VBox/types.h>
36#include <iprt/assert.h>
37
38
39/**
40 * Per virtual CPU ring-3 (user mode) data.
41 */
42typedef struct UVMCPU
43{
44 /** Pointer to the UVM structure. */
45 PUVM pUVM;
46 /** Pointer to the VM structure. */
47 PVM pVM;
48 /** Pointer to the VMCPU structure. */
49 PVMCPU pVCpu;
50 /** The virtual CPU ID. */
51 RTCPUID idCpu;
52 /** Alignment padding. */
53 uint8_t abAlignment0[HC_ARCH_BITS == 32 ? 16 : 4];
54
55 /** The VM internal data. */
56 union
57 {
58#ifdef ___VMInternal_h
59 struct VMINTUSERPERVMCPU s;
60#endif
61 uint8_t padding[512];
62 } vm;
63} UVMCPU;
64AssertCompileMemberAlignment(UVMCPU, vm, 32);
65
66
67/**
68 * The ring-3 (user mode) VM structure.
69 *
70 * This structure is similar to VM and GVM except that it resides in swappable
71 * user memory. The main purpose is to assist bootstrapping, where it allows us
72 * to start EMT much earlier and gives PDMLdr somewhere to put it's VMMR0 data.
73 * It is also a nice place to put big things that are user mode only.
74 */
75typedef struct UVM
76{
77 /** Magic / eye-catcher (UVM_MAGIC). */
78 uint32_t u32Magic;
79 /** The number of virtual CPUs. */
80 uint32_t cCpus;
81 /** The ring-3 mapping of the shared VM structure. */
82 PVM pVM;
83 /** Pointer to the next VM.
84 * We keep a per process list of VM for the event that a process could
85 * contain more than one VM.
86 * @todo move this into vm.s!
87 */
88 struct UVM *pNext;
89
90 /** Align the next member on a 32 byte boundrary. */
91 uint8_t abAlignment0[HC_ARCH_BITS == 32 ? 16 : 8];
92
93 /** The VM internal data. */
94 union
95 {
96#ifdef ___VMInternal_h
97 struct VMINTUSERPERVM s;
98#endif
99 uint8_t padding[512];
100 } vm;
101
102 /** The MM data. */
103 union
104 {
105#ifdef ___MMInternal_h
106 struct MMUSERPERVM s;
107#endif
108 uint8_t padding[32];
109 } mm;
110
111 /** The PDM data. */
112 union
113 {
114#ifdef ___PDMInternal_h
115 struct PDMUSERPERVM s;
116#endif
117 uint8_t padding[32];
118 } pdm;
119
120 /** The STAM data. */
121 union
122 {
123#ifdef ___STAMInternal_h
124 struct STAMUSERPERVM s;
125#endif
126 uint8_t padding[256];
127 } stam;
128
129 /** Per virtual CPU data. */
130 UVMCPU aCpus[1];
131} UVM;
132AssertCompileMemberAlignment(UVM, vm, 32);
133AssertCompileMemberAlignment(UVM, mm, 32);
134AssertCompileMemberAlignment(UVM, pdm, 32);
135AssertCompileMemberAlignment(UVM, stam, 32);
136AssertCompileMemberAlignment(UVM, aCpus, 32);
137
138/** The UVM::u32Magic value (Brad Mehldau). */
139#define UVM_MAGIC 0x19700823
140
141/** @def UVM_ASSERT_VALID_EXT_RETURN
142 * Asserts a the VM handle is valid for external access, i.e. not being
143 * destroy or terminated.
144 */
145#define UVM_ASSERT_VALID_EXT_RETURN(pVM, rc) \
146 AssertMsgReturn( RT_VALID_ALIGNED_PTR(pVM, PAGE_SIZE) \
147 && (pUVM)->u32Magic == UVM_MAGIC, \
148 ("pUVM=%p u32Magic=%#x\n", (pUVM), \
149 RT_VALID_ALIGNED_PTR(pVM, PAGE_SIZE) ? (pUVM)->u32Magic : 0), \
150 (rc))
151
152#endif
153
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