4b6903ec2f
* runtime/normalize.c (almostone_r4, almostone_r8): Fix parameter list. * intrinsics/random.c (KISS_DEFAULT_SEED): Remove extra semicolon. * io/transfer.c: Do not use empty initializers for global objects. Add missing initializers. * io/lock.c: Do not use empty initializers for global objects. * io/close.c: Add missing initializers. * runtime/environ.c: Add missing initializers. Do not use empty initializers for global object. (init_string): Mark argument as unused. * runtime/main.c (cleanup): Fix parameter list. * io/io.h: Fix parameter lists. * m4/transpose.m4, m4/matmul.m4: Fix pointer cast to avoid warning. * generated/transpose_c4.c, generated/transpose_c8.c, generated/transpose_i4.c, generated/transpose_i8.c, generated/matmul_c4.c, generated/matmul_c8.c, generated/matmul_i4.c, generated/matmul_i8.c, generated/matmul_r4.c, generated/matmul_r8.c: Regenerated. * io/write.c (nml_write_obj): Fix 64-bit problem. * io/list_read.c (nml_get_obj_data): Add missing braces around initializer to avoid warnings. * intrinsics/etime.c (etime_sub): Remove unused variable. From-SVN: r99719
121 lines
3.0 KiB
C
121 lines
3.0 KiB
C
/* Nelper routines to convert from integer to real.
|
|
Copyright 2004, 2005 Free Software Foundation, Inc.
|
|
Contributed by Paul Brook.
|
|
|
|
This file is part of the GNU Fortran 95 runtime library (libgfortran).
|
|
|
|
Libgfortran is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
In addition to the permissions in the GNU General Public License, the
|
|
Free Software Foundation gives you unlimited permission to link the
|
|
compiled version of this file into combinations with other programs,
|
|
and to distribute those combinations without any restriction coming
|
|
from the use of this file. (The General Public License restrictions
|
|
do apply in other respects; for example, they cover modification of
|
|
the file, and distribution when not linked into a combine
|
|
executable.)
|
|
|
|
Ligbfortran 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 General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public
|
|
License along with libgfortran; see the file COPYING. If not,
|
|
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
Boston, MA 02111-1307, USA. */
|
|
#include <math.h>
|
|
#include "libgfortran.h"
|
|
|
|
/* These routines can be sensitive to excess precision, so should really be
|
|
compiled with -ffloat-store. */
|
|
|
|
/* Return the largest value less than one representable in a REAL*4. */
|
|
|
|
static inline GFC_REAL_4
|
|
almostone_r4 (void)
|
|
{
|
|
#ifdef HAVE_NEXTAFTERF
|
|
return nextafterf (1.0f, 0.0f);
|
|
#else
|
|
/* The volatile is a hack to prevent excess precision on x86. */
|
|
static volatile GFC_REAL_4 val = 0.0f;
|
|
GFC_REAL_4 x;
|
|
|
|
if (val != 0.0f)
|
|
return val;
|
|
|
|
val = 0.9999f;
|
|
do
|
|
{
|
|
x = val;
|
|
val = (val + 1.0f) / 2.0f;
|
|
}
|
|
while (val > x && val < 1.0f);
|
|
if (val == 1.0f)
|
|
val = x;
|
|
return val;
|
|
#endif
|
|
}
|
|
|
|
|
|
/* Return the largest value less than one representable in a REAL*8. */
|
|
|
|
static inline GFC_REAL_8
|
|
almostone_r8 (void)
|
|
{
|
|
#ifdef HAVE_NEXTAFTER
|
|
return nextafter (1.0, 0.0);
|
|
#else
|
|
static volatile GFC_REAL_8 val = 0.0;
|
|
GFC_REAL_8 x;
|
|
|
|
if (val != 0.0)
|
|
return val;
|
|
|
|
val = 0.9999;
|
|
do
|
|
{
|
|
x = val;
|
|
val = (val + 1.0) / 2.0;
|
|
}
|
|
while (val > x && val < 1.0);
|
|
if (val == 1.0)
|
|
val = x;
|
|
return val;
|
|
#endif
|
|
}
|
|
|
|
|
|
/* Convert an unsigned integer in the range [0..x] into a
|
|
real the range [0..1). */
|
|
|
|
GFC_REAL_4
|
|
normalize_r4_i4 (GFC_UINTEGER_4 i, GFC_UINTEGER_4 x)
|
|
{
|
|
GFC_REAL_4 r;
|
|
|
|
r = (GFC_REAL_4) i / (GFC_REAL_4) x;
|
|
if (r == 1.0f)
|
|
r = almostone_r4 ();
|
|
return r;
|
|
}
|
|
|
|
|
|
/* Convert an unsigned integer in the range [0..x] into a
|
|
real the range [0..1). */
|
|
|
|
GFC_REAL_8
|
|
normalize_r8_i8 (GFC_UINTEGER_8 i, GFC_UINTEGER_8 x)
|
|
{
|
|
GFC_REAL_8 r;
|
|
|
|
r = (GFC_REAL_8) i / (GFC_REAL_8) x;
|
|
if (r == 1.0)
|
|
r = almostone_r8 ();
|
|
return r;
|
|
}
|