- Timestamp:
- Feb 15, 2012 9:34:51 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 76292
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAll.cpp
r40093 r40141 3528 3528 } 3529 3529 3530 3531 static void iemFpuStoreResult(PIEMCPU pIemCpu, PIEMFPURESULT pResult, uint8_t iStReg) 3532 { 3533 } 3534 3535 static void iemFpuStoreResultWithMemOp(PIEMCPU pIemCpu, PIEMFPURESULT pResult, uint8_t iStReg, uint8_t iEffSeg, RTGCPTR GCPtrEff) 3536 { 3537 iemFpuUpdateDP(pIemCpu, pIemCpu->CTX_SUFF(pCtx), iEffSeg, GCPtrEff); 3538 //iemFpuStoreResult(pIemCpu, pResult); 3539 } 3540 3541 3530 3542 /** @} */ 3531 3543 … … 5314 5326 #define IEM_MC_REF_GREG_U64(a_pu64Dst, a_iGReg) (a_pu64Dst) = (uint64_t *)iemGRegRef(pIemCpu, (a_iGReg)) 5315 5327 #define IEM_MC_REF_EFLAGS(a_pEFlags) (a_pEFlags) = &(pIemCpu)->CTX_SUFF(pCtx)->eflags.u 5328 #define IEM_MC_REF_FPUREG_R80(a_pr80Dst, a_iSt) (a_pr80Dst) = &(pIemCpu)->CTX_SUFF(pCtx)->fpu.aRegs[a_iSt].r80 5316 5329 5317 5330 #define IEM_MC_ADD_GREG_U8(a_iGReg, a_u8Value) *(uint8_t *)iemGRegRef(pIemCpu, (a_iGReg)) += (a_u8Value) … … 5670 5683 a_pfnAImpl(&pIemCpu->CTX_SUFF(pCtx)->fpu, (a0), (a1)); \ 5671 5684 } while (0) 5685 5686 /** 5687 * Calls a FPU assembly implementation taking three visible arguments. 5688 * 5689 * This shall be used without any IEM_MC_BEGIN or IEM_END macro surrounding it. 5690 * 5691 * @param a_pfnAImpl Pointer to the assembly FPU routine. 5692 * @param a0 The first extra argument. 5693 * @param a1 The second extra argument. 5694 * @param a2 The third extra argument. 5695 */ 5696 #define IEM_MC_CALL_FPU_AIMPL_3(a_pfnAImpl, a0, a1, a2) \ 5697 do { \ 5698 iemFpuPrepareUsage(pIemCpu); \ 5699 a_pfnAImpl(&pIemCpu->CTX_SUFF(pCtx)->fpu, (a0), (a1), (a2)); \ 5700 } while (0) 5701 5672 5702 /** Pushes FPU result onto the stack. */ 5673 5703 #define IEM_MC_PUSH_FPU_RESULT(a_FpuData) \ … … 5676 5706 #define IEM_MC_PUSH_FPU_RESULT_MEM_OP(a_FpuData, a_iEffSeg, a_GCPtrEff) \ 5677 5707 iemFpuPushResultWithMemOp(pIemCpu, &a_FpuData, a_iEffSeg, a_GCPtrEff) 5708 5709 /** Stores FPU result in a stack register. */ 5710 #define IEM_MC_STORE_FPU_RESULT(a_FpuData, a_iStReg) \ 5711 iemFpuStoreResult(pIemCpu, &a_FpuData, a_iStReg) 5712 /** Stores FPU result in a stack register and sets the FPUDP. */ 5713 #define IEM_MC_STORE_FPU_RESULT_MEM_OP(a_FpuData, a_iStReg, a_iEffSeg, a_GCPtrEff) \ 5714 iemFpuStoreResultWithMemOp(pIemCpu, &a_FpuData, a_iStReg, a_iEffSeg, a_GCPtrEff) 5678 5715 5679 5716 -
trunk/src/VBox/VMM/VMMAll/IEMAllInstructions.cpp.h
r40093 r40141 10825 10825 10826 10826 /** Opcode 0xdc !11/6. */ 10827 #if 010828 10827 FNIEMOP_DEF_1(iemOp_fdiv_m64r, uint8_t, bRm) 10829 10828 { … … 10831 10830 IEMOP_HLP_NO_LOCK_PREFIX(); 10832 10831 10833 IEM_MC_BEGIN( 2, 3);10832 IEM_MC_BEGIN(3, 3); 10834 10833 IEM_MC_LOCAL(RTGCPTR, GCPtrEffSrc); 10835 10834 IEM_MC_LOCAL(IEMFPURESULT, FpuRes); 10836 IEM_MC_LOCAL(RTFLOAT64U, r64Val); 10837 IEM_MC_ARG_LOCAL_REF(PIEMFPURESULT, pFpuRes, FpuRes, 0); 10838 IEM_MC_ARG_LOCAL_REF(PRTFLOAT64U, pr64Val, r64Val, 1); 10835 IEM_MC_LOCAL(RTFLOAT64U, r64Divisor); 10836 IEM_MC_ARG_LOCAL_REF(PIEMFPURESULT, pFpuRes, FpuRes, 0); 10837 IEM_MC_ARG(PCRTFLOAT80U, pr80Dividend, 1); 10838 IEM_MC_ARG_LOCAL_REF(PRTFLOAT64U, pr64Divisor, r64Divisor, 2); 10839 10839 10840 10840 IEM_MC_CALC_RM_EFF_ADDR(GCPtrEffSrc, bRm); 10841 10841 IEM_MC_MAYBE_RAISE_DEVICE_NOT_AVAILABLE(); 10842 10842 IEM_MC_MAYBE_RAISE_FPU_XCPT(); 10843 IEM_MC_FETCH_MEM_R64(r64Val, pIemCpu->iEffSeg, GCPtrEffSrc); 10844 IEM_MC_CALL_FPU_AIMPL_2(iemAImpl_fpu_r64_to_r80, pFpuRes, pr64Val); 10845 10846 IEM_MC_PUSH_FPU_RESULT_MEM_OP(FpuRes, pIemCpu->iEffSeg, GCPtrEffSrc); 10843 IEM_MC_FETCH_MEM_R64(r64Divisor, pIemCpu->iEffSeg, GCPtrEffSrc); 10844 IEM_MC_REF_FPUREG_R80(pr80Dividend, 0); 10845 // IEM_MC_CALL_FPU_AIMPL_3(iemAImpl_fpu_fdiv_r80_by_r64, pFpuRes, pr80Dividend, pr64Divisor); 10846 10847 IEM_MC_STORE_FPU_RESULT_MEM_OP(FpuRes, 0, pIemCpu->iEffSeg, GCPtrEffSrc); 10847 10848 IEM_MC_ADVANCE_RIP(); 10848 10849 … … 10850 10851 return VINF_SUCCESS; 10851 10852 } 10852 #else10853 FNIEMOP_STUB_1(iemOp_fdiv_m64r, uint8_t, bRm);10854 #endif10855 10853 10856 10854 /** Opcode 0xdc !11/7. */ -
trunk/src/VBox/VMM/testcase/tstIEMCheckMc.cpp
r40093 r40141 282 282 #define IEM_MC_REF_GREG_U64(a_pu64Dst, a_iGReg) do { (a_pu64Dst) = (uint64_t *)((uintptr_t)0); CHK_PTYPE(uint64_t *, a_pu64Dst); } while (0) 283 283 #define IEM_MC_REF_EFLAGS(a_pEFlags) do { (a_pEFlags) = (uint32_t *)((uintptr_t)0); CHK_PTYPE(uint32_t *, a_pEFlags); } while (0) 284 #define IEM_MC_REF_FPUREG_R80(a_pr80Dst, a_iSt) do { (a_pr80Dst) = (PCRTFLOAT80U)((uintptr_t)0); CHK_PTYPE(PCRTFLOAT80U, a_pr80Dst); } while (0) 284 285 285 286 #define IEM_MC_ADD_GREG_U8(a_iGReg, a_u8Value) do { CHK_CONST(uint8_t, a_u8Value); } while (0) … … 403 404 #define IEM_MC_PUSH_FPU_RESULT(a_FpuData) do { } while (0) 404 405 #define IEM_MC_PUSH_FPU_RESULT_MEM_OP(a_FpuData, a_iEffSeg, a_GCPtrEff) do { } while (0) 406 #define IEM_MC_STORE_FPU_RESULT(a_FpuData, a_iStReg) do { } while (0) 407 #define IEM_MC_STORE_FPU_RESULT_MEM_OP(a_FpuData, a_iStReg, a_iEffSeg, a_GCPtrEff) do { } while (0) 405 408 406 409 #define IEM_MC_IF_EFL_BIT_SET(a_fBit) if (g_fRandom) {
Note:
See TracChangeset
for help on using the changeset viewer.