[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 34/35] target/ppc: Use helper_todouble/tosingle in helper_xststdc
From: |
Richard Henderson |
Subject: |
[PATCH 34/35] target/ppc: Use helper_todouble/tosingle in helper_xststdcsp |
Date: |
Fri, 19 Nov 2021 17:05:01 +0100 |
When computing the predicate "is this value currently formatted
for single precision", we do not want to round the value according
to the current rounding mode, nor perform a floating-point equality.
We want to see if the N bits that make up single-precision are the
only ones set within the register, and then a bitwise equality.
Fixes a bug in which a single-precision NaN is considered !SP,
because float64_eq(nan, nan) is always false.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
target/ppc/fpu_helper.c | 21 ++++++++++-----------
1 file changed, 10 insertions(+), 11 deletions(-)
diff --git a/target/ppc/fpu_helper.c b/target/ppc/fpu_helper.c
index ea238929da..b81aaca67b 100644
--- a/target/ppc/fpu_helper.c
+++ b/target/ppc/fpu_helper.c
@@ -3115,26 +3115,25 @@ void helper_xststdcsp(CPUPPCState *env, uint32_t
opcode, ppc_vsr_t *xb)
{
uint32_t dcmx, sign, exp;
uint32_t cc, match = 0, not_sp = 0;
+ float64 arg = xb->VsrD(0);
+ float64 arg_sp;
dcmx = DCMX(opcode);
- exp = (xb->VsrD(0) >> 52) & 0x7FF;
+ exp = (arg >> 52) & 0x7FF;
+ sign = float64_is_neg(arg);
- sign = float64_is_neg(xb->VsrD(0));
- if (float64_is_any_nan(xb->VsrD(0))) {
+ if (float64_is_any_nan(arg)) {
match = extract32(dcmx, 6, 1);
- } else if (float64_is_infinity(xb->VsrD(0))) {
+ } else if (float64_is_infinity(arg)) {
match = extract32(dcmx, 4 + !sign, 1);
- } else if (float64_is_zero(xb->VsrD(0))) {
+ } else if (float64_is_zero(arg)) {
match = extract32(dcmx, 2 + !sign, 1);
- } else if (float64_is_zero_or_denormal(xb->VsrD(0)) ||
- (exp > 0 && exp < 0x381)) {
+ } else if (float64_is_zero_or_denormal(arg) || (exp > 0 && exp < 0x381)) {
match = extract32(dcmx, 0 + !sign, 1);
}
- not_sp = !float64_eq(xb->VsrD(0),
- float32_to_float64(
- float64_to_float32(xb->VsrD(0), &env->fp_status),
- &env->fp_status), &env->fp_status);
+ arg_sp = helper_todouble(helper_tosingle(arg));
+ not_sp = arg != arg_sp;
cc = sign << CRF_LT_BIT | match << CRF_EQ_BIT | not_sp << CRF_SO_BIT;
env->fpscr &= ~FP_FPCC;
--
2.25.1
- [PATCH 22/35] target/ppc: Update do_frsp for new flags, (continued)
- [PATCH 22/35] target/ppc: Update do_frsp for new flags, Richard Henderson, 2021/11/19
- [PATCH 24/35] target/ppc: Update sqrt for new flags, Richard Henderson, 2021/11/19
- [PATCH 25/35] target/ppc: Update xsrqpi and xsrqpxp to new flags, Richard Henderson, 2021/11/19
- [PATCH 26/35] target/ppc: Update fre to new flags, Richard Henderson, 2021/11/19
- [PATCH 28/35] target/ppc: Add helpers for fmadds et al, Richard Henderson, 2021/11/19
- [PATCH 27/35] softfloat: Add float64r32 arithmetic routines, Richard Henderson, 2021/11/19
- [PATCH 29/35] target/ppc: Add helper for fsqrts, Richard Henderson, 2021/11/19
- [PATCH 30/35] target/ppc: Add helpers for fadds, fsubs, fdivs, Richard Henderson, 2021/11/19
- [PATCH 31/35] target/ppc: Add helper for fmuls, Richard Henderson, 2021/11/19
- [PATCH 32/35] target/ppc: Add helper for frsqrtes, Richard Henderson, 2021/11/19
- [PATCH 34/35] target/ppc: Use helper_todouble/tosingle in helper_xststdcsp,
Richard Henderson <=
- [PATCH 33/35] target/ppc: Update fres to new flags and float64r32, Richard Henderson, 2021/11/19
- [PATCH 35/35] test/tcg/ppc64le: Add float reference files, Richard Henderson, 2021/11/19
- Re: [PATCH 35/35] test/tcg/ppc64le: Add float reference files, Cédric Le Goater, 2021/11/21
- Re: [PATCH 35/35] test/tcg/ppc64le: Add float reference files, Richard Henderson, 2021/11/22
- Re: [PATCH 35/35] test/tcg/ppc64le: Add float reference files, Cédric Le Goater, 2021/11/22
- Re: [PATCH 35/35] test/tcg/ppc64le: Add float reference files, Richard Henderson, 2021/11/22
- Re: [PATCH 35/35] test/tcg/ppc64le: Add float reference files, Cédric Le Goater, 2021/11/22
- Re: [PATCH 35/35] test/tcg/ppc64le: Add float reference files, Richard Henderson, 2021/11/22
- Re: [PATCH 35/35] test/tcg/ppc64le: Add float reference files, Cédric Le Goater, 2021/11/24
- Re: [PATCH 35/35] test/tcg/ppc64le: Add float reference files, Richard Henderson, 2021/11/24