Changeset 44259 in vbox for trunk/src/VBox/VMM/VMMR0/HWVMXR0.cpp
- Timestamp:
- Jan 9, 2013 11:02:53 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HWVMXR0.cpp
r44154 r44259 4364 4364 { 4365 4365 Log2(("VMX: lmsw %x\n", VMX_EXIT_QUALIFICATION_CRX_LMSW_DATA(exitQualification))); 4366 STAM_COUNTER_INC(&pVCpu->hm.s.StatExitL MSW);4366 STAM_COUNTER_INC(&pVCpu->hm.s.StatExitLmsw); 4367 4367 rc = EMInterpretLMSW(pVM, pVCpu, CPUMCTX2CORE(pCtx), VMX_EXIT_QUALIFICATION_CRX_LMSW_DATA(exitQualification)); 4368 4368 pVCpu->hm.s.fContextUseFlags |= HM_CHANGED_GUEST_CR0; … … 4626 4626 } 4627 4627 4628 case VMX_EXIT_TPR :/* 43 TPR below threshold. Guest software executed MOV to CR8. */4629 LogFlow(("VMX_EXIT_TPR \n"));4628 case VMX_EXIT_TPR_BELOW_THRESHOLD: /* 43 TPR below threshold. Guest software executed MOV to CR8. */ 4629 LogFlow(("VMX_EXIT_TPR_BELOW_THRESHOLD\n")); 4630 4630 /* RIP is already set to the next instruction and the TPR has been synced back. Just resume. */ 4631 4631 goto ResumeExecution; … … 4805 4805 break; 4806 4806 4807 case VMX_EXIT_TPR :/* 43 TPR below threshold. Guest software executed MOV to CR8. */4807 case VMX_EXIT_TPR_BELOW_THRESHOLD: /* 43 TPR below threshold. Guest software executed MOV to CR8. */ 4808 4808 case VMX_EXIT_RDMSR: /* 31 RDMSR. Guest software attempted to execute RDMSR. */ 4809 4809 case VMX_EXIT_WRMSR: /* 32 WRMSR. Guest software attempted to execute WRMSR. */
Note:
See TracChangeset
for help on using the changeset viewer.