All of lore.kernel.org
 help / color / mirror / Atom feed
From: Leon Alrae <leon.alrae@imgtec.com>
To: Aleksandar Markovic <aleksandar.markovic@rt-rk.com>,
	<qemu-devel@nongnu.org>
Cc: proljc@gmail.com, kbastian@mail.uni-paderborn.de,
	mark.cave-ayland@ilande.co.uk, agraf@suse.de,
	maciej.rozycki@imgtec.com, petar.jovanovic@imgtec.com,
	blauwirbel@gmail.com, jcmvbkbc@gmail.com,
	aleksandar.markovic@imgtec.com, qemu-arm@nongnu.org,
	qemu-ppc@nongnu.org, miodrag.dinic@imgtec.com,
	pbonzini@redhat.com, gxt@mprc.pku.edu.cn, afaerber@suse.de,
	aurelien@aurel32.net, rth@twiddle.net
Subject: Re: [Qemu-arm] [PATCH v4 3/9] softfloat: For Mips only, correct order in pickNaNMulAdd()
Date: Wed, 13 Apr 2016 13:47:58 +0100	[thread overview]
Message-ID: <570E3FFE.6090701@imgtec.com> (raw)
In-Reply-To: <1460465891-6142-4-git-send-email-aleksandar.markovic@rt-rk.com>

On 12/04/16 13:58, Aleksandar Markovic wrote:
> From: Aleksandar Markovic <aleksandar.markovic@imgtec.com>
> 
> Only for Mips platform, and only for cases when snan_bit_is_one is 0,
> correct the order of argument comparisons in pickNaNMulAdd().
> 
> For more info, see [2], page 53, section "3.5.3 NaN Propagation".
> 
> [1] "MIPS® Architecture For Programmers Volume II-A:
>     The MIPS64® Instruction Set Reference Manual",
>     Imagination Technologies LTD, Revision 6.04, November 13, 2015
> 
> [2] "MIPS Architecture for Programmers Volume IV-j:
>     The MIPS32® SIMD Architecture Module",
>     Imagination Technologies LTD, Revision 1.12, February 3, 2016
> 
> Signed-off-by: Aleksandar Markovic <aleksandar.markovic@imgtec.com>
> ---
>  fpu/softfloat-specialize.h |   41 +++++++++++++++++++++++++++++------------
>  1 file changed, 29 insertions(+), 12 deletions(-)
> 
> diff --git a/fpu/softfloat-specialize.h b/fpu/softfloat-specialize.h
> index 169246e..807ecc0 100644
> --- a/fpu/softfloat-specialize.h
> +++ b/fpu/softfloat-specialize.h
> @@ -569,19 +569,36 @@ static int pickNaNMulAdd(flag aIsQNaN, flag aIsSNaN, flag bIsQNaN, flag bIsSNaN,
>          return 3;
>      }
>  
> -    /* Prefer sNaN over qNaN, in the c, a, b order. */
> -    if (cIsSNaN) {
> -        return 2;
> -    } else if (aIsSNaN) {
> -        return 0;
> -    } else if (bIsSNaN) {
> -        return 1;
> -    } else if (cIsQNaN) {
> -        return 2;
> -    } else if (aIsQNaN) {
> -        return 0;

Initially I was confused with this part of diff until I realized that
you had modified the original order in pickNaNMulAdd in patch #1 -- was
that intended?

Otherwise:

Reviewed-by: Leon Alrae <leon.alrae@imgtec.com>

> +    if (status->snan_bit_is_one) {
> +        /* Prefer sNaN over qNaN, in the a, b, c order. */
> +        if (aIsSNaN) {
> +            return 0;
> +        } else if (bIsSNaN) {
> +            return 1;
> +        } else if (cIsSNaN) {
> +            return 2;
> +        } else if (aIsQNaN) {
> +            return 0;
> +        } else if (bIsQNaN) {
> +            return 1;
> +        } else {
> +            return 2;
> +        }
>      } else {
> -        return 1;
> +        /* Prefer sNaN over qNaN, in the c, a, b order. */
> +        if (cIsSNaN) {
> +            return 2;
> +        } else if (aIsSNaN) {
> +            return 0;
> +        } else if (bIsSNaN) {
> +            return 1;
> +        } else if (cIsQNaN) {
> +            return 2;
> +        } else if (aIsQNaN) {
> +            return 0;
> +        } else {
> +            return 1;
> +        }
>      }
>  }
>  #elif defined(TARGET_PPC)
> 


WARNING: multiple messages have this Message-ID (diff)
From: Leon Alrae <leon.alrae@imgtec.com>
To: Aleksandar Markovic <aleksandar.markovic@rt-rk.com>,
	qemu-devel@nongnu.org
