qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Aleksandar Markovic <aleksandar.markovic@rt-rk.com>
To: 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,
	leon.alrae@imgtec.com, afaerber@suse.de, aurelien@aurel32.net,
	rth@twiddle.net, maciej.rozycki@imgtec.com
Subject: [Qemu-devel] [PATCH v4 4/9] softfloat: Clean up hex constants capitalization in softfloat-specialize.h
Date: Tue, 12 Apr 2016 14:58:06 +0200	[thread overview]
Message-ID: <1460465891-6142-5-git-send-email-aleksandar.markovic@rt-rk.com> (raw)
In-Reply-To: <1460465891-6142-1-git-send-email-aleksandar.markovic@rt-rk.com>

From: Aleksandar Markovic <aleksandar.markovic@imgtec.com>

With this partch, capitals A, B, C, D, E, F are always used for hex
constants in softfloat-specialize.h. The large latter size is chosen
just beacause it is currently prevalent in this file.

Signed-off-by: Aleksandar Markovic <aleksandar.markovic@imgtec.com>
---
 fpu/softfloat-specialize.h |   34 +++++++++++++++++-----------------
 1 file changed, 17 insertions(+), 17 deletions(-)

diff --git a/fpu/softfloat-specialize.h b/fpu/softfloat-specialize.h
index 807ecc0..a5680e0 100644
--- a/fpu/softfloat-specialize.h
+++ b/fpu/softfloat-specialize.h
@@ -230,7 +230,7 @@ int float16_is_quiet_nan(float16 a_, float_status *status)
     if (status->snan_bit_is_one) {
         return (((a >> 9) & 0x3F) == 0x3E) && (a & 0x1FF);
     } else {
-        return ((a & ~0x8000) >= 0x7c80);
+        return ((a & ~0x8000) >= 0x7C80);
     }
 }
 
