- Timestamp:
- Sep 29, 2008 6:33:17 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 37170
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/MMInternal.h
r12814 r12815 687 687 uint32_t u32Padding2; 688 688 #endif 689 690 /** The hypervisor heap (R0 Ptr). */ 691 R0PTRTYPE(PMMHYPERHEAP) pHyperHeapR0; 692 /** Page pool - R0 Ptr. */ 693 R0PTRTYPE(PMMPAGEPOOL) pPagePoolR0; 694 /** Page pool pages in low memory R0 Ptr. */ 695 R0PTRTYPE(PMMPAGEPOOL) pPagePoolLowR0; 696 689 697 /** The hypervisor heap (R3 Ptr). */ 690 698 R3PTRTYPE(PMMHYPERHEAP) pHyperHeapR3; 691 /** The hypervisor heap (R0 Ptr). */ 692 R0PTRTYPE(PMMHYPERHEAP) pHyperHeapR0; 693 699 /** Page pool - R3 Ptr. */ 700 R3PTRTYPE(PMMPAGEPOOL) pPagePoolR3; 701 /** Page pool pages in low memory R3 Ptr. */ 702 R3PTRTYPE(PMMPAGEPOOL) pPagePoolLowR3; 694 703 /** List of memory locks. (HC only) */ 695 704 R3PTRTYPE(PMMLOCKEDMEM) pLockedMem; 696 697 /** Page pool. (HC only) */698 R3R0PTRTYPE(PMMPAGEPOOL) pPagePool;699 /** Page pool pages in low memory. (HC only) */700 R3R0PTRTYPE(PMMPAGEPOOL) pPagePoolLow;701 705 702 706 /** Pointer to the dummy page. -
trunk/src/VBox/VMM/MMPagePool.cpp
r12814 r12815 60 60 int mmR3PagePoolInit(PVM pVM) 61 61 { 62 AssertMsg(!pVM->mm.s.pPagePool , ("Already initialized!\n"));62 AssertMsg(!pVM->mm.s.pPagePoolR3, ("Already initialized!\n")); 63 63 64 64 /* 65 65 * Allocate the pool structures. 66 66 */ 67 AssertRelease(sizeof(*pVM->mm.s.pPagePool) + sizeof(*pVM->mm.s.pPagePoolLow) < PAGE_SIZE); 68 int rc = SUPPageAllocLocked(1, (void **)&pVM->mm.s.pPagePool); 67 /** @todo @bufref{1865},@bufref{3202}: mapping the page pool page into 68 * ring-0. Need to change the wasy we allocate it... */ 69 AssertReleaseReturn(sizeof(*pVM->mm.s.pPagePoolR3) + sizeof(*pVM->mm.s.pPagePoolLowR3) < PAGE_SIZE, VERR_INTERNAL_ERROR); 70 int rc = SUPPageAllocLocked(1, (void **)&pVM->mm.s.pPagePoolR3); 69 71 if (VBOX_FAILURE(rc)) 70 72 return rc; 71 memset(pVM->mm.s.pPagePool, 0, PAGE_SIZE); 72 pVM->mm.s.pPagePool->pVM = pVM; 73 STAM_REG(pVM, &pVM->mm.s.pPagePool->cPages, STAMTYPE_U32, "/MM/Page/Def/cPages", STAMUNIT_PAGES, "Number of pages in the default pool."); 74 STAM_REG(pVM, &pVM->mm.s.pPagePool->cFreePages, STAMTYPE_U32, "/MM/Page/Def/cFreePages", STAMUNIT_PAGES, "Number of free pages in the default pool."); 75 STAM_REG(pVM, &pVM->mm.s.pPagePool->cSubPools, STAMTYPE_U32, "/MM/Page/Def/cSubPools", STAMUNIT_COUNT, "Number of sub pools in the default pool."); 76 STAM_REG(pVM, &pVM->mm.s.pPagePool->cAllocCalls, STAMTYPE_COUNTER, "/MM/Page/Def/cAllocCalls", STAMUNIT_CALLS, "Number of MMR3PageAlloc() calls for the default pool."); 77 STAM_REG(pVM, &pVM->mm.s.pPagePool->cFreeCalls, STAMTYPE_COUNTER, "/MM/Page/Def/cFreeCalls", STAMUNIT_CALLS, "Number of MMR3PageFree()+MMR3PageFreeByPhys() calls for the default pool."); 78 STAM_REG(pVM, &pVM->mm.s.pPagePool->cToPhysCalls, STAMTYPE_COUNTER, "/MM/Page/Def/cToPhysCalls", STAMUNIT_CALLS, "Number of MMR3Page2Phys() calls for this pool."); 79 STAM_REG(pVM, &pVM->mm.s.pPagePool->cToVirtCalls, STAMTYPE_COUNTER, "/MM/Page/Def/cToVirtCalls", STAMUNIT_CALLS, "Number of MMR3PagePhys2Page()+MMR3PageFreeByPhys() calls for the default pool."); 80 STAM_REG(pVM, &pVM->mm.s.pPagePool->cErrors, STAMTYPE_COUNTER, "/MM/Page/Def/cErrors", STAMUNIT_ERRORS,"Number of errors for the default pool."); 81 82 pVM->mm.s.pPagePoolLow = pVM->mm.s.pPagePool + 1; 83 pVM->mm.s.pPagePoolLow->pVM = pVM; 84 pVM->mm.s.pPagePoolLow->fLow = true; 85 STAM_REG(pVM, &pVM->mm.s.pPagePoolLow->cPages, STAMTYPE_U32, "/MM/Page/Low/cPages", STAMUNIT_PAGES, "Number of pages in the <4GB pool."); 86 STAM_REG(pVM, &pVM->mm.s.pPagePoolLow->cFreePages, STAMTYPE_U32, "/MM/Page/Low/cFreePages", STAMUNIT_PAGES, "Number of free pages in the <4GB pool."); 87 STAM_REG(pVM, &pVM->mm.s.pPagePoolLow->cSubPools, STAMTYPE_U32, "/MM/Page/Low/cSubPools", STAMUNIT_COUNT, "Number of sub pools in the <4GB pool."); 88 STAM_REG(pVM, &pVM->mm.s.pPagePoolLow->cAllocCalls, STAMTYPE_COUNTER, "/MM/Page/Low/cAllocCalls", STAMUNIT_CALLS, "Number of MMR3PageAllocLow() calls for the <4GB pool."); 89 STAM_REG(pVM, &pVM->mm.s.pPagePoolLow->cFreeCalls, STAMTYPE_COUNTER, "/MM/Page/Low/cFreeCalls", STAMUNIT_CALLS, "Number of MMR3PageFreeLow()+MMR3PageFreeByPhys() calls for the <4GB pool."); 90 STAM_REG(pVM, &pVM->mm.s.pPagePoolLow->cToPhysCalls,STAMTYPE_COUNTER, "/MM/Page/Low/cToPhysCalls", STAMUNIT_CALLS, "Number of MMR3Page2Phys() calls for the <4GB pool."); 91 STAM_REG(pVM, &pVM->mm.s.pPagePoolLow->cToVirtCalls,STAMTYPE_COUNTER, "/MM/Page/Low/cToVirtCalls", STAMUNIT_CALLS, "Number of MMR3PagePhys2Page()+MMR3PageFreeByPhys() calls for the <4GB pool."); 92 STAM_REG(pVM, &pVM->mm.s.pPagePoolLow->cErrors, STAMTYPE_COUNTER, "/MM/Page/Low/cErrors", STAMUNIT_ERRORS,"Number of errors for the <4GB pool."); 73 memset(pVM->mm.s.pPagePoolR3, 0, PAGE_SIZE); 74 pVM->mm.s.pPagePoolR3->pVM = pVM; 75 STAM_REG(pVM, &pVM->mm.s.pPagePoolR3->cPages, STAMTYPE_U32, "/MM/Page/Def/cPages", STAMUNIT_PAGES, "Number of pages in the default pool."); 76 STAM_REG(pVM, &pVM->mm.s.pPagePoolR3->cFreePages, STAMTYPE_U32, "/MM/Page/Def/cFreePages", STAMUNIT_PAGES, "Number of free pages in the default pool."); 77 STAM_REG(pVM, &pVM->mm.s.pPagePoolR3->cSubPools, STAMTYPE_U32, "/MM/Page/Def/cSubPools", STAMUNIT_COUNT, "Number of sub pools in the default pool."); 78 STAM_REG(pVM, &pVM->mm.s.pPagePoolR3->cAllocCalls, STAMTYPE_COUNTER, "/MM/Page/Def/cAllocCalls", STAMUNIT_CALLS, "Number of MMR3PageAlloc() calls for the default pool."); 79 STAM_REG(pVM, &pVM->mm.s.pPagePoolR3->cFreeCalls, STAMTYPE_COUNTER, "/MM/Page/Def/cFreeCalls", STAMUNIT_CALLS, "Number of MMR3PageFree()+MMR3PageFreeByPhys() calls for the default pool."); 80 STAM_REG(pVM, &pVM->mm.s.pPagePoolR3->cToPhysCalls, STAMTYPE_COUNTER, "/MM/Page/Def/cToPhysCalls", STAMUNIT_CALLS, "Number of MMR3Page2Phys() calls for this pool."); 81 STAM_REG(pVM, &pVM->mm.s.pPagePoolR3->cToVirtCalls, STAMTYPE_COUNTER, "/MM/Page/Def/cToVirtCalls", STAMUNIT_CALLS, "Number of MMR3PagePhys2Page()+MMR3PageFreeByPhys() calls for the default pool."); 82 STAM_REG(pVM, &pVM->mm.s.pPagePoolR3->cErrors, STAMTYPE_COUNTER, "/MM/Page/Def/cErrors", STAMUNIT_ERRORS,"Number of errors for the default pool."); 83 84 pVM->mm.s.pPagePoolLowR3 = pVM->mm.s.pPagePoolR3 + 1; 85 pVM->mm.s.pPagePoolLowR3->pVM = pVM; 86 pVM->mm.s.pPagePoolLowR3->fLow = true; 87 STAM_REG(pVM, &pVM->mm.s.pPagePoolLowR3->cPages, STAMTYPE_U32, "/MM/Page/Low/cPages", STAMUNIT_PAGES, "Number of pages in the <4GB pool."); 88 STAM_REG(pVM, &pVM->mm.s.pPagePoolLowR3->cFreePages, STAMTYPE_U32, "/MM/Page/Low/cFreePages", STAMUNIT_PAGES, "Number of free pages in the <4GB pool."); 89 STAM_REG(pVM, &pVM->mm.s.pPagePoolLowR3->cSubPools, STAMTYPE_U32, "/MM/Page/Low/cSubPools", STAMUNIT_COUNT, "Number of sub pools in the <4GB pool."); 90 STAM_REG(pVM, &pVM->mm.s.pPagePoolLowR3->cAllocCalls, STAMTYPE_COUNTER, "/MM/Page/Low/cAllocCalls", STAMUNIT_CALLS, "Number of MMR3PageAllocLow() calls for the <4GB pool."); 91 STAM_REG(pVM, &pVM->mm.s.pPagePoolLowR3->cFreeCalls, STAMTYPE_COUNTER, "/MM/Page/Low/cFreeCalls", STAMUNIT_CALLS, "Number of MMR3PageFreeLow()+MMR3PageFreeByPhys() calls for the <4GB pool."); 92 STAM_REG(pVM, &pVM->mm.s.pPagePoolLowR3->cToPhysCalls,STAMTYPE_COUNTER, "/MM/Page/Low/cToPhysCalls", STAMUNIT_CALLS, "Number of MMR3Page2Phys() calls for the <4GB pool."); 93 STAM_REG(pVM, &pVM->mm.s.pPagePoolLowR3->cToVirtCalls,STAMTYPE_COUNTER, "/MM/Page/Low/cToVirtCalls", STAMUNIT_CALLS, "Number of MMR3PagePhys2Page()+MMR3PageFreeByPhys() calls for the <4GB pool."); 94 STAM_REG(pVM, &pVM->mm.s.pPagePoolLowR3->cErrors, STAMTYPE_COUNTER, "/MM/Page/Low/cErrors", STAMUNIT_ERRORS,"Number of errors for the <4GB pool."); 95 96 /** @todo @bufref{1865},@bufref{3202}: more */ 97 pVM->mm.s.pPagePoolR0 = (uintptr_t)pVM->mm.s.pPagePoolR3; 98 pVM->mm.s.pPagePoolLowR0 = (uintptr_t)pVM->mm.s.pPagePoolLowR3; 93 99 94 100 /** @todo init a mutex? */ … … 105 111 void mmR3PagePoolTerm(PVM pVM) 106 112 { 107 if (pVM->mm.s.pPagePool )113 if (pVM->mm.s.pPagePoolR3) 108 114 { 109 115 /* … … 111 117 * (The MM Heap will free the memory used for internal stuff.) 112 118 */ 113 Assert(!pVM->mm.s.pPagePool ->fLow);114 PMMPAGESUBPOOL pSubPool = pVM->mm.s.pPagePool ->pHead;119 Assert(!pVM->mm.s.pPagePoolR3->fLow); 120 PMMPAGESUBPOOL pSubPool = pVM->mm.s.pPagePoolR3->pHead; 115 121 while (pSubPool) 116 122 { … … 124 130 pSubPool = pSubPool->pNext; 125 131 } 126 pVM->mm.s.pPagePool = NULL; 127 } 128 129 if (pVM->mm.s.pPagePoolLow) 132 pVM->mm.s.pPagePoolR3 = NULL; 133 pVM->mm.s.pPagePoolR0 = NIL_RTR0PTR; 134 } 135 136 if (pVM->mm.s.pPagePoolLowR3) 130 137 { 131 138 /* 132 139 * Free the memory. 133 140 */ 134 Assert(pVM->mm.s.pPagePoolLow ->fLow);135 PMMPAGESUBPOOL pSubPool = pVM->mm.s.pPagePoolLow ->pHead;141 Assert(pVM->mm.s.pPagePoolLowR3->fLow); 142 PMMPAGESUBPOOL pSubPool = pVM->mm.s.pPagePoolLowR3->pHead; 136 143 while (pSubPool) 137 144 { … … 143 150 pSubPool = pSubPool->pNext; 144 151 } 145 pVM->mm.s.pPagePoolLow = NULL; 152 pVM->mm.s.pPagePoolLowR3 = NULL; 153 pVM->mm.s.pPagePoolLowR0 = NIL_RTR0PTR; 146 154 } 147 155 } … … 392 400 MMR3DECL(void *) MMR3PageAlloc(PVM pVM) 393 401 { 394 return mmR3PagePoolAlloc(pVM->mm.s.pPagePool );402 return mmR3PagePoolAlloc(pVM->mm.s.pPagePoolR3); 395 403 } 396 404 … … 411 419 { 412 420 /** @todo optimize this, it's the most common case now. */ 413 void *pv = mmR3PagePoolAlloc(pVM->mm.s.pPagePool );421 void *pv = mmR3PagePoolAlloc(pVM->mm.s.pPagePoolR3); 414 422 if (pv) 415 return mmPagePoolPtr2Phys(pVM->mm.s.pPagePool , pv);423 return mmPagePoolPtr2Phys(pVM->mm.s.pPagePoolR3, pv); 416 424 return NIL_RTHCPHYS; 417 425 } … … 428 436 MMR3DECL(void) MMR3PageFree(PVM pVM, void *pvPage) 429 437 { 430 mmR3PagePoolFree(pVM->mm.s.pPagePool , pvPage);438 mmR3PagePoolFree(pVM->mm.s.pPagePoolR3, pvPage); 431 439 } 432 440 … … 442 450 MMR3DECL(void *) MMR3PageAllocLow(PVM pVM) 443 451 { 444 return mmR3PagePoolAlloc(pVM->mm.s.pPagePoolLow );452 return mmR3PagePoolAlloc(pVM->mm.s.pPagePoolLowR3); 445 453 } 446 454 … … 455 463 MMR3DECL(void) MMR3PageFreeLow(PVM pVM, void *pvPage) 456 464 { 457 mmR3PagePoolFree(pVM->mm.s.pPagePoolLow , pvPage);465 mmR3PagePoolFree(pVM->mm.s.pPagePoolLowR3, pvPage); 458 466 } 459 467 … … 470 478 MMR3DECL(void) MMR3PageFreeByPhys(PVM pVM, RTHCPHYS HCPhysPage) 471 479 { 472 void *pvPage = mmPagePoolPhys2Ptr(pVM->mm.s.pPagePool , HCPhysPage);480 void *pvPage = mmPagePoolPhys2Ptr(pVM->mm.s.pPagePoolR3, HCPhysPage); 473 481 if (!pvPage) 474 pvPage = mmPagePoolPhys2Ptr(pVM->mm.s.pPagePoolLow , HCPhysPage);482 pvPage = mmPagePoolPhys2Ptr(pVM->mm.s.pPagePoolLowR3, HCPhysPage); 475 483 if (pvPage) 476 mmR3PagePoolFree(pVM->mm.s.pPagePool , pvPage);484 mmR3PagePoolFree(pVM->mm.s.pPagePoolR3, pvPage); 477 485 else 478 486 AssertMsgFailed(("Invalid address HCPhysPT=%#x\n", HCPhysPage)); … … 495 503 if (!pVM->mm.s.pvDummyPage) 496 504 { 497 pVM->mm.s.pvDummyPage = mmR3PagePoolAlloc(pVM->mm.s.pPagePool );505 pVM->mm.s.pvDummyPage = mmR3PagePoolAlloc(pVM->mm.s.pPagePoolR3); 498 506 AssertRelease(pVM->mm.s.pvDummyPage); 499 pVM->mm.s.HCPhysDummyPage = mmPagePoolPtr2Phys(pVM->mm.s.pPagePool , pVM->mm.s.pvDummyPage);507 pVM->mm.s.HCPhysDummyPage = mmPagePoolPtr2Phys(pVM->mm.s.pPagePoolR3, pVM->mm.s.pvDummyPage); 500 508 AssertRelease(!(pVM->mm.s.HCPhysDummyPage & ~X86_PTE_PAE_PG_MASK)); 501 509 } -
trunk/src/VBox/VMM/VMMAll/MMAllPagePool.cpp
r8155 r12815 2 2 /** @file 3 3 * MM - Memory Monitor(/Manager) - Page Pool. 4 * 5 * @remarks This file is NOT built for the raw-mode context. 4 6 */ 5 7 … … 127 129 MMDECL(RTHCPHYS) MMPage2Phys(PVM pVM, void *pvPage) 128 130 { 129 RTHCPHYS HCPhys = mmPagePoolPtr2Phys(pVM->mm.s. pPagePool, pvPage);131 RTHCPHYS HCPhys = mmPagePoolPtr2Phys(pVM->mm.s.CTX_SUFF(pPagePool), pvPage); 130 132 if (HCPhys == NIL_RTHCPHYS) 131 133 { 132 HCPhys = mmPagePoolPtr2Phys(pVM->mm.s. pPagePoolLow, pvPage);134 HCPhys = mmPagePoolPtr2Phys(pVM->mm.s.CTX_SUFF(pPagePoolLow), pvPage); 133 135 if (HCPhys == NIL_RTHCPHYS) 134 136 { 135 STAM_COUNTER_INC(&pVM->mm.s. pPagePool->cErrors);137 STAM_COUNTER_INC(&pVM->mm.s.CTX_SUFF(pPagePool)->cErrors); 136 138 AssertMsgFailed(("Invalid pvPage=%p specified\n", pvPage)); 137 139 } … … 153 155 MMDECL(void *) MMPagePhys2Page(PVM pVM, RTHCPHYS HCPhysPage) 154 156 { 155 void *pvPage = mmPagePoolPhys2Ptr(pVM->mm.s. pPagePool, HCPhysPage);157 void *pvPage = mmPagePoolPhys2Ptr(pVM->mm.s.CTX_SUFF(pPagePool), HCPhysPage); 156 158 if (!pvPage) 157 159 { 158 pvPage = mmPagePoolPhys2Ptr(pVM->mm.s. pPagePoolLow, HCPhysPage);160 pvPage = mmPagePoolPhys2Ptr(pVM->mm.s.CTX_SUFF(pPagePoolLow), HCPhysPage); 159 161 if (!pvPage) 160 162 { 161 STAM_COUNTER_INC(&pVM->mm.s. pPagePool->cErrors);163 STAM_COUNTER_INC(&pVM->mm.s.CTX_SUFF(pPagePool)->cErrors); 162 164 AssertMsg(pvPage, ("Invalid HCPhysPage=%VHp specified\n", HCPhysPage)); 163 165 } … … 180 182 MMDECL(int) MMPagePhys2PageEx(PVM pVM, RTHCPHYS HCPhysPage, void **ppvPage) 181 183 { 182 void *pvPage = mmPagePoolPhys2Ptr(pVM->mm.s. pPagePool, HCPhysPage);184 void *pvPage = mmPagePoolPhys2Ptr(pVM->mm.s.CTX_SUFF(pPagePool), HCPhysPage); 183 185 if (!pvPage) 184 186 { 185 pvPage = mmPagePoolPhys2Ptr(pVM->mm.s. pPagePoolLow, HCPhysPage);187 pvPage = mmPagePoolPhys2Ptr(pVM->mm.s.CTX_SUFF(pPagePoolLow), HCPhysPage); 186 188 if (!pvPage) 187 189 { 188 STAM_COUNTER_INC(&pVM->mm.s. pPagePool->cErrors);190 STAM_COUNTER_INC(&pVM->mm.s.CTX_SUFF(pPagePool)->cErrors); 189 191 AssertMsg(pvPage, ("Invalid HCPhysPage=%VHp specified\n", HCPhysPage)); 190 192 return VERR_INVALID_POINTER; … … 209 211 MMDECL(int) MMPagePhys2PageTry(PVM pVM, RTHCPHYS HCPhysPage, void **ppvPage) 210 212 { 211 void *pvPage = mmPagePoolPhys2Ptr(pVM->mm.s. pPagePool, HCPhysPage);213 void *pvPage = mmPagePoolPhys2Ptr(pVM->mm.s.CTX_SUFF(pPagePool), HCPhysPage); 212 214 if (!pvPage) 213 215 { 214 pvPage = mmPagePoolPhys2Ptr(pVM->mm.s. pPagePoolLow, HCPhysPage);216 pvPage = mmPagePoolPhys2Ptr(pVM->mm.s.CTX_SUFF(pPagePoolLow), HCPhysPage); 215 217 if (!pvPage) 216 218 return VERR_INVALID_POINTER; -
trunk/src/VBox/VMM/testcase/tstVMStructGC.cpp
r12814 r12815 198 198 GEN_CHECK_OFF(MM, pHyperHeapR0); 199 199 GEN_CHECK_OFF(MM, pLockedMem); 200 GEN_CHECK_OFF(MM, pPagePool); 201 GEN_CHECK_OFF(MM, pPagePoolLow); 200 GEN_CHECK_OFF(MM, pPagePoolR3); 201 GEN_CHECK_OFF(MM, pPagePoolR0); 202 GEN_CHECK_OFF(MM, pPagePoolLowR3); 203 GEN_CHECK_OFF(MM, pPagePoolLowR0); 202 204 GEN_CHECK_OFF(MM, pvDummyPage); 203 205 GEN_CHECK_OFF(MM, HCPhysDummyPage);
Note:
See TracChangeset
for help on using the changeset viewer.