VirtualBox

source: vbox/trunk/include/VBox/mm.h@ 4615

Last change on this file since 4615 was 4591, checked in by vboxsync, 18 years ago

PGMPhysGCPhys2CCPtr + PGMPhysGCPhys2CCPtrRelease. Started on the NEW_PHYS_CODE.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 43.8 KB
Line 
1/** @file
2 * MM - The Memory 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_mm_h
18#define ___VBox_mm_h
19
20#include <VBox/cdefs.h>
21#include <VBox/types.h>
22#include <VBox/x86.h>
23#include <VBox/sup.h>
24
25
26__BEGIN_DECLS
27
28/** @defgroup grp_mm The Memory Manager API
29 * @{
30 */
31
32/** @name RAM Page Flags
33 * Since internal ranges have a byte granularity it's possible for a
34 * page be flagged for several uses. The access virtualization in PGM
35 * will choose the most restricted one and use EM to emulate access to
36 * the less restricted areas of the page.
37 *
38 * Bits 0-11 only since they are fitted into the offset part of a physical memory address.
39 * @{
40 */
41/** Reserved - Not RAM, ROM nor MMIO2.
42 * If this bit is cleared the memory is assumed to be some kind of RAM.
43 * Normal MMIO may set it but that depends on whether the RAM range was
44 * created specially for the MMIO or not.
45 *
46 * @remarks The current implementation will always reserve backing
47 * memory for reserved ranges to simplify things.
48 */
49#define MM_RAM_FLAGS_RESERVED BIT(0)
50/** ROM - Read Only Memory.
51 * The page have a HC physical address which contains the BIOS code. All write
52 * access is trapped and ignored.
53 *
54 * HACK: Writable shadow ROM is indicated by both ROM and MMIO2 being
55 * set. (We're out of bits.)
56 */
57#define MM_RAM_FLAGS_ROM BIT(1)
58/** MMIO - Memory Mapped I/O.
59 * All access is trapped and emulated. No physical backing is required, but
60 * might for various reasons be present.
61 */
62#define MM_RAM_FLAGS_MMIO BIT(2)
63/** MMIO2 - Memory Mapped I/O, variation 2.
64 * The virtualization is performed using real memory and only catching
65 * a few accesses for like keeping track for dirty pages.
66 * @remark Involved in the shadow ROM hack.
67 */
68#define MM_RAM_FLAGS_MMIO2 BIT(3)
69
70/** PGM has virtual page access handler(s) defined for pages with this flag. */
71#define MM_RAM_FLAGS_VIRTUAL_HANDLER BIT(4)
72/** PGM has virtual page access handler(s) for write access. */
73#define MM_RAM_FLAGS_VIRTUAL_WRITE BIT(5)
74/** PGM has virtual page access handler(s) for all access. */
75#define MM_RAM_FLAGS_VIRTUAL_ALL BIT(6)
76/** PGM has physical page access handler(s) defined for pages with this flag. */
77#define MM_RAM_FLAGS_PHYSICAL_HANDLER BIT(7)
78/** PGM has physical page access handler(s) for write access. */
79#define MM_RAM_FLAGS_PHYSICAL_WRITE BIT(8)
80/** PGM has physical page access handler(s) for all access. */
81#define MM_RAM_FLAGS_PHYSICAL_ALL BIT(9)
82/** PGM has physical page access handler(s) for this page and has temporarily disabled it. */
83#define MM_RAM_FLAGS_PHYSICAL_TEMP_OFF BIT(10)
84#ifndef NEW_PHYS_CODE
85/** Physical backing memory is allocated dynamically. Not set implies a one time static allocation. */
86#define MM_RAM_FLAGS_DYNAMIC_ALLOC BIT(11)
87#endif /* !NEW_PHYS_CODE */
88
89/** The shift used to get the reference count. */
90#define MM_RAM_FLAGS_CREFS_SHIFT 62
91/** The mask applied to the the page pool idx after using MM_RAM_FLAGS_CREFS_SHIFT to shift it down. */
92#define MM_RAM_FLAGS_CREFS_MASK 0x3
93/** The (shifted) cRef value used to indiciate that the idx is the head of a
94 * physical cross reference extent list. */
95#define MM_RAM_FLAGS_CREFS_PHYSEXT MM_RAM_FLAGS_CREFS_MASK
96/** The shift used to get the page pool idx. (Apply MM_RAM_FLAGS_IDX_MASK to the result when shifting down). */
97#define MM_RAM_FLAGS_IDX_SHIFT 48
98/** The mask applied to the the page pool idx after using MM_RAM_FLAGS_IDX_SHIFT to shift it down. */
99#define MM_RAM_FLAGS_IDX_MASK 0x3fff
100/** The idx value when we're out of of extents or there are simply too many mappings of this page. */
101#define MM_RAM_FLAGS_IDX_OVERFLOWED MM_RAM_FLAGS_IDX_MASK
102
103/** Mask for masking off any references to the page. */
104#define MM_RAM_FLAGS_NO_REFS_MASK UINT64_C(0x0000ffffffffffff)
105/** @} */
106
107/** @name MMR3PhysRegisterEx registration type
108 * @{
109 */
110typedef enum
111{
112 /** Normal physical region (flags specify exact page type) */
113 MM_PHYS_TYPE_NORMAL = 0,
114 /** Allocate part of a dynamically allocated physical region */
115 MM_PHYS_TYPE_DYNALLOC_CHUNK,
116
117 MM_PHYS_TYPE_32BIT_HACK = 0x7fffffff
118} MMPHYSREG;
119/** @} */
120
121/**
122 * Memory Allocation Tags.
123 * For use with MMHyperAlloc(), MMR3HeapAlloc(), MMR3HeapAllocEx(),
124 * MMR3HeapAllocZ() and MMR3HeapAllocZEx().
125 *
126 * @remark Don't forget to update the dump command in MMHeap.cpp!
127 */
128typedef enum MMTAG
129{
130 MM_TAG_INVALID = 0,
131
132 MM_TAG_CFGM,
133 MM_TAG_CFGM_BYTES,
134 MM_TAG_CFGM_STRING,
135 MM_TAG_CFGM_USER,
136
137 MM_TAG_CSAM,
138 MM_TAG_CSAM_PATCH,
139
140 MM_TAG_DBGF,
141 MM_TAG_DBGF_INFO,
142 MM_TAG_DBGF_LINE,
143 MM_TAG_DBGF_LINE_DUP,
144 MM_TAG_DBGF_STACK,
145 MM_TAG_DBGF_SYMBOL,
146 MM_TAG_DBGF_SYMBOL_DUP,
147 MM_TAG_DBGF_MODULE,
148
149 MM_TAG_EM,
150
151 MM_TAG_IOM,
152 MM_TAG_IOM_STATS,
153
154 MM_TAG_MM,
155 MM_TAG_MM_LOOKUP_GUEST,
156 MM_TAG_MM_LOOKUP_PHYS,
157 MM_TAG_MM_LOOKUP_VIRT,
158 MM_TAG_MM_PAGE,
159
160 MM_TAG_PATM,
161 MM_TAG_PATM_PATCH,
162
163 MM_TAG_PDM,
164 MM_TAG_PDM_DEVICE,
165 MM_TAG_PDM_DEVICE_USER,
166 MM_TAG_PDM_DRIVER,
167 MM_TAG_PDM_DRIVER_USER,
168 MM_TAG_PDM_LUN,
169 MM_TAG_PDM_QUEUE,
170 MM_TAG_PDM_THREAD,
171
172 MM_TAG_PGM,
173 MM_TAG_PGM_HANDLERS,
174 MM_TAG_PGM_POOL,
175
176 MM_TAG_REM,
177
178 MM_TAG_SELM,
179
180 MM_TAG_SSM,
181
182 MM_TAG_STAM,
183
184 MM_TAG_TM,
185
186 MM_TAG_TRPM,
187
188 MM_TAG_VM,
189 MM_TAG_VM_REQ,
190
191 MM_TAG_VMM,
192
193 MM_TAG_HWACCM,
194
195 MM_TAG_32BIT_HACK = 0x7fffffff
196} MMTAG;
197
198
199
200
201/** @defgroup grp_mm_hyper Hypervisor Memory Management
202 * @ingroup grp_mm
203 * @{ */
204
205/**
206 * Converts a ring-0 host context address in the Hypervisor memory region to a ring-3 host context address.
207 *
208 * @returns ring-3 host context address.
209 * @param pVM The VM to operate on.
210 * @param R0Ptr The ring-0 host context address.
211 * You'll be damned if this is not in the HMA! :-)
212 * @thread The Emulation Thread.
213 */
214MMDECL(RTR3PTR) MMHyperR0ToR3(PVM pVM, RTR0PTR R0Ptr);
215
216/**
217 * Converts a ring-0 host context address in the Hypervisor memory region to a guest context address.
218 *
219 * @returns guest context address.
220 * @param pVM The VM to operate on.
221 * @param R0Ptr The ring-0 host context address.
222 * You'll be damned if this is not in the HMA! :-)
223 * @thread The Emulation Thread.
224 */
225MMDECL(RTGCPTR) MMHyperR0ToGC(PVM pVM, RTR0PTR R0Ptr);
226
227/**
228 * Converts a ring-0 host context address in the Hypervisor memory region to a current context address.
229 *
230 * @returns current context address.
231 * @param pVM The VM to operate on.
232 * @param R0Ptr The ring-0 host context address.
233 * You'll be damned if this is not in the HMA! :-)
234 * @thread The Emulation Thread.
235 */
236#ifndef IN_RING0
237MMDECL(void *) MMHyperR0ToCC(PVM pVM, RTR0PTR R0Ptr);
238#endif
239
240
241/**
242 * Converts a ring-3 host context address in the Hypervisor memory region to a ring-0 host context address.
243 *
244 * @returns ring-0 host context address.
245 * @param pVM The VM to operate on.
246 * @param R3Ptr The ring-3 host context address.
247 * You'll be damned if this is not in the HMA! :-)
248 * @thread The Emulation Thread.
249 */
250MMDECL(RTR0PTR) MMHyperR3ToR0(PVM pVM, RTR3PTR R3Ptr);
251
252/**
253 * Converts a ring-3 host context address in the Hypervisor memory region to a guest context address.
254 *
255 * @returns guest context address.
256 * @param pVM The VM to operate on.
257 * @param R3Ptr The ring-3 host context address.
258 * You'll be damned if this is not in the HMA! :-)
259 * @thread The Emulation Thread.
260 */
261MMDECL(RTGCPTR) MMHyperR3ToGC(PVM pVM, RTR3PTR R3Ptr);
262
263/**
264 * Converts a ring-3 host context address in the Hypervisor memory region to a current context address.
265 *
266 * @returns current context address.
267 * @param pVM The VM to operate on.
268 * @param R3Ptr The ring-3 host context address.
269 * You'll be damned if this is not in the HMA! :-)
270 * @thread The Emulation Thread.
271 */
272#ifndef IN_RING3
273MMDECL(void *) MMHyperR3ToCC(PVM pVM, RTR3PTR R3Ptr);
274#else
275DECLINLINE(void *) MMHyperR3ToCC(PVM pVM, RTR3PTR R3Ptr)
276{
277 NOREF(pVM);
278 return R3Ptr;
279}
280#endif
281
282
283/**
284 * Converts a guest context address in the Hypervisor memory region to a ring-3 context address.
285 *
286 * @returns ring-3 host context address.
287 * @param pVM The VM to operate on.
288 * @param GCPtr The guest context address.
289 * You'll be damned if this is not in the HMA! :-)
290 * @thread The Emulation Thread.
291 */
292MMDECL(RTR3PTR) MMHyperGCToR3(PVM pVM, RTGCPTR GCPtr);
293
294/**
295 * Converts a guest context address in the Hypervisor memory region to a ring-0 host context address.
296 *
297 * @returns ring-0 host context address.
298 * @param pVM The VM to operate on.
299 * @param GCPtr The guest context address.
300 * You'll be damned if this is not in the HMA! :-)
301 * @thread The Emulation Thread.
302 */
303MMDECL(RTR0PTR) MMHyperGCToR0(PVM pVM, RTGCPTR GCPtr);
304
305/**
306 * Converts a guest context address in the Hypervisor memory region to a current context address.
307 *
308 * @returns current context address.
309 * @param pVM The VM to operate on.
310 * @param GCPtr The guest host context address.
311 * You'll be damned if this is not in the HMA! :-)
312 * @thread The Emulation Thread.
313 */
314#ifndef IN_GC
315MMDECL(void *) MMHyperGCToCC(PVM pVM, RTGCPTR GCPtr);
316#else
317DECLINLINE(void *) MMHyperGCToCC(PVM pVM, RTGCPTR GCPtr)
318{
319 NOREF(pVM);
320 return GCPtr;
321}
322#endif
323
324
325
326/**
327 * Converts a current context address in the Hypervisor memory region to a ring-3 host context address.
328 *
329 * @returns ring-3 host context address.
330 * @param pVM The VM to operate on.
331 * @param pv The current context address.
332 * You'll be damned if this is not in the HMA! :-)
333 * @thread The Emulation Thread.
334 */
335#ifndef IN_RING3
336MMDECL(RTR3PTR) MMHyperCCToR3(PVM pVM, void *pv);
337#else
338DECLINLINE(RTR3PTR) MMHyperCCToR3(PVM pVM, void *pv)
339{
340 NOREF(pVM);
341 return pv;
342}
343#endif
344
345/**
346 * Converts a current context address in the Hypervisor memory region to a ring-0 host context address.
347 *
348 * @returns ring-0 host context address.
349 * @param pVM The VM to operate on.
350 * @param pv The current context address.
351 * You'll be damned if this is not in the HMA! :-)
352 * @thread The Emulation Thread.
353 */
354#ifndef IN_RING0
355MMDECL(RTR0PTR) MMHyperCCToR0(PVM pVM, void *pv);
356#else
357DECLINLINE(RTR0PTR) MMHyperCCToR0(PVM pVM, void *pv)
358{
359 NOREF(pVM);
360 return pv;
361}
362#endif
363
364/**
365 * Converts a current context address in the Hypervisor memory region to a guest context address.
366 *
367 * @returns guest context address.
368 * @param pVM The VM to operate on.
369 * @param pv The current context address.
370 * You'll be damned if this is not in the HMA! :-)
371 * @thread The Emulation Thread.
372 */
373#ifndef IN_GC
374MMDECL(RTGCPTR) MMHyperCCToGC(PVM pVM, void *pv);
375#else
376DECLINLINE(RTGCPTR) MMHyperCCToGC(PVM pVM, void *pv)
377{
378 NOREF(pVM);
379 return pv;
380}
381#endif
382
383
384
385/**
386 * Converts a current context address in the Hypervisor memory region to a HC address.
387 * The memory must have been allocated with MMHyperAlloc().
388 *
389 * @returns HC address.
390 * @param pVM The VM to operate on.
391 * @param Ptr The current context address.
392 * @thread The Emulation Thread.
393 * @deprecated
394 */
395#ifdef IN_GC
396MMDECL(RTHCPTR) MMHyper2HC(PVM pVM, uintptr_t Ptr);
397#else
398DECLINLINE(RTHCPTR) MMHyper2HC(PVM pVM, uintptr_t Ptr)
399{
400 NOREF(pVM);
401 return (RTHCPTR)Ptr;
402}
403#endif
404
405/**
406 * Converts a current context address in the Hypervisor memory region to a GC address.
407 * The memory must have been allocated with MMHyperAlloc().
408 *
409 * @returns HC address.
410 * @param pVM The VM to operate on.
411 * @param Ptr The current context address.
412 * @thread The Emulation Thread.
413 */
414#ifndef IN_GC
415MMDECL(RTGCPTR) MMHyper2GC(PVM pVM, uintptr_t Ptr);
416#else
417DECLINLINE(RTGCPTR) MMHyper2GC(PVM pVM, uintptr_t Ptr)
418{
419 NOREF(pVM);
420 return (RTGCPTR)Ptr;
421}
422#endif
423
424/**
425 * Converts a HC address in the Hypervisor memory region to a GC address.
426 * The memory must have been allocated with MMGCHyperAlloc() or MMR3HyperAlloc().
427 *
428 * @returns GC address.
429 * @param pVM The VM to operate on.
430 * @param HCPtr The host context address.
431 * You'll be damned if this is not in the HMA! :-)
432 * @thread The Emulation Thread.
433 * @deprecated
434 */
435MMDECL(RTGCPTR) MMHyperHC2GC(PVM pVM, RTHCPTR HCPtr);
436
437/**
438 * Converts a GC address in the Hypervisor memory region to a HC address.
439 * The memory must have been allocated with MMGCHyperAlloc() or MMR3HyperAlloc().
440 *
441 * @returns HC address.
442 * @param pVM The VM to operate on.
443 * @param GCPtr The guest context address.
444 * You'll be damned if this is not in the HMA! :-)
445 * @thread The Emulation Thread.
446 * @deprecated
447 */
448MMDECL(RTHCPTR) MMHyperGC2HC(PVM pVM, RTGCPTR GCPtr);
449
450
451/**
452 * Allocates memory in the Hypervisor (GC VMM) area.
453 * The returned memory is of course zeroed.
454 *
455 * @returns VBox status code.
456 * @param pVM The VM to operate on.
457 * @param cb Number of bytes to allocate.
458 * @param uAlignment Required memory alignment in bytes.
459 * Values are 0,8,16,32 and PAGE_SIZE.
460 * 0 -> default alignment, i.e. 8 bytes.
461 * @param enmTag The statistics tag.
462 * @param ppv Where to store the address to the allocated
463 * memory.
464 * @remark This is assumed not to be used at times when serialization is required.
465 */
466MMDECL(int) MMHyperAlloc(PVM pVM, size_t cb, uint32_t uAlignment, MMTAG enmTag, void **ppv);
467
468/**
469 * Free memory allocated using MMHyperAlloc().
470 *
471 * It's not possible to free memory which is page aligned!
472 *
473 * @returns VBox status code.
474 * @param pVM The VM to operate on.
475 * @param pv The memory to free.
476 * @remark Try avoid freeing hyper memory.
477 * @thread The Emulation Thread.
478 */
479MMDECL(int) MMHyperFree(PVM pVM, void *pv);
480
481#ifdef DEBUG
482/**
483 * Dumps the hypervisor heap to Log.
484 * @param pVM VM Handle.
485 * @thread The Emulation Thread.
486 */
487MMDECL(void) MMHyperHeapDump(PVM pVM);
488#endif
489
490/**
491 * Query the amount of free memory in the hypervisor heap.
492 *
493 * @returns Number of free bytes in the hypervisor heap.
494 * @thread Any.
495 */
496MMDECL(size_t) MMHyperHeapGetFreeSize(PVM pVM);
497
498/**
499 * Query the size the hypervisor heap.
500 *
501 * @returns The size of the hypervisor heap in bytes.
502 * @thread Any.
503 */
504MMDECL(size_t) MMHyperHeapGetSize(PVM pVM);
505
506
507/**
508 * Query the address and size the hypervisor memory area.
509 *
510 * @returns Base address of the hypervisor area.
511 * @param pVM VM Handle.
512 * @param pcb Where to store the size of the hypervisor area. (out)
513 * @thread Any.
514 */
515MMDECL(RTGCPTR) MMHyperGetArea(PVM pVM, size_t *pcb);
516
517/**
518 * Checks if an address is within the hypervisor memory area.
519 *
520 * @returns true if inside.
521 * @returns false if outside.
522 * @param pVM VM handle.
523 * @param GCPtr The pointer to check.
524 * @thread The Emulation Thread.
525 */
526MMDECL(bool) MMHyperIsInsideArea(PVM pVM, RTGCPTR GCPtr);
527
528/**
529 * Convert a page in the page pool to a HC physical address.
530 * This works for pages allocated by MMR3PageAlloc(), MMR3PageAllocPhys()
531 * and MMR3PageAllocLow().
532 *
533 * @returns Physical address for the specified page table.
534 * @param pVM VM handle.
535 * @param pvPage Page which physical address we query.
536 * @thread The Emulation Thread.
537 */
538MMDECL(RTHCPHYS) MMPage2Phys(PVM pVM, void *pvPage);
539
540/**
541 * Convert physical address of a page to a HC virtual address.
542 * This works for pages allocated by MMR3PageAlloc(), MMR3PageAllocPhys()
543 * and MMR3PageAllocLow().
544 *
545 * @returns Pointer to the page at that physical address.
546 * @param pVM VM handle.
547 * @param HCPhysPage The physical address of a page.
548 * @thread The Emulation Thread.
549 */
550MMDECL(void *) MMPagePhys2Page(PVM pVM, RTHCPHYS HCPhysPage);
551
552
553/**
554 * Convert physical address of a page to a HC virtual address.
555 * This works for pages allocated by MMR3PageAlloc(), MMR3PageAllocPhys()
556 * and MMR3PageAllocLow().
557 *
558 * @returns VBox status code.
559 * @param pVM VM handle.
560 * @param HCPhysPage The physical address of a page.
561 * @param ppvPage Where to store the address corresponding to HCPhysPage.
562 * @thread The Emulation Thread.
563 */
564MMDECL(int) MMPagePhys2PageEx(PVM pVM, RTHCPHYS HCPhysPage, void **ppvPage);
565
566
567/**
568 * Try convert physical address of a page to a HC virtual address.
569 * This works for pages allocated by MMR3PageAlloc(), MMR3PageAllocPhys()
570 * and MMR3PageAllocLow().
571 *
572 * @returns VBox status code.
573 * @param pVM VM handle.
574 * @param HCPhysPage The physical address of a page.
575 * @param ppvPage Where to store the address corresponding to HCPhysPage.
576 * @thread The Emulation Thread.
577 */
578MMDECL(int) MMPagePhys2PageTry(PVM pVM, RTHCPHYS HCPhysPage, void **ppvPage);
579
580/**
581 * Convert GC physical address to HC virtual address.
582 *
583 * @returns HC virtual address.
584 * @param pVM VM Handle
585 * @param GCPhys Guest context physical address.
586 * @param cbRange Physical range
587 * @thread The Emulation Thread.
588 * @deprecated
589 */
590MMDECL(void *) MMPhysGCPhys2HCVirt(PVM pVM, RTGCPHYS GCPhys, RTUINT cbRange);
591
592/**
593 * Convert GC virtual address to HC virtual address.
594 *
595 * This uses the current PD of the guest.
596 *
597 * @returns HC virtual address.
598 * @param pVM VM Handle
599 * @param GCPtr Guest context virtual address.
600 * @thread The Emulation Thread.
601 * @deprecated
602 */
603MMDECL(void *) MMPhysGCVirt2HCVirt(PVM pVM, RTGCPTR pvGC);
604
605
606/** @def MMHYPER_GC_ASSERT_GCPTR
607 * Asserts that an address is either NULL or inside the hypervisor memory area.
608 * This assertion only works while IN_GC, it's a NOP everywhere else.
609 * @thread The Emulation Thread.
610 */
611#ifdef IN_GC
612# define MMHYPER_GC_ASSERT_GCPTR(pVM, GCPtr) Assert(MMHyperIsInsideArea((pVM), (GCPtr)) || !(GCPtr))
613#else
614# define MMHYPER_GC_ASSERT_GCPTR(pVM, GCPtr) do { } while (0)
615#endif
616
617/** @} */
618
619
620#ifdef IN_RING3
621/** @defgroup grp_mm_r3 The MM Host Context Ring-3 API
622 * @ingroup grp_mm
623 * @{
624 */
625
626/**
627 * Initialization of MM (save anything depending on PGM).
628 *
629 * @returns VBox status code.
630 * @param pVM The VM to operate on.
631 * @thread The Emulation Thread.
632 */
633MMR3DECL(int) MMR3Init(PVM pVM);
634
635/**
636 * Initializes the MM parts which depends on PGM being initialized.
637 *
638 * @returns VBox status code.
639 * @param pVM The VM to operate on.
640 * @thread The Emulation Thread.
641 */
642MMR3DECL(int) MMR3InitPaging(PVM pVM);
643
644/**
645 * Finalizes the HMA mapping.
646 *
647 * This is called later during init, most (all) HMA allocations should be done
648 * by the time this function is called.
649 *
650 * @returns VBox status.
651 */
652MMR3DECL(int) MMR3HyperInitFinalize(PVM pVM);
653
654/**
655 * Terminates the MM.
656 *
657 * Termination means cleaning up and freeing all resources,
658 * the VM it self is at this point powered off or suspended.
659 *
660 * @returns VBox status code.
661 * @param pVM The VM to operate on.
662 * @thread The Emulation Thread.
663 */
664MMR3DECL(int) MMR3Term(PVM pVM);
665
666/**
667 * Reset notification.
668 *
669 * MM will reload shadow ROMs into RAM at this point and make
670 * the ROM writable.
671 *
672 * @param pVM The VM handle.
673 */
674MMR3DECL(void) MMR3Reset(PVM pVM);
675
676/**
677 * Convert HC Physical address to HC Virtual address.
678 *
679 * @returns VBox status.
680 * @param pVM VM handle.
681 * @param HCPhys The host context virtual address.
682 * @param ppv Where to store the resulting address.
683 * @thread The Emulation Thread.
684 */
685MMR3DECL(int) MMR3HCPhys2HCVirt(PVM pVM, RTHCPHYS HCPhys, void **ppv);
686
687/**
688 * Read memory from GC virtual address using the current guest CR3.
689 *
690 * @returns VBox status.
691 * @param pVM VM handle.
692 * @param pvDst Destination address (HC of course).
693 * @param GCPtr GC virtual address.
694 * @param cb Number of bytes to read.
695 * @thread The Emulation Thread.
696 */
697MMR3DECL(int) MMR3ReadGCVirt(PVM pVM, void *pvDst, RTGCPTR GCPtr, size_t cb);
698
699/**
700 * Write to memory at GC virtual address translated using the current guest CR3.
701 *
702 * @returns VBox status.
703 * @param pVM VM handle.
704 * @param GCPtrDst GC virtual address.
705 * @param pvSrc The source address (HC of course).
706 * @param cb Number of bytes to read.
707 */
708MMR3DECL(int) MMR3WriteGCVirt(PVM pVM, RTGCPTR GCPtrDst, const void *pvSrc, size_t cb);
709
710
711/** @defgroup grp_mm_r3_hyper Hypervisor Memory Manager (HC R3 Portion)
712 * @ingroup grp_mm_r3
713 * @{ */
714/**
715 * Allocates memory in the Hypervisor (GC VMM) area which never will
716 * be freed and don't have any offset based relation to other heap blocks.
717 *
718 * The latter means that two blocks allocated by this API will not have the
719 * same relative position to each other in GC and HC. In short, never use
720 * this API for allocating nodes for an offset based AVL tree!
721 *
722 * The returned memory is of course zeroed.
723 *
724 * @returns VBox status code.
725 * @param pVM The VM to operate on.
726 * @param cb Number of bytes to allocate.
727 * @param uAlignment Required memory alignment in bytes.
728 * Values are 0,8,16,32 and PAGE_SIZE.
729 * 0 -> default alignment, i.e. 8 bytes.
730 * @param enmTag The statistics tag.
731 * @param ppv Where to store the address to the allocated
732 * memory.
733 * @remark This is assumed not to be used at times when serialization is required.
734 */
735MMDECL(int) MMR3HyperAllocOnceNoRel(PVM pVM, size_t cb, uint32_t uAlignment, MMTAG enmTag, void **ppv);
736
737/**
738 * Maps contiguous HC physical memory into the hypervisor region in the GC.
739 *
740 * @return VBox status code.
741 *
742 * @param pVM VM handle.
743 * @param pvHC Host context address of the memory. Must be page aligned!
744 * @param HCPhys Host context physical address of the memory to be mapped. Must be page aligned!
745 * @param cb Size of the memory. Will be rounded up to nearest page.
746 * @param pszDesc Description.
747 * @param pGCPtr Where to store the GC address.
748 * @thread The Emulation Thread.
749 */
750MMR3DECL(int) MMR3HyperMapHCPhys(PVM pVM, void *pvHC, RTHCPHYS HCPhys, size_t cb, const char *pszDesc, PRTGCPTR pGCPtr);
751
752/**
753 * Maps contiguous GC physical memory into the hypervisor region in the GC.
754 *
755 * @return VBox status code.
756 *
757 * @param pVM VM handle.
758 * @param GCPhys Guest context physical address of the memory to be mapped. Must be page aligned!
759 * @param cb Size of the memory. Will be rounded up to nearest page.
760 * @param pszDesc Mapping description.
761 * @param pGCPtr Where to store the GC address.
762 * @thread The Emulation Thread.
763 */
764MMR3DECL(int) MMR3HyperMapGCPhys(PVM pVM, RTGCPHYS GCPhys, size_t cb, const char *pszDesc, PRTGCPTR pGCPtr);
765
766/**
767 * Locks and Maps HC virtual memory into the hypervisor region in the GC.
768 *
769 * @return VBox status code.
770 *
771 * @param pVM VM handle.
772 * @param pvHC Host context address of the memory (may be not page aligned).
773 * @param cb Size of the memory. Will be rounded up to nearest page.
774 * @param fFree Set this if MM is responsible for freeing the memory using SUPPageFree.
775 * @param pszDesc Mapping description.
776 * @param pGCPtr Where to store the GC address corresponding to pvHC.
777 * @thread The Emulation Thread.
778 */
779MMR3DECL(int) MMR3HyperMapHCRam(PVM pVM, void *pvHC, size_t cb, bool fFree, const char *pszDesc, PRTGCPTR pGCPtr);
780
781/**
782 * Maps locked R3 virtual memory into the hypervisor region in the GC.
783 *
784 * @return VBox status code.
785 *
786 * @param pVM VM handle.
787 * @param pvR3 The ring-3 address of the memory, must be page aligned.
788 * @param pvR0 The ring-0 address of the memory, must be page aligned. (optional)
789 * @param cPages The number of pages.
790 * @param paPages The page descriptors.
791 * @param pszDesc Mapping description.
792 * @param pGCPtr Where to store the GC address corresponding to pvHC.
793 */
794MMR3DECL(int) MMR3HyperMapPages(PVM pVM, void *pvR3, RTR0PTR pvR0, size_t cPages, PCSUPPAGE paPages, const char *pszDesc, PRTGCPTR pGCPtr);
795
796/**
797 * Reserves a hypervisor memory area.
798 * Most frequent usage is fence pages and dynamically mappings like the guest PD and PDPTR.
799 *
800 * @return VBox status code.
801 *
802 * @param pVM VM handle.
803 * @param cb Size of the memory. Will be rounded up to nearest page.
804 * @param pszDesc Mapping description.
805 * @param pGCPtr Where to store the assigned GC address. Optional.
806 * @thread The Emulation Thread.
807 */
808MMR3DECL(int) MMR3HyperReserve(PVM pVM, unsigned cb, const char *pszDesc, PRTGCPTR pGCPtr);
809
810
811/**
812 * Convert hypervisor HC virtual address to HC physical address.
813 *
814 * @returns HC physical address.
815 * @param pVM VM Handle
816 * @param pvHC Host context physical address.
817 * @thread The Emulation Thread.
818 */
819MMR3DECL(RTHCPHYS) MMR3HyperHCVirt2HCPhys(PVM pVM, void *pvHC);
820/**
821 * Convert hypervisor HC virtual address to HC physical address.
822 *
823 * @returns HC physical address.
824 * @param pVM VM Handle
825 * @param pvHC Host context physical address.
826 * @param pHCPhys Where to store the HC physical address.
827 * @thread The Emulation Thread.
828 */
829MMR3DECL(int) MMR3HyperHCVirt2HCPhysEx(PVM pVM, void *pvHC, PRTHCPHYS pHCPhys);
830/**
831 * Convert hypervisor HC physical address to HC virtual address.
832 *
833 * @returns HC virtual address.
834 * @param pVM VM Handle
835 * @param HCPhys Host context physical address.
836 * @thread The Emulation Thread.
837 */
838MMR3DECL(void *) MMR3HyperHCPhys2HCVirt(PVM pVM, RTHCPHYS HCPhys);
839/**
840 * Convert hypervisor HC physical address to HC virtual address.
841 *
842 * @returns VBox status.
843 * @param pVM VM Handle
844 * @param HCPhys Host context physical address.
845 * @param ppv Where to store the HC virtual address.
846 * @thread The Emulation Thread.
847 */
848MMR3DECL(int) MMR3HyperHCPhys2HCVirtEx(PVM pVM, RTHCPHYS HCPhys, void **ppv);
849
850/**
851 * Read hypervisor memory from GC virtual address.
852 *
853 * @returns VBox status.
854 * @param pVM VM handle.
855 * @param pvDst Destination address (HC of course).
856 * @param GCPtr GC virtual address.
857 * @param cb Number of bytes to read.
858 * @thread The Emulation Thread.
859 */
860MMR3DECL(int) MMR3HyperReadGCVirt(PVM pVM, void *pvDst, RTGCPTR GCPtr, size_t cb);
861
862/** @} */
863
864
865/** @defgroup grp_mm_phys Guest Physical Memory Manager
866 * @ingroup grp_mm_r3
867 * @{ */
868
869/**
870 * Register externally allocated RAM for the virtual machine.
871 *
872 * The memory registered with the VM thru this interface must not be freed
873 * before the virtual machine has been destroyed. Bad things may happen... :-)
874 *
875 * @return VBox status code.
876 * @param pVM VM handle.
877 * @param pvRam Virtual address of the guest's physical memory range Must be page aligned.
878 * @param GCPhys The physical address the ram shall be registered at.
879 * @param cb Size of the memory. Must be page aligend.
880 * @param fFlags Flags of the MM_RAM_FLAGS_* defines.
881 * @param pszDesc Description of the memory.
882 * @thread The Emulation Thread.
883 */
884MMR3DECL(int) MMR3PhysRegister(PVM pVM, void *pvRam, RTGCPHYS GCPhys, unsigned cb, unsigned fFlags, const char *pszDesc);
885
886/**
887 * Register externally allocated RAM for the virtual machine.
888 *
889 * The memory registered with the VM thru this interface must not be freed
890 * before the virtual machine has been destroyed. Bad things may happen... :-)
891 *
892 * @return VBox status code.
893 * @param pVM VM handle.
894 * @param pvRam Virtual address of the guest's physical memory range Must be page aligned.
895 * @param GCPhys The physical address the ram shall be registered at.
896 * @param cb Size of the memory. Must be page aligend.
897 * @param fFlags Flags of the MM_RAM_FLAGS_* defines.
898 * @param enmType Physical range type (MM_PHYS_TYPE_*)
899 * @param pszDesc Description of the memory.
900 * @thread The Emulation Thread.
901 * @todo update this description.
902 */
903MMR3DECL(int) MMR3PhysRegisterEx(PVM pVM, void *pvRam, RTGCPHYS GCPhys, unsigned cb, unsigned fFlags, MMPHYSREG enmType, const char *pszDesc);
904
905/**
906 * Register previously registered externally allocated RAM for the virtual machine.
907 *
908 * Use this only for MMIO ranges or the guest will become very confused.
909 * The memory registered with the VM thru this interface must not be freed
910 * before the virtual machine has been destroyed. Bad things may happen... :-)
911 *
912 * @return VBox status code.
913 * @param pVM VM handle.
914 * @param GCPhysOld The physical address the ram was registered at.
915 * @param GCPhysNew The physical address the ram shall be registered at.
916 * @param cb Size of the memory. Must be page aligend.
917 * @thread The Emulation Thread.
918 */
919MMR3DECL(int) MMR3PhysRelocate(PVM pVM, RTGCPHYS GCPhysOld, RTGCPHYS GCPhysNew, unsigned cb);
920
921/**
922 * Register a ROM (BIOS) region.
923 *
924 * It goes without saying that this is read-only memory. The memory region must be
925 * in unassigned memory. I.e. from the top of the address space or on the PC in
926 * the 0xa0000-0xfffff range.
927 *
928 * @returns VBox status.
929 * @param pVM VM Handle.
930 * @param pDevIns The device instance owning the ROM region.
931 * @param GCPhys First physical address in the range.
932 * Must be page aligned!
933 * @param cbRange The size of the range (in bytes).
934 * Must be page aligned!
935 * @param pvBinary Pointer to the binary data backing the ROM image.
936 * This must be cbRange bytes big.
937 * It will be copied and doesn't have to stick around.
938 * It will be copied and doesn't have to stick around if fShadow is clear.
939 * @param fShadow Whether to emulate ROM shadowing. This involves leaving
940 * the ROM writable for a while during the POST and refreshing
941 * it at reset. When this flag is set, the memory pointed to by
942 * pvBinary has to stick around for the lifespan of the VM.
943 * @param pszDesc Pointer to description string. This must not be freed.
944 * @remark There is no way to remove the rom, automatically on device cleanup or
945 * manually from the device yet. At present I doubt we need such features...
946 * @thread The Emulation Thread.
947 */
948MMR3DECL(int) MMR3PhysRomRegister(PVM pVM, PPDMDEVINS pDevIns, RTGCPHYS GCPhys, RTUINT cbRange, const void *pvBinary, bool fShadow, const char *pszDesc);
949
950/**
951 * Write-protects a shadow ROM range.
952 *
953 * This is called late in the POST for shadow ROM ranges.
954 *
955 * @returns VBox status code.
956 * @param pVM The VM handle.
957 * @param GCPhys Start of the registered shadow ROM range
958 * @param cbRange The length of the registered shadow ROM range.
959 * This can be NULL (not sure about the BIOS interface yet).
960 */
961MMR3DECL(int) MMR3PhysRomProtect(PVM pVM, RTGCPHYS GCPhys, RTUINT cbRange);
962
963/**
964 * Reserve physical address space for ROM and MMIO ranges.
965 *
966 * @returns VBox status code.
967 * @param pVM VM Handle.
968 * @param GCPhys Start physical address.
969 * @param cbRange The size of the range.
970 * @param pszDesc Description string.
971 * @thread The Emulation Thread.
972 */
973MMR3DECL(int) MMR3PhysReserve(PVM pVM, RTGCPHYS GCPhys, RTUINT cbRange, const char *pszDesc);
974
975/**
976 * Get the size of the base RAM.
977 * This usually means the size of the first contigous block of physical memory.
978 *
979 * @returns
980 * @param pVM
981 * @thread Any.
982 */
983MMR3DECL(uint64_t) MMR3PhysGetRamSize(PVM pVM);
984
985
986/** @} */
987
988
989/** @defgroup grp_mm_page Physical Page Pool
990 * @ingroup grp_mm_r3
991 * @{ */
992/**
993 * Allocates a page from the page pool.
994 *
995 * This function may returns pages which has physical addresses any
996 * where. If you require a page to be within the first 4GB of physical
997 * memory, use MMR3PageAllocLow().
998 *
999 * @returns Pointer to the allocated page page.
1000 * @returns NULL on failure.
1001 * @param pVM VM handle.
1002 * @thread The Emulation Thread.
1003 */
1004MMR3DECL(void *) MMR3PageAlloc(PVM pVM);
1005
1006/**
1007 * Allocates a page from the page pool and return its physical address.
1008 *
1009 * This function may returns pages which has physical addresses any
1010 * where. If you require a page to be within the first 4GB of physical
1011 * memory, use MMR3PageAllocLow().
1012 *
1013 * @returns Pointer to the allocated page page.
1014 * @returns NIL_RTHCPHYS on failure.
1015 * @param pVM VM handle.
1016 * @thread The Emulation Thread.
1017 */
1018MMR3DECL(RTHCPHYS) MMR3PageAllocPhys(PVM pVM);
1019
1020/**
1021 * Frees a page allocated from the page pool by MMR3PageAlloc() and MMR3PageAllocPhys().
1022 *
1023 * @param pVM VM handle.
1024 * @param pvPage Pointer to the page.
1025 * @thread The Emulation Thread.
1026 */
1027MMR3DECL(void) MMR3PageFree(PVM pVM, void *pvPage);
1028
1029/**
1030 * Allocates a page from the low page pool.
1031 *
1032 * @returns Pointer to the allocated page.
1033 * @returns NULL on failure.
1034 * @param pVM VM handle.
1035 * @thread The Emulation Thread.
1036 */
1037MMR3DECL(void *) MMR3PageAllocLow(PVM pVM);
1038
1039/**
1040 * Frees a page allocated from the page pool by MMR3PageAllocLow().
1041 *
1042 * @param pVM VM handle.
1043 * @param pvPage Pointer to the page.
1044 * @thread The Emulation Thread.
1045 */
1046MMR3DECL(void) MMR3PageFreeLow(PVM pVM, void *pvPage);
1047
1048/**
1049 * Free a page allocated from the page pool by physical address.
1050 * This works for pages allocated by MMR3PageAlloc(), MMR3PageAllocPhys()
1051 * and MMR3PageAllocLow().
1052 *
1053 * @param pVM VM handle.
1054 * @param HCPhysPage The physical address of the page to be freed.
1055 * @thread The Emulation Thread.
1056 */
1057MMR3DECL(void) MMR3PageFreeByPhys(PVM pVM, RTHCPHYS HCPhysPage);
1058
1059/**
1060 * Gets the HC pointer to the dummy page.
1061 *
1062 * The dummy page is used as a place holder to prevent potential bugs
1063 * from doing really bad things to the system.
1064 *
1065 * @returns Pointer to the dummy page.
1066 * @param pVM VM handle.
1067 * @thread The Emulation Thread.
1068 */
1069MMR3DECL(void *) MMR3PageDummyHCPtr(PVM pVM);
1070
1071/**
1072 * Gets the HC Phys to the dummy page.
1073 *
1074 * The dummy page is used as a place holder to prevent potential bugs
1075 * from doing really bad things to the system.
1076 *
1077 * @returns Pointer to the dummy page.
1078 * @param pVM VM handle.
1079 * @thread The Emulation Thread.
1080 */
1081MMR3DECL(RTHCPHYS) MMR3PageDummyHCPhys(PVM pVM);
1082
1083
1084#if 1 /* these are temporary wrappers and will be removed soon */
1085/**
1086 * Allocates a Page Table.
1087 *
1088 * @returns Pointer to page table.
1089 * @returns NULL on failure.
1090 * @param pVM VM handle.
1091 * @deprecated Use MMR3PageAlloc().
1092 */
1093DECLINLINE(PVBOXPT) MMR3PTAlloc(PVM pVM)
1094{
1095 return (PVBOXPT)MMR3PageAlloc(pVM);
1096}
1097
1098/**
1099 * Free a Page Table.
1100 *
1101 * @param pVM VM handle.
1102 * @param pPT Pointer to the page table as returned by MMR3PTAlloc().
1103 * @deprecated Use MMR3PageFree().
1104 */
1105DECLINLINE(void) MMR3PTFree(PVM pVM, PVBOXPT pPT)
1106{
1107 MMR3PageFree(pVM, pPT);
1108}
1109
1110/**
1111 * Free a Page Table by physical address.
1112 *
1113 * @param pVM VM handle.
1114 * @param HCPhysPT The physical address of the page table to be freed.
1115 * @deprecated Use MMR3PageFreeByPhys().
1116 */
1117DECLINLINE(void) MMR3PTFreeByPhys(PVM pVM, RTHCPHYS HCPhysPT)
1118{
1119 MMR3PageFreeByPhys(pVM, HCPhysPT);
1120}
1121
1122/**
1123 * Convert a Page Table address to a HC physical address.
1124 *
1125 * @returns Physical address for the specified page table.
1126 * @param pVM VM handle.
1127 * @param pPT Page table which physical address we query.
1128 * @deprecated Use MMR3Page2Phys().
1129 */
1130DECLINLINE(RTHCPHYS) MMR3PT2Phys(PVM pVM, PVBOXPT pPT)
1131{
1132 return MMPage2Phys(pVM, pPT);
1133}
1134
1135/**
1136 * Convert a physical address to a page table address
1137 *
1138 * @returns Pointer to the page table at that physical address.
1139 * @param pVM VM handle.
1140 * @param PhysPT Page table which physical address we query.
1141 * @deprecated Use MMR3PagePhys2Page().
1142 */
1143DECLINLINE(PVBOXPT) MMR3Phys2PT(PVM pVM, RTHCPHYS PhysPT)
1144{
1145 return (PVBOXPT)MMPagePhys2Page(pVM, PhysPT);
1146}
1147
1148/**
1149 * Allocate a Page Directory.
1150 *
1151 * @returns Pointer to the page directory.
1152 * @returns NULL on failure.
1153 * @param pVM VM handle.
1154 * @deprecated Use MMR3PageAlloc().
1155 */
1156DECLINLINE(PVBOXPD) MMR3PDAlloc(PVM pVM)
1157{
1158 return (PVBOXPD)MMR3PageAlloc(pVM);
1159}
1160
1161/**
1162 * Free a Page Directory.
1163 *
1164 * @param pVM VM handle.
1165 * @param pPD Pointer to the page directory allocated by MMR3PDAlloc().
1166 * @deprecated Use MMR3PageFree().
1167 */
1168DECLINLINE(void) MMR3PDFree(PVM pVM, PVBOXPD pPD)
1169{
1170 MMR3PageFree(pVM, pPD);
1171}
1172
1173/**
1174 * Convert a Page Directory address to a physical address.
1175 *
1176 * @returns Physical address for the specified page directory.
1177 * @param pVM VM handle.
1178 * @param pPD Page directory which physical address we query.
1179 * Allocated by MMR3PDAlloc().
1180 * @deprecated Use MMR3Page2Phys().
1181 */
1182DECLINLINE(RTHCPHYS) MMR3PD2Phys(PVM pVM, PVBOXPD pPD)
1183{
1184 return MMPage2Phys(pVM, pPD);
1185}
1186
1187/**
1188 * Convert a physical address to a page directory address
1189 *
1190 * @returns Pointer to the page directory at that physical address.
1191 * @param pVM VM handle.
1192 * @param PhysPD Physical address of page directory.
1193 * Allocated by MMR3PDAlloc().
1194 * @deprecated Use MMR3PageAlloc().
1195 */
1196DECLINLINE(PVBOXPD) MMR3Phys2PD(PVM pVM, RTHCPHYS PhysPD)
1197{
1198 return (PVBOXPD)MMPagePhys2Page(pVM, PhysPD);
1199}
1200
1201/** @deprecated */
1202DECLINLINE(void *) MMR3DummyPageHCPtr(PVM pVM) { return MMR3PageDummyHCPtr(pVM); }
1203/** @deprecated */
1204DECLINLINE(RTHCPHYS) MMR3DummyPageHCPhys(PVM pVM) { return MMR3PageDummyHCPhys(pVM); }
1205
1206#endif /* will be removed */
1207
1208/** @} */
1209
1210
1211/** @defgroup grp_mm_heap Heap Manager
1212 * @ingroup grp_mm_r3
1213 * @{ */
1214
1215/**
1216 * Allocate memory associating it with the VM for collective cleanup.
1217 *
1218 * The memory will be allocated from the default heap but a header
1219 * is added in which we keep track of which VM it belongs to and chain
1220 * all the allocations together so they can be freed in a one go.
1221 *
1222 * This interface is typically used for memory block which will not be
1223 * freed during the life of the VM.
1224 *
1225 * @returns Pointer to allocated memory.
1226 * @param pVM VM handle.
1227 * @param enmTag Statistics tag. Statistics are collected on a per tag
1228 * basis in addition to a global one. Thus we can easily
1229 * identify how memory is used by the VM.
1230 * @param cbSize Size of the block.
1231 * @thread Any thread.
1232 */
1233MMR3DECL(void *) MMR3HeapAlloc(PVM pVM, MMTAG enmTag, size_t cbSize);
1234
1235/**
1236 * Same as MMR3HeapAlloc().
1237 *
1238 *
1239 * @returns Pointer to allocated memory.
1240 * @param pVM VM handle.
1241 * @param enmTag Statistics tag. Statistics are collected on a per tag
1242 * basis in addition to a global one. Thus we can easily
1243 * identify how memory is used by the VM.
1244 * @param cbSize Size of the block.
1245 * @param ppv Where to store the pointer to the allocated memory on success.
1246 * @thread Any thread.
1247 */
1248MMR3DECL(int) MMR3HeapAllocEx(PVM pVM, MMTAG enmTag, size_t cbSize, void **ppv);
1249
1250/**
1251 * Same as MMR3HeapAlloc() only the memory is zeroed.
1252 *
1253 *
1254 * @returns Pointer to allocated memory.
1255 * @param pVM VM handle.
1256 * @param enmTag Statistics tag. Statistics are collected on a per tag
1257 * basis in addition to a global one. Thus we can easily
1258 * identify how memory is used by the VM.
1259 * @param cbSize Size of the block.
1260 * @thread Any thread.
1261 */
1262MMR3DECL(void *) MMR3HeapAllocZ(PVM pVM, MMTAG enmTag, size_t cbSize);
1263
1264/**
1265 * Same as MMR3HeapAllocZ().
1266 *
1267 *
1268 * @returns Pointer to allocated memory.
1269 * @param pVM VM handle.
1270 * @param enmTag Statistics tag. Statistics are collected on a per tag
1271 * basis in addition to a global one. Thus we can easily
1272 * identify how memory is used by the VM.
1273 * @param cbSize Size of the block.
1274 * @param ppv Where to store the pointer to the allocated memory on success.
1275 * @thread Any thread.
1276 */
1277MMR3DECL(int) MMR3HeapAllocZEx(PVM pVM, MMTAG enmTag, size_t cbSize, void **ppv);
1278
1279/**
1280 * Reallocate memory allocated with MMR3HeapAlloc() or MMR3HeapRealloc().
1281 *
1282 * @returns Pointer to reallocated memory.
1283 * @param pv Pointer to the memory block to reallocate.
1284 * Must not be NULL!
1285 * @param cbNewSize New block size.
1286 * @thread Any thread.
1287 */
1288MMR3DECL(void *) MMR3HeapRealloc(void *pv, size_t cbNewSize);
1289
1290/**
1291 * Duplicates the specified string.
1292 *
1293 * @returns Pointer to the duplicate.
1294 * @returns NULL on failure or when input NULL.
1295 * @param pVM The VM handle.
1296 * @param enmTag Statistics tag. Statistics are collected on a per tag
1297 * basis in addition to a global one. Thus we can easily
1298 * identify how memory is used by the VM.
1299 * @param psz The string to duplicate. NULL is allowed.
1300 */
1301MMR3DECL(char *) MMR3HeapStrDup(PVM pVM, MMTAG enmTag, const char *psz);
1302
1303/**
1304 * Releases memory allocated with MMR3HeapAlloc() or MMR3HeapRealloc().
1305 *
1306 * @param pv Pointer to the memory block to free.
1307 * @thread Any thread.
1308 */
1309MMR3DECL(void) MMR3HeapFree(void *pv);
1310
1311/** @} */
1312
1313/** @} */
1314#endif
1315
1316
1317
1318#ifdef IN_GC
1319/** @defgroup grp_mm_gc The MM Guest Context API
1320 * @ingroup grp_mm
1321 * @{
1322 */
1323
1324/**
1325 * Install MMGCRam Hypervisor page fault handler for normal working
1326 * of MMGCRamRead and MMGCRamWrite calls.
1327 * This handler will be automatically removed at page fault.
1328 * In other case it must be removed by MMGCRamDeregisterTrapHandler call.
1329 *
1330 * @param pVM VM handle.
1331 */
1332MMGCDECL(void) MMGCRamRegisterTrapHandler(PVM pVM);
1333
1334/**
1335 * Remove MMGCRam Hypervisor page fault handler.
1336 * See description of MMGCRamRegisterTrapHandler call.
1337 *
1338 * @param pVM VM handle.
1339 */
1340MMGCDECL(void) MMGCRamDeregisterTrapHandler(PVM pVM);
1341
1342/**
1343 * Read data in guest context with \#PF control.
1344 * MMRamGC page fault handler must be installed prior this call for safe operation.
1345 * Use MMGCRamRegisterTrapHandler() call for this task.
1346 *
1347 * @returns VBox status.
1348 * @param pDst Where to store the readed data.
1349 * @param pSrc Pointer to the data to read.
1350 * @param cb Size of data to read, only 1/2/4/8 is valid.
1351 */
1352MMGCDECL(int) MMGCRamReadNoTrapHandler(void *pDst, void *pSrc, size_t cb);
1353
1354/**
1355 * Write data in guest context with \#PF control.
1356 * MMRamGC page fault handler must be installed prior this call for safe operation.
1357 * Use MMGCRamRegisterTrapHandler() call for this task.
1358 *
1359 * @returns VBox status.
1360 * @param pDst Where to write the data.
1361 * @param pSrc Pointer to the data to write.
1362 * @param cb Size of data to write, only 1/2/4 is valid.
1363 */
1364MMGCDECL(int) MMGCRamWriteNoTrapHandler(void *pDst, void *pSrc, size_t cb);
1365
1366/**
1367 * Read data in guest context with \#PF control.
1368 *
1369 * @returns VBox status.
1370 * @param pVM The VM handle.
1371 * @param pDst Where to store the readed data.
1372 * @param pSrc Pointer to the data to read.
1373 * @param cb Size of data to read, only 1/2/4/8 is valid.
1374 */
1375MMGCDECL(int) MMGCRamRead(PVM pVM, void *pDst, void *pSrc, size_t cb);
1376
1377/**
1378 * Write data in guest context with \#PF control.
1379 *
1380 * @returns VBox status.
1381 * @param pVM The VM handle.
1382 * @param pDst Where to write the data.
1383 * @param pSrc Pointer to the data to write.
1384 * @param cb Size of data to write, only 1/2/4 is valid.
1385 */
1386MMGCDECL(int) MMGCRamWrite(PVM pVM, void *pDst, void *pSrc, size_t cb);
1387
1388/** @} */
1389#endif
1390
1391/** @} */
1392__END_DECLS
1393
1394
1395#endif
1396
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette