VirtualBox

source: vbox/trunk/src/VBox/VMM/VMMR0/HMSVMR0.h@ 80052

Last change on this file since 80052 was 80052, checked in by vboxsync, 5 years ago

Main: Kicking out 32-bit host support - Some HM bits using VMMSwitcher & CPUMHyper. bugref:9511

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 3.2 KB
Line 
1/* $Id: HMSVMR0.h 80052 2019-07-29 20:36:52Z vboxsync $ */
2/** @file
3 * HM SVM (AMD-V) - Internal header file.
4 */
5
6/*
7 * Copyright (C) 2006-2019 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_HMSVMR0_h
19#define VMM_INCLUDED_SRC_VMMR0_HMSVMR0_h
20#ifndef RT_WITHOUT_PRAGMA_ONCE
21# pragma once
22#endif
23
24#include <VBox/cdefs.h>
25#include <VBox/types.h>
26#include <VBox/vmm/hm.h>
27#include <VBox/vmm/hm_svm.h>
28
29RT_C_DECLS_BEGIN
30
31/** @defgroup grp_svm_int Internal
32 * @ingroup grp_svm
33 * @internal
34 * @{
35 */
36
37#ifdef IN_RING0
38
39VMMR0DECL(int) SVMR0GlobalInit(void);
40VMMR0DECL(void) SVMR0GlobalTerm(void);
41VMMR0DECL(int) SVMR0Enter(PVMCPU pVCpu);
42VMMR0DECL(void) SVMR0ThreadCtxCallback(RTTHREADCTXEVENT enmEvent, PVMCPU pVCpu, bool fGlobalInit);
43VMMR0DECL(int) SVMR0EnableCpu(PHMPHYSCPU pHostCpu, PVM pVM, void *pvPageCpu, RTHCPHYS HCPhysCpuPage,
44 bool fEnabledBySystem, PCSUPHWVIRTMSRS pHwvirtMsrs);
45VMMR0DECL(int) SVMR0DisableCpu(void *pvPageCpu, RTHCPHYS pPageCpuPhys);
46VMMR0DECL(int) SVMR0InitVM(PVM pVM);
47VMMR0DECL(int) SVMR0TermVM(PVM pVM);
48VMMR0DECL(int) SVMR0SetupVM(PVM pVM);
49VMMR0DECL(VBOXSTRICTRC) SVMR0RunGuestCode(PVMCPU pVCpu);
50VMMR0DECL(int) SVMR0ExportHostState(PVMCPU pVCpu);
51VMMR0DECL(int) SVMR0ImportStateOnDemand(PVMCPU pVCpu, uint64_t fWhat);
52VMMR0DECL(int) SVMR0InvalidatePage(PVMCPU pVCpu, RTGCPTR GCVirt);
53
54/**
55 * Prepares for and executes VMRUN (32-bit guests).
56 *
57 * @returns VBox status code.
58 * @param pVMCBHostPhys Physical address of host VMCB.
59 * @param pVMCBPhys Physical address of the VMCB.
60 * @param pCtx Pointer to the guest CPU context.
61 * @param pVM The cross context VM structure. (Not used.)
62 * @param pVCpu The cross context virtual CPU structure. (Not used.)
63 */
64DECLASM(int) SVMR0VMRun(RTHCPHYS pVMCBHostPhys, RTHCPHYS pVMCBPhys, PCPUMCTX pCtx, PVM pVM, PVMCPU pVCpu);
65
66
67/**
68 * Prepares for and executes VMRUN (64-bit guests).
69 *
70 * @returns VBox status code.
71 * @param pVMCBHostPhys Physical address of host VMCB.
72 * @param pVMCBPhys Physical address of the VMCB.
73 * @param pCtx Pointer to the guest CPU context.
74 * @param pVM The cross context VM structure. (Not used.)
75 * @param pVCpu The cross context virtual CPU structure. (Not used.)
76 */
77DECLASM(int) SVMR0VMRun64(RTHCPHYS pVMCBHostPhys, RTHCPHYS pVMCBPhys, PCPUMCTX pCtx, PVM pVM, PVMCPU pVCpu);
78
79/**
80 * Executes INVLPGA.
81 *
82 * @param pPageGC Virtual page to invalidate.
83 * @param u32ASID Tagged TLB id.
84 */
85DECLASM(void) SVMR0InvlpgA(RTGCPTR pPageGC, uint32_t u32ASID);
86
87#endif /* IN_RING0 */
88
89/** @} */
90
91RT_C_DECLS_END
92
93#endif /* !VMM_INCLUDED_SRC_VMMR0_HMSVMR0_h */
94
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