]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Consolidate constant defines into mpa.h
authorSiddhesh Poyarekar <siddhesh@redhat.com>
Wed, 16 Jan 2013 10:36:48 +0000 (16:06 +0530)
committerSiddhesh Poyarekar <siddhesh@redhat.com>
Wed, 16 Jan 2013 10:36:48 +0000 (16:06 +0530)
14 files changed:
ChangeLog
sysdeps/ieee754/dbl-64/atnat.h
sysdeps/ieee754/dbl-64/atnat2.h
sysdeps/ieee754/dbl-64/mpa.c
sysdeps/ieee754/dbl-64/mpa.h
sysdeps/ieee754/dbl-64/mpa2.h [deleted file]
sysdeps/ieee754/dbl-64/mpatan.h
sysdeps/ieee754/dbl-64/mpatan2.c
sysdeps/ieee754/dbl-64/mpexp.c
sysdeps/ieee754/dbl-64/mpexp.h [deleted file]
sysdeps/ieee754/dbl-64/mpsqrt.h
sysdeps/ieee754/dbl-64/mptan.c
sysdeps/ieee754/dbl-64/ulog.h
sysdeps/ieee754/dbl-64/utan.h

index e562b5b0a8dfa25e394496fbb7f1d9f4264366e3..78ab4abaad415a912654ebddb668a07816840797 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,25 @@
 2013-01-16  Siddhesh Poyarekar  <siddhesh@redhat.com>
 
+        * sysdeps/ieee754/dbl-64/atnat.h: Remove constant value
+        definitions.
+        * sysdeps/ieee754/dbl-64/atnat2.h: Likewise.
+        * sysdeps/ieee754/dbl-64/mpa.c: Do not include mpa2.h.
+        * sysdeps/ieee754/dbl-64/mpa.h: Move all constant value
+        definitions here.
+        * sysdeps/ieee754/dbl-64/mpa2.h: Remove.
+        * sysdeps/ieee754/dbl-64/mpatan.h: Remove constant value
+        definitions.
+        * sysdeps/ieee754/dbl-64/mpatan2.c (__mpatan2): Remove ZERO
+        and ONE.
+        * sysdeps/ieee754/dbl-64/mpexp.c: Do not include mpexp.h.
+        * sysdeps/ieee754/dbl-64/mpexp.h: Remove.
+        * sysdeps/ieee754/dbl-64/mpsqrt.h: Remove constant value
+        definitions.
+        * sysdeps/ieee754/dbl-64/mptan.c (__mptan): Remove MONE.
+        * sysdeps/ieee754/dbl-64/ulog.h: Remove constant value
+        definitions.
+        * sysdeps/ieee754/dbl-64/utan.h: Likewise.
+
        * sysdeps/ieee754/dbl-64/mpa2.h: Fix the value of TWO.
 
 2013-01-15  David S. Miller  <davem@davemloft.net>
index 2beb33b05dbf08e13025735676defc61da24e3f0..a1a3572f7c8537af8ce8d006a2ecb6aa37a94aed 100644 (file)
 #endif
 #endif
 
-#define  ZERO      0.0
-#define  ONE       1.0
 #define  A         a.d
 #define  B         b.d
 #define  C         c.d
 #define  U6        u6.d
 #define  U7        u7.d
 #define  U8        u8.d
-#define  TWO8      0x1.0p8     /* 2^8 */
-#define  TWO52     0x1.0p52    /* 2^52 */
 
 #endif
index 10b32535bc5283c21356def747b4e0629586b0f7..f12498bf3fd24362df8cf642b9d0bbe1d9c4c4ed 100644 (file)
 #endif
 #endif
 
-#define  ZERO      0.0         /* 0 */
-#define  MZERO     -0.0                /* 0 with the sign bit set */
-#define  ONE       1.0         /* 1 */
-#define  TWO8      0x1.0p8     /* 2^8 */
-#define  TWO52     0x1.0p52    /* 2^52 */
-#define  TWOM1022  0x1.0p-1022 /* 2^-1022 */
-
 #endif
