Lines Matching refs:fst2

303     uint32_t fst2;  in helper_float_cvtps_pw()  local
306 fst2 = int32_to_float32(dt0 & 0XFFFFFFFF, &env->active_fpu.fp_status); in helper_float_cvtps_pw()
309 return ((uint64_t)fsth2 << 32) | fst2; in helper_float_cvtps_pw()
339 uint32_t fst2; in helper_float_cvts_d() local
341 fst2 = float64_to_float32(fdt0, &env->active_fpu.fp_status); in helper_float_cvts_d()
343 return fst2; in helper_float_cvts_d()
348 uint32_t fst2; in helper_float_cvts_w() local
350 fst2 = int32_to_float32(wt0, &env->active_fpu.fp_status); in helper_float_cvts_w()
352 return fst2; in helper_float_cvts_w()
357 uint32_t fst2; in helper_float_cvts_l() local
359 fst2 = int64_to_float32(dt0, &env->active_fpu.fp_status); in helper_float_cvts_l()
361 return fst2; in helper_float_cvts_l()
1027 uint32_t fst2; in helper_float_recip_s() local
1029 fst2 = float32_div(float32_one, fst0, &env->active_fpu.fp_status); in helper_float_recip_s()
1031 return fst2; in helper_float_recip_s()
1046 uint32_t fst2; in helper_float_rsqrt_s() local
1048 fst2 = float32_sqrt(fst0, &env->active_fpu.fp_status); in helper_float_rsqrt_s()
1049 fst2 = float32_div(float32_one, fst2, &env->active_fpu.fp_status); in helper_float_rsqrt_s()
1051 return fst2; in helper_float_rsqrt_s()
1065 uint32_t fst2; in helper_float_recip1_s() local
1067 fst2 = float32_div(float32_one, fst0, &env->active_fpu.fp_status); in helper_float_recip1_s()
1069 return fst2; in helper_float_recip1_s()
1096 uint32_t fst2; in helper_float_rsqrt1_s() local
1098 fst2 = float32_sqrt(fst0, &env->active_fpu.fp_status); in helper_float_rsqrt1_s()
1099 fst2 = float32_div(float32_one, fst2, &env->active_fpu.fp_status); in helper_float_rsqrt1_s()
1101 return fst2; in helper_float_rsqrt1_s()
1371 uint32_t helper_float_recip2_s(CPUMIPSState *env, uint32_t fst0, uint32_t fst2) in helper_float_recip2_s() argument
1373 fst2 = float32_mul(fst0, fst2, &env->active_fpu.fp_status); in helper_float_recip2_s()
1374 fst2 = float32_chs(float32_sub(fst2, float32_one, in helper_float_recip2_s()
1377 return fst2; in helper_float_recip2_s()
1407 uint32_t helper_float_rsqrt2_s(CPUMIPSState *env, uint32_t fst0, uint32_t fst2) in helper_float_rsqrt2_s() argument
1409 fst2 = float32_mul(fst0, fst2, &env->active_fpu.fp_status); in helper_float_rsqrt2_s()
1410 fst2 = float32_sub(fst2, float32_one, &env->active_fpu.fp_status); in helper_float_rsqrt2_s()
1411 fst2 = float32_chs(float32_div(fst2, FLOAT_TWO32, in helper_float_rsqrt2_s()
1414 return fst2; in helper_float_rsqrt2_s()
1551 uint64_t fst1, uint64_t fst2) in helper_float_madd_d() argument
1554 fst0 = float64_add(fst0, fst2, &env->active_fpu.fp_status); in helper_float_madd_d()
1561 uint32_t fst1, uint32_t fst2) in helper_float_madd_s() argument
1564 fst0 = float32_add(fst0, fst2, &env->active_fpu.fp_status); in helper_float_madd_s()
1590 uint64_t fst1, uint64_t fst2) in helper_float_msub_d() argument
1593 fst0 = float64_sub(fst0, fst2, &env->active_fpu.fp_status); in helper_float_msub_d()
1600 uint32_t fst1, uint32_t fst2) in helper_float_msub_s() argument
1603 fst0 = float32_sub(fst0, fst2, &env->active_fpu.fp_status); in helper_float_msub_s()
1629 uint64_t fst1, uint64_t fst2) in helper_float_nmadd_d() argument
1632 fst0 = float64_add(fst0, fst2, &env->active_fpu.fp_status); in helper_float_nmadd_d()
1640 uint32_t fst1, uint32_t fst2) in helper_float_nmadd_s() argument
1643 fst0 = float32_add(fst0, fst2, &env->active_fpu.fp_status); in helper_float_nmadd_s()
1672 uint64_t fst1, uint64_t fst2) in helper_float_nmsub_d() argument
1675 fst0 = float64_sub(fst0, fst2, &env->active_fpu.fp_status); in helper_float_nmsub_d()
1683 uint32_t fst1, uint32_t fst2) in helper_float_nmsub_s() argument
1686 fst0 = float32_sub(fst0, fst2, &env->active_fpu.fp_status); in helper_float_nmsub_s()