VirtualBox

source: vbox/trunk/src/VBox/VMM/VMMR0/HMVMXR0.h@ 95134

Last change on this file since 95134 was 93963, checked in by vboxsync, 3 years ago

VMM: Nested VMX: bugref:10092 Add HM ring-0 API for querying transient VMX/SVM info.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 2.1 KB
Line 
1/* $Id: HMVMXR0.h 93963 2022-02-28 08:39:08Z vboxsync $ */
2/** @file
3 * HM VMX (VT-x) - Internal header file.
4 */
5
6/*
7 * Copyright (C) 2006-2022 Oracle Corporation
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
18#ifndef VMM_INCLUDED_SRC_VMMR0_HMVMXR0_h
19#define VMM_INCLUDED_SRC_VMMR0_HMVMXR0_h
20#ifndef RT_WITHOUT_PRAGMA_ONCE
21# pragma once
22#endif
23
24RT_C_DECLS_BEGIN
25
26/** @defgroup grp_vmx_int Internal
27 * @ingroup grp_vmx
28 * @internal
29 * @{
30 */
31
32#ifdef IN_RING0
33VMMR0DECL(int) VMXR0Enter(PVMCPUCC pVCpu);
34VMMR0DECL(void) VMXR0ThreadCtxCallback(RTTHREADCTXEVENT enmEvent, PVMCPUCC pVCpu, bool fGlobalInit);
35VMMR0DECL(int) VMXR0AssertionCallback(PVMCPUCC pVCpu);
36VMMR0DECL(int) VMXR0EnableCpu(PHMPHYSCPU pHostCpu, PVMCC pVM, void *pvPageCpu, RTHCPHYS pPageCpuPhys,
37 bool fEnabledBySystem, PCSUPHWVIRTMSRS pHwvirtMsrs);
38VMMR0DECL(int) VMXR0DisableCpu(PHMPHYSCPU pHostCpu, void *pvPageCpu, RTHCPHYS pPageCpuPhys);
39VMMR0DECL(int) VMXR0GlobalInit(void);
40VMMR0DECL(void) VMXR0GlobalTerm(void);
41VMMR0DECL(int) VMXR0InitVM(PVMCC pVM);
42VMMR0DECL(int) VMXR0TermVM(PVMCC pVM);
43VMMR0DECL(int) VMXR0SetupVM(PVMCC pVM);
44VMMR0DECL(int) VMXR0ExportHostState(PVMCPUCC pVCpu);
45VMMR0DECL(int) VMXR0InvalidatePage(PVMCPUCC pVCpu, RTGCPTR GCVirt);
46VMMR0DECL(int) VMXR0ImportStateOnDemand(PVMCPUCC pVCpu, uint64_t fWhat);
47VMMR0DECL(int) VMXR0GetExitAuxInfo(PVMCPUCC pVCpu, PVMXEXITAUX pVmxExitAux, uint32_t fWhat);
48VMMR0DECL(VBOXSTRICTRC) VMXR0RunGuestCode(PVMCPUCC pVCpu);
49#endif /* IN_RING0 */
50
51/** @} */
52
53RT_C_DECLS_END
54
55#endif /* !VMM_INCLUDED_SRC_VMMR0_HMVMXR0_h */
56
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