patches/glibc/2.3.5/glibc-fp-byteorder.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sat Feb 24 11:00:05 2007 +0000 (2007-02-24)
changeset 1 eeea35fbf182
permissions -rw-r--r--
Add the full crosstool-NG sources to the new repository of its own.
You might just say: 'Yeah! crosstool-NG's got its own repo!".
Unfortunately, that's because the previous repo got damaged beyond repair and I had no backup.
That means I'm putting backups in place in the afternoon.
That also means we've lost history... :-(
yann@1
     1
Taken from http://sources.redhat.com/ml/crossgcc/2004-02/msg00104.html
yann@1
     2
Author: addsub@eyou.com
yann@1
     3
Target: ARM
yann@1
     4
yann@1
     5
Fixes http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/gcc.c-torture/execute/920501-8.c
yann@1
     6
and makes printf("%f", 1.0) work.
yann@1
     7
yann@1
     8
Lennert Buytenhek wrote in http://sources.redhat.com/ml/crossgcc/2004-09/msg00115.html :
yann@1
     9
 It ... fixes the 'printf("%f\n", 0.5); prints 0.000000' and general 'floating point
yann@1
    10
 is broken' on my big-endian hardfloat FPA ARM platform. ...
yann@1
    11
 It's definitely needed for hardfloat.  So I'd think it's needed for
yann@1
    12
 big-endian systems in any case, and for VFP on little-endian systems
yann@1
    13
 too.  Someone would have to verify that though.
yann@1
    14
yann@1
    15
Lennert Buytenhek wrote in http://sources.redhat.com/ml/crossgcc/2004-09/msg00123.html
yann@1
    16
 I just had a look at glibc-20040830, and [this patch] is still needed and useful
yann@1
    17
 for this version.  glibc-20040830 out-of-the-box still contains the
yann@1
    18
 following wrong assumptions:
yann@1
    19
 - sysdeps/arm/bits/endian.h: float word order is big endian (which it is
yann@1
    20
   not on vfp systems)
yann@1
    21
 - sysdeps/arm/gmp-mparam.h: IEEE doubles are mixed endian (which they
yann@1
    22
   are not on big endian systems, neither on vfp systems)
yann@1
    23
 - sysdeps/arm/ieee754.h: IEEE doubles are in little endian byte order
yann@1
    24
   (which they are not on big endian systems)
yann@1
    25
 [This patch] seems the right solution for all of these issues.
yann@1
    26
yann@1
    27
Dimitry Andric wrote in http://sources.redhat.com/ml/crossgcc/2004-09/msg00132.html :
yann@1
    28
 It's even needed for glibc CVS, AFAICS.
yann@1
    29
 The patch hunk which modifies glibc.new/sysdeps/arm/bits/endian.h
yann@1
    30
 (currently at version 1.4) is only needed for proper VFP operation.
yann@1
    31
 But the hunk which modifies sysdeps/arm/gmp-mparam.h, and the hunk
yann@1
    32
 that deletes sysdeps/arm/ieee754.h (yes, this IS correct), are needed
yann@1
    33
 for proper operation of *any* FP model on big endian ARM.
yann@1
    34
yann@1
    35
See also discussion in followups to
yann@1
    36
http://sources.redhat.com/ml/crossgcc/2004-05/msg00245.html)
yann@1
    37
yann@1
    38
Message-ID: <276985760.37584@eyou.com>
yann@1
    39
Received: from unknown (HELO eyou.com) (172.16.2.2)
yann@1
    40
 by 0.0.0.0 with SMTP; Tue, 17 Feb 2004 10:42:40 +0800
yann@1
    41
Received: (qmail 8238 invoked by uid 65534); 17 Feb 2004 10:42:38 +0800
yann@1
    42
Date: 17 Feb 2004 10:42:38 +0800
yann@1
    43
Message-ID: <20040217104238.8237.qmail@eyou.com>
yann@1
    44
From: "add" <addsub@eyou.com>
yann@1
    45
To: dank@kegel.com
yann@1
    46
Reply-To: "add" <addsub@eyou.com>
yann@1
    47
