VirtualBox

Changeset 9776 in vbox


Ignore:
Timestamp:
Jun 17, 2008 2:58:11 PM (17 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
32137
Message:

Stat updates

Location:
trunk/src/VBox/VMM
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/IOM.cpp

    r9294 r9776  
    144144        STAM_REG(pVM, &pVM->iom.s.StatGCMMIO2Bytes,       STAMTYPE_COUNTER, "/IOM/GC/MMIO/Access2",        STAMUNIT_OCCURENCES,     "MMIO access by 2 bytes counter.");
    145145        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.");
    146147        STAM_REG(pVM, &pVM->iom.s.StatGCIOPortHandler,    STAMTYPE_PROFILE, "/IOM/GC/PortIOHandler",       STAMUNIT_TICKS_PER_CALL, "Profiling of the IOMGCPortIOHandler() body, only success calls.");
    147148        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  
    403403    STAMCOUNTER             StatGCMMIO2Bytes;
    404404    STAMCOUNTER             StatGCMMIO4Bytes;
     405    STAMCOUNTER             StatGCMMIO8Bytes;
    405406
    406407    RTUINT                  cMovsMaxBytes;
  • trunk/src/VBox/VMM/VMMAll/IOMAllMMIO.cpp

    r9774 r9776  
    142142        case 4:
    143143            STAM_COUNTER_INC(&pVM->iom.s.StatGCMMIO4Bytes);
     144            break;
     145        case 8:
     146            STAM_COUNTER_INC(&pVM->iom.s.StatGCMMIO8Bytes);
    144147            break;
    145148        default:
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette