• Home
  • Raw
  • Download

Lines Matching refs:fst0

2146 uint32_t helper_float_sqrt_s(uint32_t fst0)  in helper_float_sqrt_s()  argument
2148 return float32_sqrt(fst0, &env->active_fpu.fp_status); in helper_float_sqrt_s()
2151 uint64_t helper_float_cvtd_s(uint32_t fst0) in helper_float_cvtd_s() argument
2156 fdt2 = float32_to_float64(fst0, &env->active_fpu.fp_status); in helper_float_cvtd_s()
2193 uint64_t helper_float_cvtl_s(uint32_t fst0) in helper_float_cvtl_s() argument
2198 dt2 = float32_to_int64(fst0, &env->active_fpu.fp_status); in helper_float_cvtl_s()
2283 uint32_t helper_float_cvtw_s(uint32_t fst0) in helper_float_cvtw_s() argument
2288 wt2 = float32_to_int32(fst0, &env->active_fpu.fp_status); in helper_float_cvtw_s()
2321 uint64_t helper_float_roundl_s(uint32_t fst0) in helper_float_roundl_s() argument
2327 dt2 = float32_to_int64(fst0, &env->active_fpu.fp_status); in helper_float_roundl_s()
2349 uint32_t helper_float_roundw_s(uint32_t fst0) in helper_float_roundw_s() argument
2355 wt2 = float32_to_int32(fst0, &env->active_fpu.fp_status); in helper_float_roundw_s()
2375 uint64_t helper_float_truncl_s(uint32_t fst0) in helper_float_truncl_s() argument
2380 dt2 = float32_to_int64_round_to_zero(fst0, &env->active_fpu.fp_status); in helper_float_truncl_s()
2399 uint32_t helper_float_truncw_s(uint32_t fst0) in helper_float_truncw_s() argument
2404 wt2 = float32_to_int32_round_to_zero(fst0, &env->active_fpu.fp_status); in helper_float_truncw_s()
2425 uint64_t helper_float_ceill_s(uint32_t fst0) in helper_float_ceill_s() argument
2431 dt2 = float32_to_int64(fst0, &env->active_fpu.fp_status); in helper_float_ceill_s()
2453 uint32_t helper_float_ceilw_s(uint32_t fst0) in helper_float_ceilw_s() argument
2459 wt2 = float32_to_int32(fst0, &env->active_fpu.fp_status); in helper_float_ceilw_s()
2481 uint64_t helper_float_floorl_s(uint32_t fst0) in helper_float_floorl_s() argument
2487 dt2 = float32_to_int64(fst0, &env->active_fpu.fp_status); in helper_float_floorl_s()
2509 uint32_t helper_float_floorw_s(uint32_t fst0) in helper_float_floorw_s() argument
2515 wt2 = float32_to_int32(fst0, &env->active_fpu.fp_status); in helper_float_floorw_s()
2529 uint32_t helper_float_ ## name ## _s(uint32_t fst0) \
2531 return float32_ ## name(fst0); \
2557 uint32_t helper_float_recip_s(uint32_t fst0) in helper_float_recip_s() argument
2562 fst2 = float32_div(FLOAT_ONE32, fst0, &env->active_fpu.fp_status); in helper_float_recip_s()
2578 uint32_t helper_float_rsqrt_s(uint32_t fst0) in helper_float_rsqrt_s() argument
2583 fst2 = float32_sqrt(fst0, &env->active_fpu.fp_status); in helper_float_rsqrt_s()
2599 uint32_t helper_float_recip1_s(uint32_t fst0) in helper_float_recip1_s() argument
2604 fst2 = float32_div(FLOAT_ONE32, fst0, &env->active_fpu.fp_status); in helper_float_recip1_s()
2632 uint32_t helper_float_rsqrt1_s(uint32_t fst0) in helper_float_rsqrt1_s() argument
2637 fst2 = float32_sqrt(fst0, &env->active_fpu.fp_status); in helper_float_rsqrt1_s()
2673 uint32_t helper_float_ ## name ## _s(uint32_t fst0, uint32_t fst1) \
2678 wt2 = float32_ ## name (fst0, fst1, &env->active_fpu.fp_status); \
2687 uint32_t fst0 = fdt0 & 0XFFFFFFFF; \
2695 wt2 = float32_ ## name (fst0, fst1, &env->active_fpu.fp_status); \
2720 uint32_t helper_float_ ## name1 ## name2 ## _s(uint32_t fst0, uint32_t fst1, \
2723 fst0 = float32_ ## name1 (fst0, fst1, &env->active_fpu.fp_status); \
2724 return float32_ ## name2 (fst0, fst2, &env->active_fpu.fp_status); \
2730 uint32_t fst0 = fdt0 & 0XFFFFFFFF; \
2737 fst0 = float32_ ## name1 (fst0, fst1, &env->active_fpu.fp_status); \
2739 fst2 = float32_ ## name2 (fst0, fst2, &env->active_fpu.fp_status); \
2758 uint32_t helper_float_n ## name1 ## name2 ## _s(uint32_t fst0, uint32_t fst1, \
2761 fst0 = float32_ ## name1 (fst0, fst1, &env->active_fpu.fp_status); \
2762 fst2 = float32_ ## name2 (fst0, fst2, &env->active_fpu.fp_status); \
2769 uint32_t fst0 = fdt0 & 0XFFFFFFFF; \
2776 fst0 = float32_ ## name1 (fst0, fst1, &env->active_fpu.fp_status); \
2778 fst2 = float32_ ## name2 (fst0, fst2, &env->active_fpu.fp_status); \
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()
2810 uint32_t fst0 = fdt0 & 0XFFFFFFFF; in helper_float_recip2_ps() local
2816 fst2 = float32_mul(fst0, fst2, &env->active_fpu.fp_status); 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()
2846 uint32_t fst0 = fdt0 & 0XFFFFFFFF; in helper_float_rsqrt2_ps() local
2852 fst2 = float32_mul(fst0, fst2, &env->active_fpu.fp_status); in helper_float_rsqrt2_ps()
2864 uint32_t fst0 = fdt0 & 0XFFFFFFFF; in helper_float_addr_ps() local
2872 fst2 = float32_add (fst0, fsth0, &env->active_fpu.fp_status); in helper_float_addr_ps()
2880 uint32_t fst0 = fdt0 & 0XFFFFFFFF; in helper_float_mulr_ps() local
2888 fst2 = float32_mul (fst0, fsth0, &env->active_fpu.fp_status); in helper_float_mulr_ps()
2954 void helper_cmp_s_ ## op (uint32_t fst0, uint32_t fst1, int cc) \
2963 void helper_cmpabs_s_ ## op (uint32_t fst0, uint32_t fst1, int cc) \
2966 fst0 = float32_abs(fst0); \
2992 FOP_COND_S(f, (float32_is_unordered(0, fst1, fst0, &env->active_fpu.fp_status), 0))
2993 FOP_COND_S(un, float32_is_unordered(0, fst1, fst0, &env->active_fpu.fp_status))
2994 FOP_COND_S(eq, !float32_is_unordered(0, fst1, fst0, &env->active_fpu.fp_status) && float32_eq(fst0
2995 FOP_COND_S(ueq, float32_is_unordered(0, fst1, fst0, &env->active_fpu.fp_status) || float32_eq(fst0
2996 FOP_COND_S(olt, !float32_is_unordered(0, fst1, fst0, &env->active_fpu.fp_status) && float32_lt(fst0
2997 FOP_COND_S(ult, float32_is_unordered(0, fst1, fst0, &env->active_fpu.fp_status) || float32_lt(fst0
2998 FOP_COND_S(ole, !float32_is_unordered(0, fst1, fst0, &env->active_fpu.fp_status) && float32_le(fst0
2999 FOP_COND_S(ule, float32_is_unordered(0, fst1, fst0, &env->active_fpu.fp_status) || float32_le(fst0
3002 FOP_COND_S(sf, (float32_is_unordered(1, fst1, fst0, &env->active_fpu.fp_status), 0))
3003 FOP_COND_S(ngle,float32_is_unordered(1, fst1, fst0, &env->active_fpu.fp_status))
3004 FOP_COND_S(seq, !float32_is_unordered(1, fst1, fst0, &env->active_fpu.fp_status) && float32_eq(fst0
3005 FOP_COND_S(ngl, float32_is_unordered(1, fst1, fst0, &env->active_fpu.fp_status) || float32_eq(fst0
3006 FOP_COND_S(lt, !float32_is_unordered(1, fst1, fst0, &env->active_fpu.fp_status) && float32_lt(fst0
3007 FOP_COND_S(nge, float32_is_unordered(1, fst1, fst0, &env->active_fpu.fp_status) || float32_lt(fst0
3008 FOP_COND_S(le, !float32_is_unordered(1, fst1, fst0, &env->active_fpu.fp_status) && float32_le(fst0
3009 FOP_COND_S(ngt, float32_is_unordered(1, fst1, fst0, &env->active_fpu.fp_status) || float32_le(fst0
3014 uint32_t fst0 = float32_abs(fdt0 & 0XFFFFFFFF); \
3033 uint32_t fst0 = float32_abs(fdt0 & 0XFFFFFFFF); \
3053 FOP_COND_PS(f, (float32_is_unordered(0, fst1, fst0, &env->active_fpu.fp_status), 0),
3055 FOP_COND_PS(un, float32_is_unordered(0, fst1, fst0, &env->active_fpu.fp_status),
3057 FOP_COND_PS(eq, !float32_is_unordered(0, fst1, fst0, &env->active_fpu.fp_status) && float32_eq(f…
3059 FOP_COND_PS(ueq, float32_is_unordered(0, fst1, fst0, &env->active_fpu.fp_status) || float32_eq(f…
3061 FOP_COND_PS(olt, !float32_is_unordered(0, fst1, fst0, &env->active_fpu.fp_status) && float32_lt(f…
3063 FOP_COND_PS(ult, float32_is_unordered(0, fst1, fst0, &env->active_fpu.fp_status) || float32_lt(f…
3065 FOP_COND_PS(ole, !float32_is_unordered(0, fst1, fst0, &env->active_fpu.fp_status) && float32_le(f…
3067 FOP_COND_PS(ule, float32_is_unordered(0, fst1, fst0, &env->active_fpu.fp_status) || float32_le(f…
3071 FOP_COND_PS(sf, (float32_is_unordered(1, fst1, fst0, &env->active_fpu.fp_status), 0),
3073 FOP_COND_PS(ngle,float32_is_unordered(1, fst1, fst0, &env->active_fpu.fp_status),
3075 FOP_COND_PS(seq, !float32_is_unordered(1, fst1, fst0, &env->active_fpu.fp_status) && float32_eq(f…
3077 FOP_COND_PS(ngl, float32_is_unordered(1, fst1, fst0, &env->active_fpu.fp_status) || float32_eq(f…
3079 FOP_COND_PS(lt, !float32_is_unordered(1, fst1, fst0, &env->active_fpu.fp_status) && float32_lt(f…
3081 FOP_COND_PS(nge, float32_is_unordered(1, fst1, fst0, &env->active_fpu.fp_status) || float32_lt(f…
3083 FOP_COND_PS(le, !float32_is_unordered(1, fst1, fst0, &env->active_fpu.fp_status) && float32_le(f…
3085 FOP_COND_PS(ngt, float32_is_unordered(1, fst1, fst0, &env->active_fpu.fp_status) || float32_le(f…