Changeset 99809 in vbox for trunk/src/VBox/VMM
- Timestamp:
- May 16, 2023 6:46:21 AM (21 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/HM.cpp
r99220 r99809 846 846 HM_REG_COUNTER(&pHmCpu->StatExitAll, "/HM/CPU%u/Exit/All", "Total exits (excludes nested-guest and debug loops exits)."); 847 847 HM_REG_COUNTER(&pHmCpu->StatDebugExitAll, "/HM/CPU%u/Exit/DebugAll", "Total debug-loop exits."); 848 HM_REG_COUNTER(&pHmCpu->StatNestedExitAll, "/HM/CPU%u/Exit /NestedGuest/All", "Total nested-guest exits.");848 HM_REG_COUNTER(&pHmCpu->StatNestedExitAll, "/HM/CPU%u/ExitNestedGuest/All", "Total nested-guest exits."); 849 849 HM_REG_COUNTER(&pHmCpu->StatExitShadowNM, "/HM/CPU%u/Exit/Trap/Shw/#NM", "Shadow #NM (device not available, no math co-processor) exception."); 850 850 HM_REG_COUNTER(&pHmCpu->StatExitGuestNM, "/HM/CPU%u/Exit/Trap/Gst/#NM", "Guest #NM (device not available, no math co-processor) exception."); … … 1029 1029 { 1030 1030 rc = STAMR3RegisterF(pVM, &pHmCpu->aStatNestedExitReason[j], STAMTYPE_COUNTER, STAMVISIBILITY_USED, 1031 STAMUNIT_OCCURENCES, pszExitName, "/HM/CPU%u/Exit /NestedGuest/Reason/%02x", idCpu, j);1031 STAMUNIT_OCCURENCES, pszExitName, "/HM/CPU%u/ExitNestedGuest/Reason/%02x", idCpu, j); 1032 1032 AssertRC(rc); 1033 1033 } … … 1042 1042 { 1043 1043 rc = STAMR3RegisterF(pVM, &pHmCpu->aStatNestedExitReason[j], STAMTYPE_COUNTER, STAMVISIBILITY_USED, 1044 STAMUNIT_OCCURENCES, pszExitName, "/HM/CPU%u/Exit /NestedGuest/Reason/%02x", idCpu, j);1044 STAMUNIT_OCCURENCES, pszExitName, "/HM/CPU%u/ExitNestedGuest/Reason/%02x", idCpu, j); 1045 1045 AssertRC(rc); 1046 1046 } 1047 1047 } 1048 1048 } 1049 HM_REG_COUNTER(&pHmCpu->StatNestedExitReasonNpf, "/HM/CPU%u/Exit /NestedGuest/Reason/#NPF", "Nested page faults");1049 HM_REG_COUNTER(&pHmCpu->StatNestedExitReasonNpf, "/HM/CPU%u/ExitNestedGuest/Reason/#NPF", "Nested page faults"); 1050 1050 #endif 1051 1051
Note:
See TracChangeset
for help on using the changeset viewer.