Changeset 18167 in vbox
- Timestamp:
- Mar 23, 2009 11:37:36 PM (16 years ago)
- File:
-
- 1 edited
-
trunk/src/VBox/VMM/PGMPhys.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PGMPhys.cpp
r18166 r18167 3088 3088 #if 1 3089 3089 for (uint32_t i = 0; i < RT_ELEMENTS(pVM->pgm.s.aHandyPages); i++) 3090 { 3090 3091 LogRel(("PGM: aHandyPages[#%-2d] = {.HCPhysGCPhys=%RHp, .idPage=%#08x, .idSharedPage=%#08x}\n", 3091 3092 i, pVM->pgm.s.aHandyPages[i].HCPhysGCPhys, pVM->pgm.s.aHandyPages[i].idPage, 3092 3093 pVM->pgm.s.aHandyPages[i].idSharedPage)); 3094 uint32_t const idPage = pVM->pgm.s.aHandyPages[i].idPage; 3095 if (idPage != NIL_GMM_PAGEID) 3096 { 3097 for (PPGMRAMRANGE pRam = pVM->pgm.s.pRamRangesR3; 3098 pRam; 3099 pRam = pRam->pNextR3) 3100 { 3101 uint32_t const cPages = pRam->cb >> PAGE_SHIFT; 3102 for (uint32_t iPage = 0; iPage < cPages; iPage++) 3103 if (PGM_PAGE_GET_PAGEID(&pRam->aPages[iPage]) == idPage) 3104 LogRel(("PGM: Used by %RGp %R{pgmpage} (%s)\n", 3105 pRam->GCPhys + ((RTGCPHYS)iPage << PAGE_SHIFT), &pRam->aPages[iPage], pRam->pszDesc)); 3106 } 3107 } 3108 } 3093 3109 #endif 3094 3110 rc = VERR_EM_NO_MEMORY;
Note:
See TracChangeset
for help on using the changeset viewer.

