- Timestamp:
- Apr 28, 2016 10:29:17 AM (9 years ago)
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMSVMR0.cpp
r60730 r60732 2687 2687 * always via hmR0SvmLoadGuestState() -> hmR0SvmLoadGuestApicState(). 2688 2688 */ 2689 STAM_COUNTER_INC(&pVCpu->hm.s.StatSwitchTprMaskedIrq); 2689 2690 } 2690 2691 else -
trunk/src/VBox/VMM/VMMR0/HMVMXR0.cpp
r60730 r60732 7460 7460 if (pVCpu->hm.s.vmx.u32ProcCtls & VMX_VMCS_CTRL_PROC_EXEC_USE_TPR_SHADOW) 7461 7461 hmR0VmxApicSetTprThreshold(pVCpu, u8Interrupt >> 4); 7462 STAM_COUNTER_INC(&pVCpu->hm.s.StatSwitchTprMaskedIrq); 7462 7463 } 7463 7464 else -
trunk/src/VBox/VMM/VMMR3/HM.cpp
r60406 r60732 827 827 HM_REG_COUNTER(&pVCpu->hm.s.StatExitApicAccess, "/HM/CPU%d/Exit/ApicAccess", "APIC access. Guest attempted to access memory at a physical address on the APIC-access page."); 828 828 829 HM_REG_COUNTER(&pVCpu->hm.s.StatSwitchTprMaskedIrq, "/HM/CPU%d/Switch/TprMaskedIrq", "PDMGetInterrupt() signals TPR masks pending Irq."); 829 830 HM_REG_COUNTER(&pVCpu->hm.s.StatSwitchGuestIrq, "/HM/CPU%d/Switch/IrqPending", "PDMGetInterrupt() cleared behind our back!?!."); 830 831 HM_REG_COUNTER(&pVCpu->hm.s.StatPendingHostIrq, "/HM/CPU%d/Switch/PendingHostIrq", "Exit to ring-3 due to pending host interrupt before executing guest code."); -
trunk/src/VBox/VMM/include/HMInternal.h
r60307 r60732 1004 1004 STAMCOUNTER StatTlbShootdownFlush; 1005 1005 1006 STAMCOUNTER StatSwitchTprMaskedIrq; 1006 1007 STAMCOUNTER StatSwitchGuestIrq; 1007 1008 STAMCOUNTER StatSwitchHmToR3FF;
Note:
See TracChangeset
for help on using the changeset viewer.