1 /* Nelper routines to convert from integer to real.
2 Copyright 2004 Free Software Foundation, Inc.
3 Contributed by Paul Brook.
5 This file is part of the GNU Fortran 95 runtime library (libgfortran).
7 Libgfortran is free software; you can redistribute it and/or
8 modify it under the terms of the GNU General Public
9 License as published by the Free Software Foundation; either
10 version 2 of the License, or (at your option) any later version.
12 In addition to the permissions in the GNU General Public License, the
13 Free Software Foundation gives you unlimited permission to link the
14 compiled version of this file into combinations with other programs,
15 and to distribute those combinations without any restriction coming
16 from the use of this file. (The General Public License restrictions
17 do apply in other respects; for example, they cover modification of
18 the file, and distribution when not linked into a combine
21 Ligbfortran is distributed in the hope that it will be useful,
22 but WITHOUT ANY WARRANTY; without even the implied warranty of
23 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 GNU General Public License for more details.
26 You should have received a copy of the GNU General Public
27 License along with libgfortran; see the file COPYING. If not,
28 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
29 Boston, MA 02111-1307, USA. */
31 #include "libgfortran.h"
33 /* These routines can be sensitive to excess precision, so should really be
34 compiled with -ffloat-store. */
36 /* Return the largest value less than one representable in a REAL*4. */
38 static inline GFC_REAL_4
41 #ifdef HAVE_NEXTAFTERF
42 return nextafterf (1.0f
, 0.0f
);
44 /* The volatile is a hack to prevent excess precision on x86. */
45 static volatile GFC_REAL_4 val
= 0.0f
;
55 val
= (val
+ 1.0f
) / 2.0f
;
57 while (val
> x
&& val
< 1.0f
);
65 /* Return the largest value less than one representable in a REAL*8. */
67 static inline GFC_REAL_8
71 return nextafter (1.0, 0.0);
73 static volatile GFC_REAL_8 val
= 0.0;
83 val
= (val
+ 1.0) / 2.0;
85 while (val
> x
&& val
< 1.0);
93 /* Convert an unsigned integer in the range [0..x] into a
94 real the range [0..1). */
97 normalize_r4_i4 (GFC_UINTEGER_4 i
, GFC_UINTEGER_4 x
)
101 r
= (GFC_REAL_4
) i
/ (GFC_REAL_4
) x
;
108 /* Convert an unsigned integer in the range [0..x] into a
109 real the range [0..1). */
112 normalize_r8_i8 (GFC_UINTEGER_8 i
, GFC_UINTEGER_8 x
)
116 r
= (GFC_REAL_8
) i
/ (GFC_REAL_8
) x
;