Cc: proljc@gmail.com, kbastian@mail.uni-paderborn.de,
	mark.cave-ayland@ilande.co.uk, agraf@suse.de,
	blauwirbel@gmail.com, jcmvbkbc@gmail.com,
	aleksandar.markovic@imgtec.com, qemu-arm@nongnu.org,
	qemu-ppc@nongnu.org, petar.jovanovic@imgtec.com,
	pbonzini@redhat.com, miodrag.dinic@imgtec.com,
	edgar.iglesias@gmail.com, gxt@mprc.pku.edu.cn, afaerber@suse.de,
	aurelien@aurel32.net, rth@twiddle.net, maciej.rozycki@imgtec.com
Subject: Re: [Qemu-devel] [PATCH v4 3/9] softfloat: For Mips only, correct order in pickNaNMulAdd()
Date: Wed, 13 Apr 2016 13:47:58 +0100	[thread overview]
Message-ID: <570E3FFE.6090701@imgtec.com> (raw)
In-Reply-To: <1460465891-6142-4-git-send-email-aleksandar.markovic@rt-rk.com>

On 12/04/16 13:58, Aleksandar Markovic wrote:
> From: Aleksandar Markovic <aleksandar.markovic@imgtec.com>
> 
> Only for Mips platform, and only for cases when snan_bit_is_one is 0,
> correct the order of argument comparisons in pickNaNMulAdd().
> 
> For more info, see [2], page 53, section "3.5.3 NaN Propagation".
> 
> [1] "MIPS® Architecture For Programmers Volume II-A:
>     The MIPS64® Instruction Set Reference Manual",
>     Imagination Technologies LTD, Revision 6.04, November 13, 2015
> 
> [2] "MIPS Architecture for Programmers Volume IV-j:
>     The MIPS32® SIMD Architecture Module",
>     Imagination Technologies LTD, Revision 1.12, February 3, 2016
> 
> Signed-off-by: Aleksandar Markovic <aleksandar.markovic@imgtec.com>
> ---
>  fpu/softfloat-specialize.h |   41 +++++++++++++++++++++++++++++------------
>  1 file changed, 29 insertions(+), 12 deletions(-)
> 
> diff --git a/fpu/softfloat-specialize.h b/fpu/softfloat-specialize.h
> index 169246e..807ecc0 100644
> --- a/fpu/softfloat-specialize.h
> +++ b/fpu/softfloat-specialize.h
> @@ -569,19 +569,36 @@ static int pickNaNMulAdd(flag aIsQNaN, flag aIsSNaN, flag bIsQNaN, flag bIsSNaN,
>          return 3;
>      }
>  
> -    /* Prefer sNaN over qNaN, in the c, a, b order. */
> -    if (cIsSNaN) {
> -        return 2;
> -    } else if (aIsSNaN) {
> -        return 0;
> -    } else if (bIsSNaN) {
> -        return 1;
> -    } else if (cIsQNaN) {
> -        return 2;
> -    } else if (aIsQNaN) {
> -        return 0;

Initially I was confused with this part of diff until I realized that
you had modified the original order in pickNaNMulAdd in patch #1 -- was
that intended?

Otherwise:

Reviewed-by: Leon Alrae <leon.alrae@imgtec.com>

> +    if (status->snan_bit_is_one) {
> +        /* Prefer sNaN over qNaN, in the a, b, c order. */
> +        if (aIsSNaN) {
> +            return 0;
> +        } else if (bIsSNaN) {
> +            return 1;
> +        } else if (cIsSNaN) {
> +            return 2;
> +        } else if (aIsQNaN) {
> +            return 0;
> +        } else if (bIsQNaN) {
> +            return 1;
> +        } else {
> +            return 2;
> +        }
>      } else {
> -        return 1;
> +        /* Prefer sNaN over qNaN, in the c, a, b order. */
> +        if (cIsSNaN) {
> +            return 2;
> +        } else if (aIsSNaN) {
> +            return 0;
> +        } else if (bIsSNaN) {
> +            return 1;
> +        } else if (cIsQNaN) {
> +            return 2;
> +        } else if (aIsQNaN) {
> +            return 0;
> +        } else {
> +            return 1;
> +        }
>      }
>  }
>  #elif defined(TARGET_PPC)
> 

  reply	other threads:[~2016-04-13 12:48 UTC|newest]

