Changeset 77450 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Feb 25, 2019 6:01:34 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAllCImplStrInstr.cpp.h
r76553 r77450 1217 1217 ExitInstrInfo.StrIo.u3AddrSize = ADDR_VMXSTRIO; 1218 1218 ExitInstrInfo.StrIo.iSegReg = X86_SREG_ES; 1219 rcStrict = iemVmxVmexitInstrStrIo(pVCpu, VMXINSTRID_IO_INS, pVCpu->cpum.GstCtx.dx, (OP_SIZE / 8) - 1, false /* fRep */,1219 rcStrict = iemVmxVmexitInstrStrIo(pVCpu, VMXINSTRID_IO_INS, pVCpu->cpum.GstCtx.dx, OP_SIZE / 8, false /* fRep */, 1220 1220 ExitInstrInfo, cbInstr); 1221 1221 if (rcStrict != VINF_VMX_INTERCEPT_NOT_ACTIVE) … … 1302 1302 ExitInstrInfo.StrIo.u3AddrSize = ADDR_VMXSTRIO; 1303 1303 ExitInstrInfo.StrIo.iSegReg = X86_SREG_ES; 1304 rcStrict = iemVmxVmexitInstrStrIo(pVCpu, VMXINSTRID_IO_INS, pVCpu->cpum.GstCtx.dx, (OP_SIZE / 8) - 1, true /* fRep */,1304 rcStrict = iemVmxVmexitInstrStrIo(pVCpu, VMXINSTRID_IO_INS, pVCpu->cpum.GstCtx.dx, OP_SIZE / 8, true /* fRep */, 1305 1305 ExitInstrInfo, cbInstr); 1306 1306 if (rcStrict != VINF_VMX_INTERCEPT_NOT_ACTIVE) … … 1517 1517 ExitInstrInfo.StrIo.u3AddrSize = ADDR_VMXSTRIO; 1518 1518 ExitInstrInfo.StrIo.iSegReg = iEffSeg; 1519 rcStrict = iemVmxVmexitInstrStrIo(pVCpu, VMXINSTRID_IO_OUTS, pVCpu->cpum.GstCtx.dx, (OP_SIZE / 8) - 1, false /* fRep */,1519 rcStrict = iemVmxVmexitInstrStrIo(pVCpu, VMXINSTRID_IO_OUTS, pVCpu->cpum.GstCtx.dx, OP_SIZE / 8, false /* fRep */, 1520 1520 ExitInstrInfo, cbInstr); 1521 1521 if (rcStrict != VINF_VMX_INTERCEPT_NOT_ACTIVE) … … 1590 1590 ExitInstrInfo.StrIo.u3AddrSize = ADDR_VMXSTRIO; 1591 1591 ExitInstrInfo.StrIo.iSegReg = iEffSeg; 1592 rcStrict = iemVmxVmexitInstrStrIo(pVCpu, VMXINSTRID_IO_OUTS, pVCpu->cpum.GstCtx.dx, (OP_SIZE / 8) - 1, true /* fRep */,1592 rcStrict = iemVmxVmexitInstrStrIo(pVCpu, VMXINSTRID_IO_OUTS, pVCpu->cpum.GstCtx.dx, OP_SIZE / 8, true /* fRep */, 1593 1593 ExitInstrInfo, cbInstr); 1594 1594 if (rcStrict != VINF_VMX_INTERCEPT_NOT_ACTIVE)
Note:
See TracChangeset
for help on using the changeset viewer.