From c92e1804d74b4366421839f8f7b357f2753910a7 Mon Sep 17 00:00:00 2001 From: Jacob Lifshay Date: Thu, 18 May 2023 20:53:23 -0700 Subject: [PATCH] fix fcvttg FPSCR.FR computation the unit test previously assumed the rounding mode is truncate, but when I switched it to allow dynamic rounding modes, I forgot to no longer hard-code FPSCR.FR = 0 --- openpower/isa/fpcvt.mdwn | 12 ++++++++---- src/openpower/test/fmv_fcvt/fmv_fcvt.py | 3 ++- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/openpower/isa/fpcvt.mdwn b/openpower/isa/fpcvt.mdwn index 0d2b859f..d14dec91 100644 --- a/openpower/isa/fpcvt.mdwn +++ b/openpower/isa/fpcvt.mdwn @@ -192,8 +192,10 @@ Pseudo-code: overflow <- 1 # signals SO only when OE = 1 vxcvi_flag <- 1 xx_flag <- 0 - else if ¬bfp_COMPARE_EQ(src, result_bfp) then - xx_flag <- 1 + inc_flag <- 0 + else + xx_flag <- ¬bfp_COMPARE_EQ(src, result_bfp) + inc_flag <- bfp_COMPARE_GT(bfp_ABSOLUTE(result_bfp), bfp_ABSOLUTE(src)) if vxsnan_flag = 1 then SetFX(FPSCR.VXSNAN) if vxcvi_flag = 1 then SetFX(FPSCR.VXCVI) if xx_flag = 1 then SetFX(FPSCR.XX) @@ -307,8 +309,10 @@ Pseudo-code: overflow <- 1 # signals SO only when OE = 1 vxcvi_flag <- 1 xx_flag <- 0 - else if ¬bfp_COMPARE_EQ(src, result_bfp) then - xx_flag <- 1 + inc_flag <- 0 + else + xx_flag <- ¬bfp_COMPARE_EQ(src, result_bfp) + inc_flag <- bfp_COMPARE_GT(bfp_ABSOLUTE(result_bfp), bfp_ABSOLUTE(src)) if vxsnan_flag = 1 then SetFX(FPSCR.VXSNAN) if vxcvi_flag = 1 then SetFX(FPSCR.VXCVI) if xx_flag = 1 then SetFX(FPSCR.XX) diff --git a/src/openpower/test/fmv_fcvt/fmv_fcvt.py b/src/openpower/test/fmv_fcvt/fmv_fcvt.py index 524edce1..d47f35cc 100644 --- a/src/openpower/test/fmv_fcvt/fmv_fcvt.py +++ b/src/openpower/test/fmv_fcvt/fmv_fcvt.py @@ -125,7 +125,8 @@ class FMvFCvtCases(TestAccumulatorBase): fpscr.FX = 1 fpscr.FI = 1 fpscr.FPRF = 0 # undefined value we happen to pick - fpscr.FR = 0 # trunc never increments + if not overflow: + fpscr.FR = abs(do_round(inp, round_mode)) > abs(inp) lt = bool(expected & (1 << 63)) gt = not lt and expected != 0 eq = expected == 0 -- 2.30.2