From: Leon Alrae <leon.alrae@imgtec.com>
To: Aleksandar Markovic <aleksandar.markovic@rt-rk.com>
Cc: peter.maydell@linaro.org, proljc@gmail.com,
kbastian@mail.uni-paderborn.de, mark.cave-ayland@ilande.co.uk,
agraf@suse.de, maciej.rozycki@imgtec.com, qemu-devel@nongnu.org,
blauwirbel@gmail.com, jcmvbkbc@gmail.com,
aleksandar.markovic@imgtec.com, qemu-arm@nongnu.org,
qemu-ppc@nongnu.org, petar.jovanovic@imgtec.com,
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 v5 5/9] target-mips: Activate IEEE 274-2008 signaling NaN bit meaning
Date: Fri, 29 Apr 2016 16:06:43 +0100 [thread overview]
Message-ID: <57237883.1020508@imgtec.com> (raw)
In-Reply-To: <1460995422-14373-6-git-send-email-aleksandar.markovic@rt-rk.com>
On 18/04/16 17:03, Aleksandar Markovic wrote:
> From: Aleksandar Markovic <aleksandar.markovic@imgtec.com>
>
> Functions mips_cpu_reset() and msa_reset() are updated so that flag
> snan_bit_is_one is properly set for any Mips FPU/MSA configuration.
> For main FPUs, CPUs with FCR31's FCR31_NAN2008 bit set will invoke
> set_snan_bit_is_one(0). For MSA, as it is IEEE 274-2008 compliant
> from it inception, set_snan_bit_is_one(0) will always be invoked.
>
> By applying this patch, a number of incorrect behaviors for CPU
> configurations that require IEEE 274-2008 compliance will be fixed.
> Those are behaviors that (up to the moment of applying this patch)
> did not get the desired functionality from SoftFloat library with
> respect to distinguishing between quiet and signaling NaN, getting
> default NaN values (both quiet and signaling), establishing if a
> floating point number is Nan or not, etc.
>
> Just two examples:
>
> * <MAX|MAXA>.<D|S> will now correctly detect and propagate NaNs.
> * CLASS.<D|S> will now correcty detect NaN flavors, both their
> CPU FPU and MSA version.
>
> Signed-off-by: Thomas Schwinge <thomas@codesourcery.com>
> Signed-off-by: Maciej W. Rozycki <macro@codesourcery.com>
> Signed-off-by: Aleksandar Markovic <aleksandar.markovic@imgtec.com>
> ---
> target-mips/translate.c | 6 +++++-
> target-mips/translate_init.c | 3 ++-
> 2 files changed, 7 insertions(+), 2 deletions(-)
>
> diff --git a/target-mips/translate.c b/target-mips/translate.c
> index e934884..2cdd2bd 100644
> --- a/target-mips/translate.c
> +++ b/target-mips/translate.c
> @@ -20129,7 +20129,11 @@ void cpu_state_reset(CPUMIPSState *env)
> env->CP0_PageGrain = env->cpu_model->CP0_PageGrain;
> env->active_fpu.fcr0 = env->cpu_model->CP1_fcr0;
> env->active_fpu.fcr31 = env->cpu_model->CP1_fcr31;
> - set_snan_bit_is_one(1, &env->active_fpu.fp_status);
> + if ((env->active_fpu.fcr31 >> FCR31_NAN2008) & 1) {
> + set_snan_bit_is_one(0, &env->active_fpu.fp_status);
> + } else {
> + set_snan_bit_is_one(1, &env->active_fpu.fp_status);
> + }
> env->msair = env->cpu_model->MSAIR;
> env->insn_flags = env->cpu_model->insn_flags;
>
> diff --git a/target-mips/translate_init.c b/target-mips/translate_init.c
> index 1094baa..bae6183 100644
> --- a/target-mips/translate_init.c
> +++ b/target-mips/translate_init.c
> @@ -904,5 +904,6 @@ static void msa_reset(CPUMIPSState *env)
> /* clear float_status nan mode */
> set_default_nan_mode(0, &env->active_tc.msa_fp_status);
>
> - set_snan_bit_is_one(1, &env->active_tc.msa_fp_status);
> + /* set proper signanling bit meaning ("1" means "quiet") */
> + set_snan_bit_is_one(0, &env->active_tc.msa_fp_status);
> }
To support r3, specifically writable {NAN,ABS}2008 bits, we will need to
restore snan_bit_is_one in more places than just reset (for example
after migration), which suggests that the code in this patch deserves to
be placed in a separate function, just like it was done originally.
Also, having the fcr31_rw_bitmask would nicely clean up the fcr31
handling in helper_ctc1.
If you plan to do that later then that's OK as far as I'm concerned, but
if those changes (which were already posted and not that big) were
included here from the beginning then we would avoid having to rework
above code.
Thanks,
Leon
WARNING: multiple messages have this Message-ID (diff)
From: Leon Alrae <leon.alrae@imgtec.com>
To: Aleksandar Markovic <aleksandar.markovic@rt-rk.com>
Cc: qemu-devel@nongnu.org, peter.maydell@linaro.org,
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 v5 5/9] target-mips: Activate IEEE 274-2008 signaling NaN bit meaning
Date: Fri, 29 Apr 2016 16:06:43 +0100 [thread overview]
Message-ID: <57237883.1020508@imgtec.com> (raw)
In-Reply-To: <1460995422-14373-6-git-send-email-aleksandar.markovic@rt-rk.com>
On 18/04/16 17:03, Aleksandar Markovic wrote:
> From: Aleksandar Markovic <aleksandar.markovic@imgtec.com>
>
> Functions mips_cpu_reset() and msa_reset() are updated so that flag
> snan_bit_is_one is properly set for any Mips FPU/MSA configuration.
> For main FPUs, CPUs with FCR31's FCR31_NAN2008 bit set will invoke
> set_snan_bit_is_one(0). For MSA, as it is IEEE 274-2008 compliant
> from it inception, set_snan_bit_is_one(0) will always be invoked.
>
> By applying this patch, a number of incorrect behaviors for CPU
> configurations that require IEEE 274-2008 compliance will be fixed.
> Those are behaviors that (up to the moment of applying this patch)
> did not get the desired functionality from SoftFloat library with
> respect to distinguishing between quiet and signaling NaN, getting
> default NaN values (both quiet and signaling), establishing if a
> floating point number is Nan or not, etc.
>
> Just two examples:
>
> * <MAX|MAXA>.<D|S> will now correctly detect and propagate NaNs.
> * CLASS.<D|S> will now correcty detect NaN flavors, both their
> CPU FPU and MSA version.
>
> Signed-off-by: Thomas Schwinge <thomas@codesourcery.com>
> Signed-off-by: Maciej W. Rozycki <macro@codesourcery.com>
> Signed-off-by: Aleksandar Markovic <aleksandar.markovic@imgtec.com>
> ---
> target-mips/translate.c | 6 +++++-
> target-mips/translate_init.c | 3 ++-
> 2 files changed, 7 insertions(+), 2 deletions(-)
>
> diff --git a/target-mips/translate.c b/target-mips/translate.c
> index e934884..2cdd2bd 100644
> --- a/target-mips/translate.c
> +++ b/target-mips/translate.c
> @@ -20129,7 +20129,11 @@ void cpu_state_reset(CPUMIPSState *env)
> env->CP0_PageGrain = env->cpu_model->CP0_PageGrain;
> env->active_fpu.fcr0 = env->cpu_model->CP1_fcr0;
> env->active_fpu.fcr31 = env->cpu_model->CP1_fcr31;
> - set_snan_bit_is_one(1, &env->active_fpu.fp_status);
> + if ((env->active_fpu.fcr31 >> FCR31_NAN2008) & 1) {
> + set_snan_bit_is_one(0, &env->active_fpu.fp_status);
> + } else {
> + set_snan_bit_is_one(1, &env->active_fpu.fp_status);
> + }
> env->msair = env->cpu_model->MSAIR;
> env->insn_flags = env->cpu_model->insn_flags;
>
> diff --git a/target-mips/translate_init.c b/target-mips/translate_init.c
> index 1094baa..bae6183 100644
> --- a/target-mips/translate_init.c
> +++ b/target-mips/translate_init.c
> @@ -904,5 +904,6 @@ static void msa_reset(CPUMIPSState *env)
> /* clear float_status nan mode */
> set_default_nan_mode(0, &env->active_tc.msa_fp_status);
>
> - set_snan_bit_is_one(1, &env->active_tc.msa_fp_status);
> + /* set proper signanling bit meaning ("1" means "quiet") */
> + set_snan_bit_is_one(0, &env->active_tc.msa_fp_status);
> }
To support r3, specifically writable {NAN,ABS}2008 bits, we will need to
restore snan_bit_is_one in more places than just reset (for example
after migration), which suggests that the code in this patch deserves to
be placed in a separate function, just like it was done originally.
Also, having the fcr31_rw_bitmask would nicely clean up the fcr31
handling in helper_ctc1.
If you plan to do that later then that's OK as far as I'm concerned, but
if those changes (which were already posted and not that big) were
included here from the beginning then we would avoid having to rework
above code.
Thanks,
Leon
next prev parent reply other threads:[~2016-04-29 15:07 UTC|newest]
Thread overview: 44+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-04-18 16:03 [Qemu-arm] [PATCH v5 0/9] target-mips: Initiate IEEE 754-2008 support for Mips Aleksandar Markovic
2016-04-18 16:03 ` [Qemu-devel] " Aleksandar Markovic
2016-04-18 16:03 ` [Qemu-arm] [PATCH v5 1/9] softfloat: Implement run-time-configurable meaning of signaling NaN bit Aleksandar Markovic
2016-04-18 16:03 ` [Qemu-devel] " Aleksandar Markovic
2016-04-29 13:49 ` [Qemu-arm] " Leon Alrae
2016-04-29 13:49 ` [Qemu-devel] " Leon Alrae
2016-04-18 16:03 ` [Qemu-arm] [PATCH v5 2/9] softfloat: For Mips only, correct default NaN values Aleksandar Markovic
2016-04-18 16:03 ` [Qemu-devel] " Aleksandar Markovic
2016-04-29 13:59 ` [Qemu-arm] " Leon Alrae
2016-04-29 13:59 ` [Qemu-devel] " Leon Alrae
2016-04-18 16:03 ` [Qemu-arm] [PATCH v5 3/9] softfloat: For Mips only, correct order in pickNaNMulAdd() Aleksandar Markovic
2016-04-18 16:03 ` [Qemu-devel] " Aleksandar Markovic
2016-04-18 16:03 ` [Qemu-arm] [PATCH v5 4/9] target-mips: Amend processor definitions in relation to FCR31 Aleksandar Markovic
2016-04-18 16:03 ` [Qemu-devel] " Aleksandar Markovic
2016-04-29 14:07 ` [Qemu-arm] " Leon Alrae
2016-04-29 14:07 ` [Qemu-devel] " Leon Alrae
2016-04-18 16:03 ` [Qemu-arm] [PATCH v5 5/9] target-mips: Activate IEEE 274-2008 signaling NaN bit meaning Aleksandar Markovic
2016-04-18 16:03 ` [Qemu-devel] " Aleksandar Markovic
2016-04-25 14:06 ` [Qemu-arm] " Maciej W. Rozycki
2016-04-25 14:06 ` [Qemu-devel] " Maciej W. Rozycki
2016-04-25 17:10 ` [Qemu-arm] " Aleksandar Markovic
2016-04-25 17:10 ` [Qemu-devel] " Aleksandar Markovic
2016-04-29 14:21 ` [Qemu-arm] " Maciej W. Rozycki
2016-04-29 14:21 ` [Qemu-devel] " Maciej W. Rozycki
2016-04-29 15:06 ` Leon Alrae [this message]
2016-04-29 15:06 ` Leon Alrae
2016-04-18 16:03 ` [Qemu-arm] [PATCH v5 6/9] target-mips: Add abs2008 flavor of <ABS|NEG>.<S|D> Aleksandar Markovic
2016-04-18 16:03 ` [Qemu-devel] " Aleksandar Markovic
2016-04-18 16:03 ` [Qemu-devel] [PATCH v5 7/9] target-mips: Add nan2008 flavor of <CEIL|CVT|FLOOR|ROUND|TRUNC>.<L|W>.<S|D> Aleksandar Markovic
2016-04-18 16:03 ` Aleksandar Markovic
2016-04-18 17:32 ` [Qemu-arm] " Aleksandar Markovic
2016-04-18 17:32 ` [Qemu-devel] " Aleksandar Markovic
2016-04-29 15:23 ` [Qemu-arm] " Leon Alrae
2016-04-29 15:23 ` [Qemu-devel] " Leon Alrae
2016-05-04 11:28 ` [Qemu-arm] " Aleksandar Markovic
2016-05-04 11:28 ` [Qemu-devel] " Aleksandar Markovic
2016-05-04 14:07 ` Maciej W. Rozycki
2016-05-04 14:07 ` Maciej W. Rozycki
2016-04-18 16:03 ` [Qemu-arm] [PATCH v5 8/9] target-mips: Clean up position and order of helpers for CVT.<L|W>.<S|D> Aleksandar Markovic
2016-04-18 16:03 ` [Qemu-devel] " Aleksandar Markovic
2016-04-18 16:03 ` [Qemu-arm] [PATCH v5 9/9] target-mips: Clean up position of abs2008/nan2008 cases in genfarith() Aleksandar Markovic
2016-04-18 16:03 ` [Qemu-devel] " Aleksandar Markovic
2016-04-19 9:07 ` [Qemu-arm] " Aleksandar Markovic
2016-04-19 9:07 ` [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=57237883.1020508@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=peter.maydell@linaro.org \
--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.