VirtualBox

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

Last change on this file since 72670 was 72643, checked in by vboxsync, 7 years ago

VMM: Make SVM R0 code use CPUMCTX_EXTRN_xxx flags and cleanups. bugref:9193

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 3.7 KB
Line 
1/* $Id: HMSVMR0.h 72643 2018-06-21 16:02:03Z vboxsync $ */
2/** @file
3 * HM SVM (AMD-V) - Internal header file.
4 */
5
6/*
7 * Copyright (C) 2006-2017 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 ___HMSVMR0_h
19#define ___HMSVMR0_h
20
21#include <VBox/cdefs.h>
22#include <VBox/types.h>
23#include <VBox/vmm/em.h>
24#include <VBox/vmm/stam.h>
25#include <VBox/dis.h>
26#include <VBox/vmm/hm.h>
27#include <VBox/vmm/pgm.h>
28#include <VBox/vmm/hm_svm.h>
29
30RT_C_DECLS_BEGIN
31
32/** @defgroup grp_svm_int Internal
33 * @ingroup grp_svm
34 * @internal
35 * @{
36 */
37
38#ifdef IN_RING0
39
40VMMR0DECL(int) SVMR0GlobalInit(void);
41VMMR0DECL(void) SVMR0GlobalTerm(void);
42VMMR0DECL(int) SVMR0Enter(PVM pVM, PVMCPU pVCpu, PHMGLOBALCPUINFO pCpu);
43VMMR0DECL(void) SVMR0ThreadCtxCallback(RTTHREADCTXEVENT enmEvent, PVMCPU pVCpu, bool fGlobalInit);
44VMMR0DECL(int) SVMR0EnableCpu(PHMGLOBALCPUINFO pCpu, PVM pVM, void *pvPageCpu, RTHCPHYS HCPhysCpuPage,
45 bool fEnabledBySystem, void *pvArg);
46VMMR0DECL(int) SVMR0DisableCpu(PHMGLOBALCPUINFO pCpu, void *pvPageCpu, RTHCPHYS pPageCpuPhys);
47VMMR0DECL(int) SVMR0InitVM(PVM pVM);
48VMMR0DECL(int) SVMR0TermVM(PVM pVM);
49VMMR0DECL(int) SVMR0SetupVM(PVM pVM);
50VMMR0DECL(VBOXSTRICTRC) SVMR0RunGuestCode(PVM pVM, PVMCPU pVCpu, PCPUMCTX pCtx);
51VMMR0DECL(int) SVMR0SaveHostState(PVM pVM, PVMCPU pVCpu);
52VMMR0DECL(int) SVMR0ImportStateOnDemand(PVMCPU pVCpu, PCPUMCTX pCtx, uint64_t fWhat);
53VMMR0DECL(int) SVMR0InvalidatePage(PVM pVM, PVMCPU pVCpu, RTGCPTR GCVirt);
54
55#if HC_ARCH_BITS == 32 && defined(VBOX_WITH_64_BITS_GUESTS)
56DECLASM(int) SVMR0VMSwitcherRun64(RTHCPHYS pVMCBHostPhys, RTHCPHYS pVMCBPhys, PCPUMCTX pCtx, PVM pVM, PVMCPU pVCpu);
57VMMR0DECL(int) SVMR0Execute64BitsHandler(PVM pVM, PVMCPU pVCpu, PCPUMCTX pCtx, HM64ON32OP enmOp, uint32_t cbParam,
58 uint32_t *paParam);
59#endif /* HC_ARCH_BITS == 32 && defined(VBOX_WITH_64_BITS_GUESTS) */
60
61/**
62 * Prepares for and executes VMRUN (32-bit guests).
63 *
64 * @returns VBox status code.
65 * @param pVMCBHostPhys Physical address of host VMCB.
66 * @param pVMCBPhys Physical address of the VMCB.
67 * @param pCtx Pointer to the guest CPU context.
68 * @param pVM The cross context VM structure. (Not used.)
69 * @param pVCpu The cross context virtual CPU structure. (Not used.)
70 */
71DECLASM(int) SVMR0VMRun(RTHCPHYS pVMCBHostPhys, RTHCPHYS pVMCBPhys, PCPUMCTX pCtx, PVM pVM, PVMCPU pVCpu);
72
73
74/**
75 * Prepares for and executes VMRUN (64-bit guests).
76 *
77 * @returns VBox status code.
78 * @param pVMCBHostPhys Physical address of host VMCB.
79 * @param pVMCBPhys Physical address of the VMCB.
80 * @param pCtx Pointer to the guest CPU context.
81 * @param pVM The cross context VM structure. (Not used.)
82 * @param pVCpu The cross context virtual CPU structure. (Not used.)
83 */
84DECLASM(int) SVMR0VMRun64(RTHCPHYS pVMCBHostPhys, RTHCPHYS pVMCBPhys, PCPUMCTX pCtx, PVM pVM, PVMCPU pVCpu);
85
86/**
87 * Executes INVLPGA.
88 *
89 * @param pPageGC Virtual page to invalidate.
90 * @param u32ASID Tagged TLB id.
91 */
92DECLASM(void) SVMR0InvlpgA(RTGCPTR pPageGC, uint32_t u32ASID);
93
94#endif /* IN_RING0 */
95
96/** @} */
97
98RT_C_DECLS_END
99
100#endif /* !___HMSVMR0_h */
101
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette