- Timestamp:
- Dec 1, 2008 2:13:45 PM (16 years ago)
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PGM.cpp
r14857 r14861 1607 1607 STAM_REG(pVM, &pPGM->StatR0DynMapPageSlowLoopHits, STAMTYPE_COUNTER, "/PGM/R0/DynMapPage/SlowLoopHits" , STAMUNIT_OCCURENCES, "Hits in the loop path."); 1608 1608 STAM_REG(pVM, &pPGM->StatR0DynMapPageSlowLoopMisses, STAMTYPE_COUNTER, "/PGM/R0/DynMapPage/SlowLoopMisses", STAMUNIT_OCCURENCES, "Misses in the loop path. NonLoopMisses = Slow - SlowLoopHit - SlowLoopMisses"); 1609 STAM_REG(pVM, &pPGM->StatR0DynMapPageSlowLostHits, STAMTYPE_COUNTER, "/PGM/R0/DynMapPage/SlowLostHits", STAMUNIT_OCCURENCES, "Lost hits.");1609 //STAM_REG(pVM, &pPGM->StatR0DynMapPageSlowLostHits, STAMTYPE_COUNTER, "/PGM/R0/DynMapPage/SlowLostHits", STAMUNIT_OCCURENCES, "Lost hits."); 1610 1610 1611 1611 /* GC only: */ -
trunk/src/VBox/VMM/PGMInternal.h
r14857 r14861 2571 2571 STAMCOUNTER StatR0DynMapPageSlowLoopHits; /**< R0: Hits in the pgmR0DynMapPageSlow search loop. */ 2572 2572 STAMCOUNTER StatR0DynMapPageSlowLoopMisses; /**< R0: Misses in the pgmR0DynMapPageSlow search loop. */ 2573 STAMCOUNTER StatR0DynMapPageSlowLostHits; /**< R0: Lost hits. */2573 //STAMCOUNTER StatR0DynMapPageSlowLostHits; /**< R0: Lost hits. */ 2574 2574 2575 2575 /* RC only: */ -
trunk/src/VBox/VMM/VMMR0/PGMR0DynMap.cpp
r14857 r14861 1221 1221 Assert(iFreePage < cPages); 1222 1222 1223 #if def VBOX_WITH_STATISTICS1223 #if 0 //def VBOX_WITH_STATISTICS 1224 1224 /* Check for lost hits. */ 1225 1225 if (!fLooped) … … 1643 1643 1644 1644 1645 /* documented elsewhere - a bit of a mess. */ 1645 /* documented elsewhere - a bit of a mess. 1646 This is a VERY hot path. */ 1646 1647 VMMDECL(int) PGMDynMapHCPage(PVM pVM, RTHCPHYS HCPhys, void **ppv) 1647 1648 {
Note:
See TracChangeset
for help on using the changeset viewer.