Changeset 9776 in vbox
- Timestamp:
- Jun 17, 2008 2:58:11 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 32137
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/IOM.cpp
r9294 r9776 144 144 STAM_REG(pVM, &pVM->iom.s.StatGCMMIO2Bytes, STAMTYPE_COUNTER, "/IOM/GC/MMIO/Access2", STAMUNIT_OCCURENCES, "MMIO access by 2 bytes counter."); 145 145 STAM_REG(pVM, &pVM->iom.s.StatGCMMIO4Bytes, STAMTYPE_COUNTER, "/IOM/GC/MMIO/Access4", STAMUNIT_OCCURENCES, "MMIO access by 4 bytes counter."); 146 STAM_REG(pVM, &pVM->iom.s.StatGCMMIO8Bytes, STAMTYPE_COUNTER, "/IOM/GC/MMIO/Access8", STAMUNIT_OCCURENCES, "MMIO access by 8 bytes counter."); 146 147 STAM_REG(pVM, &pVM->iom.s.StatGCIOPortHandler, STAMTYPE_PROFILE, "/IOM/GC/PortIOHandler", STAMUNIT_TICKS_PER_CALL, "Profiling of the IOMGCPortIOHandler() body, only success calls."); 147 148 STAM_REG(pVM, &pVM->iom.s.StatGCInstIn, STAMTYPE_COUNTER, "/IOM/GC/Inst/In", STAMUNIT_OCCURENCES, "Counter of any IN instructions."); -
trunk/src/VBox/VMM/IOMInternal.h
r9774 r9776 403 403 STAMCOUNTER StatGCMMIO2Bytes; 404 404 STAMCOUNTER StatGCMMIO4Bytes; 405 STAMCOUNTER StatGCMMIO8Bytes; 405 406 406 407 RTUINT cMovsMaxBytes; -
trunk/src/VBox/VMM/VMMAll/IOMAllMMIO.cpp
r9774 r9776 142 142 case 4: 143 143 STAM_COUNTER_INC(&pVM->iom.s.StatGCMMIO4Bytes); 144 break; 145 case 8: 146 STAM_COUNTER_INC(&pVM->iom.s.StatGCMMIO8Bytes); 144 147 break; 145 148 default:
Note:
See TracChangeset
for help on using the changeset viewer.