VirtualBox

Changeset 40141 in vbox for trunk/src


Ignore:
Timestamp:
Feb 15, 2012 9:34:51 PM (13 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
76292
Message:

fdiv implementation in progress (-> laptop).

Location:
trunk/src/VBox/VMM
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMAll/IEMAll.cpp

    r40093 r40141  
    35283528}
    35293529
     3530
     3531static void iemFpuStoreResult(PIEMCPU pIemCpu, PIEMFPURESULT pResult, uint8_t iStReg)
     3532{
     3533}
     3534
     3535static 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
    35303542/** @}  */
    35313543
     
    53145326#define IEM_MC_REF_GREG_U64(a_pu64Dst, a_iGReg)         (a_pu64Dst) = (uint64_t *)iemGRegRef(pIemCpu, (a_iGReg))
    53155327#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
    53165329
    53175330#define IEM_MC_ADD_GREG_U8(a_iGReg, a_u8Value)          *(uint8_t  *)iemGRegRef(pIemCpu, (a_iGReg)) += (a_u8Value)
     
    56705683        a_pfnAImpl(&pIemCpu->CTX_SUFF(pCtx)->fpu, (a0), (a1)); \
    56715684    } 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
    56725702/** Pushes FPU result onto the stack. */
    56735703#define IEM_MC_PUSH_FPU_RESULT(a_FpuData) \
     
    56765706#define IEM_MC_PUSH_FPU_RESULT_MEM_OP(a_FpuData, a_iEffSeg, a_GCPtrEff) \
    56775707    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)
    56785715
    56795716
  • trunk/src/VBox/VMM/VMMAll/IEMAllInstructions.cpp.h

    r40093 r40141  
    1082510825
    1082610826/** Opcode 0xdc !11/6. */
    10827 #if 0
    1082810827FNIEMOP_DEF_1(iemOp_fdiv_m64r,  uint8_t, bRm)
    1082910828{
     
    1083110830    IEMOP_HLP_NO_LOCK_PREFIX();
    1083210831
    10833     IEM_MC_BEGIN(2, 3);
     10832    IEM_MC_BEGIN(3, 3);
    1083410833    IEM_MC_LOCAL(RTGCPTR,               GCPtrEffSrc);
    1083510834    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);
    1083910839
    1084010840    IEM_MC_CALC_RM_EFF_ADDR(GCPtrEffSrc, bRm);
    1084110841    IEM_MC_MAYBE_RAISE_DEVICE_NOT_AVAILABLE();
    1084210842    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);
    1084710848    IEM_MC_ADVANCE_RIP();
    1084810849
     
    1085010851    return VINF_SUCCESS;
    1085110852}
    10852 #else
    10853 FNIEMOP_STUB_1(iemOp_fdiv_m64r,  uint8_t, bRm);
    10854 #endif
    1085510853
    1085610854/** Opcode 0xdc !11/7. */
  • trunk/src/VBox/VMM/testcase/tstIEMCheckMc.cpp

    r40093 r40141  
    282282#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)
    283283#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)
    284285
    285286#define IEM_MC_ADD_GREG_U8(a_iGReg, a_u8Value)          do { CHK_CONST(uint8_t,  a_u8Value);  } while (0)
     
    403404#define IEM_MC_PUSH_FPU_RESULT(a_FpuData)                               do { } while (0)
    404405#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)
    405408
    406409#define IEM_MC_IF_EFL_BIT_SET(a_fBit)                                   if (g_fRandom) {
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