VirtualBox

source: vbox/trunk/include/VBox/hwaccm.h@ 34326

Last change on this file since 34326 was 34326, checked in by vboxsync, 14 years ago

VMM: Removed the XXXInitCPU and XXXTermCPU methods since all but the HWACCM ones where stubs and the XXXTermCPU bits was not called in all expected paths. The HWACCMR3InitCPU was hooked up as a VMINITCOMPLETED_RING3 hook, essentially leaving it's position in the order of things unchanged, while the HWACCMR3TermCPU call was made static without changing its position at the end of HWACCMR3Term.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 6.3 KB
Line 
1/** @file
2 * HWACCM - Intel/AMD VM Hardware Support Manager (VMM)
3 */
4
5/*
6 * Copyright (C) 2006-2007 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_hwaccm_h
27#define ___VBox_hwaccm_h
28
29#include <VBox/cdefs.h>
30#include <VBox/types.h>
31#include <VBox/pgm.h>
32#include <VBox/cpum.h>
33#include <iprt/mp.h>
34
35
36/** @defgroup grp_hwaccm The VM Hardware Manager API
37 * @{
38 */
39
40/**
41 * HWACCM state
42 */
43typedef enum HWACCMSTATE
44{
45 /* Not yet set */
46 HWACCMSTATE_UNINITIALIZED = 0,
47 /* Enabled */
48 HWACCMSTATE_ENABLED,
49 /* Disabled */
50 HWACCMSTATE_DISABLED,
51 /** The usual 32-bit hack. */
52 HWACCMSTATE_32BIT_HACK = 0x7fffffff
53} HWACCMSTATE;
54
55RT_C_DECLS_BEGIN
56
57/**
58 * Query HWACCM state (enabled/disabled)
59 *
60 * @returns 0 - disabled, 1 - enabled
61 * @param pVM The VM to operate on.
62 */
63#define HWACCMIsEnabled(pVM) ((pVM)->fHWACCMEnabled)
64
65 /**
66 * Check if the current CPU state is valid for emulating IO blocks in the recompiler
67 *
68 * @returns boolean
69 * @param pCtx CPU context
70 */
71#define HWACCMCanEmulateIoBlock(pVCpu) (!CPUMIsGuestInPagedProtectedMode(pVCpu))
72#define HWACCMCanEmulateIoBlockEx(pCtx) (!CPUMIsGuestInPagedProtectedModeEx(pCtx))
73
74VMMDECL(int) HWACCMInvalidatePage(PVMCPU pVCpu, RTGCPTR GCVirt);
75VMMDECL(bool) HWACCMHasPendingIrq(PVM pVM);
76
77#ifndef IN_RC
78VMMDECL(int) HWACCMFlushTLB(PVMCPU pVCpu);
79VMMDECL(int) HWACCMFlushTLBOnAllVCpus(PVM pVM);
80VMMDECL(int) HWACCMInvalidatePageOnAllVCpus(PVM pVM, RTGCPTR GCVirt);
81VMMDECL(int) HWACCMInvalidatePhysPage(PVM pVM, RTGCPHYS GCPhys);
82VMMDECL(bool) HWACCMIsNestedPagingActive(PVM pVM);
83VMMDECL(PGMMODE) HWACCMGetShwPagingMode(PVM pVM);
84#else
85/* Nop in GC */
86# define HWACCMFlushTLB(pVCpu) do { } while (0)
87# define HWACCMIsNestedPagingActive(pVM) false
88# define HWACCMFlushTLBOnAllVCpus(pVM) do { } while (0)
89#endif
90
91#ifdef IN_RING0
92/** @defgroup grp_hwaccm_r0 The VM Hardware Manager API
93 * @ingroup grp_hwaccm
94 * @{
95 */
96VMMR0DECL(int) HWACCMR0Init(void);
97VMMR0DECL(int) HWACCMR0Term(void);
98VMMR0DECL(int) HWACCMR0InitVM(PVM pVM);
99VMMR0DECL(int) HWACCMR0TermVM(PVM pVM);
100VMMR0DECL(int) HWACCMR0EnableAllCpus(PVM pVM);
101VMMR0DECL(int) HWACCMR0EnterSwitcher(PVM pVM, bool *pfVTxDisabled);
102VMMR0DECL(int) HWACCMR0LeaveSwitcher(PVM pVM, bool fVTxDisabled);
103
104VMMR0DECL(void) HWACCMR0SavePendingIOPortWrite(PVMCPU pVCpu, RTGCPTR GCPtrRip, RTGCPTR GCPtrRipNext, unsigned uPort, unsigned uAndVal, unsigned cbSize);
105VMMR0DECL(void) HWACCMR0SavePendingIOPortRead(PVMCPU pVCpu, RTGCPTR GCPtrRip, RTGCPTR GCPtrRipNext, unsigned uPort, unsigned uAndVal, unsigned cbSize);
106
107/** @} */
108#endif /* IN_RING0 */
109
110
111#ifdef IN_RING3
112/** @defgroup grp_hwaccm_r3 The VM Hardware Manager API
113 * @ingroup grp_hwaccm
114 * @{
115 */
116VMMR3DECL(bool) HWACCMR3IsEventPending(PVMCPU pVCpu);
117VMMR3DECL(int) HWACCMR3Init(PVM pVM);
118VMMR3_INT_DECL(int) HWACCMR3InitCompleted(PVM pVM, VMINITCOMPLETED enmWhat);
119VMMR3DECL(int) HWACCMR3InitFinalizeR0(PVM pVM);
120VMMR3DECL(void) HWACCMR3Relocate(PVM pVM);
121VMMR3DECL(int) HWACCMR3Term(PVM pVM);
122VMMR3DECL(void) HWACCMR3Reset(PVM pVM);
123VMMR3DECL(void) HWACCMR3ResetCpu(PVMCPU pVCpu);
124VMMR3DECL(void) HWACCMR3CheckError(PVM pVM, int iStatusCode);
125VMMR3DECL(bool) HWACCMR3CanExecuteGuest(PVM pVM, PCPUMCTX pCtx);
126VMMR3DECL(void) HWACCMR3NotifyScheduled(PVMCPU pVCpu);
127VMMR3DECL(void) HWACCMR3NotifyEmulated(PVMCPU pVCpu);
128VMMR3DECL(bool) HWACCMR3IsActive(PVMCPU pVCpu);
129VMMR3DECL(bool) HWACCMR3IsNestedPagingActive(PVM pVM);
130VMMR3DECL(bool) HWACCMR3IsAllowed(PVM pVM);
131VMMR3DECL(void) HWACCMR3PagingModeChanged(PVM pVM, PVMCPU pVCpu, PGMMODE enmShadowMode, PGMMODE enmGuestMode);
132VMMR3DECL(bool) HWACCMR3IsVPIDActive(PVM pVM);
133VMMR3DECL(int) HWACCMR3InjectNMI(PVM pVM);
134VMMR3DECL(int) HWACCMR3EmulateIoBlock(PVM pVM, PCPUMCTX pCtx);
135VMMR3DECL(VBOXSTRICTRC) HWACCMR3RestartPendingIOInstr(PVM pVM, PVMCPU pVCpu, PCPUMCTX pCtx);
136VMMR3DECL(int) HWACMMR3EnablePatching(PVM pVM, RTGCPTR pPatchMem, unsigned cbPatchMem);
137VMMR3DECL(int) HWACMMR3DisablePatching(PVM pVM, RTGCPTR pPatchMem, unsigned cbPatchMem);
138VMMR3DECL(int) HWACCMR3PatchTprInstr(PVM pVM, PVMCPU pVCpu, PCPUMCTX pCtx);
139VMMR3DECL(bool) HWACCMR3IsRescheduleRequired(PVM pVM, PCPUMCTX pCtx);
140VMMR3DECL(bool) HWACCMR3IsVmxPreemptionTimerUsed(PVM pVM);
141
142/** @} */
143#endif /* IN_RING3 */
144
145#ifdef IN_RING0
146/** @addtogroup grp_hwaccm_r0
147 * @{
148 */
149VMMR0DECL(int) HWACCMR0SetupVM(PVM pVM);
150VMMR0DECL(int) HWACCMR0RunGuestCode(PVM pVM, PVMCPU pVCpu);
151VMMR0DECL(int) HWACCMR0Enter(PVM pVM, PVMCPU pVCpu);
152VMMR0DECL(int) HWACCMR0Leave(PVM pVM, PVMCPU pVCpu);
153VMMR0DECL(int) HWACCMR0InvalidatePage(PVM pVM, PVMCPU pVCpu);
154VMMR0DECL(int) HWACCMR0FlushTLB(PVM pVM);
155VMMR0DECL(bool) HWACCMR0SuspendPending();
156
157# if HC_ARCH_BITS == 32 && defined(VBOX_WITH_64_BITS_GUESTS)
158VMMR0DECL(int) HWACCMR0SaveFPUState(PVM pVM, PVMCPU pVCpu, PCPUMCTX pCtx);
159VMMR0DECL(int) HWACCMR0SaveDebugState(PVM pVM, PVMCPU pVCpu, PCPUMCTX pCtx);
160VMMR0DECL(int) HWACCMR0TestSwitcher3264(PVM pVM);
161# endif
162
163/** @} */
164#endif /* IN_RING0 */
165
166
167/** @} */
168RT_C_DECLS_END
169
170
171#endif
172
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