1 /* Simple data type for positive real numbers for the GNU compiler.
2 Copyright (C) 2002-2014 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 /* This library supports positive real numbers and 0;
21 inf and nan are NOT supported.
22 It is written to be simple and fast.
28 (for < 64-bit machines sig = sig_lo + sig_hi * 2 ^ SREAL_PART_BITS)
31 One HOST_WIDE_INT is used for the significant on 64-bit (and more than
33 otherwise two HOST_WIDE_INTs are used for the significant.
34 Only a half of significant bits is used (in normalized sreals) so that we do
35 not have problems with overflow, for example when c->sig = a->sig * b->sig.
36 So the precision for 64-bit and 32-bit machines is 32-bit.
38 Invariant: The numbers are normalized before and after each call of sreal_*.
41 All numbers (except zero) meet following conditions:
42 SREAL_MIN_SIG <= sig && sig <= SREAL_MAX_SIG
43 -SREAL_MAX_EXP <= exp && exp <= SREAL_MAX_EXP
45 If the number would be too large, it is set to upper bounds of these
48 If the number is zero or would be too small it meets following conditions:
49 sig == 0 && exp == -SREAL_MAX_EXP
54 #include "coretypes.h"
57 static inline void copy (sreal
*, sreal
*);
58 static inline void shift_right (sreal
*, int);
59 static void normalize (sreal
*);
61 /* Print the content of struct sreal. */
64 dump_sreal (FILE *file
, sreal
*x
)
66 #if SREAL_PART_BITS < 32
67 fprintf (file
, "((" HOST_WIDE_INT_PRINT_UNSIGNED
" * 2^16 + "
68 HOST_WIDE_INT_PRINT_UNSIGNED
") * 2^%d)",
69 x
->sig_hi
, x
->sig_lo
, x
->exp
);
71 fprintf (file
, "(" HOST_WIDE_INT_PRINT_UNSIGNED
" * 2^%d)", x
->sig
, x
->exp
);
78 dump_sreal (stderr
, &ref
);
87 fprintf (stderr
, "<nil>\n");
91 /* Copy the sreal number. */
94 copy (sreal
*r
, sreal
*a
)
96 #if SREAL_PART_BITS < 32
97 r
->sig_lo
= a
->sig_lo
;
98 r
->sig_hi
= a
->sig_hi
;
105 /* Shift X right by S bits. Needed: 0 < S <= SREAL_BITS.
106 When the most significant bit shifted out is 1, add 1 to X (rounding). */
109 shift_right (sreal
*x
, int s
)
112 gcc_assert (s
<= SREAL_BITS
);
113 /* Exponent should never be so large because shift_right is used only by
114 sreal_add and sreal_sub ant thus the number cannot be shifted out from
116 gcc_assert (x
->exp
+ s
<= SREAL_MAX_EXP
);
120 #if SREAL_PART_BITS < 32
121 if (s
> SREAL_PART_BITS
)
123 s
-= SREAL_PART_BITS
;
124 x
->sig_hi
+= (uhwi
) 1 << (s
- 1);
125 x
->sig_lo
= x
->sig_hi
>> s
;
130 x
->sig_lo
+= (uhwi
) 1 << (s
- 1);
131 if (x
->sig_lo
& ((uhwi
) 1 << SREAL_PART_BITS
))
134 x
->sig_lo
-= (uhwi
) 1 << SREAL_PART_BITS
;
137 x
->sig_lo
|= (x
->sig_hi
& (((uhwi
) 1 << s
) - 1)) << (SREAL_PART_BITS
- s
);
141 x
->sig
+= (uhwi
) 1 << (s
- 1);
151 #if SREAL_PART_BITS < 32
155 if (x
->sig_lo
== 0 && x
->sig_hi
== 0)
157 x
->exp
= -SREAL_MAX_EXP
;
159 else if (x
->sig_hi
< SREAL_MIN_SIG
)
163 /* Move lower part of significant to higher part. */
164 x
->sig_hi
= x
->sig_lo
;
166 x
->exp
-= SREAL_PART_BITS
;
169 while (x
->sig_hi
< SREAL_MIN_SIG
)
175 /* Check underflow. */
176 if (x
->exp
< -SREAL_MAX_EXP
)
178 x
->exp
= -SREAL_MAX_EXP
;
184 mask
= (1 << SREAL_PART_BITS
) - (1 << (SREAL_PART_BITS
- shift
));
185 x
->sig_hi
|= (x
->sig_lo
& mask
) >> (SREAL_PART_BITS
- shift
);
186 x
->sig_lo
= (x
->sig_lo
<< shift
) & (((uhwi
) 1 << SREAL_PART_BITS
) - 1);
189 else if (x
->sig_hi
> SREAL_MAX_SIG
)
191 unsigned HOST_WIDE_INT tmp
= x
->sig_hi
;
193 /* Find out how many bits will be shifted. */
200 while (tmp
> SREAL_MAX_SIG
);
202 /* Round the number. */
203 x
->sig_lo
+= (uhwi
) 1 << (shift
- 1);
206 x
->sig_lo
+= ((x
->sig_hi
& (((uhwi
) 1 << shift
) - 1))
207 << (SREAL_PART_BITS
- shift
));
210 if (x
->sig_lo
& ((uhwi
) 1 << SREAL_PART_BITS
))
212 x
->sig_lo
-= (uhwi
) 1 << SREAL_PART_BITS
;
214 if (x
->sig_hi
> SREAL_MAX_SIG
)
216 /* x->sig_hi was SREAL_MAX_SIG before increment
217 so now last bit is zero. */
224 /* Check overflow. */
225 if (x
->exp
> SREAL_MAX_EXP
)
227 x
->exp
= SREAL_MAX_EXP
;
228 x
->sig_hi
= SREAL_MAX_SIG
;
229 x
->sig_lo
= SREAL_MAX_SIG
;
235 x
->exp
= -SREAL_MAX_EXP
;
237 else if (x
->sig
< SREAL_MIN_SIG
)
244 while (x
->sig
< SREAL_MIN_SIG
);
246 /* Check underflow. */
247 if (x
->exp
< -SREAL_MAX_EXP
)
249 x
->exp
= -SREAL_MAX_EXP
;
253 else if (x
->sig
> SREAL_MAX_SIG
)
258 last_bit
= x
->sig
& 1;
262 while (x
->sig
> SREAL_MAX_SIG
);
264 /* Round the number. */
266 if (x
->sig
> SREAL_MAX_SIG
)
272 /* Check overflow. */
273 if (x
->exp
> SREAL_MAX_EXP
)
275 x
->exp
= SREAL_MAX_EXP
;
276 x
->sig
= SREAL_MAX_SIG
;
282 /* Set *R to SIG * 2 ^ EXP. Return R. */
285 sreal_init (sreal
*r
, unsigned HOST_WIDE_INT sig
, signed int exp
)
287 #if SREAL_PART_BITS < 32
299 /* Return integer value of *R. */
302 sreal_to_int (sreal
*r
)
304 #if SREAL_PART_BITS < 32
305 if (r
->exp
<= -SREAL_BITS
)
308 return MAX_HOST_WIDE_INT
;
309 return ((r
->sig_hi
<< SREAL_PART_BITS
) + r
->sig_lo
) >> -r
->exp
;
311 if (r
->exp
<= -SREAL_BITS
)
313 if (r
->exp
>= SREAL_PART_BITS
)
314 return MAX_HOST_WIDE_INT
;
316 return r
->sig
<< r
->exp
;
318 return r
->sig
>> -r
->exp
;
323 /* Compare *A and *B. Return -1 if *A < *B, 1 if *A > *B and 0 if *A == *B. */
326 sreal_compare (sreal
*a
, sreal
*b
)
332 #if SREAL_PART_BITS < 32
333 if (a
->sig_hi
> b
->sig_hi
)
335 if (a
->sig_hi
< b
->sig_hi
)
337 if (a
->sig_lo
> b
->sig_lo
)
339 if (a
->sig_lo
< b
->sig_lo
)
350 /* *R = *A + *B. Return R. */
353 sreal_add (sreal
*r
, sreal
*a
, sreal
*b
)
359 if (sreal_compare (a
, b
) < 0)
367 dexp
= a
->exp
- b
->exp
;
369 if (dexp
> SREAL_BITS
)
371 #if SREAL_PART_BITS < 32
372 r
->sig_hi
= a
->sig_hi
;
373 r
->sig_lo
= a
->sig_lo
;
385 shift_right (&tmp
, dexp
);
389 #if SREAL_PART_BITS < 32
390 r
->sig_hi
= a
->sig_hi
+ bb
->sig_hi
;
391 r
->sig_lo
= a
->sig_lo
+ bb
->sig_lo
;
392 if (r
->sig_lo
& ((uhwi
) 1 << SREAL_PART_BITS
))
395 r
->sig_lo
-= (uhwi
) 1 << SREAL_PART_BITS
;
398 r
->sig
= a
->sig
+ bb
->sig
;
404 /* *R = *A - *B. Return R. */
407 sreal_sub (sreal
*r
, sreal
*a
, sreal
*b
)
413 gcc_assert (sreal_compare (a
, b
) >= 0);
415 dexp
= a
->exp
- b
->exp
;
417 if (dexp
> SREAL_BITS
)
419 #if SREAL_PART_BITS < 32
420 r
->sig_hi
= a
->sig_hi
;
421 r
->sig_lo
= a
->sig_lo
;
432 shift_right (&tmp
, dexp
);
436 #if SREAL_PART_BITS < 32
437 if (a
->sig_lo
< bb
->sig_lo
)
439 r
->sig_hi
= a
->sig_hi
- bb
->sig_hi
- 1;
440 r
->sig_lo
= a
->sig_lo
+ ((uhwi
) 1 << SREAL_PART_BITS
) - bb
->sig_lo
;
444 r
->sig_hi
= a
->sig_hi
- bb
->sig_hi
;
445 r
->sig_lo
= a
->sig_lo
- bb
->sig_lo
;
448 r
->sig
= a
->sig
- bb
->sig
;
454 /* *R = *A * *B. Return R. */
457 sreal_mul (sreal
*r
, sreal
*a
, sreal
*b
)
459 #if SREAL_PART_BITS < 32
460 if (a
->sig_hi
< SREAL_MIN_SIG
|| b
->sig_hi
< SREAL_MIN_SIG
)
464 r
->exp
= -SREAL_MAX_EXP
;
468 unsigned HOST_WIDE_INT tmp1
, tmp2
, tmp3
;
469 if (sreal_compare (a
, b
) < 0)
477 r
->exp
= a
->exp
+ b
->exp
+ SREAL_PART_BITS
;
479 tmp1
= a
->sig_lo
* b
->sig_lo
;
480 tmp2
= a
->sig_lo
* b
->sig_hi
;
481 tmp3
= a
->sig_hi
* b
->sig_lo
+ (tmp1
>> SREAL_PART_BITS
);
483 r
->sig_hi
= a
->sig_hi
* b
->sig_hi
;
484 r
->sig_hi
+= (tmp2
>> SREAL_PART_BITS
) + (tmp3
>> SREAL_PART_BITS
);
485 tmp2
&= ((uhwi
) 1 << SREAL_PART_BITS
) - 1;
486 tmp3
&= ((uhwi
) 1 << SREAL_PART_BITS
) - 1;
489 r
->sig_lo
= tmp1
& (((uhwi
) 1 << SREAL_PART_BITS
) - 1);
490 r
->sig_hi
+= tmp1
>> SREAL_PART_BITS
;
495 if (a
->sig
< SREAL_MIN_SIG
|| b
->sig
< SREAL_MIN_SIG
)
498 r
->exp
= -SREAL_MAX_EXP
;
502 r
->sig
= a
->sig
* b
->sig
;
503 r
->exp
= a
->exp
+ b
->exp
;
510 /* *R = *A / *B. Return R. */
513 sreal_div (sreal
*r
, sreal
*a
, sreal
*b
)
515 #if SREAL_PART_BITS < 32
516 unsigned HOST_WIDE_INT tmp
, tmp1
, tmp2
;
518 gcc_assert (b
->sig_hi
>= SREAL_MIN_SIG
);
519 if (a
->sig_hi
< SREAL_MIN_SIG
)
523 r
->exp
= -SREAL_MAX_EXP
;
527 /* Since division by the whole number is pretty ugly to write
528 we are dividing by first 3/4 of bits of number. */
530 tmp1
= (a
->sig_hi
<< SREAL_PART_BITS
) + a
->sig_lo
;
531 tmp2
= ((b
->sig_hi
<< (SREAL_PART_BITS
/ 2))
532 + (b
->sig_lo
>> (SREAL_PART_BITS
/ 2)));
533 if (b
->sig_lo
& ((uhwi
) 1 << ((SREAL_PART_BITS
/ 2) - 1)))
538 tmp1
= (tmp1
% tmp2
) << (SREAL_PART_BITS
/ 2);
539 r
->sig_hi
= tmp
<< SREAL_PART_BITS
;
542 tmp1
= (tmp1
% tmp2
) << (SREAL_PART_BITS
/ 2);
543 r
->sig_hi
+= tmp
<< (SREAL_PART_BITS
/ 2);
548 r
->exp
= a
->exp
- b
->exp
- SREAL_BITS
- SREAL_PART_BITS
/ 2;
552 gcc_assert (b
->sig
!= 0);
553 r
->sig
= (a
->sig
<< SREAL_PART_BITS
) / b
->sig
;
554 r
->exp
= a
->exp
- b
->exp
- SREAL_PART_BITS
;