OpenCores
URL https://opencores.org/ocsvn/scarts/scarts/trunk

Subversion Repositories scarts

[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [gcc/] [ada/] [urealp.ads] - Blame information for rev 12

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 12 jlechner
------------------------------------------------------------------------------
2
--                                                                          --
3
--                         GNAT COMPILER COMPONENTS                         --
4
--                                                                          --
5
--                               U R E A L P                                --
6
--                                                                          --
7
--                                 S p e c                                  --
8
--                                                                          --
9
--          Copyright (C) 1992-2005, Free Software Foundation, Inc.         --
10
--                                                                          --
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 2,  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 COPYING.  If not, write --
19
-- to  the  Free Software Foundation,  51  Franklin  Street,  Fifth  Floor, --
20
-- Boston, MA 02110-1301, USA.                                              --
21
--                                                                          --
22
-- As a special exception,  if other files  instantiate  generics from this --
23
-- unit, or you link  this unit with other files  to produce an executable, --
24
-- this  unit  does not  by itself cause  the resulting  executable  to  be --
25
-- covered  by the  GNU  General  Public  License.  This exception does not --
26
-- however invalidate  any other reasons why  the executable file  might be --
27
-- covered by the  GNU Public License.                                      --
28
--                                                                          --
29
-- GNAT was originally developed  by the GNAT team at  New York University. --
30
-- Extensive contributions were provided by Ada Core Technologies Inc.      --
31
--                                                                          --
32
------------------------------------------------------------------------------
33
 
34
--  Support for universal real arithmetic
35
 
36
with Types; use Types;
37
with Uintp; use Uintp;
38
 
39
package Urealp is
40
 
41
   ---------------------------------------
42
   -- Representation of Universal Reals --
43
   ---------------------------------------
44
 
45
   --  A universal real value is represented by a single value (which is
46
   --  an index into an internal table). These values are not hashed, so
47
   --  the equality operator should not be used on Ureal values (instead
48
   --  use the UR_Eq function).
49
 
50
   --  A Ureal value represents an arbitrary precision universal real value,
51
   --  stored internally using four components
52
 
53
   --    the numerator (Uint, always non-negative)
54
   --    the denominator (Uint, always non-zero, always positive if base = 0)
55
   --    a real base (Nat, either zero, or in the range 2 .. 16)
56
   --    a sign flag (Boolean), set if negative
57
 
58
   --  If the base is zero, then the absolute value of the Ureal is simply
59
   --  numerator/denominator. If the base is non-zero, then the absolute
60
   --  value is num / (rbase ** den).
61
 
62
   --  Negative numbers are represented by the sign of the numerator being
63
   --  negative. The denominator is always positive.
64
 
65
   --  A normalized Ureal value has base = 0, and numerator/denominator
66
   --  reduced to lowest terms, with zero itself being represented as 0/1.
67
   --  This is a canonical format, so that for normalized Ureal values it
68
   --  is the case that two equal values always have the same denominator
69
   --  and numerator values.
70
 
71
   --  Note: a value of minus zero is legitimate, and the operations in
72
   --  Urealp preserve the handling of signed zeroes in accordance with
73
   --  the rules of IEEE P754 ("IEEE floating point").
74
 
75
   ------------------------------
76
   -- Types for Urealp Package --
77
   ------------------------------
78
 
79
   type Ureal is private;
80
   --  Type used for representation of universal reals
81
 
82
   No_Ureal : constant Ureal;
83
   --  Constant used to indicate missing or unset Ureal value
84
 
85
   ---------------------
86
   -- Ureal Constants --
87
   ---------------------
88
 
89
   function Ureal_0 return Ureal;
90
   --  Returns value 0.0
91
 
92
   function Ureal_M_0 return Ureal;
93
   --  Returns value -0.0
94
 
95
   function Ureal_Tenth return Ureal;
96
   --  Returns value 0.1
97
 
98
   function Ureal_Half return Ureal;
99
   --  Returns value 0.5
100
 
101
   function Ureal_1 return Ureal;
102
   --  Returns value 1.0
103
 
104
   function Ureal_2 return Ureal;
105
   --  Returns value 2.0
106
 
107
   function Ureal_10 return Ureal;
108
   --  Returns value 10.0
109
 
110
   function Ureal_100 return Ureal;
111
   --  Returns value 100.0
112
 
113
   function Ureal_2_80 return Ureal;
114
   --  Returns value 2.0 ** 80
115
 
116
   function Ureal_2_M_80 return Ureal;
117
   --  Returns value 2.0 ** (-80)
118
 
119
   function Ureal_2_128 return Ureal;
120
   --  Returns value 2.0 ** 128
121
 
122
   function Ureal_2_M_128 return Ureal;
123
   --  Returns value 2.0 ** (-128)
124
 
125
   function Ureal_10_36 return Ureal;
126
   --  Returns value 10.0 ** 36
127
 
128
   function Ureal_M_10_36 return Ureal;
129
   --  Returns value -(10.0
130
 
131
   -----------------
132
   -- Subprograms --
133
   -----------------
134
 
135
   procedure Initialize;
136
   --  Initialize Ureal tables. Note that Initialize must not be called if
137
   --  Tree_Read is used. Note also that there is no Lock routine in this
138
   --  unit. These tables are among the few tables that can be expanded
139
   --  during Gigi processing.
140
 
141
   procedure Tree_Read;
142
   --  Initializes internal tables from current tree file using the relevant
143
   --  Table.Tree_Read routines. Note that Initialize should not be called if
144
   --  Tree_Read is used. Tree_Read includes all necessary initialization.
145
 
146
   procedure Tree_Write;
147
   --  Writes out internal tables to current tree file using the relevant
148
   --  Table.Tree_Write routines.
149
 
150
   function Rbase (Real : Ureal) return Nat;
151
   --  Return the base of the universal real
152
 
153
   function Denominator (Real : Ureal) return Uint;
154
   --  Return the denominator of the universal real
155
 
156
   function Numerator (Real : Ureal) return Uint;
157
   --  Return the numerator of the universal real
158
 
159
   function Norm_Den (Real : Ureal) return Uint;
160
   --  Return the denominator of the universal real after a normalization
161
 
162
   function Norm_Num (Real : Ureal) return Uint;
163
   --  Return the numerator of the universal real after a normalization
164
 
165
   function UR_From_Uint (UI : Uint) return Ureal;
166
   --  Returns real corresponding to universal integer value
167
 
168
   function UR_To_Uint (Real : Ureal) return Uint;
169
   --  Return integer value obtained by accurate rounding of real value.
170
   --  The rounding of values half way between two integers is away from
171
   --  zero, as required by normal Ada 95 rounding semantics.
172
 
173
   function UR_Trunc (Real : Ureal) return Uint;
174
   --  Return integer value obtained by a truncation of real towards zero
175
 
176
   function UR_Ceiling (Real : Ureal) return Uint;
177
   --  Return value of smallest integer not less than the given value
178
 
179
   function UR_Floor (Real : Ureal) return Uint;
180
   --  Return value of smallest integer not greater than the given value
181
 
182
   --  Conversion table for above four functions
183
 
184
   --    Input    To_Uint    Trunc    Ceiling    Floor
185
   --     1.0        1         1         1         1
186
   --     1.2        1         1         2         1
187
   --     1.5        2         1         2         1
188
   --     1.7        2         1         2         1
189
   --     2.0        2         2         2         2
190
   --    -1.0       -1        -1        -1        -1
191
   --    -1.2       -1        -1        -1        -2
192
   --    -1.5       -2        -1        -1        -2
193
   --    -1.7       -2        -1        -1        -2
194
   --    -2.0       -2        -2        -2        -2
195
 
196
   function UR_From_Components
197
     (Num      : Uint;
198
      Den      : Uint;
199
      Rbase    : Nat := 0;
200
      Negative : Boolean := False)
201
      return     Ureal;
202
   --  Builds real value from given numerator, denominator and base. The
203
   --  value is negative if Negative is set to true, and otherwise is
204
   --  non-negative.
205
 
206
   function UR_Add (Left : Ureal; Right : Ureal) return Ureal;
207
   function UR_Add (Left : Ureal; Right : Uint)  return Ureal;
208
   function UR_Add (Left : Uint;  Right : Ureal) return Ureal;
209
   --  Returns real sum of operands
210
 
211
   function UR_Div (Left : Ureal; Right : Ureal) return Ureal;
212
   function UR_Div (Left : Uint;  Right : Ureal) return Ureal;
213
   function UR_Div (Left : Ureal; Right : Uint)  return Ureal;
214
   --  Returns real quotient of operands. Fatal error if Right is zero
215
 
216
   function UR_Mul (Left : Ureal; Right : Ureal) return Ureal;
217
   function UR_Mul (Left : Uint;  Right : Ureal) return Ureal;
218
   function UR_Mul (Left : Ureal; Right : Uint)  return Ureal;
219
   --  Returns real product of operands
220
 
221
   function UR_Sub (Left : Ureal; Right : Ureal) return Ureal;
222
   function UR_Sub (Left : Uint;  Right : Ureal) return Ureal;
223
   function UR_Sub (Left : Ureal; Right : Uint)  return Ureal;
224
   --  Returns real difference of operands
225
 
226
   function UR_Exponentiate (Real  : Ureal; N : Uint) return  Ureal;
227
   --  Returns result of raising Ureal to Uint power.
228
   --  Fatal error if Left is 0 and Right is negative.
229
 
230
   function UR_Abs (Real : Ureal) return Ureal;
231
   --  Returns abs function of real
232
 
233
   function UR_Negate (Real : Ureal) return Ureal;
234
   --  Returns negative of real
235
 
236
   function UR_Eq (Left, Right : Ureal) return Boolean;
237
   --  Compares reals for equality
238
 
239
   function UR_Max (Left, Right : Ureal) return Ureal;
240
   --  Returns the maximum of two reals
241
 
242
   function UR_Min (Left, Right : Ureal) return Ureal;
243
   --  Returns the minimum of two reals
244
 
245
   function UR_Ne (Left, Right : Ureal) return Boolean;
246
   --  Compares reals for inequality
247
 
248
   function UR_Lt (Left, Right : Ureal) return Boolean;
249
   --  Compares reals for less than
250
 
251
   function UR_Le (Left, Right : Ureal) return Boolean;
252
   --  Compares reals for less than or equal
253
 
254
   function UR_Gt (Left, Right : Ureal) return Boolean;
255
   --  Compares reals for greater than
256
 
257
   function UR_Ge (Left, Right : Ureal) return Boolean;
258
   --  Compares reals for greater than or equal
259
 
260
   function UR_Is_Zero (Real : Ureal) return Boolean;
261
   --  Tests if real value is zero
262
 
263
   function UR_Is_Negative (Real : Ureal) return Boolean;
264
   --  Tests if real value is negative, note that negative zero gives true
265
 
266
   function UR_Is_Positive (Real : Ureal) return Boolean;
267
   --  Test if real value is greater than zero
268
 
269
   procedure UR_Write (Real : Ureal);
270
   --  Writes value of Real to standard output. Used only for debugging and
271
   --  tree/source output. If the result is easily representable as a standard
272
   --  Ada literal, it will be given that way, but as a result of evaluation
273
   --  of static expressions, it is possible to generate constants (e.g. 1/13)
274
   --  which have no such representation. In such cases (and in cases where it
275
   --  is too much work to figure out the Ada literal), the string that is
276
   --  output is of the form [numerator/denominator].
277
 
278
   procedure pr (Real : Ureal);
279
   pragma Export (Ada, pr);
280
   --  Writes value of Real to standard output with a terminating line return,
281
   --  using UR_Write as described above. This is for use from the debugger.
282
 
283
   ------------------------
284
   -- Operator Renamings --
285
   ------------------------
286
 
287
   function "+" (Left : Ureal; Right : Ureal) return Ureal renames UR_Add;
288
   function "+" (Left : Uint;  Right : Ureal) return Ureal renames UR_Add;
289
   function "+" (Left : Ureal; Right : Uint)  return Ureal renames UR_Add;
290
 
291
   function "/" (Left : Ureal; Right : Ureal) return Ureal renames UR_Div;
292
   function "/" (Left : Uint;  Right : Ureal) return Ureal renames UR_Div;
293
   function "/" (Left : Ureal; Right : Uint)  return Ureal renames UR_Div;
294
 
295
   function "*" (Left : Ureal; Right : Ureal) return Ureal renames UR_Mul;
296
   function "*" (Left : Uint;  Right : Ureal) return Ureal renames UR_Mul;
297
   function "*" (Left : Ureal; Right : Uint)  return Ureal renames UR_Mul;
298
 
299
   function "-" (Left : Ureal; Right : Ureal) return Ureal renames UR_Sub;
300
   function "-" (Left : Uint;  Right : Ureal) return Ureal renames UR_Sub;
301
   function "-" (Left : Ureal; Right : Uint)  return Ureal renames UR_Sub;
302
 
303
   function "**"  (Real  : Ureal; N : Uint) return Ureal
304
                                                     renames UR_Exponentiate;
305
 
306
   function "abs" (Real : Ureal) return Ureal renames UR_Abs;
307
 
308
   function "-"   (Real : Ureal) return Ureal renames UR_Negate;
309
 
310
   function "="   (Left, Right : Ureal) return Boolean renames UR_Eq;
311
 
312
   function "<"   (Left, Right : Ureal) return Boolean renames UR_Lt;
313
 
314
   function "<="  (Left, Right : Ureal) return Boolean renames UR_Le;
315
 
316
   function ">="  (Left, Right : Ureal) return Boolean renames UR_Ge;
317
 
318
   function ">"   (Left, Right : Ureal) return Boolean renames UR_Gt;
319
 
320
   -----------------------------
321
   -- Mark/Release Processing --
322
   -----------------------------
323
 
324
   --  The space used by Ureal data is not automatically reclaimed. However,
325
   --  a mark-release regime is implemented which allows storage to be
326
   --  released back to a previously noted mark. This is used for example
327
   --  when doing comparisons, where only intermediate results get stored
328
   --  that do not need to be saved for future use.
329
 
330
   type Save_Mark is private;
331
 
332
   function Mark return Save_Mark;
333
   --  Note mark point for future release
334
 
335
   procedure Release (M : Save_Mark);
336
   --  Release storage allocated since mark was noted
337
 
338
   ------------------------------------
339
   -- Representation of Ureal Values --
340
   ------------------------------------
341
 
342
private
343
 
344
   type Ureal is new Int range Ureal_Low_Bound .. Ureal_High_Bound;
345
   for Ureal'Size use 32;
346
 
347
   No_Ureal : constant Ureal := Ureal'First;
348
 
349
   type Save_Mark is new Int;
350
 
351
   pragma Inline (Denominator);
352
   pragma Inline (Mark);
353
   pragma Inline (Norm_Num);
354
   pragma Inline (Norm_Den);
355
   pragma Inline (Numerator);
356
   pragma Inline (Rbase);
357
   pragma Inline (Release);
358
   pragma Inline (Ureal_0);
359
   pragma Inline (Ureal_M_0);
360
   pragma Inline (Ureal_Tenth);
361
   pragma Inline (Ureal_Half);
362
   pragma Inline (Ureal_1);
363
   pragma Inline (Ureal_2);
364
   pragma Inline (Ureal_10);
365
   pragma Inline (UR_From_Components);
366
 
367
end Urealp;

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.