- Timestamp:
- Jan 20, 2020 5:41:36 AM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 135750
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/APICAll.cpp
r82329 r82792 1927 1927 /* Raw read, compatible with xAPIC: */ 1928 1928 case MSR_IA32_X2APIC_ID: 1929 { 1930 STAM_COUNTER_INC(&pVCpu->apic.s.StatIdMsrRead); 1931 RT_FALL_THRU(); 1932 } 1929 1933 case MSR_IA32_X2APIC_VERSION: 1930 1934 case MSR_IA32_X2APIC_TPR: -
trunk/src/VBox/VMM/VMMR3/APIC.cpp
r82039 r82792 1547 1547 APIC_REG_COUNTER(&pApicCpu->StatIcrHiWrite, "%u/IcrHiWrite", "Number of times the ICR Hi is written."); 1548 1548 APIC_REG_COUNTER(&pApicCpu->StatIcrFullWrite, "%u/IcrFullWrite", "Number of times the ICR full (send IPI, x2APIC) is written."); 1549 APIC_REG_COUNTER(&pApicCpu->StatIdMsrRead, "%u/IdMsrRead", "Number of times the APIC-ID MSR is read."); 1549 1550 1550 1551 APIC_PROF_COUNTER(&pApicCpu->StatUpdatePendingIntrs, -
trunk/src/VBox/VMM/include/APICInternal.h
r82038 r82792 1357 1357 /** Number of times the full ICR (x2APIC send IPI) is written. */ 1358 1358 STAMCOUNTER StatIcrFullWrite; 1359 /** Number of times the APIC-ID MSR is read. */ 1360 STAMCOUNTER StatIdMsrRead; 1359 1361 /** @} */ 1360 1362 #endif
Note:
See TracChangeset
for help on using the changeset viewer.