All of lore.kernel.org
 help / color / mirror / Atom feed
From: Laurent Vivier <laurent@vivier.eu>
To: qemu-devel@nongnu.org
Cc: "Aurelien Jarno" <aurelien@aurel32.net>,
	"Philippe Mathieu-Daudé" <f4bug@amsat.org>,
	"Richard Henderson" <rth@twiddle.net>,
	"Peter Maydell" <peter.maydell@linaro.org>
Subject: Re: [Qemu-devel] [PATCH v2 4/7] softfloat: define floatx80_round()
Date: Tue, 27 Jun 2017 17:13:55 +0200	[thread overview]
Message-ID: <65e8a6ec-60cf-f626-1db9-4ffa225fd45d@vivier.eu> (raw)
In-Reply-To: <20170626220330.6785-5-laurent@vivier.eu>

Aurélien or Peter, could you ACK this one?

Thanks,
Laurent

Le 27/06/2017 à 00:03, Laurent Vivier a écrit :
> Add a function to round a floatx80 to the defined precision
> (floatx80_rounding_precision)
> 
> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
> Reviewed-by: Richard Henderson <rth@twiddle.net>
> ---
>  fpu/softfloat.c         | 15 +++++++++++++++
>  include/fpu/softfloat.h |  1 +
>  2 files changed, 16 insertions(+)
> 
> diff --git a/fpu/softfloat.c b/fpu/softfloat.c
> index 7af14e2..e9bf359 100644
> --- a/fpu/softfloat.c
> +++ b/fpu/softfloat.c
> @@ -5086,6 +5086,21 @@ float128 floatx80_to_float128(floatx80 a, float_status *status)
>  }
>  
>  /*----------------------------------------------------------------------------
> +| Rounds the extended double-precision floating-point value `a'
> +| and returns the result as an extended double-precision floating-point
> +| value.  The operation is performed according to the IEC/IEEE Standard for
> +| Binary Floating-Point Arithmetic.
> +*----------------------------------------------------------------------------*/
> +
> +floatx80 floatx80_round(floatx80 a, float_status *status)
> +{
> +    return roundAndPackFloatx80(status->floatx80_rounding_precision,
> +                                extractFloatx80Sign(a),
> +                                extractFloatx80Exp(a),
> +                                extractFloatx80Frac(a), 0, status);
> +}
> +
> +/*----------------------------------------------------------------------------
>  | Rounds the extended double-precision floating-point value `a' to an integer,
>  | and returns the result as an extended quadruple-precision floating-point
>  | value.  The operation is performed according to the IEC/IEEE Standard for
> diff --git a/include/fpu/softfloat.h b/include/fpu/softfloat.h
> index f1288ef..d9689ec 100644
> --- a/include/fpu/softfloat.h
> +++ b/include/fpu/softfloat.h
> @@ -621,6 +621,7 @@ float128 floatx80_to_float128(floatx80, float_status *status);
>  /*----------------------------------------------------------------------------
>  | Software IEC/IEEE extended double-precision operations.
>  *----------------------------------------------------------------------------*/
> +floatx80 floatx80_round(floatx80 a, float_status *status);
>  floatx80 floatx80_round_to_int(floatx80, float_status *status);
>  floatx80 floatx80_add(floatx80, floatx80, float_status *status);
>  floatx80 floatx80_sub(floatx80, floatx80, float_status *status);
> 

  reply	other threads:[~2017-06-27 16:55 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-06-26 22:03 [Qemu-devel] [PATCH v2 0/7] target/m68k: implement 680x0 FPU (part 2) Laurent Vivier
2017-06-26 22:03 ` [Qemu-devel] [PATCH v2 1/7] target/m68k: add fscc Laurent Vivier
2017-06-26 22:55   ` Richard Henderson
2017-06-26 22:03 ` [Qemu-devel] [PATCH v2 2/7] target/m68k: add fmovecr Laurent Vivier
2017-06-27 15:45   ` Philippe Mathieu-Daudé
2017-06-27 17:58     ` Laurent Vivier
2017-06-27 20:52       ` Philippe Mathieu-Daudé
2017-06-26 22:03 ` [Qemu-devel] [PATCH v2 3/7] target/m68k: add explicit single and double precision operations Laurent Vivier
2017-06-26 22:03 ` [Qemu-devel] [PATCH v2 4/7] softfloat: define floatx80_round() Laurent Vivier
2017-06-27 15:13   ` Laurent Vivier [this message]
2017-06-26 22:03 ` [Qemu-devel] [PATCH v2 5/7] target/m68k: add fsglmul and fsgldiv Laurent Vivier
2017-06-26 22:57   ` Richard Henderson
2017-06-26 22:03 ` [Qemu-devel] [PATCH v2 6/7] target/m68k: add explicit single and double precision operations (part 2) Laurent Vivier
2017-06-26 22:03 ` [Qemu-devel] [PATCH v2 7/7] target/m68k: add fmovem Laurent Vivier
2017-06-26 23:32   ` Richard Henderson

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=65e8a6ec-60cf-f626-1db9-4ffa225fd45d@vivier.eu \
    --to=laurent@vivier.eu \
    --cc=aurelien@aurel32.net \
    --cc=f4bug@amsat.org \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@nongnu.org \
    --cc=rth@twiddle.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.