blob: 59682914c06069081c3524069d3490d484f2719e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
/* $Id$ */
/** @file
* GVMM - The Global VM Manager, Internal header.
*/
/*
* Copyright (C) 2007-2019 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* you can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*/
#ifndef VMM_INCLUDED_SRC_VMMR0_GVMMR0Internal_h
#define VMM_INCLUDED_SRC_VMMR0_GVMMR0Internal_h
#ifndef RT_WITHOUT_PRAGMA_ONCE
# pragma once
#endif
#include <iprt/mem.h>
/**
* The GVMM per VM data.
*/
typedef struct GVMMPERVCPU
{
/** The time the halted EMT thread expires.
* 0 if the EMT thread is blocked here. */
uint64_t volatile u64HaltExpire;
/** The event semaphore the EMT thread is blocking on. */
RTSEMEVENTMULTI HaltEventMulti;
#ifdef VBOX_BUGREF_9217
/** The ring-3 mapping of the VMCPU structure. */
RTR0MEMOBJ VMCpuMapObj;
#endif
/** The APIC ID of the CPU that EMT was scheduled on the last time we checked. */
uint8_t iCpuEmt;
} GVMMPERVCPU;
/** Pointer to the GVMM per VCPU data. */
typedef GVMMPERVCPU *PGVMMPERVCPU;
/**
* The GVMM per VM data.
*/
typedef struct GVMMPERVM
{
/** The shared VM data structure allocation object (PVMR0). */
RTR0MEMOBJ VMMemObj;
/** The Ring-3 mapping of the shared VM data structure (PVMR3). */
RTR0MEMOBJ VMMapObj;
/** The allocation object for the VM pages. */
RTR0MEMOBJ VMPagesMemObj;
/** The ring-3 mapping of the VM pages. */
RTR0MEMOBJ VMPagesMapObj;
/** The scheduler statistics. */
GVMMSTATSSCHED StatsSched;
/** Whether the per-VM ring-0 initialization has been performed. */
bool fDoneVMMR0Init;
/** Whether the per-VM ring-0 termination is being or has been performed. */
bool fDoneVMMR0Term;
} GVMMPERVM;
/** Pointer to the GVMM per VM data. */
typedef GVMMPERVM *PGVMMPERVM;
#endif /* !VMM_INCLUDED_SRC_VMMR0_GVMMR0Internal_h */
|