@@ -243,7 +243,7 @@ int float16_is_signaling_nan(float16 a_, float_status *status)
 {
     uint16_t a = float16_val(a_);
     if (status->snan_bit_is_one) {
-        return ((a & ~0x8000) >= 0x7c80);
+        return ((a & ~0x8000) >= 0x7C80);
     } else {
         return (((a >> 9) & 0x3F) == 0x3E) && (a & 0x1FF);
     }
@@ -328,9 +328,9 @@ int float32_is_quiet_nan( float32 a_, float_status *status )
 {
     uint32_t a = float32_val(a_);
     if (status->snan_bit_is_one) {
-        return (((a >> 22) & 0x1ff) == 0x1fe) && (a & 0x003fffff);
+        return (((a >> 22) & 0x1FF) == 0x1FE) && (a & 0x003FFFFF);
     } else {
-        return ((uint32_t)(a << 1) >= 0xff800000);
+        return ((uint32_t)(a << 1) >= 0xFF800000);
     }
 }
 
@@ -343,7 +343,7 @@ int float32_is_signaling_nan( float32 a_, float_status *status )
 {
     uint32_t a = float32_val(a_);
     if (status->snan_bit_is_one) {
-        return ((uint32_t)(a << 1) >= 0xff800000);
+        return ((uint32_t)(a << 1) >= 0xFF800000);
     } else {
         return ( ( ( a>>22 ) & 0x1FF ) == 0x1FE ) && ( a & 0x003FFFFF );
     }
@@ -758,10 +758,10 @@ int float64_is_quiet_nan( float64 a_, float_status *status)
 {
     uint64_t a = float64_val(a_);
     if (status->snan_bit_is_one) {
-        return (((a >> 51) & 0xfff) == 0xffe)
-               && (a & 0x0007ffffffffffffULL);
+        return (((a >> 51) & 0xFFF) == 0xFFE)
+               && (a & 0x0007FFFFFFFFFFFFULL);
     } else {
-        return ((a << 1) >= 0xfff0000000000000ULL);
+        return ((a << 1) >= 0xFFF0000000000000ULL);
     }
 }
 
@@ -774,7 +774,7 @@ int float64_is_signaling_nan( float64 a_, float_status *status )
 {
     uint64_t a = float64_val(a_);
     if (status->snan_bit_is_one) {
-        return ((a << 1) >= 0xfff0000000000000ULL);
+        return ((a << 1) >= 0xFFF0000000000000ULL);
     } else {
         return
                ( ( ( a>>51 ) & 0xFFF ) == 0xFFE )
@@ -961,7 +961,7 @@ int floatx80_is_quiet_nan( floatx80 a, float_status *status )
         uint64_t aLow;
 
         aLow = a.low & ~0x4000000000000000ULL;
-        return ((a.high & 0x7fff) == 0x7fff)
+        return ((a.high & 0x7FFF) == 0x7FFF)
             && (aLow << 1)
             && (a.low == aLow);
     } else {
@@ -979,7 +979,7 @@ int floatx80_is_quiet_nan( floatx80 a, float_status *status )
 int floatx80_is_signaling_nan( floatx80 a, float_status *status )
 {
     if (status->snan_bit_is_one) {
-        return ((a.high & 0x7fff) == 0x7fff)
+        return ((a.high & 0x7FFF) == 0x7FFF)
             && ((a.low << 1) >= 0x8000000000000000ULL);
     } else {
         uint64_t aLow;
@@ -1120,12 +1120,12 @@ int float128_is_signaling_nan(float128 a_, float_status *status)
 int float128_is_quiet_nan( float128 a, float_status *status )
 {
     if (status->snan_bit_is_one) {
-        return (((a.high >> 47) & 0xffff) == 0xfffe)
-            && (a.low || (a.high & 0x00007fffffffffffULL));
+        return (((a.high >> 47) & 0xFFFF) == 0xFFFE)
+            && (a.low || (a.high & 0x00007FFFFFFFFFFFULL));
     } else {
         return
-            ((a.high << 1) >= 0xffff000000000000ULL)
-            && (a.low || (a.high & 0x0000ffffffffffffULL));
+            ((a.high << 1) >= 0xFFFF000000000000ULL)
+            && (a.low || (a.high & 0x0000FFFFFFFFFFFFULL));
     }
 }
 
@@ -1138,8 +1138,8 @@ int float128_is_signaling_nan( float128 a, float_status *status )
 {
     if (status->snan_bit_is_one) {
         return
-            ((a.high << 1) >= 0xffff000000000000ULL)
-            && (a.low || (a.high & 0x0000ffffffffffffULL));
+            ((a.high << 1) >= 0xFFFF000000000000ULL)
+            && (a.low || (a.high & 0x0000FFFFFFFFFFFFULL));
     } else {
         return
                ( ( ( a.high>>47 ) & 0xFFFF ) == 0xFFFE )
-- 
1.7.9.5

  parent reply	other threads:[~2016-04-12 12:58 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-04-12 12:58 [Qemu-devel] [PATCH v4 0/9] target-mips: Initiate IEEE 754-2008 support Aleksandar Markovic
2016-04-12 12:58 ` [Qemu-devel] [PATCH v4 1/9] softfloat: Implement run-time-configurable meaning of signaling NaN bit Aleksandar Markovic
2016-04-12 18:45   ` Eduardo Habkost
2016-04-13 18:41     ` Aleksandar Markovic
2016-04-13 19:04       ` Eduardo Habkost
2016-04-13 12:11   ` Leon Alrae
2016-04-14 15:31   ` Leon Alrae
2016-04-15  8:48     ` Aleksandar Markovic
2016-04-15 10:41       ` Leon Alrae
2016-04-15 11:38         ` Aleksandar Markovic
2016-04-17 18:21           ` Aleksandar Markovic
2016-04-12 12:58 ` [Qemu-devel] [PATCH v4 2/9] softfloat: For Mips only, correct default NaN values Aleksandar Markovic
2016-04-13 12:23   ` Leon Alrae
2016-04-12 12:58 ` [Qemu-devel] [PATCH v4 3/9] softfloat: For Mips only, correct order in pickNaNMulAdd() Aleksandar Markovic
2016-04-13 12:47   ` Leon Alrae
2016-04-13 13:53     ` Aleksandar Markovic
2016-04-12 12:58 ` Aleksandar Markovic [this message]
2016-04-12 12:58 ` [Qemu-devel] [PATCH v4 5/9] softfloat: Clean up white spaces in softfloat-specialize.h Aleksandar Markovic
2016-04-12 12:58 ` [Qemu-devel] [PATCH v4 6/9] target-mips: Activate IEEE 274-2008 support Aleksandar Markovic
2016-04-12 12:58 ` [Qemu-devel] [PATCH v4 7/9] target-mips: Add abs2008 flavor of <ABS|NEG>.<S|D> Aleksandar Markovic
2016-04-14 10:52   ` Leon Alrae
2016-04-12 12:58 ` [Qemu-devel] [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] [PATCH v4 9/9] target-mips: Clean up order of helpers for CVT.<L|W>.<S|D> 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=1460465891-6142-5-git-send-email-aleksandar.markovic@rt-rk.com \
    --to=aleksandar.markovic@rt-rk.com \
    --cc=afaerber@suse.de \
    --cc=agraf@suse.de \
    --cc=aleksandar.markovic@imgtec.com \
    --cc=aurelien@aurel32.net \
    --cc=blauwirbel@gmail.com \
    --cc=edgar.iglesias@gmail.com \
    --cc=gxt@mprc.pku.edu.cn \
    --cc=jcmvbkbc@gmail.com \
    --cc=kbastian@mail.uni-paderborn.de \
    --cc=leon.alrae@imgtec.com \
    --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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).