Changeset 1932 in vbox for trunk/src/recompiler/new
- Timestamp:
- Apr 4, 2007 2:36:56 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler/new/VBoxRecompiler.c
r1617 r1932 132 132 static STAMPROFILE gStatHCVirt2GCPhys; 133 133 #endif 134 static STAMCOUNTER gStatCpuGetTSC; 134 135 static STAMCOUNTER gStatRefuseTFInhibit; 135 136 static STAMCOUNTER gStatRefuseVM86; … … 370 371 #endif 371 372 373 STAM_REG(pVM, &gStatCpuGetTSC, STAMTYPE_COUNTER, "/REM/CpuGetTSC", STAMUNIT_OCCURENCES, "cpu_get_tsc calls"); 374 372 375 STAM_REG(pVM, &gStatRefuseTFInhibit, STAMTYPE_COUNTER, "/REM/Refuse/TFInibit", STAMUNIT_OCCURENCES, "Raw mode refused because of TF or irq inhibit"); 373 376 STAM_REG(pVM, &gStatRefuseVM86, STAMTYPE_COUNTER, "/REM/Refuse/VM86", STAMUNIT_OCCURENCES, "Raw mode refused because of VM86"); … … 399 402 STAM_REG(pVM, &gStatSelOutOfSyncStateBack[4], STAMTYPE_COUNTER, "/REM/StateBack/SelOutOfSync/FS", STAMUNIT_OCCURENCES, "FS out of sync"); 400 403 STAM_REG(pVM, &gStatSelOutOfSyncStateBack[5], STAMTYPE_COUNTER, "/REM/StateBack/SelOutOfSync/GS", STAMUNIT_OCCURENCES, "GS out of sync"); 404 401 405 402 406 #endif … … 4507 4511 uint64_t cpu_get_tsc(CPUX86State *env) 4508 4512 { 4513 STAM_COUNTER_INC(&gStatCpuGetTSC); 4509 4514 return TMCpuTickGet(env->pVM); 4510 4515 }
Note:
See TracChangeset
for help on using the changeset viewer.