VirtualBox

source: vbox/trunk/src/VBox/VMM/VMMAll/REMAll.cpp@ 43667

Last change on this file since 43667 was 41965, checked in by vboxsync, 12 years ago

VMM: ran scm. Mostly svn:keywords changes (adding Revision).

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 8.2 KB
Line 
1/* $Id: REMAll.cpp 41965 2012-06-29 02:52:49Z vboxsync $ */
2/** @file
3 * REM - Recompiled Execution Monitor, all Contexts part.
4 */
5
6/*
7 * Copyright (C) 2006-2007 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
19/*******************************************************************************
20* Header Files *
21*******************************************************************************/
22#define LOG_GROUP LOG_GROUP_REM
23#ifdef VBOX_WITH_REM
24# include <VBox/vmm/rem.h>
25#endif
26#include <VBox/vmm/em.h>
27#include <VBox/vmm/vmm.h>
28#include "REMInternal.h"
29#include <VBox/vmm/vm.h>
30#include <VBox/err.h>
31#include <VBox/log.h>
32
33#include <iprt/asm.h>
34#include <iprt/assert.h>
35
36
37#ifndef IN_RING3
38
39/**
40 * Records a invlpg instruction for replaying upon REM entry.
41 *
42 * @param pVM Pointer to the VM.
43 * @param GCPtrPage The
44 */
45VMMDECL(void) REMNotifyInvalidatePage(PVM pVM, RTGCPTR GCPtrPage)
46{
47 /*
48 * Try take the REM lock and push the address onto the array.
49 */
50 if ( pVM->rem.s.cInvalidatedPages < RT_ELEMENTS(pVM->rem.s.aGCPtrInvalidatedPages)
51 && EMRemTryLock(pVM) == VINF_SUCCESS)
52 {
53 uint32_t iPage = pVM->rem.s.cInvalidatedPages;
54 if (iPage < RT_ELEMENTS(pVM->rem.s.aGCPtrInvalidatedPages))
55 {
56 ASMAtomicWriteU32(&pVM->rem.s.cInvalidatedPages, iPage + 1);
57 pVM->rem.s.aGCPtrInvalidatedPages[iPage] = GCPtrPage;
58
59 EMRemUnlock(pVM);
60 return;
61 }
62
63 CPUMSetChangedFlags(VMMGetCpu(pVM), CPUM_CHANGED_GLOBAL_TLB_FLUSH); /** @todo this array should be per-cpu technically speaking. */
64 ASMAtomicWriteU32(&pVM->rem.s.cInvalidatedPages, 0); /** @todo leave this alone? Optimize this code? */
65
66 EMRemUnlock(pVM);
67 }
68 else
69 {
70 /* Fallback: Simply tell the recompiler to flush its TLB. */
71 CPUMSetChangedFlags(VMMGetCpu(pVM), CPUM_CHANGED_GLOBAL_TLB_FLUSH);
72 ASMAtomicWriteU32(&pVM->rem.s.cInvalidatedPages, 0); /** @todo leave this alone?! Optimize this code? */
73 }
74
75 return;
76}
77
78
79/**
80 * Insert pending notification
81 *
82 * @param pVM Pointer to the VM.
83 * @param pRec Notification record to insert
84 */
85static void remNotifyHandlerInsert(PVM pVM, PREMHANDLERNOTIFICATION pRec)
86{
87 /*
88 * Fetch a free record.
89 */
90 uint32_t cFlushes = 0;
91 uint32_t idxFree;
92 PREMHANDLERNOTIFICATION pFree;
93 do
94 {
95 idxFree = ASMAtomicUoReadU32(&pVM->rem.s.idxFreeList);
96 if (idxFree == UINT32_MAX)
97 {
98 do
99 {
100 cFlushes++;
101 Assert(cFlushes != 128);
102 AssertFatal(cFlushes < _1M);
103 VMMRZCallRing3NoCpu(pVM, VMMCALLRING3_REM_REPLAY_HANDLER_NOTIFICATIONS, 0);
104 idxFree = ASMAtomicUoReadU32(&pVM->rem.s.idxFreeList);
105 } while (idxFree == UINT32_MAX);
106 }
107 pFree = &pVM->rem.s.aHandlerNotifications[idxFree];
108 } while (!ASMAtomicCmpXchgU32(&pVM->rem.s.idxFreeList, pFree->idxNext, idxFree));
109
110 /*
111 * Copy the record.
112 */
113 pFree->enmKind = pRec->enmKind;
114 pFree->u = pRec->u;
115
116 /*
117 * Insert it into the pending list.
118 */
119 uint32_t idxNext;
120 do
121 {
122 idxNext = ASMAtomicUoReadU32(&pVM->rem.s.idxPendingList);
123 ASMAtomicWriteU32(&pFree->idxNext, idxNext);
124 ASMCompilerBarrier();
125 } while (!ASMAtomicCmpXchgU32(&pVM->rem.s.idxPendingList, idxFree, idxNext));
126
127 VM_FF_SET(pVM, VM_FF_REM_HANDLER_NOTIFY);
128}
129
130
131/**
132 * Notification about a successful PGMR3HandlerPhysicalRegister() call.
133 *
134 * @param pVM Pointer to the VM.
135 * @param enmType Handler type.
136 * @param GCPhys Handler range address.
137 * @param cb Size of the handler range.
138 * @param fHasHCHandler Set if the handler have a HC callback function.
139 */
140VMMDECL(void) REMNotifyHandlerPhysicalRegister(PVM pVM, PGMPHYSHANDLERTYPE enmType, RTGCPHYS GCPhys, RTGCPHYS cb, bool fHasHCHandler)
141{
142 REMHANDLERNOTIFICATION Rec;
143 Rec.enmKind = REMHANDLERNOTIFICATIONKIND_PHYSICAL_REGISTER;
144 Rec.u.PhysicalRegister.enmType = enmType;
145 Rec.u.PhysicalRegister.GCPhys = GCPhys;
146 Rec.u.PhysicalRegister.cb = cb;
147 Rec.u.PhysicalRegister.fHasHCHandler = fHasHCHandler;
148 remNotifyHandlerInsert(pVM, &Rec);
149}
150
151
152/**
153 * Notification about a successful PGMR3HandlerPhysicalDeregister() operation.
154 *
155 * @param pVM Pointer to the VM.
156 * @param enmType Handler type.
157 * @param GCPhys Handler range address.
158 * @param cb Size of the handler range.
159 * @param fHasHCHandler Set if the handler have a HC callback function.
160 * @param fRestoreAsRAM Whether the to restore it as normal RAM or as unassigned memory.
161 */
162VMMDECL(void) REMNotifyHandlerPhysicalDeregister(PVM pVM, PGMPHYSHANDLERTYPE enmType, RTGCPHYS GCPhys, RTGCPHYS cb, bool fHasHCHandler, bool fRestoreAsRAM)
163{
164 REMHANDLERNOTIFICATION Rec;
165 Rec.enmKind = REMHANDLERNOTIFICATIONKIND_PHYSICAL_DEREGISTER;
166 Rec.u.PhysicalDeregister.enmType = enmType;
167 Rec.u.PhysicalDeregister.GCPhys = GCPhys;
168 Rec.u.PhysicalDeregister.cb = cb;
169 Rec.u.PhysicalDeregister.fHasHCHandler = fHasHCHandler;
170 Rec.u.PhysicalDeregister.fRestoreAsRAM = fRestoreAsRAM;
171 remNotifyHandlerInsert(pVM, &Rec);
172}
173
174
175/**
176 * Notification about a successful PGMR3HandlerPhysicalModify() call.
177 *
178 * @param pVM Pointer to the VM.
179 * @param enmType Handler type.
180 * @param GCPhysOld Old handler range address.
181 * @param GCPhysNew New handler range address.
182 * @param cb Size of the handler range.
183 * @param fHasHCHandler Set if the handler have a HC callback function.
184 * @param fRestoreAsRAM Whether the to restore it as normal RAM or as unassigned memory.
185 */
186VMMDECL(void) REMNotifyHandlerPhysicalModify(PVM pVM, PGMPHYSHANDLERTYPE enmType, RTGCPHYS GCPhysOld, RTGCPHYS GCPhysNew, RTGCPHYS cb, bool fHasHCHandler, bool fRestoreAsRAM)
187{
188 REMHANDLERNOTIFICATION Rec;
189 Rec.enmKind = REMHANDLERNOTIFICATIONKIND_PHYSICAL_MODIFY;
190 Rec.u.PhysicalModify.enmType = enmType;
191 Rec.u.PhysicalModify.GCPhysOld = GCPhysOld;
192 Rec.u.PhysicalModify.GCPhysNew = GCPhysNew;
193 Rec.u.PhysicalModify.cb = cb;
194 Rec.u.PhysicalModify.fHasHCHandler = fHasHCHandler;
195 Rec.u.PhysicalModify.fRestoreAsRAM = fRestoreAsRAM;
196 remNotifyHandlerInsert(pVM, &Rec);
197}
198
199#endif /* !IN_RING3 */
200
201#ifdef IN_RC
202/**
203 * Flushes the physical handler notifications if the queue is almost full.
204 *
205 * This is for avoiding trouble in RC when changing CR3.
206 *
207 * @param pVM Pointer to the VM.
208 * @param pVCpu Pointer to the VMCPU of the calling EMT.
209 */
210VMMDECL(void) REMNotifyHandlerPhysicalFlushIfAlmostFull(PVM pVM, PVMCPU pVCpu)
211{
212 Assert(pVM->cCpus == 1); NOREF(pVCpu);
213
214 /*
215 * Less than 48 items means we should flush.
216 */
217 uint32_t cFree = 0;
218 for (uint32_t idx = pVM->rem.s.idxFreeList;
219 idx != UINT32_MAX;
220 idx = pVM->rem.s.aHandlerNotifications[idx].idxNext)
221 {
222 Assert(idx < RT_ELEMENTS(pVM->rem.s.aHandlerNotifications));
223 if (++cFree >= 48)
224 return;
225 }
226 AssertRelease(VM_FF_ISSET(pVM, VM_FF_REM_HANDLER_NOTIFY));
227 AssertRelease(pVM->rem.s.idxPendingList != UINT32_MAX);
228
229 /* Ok, we gotta flush them. */
230 VMMRZCallRing3NoCpu(pVM, VMMCALLRING3_REM_REPLAY_HANDLER_NOTIFICATIONS, 0);
231
232 AssertRelease(pVM->rem.s.idxPendingList == UINT32_MAX);
233 AssertRelease(pVM->rem.s.idxFreeList != UINT32_MAX);
234}
235#endif /* IN_RC */
236
237
238/**
239 * Make REM flush all translation block upon the next call to REMR3State().
240 *
241 * @param pVM Pointer to the VM.
242 */
243VMMDECL(void) REMFlushTBs(PVM pVM)
244{
245 LogFlow(("REMFlushTBs: fFlushTBs=%RTbool fInREM=%RTbool fInStateSync=%RTbool\n",
246 pVM->rem.s.fFlushTBs, pVM->rem.s.fInREM, pVM->rem.s.fInStateSync));
247 pVM->rem.s.fFlushTBs = true;
248}
249
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use