Changeset 69141 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Oct 20, 2017 9:58:17 AM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 118450
- Location:
- trunk/src/VBox/VMM/VMMAll
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAll.cpp
r69111 r69141 16171 16171 VMM_INT_DECL(VBOXSTRICTRC) IEMExecSvmVmexit(PVMCPU pVCpu, uint64_t uExitCode, uint64_t uExitInfo1, uint64_t uExitInfo2) 16172 16172 { 16173 return iemSvmVmexit(pVCpu, IEM_GET_CTX(pVCpu), uExitCode, uExitInfo1, uExitInfo2); 16173 VBOXSTRICTRC rcStrict = iemSvmVmexit(pVCpu, IEM_GET_CTX(pVCpu), uExitCode, uExitInfo1, uExitInfo2); 16174 return iemExecStatusCodeFiddling(pVCpu, rcStrict); 16174 16175 } 16175 16176 #endif /* VBOX_WITH_NESTED_HWVIRT */ -
trunk/src/VBox/VMM/VMMAll/IEMAllCImplSvmInstr.cpp.h
r69111 r69141 626 626 * NRIP for the nested-guest to calculate the instruction length 627 627 * below. */ 628 LogFlow(("iemSvmVmrun: Injecting event: %04x:%08RX64 uVector=%#x enmType=%d uErrorCode=%u cr2=%#RX64 \n",629 pCtx->cs.Sel, pCtx->rip, uVector, enmType, uErrorCode, pCtx->cr2 ));628 LogFlow(("iemSvmVmrun: Injecting event: %04x:%08RX64 uVector=%#x enmType=%d uErrorCode=%u cr2=%#RX64 efer=%#RX64\n", 629 pCtx->cs.Sel, pCtx->rip, uVector, enmType, uErrorCode, pCtx->cr2, pCtx->msrEFER)); 630 630 rcStrict = IEMInjectTrap(pVCpu, uVector, enmType, uErrorCode, pCtx->cr2, 0 /* cbInstr */); 631 631 }
Note:
See TracChangeset
for help on using the changeset viewer.