Changeset 65174 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Jan 6, 2017 10:04:20 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAll.cpp
r64655 r65174 4520 4520 return iemRaiseGeneralProtectionFault(pVCpu, 0); 4521 4521 } 4522 Log7(("iemRaiseXcptOrIntInProtMode: new EIP=%#x CS=%#x\n", uNewEip, NewCS)); 4522 4523 4523 4524 /* Calc the flag image to push. */ … … 4553 4554 if (rcStrict != VINF_SUCCESS) 4554 4555 return rcStrict; 4556 Log7(("iemRaiseXcptOrIntInProtMode: New SS=%#x ESP=%#x (from TSS); current SS=%#x ESP=%#x\n", NewSS, uNewEsp, pCtx->ss.Sel, pCtx->esp)); 4555 4557 4556 4558 /* Check that there is sufficient space for the stack frame. */ … … 4605 4607 uStackFrame.pu32[3] = pCtx->esp; 4606 4608 uStackFrame.pu32[4] = pCtx->ss.Sel; 4609 Log7(("iemRaiseXcptOrIntInProtMode: 32-bit push SS=%#x ESP=%#x\n", pCtx->ss.Sel, pCtx->esp)); 4607 4610 if (fEfl & X86_EFL_VM) 4608 4611 { … … 4623 4626 uStackFrame.pu16[3] = pCtx->sp; 4624 4627 uStackFrame.pu16[4] = pCtx->ss.Sel; 4628 Log7(("iemRaiseXcptOrIntInProtMode: 16-bit push SS=%#x SP=%#x\n", pCtx->ss.Sel, pCtx->sp)); 4625 4629 if (fEfl & X86_EFL_VM) 4626 4630 {
Note:
See TracChangeset
for help on using the changeset viewer.