Subject: Re:&nbsp;&nbsp;&nbsp;problem&nbsp;while&nbsp;building&nbsp;arm&nbsp;vfp&nbsp;softfloat&nbsp;gcc&nbsp;`
yann@1
    48
yann@1
    49
Hi, Dan, This is a patch I applied to my glibc-2.3.2, then my softfloat
yann@1
    50
toolchain can printf("%f\n",1.0). So you may have a try of this
yann@1
    51
yann@1
    52
yann@1
    53
diff -uNrp glibc.old/sysdeps/arm/bits/endian.h glibc.new/sysdeps/arm/bits/endian.h
yann@1
    54
--- glibc.old/sysdeps/arm/bits/endian.h	1999-04-12 11:59:13.000000000 -0400
yann@1
    55
+++ glibc.new/sysdeps/arm/bits/endian.h	2004-02-12 09:15:13.000000000 -0500
yann@1
    56
@@ -9,4 +9,9 @@
yann@1
    57
 #else
yann@1
    58
 #define __BYTE_ORDER __LITTLE_ENDIAN
yann@1
    59
 #endif
yann@1
    60
+
yann@1
    61
+#ifdef __VFP_FP__
yann@1
    62
+#define __FLOAT_WORD_ORDER __BYTE_ORDER
yann@1
    63
+#else
yann@1
    64
 #define __FLOAT_WORD_ORDER __BIG_ENDIAN
yann@1
    65
+#endif
yann@1
    66
diff -uNrp glibc.old/sysdeps/arm/gmp-mparam.h glibc.new/sysdeps/arm/gmp-mparam.h
yann@1
    67
--- glibc.old/sysdeps/arm/gmp-mparam.h	2001-07-07 15:21:19.000000000 -0400
yann@1
    68
+++ glibc.new/sysdeps/arm/gmp-mparam.h	2004-02-12 09:15:13.000000000 -0500
yann@1
    69
@@ -26,5 +26,13 @@ MA 02111-1307, USA. */
yann@1
    70
 #define BITS_PER_SHORTINT 16
yann@1
    71
 #define BITS_PER_CHAR 8
yann@1
    72
 
yann@1
    73
-#define IEEE_DOUBLE_BIG_ENDIAN 0
yann@1
    74
-#define IEEE_DOUBLE_MIXED_ENDIAN 1
yann@1
    75
+#if defined(__ARMEB__)
yann@1
    76
+# define IEEE_DOUBLE_MIXED_ENDIAN 0
yann@1
    77
+# define IEEE_DOUBLE_BIG_ENDIAN 1
yann@1
    78
+#elif defined(__VFP_FP__)
yann@1
    79
+# define IEEE_DOUBLE_MIXED_ENDIAN 0
yann@1
    80
+# define IEEE_DOUBLE_BIG_ENDIAN 0
yann@1
    81
+#else
yann@1
    82
+# define IEEE_DOUBLE_BIG_ENDIAN 0
yann@1
    83
+# define IEEE_DOUBLE_MIXED_ENDIAN 1
yann@1
    84
+#endif
yann@1
    85
diff -uNrp glibc.old/sysdeps/arm/ieee754.h glibc.new/sysdeps/arm/ieee754.h
yann@1
    86
--- glibc.old/sysdeps/arm/ieee754.h	2001-07-07 15:21:19.000000000 -0400
yann@1
    87
+++ glibc.new/sysdeps/arm/ieee754.h	1969-12-31 19:00:00.000000000 -0500
yann@1
    88
@@ -1,115 +0,0 @@
yann@1
    89
-/* Copyright (C) 1992, 1995, 1996, 1998 Free Software Foundation, Inc.
yann@1
    90
-   This file is part of the GNU C Library.
yann@1
    91
-
yann@1
    92
-   The GNU C Library is free software; you can redistribute it and/or
yann@1
    93
-   modify it under the terms of the GNU Lesser General Public
yann@1
    94
-   License as published by the Free Software Foundation; either
yann@1
    95
-   version 2.1 of the License, or (at your option) any later version.
yann@1
    96
-
yann@1
    97
-   The GNU C Library is distributed in the hope that it will be useful,
yann@1
    98
-   but WITHOUT ANY WARRANTY; without even the implied warranty of
yann@1
    99
-   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
yann@1
   100
-   Lesser General Public License for more details.
yann@1
   101
-
yann@1
   102
-   You should have received a copy of the GNU Lesser General Public
yann@1
   103
-   License along with the GNU C Library; if not, write to the Free
yann@1
   104
-   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
yann@1
   105
-   02111-1307 USA.  */
yann@1
   106
-
yann@1
   107
-#ifndef _IEEE754_H
yann@1
   108
-
yann@1
   109
-#define _IEEE754_H 1
yann@1
   110
-#include <features.h>
yann@1
   111
-
yann@1
   112
-#include <endian.h>
yann@1
   113
-
yann@1
   114
-__BEGIN_DECLS
yann@1
   115
-
yann@1
   116
-union ieee754_float
yann@1
   117
-  {
yann@1
   118
-    float f;
yann@1
   119
-
yann@1
   120
-    /* This is the IEEE 754 single-precision format.  */
yann@1
   121
-    struct
yann@1
   122
-      {
yann@1
   123
-	unsigned int mantissa:23;
yann@1
   124
-	unsigned int exponent:8;
yann@1
   125
-	unsigned int negative:1;
yann@1
   126
-      } ieee;
yann@1
   127
-
yann@1
   128
-    /* This format makes it easier to see if a NaN is a signalling NaN.  */
yann@1
   129
-    struct
yann@1
   130
-      {
yann@1
   131
-	unsigned int mantissa:22;
yann@1
   132
-	unsigned int quiet_nan:1;
yann@1
   133
-	unsigned int exponent:8;
yann@1
   134
-	unsigned int negative:1;
yann@1
   135
-      } ieee_nan;
yann@1
   136
-  };
yann@1
   137
-
yann@1
   138
-#define IEEE754_FLOAT_BIAS	0x7f /* Added to exponent.  */
yann@1
   139
-
yann@1
   140
-
yann@1
   141
-union ieee754_double
yann@1
   142
-  {
yann@1
   143
-    double d;
yann@1
   144
-
yann@1
   145
-    /* This is the IEEE 754 double-precision format.  */
yann@1
   146
-    struct
yann@1
   147
-      {
yann@1
   148
-	unsigned int mantissa0:20;
yann@1
   149
-	unsigned int exponent:11;
yann@1
   150
-	unsigned int negative:1;
yann@1
   151
-	unsigned int mantissa1:32;
yann@1
   152
-      } ieee;
yann@1
   153
-
yann@1
   154
-    /* This format makes it easier to see if a NaN is a signalling NaN.  */
yann@1
   155
-    struct
yann@1
   156
-      {
yann@1
   157
-	unsigned int mantissa0:19;
yann@1
   158
-	unsigned int quiet_nan:1;
yann@1
   159
-	unsigned int exponent:11;
yann@1
   160
-	unsigned int negative:1;
yann@1
   161
-	unsigned int mantissa1:32;
yann@1
   162
-      } ieee_nan;
yann@1
   163
-  };
yann@1
   164
-
yann@1
   165
-#define IEEE754_DOUBLE_BIAS	0x3ff /* Added to exponent.  */
yann@1
   166
-
yann@1
   167
-
yann@1
   168
-/* The following two structures are correct for `new' floating point systems but
yann@1
   169
