Changeset 65900 in vbox
- Timestamp:
- Feb 28, 2017 2:46:53 PM (8 years ago)
- Location:
- trunk/src/VBox/VMM/VMMR3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/PGM.cpp
r65531 r65900 2273 2273 rc = pgmR3PhysRamPreAllocate(pVM); 2274 2274 2275 //pgmLogState(pVM); 2275 2276 LogRel(("PGM: PGMR3InitFinalize: 4 MB PSE mask %RGp\n", pVM->pgm.s.GCPhys4MBPSEMask)); 2276 2277 return rc; … … 2654 2655 } 2655 2656 2657 //pgmLogState(pVM); 2656 2658 pgmUnlock(pVM); 2657 2659 } -
trunk/src/VBox/VMM/VMMR3/PGMDbg.cpp
r65899 r65900 2810 2810 LOG_PAGE_MEMBER("RGv", GCPtrDirtyFault); 2811 2811 # endif 2812 if ( pPage->enmKind == PGMPOOLKIND_32BIT_PT_FOR_32BIT_PT 2813 || pPage->enmKind == PGMPOOLKIND_32BIT_PT_FOR_32BIT_4MB 2814 || pPage->enmKind == PGMPOOLKIND_32BIT_PD 2815 || pPage->enmKind == PGMPOOLKIND_32BIT_PD_PHYS) 2816 { 2817 uint32_t const *pu32Page = (uint32_t const *)pPage->pvPageR3; 2818 for (uint32_t i = 0; i < 1024/2; i += 4) 2819 RTLogRelPrintf(" %#05x: %RX32 %RX32 %RX32 %RX32\n", i, pu32Page[i], pu32Page[i+1], pu32Page[i+2], pu32Page[i+3]); 2820 } 2821 else if ( pPage->enmKind != PGMPOOLKIND_FREE 2822 && pPage->enmKind != PGMPOOLKIND_INVALID) 2823 { 2824 uint64_t const *pu64Page = (uint64_t const *)pPage->pvPageR3; 2825 for (uint32_t i = 0; i < 512/2; i += 2) 2826 RTLogRelPrintf(" %#05x: %RX64 %RX64\n", i, pu64Page[i], pu64Page[i+1]); 2827 } 2812 2828 } 2813 2829
Note:
See TracChangeset
for help on using the changeset viewer.