Thread overview: 46+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-04-12 12:58 [Qemu-arm] [PATCH v4 0/9] target-mips: Initiate IEEE 754-2008 support Aleksandar Markovic
2016-04-12 12:58 ` [Qemu-devel] " Aleksandar Markovic
2016-04-12 12:58 ` [Qemu-arm] [PATCH v4 1/9] softfloat: Implement run-time-configurable meaning of signaling NaN bit Aleksandar Markovic
2016-04-12 12:58   ` [Qemu-devel] " Aleksandar Markovic
2016-04-12 18:45   ` [Qemu-arm] " Eduardo Habkost
2016-04-12 18:45     ` Eduardo Habkost
2016-04-13 18:41     ` [Qemu-arm] " Aleksandar Markovic
2016-04-13 18:41       ` Aleksandar Markovic
2016-04-13 19:04       ` [Qemu-arm] " Eduardo Habkost
2016-04-13 19:04         ` Eduardo Habkost
2016-04-13 12:11   ` [Qemu-arm] " Leon Alrae
2016-04-13 12:11     ` [Qemu-devel] " Leon Alrae
2016-04-14 15:31   ` [Qemu-arm] " Leon Alrae
2016-04-14 15:31     ` [Qemu-devel] " Leon Alrae
2016-04-15  8:48     ` [Qemu-arm] " Aleksandar Markovic
2016-04-15  8:48       ` [Qemu-devel] " Aleksandar Markovic
2016-04-15 10:41       ` [Qemu-arm] " Leon Alrae
2016-04-15 10:41         ` [Qemu-devel] " Leon Alrae
2016-04-15 11:38         ` [Qemu-arm] " Aleksandar Markovic
2016-04-15 11:38           ` [Qemu-devel] " Aleksandar Markovic
2016-04-17 18:21           ` [Qemu-arm] " Aleksandar Markovic
2016-04-17 18:21             ` [Qemu-devel] " Aleksandar Markovic
2016-04-12 12:58 ` [Qemu-arm] [PATCH v4 2/9] softfloat: For Mips only, correct default NaN values Aleksandar Markovic
2016-04-12 12:58   ` [Qemu-devel] " Aleksandar Markovic
2016-04-13 12:23   ` Leon Alrae
2016-04-13 12:23     ` Leon Alrae
2016-04-12 12:58 ` [Qemu-arm] [PATCH v4 3/9] softfloat: For Mips only, correct order in pickNaNMulAdd() Aleksandar Markovic
2016-04-12 12:58   ` [Qemu-devel] " Aleksandar Markovic
2016-04-13 12:47   ` Leon Alrae [this message]
2016-04-13 12:47     ` Leon Alrae
2016-04-13 13:53     ` [Qemu-arm] " Aleksandar Markovic
2016-04-13 13:53       ` [Qemu-devel] " Aleksandar Markovic
2016-04-12 12:58 ` [Qemu-arm] [PATCH v4 4/9] softfloat: Clean up hex constants capitalization in softfloat-specialize.h Aleksandar Markovic
2016-04-12 12:58   ` [Qemu-devel] " Aleksandar Markovic
2016-04-12 12:58 ` [Qemu-arm] [PATCH v4 5/9] softfloat: Clean up white spaces " Aleksandar Markovic
2016-04-12 12:58   ` [Qemu-devel] " Aleksandar Markovic
2016-04-12 12:58 ` [Qemu-arm] [PATCH v4 6/9] target-mips: Activate IEEE 274-2008 support Aleksandar Markovic
2016-04-12 12:58   ` [Qemu-devel] " Aleksandar Markovic
2016-04-12 12:58 ` [Qemu-arm] [PATCH v4 7/9] target-mips: Add abs2008 flavor of <ABS|NEG>.<S|D> Aleksandar Markovic
2016-04-12 12:58   ` [Qemu-devel] " Aleksandar Markovic
2016-04-14 10:52   ` [Qemu-arm] " Leon Alrae
2016-04-14 10:52     ` [Qemu-devel] " Leon Alrae
2016-04-12 12:58 ` [Qemu-arm] [PATCH v4 8/9] target-mips: Add nan2008 flavor of <CEIL|CVT|FLOOR|ROUND|TRUNC>.<L|W>.<S|D> Aleksandar Markovic
2016-04-12 12:58   ` [Qemu-devel] " Aleksandar Markovic
2016-04-12 12:58 ` [Qemu-arm] [PATCH v4 9/9] target-mips: Clean up order of helpers for CVT.<L|W>.<S|D> Aleksandar Markovic
2016-04-12 12:58   ` [Qemu-devel] " Aleksandar Markovic

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=570E3FFE.6090701@imgtec.com \
    --to=leon.alrae@imgtec.com \
    --cc=afaerber@suse.de \
    --cc=agraf@suse.de \
    --cc=aleksandar.markovic@imgtec.com \
    --cc=aleksandar.markovic@rt-rk.com \
    --cc=aurelien@aurel32.net \
    --cc=blauwirbel@gmail.com \
    --cc=gxt@mprc.pku.edu.cn \
    --cc=jcmvbkbc@gmail.com \
    --cc=kbastian@mail.uni-paderborn.de \
    --cc=maciej.rozycki@imgtec.com \
    --cc=mark.cave-ayland@ilande.co.uk \
    --cc=miodrag.dinic@imgtec.com \
    --cc=pbonzini@redhat.com \
    --cc=petar.jovanovic@imgtec.com \
    --cc=proljc@gmail.com \
    --cc=qemu-arm@nongnu.org \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-ppc@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.