Searched refs:cHandyPages (Results 1 - 9 of 9) sorted by relevance

/vbox/src/VBox/VMM/VMMR3/
H A DMM.cpp273 STAM_REG(pVM, &pVM->mm.s.cHandyPages, STAMTYPE_U32, "/MM/Reserved/cHandyPages", STAMUNIT_PAGES, "Reserved number of handy pages.");
393 RT_MAX(cBasePages + pVM->mm.s.cHandyPages, 1),
596 RT_MAX(pVM->mm.s.cBasePages + pVM->mm.s.cHandyPages, 1),
621 cOld, pVM->mm.s.cBasePages, pVM->mm.s.cHandyPages);
636 * @param cHandyPages The number of handy pages.
638 VMMR3DECL(int) MMR3ReserveHandyPages(PVM pVM, uint32_t cHandyPages) argument
640 AssertReturn(!pVM->mm.s.cHandyPages, VERR_WRONG_ORDER);
642 pVM->mm.s.cHandyPages = cHandyPages;
[all...]
H A DPGMPhys.cpp4413 uint32_t iClear = pVM->pgm.s.cHandyPages;
4435 && pVM->pgm.s.cHandyPages > 0)
4444 Assert(pVM->pgm.s.cHandyPages > 0);
4450 for (i = iClear; i < pVM->pgm.s.cHandyPages; i++)
4455 if (i != pVM->pgm.s.cHandyPages)
4458 RTAssertMsg2Weak("i=%d iClear=%d cHandyPages=%d\n", i, iClear, pVM->pgm.s.cHandyPages);
4459 for (uint32_t j = iClear; j < pVM->pgm.s.cHandyPages; j++)
4471 while (iClear < pVM->pgm.s.cHandyPages)
4478 iClear, pVM->pgm.s.cHandyPages, pPag
[all...]
H A DPGM.cpp1695 STAM_REL_REG(pVM, &pPGM->cHandyPages, STAMTYPE_U32, "/PGM/Page/cHandyPages", STAMUNIT_COUNT, "The number of handy pages (not included in cAllPages).");
/vbox/src/VBox/VMM/VMMR0/
H A DPGMR0.cpp81 uint32_t iFirst = pVM->pgm.s.cHandyPages;
100 pVM->pgm.s.cHandyPages = RT_ELEMENTS(pVM->pgm.s.aHandyPages);
153 pVM->pgm.s.cHandyPages = iFirst + cPages;
190 uint32_t iFirst = pVM->pgm.s.cHandyPages;
/vbox/src/VBox/VMM/VMMAll/
H A DPGMAllPhys.cpp469 AssertMsg(pVM->pgm.s.cHandyPages <= RT_ELEMENTS(pVM->pgm.s.aHandyPages), ("%d\n", pVM->pgm.s.cHandyPages));
475 if (pVM->pgm.s.cHandyPages <= RT_MAX(PGM_HANDY_PAGES_SET_FF, PGM_HANDY_PAGES_R3_ALLOC))
477 if (pVM->pgm.s.cHandyPages <= RT_MAX(PGM_HANDY_PAGES_SET_FF, PGM_HANDY_PAGES_RZ_TO_R3))
484 if (pVM->pgm.s.cHandyPages <= PGM_HANDY_PAGES_R3_ALLOC)
486 if (pVM->pgm.s.cHandyPages <= PGM_HANDY_PAGES_RZ_ALLOC)
489 Log(("PGM: cHandyPages=%u out of %u -> allocate more; VM_FF_PGM_NO_MEMORY=%RTbool\n",
490 pVM->pgm.s.cHandyPages, RT_ELEMENTS(pVM->pgm.s.aHandyPages), VM_FF_IS_SET(pVM, VM_FF_PGM_NO_MEMORY) ));
501 if (!pVM->pgm.s.cHandyPages)
516 AssertMsgReturn( pVM->pgm.s.cHandyPages >
[all...]
/vbox/src/VBox/VMM/include/
H A DMMInternal.h769 uint32_t cHandyPages; member in struct:MM
H A DPGMInternal.h3363 uint32_t cHandyPages; member in struct:PGM
/vbox/include/VBox/vmm/
H A Dmm.h253 VMMR3DECL(int) MMR3ReserveHandyPages(PVM pVM, uint32_t cHandyPages);
/vbox/src/VBox/VMM/testcase/
H A DtstVMStruct.h355 GEN_CHECK_OFF(MM, cHandyPages);
733 GEN_CHECK_OFF(PGM, cHandyPages);

Completed in 115 milliseconds