VirtualBox

source: vbox/trunk/include/VBox/rem.h@ 5790

Last change on this file since 5790 was 4616, checked in by vboxsync, 17 years ago

Ditto for REM(R3)NotifyHandlerPhysicalDeregister.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 13.4 KB
Line 
1/** @file
2 * REM - The Recompiled Execution Manager.
3 */
4
5/*
6 * Copyright (C) 2006-2007 innotek GmbH
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License as published by the Free Software Foundation,
12 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
13 * distribution. VirtualBox OSE is distributed in the hope that it will
14 * be useful, but WITHOUT ANY WARRANTY of any kind.
15 */
16
17#ifndef ___VBox_rem_h
18#define ___VBox_rem_h
19
20#include <VBox/cdefs.h>
21#include <VBox/types.h>
22#include <VBox/pgm.h>
23#include <VBox/vmapi.h>
24
25
26__BEGIN_DECLS
27
28/** @defgroup grp_rem The Recompiled Execution Manager API
29 * @{
30 */
31
32/** No pending interrupt. */
33#define REM_NO_PENDING_IRQ (~(uint32_t)0)
34
35
36#if defined(IN_RING0) || defined(IN_GC)
37
38/**
39 * Records a invlpg instruction for replaying upon REM entry.
40 *
41 * @returns VINF_SUCCESS on success.
42 * @returns VERR_REM_FLUSHED_PAGES_OVERFLOW if a return to HC for flushing of
43 * recorded pages is required before the call can succeed.
44 * @param pVM The VM handle.
45 * @param GCPtrPage The address of the invalidated page.
46 */
47REMDECL(int) REMNotifyInvalidatePage(PVM pVM, RTGCPTR GCPtrPage);
48
49/**
50 * Notification about a successful PGMR3HandlerPhysicalRegister() call.
51 *
52 * @param pVM VM Handle.
53 * @param enmType Handler type.
54 * @param GCPhys Handler range address.
55 * @param cb Size of the handler range.
56 * @param fHasHCHandler Set if the handler have a HC callback function.
57 */
58REMDECL(void) REMNotifyHandlerPhysicalRegister(PVM pVM, PGMPHYSHANDLERTYPE enmType, RTGCPHYS GCPhys, RTGCPHYS cb, bool fHasHCHandler);
59
60/**
61 * Notification about a successful PGMR3HandlerPhysicalDeregister() operation.
62 *
63 * @param pVM VM Handle.
64 * @param enmType Handler type.
65 * @param GCPhys Handler range address.
66 * @param cb Size of the handler range.
67 * @param fHasHCHandler Set if the handler have a HC callback function.
68 * @param fRestoreAsRAM Whether the to restore it as normal RAM or as unassigned memory.
69 */
70REMDECL(void) REMNotifyHandlerPhysicalDeregister(PVM pVM, PGMPHYSHANDLERTYPE enmType, RTGCPHYS GCPhys, RTGCPHYS cb, bool fHasHCHandler, bool fRestoreAsRAM);
71
72/**
73 * Notification about a successful PGMR3HandlerPhysicalModify() call.
74 *
75 * @param pVM VM Handle.
76 * @param enmType Handler type.
77 * @param GCPhysOld Old handler range address.
78 * @param GCPhysNew New handler range address.
79 * @param cb Size of the handler range.
80 * @param fHasHCHandler Set if the handler have a HC callback function.
81 * @param fRestoreAsRAM Whether the to restore it as normal RAM or as unassigned memory.
82 */
83REMDECL(void) REMNotifyHandlerPhysicalModify(PVM pVM, PGMPHYSHANDLERTYPE enmType, RTGCPHYS GCPhysOld, RTGCPHYS GCPhysNew, RTGCPHYS cb, bool fHasHCHandler, bool fRestoreAsRAM);
84
85#endif /* IN_RING0 || IN_GC */
86
87
88#ifdef IN_RING3
89/** @defgroup grp_rem_r3 REM Host Context Ring 3 API
90 * @ingroup grp_rem
91 * @{
92 */
93
94/**
95 * Initializes the REM.
96 *
97 * @returns VBox status code.
98 * @param pVM The VM to operate on.
99 */
100REMR3DECL(int) REMR3Init(PVM pVM);
101
102/**
103 * Terminates the REM.
104 *
105 * Termination means cleaning up and freeing all resources,
106 * the VM it self is at this point powered off or suspended.
107 *
108 * @returns VBox status code.
109 * @param pVM The VM to operate on.
110 */
111REMR3DECL(int) REMR3Term(PVM pVM);
112
113/**
114 * The VM is being reset.
115 *
116 * For the REM component this means to call the cpu_reset() and
117 * reinitialize some state variables.
118 *
119 * @param pVM VM handle.
120 */
121REMR3DECL(void) REMR3Reset(PVM pVM);
122
123/**
124 * Runs code in recompiled mode.
125 *
126 * Before calling this function the REM state needs to be in sync with
127 * the VM. Call REMR3State() to perform the sync. It's only necessary
128 * (and permitted) to sync at the first call to REMR3Step()/REMR3Run()
129 * and after calling REMR3StateBack().
130 *
131 * @returns VBox status code.
132 *
133 * @param pVM VM Handle.
134 */
135REMR3DECL(int) REMR3Run(PVM pVM);
136
137/**
138 * Emulate an instruction.
139 *
140 * This function executes one instruction without letting anyone
141 * interrupt it. This is intended for being called while being in
142 * raw mode and thus will take care of all the state syncing between
143 * REM and the rest.
144 *
145 * @returns VBox status code.
146 * @param pVM VM handle.
147 */
148REMR3DECL(int) REMR3EmulateInstruction(PVM pVM);
149
150/**
151 * Single steps an instruction in recompiled mode.
152 *
153 * Before calling this function the REM state needs to be in sync with
154 * the VM. Call REMR3State() to perform the sync. It's only necessary
155 * (and permitted) to sync at the first call to REMR3Step()/REMR3Run()
156 * and after calling REMR3StateBack().
157 *
158 * @returns VBox status code.
159 *
160 * @param pVM VM Handle.
161 */
162REMR3DECL(int) REMR3Step(PVM pVM);
163
164/**
165 * Set a breakpoint using the REM facilities.
166 *
167 * @returns VBox status code.
168 * @param pVM The VM handle.
169 * @param Address The breakpoint address.
170 * @thread The emulation thread.
171 */
172REMR3DECL(int) REMR3BreakpointSet(PVM pVM, RTGCUINTPTR Address);
173
174/**
175 * Clears a breakpoint set by REMR3BreakpointSet().
176 *
177 * @returns VBox status code.
178 * @param pVM The VM handle.
179 * @param Address The breakpoint address.
180 * @thread The emulation thread.
181 */
182REMR3DECL(int) REMR3BreakpointClear(PVM pVM, RTGCUINTPTR Address);
183
184/**
185 * Syncs the internal REM state with the VM.
186 *
187 * This must be called before REMR3Run() is invoked whenever when the REM
188 * state is not up to date. Calling it several times in a row is not
189 * permitted.
190 *
191 * @returns VBox status code.
192 *
193 * @param pVM VM Handle.
194 *
195 * @remark The caller has to check for important FFs before calling REMR3Run. REMR3State will
196 * no do this since the majority of the callers don't want any unnecessary of events
197 * pending that would immediatly interrupt execution.
198 */
199REMR3DECL(int) REMR3State(PVM pVM);
200
201/**
202 * Syncs back changes in the REM state to the the VM state.
203 *
204 * This must be called after invoking REMR3Run().
205 * Calling it several times in a row is not permitted.
206 *
207 * @returns VBox status code.
208 *
209 * @param pVM VM Handle.
210 */
211REMR3DECL(int) REMR3StateBack(PVM pVM);
212
213/**
214 * Update the VMM state information if we're currently in REM.
215 *
216 * This method is used by the DBGF and PDMDevice when there is any uncertainty of whether
217 * we're currently executing in REM and the VMM state is invalid. This method will of
218 * course check that we're executing in REM before syncing any data over to the VMM.
219 *
220 * @param pVM The VM handle.
221 */
222REMR3DECL(void) REMR3StateUpdate(PVM pVM);
223
224/**
225 * Notify the recompiler about Address Gate 20 state change.
226 *
227 * This notification is required since A20 gate changes are
228 * initialized from a device driver and the VM might just as
229 * well be in REM mode as in RAW mode.
230 *
231 * @param pVM VM handle.
232 * @param fEnable True if the gate should be enabled.
233 * False if the gate should be disabled.
234 */
235REMR3DECL(void) REMR3A20Set(PVM pVM, bool fEnable);
236
237/**
238 * Enables or disables singled stepped disassembly.
239 *
240 * @returns VBox status code.
241 * @param pVM VM handle.
242 * @param fEnable To enable set this flag, to disable clear it.
243 */
244REMR3DECL(int) REMR3DisasEnableStepping(PVM pVM, bool fEnable);
245
246/**
247 * Replays the recorded invalidated pages.
248 * Called in response to VERR_REM_FLUSHED_PAGES_OVERFLOW from the RAW execution loop.
249 *
250 * @param pVM VM handle.
251 */
252REMR3DECL(void) REMR3ReplayInvalidatedPages(PVM pVM);
253
254/**
255 * Replays the recorded physical handler notifications.
256 *
257 * @param pVM VM handle.
258 */
259REMR3DECL(void) REMR3ReplayHandlerNotifications(PVM pVM);
260
261/**
262 * Notify REM about changed code page.
263 *
264 * @returns VBox status code.
265 * @param pVM VM handle.
266 * @param pvCodePage Code page address
267 */
268REMR3DECL(int) REMR3NotifyCodePageChanged(PVM pVM, RTGCPTR pvCodePage);
269
270/**
271 * Notification about a successful MMR3RamRegister() call.
272 *
273 * @param pVM VM handle.
274 * @param GCPhys The physical address the RAM.
275 * @param cb Size of the memory.
276 * @param fFlags Flags of the MM_RAM_FLAGS_* defines.
277 * @param pvRam The HC address of the RAM.
278 */
279REMR3DECL(void) REMR3NotifyPhysRamRegister(PVM pVM, RTGCPHYS GCPhys, RTUINT cb, void *pvRam, unsigned fFlags);
280
281/**
282 * Notification about a successful PGMR3PhysRegisterChunk() call.
283 *
284 * @param pVM VM handle.
285 * @param GCPhys The physical address the RAM.
286 * @param cb Size of the memory.
287 * @param pvRam The HC address of the RAM.
288 * @param fFlags Flags of the MM_RAM_FLAGS_* defines.
289 */
290REMR3DECL(void) REMR3NotifyPhysRamChunkRegister(PVM pVM, RTGCPHYS GCPhys, RTUINT cb, RTHCUINTPTR pvRam, unsigned fFlags);
291
292/**
293 * Notification about a successful MMR3PhysRomRegister() call.
294 *
295 * @param pVM VM handle.
296 * @param GCPhys The physical address of the ROM.
297 * @param cb The size of the ROM.
298 * @param pvCopy Pointer to the ROM copy.
299 * @param fShadow Whether it's currently writable shadow ROM or normal readonly ROM.
300 * This function will be called when ever the protection of the
301 * shadow ROM changes (at reset and end of POST).
302 */
303REMR3DECL(void) REMR3NotifyPhysRomRegister(PVM pVM, RTGCPHYS GCPhys, RTUINT cb, void *pvCopy, bool fShadow);
304
305/**
306 * Notification about a successful MMR3PhysRegister() call.
307 *
308 * @param pVM VM Handle.
309 * @param GCPhys Start physical address.
310 * @param cb The size of the range.
311 */
312REMR3DECL(void) REMR3NotifyPhysReserve(PVM pVM, RTGCPHYS GCPhys, RTUINT cb);
313
314/**
315 * Notification about a successful PGMR3HandlerPhysicalRegister() call.
316 *
317 * @param pVM VM Handle.
318 * @param enmType Handler type.
319 * @param GCPhys Handler range address.
320 * @param cb Size of the handler range.
321 * @param fHasHCHandler Set if the handler have a HC callback function.
322 */
323REMR3DECL(void) REMR3NotifyHandlerPhysicalRegister(PVM pVM, PGMPHYSHANDLERTYPE enmType, RTGCPHYS GCPhys, RTGCPHYS cb, bool fHasHCHandler);
324
325/**
326 * Notification about a successful PGMR3HandlerPhysicalDeregister() operation.
327 *
328 * @param pVM VM Handle.
329 * @param enmType Handler type.
330 * @param GCPhys Handler range address.
331 * @param cb Size of the handler range.
332 * @param fHasHCHandler Set if the handler have a HC callback function.
333 * @param fRestoreAsRAM Whether the to restore it as normal RAM or as unassigned memory.
334 */
335REMR3DECL(void) REMR3NotifyHandlerPhysicalDeregister(PVM pVM, PGMPHYSHANDLERTYPE enmType, RTGCPHYS GCPhys, RTGCPHYS cb, bool fHasHCHandler, bool fRestoreAsRAM);
336
337/**
338 * Notification about a successful PGMR3HandlerPhysicalModify() call.
339 *
340 * @param pVM VM Handle.
341 * @param enmType Handler type.
342 * @param GCPhysOld Old handler range address.
343 * @param GCPhysNew New handler range address.
344 * @param cb Size of the handler range.
345 * @param fHasHCHandler Set if the handler have a HC callback function.
346 * @param fRestoreAsRAM Whether the to restore it as normal RAM or as unassigned memory.
347 */
348REMR3DECL(void) REMR3NotifyHandlerPhysicalModify(PVM pVM, PGMPHYSHANDLERTYPE enmType, RTGCPHYS GCPhysOld, RTGCPHYS GCPhysNew, RTGCPHYS cb, bool fHasHCHandler, bool fRestoreAsRAM);
349
350/**
351 * Notification about a pending interrupt.
352 *
353 * @param pVM VM Handle.
354 * @param u8Interrupt Interrupt
355 * @thread The emulation thread.
356 */
357REMR3DECL(void) REMR3NotifyPendingInterrupt(PVM pVM, uint8_t u8Interrupt);
358
359/**
360 * Notification about a pending interrupt.
361 *
362 * @returns Pending interrupt or REM_NO_PENDING_IRQ
363 * @param pVM VM Handle.
364 * @thread The emulation thread.
365 */
366REMR3DECL(uint32_t) REMR3QueryPendingInterrupt(PVM pVM);
367
368/**
369 * Notification about the interrupt FF being set.
370 *
371 * @param pVM VM Handle.
372 * @thread The emulation thread.
373 */
374REMR3DECL(void) REMR3NotifyInterruptSet(PVM pVM);
375
376/**
377 * Notification about the interrupt FF being set.
378 *
379 * @param pVM VM Handle.
380 * @thread The emulation thread.
381 */
382REMR3DECL(void) REMR3NotifyInterruptClear(PVM pVM);
383
384/**
385 * Notification about pending timer(s).
386 *
387 * @param pVM VM Handle.
388 * @thread Any.
389 */
390REMR3DECL(void) REMR3NotifyTimerPending(PVM pVM);
391
392/**
393 * Notification about pending DMA transfers.
394 *
395 * @param pVM VM Handle.
396 * @thread Any.
397 */
398REMR3DECL(void) REMR3NotifyDmaPending(PVM pVM);
399
400/**
401 * Notification about pending timer(s).
402 *
403 * @param pVM VM Handle.
404 * @thread Any.
405 */
406REMR3DECL(void) REMR3NotifyQueuePending(PVM pVM);
407
408/**
409 * Notification about pending FF set by an external thread.
410 *
411 * @param pVM VM handle.
412 * @thread Any.
413 */
414REMR3DECL(void) REMR3NotifyFF(PVM pVM);
415
416#ifdef VBOX_STRICT
417/**
418 * Checks if we're handling access to this page or not.
419 *
420 * @returns true if we're trapping access.
421 * @returns false if we aren't.
422 * @param pVM The VM handle.
423 * @param GCPhys The physical address.
424 *
425 * @remark This function will only work correctly in VBOX_STRICT builds!
426 */
427REMDECL(bool) REMR3IsPageAccessHandled(PVM pVM, RTGCPHYS GCPhys);
428#endif
429
430/** @} */
431#endif
432
433
434/** @} */
435__END_DECLS
436
437
438#endif
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