Changeset 2033 in vbox for trunk/src/VBox
- Timestamp:
- Apr 11, 2007 3:21:21 PM (18 years ago)
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/EM.cpp
r1992 r2033 200 200 STAM_REG_USED(pVM, &pStats->StatGCBtc, STAMTYPE_COUNTER, "/EM/GC/Interpret/Success/Btc", STAMUNIT_OCCURENCES, "The number of times BTC was successfully interpreted."); 201 201 STAM_REG_USED(pVM, &pStats->StatHCBtc, STAMTYPE_COUNTER, "/EM/HC/Interpret/Success/Btc", STAMUNIT_OCCURENCES, "The number of times BTC was successfully interpreted."); 202 STAM_REG_USED(pVM, &pStats->StatGCCmpXchg, STAMTYPE_COUNTER, "/EM/GC/Interpret/Success/CmpXchg", STAMUNIT_OCCURENCES, "The number of times CMPXCHG was successfully interpreted."); 203 STAM_REG_USED(pVM, &pStats->StatHCCmpXchg, STAMTYPE_COUNTER, "/EM/HC/Interpret/Success/CmpXchg", STAMUNIT_OCCURENCES, "The number of times CMPXCHG was successfully interpreted."); 202 204 203 205 STAM_REG(pVM, &pStats->StatGCInterpretFailed, STAMTYPE_COUNTER, "/EM/GC/Interpret/Failed", STAMUNIT_OCCURENCES, "The number of times an instruction was not interpreted."); -
trunk/src/VBox/VMM/EMInternal.h
r1992 r2033 132 132 STAMCOUNTER StatGCBtc; 133 133 STAMCOUNTER StatHCBtc; 134 STAMCOUNTER StatGCCmpXchg; 135 STAMCOUNTER StatHCCmpXchg; 134 136 135 137 STAMCOUNTER StatGCInterpretFailed;
Note:
See TracChangeset
for help on using the changeset viewer.