VirtualBox

Changeset 12699 in vbox for trunk/src/VBox/VMM


Ignore:
Timestamp:
Sep 24, 2008 3:55:37 PM (17 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
37006
Message:

Merge real mode sync changes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMR0/HWVMXR0.cpp

    r12698 r12699  
    15061506        VM_FF_CLEAR(pVM, VM_FF_INHIBIT_INTERRUPTS);
    15071507
    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 
    15181508    /* Control registers. */
    15191509    VMXReadVMCS(VMX_VMCS_CTRL_CR0_READ_SHADOW,   &valShadow);
     
    15541544    VMX_READ_SELREG(LDTR, ldtr);
    15551545
    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     else
    1562         /* Force a TR resync every time in case we switch modes. */
    1563         pVM->hwaccm.s.fContextUseFlags |= HWACCM_CHANGED_GUEST_TR;
    1564 
    15651546    VMXReadVMCS(VMX_VMCS_GUEST_GDTR_LIMIT,       &val);
    15661547    pCtx->gdtr.cbGdt        = val;
     
    15721553    VMXReadVMCS(VMX_VMCS_GUEST_IDTR_BASE,        &val);
    15731554    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    }
    15741573
    15751574    /** @note NOW IT'S SAFE FOR LOGGING! */
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette