Searched refs:fdt0 (Results 1 – 2 of 2) sorted by relevance
/openbmc/qemu/target/mips/tcg/ |
H A D | fpu_helper.c | 234 uint64_t helper_float_sqrt_d(CPUMIPSState *env, uint64_t fdt0) in helper_float_sqrt_d() argument 236 fdt0 = float64_sqrt(fdt0, &env->active_fpu.fp_status); in helper_float_sqrt_d() 238 return fdt0; in helper_float_sqrt_d() 275 uint64_t helper_float_cvt_l_d(CPUMIPSState *env, uint64_t fdt0) in helper_float_cvt_l_d() argument 279 dt2 = float64_to_int64(fdt0, &env->active_fpu.fp_status); in helper_float_cvt_l_d() 312 uint64_t helper_float_cvtpw_ps(CPUMIPSState *env, uint64_t fdt0) in helper_float_cvtpw_ps() argument 318 wt2 = float32_to_int32(fdt0 & 0XFFFFFFFF, &env->active_fpu.fp_status); in helper_float_cvtpw_ps() 325 wth2 = float32_to_int32(fdt0 >> 32, &env->active_fpu.fp_status); in helper_float_cvtpw_ps() 337 uint32_t helper_float_cvts_d(CPUMIPSState *env, uint64_t fdt0) in helper_float_cvts_d() argument 341 fst2 = float64_to_float32(fdt0, &env->active_fpu.fp_status); in helper_float_cvts_d() [all …]
|
/openbmc/qemu/target/openrisc/ |
H A D | fpu_helper.c | 118 uint64_t fdt0, uint64_t fdt1) \ 119 { return float64_ ## name(fdt0, fdt1, &env->fp_status); } \ 121 uint32_t fdt0, uint32_t fdt1) \ 122 { return float32_ ## name(fdt0, fdt1, &env->fp_status); } 151 uint64_t fdt0, uint64_t fdt1) \ 152 { return float64_ ## impl(fdt0, fdt1, &env->fp_status); } \ 154 uint32_t fdt0, uint32_t fdt1) \ 155 { return float32_ ## impl(fdt0, fdt1, &env->fp_status); } 165 uint64_t fdt0, uint64_t fdt1) \ 167 FloatRelation r = float64_compare_quiet(fdt0, fdt1, &env->fp_status); \ [all …]
|