VirtualBox

Changeset 49719 in vbox for trunk/src/VBox/VMM/VMMR0


Ignore:
Timestamp:
Nov 29, 2013 10:58:29 AM (11 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
91011
Message:

HMSVM: Do not fall back on FERR emulation (see #6117).

File:
1 edited

Legend:

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

    r49664 r49719  
    50125012    if (!(pCtx->cr0 & X86_CR0_NE))
    50135013    {
    5014         /* Old-style FPU error reporting needs some extra work. */
    5015         /** @todo don't fall back to the recompiler, but do it manually. */
    5016         return VERR_EM_INTERPRETER;
     5014        PVM         pVM  = pVCpu->CTX_SUFF(pVM);
     5015        PDISSTATE   pDis = &pVCpu->hm.s.DisState;
     5016        unsigned    cbOp;
     5017        int rc = EMInterpretDisasCurrent(pVM, pVCpu, pDis, &cbOp);
     5018        if (RT_SUCCESS(rc))
     5019        {
     5020            /* Convert a #MF into a FERR -> IRQ 13. */
     5021            rc = PDMIsaSetIrq(pVCpu->CTX_SUFF(pVM), 13, 1, 0 /*uTagSrc*/);
     5022            if (RT_SUCCESS(rc))
     5023                pCtx->rip += cbOp;
     5024        }
     5025        else
     5026            Log4(("hmR0SvmExitXcptMF: EMInterpretDisasCurrent returned %Rrc uOpCode=%#x\n", rc, pDis->pCurInstr->uOpcode));
     5027        return rc;
    50175028    }
    50185029
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