VirtualBox

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

Last change on this file since 8006 was 7604, checked in by vboxsync, 16 years ago

Stripped doxygen function headers from the header - documented in source.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.3 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 (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * The contents of this file may alternatively be used under the terms
17 * of the Common Development and Distribution License Version 1.0
18 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19 * VirtualBox OSE distribution, in which case the provisions of the
20 * CDDL are applicable instead of those of the GPL.
21 *
22 * You may elect to license modified versions of this file under the
23 * terms and conditions of either the GPL or the CDDL or both.
24 */
25
26#ifndef ___VBox_rem_h
27#define ___VBox_rem_h
28
29#include <VBox/cdefs.h>
30#include <VBox/types.h>
31#include <VBox/pgm.h>
32#include <VBox/vmapi.h>
33
34
35__BEGIN_DECLS
36
37/** @defgroup grp_rem The Recompiled Execution Manager API
38 * @{
39 */
40
41/** No pending interrupt. */
42#define REM_NO_PENDING_IRQ (~(uint32_t)0)
43
44
45#if defined(IN_RING0) || defined(IN_GC)
46REMDECL(int) REMNotifyInvalidatePage(PVM pVM, RTGCPTR GCPtrPage);
47REMDECL(void) REMNotifyHandlerPhysicalRegister(PVM pVM, PGMPHYSHANDLERTYPE enmType, RTGCPHYS GCPhys, RTGCPHYS cb, bool fHasHCHandler);
48REMDECL(void) REMNotifyHandlerPhysicalDeregister(PVM pVM, PGMPHYSHANDLERTYPE enmType, RTGCPHYS GCPhys, RTGCPHYS cb, bool fHasHCHandler, bool fRestoreAsRAM);
49REMDECL(void) REMNotifyHandlerPhysicalModify(PVM pVM, PGMPHYSHANDLERTYPE enmType, RTGCPHYS GCPhysOld, RTGCPHYS GCPhysNew, RTGCPHYS cb, bool fHasHCHandler, bool fRestoreAsRAM);
50#endif /* IN_RING0 || IN_GC */
51
52
53#ifdef IN_RING3
54/** @defgroup grp_rem_r3 REM Host Context Ring 3 API
55 * @ingroup grp_rem
56 * @{
57 */
58REMR3DECL(int) REMR3Init(PVM pVM);
59REMR3DECL(int) REMR3Term(PVM pVM);
60REMR3DECL(void) REMR3Reset(PVM pVM);
61REMR3DECL(int) REMR3Run(PVM pVM);
62REMR3DECL(int) REMR3EmulateInstruction(PVM pVM);
63REMR3DECL(int) REMR3Step(PVM pVM);
64REMR3DECL(int) REMR3BreakpointSet(PVM pVM, RTGCUINTPTR Address);
65REMR3DECL(int) REMR3BreakpointClear(PVM pVM, RTGCUINTPTR Address);
66REMR3DECL(int) REMR3State(PVM pVM);
67REMR3DECL(int) REMR3StateBack(PVM pVM);
68REMR3DECL(void) REMR3StateUpdate(PVM pVM);
69REMR3DECL(void) REMR3A20Set(PVM pVM, bool fEnable);
70REMR3DECL(int) REMR3DisasEnableStepping(PVM pVM, bool fEnable);
71REMR3DECL(void) REMR3ReplayInvalidatedPages(PVM pVM);
72REMR3DECL(void) REMR3ReplayHandlerNotifications(PVM pVM);
73REMR3DECL(int) REMR3NotifyCodePageChanged(PVM pVM, RTGCPTR pvCodePage);
74REMR3DECL(void) REMR3NotifyPhysRamRegister(PVM pVM, RTGCPHYS GCPhys, RTUINT cb, unsigned fFlags);
75#ifndef VBOX_WITH_NEW_PHYS_CODE
76REMR3DECL(void) REMR3NotifyPhysRamChunkRegister(PVM pVM, RTGCPHYS GCPhys, RTUINT cb, RTHCUINTPTR pvRam, unsigned fFlags);
77#endif
78REMR3DECL(void) REMR3NotifyPhysRomRegister(PVM pVM, RTGCPHYS GCPhys, RTUINT cb, void *pvCopy, bool fShadow);
79REMR3DECL(void) REMR3NotifyPhysReserve(PVM pVM, RTGCPHYS GCPhys, RTUINT cb);
80REMR3DECL(void) REMR3NotifyHandlerPhysicalRegister(PVM pVM, PGMPHYSHANDLERTYPE enmType, RTGCPHYS GCPhys, RTGCPHYS cb, bool fHasHCHandler);
81REMR3DECL(void) REMR3NotifyHandlerPhysicalDeregister(PVM pVM, PGMPHYSHANDLERTYPE enmType, RTGCPHYS GCPhys, RTGCPHYS cb, bool fHasHCHandler, bool fRestoreAsRAM);
82REMR3DECL(void) REMR3NotifyHandlerPhysicalModify(PVM pVM, PGMPHYSHANDLERTYPE enmType, RTGCPHYS GCPhysOld, RTGCPHYS GCPhysNew, RTGCPHYS cb, bool fHasHCHandler, bool fRestoreAsRAM);
83REMR3DECL(void) REMR3NotifyPendingInterrupt(PVM pVM, uint8_t u8Interrupt);
84REMR3DECL(uint32_t) REMR3QueryPendingInterrupt(PVM pVM);
85REMR3DECL(void) REMR3NotifyInterruptSet(PVM pVM);
86REMR3DECL(void) REMR3NotifyInterruptClear(PVM pVM);
87REMR3DECL(void) REMR3NotifyTimerPending(PVM pVM);
88REMR3DECL(void) REMR3NotifyDmaPending(PVM pVM);
89REMR3DECL(void) REMR3NotifyQueuePending(PVM pVM);
90REMR3DECL(void) REMR3NotifyFF(PVM pVM);
91#ifdef VBOX_STRICT
92REMR3DECL(bool) REMR3IsPageAccessHandled(PVM pVM, RTGCPHYS GCPhys);
93#endif
94/** @} */
95#endif /* IN_RING3 */
96
97
98/** @} */
99__END_DECLS
100
101
102#endif
103
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use