Home
last modified time | relevance | path

Searched refs:float32_div (Results 1 – 25 of 30) sorted by relevance

12

/openbmc/qemu/linux-user/arm/nwfpe/
H A Dsingle_cpdo.c97 fpa11->fpreg[Fd].fSingle = float32_div(rFn,rFm, &fpa11->fp_status); in SingleCPDO()
102 fpa11->fpreg[Fd].fSingle = float32_div(rFm,rFn, &fpa11->fp_status); in SingleCPDO()
236 return float32_div(float32_ln(rFm),getSingleConstant(7));
241 return float32_div(float32_sin(rFm),float32_cos(rFm));
251 return float32_arctan(float32_div(rFn,rFm));
/openbmc/linux/arch/arm/nwfpe/
H A Dsingle_cpdo.c34 return float32_div(roundData, rFm, rFn); in float32_rdv()
42 [DVF_CODE >> 20] = float32_div,
47 [FDV_CODE >> 20] = float32_div,
H A DARM-gcc.h83 #define float32_div __divsf3 macro
H A Dsoftfloat.h154 float32 float32_div( struct roundingData *, float32, float32 );
/openbmc/qemu/target/mips/tcg/
H A Dfpu_helper.c1029 fst2 = float32_div(float32_one, fst0, &env->active_fpu.fp_status); in helper_float_recip_s()
1049 fst2 = float32_div(float32_one, fst2, &env->active_fpu.fp_status); in helper_float_rsqrt_s()
1067 fst2 = float32_div(float32_one, fst0, &env->active_fpu.fp_status); in helper_float_recip1_s()
1077 fstl2 = float32_div(float32_one, fdt0 & 0XFFFFFFFF, in helper_float_recip1_ps()
1079 fsth2 = float32_div(float32_one, fdt0 >> 32, &env->active_fpu.fp_status); in helper_float_recip1_ps()
1099 fst2 = float32_div(float32_one, fst2, &env->active_fpu.fp_status); in helper_float_rsqrt1_s()
1111 fstl2 = float32_div(float32_one, fstl2, &env->active_fpu.fp_status); in helper_float_rsqrt1_ps()
1112 fsth2 = float32_div(float32_one, fsth2, &env->active_fpu.fp_status); in helper_float_rsqrt1_ps()
1339 wt2 = float32_div(fst0, fst1, &env->active_fpu.fp_status); in helper_float_div_s()
1354 wtl2 = float32_div(fstl0, fstl1, &env->active_fpu.fp_status); in helper_float_div_ps()
[all …]
/openbmc/linux/arch/sh/kernel/cpu/sh4/
H A Dfpu.c25 extern unsigned long int float32_div(unsigned long int a, unsigned long int b);
354 hx = float32_div(hx, hy); in ieee_fpe_handler()
H A Dsoftfloat.c86 float32 float32_div(float32 a, float32 b);
774 float32 float32_div(float32 a, float32 b) in float32_div() function
/openbmc/qemu/target/sh4/
H A Dop_helper.c332 t0 = float32_div(t0, t1, &env->fp_status); in helper_fdiv_FT()
408 t0 = float32_div(float32_one, t0, &env->fp_status); in helper_fsrra_FT()
/openbmc/qemu/target/loongarch/tcg/
H A Dfpu_helper.c144 fd = nanbox_s(float32_div((uint32_t)fj, (uint32_t)fk, &env->fp_status)); in helper_fdiv_s()
280 fd = nanbox_s(float32_div(float32_one, (uint32_t)fj, &env->fp_status)); in helper_frecip_s()
300 fd = nanbox_s(float32_div(float32_one, fp, &env->fp_status)); in helper_frsqrt_s()
/openbmc/qemu/target/alpha/
H A Dvax_helper.c146 fr = float32_div(fa, fb, &FP_STATUS); in helper_divf()
H A Dfpu_helper.c258 fr = float32_div(fa, fb, &FP_STATUS); in helper_divs()
/openbmc/qemu/target/rx/
H A Dop_helper.c153 FLOATOP(fdiv, float32_div) in FLOATOP()
/openbmc/qemu/target/microblaze/
H A Dop_helper.c196 fd.f = float32_div(fb.f, fa.f, &env->fp_status); in helper_fdiv()
/openbmc/qemu/target/tricore/
H A Dfpu_helper.c261 f_result = float32_div(arg1, arg2 , &env->fp_status); in helper_fdiv()
/openbmc/qemu/target/xtensa/
H A Dfpu_helper.c250 return float32_div(b, a, &env->fp_status); in HELPER()
/openbmc/qemu/target/hppa/
H A Dfpu_helper.c133 float32 ret = float32_div(a, b, &env->fp_status); in HELPER()
/openbmc/qemu/target/i386/
H A Dops_sse.h848 d->ZMM_S(i) = float32_div(float32_one, in glue()
860 d->ZMM_S(0) = float32_div(float32_one, in helper_rsqrtss()
875 d->ZMM_S(i) = float32_div(float32_one, s->ZMM_S(i), &env->sse_status); in glue()
885 d->ZMM_S(0) = float32_div(float32_one, s->ZMM_S(0), &env->sse_status); in helper_rcpss()
1413 d->MMX_S(0) = float32_div(float32_one, s->MMX_S(0), &env->mmx_status); in helper_pfrcp()
1420 d->MMX_S(1) = float32_div(float32_one, in helper_pfrsqrt()
/openbmc/qemu/tests/fp/
H A Dfp-bench.c332 res.f32 = float32_div(a, b, &soft_status); in bench()
/openbmc/qemu/target/sparc/
H A Dfop_helper.c111 float32 ret = float32_div(src1, src2, &env->fp_status); in helper_fdivs()
/openbmc/qemu/target/riscv/
H A Dfpu_helper.c243 return nanbox_s(env, float32_div(frs1, frs2, &env->fp_status)); in helper_fdiv_s()
/openbmc/qemu/target/s390x/tcg/
H A Dfpu_helper.c269 float32 ret = float32_div(f1, f2, &env->fpu_status); in HELPER()
/openbmc/qemu/target/ppc/
H A Dfpu_helper.c1018 u.f = float32_div(u.f, tmp, &env->vec_status); in efscfsf()
1030 u.f = float32_div(u.f, tmp, &env->vec_status); in efscfuf()
1157 u1.f = float32_div(u1.f, u2.f, &env->vec_status); in efsdiv()
H A Dint_helper.c1531 r->f32[i] = float32_div(float32_one, b->f32[i], &env->vec_status); in helper_vrefp()
1560 r->f32[i] = float32_div(float32_one, t, &env->vec_status); in VRFI()
/openbmc/qemu/include/fpu/
H A Dsoftfloat.h597 float32 float32_div(float32, float32, float_status *status);
/openbmc/qemu/target/arm/tcg/
H A Dvec_helper.c1365 return float32_div(op1, float32_two, stat); in float32_rsqrts_nf()
1443 DO_3OP(gvec_fdiv_s, float32_div, float32) in DO_3OP()

12