• Home
  • Raw
  • Download

Lines Matching refs:fst2

2207     uint32_t fst2;  in helper_float_cvtps_pw()  local
2211 fst2 = int32_to_float32(dt0 & 0XFFFFFFFF, &env->active_fpu.fp_status); in helper_float_cvtps_pw()
2214 return ((uint64_t)fsth2 << 32) | fst2; in helper_float_cvtps_pw()
2235 uint32_t fst2; in helper_float_cvts_d() local
2238 fst2 = float64_to_float32(fdt0, &env->active_fpu.fp_status); in helper_float_cvts_d()
2240 return fst2; in helper_float_cvts_d()
2245 uint32_t fst2; in helper_float_cvts_w() local
2248 fst2 = int32_to_float32(wt0, &env->active_fpu.fp_status); in helper_float_cvts_w()
2250 return fst2; in helper_float_cvts_w()
2255 uint32_t fst2; in helper_float_cvts_l() local
2258 fst2 = int64_to_float32(dt0, &env->active_fpu.fp_status); in helper_float_cvts_l()
2260 return fst2; in helper_float_cvts_l()
2559 uint32_t fst2; in helper_float_recip_s() local
2562 fst2 = float32_div(FLOAT_ONE32, fst0, &env->active_fpu.fp_status); in helper_float_recip_s()
2564 return fst2; in helper_float_recip_s()
2580 uint32_t fst2; in helper_float_rsqrt_s() local
2583 fst2 = float32_sqrt(fst0, &env->active_fpu.fp_status); in helper_float_rsqrt_s()
2584 fst2 = float32_div(FLOAT_ONE32, fst2, &env->active_fpu.fp_status); in helper_float_rsqrt_s()
2586 return fst2; in helper_float_rsqrt_s()
2601 uint32_t fst2; in helper_float_recip1_s() local
2604 fst2 = float32_div(FLOAT_ONE32, fst0, &env->active_fpu.fp_status); in helper_float_recip1_s()
2606 return fst2; in helper_float_recip1_s()
2611 uint32_t fst2; in helper_float_recip1_ps() local
2615 fst2 = float32_div(FLOAT_ONE32, fdt0 & 0XFFFFFFFF, &env->active_fpu.fp_status); in helper_float_recip1_ps()
2618 return ((uint64_t)fsth2 << 32) | fst2; in helper_float_recip1_ps()
2634 uint32_t fst2; in helper_float_rsqrt1_s() local
2637 fst2 = float32_sqrt(fst0, &env->active_fpu.fp_status); in helper_float_rsqrt1_s()
2638 fst2 = float32_div(FLOAT_ONE32, fst2, &env->active_fpu.fp_status); in helper_float_rsqrt1_s()
2640 return fst2; in helper_float_rsqrt1_s()
2645 uint32_t fst2; in helper_float_rsqrt1_ps() local
2649 fst2 = float32_sqrt(fdt0 & 0XFFFFFFFF, &env->active_fpu.fp_status); in helper_float_rsqrt1_ps()
2651 fst2 = float32_div(FLOAT_ONE32, fst2, &env->active_fpu.fp_status); in helper_float_rsqrt1_ps()
2654 return ((uint64_t)fsth2 << 32) | fst2; in helper_float_rsqrt1_ps()
2721 uint32_t fst2) \
2724 return float32_ ## name2 (fst0, fst2, &env->active_fpu.fp_status); \
2734 uint32_t fst2 = fdt2 & 0XFFFFFFFF; \
2739 fst2 = float32_ ## name2 (fst0, fst2, &env->active_fpu.fp_status); \
2741 return ((uint64_t)fsth2 << 32) | fst2; \
2759 uint32_t fst2) \
2762 fst2 = float32_ ## name2 (fst0, fst2, &env->active_fpu.fp_status); \
2763 return float32_chs(fst2); \
2773 uint32_t fst2 = fdt2 & 0XFFFFFFFF; \
2778 fst2 = float32_ ## name2 (fst0, fst2, &env->active_fpu.fp_status); \
2780 fst2 = float32_chs(fst2); \
2782 return ((uint64_t)fsth2 << 32) | fst2; \
2799 uint32_t helper_float_recip2_s(uint32_t fst0, uint32_t fst2) in helper_float_recip2_s() argument
2802 fst2 = float32_mul(fst0, fst2, &env->active_fpu.fp_status); in helper_float_recip2_s()
2803 fst2 = float32_chs(float32_sub(fst2, FLOAT_ONE32, &env->active_fpu.fp_status)); in helper_float_recip2_s()
2805 return fst2; in helper_float_recip2_s()
2812 uint32_t fst2 = fdt2 & 0XFFFFFFFF; in helper_float_recip2_ps() local
2816 fst2 = float32_mul(fst0, fst2, &env->active_fpu.fp_status); in helper_float_recip2_ps()
2818 fst2 = float32_chs(float32_sub(fst2, FLOAT_ONE32, &env->active_fpu.fp_status)); in helper_float_recip2_ps()
2821 return ((uint64_t)fsth2 << 32) | fst2; in helper_float_recip2_ps()
2834 uint32_t helper_float_rsqrt2_s(uint32_t fst0, uint32_t fst2) in helper_float_rsqrt2_s() argument
2837 fst2 = float32_mul(fst0, fst2, &env->active_fpu.fp_status); in helper_float_rsqrt2_s()
2838 fst2 = float32_sub(fst2, FLOAT_ONE32, &env->active_fpu.fp_status); in helper_float_rsqrt2_s()
2839 fst2 = float32_chs(float32_div(fst2, FLOAT_TWO32, &env->active_fpu.fp_status)); in helper_float_rsqrt2_s()
2841 return fst2; in helper_float_rsqrt2_s()
2848 uint32_t fst2 = fdt2 & 0XFFFFFFFF; in helper_float_rsqrt2_ps() local
2852 fst2 = float32_mul(fst0, fst2, &env->active_fpu.fp_status); in helper_float_rsqrt2_ps()
2854 fst2 = float32_sub(fst2, FLOAT_ONE32, &env->active_fpu.fp_status); in helper_float_rsqrt2_ps()
2856 fst2 = float32_chs(float32_div(fst2, FLOAT_TWO32, &env->active_fpu.fp_status)); in helper_float_rsqrt2_ps()
2859 return ((uint64_t)fsth2 << 32) | fst2; in helper_float_rsqrt2_ps()
2868 uint32_t fst2; in helper_float_addr_ps() local
2872 fst2 = float32_add (fst0, fsth0, &env->active_fpu.fp_status); in helper_float_addr_ps()
2875 return ((uint64_t)fsth2 << 32) | fst2; in helper_float_addr_ps()
2884 uint32_t fst2; in helper_float_mulr_ps() local
2888 fst2 = float32_mul (fst0, fsth0, &env->active_fpu.fp_status); in helper_float_mulr_ps()
2891 return ((uint64_t)fsth2 << 32) | fst2; in helper_float_mulr_ps()