mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-10 02:54:58 -06:00
target/ppc: Set Float3NaNPropRule explicitly
Set the Float3NaNPropRule explicitly for PPC, and remove the ifdef from pickNaNMulAdd(). Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20241202131347.498124-20-peter.maydell@linaro.org
This commit is contained in:
parent
9d0b8f9605
commit
ac1254c4e7
2 changed files with 8 additions and 6 deletions
|
@ -511,12 +511,6 @@ static int pickNaNMulAdd(FloatClass a_cls, FloatClass b_cls, FloatClass c_cls,
|
||||||
} else {
|
} else {
|
||||||
rule = float_3nan_prop_s_cab;
|
rule = float_3nan_prop_s_cab;
|
||||||
}
|
}
|
||||||
#elif defined(TARGET_PPC)
|
|
||||||
/*
|
|
||||||
* If fRA is a NaN return it; otherwise if fRB is a NaN return it;
|
|
||||||
* otherwise return fRC. Note that muladd on PPC is (fRA * fRC) + frB
|
|
||||||
*/
|
|
||||||
rule = float_3nan_prop_acb;
|
|
||||||
#elif defined(TARGET_S390X)
|
#elif defined(TARGET_S390X)
|
||||||
rule = float_3nan_prop_s_abc;
|
rule = float_3nan_prop_s_abc;
|
||||||
#elif defined(TARGET_SPARC)
|
#elif defined(TARGET_SPARC)
|
||||||
|
|
|
@ -7270,6 +7270,14 @@ static void ppc_cpu_reset_hold(Object *obj, ResetType type)
|
||||||
*/
|
*/
|
||||||
set_float_2nan_prop_rule(float_2nan_prop_ab, &env->fp_status);
|
set_float_2nan_prop_rule(float_2nan_prop_ab, &env->fp_status);
|
||||||
set_float_2nan_prop_rule(float_2nan_prop_ab, &env->vec_status);
|
set_float_2nan_prop_rule(float_2nan_prop_ab, &env->vec_status);
|
||||||
|
/*
|
||||||
|
* NaN propagation for fused multiply-add:
|
||||||
|
* if fRA is a NaN return it; otherwise if fRB is a NaN return it;
|
||||||
|
* otherwise return fRC. Note that muladd on PPC is (fRA * fRC) + frB
|
||||||
|
* whereas QEMU labels the operands as (a * b) + c.
|
||||||
|
*/
|
||||||
|
set_float_3nan_prop_rule(float_3nan_prop_acb, &env->fp_status);
|
||||||
|
set_float_3nan_prop_rule(float_3nan_prop_acb, &env->vec_status);
|
||||||
/*
|
/*
|
||||||
* For PPC, the (inf,zero,qnan) case sets InvalidOp, but we prefer
|
* For PPC, the (inf,zero,qnan) case sets InvalidOp, but we prefer
|
||||||
* to return an input NaN if we have one (ie c) rather than generating
|
* to return an input NaN if we have one (ie c) rather than generating
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue