Changeset 17332 in vbox for trunk/src/VBox
- Timestamp:
- Mar 4, 2009 9:14:23 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 43708
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/IOM.cpp
r17328 r17332 458 458 { 459 459 /* register the statistics counters. */ 460 rc = STAMR3RegisterF(pVM, &pStats->ReadR3, STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/MMIO/%RGp-Read-R3", GCPhys); AssertRC(rc); 461 rc = STAMR3RegisterF(pVM, &pStats->WriteR3, STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/MMIO/%RGp-Write-R3", GCPhys); AssertRC(rc); 462 rc = STAMR3RegisterF(pVM, &pStats->ReadRZ, STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/MMIO/%RGp-Read-RZ", GCPhys); AssertRC(rc); 463 rc = STAMR3RegisterF(pVM, &pStats->WriteRZ, STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/MMIO/%RGp-Write-RZ", GCPhys); AssertRC(rc); 464 rc = STAMR3RegisterF(pVM, &pStats->ReadRZToR3, STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/MMIO/%RGp-Read-RZtoR3", GCPhys); AssertRC(rc); 465 rc = STAMR3RegisterF(pVM, &pStats->WriteRZToR3, STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/MMIO/%RGp-Write-RZtoR3", GCPhys); AssertRC(rc); 466 rc = STAMR3RegisterF(pVM, &pStats->IOEmulateFailedR0, STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/MMIO/%RGp-IOEmuFailedR0", GCPhys); AssertRC(rc); 460 rc = STAMR3RegisterF(pVM, &pStats->ReadR3, STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/MMIO/%RGp-Read-R3", GCPhys); AssertRC(rc); 461 rc = STAMR3RegisterF(pVM, &pStats->WriteR3, STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/MMIO/%RGp-Write-R3", GCPhys); AssertRC(rc); 462 rc = STAMR3RegisterF(pVM, &pStats->ReadRZ, STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/MMIO/%RGp-Read-RZ", GCPhys); AssertRC(rc); 463 rc = STAMR3RegisterF(pVM, &pStats->WriteRZ, STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/MMIO/%RGp-Write-RZ", GCPhys); AssertRC(rc); 464 rc = STAMR3RegisterF(pVM, &pStats->ReadRZToR3, STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/MMIO/%RGp-Read-RZtoR3", GCPhys); AssertRC(rc); 465 rc = STAMR3RegisterF(pVM, &pStats->WriteRZToR3, STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/MMIO/%RGp-Write-RZtoR3", GCPhys); AssertRC(rc); 467 466 468 467 /* Profiling */ -
trunk/src/VBox/VMM/IOMInternal.h
r17328 r17332 128 128 /** Number of writes to this address from R0/RC which was serviced in R3. */ 129 129 STAMCOUNTER WriteRZToR3; 130 131 /** Number of failed IO block emulation attempts. */132 STAMCOUNTER IOEmulateFailedR0;133 134 130 } IOMMMIOSTATS; 135 131 /** Pointer to I/O port statistics. */ -
trunk/src/VBox/VMM/VMMAll/IOMAllMMIO.cpp
r17328 r17332 1393 1393 STAM_COUNTER_INC(&pStats->CTX_SUFF_Z(Write)); 1394 1394 #endif 1395 #ifdef IN_RING01396 if ( rc == VINF_EM_RAW_EMULATE_IO_BLOCK1397 && !HWACCMCanEmulateIoBlock(pVM))1398 {1399 /* Failed io emulation block attempt; just retry (a switch to ring 3 would jump right back) */1400 # ifdef VBOX_WITH_STATISTICS1401 STAM_PROFILE_ADV_START(&pStats->CTX_SUFF_Z(ProfWrite), a);1402 STAM_COUNTER_INC(&pStats->IOEmulateFailedR0);1403 # endif1404 int rc = pRange->CTX_SUFF(pfnWriteCallback)(pRange->CTX_SUFF(pDevIns), pRange->CTX_SUFF(pvUser), GCPhys, &u32Value, (unsigned)cbValue);1405 # ifdef VBOX_WITH_STATISTICS1406 STAM_PROFILE_ADV_STOP(&pStats->CTX_SUFF_Z(ProfWrite), a);1407 if (rc != VINF_IOM_HC_MMIO_WRITE)1408 STAM_COUNTER_INC(&pStats->CTX_SUFF_Z(Write));1409 # endif1410 }1411 #endif1412 1395 Log4(("IOMMMIOWrite: GCPhys=%RGp u32=%08RX32 cb=%d rc=%Rrc\n", GCPhys, u32Value, cbValue, rc)); 1413 1396 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.