- Timestamp:
- Jan 11, 2024 1:47:58 AM (16 months ago)
- svn:sync-xref-src-repo-rev:
- 161023
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/IEMR3.cpp
r102801 r102829 292 292 "Times RC/R0 had to postpone instruction committing to ring-3", "/IEM/CPU%u/cPendingCommit", idCpu); 293 293 294 STAMR3RegisterF(pVM, &pVCpu->iem.s.CodeTlb.cTlbMisses, STAMTYPE_U32_RESET, STAMVISIBILITY_ALWAYS, STAMUNIT_COUNT, 295 "Code TLB misses", "/IEM/CPU%u/CodeTlb-Misses", idCpu); 296 STAMR3RegisterF(pVM, &pVCpu->iem.s.CodeTlb.uTlbRevision, STAMTYPE_X64, STAMVISIBILITY_ALWAYS, STAMUNIT_NONE, 297 "Code TLB revision", "/IEM/CPU%u/CodeTlb-Revision", idCpu); 298 STAMR3RegisterF(pVM, (void *)&pVCpu->iem.s.CodeTlb.uTlbPhysRev, STAMTYPE_X64, STAMVISIBILITY_ALWAYS, STAMUNIT_NONE, 299 "Code TLB physical revision", "/IEM/CPU%u/CodeTlb-PhysRev", idCpu); 300 STAMR3RegisterF(pVM, &pVCpu->iem.s.CodeTlb.cTlbSlowReadPath, STAMTYPE_U32_RESET, STAMVISIBILITY_ALWAYS, STAMUNIT_NONE, 301 "Code TLB slow read path", "/IEM/CPU%u/CodeTlb-SlowReads", idCpu); 302 303 STAMR3RegisterF(pVM, &pVCpu->iem.s.DataTlb.cTlbMisses, STAMTYPE_U32_RESET, STAMVISIBILITY_ALWAYS, STAMUNIT_COUNT, 304 "Data TLB misses", "/IEM/CPU%u/DataTlb-Misses", idCpu); 305 STAMR3RegisterF(pVM, &pVCpu->iem.s.DataTlb.cTlbSafeReadPath, STAMTYPE_U32_RESET, STAMVISIBILITY_ALWAYS, STAMUNIT_COUNT, 306 "Data TLB safe read path", "/IEM/CPU%u/DataTlb-SafeReads", idCpu); 307 STAMR3RegisterF(pVM, &pVCpu->iem.s.DataTlb.cTlbSafeWritePath, STAMTYPE_U32_RESET, STAMVISIBILITY_ALWAYS, STAMUNIT_COUNT, 308 "Data TLB safe write path", "/IEM/CPU%u/DataTlb-SafeWrites", idCpu); 309 STAMR3RegisterF(pVM, &pVCpu->iem.s.DataTlb.uTlbRevision, STAMTYPE_X64, STAMVISIBILITY_ALWAYS, STAMUNIT_NONE, 310 "Data TLB revision", "/IEM/CPU%u/DataTlb-Revision", idCpu); 311 STAMR3RegisterF(pVM, (void *)&pVCpu->iem.s.DataTlb.uTlbPhysRev, STAMTYPE_X64, STAMVISIBILITY_ALWAYS, STAMUNIT_NONE, 312 "Data TLB physical revision", "/IEM/CPU%u/DataTlb-PhysRev", idCpu); 313 294 314 # ifdef VBOX_WITH_STATISTICS 295 315 STAMR3RegisterF(pVM, &pVCpu->iem.s.CodeTlb.cTlbHits, STAMTYPE_U64_RESET, STAMVISIBILITY_ALWAYS, STAMUNIT_COUNT, … … 307 327 "Data TLB native mapped data hits", "/IEM/CPU%u/DataTlb-Hits-Native-Mapped", idCpu); 308 328 # endif 329 char szPat[128]; 330 RTStrPrintf(szPat, sizeof(szPat), "/IEM/CPU%u/DataTlb-Hits-*", idCpu); 331 STAMR3RegisterSum(pVM->pUVM, STAMVISIBILITY_ALWAYS, szPat, 332 "Data TLB hits total", "/IEM/CPU%u/DataTlb-Hits", idCpu); 333 334 RTStrPrintf(szPat, sizeof(szPat), "/IEM/CPU%u/DataTlb-Safe*", idCpu); 335 STAMR3RegisterSum(pVM->pUVM, STAMVISIBILITY_ALWAYS, szPat, 336 "Data TLB actual misses", "/IEM/CPU%u/DataTlb-SafeTotal", idCpu); 337 char szValue[128]; 338 RTStrPrintf(szValue, sizeof(szValue), "/IEM/CPU%u/DataTlb-SafeTotal", idCpu); 339 RTStrPrintf(szPat, sizeof(szPat), "/IEM/CPU%u/DataTlb-Hits-*", idCpu); 340 STAMR3RegisterPctOfSum(pVM->pUVM, STAMVISIBILITY_ALWAYS, STAMUNIT_PPM, szValue, szPat, 341 "Data TLB actual miss rate", "/IEM/CPU%u/DataTlb-SafeRate", idCpu); 309 342 # endif 310 STAMR3RegisterF(pVM, &pVCpu->iem.s.CodeTlb.cTlbMisses, STAMTYPE_U32_RESET, STAMVISIBILITY_ALWAYS, STAMUNIT_COUNT,311 "Code TLB misses", "/IEM/CPU%u/CodeTlb-Misses", idCpu);312 STAMR3RegisterF(pVM, &pVCpu->iem.s.CodeTlb.uTlbRevision, STAMTYPE_X64, STAMVISIBILITY_ALWAYS, STAMUNIT_NONE,313 "Code TLB revision", "/IEM/CPU%u/CodeTlb-Revision", idCpu);314 STAMR3RegisterF(pVM, (void *)&pVCpu->iem.s.CodeTlb.uTlbPhysRev, STAMTYPE_X64, STAMVISIBILITY_ALWAYS, STAMUNIT_NONE,315 "Code TLB physical revision", "/IEM/CPU%u/CodeTlb-PhysRev", idCpu);316 STAMR3RegisterF(pVM, &pVCpu->iem.s.CodeTlb.cTlbSlowReadPath, STAMTYPE_U32_RESET, STAMVISIBILITY_ALWAYS, STAMUNIT_NONE,317 "Code TLB slow read path", "/IEM/CPU%u/CodeTlb-SlowReads", idCpu);318 319 STAMR3RegisterF(pVM, &pVCpu->iem.s.DataTlb.cTlbMisses, STAMTYPE_U32_RESET, STAMVISIBILITY_ALWAYS, STAMUNIT_COUNT,320 "Data TLB misses", "/IEM/CPU%u/DataTlb-Misses", idCpu);321 STAMR3RegisterF(pVM, &pVCpu->iem.s.DataTlb.cTlbSafeReadPath, STAMTYPE_U32_RESET, STAMVISIBILITY_ALWAYS, STAMUNIT_COUNT,322 "Data TLB safe read path", "/IEM/CPU%u/DataTlb-SafeReads", idCpu);323 STAMR3RegisterF(pVM, &pVCpu->iem.s.DataTlb.cTlbSafeWritePath, STAMTYPE_U32_RESET, STAMVISIBILITY_ALWAYS, STAMUNIT_COUNT,324 "Data TLB safe write path", "/IEM/CPU%u/DataTlb-SafeWrites", idCpu);325 STAMR3RegisterF(pVM, &pVCpu->iem.s.DataTlb.uTlbRevision, STAMTYPE_X64, STAMVISIBILITY_ALWAYS, STAMUNIT_NONE,326 "Data TLB revision", "/IEM/CPU%u/DataTlb-Revision", idCpu);327 STAMR3RegisterF(pVM, (void *)&pVCpu->iem.s.DataTlb.uTlbPhysRev, STAMTYPE_X64, STAMVISIBILITY_ALWAYS, STAMUNIT_NONE,328 "Data TLB physical revision", "/IEM/CPU%u/DataTlb-PhysRev", idCpu);329 343 330 344 #ifdef VBOX_WITH_IEM_RECOMPILER
Note:
See TracChangeset
for help on using the changeset viewer.