- Timestamp:
- Feb 16, 2012 7:10:17 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 76314
- Location:
- trunk/src/VBox/VMM/VMMAll
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAll.cpp
r40154 r40161 3493 3493 { 3494 3494 /* No unmasked exceptions, just store the result. */ 3495 pCtx->fpu.FSW &= X86_FSW_TOP_MASK | X86_FSW_C0 | X86_FSW_C1 | X86_FSW_C2 | X86_FSW_C3; 3496 pCtx->fpu.FSW |= (iNewTop << X86_FSW_TOP_SHIFT) | (pResult->FSW & ~(X86_FSW_TOP_MASK | X86_FSW_B | X86_FSW_ES)); 3495 pCtx->fpu.FSW &= ~(X86_FSW_TOP_MASK | X86_FSW_C0 | X86_FSW_C1 | X86_FSW_C2 | X86_FSW_C3); 3496 pCtx->fpu.FSW |= pResult->FSW & ~(X86_FSW_TOP_MASK | X86_FSW_B | X86_FSW_ES); 3497 pCtx->fpu.FSW |= iNewTop << X86_FSW_TOP_SHIFT; 3497 3498 pCtx->fpu.FTW |= RT_BIT(iNewTop); 3498 3499 pCtx->fpu.aRegs[7].r80 = pResult->r80Result; … … 3507 3508 { 3508 3509 /* Masked stack overflow. */ 3509 pCtx->fpu.FSW &= X86_FSW_TOP_MASK | X86_FSW_C0 | X86_FSW_C1 | X86_FSW_C2 | X86_FSW_C3;3510 pCtx->fpu.FSW &= ~(X86_FSW_TOP_MASK | X86_FSW_C0 | X86_FSW_C1 | X86_FSW_C2 | X86_FSW_C3); 3510 3511 pCtx->fpu.FSW |= (iNewTop << X86_FSW_TOP_SHIFT) | X86_FSW_C1 | X86_FSW_IE | X86_FSW_SF; 3511 3512 pCtx->fpu.FTW |= RT_BIT(iNewTop); … … 3515 3516 { 3516 3517 /* Stack overflow exception. */ 3517 pCtx->fpu.FSW &= X86_FSW_C0 | X86_FSW_C1 | X86_FSW_C2 | X86_FSW_C3;3518 pCtx->fpu.FSW &= ~(X86_FSW_C0 | X86_FSW_C1 | X86_FSW_C2 | X86_FSW_C3); 3518 3519 pCtx->fpu.FSW |= X86_FSW_C1 | X86_FSW_IE | X86_FSW_SF | X86_FSW_ES | X86_FSW_B; 3519 3520 return; … … 3552 3553 Assert(iStReg < 8); 3553 3554 uint16_t iReg = (X86_FSW_TOP_GET(pCtx->fpu.FSW) + iStReg) & X86_FSW_TOP_SMASK; 3554 pCtx->fpu.FSW &= X86_FSW_C_MASK;3555 pCtx->fpu.FSW &= ~X86_FSW_C_MASK; 3555 3556 pCtx->fpu.FSW |= pResult->FSW & ~X86_FSW_TOP_MASK; 3556 3557 pCtx->fpu.FTW |= RT_BIT(iReg); … … 3601 3602 { 3602 3603 /* Masked underflow. */ 3603 pCtx->fpu.FSW &= X86_FSW_C0 | X86_FSW_C2 | X86_FSW_C3;3604 pCtx->fpu.FSW &= ~(X86_FSW_C0 | X86_FSW_C2 | X86_FSW_C3); 3604 3605 pCtx->fpu.FSW |= X86_FSW_C1 | X86_FSW_IE | X86_FSW_SF; 3605 3606 pCtx->fpu.FTW |= RT_BIT(iReg); … … 3608 3609 else 3609 3610 { 3610 pCtx->fpu.FSW &= X86_FSW_C0 | X86_FSW_C2 | X86_FSW_C3;3611 pCtx->fpu.FSW &= ~(X86_FSW_C0 | X86_FSW_C2 | X86_FSW_C3); 3611 3612 pCtx->fpu.FSW |= X86_FSW_C1 | X86_FSW_IE | X86_FSW_SF | X86_FSW_ES | X86_FSW_B; 3612 3613 } 3613 3614 } 3614 3615 3615 static voidiemFpuStackUnderflow(PIEMCPU pIemCpu, uint8_t iStReg)3616 DECL_NO_INLINE(static, void) iemFpuStackUnderflow(PIEMCPU pIemCpu, uint8_t iStReg) 3616 3617 { 3617 3618 PCPUMCTX pCtx = pIemCpu->CTX_SUFF(pCtx); … … 3620 3621 } 3621 3622 3622 static void iemFpuStackUnderflowWithMemOp(PIEMCPU pIemCpu, uint8_t iStReg, uint8_t iEffSeg, RTGCPTR GCPtrEff) 3623 3624 DECL_NO_INLINE(static, void) 3625 iemFpuStackUnderflowWithMemOp(PIEMCPU pIemCpu, uint8_t iStReg, uint8_t iEffSeg, RTGCPTR GCPtrEff) 3623 3626 { 3624 3627 PCPUMCTX pCtx = pIemCpu->CTX_SUFF(pCtx); … … 6752 6755 } while (0) 6753 6756 6757 #if 1 /* The recompiler doesn't update these the intel way. */ 6758 pOrgCtx->fpu.FOP = pDebugCtx->fpu.FOP; 6759 pOrgCtx->fpu.FPUIP = pDebugCtx->fpu.FPUIP; 6760 pOrgCtx->fpu.CS = pDebugCtx->fpu.CS; 6761 pOrgCtx->fpu.Rsrvd1 = pDebugCtx->fpu.Rsrvd1; 6762 pOrgCtx->fpu.FPUDP = pDebugCtx->fpu.FPUDP; 6763 pOrgCtx->fpu.DS = pDebugCtx->fpu.DS; 6764 pOrgCtx->fpu.Rsrvd2 = pDebugCtx->fpu.Rsrvd2; 6765 pOrgCtx->fpu.MXCSR_MASK = pDebugCtx->fpu.MXCSR_MASK; /* only for the time being - old snapshots here. */ 6766 if ((pOrgCtx->fpu.FSW & X86_FSW_TOP_MASK) == (pDebugCtx->fpu.FSW & X86_FSW_TOP_MASK)) 6767 pOrgCtx->fpu.FSW = pDebugCtx->fpu.FSW; 6768 #endif 6754 6769 if (memcmp(&pOrgCtx->fpu, &pDebugCtx->fpu, sizeof(pDebugCtx->fpu))) 6755 6770 { -
trunk/src/VBox/VMM/VMMAll/IEMAllAImpl.asm
r40143 r40161 1288 1288 1289 1289 ;; 1290 ; Initialize the FPU for x87 operation, loading the guest's status word. 1291 ; 1290 ; Initialize the FPU for the actual instruction being emulated, this means 1291 ; loading parts of the guest's control word and status word. 1292 ; 1293 ; @uses 24 bytes of stack. 1292 1294 ; @param 1 Expression giving the address of the FXSTATE of the guest. 1293 %macro FPU_INIT 1 1294 fninit 1295 ; 1296 %macro FPU_LD_FXSTATE_FCW_AND_SAFE_FSW 1 1297 fnstenv [xSP] 1298 1299 ; FCW - for exception, precision and rounding control. 1295 1300 movzx T0, word [%1 + X86FXSTATE.FCW] 1296 1301 and T0, X86_FCW_MASK_ALL | X86_FCW_PC_MASK | X86_FCW_RC_MASK 1297 mov [xSP], T0 1298 fldcw [xSP] 1302 mov [xSP + X86FSTENV32P.FCW], T0_16 1303 1304 ; FSW - for undefined C0, C1, C2, and C3. 1305 movzx T1, word [%1 + X86FXSTATE.FSW] 1306 and T1, X86_FSW_C_MASK 1307 movzx T0, word [xSP + X86FSTENV32P.FSW] 1308 and T0, X86_FSW_TOP_MASK 1309 or T0, T1 1310 mov [xSP + X86FSTENV32P.FSW], T0_16 1311 1312 fldenv [xSP] 1299 1313 %endmacro 1314 1300 1315 1301 1316 ;; … … 1365 1380 sub xSP, 20h 1366 1381 1367 FPU_INIT A0 1382 fninit 1383 fld tword [A2] 1384 FPU_LD_FXSTATE_FCW_AND_SAFE_FSW A0 1368 1385 fdiv qword [A3] 1369 1386
Note:
See TracChangeset
for help on using the changeset viewer.