index c882c8bc2ca90fd794ec10c0ec74639c1f6fd502..dffa9d849f9122108234e0ea21696051a62b9115 100644 (file)
@@ -44,7 +44,6 @@
 
 #include "endian.h"
 #include "mpa.h"
-#include "mpa2.h"
 #include <sys/param.h>
 
 #ifndef SECTION
index 77715fc05324c2f1f364461f42bf53ddb4001302..debb3b2a96e728f1cecb3f4096e3541b9150cad6 100644 (file)
@@ -82,6 +82,32 @@ extern const mp_no mptwo;
 
 #define ABS(x)   ((x) <  0  ? -(x) : (x))
 
+#define  RADIX     0x1.0p24            /* 2^24    */
+#define  RADIXI    0x1.0p-24           /* 2^-24   */
+#define  CUTTER    0x1.0p76            /* 2^76    */
+
+#define  ZERO      0.0                 /* 0       */
+#define  MZERO     -0.0                        /* 0 with the sign bit set */
+#define  ONE       1.0                 /* 1       */
+#define  MONE      -1.0                        /* -1      */
+#define  TWO       2.0                 /*  2      */
+
+#define  TWO5      0x1.0p5             /* 2^5     */
+#define  TWO8      0x1.0p8             /* 2^52    */
+#define  TWO10     0x1.0p10            /* 2^10    */
+#define  TWO18     0x1.0p18            /* 2^18    */
+#define  TWO19     0x1.0p19            /* 2^19    */
+#define  TWO23     0x1.0p23            /* 2^23    */
+#define  TWO52     0x1.0p52            /* 2^52    */
+#define  TWO57     0x1.0p57            /* 2^57    */
+#define  TWO71     0x1.0p71            /* 2^71    */
+#define  TWOM1032  0x1.0p-1032         /* 2^-1032 */
+#define  TWOM1022  0x1.0p-1022         /* 2^-1022 */
+
+#define  HALF      0x1.0p-1            /* 1/2 */
+#define  MHALF     -0x1.0p-1           /* -1/2 */
+#define  HALFRAD   0x1.0p23            /* 2^23 */
+
 int __acr (const mp_no *, const mp_no *, int);
 void __cpy (const mp_no *, mp_no *, int);
 void __mp_dbl (const mp_no *, double *, int);
