Lines Matching refs:fdt2

250     uint64_t fdt2;  in helper_float_cvtd_s()  local
252 fdt2 = float32_to_float64(fst0, &env->active_fpu.fp_status); in helper_float_cvtd_s()
254 return fdt2; in helper_float_cvtd_s()
259 uint64_t fdt2; in helper_float_cvtd_w() local
261 fdt2 = int32_to_float64(wt0, &env->active_fpu.fp_status); in helper_float_cvtd_w()
263 return fdt2; in helper_float_cvtd_w()
268 uint64_t fdt2; in helper_float_cvtd_l() local
270 fdt2 = int64_to_float64(dt0, &env->active_fpu.fp_status); in helper_float_cvtd_l()
272 return fdt2; in helper_float_cvtd_l()
1018 uint64_t fdt2; in helper_float_recip_d() local
1020 fdt2 = float64_div(float64_one, fdt0, &env->active_fpu.fp_status); in helper_float_recip_d()
1022 return fdt2; in helper_float_recip_d()
1036 uint64_t fdt2; in helper_float_rsqrt_d() local
1038 fdt2 = float64_sqrt(fdt0, &env->active_fpu.fp_status); in helper_float_rsqrt_d()
1039 fdt2 = float64_div(float64_one, fdt2, &env->active_fpu.fp_status); in helper_float_rsqrt_d()
1041 return fdt2; in helper_float_rsqrt_d()
1056 uint64_t fdt2; in helper_float_recip1_d() local
1058 fdt2 = float64_div(float64_one, fdt0, &env->active_fpu.fp_status); in helper_float_recip1_d()
1060 return fdt2; in helper_float_recip1_d()
1086 uint64_t fdt2; in helper_float_rsqrt1_d() local
1088 fdt2 = float64_sqrt(fdt0, &env->active_fpu.fp_status); in helper_float_rsqrt1_d()
1089 fdt2 = float64_div(float64_one, fdt2, &env->active_fpu.fp_status); in helper_float_rsqrt1_d()
1091 return fdt2; in helper_float_rsqrt1_d()
1362 uint64_t helper_float_recip2_d(CPUMIPSState *env, uint64_t fdt0, uint64_t fdt2) in helper_float_recip2_d() argument
1364 fdt2 = float64_mul(fdt0, fdt2, &env->active_fpu.fp_status); in helper_float_recip2_d()
1365 fdt2 = float64_chs(float64_sub(fdt2, float64_one, in helper_float_recip2_d()
1368 return fdt2; in helper_float_recip2_d()
1380 uint64_t helper_float_recip2_ps(CPUMIPSState *env, uint64_t fdt0, uint64_t fdt2) in helper_float_recip2_ps() argument
1384 uint32_t fstl2 = fdt2 & 0XFFFFFFFF; in helper_float_recip2_ps()
1385 uint32_t fsth2 = fdt2 >> 32; in helper_float_recip2_ps()
1397 uint64_t helper_float_rsqrt2_d(CPUMIPSState *env, uint64_t fdt0, uint64_t fdt2) in helper_float_rsqrt2_d() argument
1399 fdt2 = float64_mul(fdt0, fdt2, &env->active_fpu.fp_status); in helper_float_rsqrt2_d()
1400 fdt2 = float64_sub(fdt2, float64_one, &env->active_fpu.fp_status); in helper_float_rsqrt2_d()
1401 fdt2 = float64_chs(float64_div(fdt2, FLOAT_TWO64, in helper_float_rsqrt2_d()
1404 return fdt2; in helper_float_rsqrt2_d()
1417 uint64_t helper_float_rsqrt2_ps(CPUMIPSState *env, uint64_t fdt0, uint64_t fdt2) in helper_float_rsqrt2_ps() argument
1421 uint32_t fstl2 = fdt2 & 0XFFFFFFFF; in helper_float_rsqrt2_ps()
1422 uint32_t fsth2 = fdt2 >> 32; in helper_float_rsqrt2_ps()
1571 uint64_t fdt1, uint64_t fdt2) in helper_float_madd_ps() argument
1577 uint32_t fstl2 = fdt2 & 0XFFFFFFFF; in helper_float_madd_ps()
1578 uint32_t fsth2 = fdt2 >> 32; in helper_float_madd_ps()
1610 uint64_t fdt1, uint64_t fdt2) in helper_float_msub_ps() argument
1616 uint32_t fstl2 = fdt2 & 0XFFFFFFFF; in helper_float_msub_ps()
1617 uint32_t fsth2 = fdt2 >> 32; in helper_float_msub_ps()
1651 uint64_t fdt1, uint64_t fdt2) in helper_float_nmadd_ps() argument
1657 uint32_t fstl2 = fdt2 & 0XFFFFFFFF; in helper_float_nmadd_ps()
1658 uint32_t fsth2 = fdt2 >> 32; in helper_float_nmadd_ps()
1694 uint64_t fdt1, uint64_t fdt2) in helper_float_nmsub_ps() argument
1700 uint32_t fstl2 = fdt2 & 0XFFFFFFFF; in helper_float_nmsub_ps()
1701 uint32_t fsth2 = fdt2 >> 32; in helper_float_nmsub_ps()