mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 16:53:55 -06:00
target/ppc: Add helper for fsqrts
Use float64r32_sqrt. Fixes a double-rounding issue with performing the compuation in float64 and then rounding afterward. Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20211119160502.17432-30-richard.henderson@linaro.org> Signed-off-by: Cédric Le Goater <clg@kaod.org>
This commit is contained in:
parent
d04ca895dc
commit
41ae890d08
3 changed files with 14 additions and 2 deletions
|
@ -775,6 +775,18 @@ float64 helper_fsqrt(CPUPPCState *env, float64 arg)
|
|||
return ret;
|
||||
}
|
||||
|
||||
/* fsqrts - fsqrts. */
|
||||
float64 helper_fsqrts(CPUPPCState *env, float64 arg)
|
||||
{
|
||||
float64 ret = float64r32_sqrt(arg, &env->fp_status);
|
||||
int flags = get_float_exception_flags(&env->fp_status);
|
||||
|
||||
if (unlikely(flags & float_flag_invalid)) {
|
||||
float_invalid_op_sqrt(env, flags, 1, GETPC());
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
||||
/* fre - fre. */
|
||||
float64 helper_fre(CPUPPCState *env, float64 arg)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue