Home
last modified time | relevance | path

Searched refs:float64_div (Results 1 – 19 of 19) sorted by relevance

/openbmc/qemu/linux-user/arm/nwfpe/
H A Ddouble_cpdo.c117 fpa11->fpreg[Fd].fDouble = float64_div(rFn,rFm, &fpa11->fp_status); in DoubleCPDO()
122 fpa11->fpreg[Fd].fDouble = float64_div(rFm,rFn, &fpa11->fp_status); in DoubleCPDO()
273 return float64_div(float64_ln(rFm),getDoubleConstant(7));
278 return float64_div(float64_sin(rFm),float64_cos(rFm));
294 return float64_arctan(float64_div(rFn,rFm));
/openbmc/qemu/target/loongarch/tcg/
H A Dfpu_helper.c160 fd = float64_div(fj, fk, &env->fp_status); in helper_fdiv_d()
296 fd = float64_div(float64_one, fj, &env->fp_status); in helper_frecip_d()
317 fd = float64_div(float64_one, fp, &env->fp_status); in helper_frsqrt_d()
H A Dvec_helper.c2428 DO_3OP_F(vfdiv_d, 64, UD, float64_div)
/openbmc/qemu/target/alpha/
H A Dvax_helper.c272 fr = float64_div(fa, fb, &FP_STATUS); in helper_divg()
H A Dfpu_helper.c334 fr = float64_div(fa, fb, &FP_STATUS); in helper_divt()
/openbmc/qemu/target/mips/tcg/
H A Dfpu_helper.c1019 fdt2 = float64_div(float64_one, fdt0, &env->active_fpu.fp_status); in helper_float_recip_d()
1038 fdt2 = float64_div(float64_one, fdt2, &env->active_fpu.fp_status); in helper_float_rsqrt_d()
1057 fdt2 = float64_div(float64_one, fdt0, &env->active_fpu.fp_status); in helper_float_recip1_d()
1088 fdt2 = float64_div(float64_one, fdt2, &env->active_fpu.fp_status); in helper_float_rsqrt1_d()
1328 dt2 = float64_div(fdt0, fdt1, &env->active_fpu.fp_status); in helper_float_div_d()
1400 fdt2 = float64_chs(float64_div(fdt2, FLOAT_TWO64, in helper_float_rsqrt2_d()
/openbmc/qemu/target/sh4/
H A Dop_helper.c339 t0 = float64_div(t0, t1, &env->fp_status); in helper_fdiv_DT()
/openbmc/qemu/target/xtensa/
H A Dfpu_helper.c244 return float64_div(b, a, &env->fp_status); in HELPER()
/openbmc/qemu/tests/fp/
H A Dfp-bench.c367 res.f64 = float64_div(a, b, &soft_status); in bench()
/openbmc/qemu/target/hppa/
H A Dfpu_helper.c217 float64 ret = float64_div(a, b, &env->fp_status); in HELPER()
/openbmc/qemu/target/ppc/
H A Dfpu_helper.c779 FPU_FRE(FRE, float64_div)
781 FPU_FRSQRTE(FRSQRTE, float64_div)
789 FPU_HELPER(FDIV, float64_div, div_flags_handler)
1398 u.d = float64_div(u.d, tmp, &env->vec_status); in helper_efdcfsf()
1410 u.d = float64_div(u.d, tmp, &env->vec_status); in helper_efdcfuf()
1506 u1.d = float64_div(u1.d, u2.d, &env->vec_status); in helper_efddiv()
/openbmc/qemu/target/sparc/
H A Dfop_helper.c138 float64 ret = float64_div(src1, src2, &env->fp_status); in helper_fdivd()
/openbmc/qemu/target/riscv/
H A Dfpu_helper.c411 return float64_div(frs1, frs2, &env->fp_status); in helper_fdiv_d()
H A Dvector_helper.c3336 RVVCALL(OPFVV2, vfdiv_vv_d, OP_UUU_D, H8, H8, H8, float64_div) in RVVCALL()
3342 RVVCALL(OPFVF2, vfdiv_vf_d, OP_UUU_D, H8, H8, float64_div) in RVVCALL()
3359 return float64_div(b, a, s); in float64_rdiv()
/openbmc/qemu/target/s390x/tcg/
H A Dfpu_helper.c276 float64 ret = float64_div(f1, f2, &env->fpu_status); in HELPER()
/openbmc/qemu/include/fpu/
H A Dsoftfloat.h798 float64 float64_div(float64, float64, float_status *status);
/openbmc/qemu/target/arm/tcg/
H A Dvec_helper.c1544 DO_3OP(gvec_fdiv_d, float64_div, float64) in DO_3OP()
H A Dsve_helper.c4654 DO_ZPZZ_FP(sve_fdiv_d, uint64_t, H1_8, float64_div) in DO_ZPZZ_FP()
/openbmc/qemu/fpu/
H A Dsoftfloat.c2585 float64_div(float64 a, float64 b, float_status *s) in float64_div() function