- Timestamp:
- Oct 2, 2018 6:37:23 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAllCImpl.cpp.h
r74568 r74569 5952 5952 { 5953 5953 Log(("invlpg: Guest intercept (%RGp) -> VM-exit\n", GCPtrPage)); 5954 iemVmxVmexitInstrInvlpg(pVCpu, GCPtrPage, cbInstr);5954 return iemVmxVmexitInstrInvlpg(pVCpu, GCPtrPage, cbInstr); 5955 5955 } 5956 5956 #endif … … 6234 6234 IEM_VMX_VMEXIT_INSTR_RET(pVCpu, VMX_EXIT_RDTSCP, cbInstr); 6235 6235 } 6236 6237 if (IEM_SVM_IS_CTRL_INTERCEPT_SET(pVCpu, SVM_CTRL_INTERCEPT_RDTSCP)) 6236 else if (IEM_SVM_IS_CTRL_INTERCEPT_SET(pVCpu, SVM_CTRL_INTERCEPT_RDTSCP)) 6238 6237 { 6239 6238 Log(("rdtscp: Guest intercept -> #VMEXIT\n")); … … 6276 6275 && !(pVCpu->cpum.GstCtx.cr4 & X86_CR4_PCE)) 6277 6276 return iemRaiseGeneralProtectionFault0(pVCpu); 6277 6278 if (IEM_VMX_IS_PROCCTLS_SET(pVCpu, VMX_PROC_CTLS_RDPMC_EXIT)) 6279 { 6280 Log(("rdpmc: Guest intercept -> VM-exit\n")); 6281 IEM_VMX_VMEXIT_INSTR_RET(pVCpu, VMX_EXIT_RDPMC, cbInstr); 6282 } 6278 6283 6279 6284 if (IEM_SVM_IS_CTRL_INTERCEPT_SET(pVCpu, SVM_CTRL_INTERCEPT_RDPMC))
Note:
See TracChangeset
for help on using the changeset viewer.