[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 18/31] target/microblaze: Explicitly set 2-NaN propagation rule
From: |
Peter Maydell |
Subject: |
[PULL 18/31] target/microblaze: Explicitly set 2-NaN propagation rule |
Date: |
Tue, 5 Nov 2024 11:19:22 +0000 |
Set the NaN propagation rule explicitly for the float_status word
used in the microblaze target.
This is probably not the architecturally correct behaviour,
but since this is a no-behaviour-change patch, we leave a
TODO note to that effect.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-id: 20241025141254.2141506-19-peter.maydell@linaro.org
---
target/microblaze/cpu.c | 5 +++++
fpu/softfloat-specialize.c.inc | 3 ++-
2 files changed, 7 insertions(+), 1 deletion(-)
diff --git a/target/microblaze/cpu.c b/target/microblaze/cpu.c
index 6329a774331..14286deead9 100644
--- a/target/microblaze/cpu.c
+++ b/target/microblaze/cpu.c
@@ -202,6 +202,11 @@ static void mb_cpu_reset_hold(Object *obj, ResetType type)
env->pc = cpu->cfg.base_vectors;
set_float_rounding_mode(float_round_nearest_even, &env->fp_status);
+ /*
+ * TODO: this is probably not the correct NaN propagation rule for
+ * this architecture.
+ */
+ set_float_2nan_prop_rule(float_2nan_prop_x87, &env->fp_status);
#if defined(CONFIG_USER_ONLY)
/* start in user mode with interrupts enabled. */
diff --git a/fpu/softfloat-specialize.c.inc b/fpu/softfloat-specialize.c.inc
index a5c3e2b8de5..40cbb1ab73b 100644
--- a/fpu/softfloat-specialize.c.inc
+++ b/fpu/softfloat-specialize.c.inc
@@ -406,7 +406,8 @@ static int pickNaN(FloatClass a_cls, FloatClass b_cls,
|| defined(TARGET_LOONGARCH64) || defined(TARGET_HPPA) \
|| defined(TARGET_S390X) || defined(TARGET_PPC) || defined(TARGET_M68K) \
|| defined(TARGET_SPARC) || defined(TARGET_XTENSA) \
- || defined(TARGET_I386) || defined(TARGET_ALPHA)
+ || defined(TARGET_I386) || defined(TARGET_ALPHA) \
+ || defined(TARGET_MICROBLAZE)
g_assert_not_reached();
#else
rule = float_2nan_prop_x87;
--
2.34.1
- [PULL 26/31] hw/rtc/ds1338: Trace send and receive operations, (continued)
- [PULL 26/31] hw/rtc/ds1338: Trace send and receive operations, Peter Maydell, 2024/11/05
- [PULL 22/31] Revert "target/arm: Fix usage of MMU indexes when EL3 is AArch32", Peter Maydell, 2024/11/05
- [PULL 28/31] hw/watchdog/wdt_imx2: Remove redundant assignment, Peter Maydell, 2024/11/05
- [PULL 25/31] disas: Fix build against Capstone v6 (again), Peter Maydell, 2024/11/05
- [PULL 23/31] target/arm: Add new MMU indexes for AArch32 Secure PL1&0, Peter Maydell, 2024/11/05
- [PULL 27/31] hw/timer/imx_gpt: Convert DPRINTF to trace events, Peter Maydell, 2024/11/05
- [PULL 29/31] hw/sensor/tmp105: Convert printf() to trace event, add tracing for read/write access, Peter Maydell, 2024/11/05
- [PULL 31/31] target/arm: Enable FEAT_CMOW for -cpu max, Peter Maydell, 2024/11/05
- [PULL 24/31] target/arm: Fix SVE SDOT/UDOT/USDOT (4-way, indexed), Peter Maydell, 2024/11/05
- [PULL 30/31] hw/net/npcm_gmac: Change error log to trace event, Peter Maydell, 2024/11/05
- [PULL 18/31] target/microblaze: Explicitly set 2-NaN propagation rule,
Peter Maydell <=
- Re: [PULL 00/31] target-arm queue, Peter Maydell, 2024/11/06