1 | /* $Id: HWACCMAll.cpp 9115 2008-05-26 11:18:34Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * HWACCM - All contexts.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2007 Sun Microsystems, Inc.
|
---|
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 | * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
18 | * Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
19 | * additional information or have any questions.
|
---|
20 | */
|
---|
21 |
|
---|
22 |
|
---|
23 | /*******************************************************************************
|
---|
24 | * Header Files *
|
---|
25 | *******************************************************************************/
|
---|
26 | #define LOG_GROUP LOG_GROUP_HWACCM
|
---|
27 | #include <VBox/hwaccm.h>
|
---|
28 | #include "HWACCMInternal.h"
|
---|
29 | #include <VBox/vm.h>
|
---|
30 | #include <VBox/x86.h>
|
---|
31 | #include <VBox/hwacc_vmx.h>
|
---|
32 | #include <VBox/hwacc_svm.h>
|
---|
33 | #include <VBox/pgm.h>
|
---|
34 | #include <VBox/pdm.h>
|
---|
35 | #include <VBox/err.h>
|
---|
36 | #include <VBox/log.h>
|
---|
37 | #include <VBox/selm.h>
|
---|
38 | #include <VBox/iom.h>
|
---|
39 | #include <iprt/param.h>
|
---|
40 | #include <iprt/assert.h>
|
---|
41 | #include <iprt/asm.h>
|
---|
42 | #include <iprt/string.h>
|
---|
43 | #include <iprt/memobj.h>
|
---|
44 | #include <iprt/cpuset.h>
|
---|
45 |
|
---|
46 | /**
|
---|
47 | * Invalidates a guest page
|
---|
48 | *
|
---|
49 | * @returns VBox status code.
|
---|
50 | * @param pVM The VM to operate on.
|
---|
51 | * @param GCVirt Page to invalidate
|
---|
52 | */
|
---|
53 | HWACCMDECL(int) HWACCMInvalidatePage(PVM pVM, RTGCPTR GCVirt)
|
---|
54 | {
|
---|
55 | /* @todo Intel for nested paging */
|
---|
56 | #ifdef IN_RING0
|
---|
57 | if (pVM->hwaccm.s.svm.fSupported)
|
---|
58 | return SVMR0InvalidatePage(pVM, GCVirt);
|
---|
59 | #endif
|
---|
60 |
|
---|
61 | return VINF_SUCCESS;
|
---|
62 | }
|
---|
63 |
|
---|
64 | /**
|
---|
65 | * Flushes the guest TLB
|
---|
66 | *
|
---|
67 | * @returns VBox status code.
|
---|
68 | * @param pVM The VM to operate on.
|
---|
69 | */
|
---|
70 | HWACCMDECL(int) HWACCMFlushTLB(PVM pVM)
|
---|
71 | {
|
---|
72 | /* @todo Intel for nested paging */
|
---|
73 | if (pVM->hwaccm.s.svm.fSupported)
|
---|
74 | {
|
---|
75 | pVM->hwaccm.s.svm.fForceTLBFlush = true;
|
---|
76 | STAM_COUNTER_INC(&pVM->hwaccm.s.StatFlushTLBManual);
|
---|
77 | }
|
---|
78 | return VINF_SUCCESS;
|
---|
79 | }
|
---|
80 |
|
---|
81 | /**
|
---|
82 | * Checks if nested paging is enabled
|
---|
83 | *
|
---|
84 | * @returns boolean
|
---|
85 | * @param pVM The VM to operate on.
|
---|
86 | */
|
---|
87 | HWACCMDECL(bool) HWACCMIsNestedPagingActive(PVM pVM)
|
---|
88 | {
|
---|
89 | return HWACCMIsEnabled(pVM) && pVM->hwaccm.s.fNestedPaging;
|
---|
90 | }
|
---|
91 |
|
---|
92 |
|
---|
93 | /**
|
---|
94 | * Invalidates a guest page by physical address
|
---|
95 | *
|
---|
96 | * NOTE: Assumes the current instruction references this physical page though a virtual address!!
|
---|
97 | *
|
---|
98 | * @returns VBox status code.
|
---|
99 | * @param pVM The VM to operate on.
|
---|
100 | * @param GCPhys Page to invalidate
|
---|
101 | */
|
---|
102 | HWACCMDECL(int) HWACCMInvalidatePhysPage(PVM pVM, RTGCPHYS GCPhys)
|
---|
103 | {
|
---|
104 | if (!HWACCMIsNestedPagingActive(pVM))
|
---|
105 | return VINF_SUCCESS;
|
---|
106 |
|
---|
107 | #ifdef IN_RING0
|
---|
108 | /* @todo Intel for nested paging */
|
---|
109 | if (pVM->hwaccm.s.svm.fSupported)
|
---|
110 | {
|
---|
111 | SVMR0InvalidatePhysPage(pVM, GCPhys);
|
---|
112 | }
|
---|
113 | #else
|
---|
114 | HWACCMFlushTLB(pVM);
|
---|
115 | #endif
|
---|
116 | return VINF_SUCCESS;
|
---|
117 | }
|
---|