Changeset 45378 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Apr 5, 2013 2:43:12 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 84803
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/HM.cpp
r45349 r45378 487 487 "/PROF/HM/CPU%d/StatEntry", i); 488 488 AssertRC(rc); 489 /** @todo r=ramshankar: should be sorted out for the new-code which doesn't490 * have 2 exit parts. */491 489 rc = STAMR3RegisterF(pVM, &pVCpu->hm.s.StatExit1, STAMTYPE_PROFILE, STAMVISIBILITY_USED, STAMUNIT_TICKS_PER_CALL, 492 490 "Profiling of VMXR0RunGuestCode exit part 1", … … 497 495 "/PROF/HM/CPU%d/SwitchFromGC_2", i); 498 496 AssertRC(rc); 499 # if 1 /* temporary for tracking down darwin holdup. */ 497 # ifdef VBOX_WITH_OLD_VTX_CODE 498 /* temporary for tracking down darwin holdup. */ 500 499 rc = STAMR3RegisterF(pVM, &pVCpu->hm.s.StatExit2Sub1, STAMTYPE_PROFILE, STAMVISIBILITY_USED, STAMUNIT_TICKS_PER_CALL, 501 500 "Temporary - I/O", … … 511 510 AssertRC(rc); 512 511 # endif 512 rc = STAMR3RegisterF(pVM, &pVCpu->hm.s.StatLoadGuestState, STAMTYPE_PROFILE, STAMVISIBILITY_USED, STAMUNIT_TICKS_PER_CALL, 513 "Profiling of VMXR0LoadGuestState", 514 "/PROF/HM/CPU%d/StatLoadGuestState", i); 515 AssertRC(rc); 513 516 rc = STAMR3RegisterF(pVM, &pVCpu->hm.s.StatInGC, STAMTYPE_PROFILE, STAMVISIBILITY_USED, STAMUNIT_TICKS_PER_CALL, 514 "Profiling of vmlaunch ",517 "Profiling of vmlaunch/vmresume", 515 518 "/PROF/HM/CPU%d/InGC", i); 516 519 AssertRC(rc);
Note:
See TracChangeset
for help on using the changeset viewer.