mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
target/ppc: Explicitly set 2-NaN propagation rule
Set the 2-NaN propagation rule explicitly in env->fp_status and env->vec_status. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20241025141254.2141506-9-peter.maydell@linaro.org
This commit is contained in:
parent
841f9d7475
commit
5aaab56a1a
2 changed files with 10 additions and 8 deletions
|
@ -404,15 +404,9 @@ static int pickNaN(FloatClass a_cls, FloatClass b_cls,
|
|||
|| defined(TARGET_RISCV) || defined(TARGET_SH4) \
|
||||
|| defined(TARGET_TRICORE) || defined(TARGET_ARM) || defined(TARGET_MIPS) \
|
||||
|| defined(TARGET_LOONGARCH64) || defined(TARGET_HPPA) \
|
||||
|| defined(TARGET_S390X)
|
||||
|| defined(TARGET_S390X) || defined(TARGET_PPC)
|
||||
g_assert_not_reached();
|
||||
#elif defined(TARGET_PPC) || defined(TARGET_M68K)
|
||||
/*
|
||||
* PowerPC propagation rules:
|
||||
* 1. A if it sNaN or qNaN
|
||||
* 2. B if it sNaN or qNaN
|
||||
* A signaling NaN is always silenced before returning it.
|
||||
*/
|
||||
#elif defined(TARGET_M68K)
|
||||
/*
|
||||
* M68000 FAMILY PROGRAMMER'S REFERENCE MANUAL
|
||||
* 3.4 FLOATING-POINT INSTRUCTION DETAILS
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue