Changeset 60464 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- Apr 12, 2016 4:56:07 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 106556
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/APICInternal.h
r60307 r60464 558 558 /** @name APIC statistics. 559 559 * @{ */ 560 /** Number of MMIO reads in GC. */ 561 STAMCOUNTER StatMmioReadGC; 562 /** Number of MMIO reads in GC. */ 563 STAMCOUNTER StatMmioReadHC; 564 /** Number of MMIO writes in GC. */ 565 STAMCOUNTER StatMmioWriteGC; 566 /** Number of MMIO writes in HC. */ 567 STAMCOUNTER StatMmioWriteHC; 568 /** Number of MSR writes. */ 569 STAMCOUNTER StatMsrWrite; 570 /** Number of MSR reads. */ 571 STAMCOUNTER StatMsrRead; 560 /** Number of MMIO reads in R0. */ 561 STAMCOUNTER StatMmioReadR0; 562 /** Number of MMIO reads in R3. */ 563 STAMCOUNTER StatMmioReadR3; 564 /** Number of MMIO reads in RC. */ 565 STAMCOUNTER StatMmioReadRC; 566 567 /** Number of MMIO writes in R0. */ 568 STAMCOUNTER StatMmioWriteR0; 569 /** Number of MMIO writes in R3. */ 570 STAMCOUNTER StatMmioWriteR3; 571 /** Number of MMIO writes in RC. */ 572 STAMCOUNTER StatMmioWriteRC; 573 574 /** Number of MSR reads in R0. */ 575 STAMCOUNTER StatMsrReadR0; 576 /** Number of MSR reads in R3. */ 577 STAMCOUNTER StatMsrReadR3; 578 /** Number of MSR reads in RC. */ 579 STAMCOUNTER StatMsrReadRC; 580 581 /** Number of MSR writes in R0. */ 582 STAMCOUNTER StatMsrWriteR0; 583 /** Number of MSR writes in R3. */ 584 STAMCOUNTER StatMsrWriteR3; 585 /** Number of MSR writes in RC. */ 586 STAMCOUNTER StatMsrWriteRC; 572 587 /** @} */ 573 588 #endif
Note:
See TracChangeset
for help on using the changeset viewer.