1 | /** @file
|
---|
2 | * PGM - Page Monitor / Monitor.
|
---|
3 | */
|
---|
4 |
|
---|
5 | /*
|
---|
6 | * Copyright (C) 2006-2007 Sun Microsystems, Inc.
|
---|
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 | * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
26 | * Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
27 | * additional information or have any questions.
|
---|
28 | */
|
---|
29 |
|
---|
30 | #ifndef ___VBox_pgm_h
|
---|
31 | #define ___VBox_pgm_h
|
---|
32 |
|
---|
33 | #include <VBox/cdefs.h>
|
---|
34 | #include <VBox/types.h>
|
---|
35 | #include <VBox/sup.h>
|
---|
36 | #include <VBox/vmapi.h>
|
---|
37 | #include <VBox/x86.h>
|
---|
38 | #include <VBox/hwacc_vmx.h>
|
---|
39 |
|
---|
40 | __BEGIN_DECLS
|
---|
41 |
|
---|
42 | /** @defgroup grp_pgm The Page Monitor / Manager API
|
---|
43 | * @{
|
---|
44 | */
|
---|
45 |
|
---|
46 | /** Chunk size for dynamically allocated physical memory. */
|
---|
47 | #define PGM_DYNAMIC_CHUNK_SIZE (1*1024*1024)
|
---|
48 | /** Shift GC physical address by 20 bits to get the offset into the pvHCChunkHC array. */
|
---|
49 | #define PGM_DYNAMIC_CHUNK_SHIFT 20
|
---|
50 | /** Dynamic chunk offset mask. */
|
---|
51 | #define PGM_DYNAMIC_CHUNK_OFFSET_MASK 0xfffff
|
---|
52 | /** Dynamic chunk base mask. */
|
---|
53 | #define PGM_DYNAMIC_CHUNK_BASE_MASK (~(RTGCPHYS)PGM_DYNAMIC_CHUNK_OFFSET_MASK)
|
---|
54 |
|
---|
55 |
|
---|
56 | /**
|
---|
57 | * FNPGMRELOCATE callback mode.
|
---|
58 | */
|
---|
59 | typedef enum PGMRELOCATECALL
|
---|
60 | {
|
---|
61 | /** The callback is for checking if the suggested address is suitable. */
|
---|
62 | PGMRELOCATECALL_SUGGEST = 1,
|
---|
63 | /** The callback is for executing the relocation. */
|
---|
64 | PGMRELOCATECALL_RELOCATE
|
---|
65 | } PGMRELOCATECALL;
|
---|
66 |
|
---|
67 |
|
---|
68 | /**
|
---|
69 | * Callback function which will be called when PGM is trying to find
|
---|
70 | * a new location for the mapping.
|
---|
71 | *
|
---|
72 | * The callback is called in two modes, 1) the check mode and 2) the relocate mode.
|
---|
73 | * In 1) the callback should say if it objects to a suggested new location. If it
|
---|
74 | * accepts the new location, it is called again for doing it's relocation.
|
---|
75 | *
|
---|
76 | *
|
---|
77 | * @returns true if the location is ok.
|
---|
78 | * @returns false if another location should be found.
|
---|
79 | * @param GCPtrOld The old virtual address.
|
---|
80 | * @param GCPtrNew The new virtual address.
|
---|
81 | * @param enmMode Used to indicate the callback mode.
|
---|
82 | * @param pvUser User argument.
|
---|
83 | * @remark The return value is no a failure indicator, it's an acceptance
|
---|
84 | * indicator. Relocation can not fail!
|
---|
85 | */
|
---|
86 | typedef DECLCALLBACK(bool) FNPGMRELOCATE(PVM pVM, RTGCPTR GCPtrOld, RTGCPTR GCPtrNew, PGMRELOCATECALL enmMode, void *pvUser);
|
---|
87 | /** Pointer to a relocation callback function. */
|
---|
88 | typedef FNPGMRELOCATE *PFNPGMRELOCATE;
|
---|
89 |
|
---|
90 |
|
---|
91 | /**
|
---|
92 | * Physical page access handler type.
|
---|
93 | */
|
---|
94 | typedef enum PGMPHYSHANDLERTYPE
|
---|
95 | {
|
---|
96 | /** MMIO range. Pages are not present, all access is done in interpreter or recompiler. */
|
---|
97 | PGMPHYSHANDLERTYPE_MMIO = 1,
|
---|
98 | /** Handler all write access to a physical page range. */
|
---|
99 | PGMPHYSHANDLERTYPE_PHYSICAL_WRITE,
|
---|
100 | /** Handler all access to a physical page range. */
|
---|
101 | PGMPHYSHANDLERTYPE_PHYSICAL_ALL
|
---|
102 |
|
---|
103 | } PGMPHYSHANDLERTYPE;
|
---|
104 |
|
---|
105 | /**
|
---|
106 | * \#PF Handler callback for physical access handler ranges in RC.
|
---|
107 | *
|
---|
108 | * @returns VBox status code (appropriate for RC return).
|
---|
109 | * @param pVM VM Handle.
|
---|
110 | * @param uErrorCode CPU Error code.
|
---|
111 | * @param pRegFrame Trap register frame.
|
---|
112 | * NULL on DMA and other non CPU access.
|
---|
113 | * @param pvFault The fault address (cr2).
|
---|
114 | * @param GCPhysFault The GC physical address corresponding to pvFault.
|
---|
115 | * @param pvUser User argument.
|
---|
116 | */
|
---|
117 | typedef DECLCALLBACK(int) FNPGMRCPHYSHANDLER(PVM pVM, RTGCUINT uErrorCode, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, RTGCPHYS GCPhysFault, void *pvUser);
|
---|
118 | /** Pointer to PGM access callback. */
|
---|
119 | typedef FNPGMRCPHYSHANDLER *PFNPGMRCPHYSHANDLER;
|
---|
120 |
|
---|
121 | /**
|
---|
122 | * \#PF Handler callback for physical access handler ranges in R0.
|
---|
123 | *
|
---|
124 | * @returns VBox status code (appropriate for R0 return).
|
---|
125 | * @param pVM VM Handle.
|
---|
126 | * @param uErrorCode CPU Error code.
|
---|
127 | * @param pRegFrame Trap register frame.
|
---|
128 | * NULL on DMA and other non CPU access.
|
---|
129 | * @param pvFault The fault address (cr2).
|
---|
130 | * @param GCPhysFault The GC physical address corresponding to pvFault.
|
---|
131 | * @param pvUser User argument.
|
---|
132 | */
|
---|
133 | typedef DECLCALLBACK(int) FNPGMR0PHYSHANDLER(PVM pVM, RTGCUINT uErrorCode, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, RTGCPHYS GCPhysFault, void *pvUser);
|
---|
134 | /** Pointer to PGM access callback. */
|
---|
135 | typedef FNPGMR0PHYSHANDLER *PFNPGMR0PHYSHANDLER;
|
---|
136 |
|
---|
137 | /**
|
---|
138 | * Guest Access type
|
---|
139 | */
|
---|
140 | typedef enum PGMACCESSTYPE
|
---|
141 | {
|
---|
142 | /** Read access. */
|
---|
143 | PGMACCESSTYPE_READ = 1,
|
---|
144 | /** Write access. */
|
---|
145 | PGMACCESSTYPE_WRITE
|
---|
146 | } PGMACCESSTYPE;
|
---|
147 |
|
---|
148 | /**
|
---|
149 | * \#PF Handler callback for physical access handler ranges (MMIO among others) in HC.
|
---|
150 | *
|
---|
151 | * The handler can not raise any faults, it's mainly for monitoring write access
|
---|
152 | * to certain pages.
|
---|
153 | *
|
---|
154 | * @returns VINF_SUCCESS if the handler have carried out the operation.
|
---|
155 | * @returns VINF_PGM_HANDLER_DO_DEFAULT if the caller should carry out the access operation.
|
---|
156 | * @param pVM VM Handle.
|
---|
157 | * @param GCPhys The physical address the guest is writing to.
|
---|
158 | * @param pvPhys The HC mapping of that address.
|
---|
159 | * @param pvBuf What the guest is reading/writing.
|
---|
160 | * @param cbBuf How much it's reading/writing.
|
---|
161 | * @param enmAccessType The access type.
|
---|
162 | * @param pvUser User argument.
|
---|
163 | */
|
---|
164 | typedef DECLCALLBACK(int) FNPGMR3PHYSHANDLER(PVM pVM, RTGCPHYS GCPhys, void *pvPhys, void *pvBuf, size_t cbBuf, PGMACCESSTYPE enmAccessType, void *pvUser);
|
---|
165 | /** Pointer to PGM access callback. */
|
---|
166 | typedef FNPGMR3PHYSHANDLER *PFNPGMR3PHYSHANDLER;
|
---|
167 |
|
---|
168 |
|
---|
169 | /**
|
---|
170 | * Virtual access handler type.
|
---|
171 | */
|
---|
172 | typedef enum PGMVIRTHANDLERTYPE
|
---|
173 | {
|
---|
174 | /** Write access handled. */
|
---|
175 | PGMVIRTHANDLERTYPE_WRITE = 1,
|
---|
176 | /** All access handled. */
|
---|
177 | PGMVIRTHANDLERTYPE_ALL,
|
---|
178 | /** Hypervisor write access handled.
|
---|
179 | * This is used to catch the guest trying to write to LDT, TSS and any other
|
---|
180 | * system structure which the brain dead intel guys let unprivilegde code find. */
|
---|
181 | PGMVIRTHANDLERTYPE_HYPERVISOR
|
---|
182 | } PGMVIRTHANDLERTYPE;
|
---|
183 |
|
---|
184 | /**
|
---|
185 | * \#PF Handler callback for virtual access handler ranges, RC.
|
---|
186 | *
|
---|
187 | * Important to realize that a physical page in a range can have aliases, and
|
---|
188 | * for ALL and WRITE handlers these will also trigger.
|
---|
189 | *
|
---|
190 | * @returns VBox status code (appropriate for GC return).
|
---|
191 | * @param pVM VM Handle.
|
---|
192 | * @param uErrorCode CPU Error code.
|
---|
193 | * @param pRegFrame Trap register frame.
|
---|
194 | * @param pvFault The fault address (cr2).
|
---|
195 | * @param pvRange The base address of the handled virtual range.
|
---|
196 | * @param offRange The offset of the access into this range.
|
---|
197 | * (If it's a EIP range this's the EIP, if not it's pvFault.)
|
---|
198 | */
|
---|
199 | typedef DECLCALLBACK(int) FNPGMRCVIRTHANDLER(PVM pVM, RTGCUINT uErrorCode, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, RTGCPTR pvRange, uintptr_t offRange);
|
---|
200 | /** Pointer to PGM access callback. */
|
---|
201 | typedef FNPGMRCVIRTHANDLER *PFNPGMRCVIRTHANDLER;
|
---|
202 |
|
---|
203 | /**
|
---|
204 | * \#PF Handler callback for virtual access handler ranges, R3.
|
---|
205 | *
|
---|
206 | * Important to realize that a physical page in a range can have aliases, and
|
---|
207 | * for ALL and WRITE handlers these will also trigger.
|
---|
208 | *
|
---|
209 | * @returns VINF_SUCCESS if the handler have carried out the operation.
|
---|
210 | * @returns VINF_PGM_HANDLER_DO_DEFAULT if the caller should carry out the access operation.
|
---|
211 | * @param pVM VM Handle.
|
---|
212 | * @param GCPtr The virtual address the guest is writing to. (not correct if it's an alias!)
|
---|
213 | * @param pvPtr The HC mapping of that address.
|
---|
214 | * @param pvBuf What the guest is reading/writing.
|
---|
215 | * @param cbBuf How much it's reading/writing.
|
---|
216 | * @param enmAccessType The access type.
|
---|
217 | * @param pvUser User argument.
|
---|
218 | */
|
---|
219 | typedef DECLCALLBACK(int) FNPGMR3VIRTHANDLER(PVM pVM, RTGCPTR GCPtr, void *pvPtr, void *pvBuf, size_t cbBuf, PGMACCESSTYPE enmAccessType, void *pvUser);
|
---|
220 | /** Pointer to PGM access callback. */
|
---|
221 | typedef FNPGMR3VIRTHANDLER *PFNPGMR3VIRTHANDLER;
|
---|
222 |
|
---|
223 |
|
---|
224 | /**
|
---|
225 | * \#PF Handler callback for invalidation of virtual access handler ranges.
|
---|
226 | *
|
---|
227 | * @param pVM VM Handle.
|
---|
228 | * @param GCPtr The virtual address the guest has changed.
|
---|
229 | */
|
---|
230 | typedef DECLCALLBACK(int) FNPGMR3VIRTINVALIDATE(PVM pVM, RTGCPTR GCPtr);
|
---|
231 | /** Pointer to PGM invalidation callback. */
|
---|
232 | typedef FNPGMR3VIRTINVALIDATE *PFNPGMR3VIRTINVALIDATE;
|
---|
233 |
|
---|
234 | /**
|
---|
235 | * Paging mode.
|
---|
236 | */
|
---|
237 | typedef enum PGMMODE
|
---|
238 | {
|
---|
239 | /** The usual invalid value. */
|
---|
240 | PGMMODE_INVALID = 0,
|
---|
241 | /** Real mode. */
|
---|
242 | PGMMODE_REAL,
|
---|
243 | /** Protected mode, no paging. */
|
---|
244 | PGMMODE_PROTECTED,
|
---|
245 | /** 32-bit paging. */
|
---|
246 | PGMMODE_32_BIT,
|
---|
247 | /** PAE paging. */
|
---|
248 | PGMMODE_PAE,
|
---|
249 | /** PAE paging with NX enabled. */
|
---|
250 | PGMMODE_PAE_NX,
|
---|
251 | /** 64-bit AMD paging (long mode). */
|
---|
252 | PGMMODE_AMD64,
|
---|
253 | /** 64-bit AMD paging (long mode) with NX enabled. */
|
---|
254 | PGMMODE_AMD64_NX,
|
---|
255 | /** Nested paging mode (shadow only; guest physical to host physical). */
|
---|
256 | PGMMODE_NESTED,
|
---|
257 | /** Extended paging (Intel) mode. */
|
---|
258 | PGMMODE_EPT,
|
---|
259 | /** The max number of modes */
|
---|
260 | PGMMODE_MAX,
|
---|
261 | /** 32bit hackishness. */
|
---|
262 | PGMMODE_32BIT_HACK = 0x7fffffff
|
---|
263 | } PGMMODE;
|
---|
264 |
|
---|
265 | /** Macro for checking if the guest is using paging.
|
---|
266 | * @param enmMode PGMMODE_*.
|
---|
267 | * @remark ASSUMES certain order of the PGMMODE_* values.
|
---|
268 | */
|
---|
269 | #define PGMMODE_WITH_PAGING(enmMode) ((enmMode) >= PGMMODE_32_BIT)
|
---|
270 |
|
---|
271 | /** Macro for checking if it's one of the long mode modes.
|
---|
272 | * @param enmMode PGMMODE_*.
|
---|
273 | */
|
---|
274 | #define PGMMODE_IS_LONG_MODE(enmMode) ((enmMode) == PGMMODE_AMD64_NX || (enmMode) == PGMMODE_AMD64)
|
---|
275 |
|
---|
276 | /**
|
---|
277 | * Is the ROM mapped (true) or is the shadow RAM mapped (false).
|
---|
278 | *
|
---|
279 | * @returns boolean.
|
---|
280 | * @param enmProt The PGMROMPROT value, must be valid.
|
---|
281 | */
|
---|
282 | #define PGMROMPROT_IS_ROM(enmProt) \
|
---|
283 | ( (enmProt) == PGMROMPROT_READ_ROM_WRITE_IGNORE \
|
---|
284 | || (enmProt) == PGMROMPROT_READ_ROM_WRITE_RAM )
|
---|
285 |
|
---|
286 | VMMDECL(int) PGMRegisterStringFormatTypes(void);
|
---|
287 | VMMDECL(void) PGMDeregisterStringFormatTypes(void);
|
---|
288 | VMMDECL(RTHCPHYS) PGMGetHyperCR3(PVMCPU pVCpu);
|
---|
289 | VMMDECL(RTHCPHYS) PGMGetNestedCR3(PVMCPU pVCpu, PGMMODE enmShadowMode);
|
---|
290 | VMMDECL(RTHCPHYS) PGMGetInterHCCR3(PVM pVM);
|
---|
291 | VMMDECL(RTHCPHYS) PGMGetInterRCCR3(PVM pVM, PVMCPU pVCpu);
|
---|
292 | VMMDECL(RTHCPHYS) PGMGetInter32BitCR3(PVM pVM);
|
---|
293 | VMMDECL(RTHCPHYS) PGMGetInterPaeCR3(PVM pVM);
|
---|
294 | VMMDECL(RTHCPHYS) PGMGetInterAmd64CR3(PVM pVM);
|
---|
295 | VMMDECL(int) PGMTrap0eHandler(PVMCPU pVCpu, RTGCUINT uErr, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault);
|
---|
296 | VMMDECL(int) PGMPrefetchPage(PVMCPU pVCpu, RTGCPTR GCPtrPage);
|
---|
297 | VMMDECL(int) PGMVerifyAccess(PVMCPU pVCpu, RTGCPTR Addr, uint32_t cbSize, uint32_t fAccess);
|
---|
298 | VMMDECL(int) PGMIsValidAccess(PVMCPU pVCpu, RTGCPTR Addr, uint32_t cbSize, uint32_t fAccess);
|
---|
299 | VMMDECL(int) PGMInterpretInstruction(PVM pVM, PVMCPU pVCpu, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault);
|
---|
300 | VMMDECL(int) PGMMap(PVM pVM, RTGCPTR GCPtr, RTHCPHYS HCPhys, uint32_t cbPages, unsigned fFlags);
|
---|
301 | VMMDECL(int) PGMMapSetPage(PVM pVM, RTGCPTR GCPtr, uint64_t cb, uint64_t fFlags);
|
---|
302 | VMMDECL(int) PGMMapModifyPage(PVM pVM, RTGCPTR GCPtr, size_t cb, uint64_t fFlags, uint64_t fMask);
|
---|
303 | #ifndef IN_RING0
|
---|
304 | VMMDECL(bool) PGMMapHasConflicts(PVM pVM);
|
---|
305 | VMMDECL(int) PGMMapResolveConflicts(PVM pVM);
|
---|
306 | #endif
|
---|
307 | #ifdef VBOX_STRICT
|
---|
308 | VMMDECL(void) PGMMapCheck(PVM pVM);
|
---|
309 | #endif
|
---|
310 | VMMDECL(int) PGMShwGetPage(PVMCPU pVCpu, RTGCPTR GCPtr, uint64_t *pfFlags, PRTHCPHYS pHCPhys);
|
---|
311 | VMMDECL(int) PGMShwSetPage(PVMCPU pVCpu, RTGCPTR GCPtr, size_t cb, uint64_t fFlags);
|
---|
312 | VMMDECL(int) PGMShwModifyPage(PVMCPU pVCpu, RTGCPTR GCPtr, size_t cb, uint64_t fFlags, uint64_t fMask);
|
---|
313 | VMMDECL(int) PGMGstGetPage(PVMCPU pVCpu, RTGCPTR GCPtr, uint64_t *pfFlags, PRTGCPHYS pGCPhys);
|
---|
314 | VMMDECL(bool) PGMGstIsPagePresent(PVMCPU pVCpu, RTGCPTR GCPtr);
|
---|
315 | VMMDECL(int) PGMGstSetPage(PVMCPU pVCpu, RTGCPTR GCPtr, size_t cb, uint64_t fFlags);
|
---|
316 | VMMDECL(int) PGMGstModifyPage(PVMCPU pVCpu, RTGCPTR GCPtr, size_t cb, uint64_t fFlags, uint64_t fMask);
|
---|
317 | VMMDECL(X86PDPE) PGMGstGetPaePDPtr(PVMCPU pVCpu, unsigned iPdPt);
|
---|
318 |
|
---|
319 | VMMDECL(int) PGMInvalidatePage(PVMCPU pVCpu, RTGCPTR GCPtrPage);
|
---|
320 | VMMDECL(int) PGMFlushTLB(PVMCPU pVCpu, uint64_t cr3, bool fGlobal);
|
---|
321 | VMMDECL(int) PGMSyncCR3(PVMCPU pVCpu, uint64_t cr0, uint64_t cr3, uint64_t cr4, bool fGlobal);
|
---|
322 | VMMDECL(int) PGMUpdateCR3(PVMCPU pVCpu, uint64_t cr3);
|
---|
323 | VMMDECL(int) PGMChangeMode(PVMCPU pVCpu, uint64_t cr0, uint64_t cr4, uint64_t efer);
|
---|
324 | VMMDECL(PGMMODE) PGMGetGuestMode(PVMCPU pVCpu);
|
---|
325 | VMMDECL(PGMMODE) PGMGetShadowMode(PVMCPU pVCpu);
|
---|
326 | VMMDECL(PGMMODE) PGMGetHostMode(PVM pVM);
|
---|
327 | VMMDECL(const char *) PGMGetModeName(PGMMODE enmMode);
|
---|
328 | VMMDECL(int) PGMHandlerPhysicalRegisterEx(PVM pVM, PGMPHYSHANDLERTYPE enmType, RTGCPHYS GCPhys, RTGCPHYS GCPhysLast,
|
---|
329 | R3PTRTYPE(PFNPGMR3PHYSHANDLER) pfnHandlerR3, RTR3PTR pvUserR3,
|
---|
330 | R0PTRTYPE(PFNPGMR0PHYSHANDLER) pfnHandlerR0, RTR0PTR pvUserR0,
|
---|
331 | RCPTRTYPE(PFNPGMRCPHYSHANDLER) pfnHandlerRC, RTRCPTR pvUserRC,
|
---|
332 | R3PTRTYPE(const char *) pszDesc);
|
---|
333 | VMMDECL(int) PGMHandlerPhysicalModify(PVM pVM, RTGCPHYS GCPhysCurrent, RTGCPHYS GCPhys, RTGCPHYS GCPhysLast);
|
---|
334 | VMMDECL(int) PGMHandlerPhysicalDeregister(PVM pVM, RTGCPHYS GCPhys);
|
---|
335 | VMMDECL(int) PGMHandlerPhysicalChangeCallbacks(PVM pVM, RTGCPHYS GCPhys,
|
---|
336 | R3PTRTYPE(PFNPGMR3PHYSHANDLER) pfnHandlerR3, RTR3PTR pvUserR3,
|
---|
337 | R0PTRTYPE(PFNPGMR0PHYSHANDLER) pfnHandlerR0, RTR0PTR pvUserR0,
|
---|
338 | RCPTRTYPE(PFNPGMRCPHYSHANDLER) pfnHandlerRC, RTRCPTR pvUserRC,
|
---|
339 | R3PTRTYPE(const char *) pszDesc);
|
---|
340 | VMMDECL(int) PGMHandlerPhysicalSplit(PVM pVM, RTGCPHYS GCPhys, RTGCPHYS GCPhysSplit);
|
---|
341 | VMMDECL(int) PGMHandlerPhysicalJoin(PVM pVM, RTGCPHYS GCPhys1, RTGCPHYS GCPhys2);
|
---|
342 | VMMDECL(int) PGMHandlerPhysicalPageTempOff(PVM pVM, RTGCPHYS GCPhys, RTGCPHYS GCPhysPage);
|
---|
343 | VMMDECL(int) PGMHandlerPhysicalPageAlias(PVM pVM, RTGCPHYS GCPhys, RTGCPHYS GCPhysPage, RTGCPHYS GCPhysPageRemap);
|
---|
344 | VMMDECL(int) PGMHandlerPhysicalReset(PVM pVM, RTGCPHYS GCPhys);
|
---|
345 | VMMDECL(bool) PGMHandlerPhysicalIsRegistered(PVM pVM, RTGCPHYS GCPhys);
|
---|
346 | VMMDECL(bool) PGMHandlerVirtualIsRegistered(PVM pVM, RTGCPTR GCPtr);
|
---|
347 | VMMDECL(bool) PGMPhysIsA20Enabled(PVMCPU pVCpu);
|
---|
348 | VMMDECL(bool) PGMPhysIsGCPhysValid(PVM pVM, RTGCPHYS GCPhys);
|
---|
349 | VMMDECL(bool) PGMPhysIsGCPhysNormal(PVM pVM, RTGCPHYS GCPhys);
|
---|
350 | VMMDECL(int) PGMPhysGCPhys2HCPhys(PVM pVM, RTGCPHYS GCPhys, PRTHCPHYS pHCPhys);
|
---|
351 | VMMDECL(int) PGMPhysGCPtr2GCPhys(PVMCPU pVCpu, RTGCPTR GCPtr, PRTGCPHYS pGCPhys);
|
---|
352 | VMMDECL(int) PGMPhysGCPtr2HCPhys(PVMCPU pVCpu, RTGCPTR GCPtr, PRTHCPHYS pHCPhys);
|
---|
353 | VMMDECL(void) PGMPhysInvalidatePageGCMapTLB(PVM pVM);
|
---|
354 | VMMDECL(void) PGMPhysInvalidatePageR0MapTLB(PVM pVM);
|
---|
355 | VMMDECL(void) PGMPhysInvalidatePageR3MapTLB(PVM pVM);
|
---|
356 |
|
---|
357 | VMMDECL(int) PGMPhysGCPhys2CCPtr(PVM pVM, RTGCPHYS GCPhys, void **ppv, PPGMPAGEMAPLOCK pLock);
|
---|
358 | VMMDECL(int) PGMPhysGCPhys2CCPtrReadOnly(PVM pVM, RTGCPHYS GCPhys, void const **ppv, PPGMPAGEMAPLOCK pLock);
|
---|
359 | VMMDECL(int) PGMPhysGCPtr2CCPtr(PVMCPU pVCpu, RTGCPTR GCPtr, void **ppv, PPGMPAGEMAPLOCK pLock);
|
---|
360 | VMMDECL(int) PGMPhysGCPtr2CCPtrReadOnly(PVMCPU pVCpu, RTGCPTR GCPtr, void const **ppv, PPGMPAGEMAPLOCK pLock);
|
---|
361 | VMMDECL(void) PGMPhysReleasePageMappingLock(PVM pVM, PPGMPAGEMAPLOCK pLock);
|
---|
362 |
|
---|
363 | /**
|
---|
364 | * Checks if the lock structure is valid
|
---|
365 | *
|
---|
366 | * @param pVM The VM handle.
|
---|
367 | * @param pLock The lock structure initialized by the mapping function.
|
---|
368 | */
|
---|
369 | DECLINLINE(bool) PGMPhysIsPageMappingLockValid(PVM pVM, PPGMPAGEMAPLOCK pLock)
|
---|
370 | {
|
---|
371 | /** @todo -> complete/change this */
|
---|
372 | #if defined(IN_RC) || defined(VBOX_WITH_2X_4GB_ADDR_SPACE_IN_R0)
|
---|
373 | return !!(pLock->u32Dummy);
|
---|
374 | #else
|
---|
375 | return !!(pLock->pvPage);
|
---|
376 | #endif
|
---|
377 | }
|
---|
378 |
|
---|
379 | VMMDECL(int) PGMPhysGCPhys2R3Ptr(PVM pVM, RTGCPHYS GCPhys, RTUINT cbRange, PRTR3PTR pR3Ptr);
|
---|
380 | #ifdef VBOX_STRICT
|
---|
381 | VMMDECL(RTR3PTR) PGMPhysGCPhys2R3PtrAssert(PVM pVM, RTGCPHYS GCPhys, RTUINT cbRange);
|
---|
382 | #endif
|
---|
383 | VMMDECL(int) PGMPhysGCPtr2R3Ptr(PVMCPU pVCpu, RTGCPTR GCPtr, PRTR3PTR pR3Ptr);
|
---|
384 | VMMDECL(int) PGMPhysRead(PVM pVM, RTGCPHYS GCPhys, void *pvBuf, size_t cbRead);
|
---|
385 | VMMDECL(int) PGMPhysWrite(PVM pVM, RTGCPHYS GCPhys, const void *pvBuf, size_t cbWrite);
|
---|
386 | VMMDECL(int) PGMPhysSimpleReadGCPhys(PVM pVM, void *pvDst, RTGCPHYS GCPhysSrc, size_t cb);
|
---|
387 | #ifndef IN_RC /* Only ring 0 & 3. */
|
---|
388 | VMMDECL(int) PGMPhysSimpleWriteGCPhys(PVM pVM, RTGCPHYS GCPhysDst, const void *pvSrc, size_t cb);
|
---|
389 | VMMDECL(int) PGMPhysSimpleReadGCPtr(PVMCPU pVCpu, void *pvDst, RTGCPTR GCPtrSrc, size_t cb);
|
---|
390 | VMMDECL(int) PGMPhysSimpleWriteGCPtr(PVMCPU pVCpu, RTGCPTR GCPtrDst, const void *pvSrc, size_t cb);
|
---|
391 | VMMDECL(int) PGMPhysReadGCPtr(PVMCPU pVCpu, void *pvDst, RTGCPTR GCPtrSrc, size_t cb);
|
---|
392 | VMMDECL(int) PGMPhysWriteGCPtr(PVMCPU pVCpu, RTGCPTR GCPtrDst, const void *pvSrc, size_t cb);
|
---|
393 | VMMDECL(int) PGMPhysSimpleDirtyWriteGCPtr(PVMCPU pVCpu, RTGCPTR GCPtrDst, const void *pvSrc, size_t cb);
|
---|
394 | #endif /* !IN_RC */
|
---|
395 | VMMDECL(int) PGMPhysInterpretedRead(PVMCPU pVCpu, PCPUMCTXCORE pCtxCore, void *pvDst, RTGCPTR GCPtrSrc, size_t cb);
|
---|
396 | VMMDECL(int) PGMPhysInterpretedReadNoHandlers(PVMCPU pVCpu, PCPUMCTXCORE pCtxCore, void *pvDst, RTGCUINTPTR GCPtrSrc, size_t cb, bool fRaiseTrap);
|
---|
397 | VMMDECL(int) PGMPhysInterpretedWriteNoHandlers(PVMCPU pVCpu, PCPUMCTXCORE pCtxCore, RTGCPTR GCPtrDst, void const *pvSrc, size_t cb, bool fRaiseTrap);
|
---|
398 | #ifdef VBOX_STRICT
|
---|
399 | VMMDECL(unsigned) PGMAssertHandlerAndFlagsInSync(PVM pVM);
|
---|
400 | VMMDECL(unsigned) PGMAssertNoMappingConflicts(PVM pVM);
|
---|
401 | VMMDECL(unsigned) PGMAssertCR3(PVM pVM, PVMCPU pVCpu, uint64_t cr3, uint64_t cr4);
|
---|
402 | #endif /* VBOX_STRICT */
|
---|
403 |
|
---|
404 | #if defined(IN_RC) || defined(VBOX_WITH_2X_4GB_ADDR_SPACE)
|
---|
405 | VMMDECL(int) PGMDynMapGCPage(PVM pVM, RTGCPHYS GCPhys, void **ppv);
|
---|
406 | VMMDECL(int) PGMDynMapGCPageOff(PVM pVM, RTGCPHYS GCPhys, void **ppv);
|
---|
407 | # ifdef IN_RC
|
---|
408 | VMMDECL(int) PGMDynMapHCPage(PVM pVM, RTHCPHYS HCPhys, void **ppv);
|
---|
409 | VMMDECL(void) PGMDynLockHCPage(PVM pVM, RCPTRTYPE(uint8_t *) GCPage);
|
---|
410 | VMMDECL(void) PGMDynUnlockHCPage(PVM pVM, RCPTRTYPE(uint8_t *) GCPage);
|
---|
411 | # ifdef VBOX_STRICT
|
---|
412 | VMMDECL(void) PGMDynCheckLocks(PVM pVM);
|
---|
413 | # endif
|
---|
414 | # endif
|
---|
415 | VMMDECL(void) PGMDynMapStartAutoSet(PVMCPU pVCpu);
|
---|
416 | VMMDECL(void) PGMDynMapReleaseAutoSet(PVMCPU pVCpu);
|
---|
417 | VMMDECL(void) PGMDynMapFlushAutoSet(PVMCPU pVCpu);
|
---|
418 | VMMDECL(void) PGMDynMapMigrateAutoSet(PVMCPU pVCpu);
|
---|
419 | VMMDECL(uint32_t) PGMDynMapPushAutoSubset(PVMCPU pVCpu);
|
---|
420 | VMMDECL(void) PGMDynMapPopAutoSubset(PVMCPU pVCpu, uint32_t iPrevSubset);
|
---|
421 | #endif
|
---|
422 |
|
---|
423 |
|
---|
424 | #ifdef IN_RC
|
---|
425 | /** @defgroup grp_pgm_gc The PGM Guest Context API
|
---|
426 | * @ingroup grp_pgm
|
---|
427 | * @{
|
---|
428 | */
|
---|
429 | /** @} */
|
---|
430 | #endif /* IN_RC */
|
---|
431 |
|
---|
432 |
|
---|
433 | #ifdef IN_RING0
|
---|
434 | /** @defgroup grp_pgm_r0 The PGM Host Context Ring-0 API
|
---|
435 | * @ingroup grp_pgm
|
---|
436 | * @{
|
---|
437 | */
|
---|
438 | VMMR0DECL(int) PGMR0PhysAllocateHandyPages(PVM pVM, PVMCPU pVCpu);
|
---|
439 | VMMR0DECL(int) PGMR0Trap0eHandlerNestedPaging(PVM pVM, PVMCPU pVCpu, PGMMODE enmShwPagingMode, RTGCUINT uErr, PCPUMCTXCORE pRegFrame, RTGCPHYS pvFault);
|
---|
440 | # ifdef VBOX_WITH_2X_4GB_ADDR_SPACE
|
---|
441 | VMMR0DECL(int) PGMR0DynMapInit(void);
|
---|
442 | VMMR0DECL(void) PGMR0DynMapTerm(void);
|
---|
443 | VMMR0DECL(int) PGMR0DynMapInitVM(PVM pVM);
|
---|
444 | VMMR0DECL(void) PGMR0DynMapTermVM(PVM pVM);
|
---|
445 | VMMR0DECL(int) PGMR0DynMapAssertIntegrity(void);
|
---|
446 | # endif
|
---|
447 | /** @} */
|
---|
448 | #endif /* IN_RING0 */
|
---|
449 |
|
---|
450 |
|
---|
451 |
|
---|
452 | #ifdef IN_RING3
|
---|
453 | /** @defgroup grp_pgm_r3 The PGM Host Context Ring-3 API
|
---|
454 | * @ingroup grp_pgm
|
---|
455 | * @{
|
---|
456 | */
|
---|
457 | VMMR3DECL(int) PGMR3Init(PVM pVM);
|
---|
458 | VMMR3DECL(int) PGMR3InitCPU(PVM pVM);
|
---|
459 | VMMR3DECL(int) PGMR3InitDynMap(PVM pVM);
|
---|
460 | VMMR3DECL(int) PGMR3InitFinalize(PVM pVM);
|
---|
461 | VMMR3DECL(void) PGMR3Relocate(PVM pVM, RTGCINTPTR offDelta);
|
---|
462 | VMMR3DECL(void) PGMR3Reset(PVM pVM);
|
---|
463 | VMMR3DECL(int) PGMR3Term(PVM pVM);
|
---|
464 | VMMR3DECL(int) PGMR3TermCPU(PVM pVM);
|
---|
465 | VMMR3DECL(int) PGMR3LockCall(PVM pVM);
|
---|
466 | VMMR3DECL(int) PGMR3ChangeMode(PVM pVM, PVMCPU pVCpu, PGMMODE enmGuestMode);
|
---|
467 |
|
---|
468 | VMMR3DECL(int) PGMR3PhysRegisterRam(PVM pVM, RTGCPHYS GCPhys, RTGCPHYS cb, const char *pszDesc);
|
---|
469 | VMMR3DECL(int) PGMR3PhysMMIORegister(PVM pVM, RTGCPHYS GCPhys, RTGCPHYS cb,
|
---|
470 | R3PTRTYPE(PFNPGMR3PHYSHANDLER) pfnHandlerR3, RTR3PTR pvUserR3,
|
---|
471 | R0PTRTYPE(PFNPGMR0PHYSHANDLER) pfnHandlerR0, RTR0PTR pvUserR0,
|
---|
472 | RCPTRTYPE(PFNPGMRCPHYSHANDLER) pfnHandlerRC, RTRCPTR pvUserRC,
|
---|
473 | R3PTRTYPE(const char *) pszDesc);
|
---|
474 | VMMR3DECL(int) PGMR3PhysMMIODeregister(PVM pVM, RTGCPHYS GCPhys, RTGCPHYS cb);
|
---|
475 | VMMR3DECL(int) PGMR3PhysMMIO2Register(PVM pVM, PPDMDEVINS pDevIns, uint32_t iRegion, RTGCPHYS cb, uint32_t fFlags, void **ppv, const char *pszDesc);
|
---|
476 | VMMR3DECL(int) PGMR3PhysMMIO2Deregister(PVM pVM, PPDMDEVINS pDevIns, uint32_t iRegion);
|
---|
477 | VMMR3DECL(int) PGMR3PhysMMIO2Map(PVM pVM, PPDMDEVINS pDevIns, uint32_t iRegion, RTGCPHYS GCPhys);
|
---|
478 | VMMR3DECL(int) PGMR3PhysMMIO2Unmap(PVM pVM, PPDMDEVINS pDevIns, uint32_t iRegion, RTGCPHYS GCPhys);
|
---|
479 | VMMR3DECL(bool) PGMR3PhysMMIO2IsBase(PVM pVM, PPDMDEVINS pDevIns, RTGCPHYS GCPhys);
|
---|
480 | VMMR3DECL(int) PGMR3PhysMMIO2GetHCPhys(PVM pVM, PPDMDEVINS pDevIns, uint32_t iRegion, RTGCPHYS off, PRTHCPHYS pHCPhys);
|
---|
481 | VMMR3DECL(int) PGMR3PhysMMIO2MapKernel(PVM pVM, PPDMDEVINS pDevIns, uint32_t iRegion, RTGCPHYS off, RTGCPHYS cb, const char *pszDesc, PRTR0PTR pR0Ptr);
|
---|
482 |
|
---|
483 | /** @group PGMR3PhysRegisterRom flags.
|
---|
484 | * @{ */
|
---|
485 | /** Inidicates that ROM shadowing should be enabled. */
|
---|
486 | #define PGMPHYS_ROM_FLAGS_SHADOWED RT_BIT_32(0)
|
---|
487 | /** Indicates that what pvBinary points to won't go away
|
---|
488 | * and can be used for strictness checks. */
|
---|
489 | #define PGMPHYS_ROM_FLAGS_PERMANENT_BINARY RT_BIT_32(1)
|
---|
490 | /** @} */
|
---|
491 |
|
---|
492 | VMMR3DECL(int) PGMR3PhysRomRegister(PVM pVM, PPDMDEVINS pDevIns, RTGCPHYS GCPhys, RTGCPHYS cb,
|
---|
493 | const void *pvBinary, uint32_t fFlags, const char *pszDesc);
|
---|
494 | VMMR3DECL(int) PGMR3PhysRomProtect(PVM pVM, RTGCPHYS GCPhys, RTGCPHYS cb, PGMROMPROT enmProt);
|
---|
495 | VMMR3DECL(int) PGMR3PhysRegister(PVM pVM, void *pvRam, RTGCPHYS GCPhys, size_t cb, unsigned fFlags, const SUPPAGE *paPages, const char *pszDesc);
|
---|
496 | VMMDECL(void) PGMR3PhysSetA20(PVMCPU pVCpu, bool fEnable);
|
---|
497 | /** @name PGMR3MapPT flags.
|
---|
498 | * @{ */
|
---|
499 | /** The mapping may be unmapped later. The default is permanent mappings. */
|
---|
500 | #define PGMR3MAPPT_FLAGS_UNMAPPABLE RT_BIT(0)
|
---|
501 | /** @} */
|
---|
502 | VMMR3DECL(int) PGMR3MapPT(PVM pVM, RTGCPTR GCPtr, uint32_t cb, uint32_t fFlags, PFNPGMRELOCATE pfnRelocate, void *pvUser, const char *pszDesc);
|
---|
503 | VMMR3DECL(int) PGMR3UnmapPT(PVM pVM, RTGCPTR GCPtr);
|
---|
504 | VMMR3DECL(int) PGMR3FinalizeMappings(PVM pVM);
|
---|
505 | VMMR3DECL(int) PGMR3MappingsSize(PVM pVM, uint32_t *pcb);
|
---|
506 | VMMR3DECL(int) PGMR3MappingsFix(PVM pVM, RTGCPTR GCPtrBase, uint32_t cb);
|
---|
507 | VMMR3DECL(int) PGMR3MappingsUnfix(PVM pVM);
|
---|
508 | VMMR3DECL(int) PGMR3MappingsDisable(PVM pVM);
|
---|
509 | VMMR3DECL(int) PGMR3MapIntermediate(PVM pVM, RTUINTPTR Addr, RTHCPHYS HCPhys, unsigned cbPages);
|
---|
510 | VMMR3DECL(int) PGMR3MapRead(PVM pVM, void *pvDst, RTGCPTR GCPtrSrc, size_t cb);
|
---|
511 |
|
---|
512 | VMMR3DECL(int) PGMR3HandlerPhysicalRegister(PVM pVM, PGMPHYSHANDLERTYPE enmType, RTGCPHYS GCPhys, RTGCPHYS GCPhysLast,
|
---|
513 | PFNPGMR3PHYSHANDLER pfnHandlerR3, void *pvUserR3,
|
---|
514 | const char *pszModR0, const char *pszHandlerR0, RTR0PTR pvUserR0,
|
---|
515 | const char *pszModRC, const char *pszHandlerRC, RTRCPTR pvUserRC, const char *pszDesc);
|
---|
516 | VMMDECL(int) PGMR3HandlerVirtualRegisterEx(PVM pVM, PGMVIRTHANDLERTYPE enmType, RTGCPTR GCPtr, RTGCPTR GCPtrLast,
|
---|
517 | R3PTRTYPE(PFNPGMR3VIRTINVALIDATE) pfnInvalidateR3,
|
---|
518 | R3PTRTYPE(PFNPGMR3VIRTHANDLER) pfnHandlerR3,
|
---|
519 | RCPTRTYPE(PFNPGMRCVIRTHANDLER) pfnHandlerRC,
|
---|
520 | R3PTRTYPE(const char *) pszDesc);
|
---|
521 | VMMR3DECL(int) PGMR3HandlerVirtualRegister(PVM pVM, PGMVIRTHANDLERTYPE enmType, RTGCPTR GCPtr, RTGCPTR GCPtrLast,
|
---|
522 | PFNPGMR3VIRTINVALIDATE pfnInvalidateR3,
|
---|
523 | PFNPGMR3VIRTHANDLER pfnHandlerR3,
|
---|
524 | const char *pszHandlerRC, const char *pszModRC, const char *pszDesc);
|
---|
525 | VMMDECL(int) PGMHandlerVirtualChangeInvalidateCallback(PVM pVM, RTGCPTR GCPtr, R3PTRTYPE(PFNPGMR3VIRTINVALIDATE) pfnInvalidateR3);
|
---|
526 | VMMDECL(int) PGMHandlerVirtualDeregister(PVM pVM, RTGCPTR GCPtr);
|
---|
527 | VMMR3DECL(int) PGMR3PoolGrow(PVM pVM);
|
---|
528 | #ifdef ___VBox_dbgf_h /** @todo fix this! */
|
---|
529 | VMMR3DECL(int) PGMR3DumpHierarchyHC(PVM pVM, uint64_t cr3, uint64_t cr4, bool fLongMode, unsigned cMaxDepth, PCDBGFINFOHLP pHlp);
|
---|
530 | #endif
|
---|
531 | VMMR3DECL(int) PGMR3DumpHierarchyGC(PVM pVM, uint64_t cr3, uint64_t cr4, RTGCPHYS PhysSearch);
|
---|
532 |
|
---|
533 | VMMR3DECL(int) PGMR3PhysTlbGCPhys2Ptr(PVM pVM, RTGCPHYS GCPhys, bool fWritable, void **ppv);
|
---|
534 | VMMR3DECL(uint8_t) PGMR3PhysReadU8(PVM pVM, RTGCPHYS GCPhys);
|
---|
535 | VMMR3DECL(uint16_t) PGMR3PhysReadU16(PVM pVM, RTGCPHYS GCPhys);
|
---|
536 | VMMR3DECL(uint32_t) PGMR3PhysReadU32(PVM pVM, RTGCPHYS GCPhys);
|
---|
537 | VMMR3DECL(uint64_t) PGMR3PhysReadU64(PVM pVM, RTGCPHYS GCPhys);
|
---|
538 | VMMR3DECL(void) PGMR3PhysWriteU8(PVM pVM, RTGCPHYS GCPhys, uint8_t Value);
|
---|
539 | VMMR3DECL(void) PGMR3PhysWriteU16(PVM pVM, RTGCPHYS GCPhys, uint16_t Value);
|
---|
540 | VMMR3DECL(void) PGMR3PhysWriteU32(PVM pVM, RTGCPHYS GCPhys, uint32_t Value);
|
---|
541 | VMMR3DECL(void) PGMR3PhysWriteU64(PVM pVM, RTGCPHYS GCPhys, uint64_t Value);
|
---|
542 | VMMR3DECL(int) PGMR3PhysReadExternal(PVM pVM, RTGCPHYS GCPhys, void *pvBuf, size_t cbRead);
|
---|
543 | VMMR3DECL(int) PGMR3PhysWriteExternal(PVM pVM, RTGCPHYS GCPhys, const void *pvBuf, size_t cbWrite);
|
---|
544 | VMMR3DECL(int) PGMR3PhysGCPhys2CCPtrExternal(PVM pVM, RTGCPHYS GCPhys, void **ppv, PPGMPAGEMAPLOCK pLock);
|
---|
545 | VMMR3DECL(int) PGMR3PhysGCPhys2CCPtrReadOnlyExternal(PVM pVM, RTGCPHYS GCPhys, void const **ppv, PPGMPAGEMAPLOCK pLock);
|
---|
546 | VMMR3DECL(int) PGMR3PhysChunkMap(PVM pVM, uint32_t idChunk);
|
---|
547 | VMMR3DECL(void) PGMR3PhysChunkInvalidateTLB(PVM pVM);
|
---|
548 | VMMR3DECL(int) PGMR3PhysAllocateHandyPages(PVM pVM);
|
---|
549 |
|
---|
550 | VMMR3DECL(int) PGMR3CheckIntegrity(PVM pVM);
|
---|
551 |
|
---|
552 | VMMR3DECL(int) PGMR3DbgR3Ptr2GCPhys(PVM pVM, RTR3PTR R3Ptr, PRTGCPHYS pGCPhys);
|
---|
553 | VMMR3DECL(int) PGMR3DbgR3Ptr2HCPhys(PVM pVM, RTR3PTR R3Ptr, PRTHCPHYS pHCPhys);
|
---|
554 | VMMR3DECL(int) PGMR3DbgHCPhys2GCPhys(PVM pVM, RTHCPHYS HCPhys, PRTGCPHYS pGCPhys);
|
---|
555 | VMMR3DECL(int) PGMR3DbgReadGCPhys(PVM pVM, void *pvDst, RTGCPHYS GCPhysSrc, size_t cb, uint32_t fFlags, size_t *pcbRead);
|
---|
556 | VMMR3DECL(int) PGMR3DbgWriteGCPhys(PVM pVM, RTGCPHYS GCPhysDst, const void *pvSrc, size_t cb, uint32_t fFlags, size_t *pcbWritten);
|
---|
557 | VMMR3DECL(int) PGMR3DbgReadGCPtr(PVM pVM, void *pvDst, RTGCPTR GCPtrSrc, size_t cb, uint32_t fFlags, size_t *pcbRead);
|
---|
558 | VMMR3DECL(int) PGMR3DbgWriteGCPtr(PVM pVM, RTGCPTR GCPtrDst, void const *pvSrc, size_t cb, uint32_t fFlags, size_t *pcbWritten);
|
---|
559 | VMMR3DECL(int) PGMR3DbgScanPhysical(PVM pVM, RTGCPHYS GCPhys, RTGCPHYS cbRange, const uint8_t *pabNeedle, size_t cbNeedle, PRTGCPHYS pGCPhysHit);
|
---|
560 | VMMR3DECL(int) PGMR3DbgScanVirtual(PVM pVM, PVMCPU pVCpu, RTGCPTR GCPtr, RTGCPTR cbRange, const uint8_t *pabNeedle, size_t cbNeedle, PRTGCUINTPTR pGCPhysHit);
|
---|
561 | /** @} */
|
---|
562 | #endif /* IN_RING3 */
|
---|
563 |
|
---|
564 | __END_DECLS
|
---|
565 |
|
---|
566 | /** @} */
|
---|
567 | #endif
|
---|
568 |
|
---|