1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
9 -- Copyright (C) 1992-2023, 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. See the GNU General Public License --
17 -- for more details. You should have received a copy of the GNU General --
18 -- Public License distributed with GNAT; see file COPYING3. If not, go to --
19 -- http://www.gnu.org/licenses for a complete copy of the license. --
21 -- GNAT was originally developed by the GNAT team at New York University. --
22 -- Extensive contributions were provided by Ada Core Technologies Inc. --
24 ------------------------------------------------------------------------------
26 -- This package provides for compile-time evaluation of static calls to the
27 -- floating-point attribute functions. It is the compile-time equivalent of
28 -- the System.Fat_Gen runtime package. The coding is quite similar, as are
29 -- the subprogram specs, except that the type is passed as an explicit
30 -- first parameter (and used via ttypes, to obtain the necessary information
31 -- about the characteristics of the type for computing the results.
33 with Types
; use Types
;
34 with Uintp
; use Uintp
;
35 with Urealp
; use Urealp
;
40 -- The compile time representation of universal integer
43 -- The compile time representation of floating-point values
45 subtype R
is Entity_Id
;
46 -- The compile time representation of the floating-point root type
48 -- The following functions perform the operation implied by their name
49 -- which corresponds to the name of the attribute which they compute.
50 -- The arguments correspond to the attribute function arguments.
52 function Adjacent
(RT
: R
; X
, Towards
: T
) return T
;
54 function Ceiling
(RT
: R
; X
: T
) return T
;
56 function Compose
(RT
: R
; Fraction
: T
; Exponent
: UI
) return T
;
58 function Copy_Sign
(RT
: R
; Value
, Sign
: T
) return T
;
60 function Exponent
(RT
: R
; X
: T
) return UI
;
62 function Floor
(RT
: R
; X
: T
) return T
;
64 function Fraction
(RT
: R
; X
: T
) return T
;
66 function Leading_Part
(RT
: R
; X
: T
; Radix_Digits
: UI
) return T
;
68 function Model
(RT
: R
; X
: T
) return T
;
70 function Pred
(RT
: R
; X
: T
) return T
;
72 function Remainder
(RT
: R
; X
, Y
: T
) return T
;
74 function Rounding
(RT
: R
; X
: T
) return T
;
76 function Scaling
(RT
: R
; X
: T
; Adjustment
: UI
) return T
;
78 function Succ
(RT
: R
; X
: T
) return T
;
80 function Truncation
(RT
: R
; X
: T
) return T
;
82 function Unbiased_Rounding
(RT
: R
; X
: T
) return T
;
84 -- The following global declarations are used by the Machine attribute
86 type Rounding_Mode
is (Floor
, Ceiling
, Round
, Round_Even
);
87 for Rounding_Mode
use (0, 1, 2, 3);
88 pragma Convention
(C
, Rounding_Mode
);
89 -- Used to indicate rounding mode for Machine attribute
91 -- The Machine attribute is special, in that it takes an extra argument
92 -- indicating the rounding mode, and also an argument Enode that is a
93 -- node used to post warnings (e.g. if asked to convert a negative zero
94 -- on a machine for which Signed_Zeros is False).
100 Enode
: Node_Id
) return T
;
102 -- WARNING: There is a matching C declaration of this function in urealp.h
104 procedure Decompose_Int
109 Mode
: Rounding_Mode
);
110 -- Decomposes a floating-point number into fraction and exponent parts.
111 -- The Fraction value returned is an integer representing the value
112 -- Fraction * Scale, where Scale is the value (Machine_Radix_Value (RT) **
113 -- Machine_Mantissa_Value (RT)). The value is obtained by using biased
114 -- rounding (halfway cases round away from zero), round to even, a floor
115 -- operation or a ceiling operation depending on the setting of Mode (see
116 -- corresponding descriptions in Urealp).