1 ------------------------------------------------------------------------------
3 -- GNAT RUN-TIME COMPONENTS --
5 -- S Y S T E M . E X N _ L L F --
9 -- Copyright (C) 1992-2016, Free Software Foundation, Inc. --
11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 3, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. --
18 -- As a special exception under Section 7 of GPL version 3, you are granted --
19 -- additional permissions described in the GCC Runtime Library Exception, --
20 -- version 3.1, as published by the Free Software Foundation. --
22 -- You should have received a copy of the GNU General Public License and --
23 -- a copy of the GCC Runtime Library Exception along with this program; --
24 -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
25 -- <http://www.gnu.org/licenses/>. --
27 -- GNAT was originally developed by the GNAT team at New York University. --
28 -- Extensive contributions were provided by Ada Core Technologies Inc. --
30 ------------------------------------------------------------------------------
32 -- Note: the reason for treating exponents in the range 0 .. 4 specially is
33 -- to ensure identical results to the static inline expansion in the case of
34 -- a compile time known exponent in this range. The use of Float'Machine and
35 -- Long_Float'Machine is to avoid unwanted extra precision in the results.
37 -- Note that for a negative exponent in Left ** Right, we compute the result
40 -- 1.0 / (Left ** (-Right))
42 -- Note that the case of Left being zero is not special, it will simply result
43 -- in a division by zero at the end, yielding a correctly signed infinity, or
44 -- possibly generating an overflow.
46 -- Note on overflow: This coding assumes that the target generates infinities
47 -- with standard IEEE semantics. If this is not the case, then the code
48 -- for negative exponent may raise Constraint_Error. This follows the
49 -- implementation permission given in RM 4.5.6(12).
51 package body System
.Exn_LLF
is
53 subtype Negative
is Integer range Integer'First .. -1;
56 (Left
: Long_Long_Float;
57 Right
: Natural) return Long_Long_Float;
58 -- Common routine used if Right is greater or equal to 5
66 Right
: Integer) return Float
76 return Float'Machine (Left
* Left
);
78 return Float'Machine (Left
* Left
* Left
);
80 Temp
:= Float'Machine (Left
* Left
);
81 return Float'Machine (Temp
* Temp
);
83 return Float'Machine (1.0 / Exn_Float
(Left
, -Right
));
87 (Float (Exp
(Long_Long_Float (Left
), Right
)));
95 function Exn_Long_Float
97 Right
: Integer) return Long_Float
107 return Long_Float'Machine (Left
* Left
);
109 return Long_Float'Machine (Left
* Left
* Left
);
111 Temp
:= Long_Float'Machine (Left
* Left
);
112 return Long_Float'Machine (Temp
* Temp
);
114 return Long_Float'Machine (1.0 / Exn_Long_Float
(Left
, -Right
));
118 (Long_Float (Exp
(Long_Long_Float (Left
), Right
)));
122 -------------------------
123 -- Exn_Long_Long_Float --
124 -------------------------
126 function Exn_Long_Long_Float
127 (Left
: Long_Long_Float;
128 Right
: Integer) return Long_Long_Float
130 Temp
: Long_Long_Float;
140 return Left
* Left
* Left
;
145 return 1.0 / Exn_Long_Long_Float
(Left
, -Right
);
147 return Exp
(Left
, Right
);
149 end Exn_Long_Long_Float
;
156 (Left
: Long_Long_Float;
157 Right
: Natural) return Long_Long_Float
159 Result
: Long_Long_Float := 1.0;
160 Factor
: Long_Long_Float := Left
;
161 Exp
: Natural := Right
;
164 -- We use the standard logarithmic approach, Exp gets shifted right
165 -- testing successive low order bits and Factor is the value of the
166 -- base raised to the next power of 2. If the low order bit or Exp is
167 -- set, multiply the result by this factor.
170 if Exp
rem 2 /= 0 then
171 Result
:= Result
* Factor
;
176 Factor
:= Factor
* Factor
;