diff --git a/sysdeps/ieee754/dbl-64/mpa2.h b/sysdeps/ieee754/dbl-64/mpa2.h
deleted file mode 100644 (file)
index a4a6bdd..0000000
+++ /dev/null
@@ -1,50 +0,0 @@
-
-/*
- * IBM Accurate Mathematical Library
- * Written by International Business Machines Corp.
- * Copyright (C) 2001-2013 Free Software Foundation, Inc.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation; either version 2.1 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program; if not, see <http://www.gnu.org/licenses/>.
- */
-
-/**************************************************************************/
-/*                                                                        */
-/* MODULE_NAME:mpa2.h                                                     */
-/*                                                                        */
-/*                                                                        */
-/*   variables prototype and definition   according to type of processor  */
-/*   types definition                                                     */
-/**************************************************************************/
-
-#ifndef MPA2_H
-#define MPA2_H
-
-#define  RADIX     0x1.0p24            /* 2^24    */
-#define  RADIXI    0x1.0p-24           /* 2^-24   */
-#define  CUTTER    0x1.0p76            /* 2^76    */
-#define  ZERO      0.0                 /* 0       */
-#define  ONE       1.0                 /* 1       */
-#define  MONE      -1.0                        /* -1      */
-#define  TWO       2.0                 /*  2      */
-#define  TWO5      0x1.0p5             /* 2^5     */
-#define  TWO10     0x1.0p10            /* 2^10    */
-#define  TWO18     0x1.0p18            /* 2^18    */
-#define  TWO19     0x1.0p19            /* 2^19    */
-#define  TWO23     0x1.0p23            /* 2^23    */
-#define  TWO52     0x1.0p52            /* 2^52    */
-#define  TWO57     0x1.0p57            /* 2^57    */
-#define  TWO71     0x1.0p71            /* 2^71    */
-#define  TWOM1032  0x1.0p-1032         /* 2^-1032 */
-
-#endif
index d8e758916e009c597a8f50f1bf07a7bb1b18bdfe..743a1b98c4e8123f00748ca98ef9193cc79e252f 100644 (file)
@@ -143,6 +143,3 @@ __atan_twonm1[33] = {                             /* 2n-1   */
 
 #endif
 #endif
-
-#define  ONE       1.0
-#define  TWO       2.0
index 9084d98d6a5ae65ece0e575ca02980230b29a8ab..c0b9aea1e2f998f78eec64c8124f03d9f3873cb3 100644 (file)
@@ -49,8 +49,6 @@ void
 SECTION
 __mpatan2(mp_no *y, mp_no *x, mp_no *z, int p) {
 
-  static const double ZERO = 0.0, ONE = 1.0;
-
   mp_no mpt1,mpt2,mpt3;
 
 
index feca23c9b673012de532c2660e0fc7c89faabcfc..aca6bf64573c1b61660c4cfb71da1be9e3fafbf0 100644 (file)
@@ -30,7 +30,6 @@
 
 #include "endian.h"
 #include "mpa.h"
-#include "mpexp.h"
 #include <assert.h>
 
 #ifndef SECTION
diff --git a/sysdeps/ieee754/dbl-64/mpexp.h b/sysdeps/ieee754/dbl-64/mpexp.h
deleted file mode 100644 (file)
index 401de58..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
- * IBM Accurate Mathematical Library
- * Written by International Business Machines Corp.
- * Copyright (C) 2001-2013 Free Software Foundation, Inc.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation; either version 2.1 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program; if not, see <http://www.gnu.org/licenses/>.
- */
-
-/******************************************************************/
-/*                                                                */
-/* MODULE_NAME:mpexp.h                                            */
-/*                                                                */
-/* common data and variables prototype and definition             */
-/******************************************************************/
-
-#ifndef MPEXP_H
-#define MPEXP_H
-
-#define  RADIX     0x1.0p24            /* 2^24 */
-#define  RADIXI    0x1.0p-24           /* 2^-24 */
-#define  ZERO      0.0                 /* 0 */
-#define  ONE       1.0                 /* 1 */
-#define  TWO       2.0                 /* 2 */
-#define  HALF      0x1.0p-1            /* 1/2 */
-
-#endif
index c7354970abcc2b4dd278255217c9ea761f3b2f45..2b83c4cbf81329b928a9edc5e7ac773694840814 100644 (file)
@@ -35,7 +35,4 @@ extern const int __mpsqrt_mp[33] attribute_hidden;
                             4,4,4,4,4,4,4,4,4};
 #endif
 
-#define  ONE       1.0         /* 1 */
-#define  HALFRAD   0x1.0p23    /* 2^23 */
-
 #endif
index 6e08b0dc8380fe4503f62067f38aaf706d812927..234108e373b89d3d52bbc608d8f9f601c57a4f57 100644 (file)
@@ -47,8 +47,6 @@ void
 SECTION
 __mptan(double x, mp_no *mpy, int p) {
 
-  static const double MONE = -1.0;
-
   int n;
   mp_no mpw, mpc, mps;
 
index 5afda3cda0fcc997ee933bbb1642b9dea2ca79a8..eec1eef6750bc4b4c5666a5d3b3670783b2d18b4 100644 (file)
 #endif
 #endif
 
-#define  ZERO      0.0         /* 0 */
-#define  ONE       1.0         /* 1 */
-#define  HALF      0x1.0p-1    /* 1/2 */
-#define  MHALF     -0x1.0p-1   /* -1/2 */
 #define  SQRT_2    sqrt_2.d
 #define  DEL_U     delu.d
 #define  DEL_V     delv.d
index 5ab573ea29d5a8e7d5c86cac02149982895de569..3bdeee1c4d0e23a1a6cf79838dc3751dbfe05950 100644 (file)
 #endif
 #endif
 
-
-#define  ZERO      0.0
-#define  ONE       1.0
-#define  MONE      -1.0
-#define  TWO8      0x1.0p8     /* 2^8 */
-
 #endif