Changeset 40656 in vbox for trunk/src/VBox/VMM/VMMR0
- Timestamp:
- Mar 26, 2012 8:07:36 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HWVMXR0.cpp
r40561 r40656 3025 3025 #endif 3026 3026 /* Need to go back to the recompiler to emulate the instruction. */ 3027 STAM_COUNTER_INC(&pVCpu->hwaccm.s.StatExitShadowPFEM); 3027 3028 TRPMResetTrap(pVCpu); 3028 3029 break; … … 3102 3103 case X86_XCPT_BP: /* Breakpoint. */ 3103 3104 { 3105 STAM_COUNTER_INC(&pVCpu->hwaccm.s.StatExitGuestBP); 3104 3106 rc = DBGFRZTrap03Handler(pVM, pVCpu, CPUMCTX2CORE(pCtx)); 3105 3107 if (rc == VINF_EM_RAW_GUEST_TRAP) … … 3389 3391 STAM_COUNTER_INC(&pVCpu->hwaccm.s.StatExitGuestNP); 3390 3392 break; 3393 case X86_XCPT_XF: 3394 STAM_COUNTER_INC(&pVCpu->hwaccm.s.StatExitGuestXF); 3395 break; 3391 3396 } 3392 3397 … … 3400 3405 #endif 3401 3406 default: 3407 STAM_COUNTER_INC(&pVCpu->hwaccm.s.StatExitGuestXcpUnk); 3402 3408 if ( CPUMIsGuestInRealModeEx(pCtx) 3403 3409 && pVM->hwaccm.s.vmx.pRealModeTSS)
Note:
See TracChangeset
for help on using the changeset viewer.