- Timestamp:
- May 26, 2015 2:40:22 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMSVMR0.cpp
r56080 r56081 4777 4777 4778 4778 VBOXSTRICTRC rcStrict; 4779 bool fUpdateRipAlready = false; 4779 4780 if (IoExitInfo.n.u1STR) 4780 4781 { … … 4823 4824 rcStrict = IEMExecOne(pVCpu); 4824 4825 } 4826 fUpdateRipAlready = true; 4825 4827 4826 4828 #else … … 4884 4886 { 4885 4887 /* AMD-V saves the RIP of the instruction following the IO instruction in EXITINFO2. */ 4886 pCtx->rip = pVmcb->ctrl.u64ExitInfo2; 4888 if (!fUpdateRipAlready) 4889 pCtx->rip = pVmcb->ctrl.u64ExitInfo2; 4887 4890 4888 4891 /*
Note:
See TracChangeset
for help on using the changeset viewer.