- Timestamp:
- Aug 9, 2012 7:02:36 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAllCImpl.cpp.h
r42704 r42724 4015 4015 IEMMISC_SET_EFL(pIemCpu, pCtx, fEfl); 4016 4016 iemRegAddToRip(pIemCpu, cbInstr); 4017 if ( !(fEflOld & X86_EFL_IF) && (fEfl & X86_EFL_IF))4017 if ((!(fEflOld & X86_EFL_IF) && (fEfl & X86_EFL_IF)) || IEM_VERIFICATION_ENABLED(pIemCpu)) 4018 4018 EMSetInhibitInterruptsPC(IEMCPU_TO_VMCPU(pIemCpu), pCtx->rip); 4019 4019 Log2(("STI: %#x -> %#x\n", fEflOld, fEfl)); … … 4458 4458 4459 4459 /** 4460 * Commmon routine for f nstenv and fnsave.4460 * Commmon routine for fldenv and frstor 4461 4461 * 4462 4462 * @param uPtr Where to store the state. … … 4588 4588 pCtx->fpu.FCW = 0x37f; 4589 4589 pCtx->fpu.FSW = 0; 4590 pCtx->fpu.FTW = 0x ffff; /* 11- empty */4590 pCtx->fpu.FTW = 0x00; /* 0 - empty */ 4591 4591 pCtx->fpu.FPUDP = 0; 4592 4592 pCtx->fpu.DS = 0; … … 4597 4597 pCtx->fpu.FOP = 0; 4598 4598 4599 4600 4599 iemHlpUsedFpu(pIemCpu); 4601 4600 iemRegAddToRip(pIemCpu, cbInstr);
Note:
See TracChangeset
for help on using the changeset viewer.