Changeset 49719 in vbox for trunk/src/VBox/VMM/VMMR0
- Timestamp:
- Nov 29, 2013 10:58:29 AM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 91011
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMSVMR0.cpp
r49664 r49719 5012 5012 if (!(pCtx->cr0 & X86_CR0_NE)) 5013 5013 { 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; 5017 5028 } 5018 5029
Note:
See TracChangeset
for help on using the changeset viewer.