- Timestamp:
- Aug 18, 2009 2:52:08 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 51231
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PGM.cpp
r22326 r22327 1690 1690 1691 1691 #ifdef VBOX_WITH_STATISTICS 1692 1693 # if 0 /* rarely useful; leave for debugging. */ 1692 1694 for (unsigned j = 0; j < RT_ELEMENTS(pPGM->StatSyncPtPD); j++) 1693 1695 STAMR3RegisterF(pVM, &pPGM->StatSyncPtPD[i], STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, … … 1696 1698 STAMR3RegisterF(pVM, &pPGM->StatSyncPagePD[i], STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, 1697 1699 "The number of SyncPage per PD n.", "/PGM/CPU%d/PDSyncPage/%04X", i, j); 1698 1700 # endif 1699 1701 /* R0 only: */ 1700 1702 PGM_REG_COUNTER(&pPGM->StatR0DynMapMigrateInvlPg, "/PGM/CPU%d/R0/DynMapMigrateInvlPg", "invlpg count in PGMDynMapMigrateAutoSet."); -
trunk/src/VBox/VMM/VMMAll/PGMAllBth.h
r22326 r22327 1663 1663 Assert(PdeSrc.n.u1Present); 1664 1664 Assert(cPages); 1665 # if 0 /* rarely useful; leave for debugging. */ 1665 1666 STAM_COUNTER_INC(&pVCpu->pgm.s.StatSyncPagePD[(GCPtrPage >> GST_PD_SHIFT) & GST_PD_MASK]); 1667 # endif 1666 1668 1667 1669 /* … … 2474 2476 2475 2477 STAM_PROFILE_START(&pVCpu->pgm.s.CTX_MID_Z(Stat,SyncPT), a); 2478 #if 0 /* rarely useful; leave for debugging. */ 2476 2479 STAM_COUNTER_INC(&pVCpu->pgm.s.StatSyncPtPD[iPDSrc]); 2480 #endif 2477 2481 LogFlow(("SyncPT: GCPtrPage=%RGv\n", GCPtrPage)); 2478 2482
Note:
See TracChangeset
for help on using the changeset viewer.