Changeset 30840 in vbox
- Timestamp:
- Jul 14, 2010 2:08:02 PM (15 years ago)
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PGM.cpp
r30819 r30840 1585 1585 STAM_REL_REG(pVM, &pPGM->ChunkR3Map.c, STAMTYPE_U32, "/PGM/ChunkR3Map/c", STAMUNIT_COUNT, "Number of mapped chunks."); 1586 1586 STAM_REL_REG(pVM, &pPGM->ChunkR3Map.cMax, STAMTYPE_U32, "/PGM/ChunkR3Map/cMax", STAMUNIT_COUNT, "Maximum number of mapped chunks."); 1587 STAM_REL_REG(pVM, &pPGM->cMappedChunks, STAMTYPE_U32, "/PGM/Chunk /Map",STAMUNIT_COUNT, "Number of times we mapped a chunk.");1588 STAM_REL_REG(pVM, &pPGM->cUnmappedChunks, STAMTYPE_U32, "/PGM/Chunk /Unmap",STAMUNIT_COUNT, "Number of times we unmapped a chunk.");1587 STAM_REL_REG(pVM, &pPGM->cMappedChunks, STAMTYPE_U32, "/PGM/ChunkR3Map/Mapped", STAMUNIT_COUNT, "Number of times we mapped a chunk."); 1588 STAM_REL_REG(pVM, &pPGM->cUnmappedChunks, STAMTYPE_U32, "/PGM/ChunkR3Map/Unmapped", STAMUNIT_COUNT, "Number of times we unmapped a chunk."); 1589 1589 1590 1590 STAM_REL_REG(pVM, &pPGM->StatLargePageAlloc, STAMTYPE_COUNTER, "/PGM/LargePage/Alloc", STAMUNIT_OCCURENCES, "The number of large pages we've used."); -
trunk/src/VBox/VMM/PGMInternal.h
r30836 r30840 2667 2667 R3R0PTRTYPE(PAVLU32NODECORE) pTree; 2668 2668 #endif 2669 #if HC_ARCH_BITS == 32 2670 uint32_t u32Alignment; 2671 #endif 2669 2672 /** The chunk mapping TLB. */ 2670 2673 PGMCHUNKR3MAPTLB Tlb; … … 2678 2681 /** Number of pgmR3PhysChunkFindUnmapCandidate calls left to the next ageing. */ 2679 2682 uint32_t AgeingCountdown; 2680 } 2683 } ChunkR3Map; 2681 2684 2682 2685 /**
Note:
See TracChangeset
for help on using the changeset viewer.