Changeset 95560 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Jul 7, 2022 11:43:55 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/IEMR3.cpp
r95557 r95560 130 130 STAMR3RegisterF(pVM, (void *)&pVCpu->iem.s.DataTlb.uTlbPhysRev, STAMTYPE_X64, STAMVISIBILITY_ALWAYS, STAMUNIT_NONE, 131 131 "Data TLB physical revision", "/IEM/CPU%u/DataTlb-PhysRev", idCpu); 132 133 for (uint32_t i = 0; i < RT_MIN(0x20, RT_ELEMENTS(pVCpu->iem.s.aStatXcpts)); i++) 134 STAMR3RegisterF(pVM, &pVCpu->iem.s.aStatXcpts[i], STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, 135 "", "/IEM/CPU%u/xcpts/00-1f/%02x", idCpu, i); 136 for (uint32_t i = 0x20; i < RT_ELEMENTS(pVCpu->iem.s.aStatXcpts); i++) 137 STAMR3RegisterF(pVM, &pVCpu->iem.s.aStatXcpts[i], STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, 138 "", "/IEM/CPU%u/xcpts/20-ff/%02x", idCpu, i); 132 139 133 140 #if defined(VBOX_WITH_STATISTICS) && !defined(DOXYGEN_RUNNING)
Note:
See TracChangeset
for help on using the changeset viewer.