Changeset 12699 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Sep 24, 2008 3:55:37 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 37006
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HWVMXR0.cpp
r12698 r12699 1506 1506 VM_FF_CLEAR(pVM, VM_FF_INHIBIT_INTERRUPTS); 1507 1507 1508 /* Real mode emulation using v86 mode with CR4.VME (interrupt redirection using the int bitmap in the TSS) */1509 if (!(pCtx->cr0 & X86_CR0_PROTECTION_ENABLE))1510 {1511 /* Hide our emulation flags */1512 pCtx->eflags.Bits.u1VM = 0;1513 pCtx->eflags.Bits.u1IF = pCtx->eflags.Bits.u1VIF;1514 pCtx->eflags.Bits.u1VIF = 0;1515 pCtx->eflags.Bits.u2IOPL = 0;1516 }1517 1518 1508 /* Control registers. */ 1519 1509 VMXReadVMCS(VMX_VMCS_CTRL_CR0_READ_SHADOW, &valShadow); … … 1554 1544 VMX_READ_SELREG(LDTR, ldtr); 1555 1545 1556 /* In real mode we have a fake TSS, so only sync it back when it's supposed to be valid. */1557 if (pCtx->cr0 & X86_CR0_PROTECTION_ENABLE)1558 {1559 VMX_READ_SELREG(TR, tr);1560 }1561 else1562 /* Force a TR resync every time in case we switch modes. */1563 pVM->hwaccm.s.fContextUseFlags |= HWACCM_CHANGED_GUEST_TR;1564 1565 1546 VMXReadVMCS(VMX_VMCS_GUEST_GDTR_LIMIT, &val); 1566 1547 pCtx->gdtr.cbGdt = val; … … 1572 1553 VMXReadVMCS(VMX_VMCS_GUEST_IDTR_BASE, &val); 1573 1554 pCtx->idtr.pIdt = val; 1555 1556 /* Real mode emulation using v86 mode with CR4.VME (interrupt redirection using the int bitmap in the TSS) */ 1557 if (!(pCtx->cr0 & X86_CR0_PROTECTION_ENABLE)) 1558 { 1559 /* Hide our emulation flags */ 1560 pCtx->eflags.Bits.u1VM = 0; 1561 pCtx->eflags.Bits.u1IF = pCtx->eflags.Bits.u1VIF; 1562 pCtx->eflags.Bits.u1VIF = 0; 1563 pCtx->eflags.Bits.u2IOPL = 0; 1564 1565 /* Force a TR resync every time in case we switch modes. */ 1566 pVM->hwaccm.s.fContextUseFlags |= HWACCM_CHANGED_GUEST_TR; 1567 } 1568 else 1569 { 1570 /* In real mode we have a fake TSS, so only sync it back when it's supposed to be valid. */ 1571 VMX_READ_SELREG(TR, tr); 1572 } 1574 1573 1575 1574 /** @note NOW IT'S SAFE FOR LOGGING! */
Note:
See TracChangeset
for help on using the changeset viewer.