-   wrong for the old FPPC.  The only solution seems to be to avoid their use on
yann@1
   170
-   old hardware.  */
yann@1
   171
-
yann@1
   172
-union ieee854_long_double
yann@1
   173
-  {
yann@1
   174
-    long double d;
yann@1
   175
-
yann@1
   176
-    /* This is the IEEE 854 double-extended-precision format.  */
yann@1
   177
-    struct
yann@1
   178
-      {
yann@1
   179
-	unsigned int exponent:15;
yann@1
   180
-	unsigned int empty:16;
yann@1
   181
-	unsigned int negative:1;
yann@1
   182
-	unsigned int mantissa1:32;
yann@1
   183
-	unsigned int mantissa0:32;
yann@1
   184
-      } ieee;
yann@1
   185
-
yann@1
   186
-    /* This is for NaNs in the IEEE 854 double-extended-precision format.  */
yann@1
   187
-    struct
yann@1
   188
-      {
yann@1
   189
-	unsigned int exponent:15;
yann@1
   190
-	unsigned int empty:16;
yann@1
   191
-	unsigned int negative:1;
yann@1
   192
-	unsigned int mantissa1:32;
yann@1
   193
-	unsigned int mantissa0:30;
yann@1
   194
-	unsigned int quiet_nan:1;
yann@1
   195
-	unsigned int one:1;
yann@1
   196
-      } ieee_nan;
yann@1
   197
-  };
yann@1
   198
-
yann@1
   199
-#define IEEE854_LONG_DOUBLE_BIAS 0x3fff
yann@1
   200
-
yann@1
   201
-__END_DECLS
yann@1
   202
-
yann@1
   203
-#endif /* ieee754.h */