VirtualBox

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

Last change on this file since 3254 was 2981, checked in by vboxsync, 17 years ago

InnoTek -> innotek: all the headers and comments.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 5.7 KB
Line 
1/* $Id: REMAll.cpp 2981 2007-06-01 16:01:28Z vboxsync $ */
2/** @file
3 * REM - Recompiled Execution Monitor, all Contexts part.
4 */
5
6/*
7 * Copyright (C) 2006-2007 innotek GmbH
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 as published by the Free Software Foundation,
13 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
14 * distribution. VirtualBox OSE is distributed in the hope that it will
15 * be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * If you received this file as part of a commercial VirtualBox
18 * distribution, then only the terms of your commercial VirtualBox
19 * license agreement apply instead of the previous paragraph.
20 */
21
22
23/*******************************************************************************
24* Global Variables *
25*******************************************************************************/
26#define LOG_GROUP LOG_GROUP_REM
27#include <VBox/rem.h>
28#include <VBox/vmm.h>
29#include "REMInternal.h"
30#include <VBox/vm.h>
31#include <VBox/err.h>
32#include <VBox/log.h>
33
34#include <iprt/assert.h>
35
36
37/**
38 * Records a invlpg instruction for replaying upon REM entry.
39 *
40 * @returns VINF_SUCCESS on success.
41 * @returns VERR_REM_FLUSHED_PAGES_OVERFLOW if a return to HC for flushing of
42 * recorded pages is required before the call can succeed.
43 * @param pVM The VM handle.
44 * @param GCPtrPage The
45 */
46REMDECL(int) REMNotifyInvalidatePage(PVM pVM, RTGCPTR GCPtrPage)
47{
48 if (pVM->rem.s.cInvalidatedPages < ELEMENTS(pVM->rem.s.aGCPtrInvalidatedPages))
49 {
50 /*
51 * We sync them back in REMR3State.
52 */
53 pVM->rem.s.aGCPtrInvalidatedPages[pVM->rem.s.cInvalidatedPages++] = GCPtrPage;
54 return VINF_SUCCESS;
55 }
56 return VERR_REM_FLUSHED_PAGES_OVERFLOW;
57}
58
59
60/**
61 * Flushes the handler notifications by calling the host.
62 *
63 * @param pVM The VM handle.
64 */
65static void remFlushHandlerNotifications(PVM pVM)
66{
67#ifdef IN_GC
68 VMMGCCallHost(pVM, VMMCALLHOST_REM_REPLAY_HANDLER_NOTIFICATIONS, 0);
69#elif defined(IN_RING0)
70 /** @todo necessary? */
71 VMMR0CallHost(pVM, VMMCALLHOST_REM_REPLAY_HANDLER_NOTIFICATIONS, 0);
72#else
73 AssertReleaseMsgFailed(("Ring 3 call????.\n"));
74#endif
75 Assert(pVM->rem.s.cHandlerNotifications == 0);
76}
77
78
79/**
80 * Notification about a successful PGMR3HandlerPhysicalRegister() call.
81 *
82 * @param pVM VM Handle.
83 * @param enmType Handler type.
84 * @param GCPhys Handler range address.
85 * @param cb Size of the handler range.
86 * @param fHasHCHandler Set if the handler have a HC callback function.
87 */
88REMDECL(void) REMNotifyHandlerPhysicalRegister(PVM pVM, PGMPHYSHANDLERTYPE enmType, RTGCPHYS GCPhys, RTGCPHYS cb, bool fHasHCHandler)
89{
90 if (pVM->rem.s.cHandlerNotifications >= ELEMENTS(pVM->rem.s.aHandlerNotifications))
91 remFlushHandlerNotifications(pVM);
92 PREMHANDLERNOTIFICATION pRec = &pVM->rem.s.aHandlerNotifications[pVM->rem.s.cHandlerNotifications++];
93 pRec->enmKind = REMHANDLERNOTIFICATIONKIND_PHYSICAL_REGISTER;
94 pRec->u.PhysicalRegister.enmType = enmType;
95 pRec->u.PhysicalRegister.GCPhys = GCPhys;
96 pRec->u.PhysicalRegister.cb = cb;
97 pRec->u.PhysicalRegister.fHasHCHandler = fHasHCHandler;
98}
99
100
101/**
102 * Notification about a successful PGMR3HandlerPhysicalDeregister() operation.
103 *
104 * @param pVM VM Handle.
105 * @param enmType Handler type.
106 * @param GCPhys Handler range address.
107 * @param cb Size of the handler range.
108 * @param fHasHCHandler Set if the handler have a HC callback function.
109 * @param pvHCPtr The HC virtual address corresponding to GCPhys if available.
110 */
111REMDECL(void) REMNotifyHandlerPhysicalDeregister(PVM pVM, PGMPHYSHANDLERTYPE enmType, RTGCPHYS GCPhys, RTGCPHYS cb, bool fHasHCHandler, RTHCPTR pvHCPtr)
112{
113 if (pVM->rem.s.cHandlerNotifications >= ELEMENTS(pVM->rem.s.aHandlerNotifications))
114 remFlushHandlerNotifications(pVM);
115 PREMHANDLERNOTIFICATION pRec = &pVM->rem.s.aHandlerNotifications[pVM->rem.s.cHandlerNotifications++];
116 pRec->enmKind = REMHANDLERNOTIFICATIONKIND_PHYSICAL_DEREGISTER;
117 pRec->u.PhysicalDeregister.enmType = enmType;
118 pRec->u.PhysicalDeregister.GCPhys = GCPhys;
119 pRec->u.PhysicalDeregister.cb = cb;
120 pRec->u.PhysicalDeregister.fHasHCHandler = fHasHCHandler;
121 pRec->u.PhysicalDeregister.pvHCPtr = pvHCPtr;
122}
123
124
125/**
126 * Notification about a successful PGMR3HandlerPhysicalModify() call.
127 *
128 * @param pVM VM Handle.
129 * @param enmType Handler type.
130 * @param GCPhysOld Old handler range address.
131 * @param GCPhysNew New handler range address.
132 * @param cb Size of the handler range.
133 * @param fHasHCHandler Set if the handler have a HC callback function.
134 * @param pvHCPtr The HC virtual address corresponding to GCPhys if available.
135 */
136REMDECL(void) REMNotifyHandlerPhysicalModify(PVM pVM, PGMPHYSHANDLERTYPE enmType, RTGCPHYS GCPhysOld, RTGCPHYS GCPhysNew, RTGCPHYS cb, bool fHasHCHandler, RTHCPTR pvHCPtr)
137{
138 if (pVM->rem.s.cHandlerNotifications >= ELEMENTS(pVM->rem.s.aHandlerNotifications))
139 remFlushHandlerNotifications(pVM);
140 PREMHANDLERNOTIFICATION pRec = &pVM->rem.s.aHandlerNotifications[pVM->rem.s.cHandlerNotifications++];
141 pRec->enmKind = REMHANDLERNOTIFICATIONKIND_PHYSICAL_MODIFY;
142 pRec->u.PhysicalModify.enmType = enmType;
143 pRec->u.PhysicalModify.GCPhysOld = GCPhysOld;
144 pRec->u.PhysicalModify.GCPhysNew = GCPhysNew;
145 pRec->u.PhysicalModify.cb = cb;
146 pRec->u.PhysicalModify.fHasHCHandler = fHasHCHandler;
147 pRec->u.PhysicalModify.pvHCPtr = pvHCPtr;
148}
149
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