Changeset 73180 in vbox for trunk/src/VBox/VMM/VMMR0
- Timestamp:
- Jul 17, 2018 1:59:53 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 123782
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMVMXR0.cpp
r73179 r73180 12107 12107 * interpreting the instruction. 12108 12108 */ 12109 Log4(("CS:RIP=%04x:%08RX64 %#06x/%u %c str\n", pCtx->cs.Sel, pCtx->rip, uIOPort, cbValue, 12110 fIOWrite ? 'w' : 'r')); 12109 Log4(("CS:RIP=%04x:%08RX64 %#06x/%u %c str\n", pCtx->cs.Sel, pCtx->rip, uIOPort, cbValue, fIOWrite ? 'w' : 'r')); 12111 12110 AssertReturn(pCtx->dx == uIOPort, VERR_VMX_IPE_2); 12112 12111 if (MSR_IA32_VMX_BASIC_INFO_VMCS_INS_OUTS(pVM->hm.s.vmx.Msrs.u64BasicInfo)) … … 12143 12142 * IN/OUT - I/O instruction. 12144 12143 */ 12145 Log4(("CS:RIP=%04x:%08RX64 %#06x/%u %c\n", pCtx->cs.Sel, pCtx->rip, uIOPort, cbValue, 12146 fIOWrite ? 'w' : 'r')); 12144 Log4(("CS:RIP=%04x:%08RX64 %#06x/%u %c\n", pCtx->cs.Sel, pCtx->rip, uIOPort, cbValue, fIOWrite ? 'w' : 'r')); 12147 12145 uint32_t const uAndVal = s_aIOOpAnd[uIOWidth]; 12148 12146 Assert(!VMX_EXIT_QUAL_IO_IS_REP(pVmxTransient->uExitQualification));
Note:
See TracChangeset
for help on using the changeset viewer.