Edward O'Callaghan | 37a6a45 | 2009-08-07 20:30:09 +0000 | [diff] [blame] | 1 | /* ===-- floattidf.c - Implement __floattidf -------------------------------=== |
| 2 | * |
| 3 | * The LLVM Compiler Infrastructure |
| 4 | * |
Howard Hinnant | 9ad441f | 2010-11-16 22:13:33 +0000 | [diff] [blame] | 5 | * This file is dual licensed under the MIT and the University of Illinois Open |
| 6 | * Source Licenses. See LICENSE.TXT for details. |
Edward O'Callaghan | 37a6a45 | 2009-08-07 20:30:09 +0000 | [diff] [blame] | 7 | * |
| 8 | * ===----------------------------------------------------------------------=== |
| 9 | * |
| 10 | * This file implements __floattidf for the compiler_rt library. |
| 11 | * |
| 12 | * ===----------------------------------------------------------------------=== |
| 13 | */ |
Daniel Dunbar | b3a6901 | 2009-06-26 16:47:03 +0000 | [diff] [blame] | 14 | |
Daniel Dunbar | b3a6901 | 2009-06-26 16:47:03 +0000 | [diff] [blame] | 15 | #include "int_lib.h" |
Daniel Dunbar | b3a6901 | 2009-06-26 16:47:03 +0000 | [diff] [blame] | 16 | |
Chandler Carruth | 7f2d7c7 | 2012-06-22 21:09:22 +0000 | [diff] [blame] | 17 | #if __x86_64 |
| 18 | |
Edward O'Callaghan | 37a6a45 | 2009-08-07 20:30:09 +0000 | [diff] [blame] | 19 | /* Returns: convert a to a double, rounding toward even.*/ |
Daniel Dunbar | b3a6901 | 2009-06-26 16:47:03 +0000 | [diff] [blame] | 20 | |
Edward O'Callaghan | 37a6a45 | 2009-08-07 20:30:09 +0000 | [diff] [blame] | 21 | /* Assumption: double is a IEEE 64 bit floating point type |
| 22 | * ti_int is a 128 bit integral type |
| 23 | */ |
Daniel Dunbar | b3a6901 | 2009-06-26 16:47:03 +0000 | [diff] [blame] | 24 | |
Edward O'Callaghan | 37a6a45 | 2009-08-07 20:30:09 +0000 | [diff] [blame] | 25 | /* seee eeee eeee mmmm mmmm mmmm mmmm mmmm | mmmm mmmm mmmm mmmm mmmm mmmm mmmm mmmm */ |
Daniel Dunbar | b3a6901 | 2009-06-26 16:47:03 +0000 | [diff] [blame] | 26 | |
| 27 | si_int __clzti2(ti_int a); |
| 28 | |
| 29 | double |
| 30 | __floattidf(ti_int a) |
| 31 | { |
| 32 | if (a == 0) |
| 33 | return 0.0; |
| 34 | const unsigned N = sizeof(ti_int) * CHAR_BIT; |
| 35 | const ti_int s = a >> (N-1); |
| 36 | a = (a ^ s) - s; |
Edward O'Callaghan | 37a6a45 | 2009-08-07 20:30:09 +0000 | [diff] [blame] | 37 | int sd = N - __clzti2(a); /* number of significant digits */ |
| 38 | int e = sd - 1; /* exponent */ |
Daniel Dunbar | b3a6901 | 2009-06-26 16:47:03 +0000 | [diff] [blame] | 39 | if (sd > DBL_MANT_DIG) |
| 40 | { |
Edward O'Callaghan | 37a6a45 | 2009-08-07 20:30:09 +0000 | [diff] [blame] | 41 | /* start: 0000000000000000000001xxxxxxxxxxxxxxxxxxxxxxPQxxxxxxxxxxxxxxxxxx |
| 42 | * finish: 000000000000000000000000000000000000001xxxxxxxxxxxxxxxxxxxxxxPQR |
| 43 | * 12345678901234567890123456 |
| 44 | * 1 = msb 1 bit |
| 45 | * P = bit DBL_MANT_DIG-1 bits to the right of 1 |
| 46 | * Q = bit DBL_MANT_DIG bits to the right of 1 |
| 47 | * R = "or" of all bits to the right of Q |
| 48 | */ |
Daniel Dunbar | b3a6901 | 2009-06-26 16:47:03 +0000 | [diff] [blame] | 49 | switch (sd) |
| 50 | { |
| 51 | case DBL_MANT_DIG + 1: |
| 52 | a <<= 1; |
| 53 | break; |
| 54 | case DBL_MANT_DIG + 2: |
| 55 | break; |
| 56 | default: |
| 57 | a = ((tu_int)a >> (sd - (DBL_MANT_DIG+2))) | |
| 58 | ((a & ((tu_int)(-1) >> ((N + DBL_MANT_DIG+2) - sd))) != 0); |
| 59 | }; |
Edward O'Callaghan | 37a6a45 | 2009-08-07 20:30:09 +0000 | [diff] [blame] | 60 | /* finish: */ |
| 61 | a |= (a & 4) != 0; /* Or P into R */ |
| 62 | ++a; /* round - this step may add a significant bit */ |
| 63 | a >>= 2; /* dump Q and R */ |
| 64 | /* a is now rounded to DBL_MANT_DIG or DBL_MANT_DIG+1 bits */ |
Daniel Dunbar | b3a6901 | 2009-06-26 16:47:03 +0000 | [diff] [blame] | 65 | if (a & ((tu_int)1 << DBL_MANT_DIG)) |
| 66 | { |
| 67 | a >>= 1; |
| 68 | ++e; |
| 69 | } |
Edward O'Callaghan | 37a6a45 | 2009-08-07 20:30:09 +0000 | [diff] [blame] | 70 | /* a is now rounded to DBL_MANT_DIG bits */ |
Daniel Dunbar | b3a6901 | 2009-06-26 16:47:03 +0000 | [diff] [blame] | 71 | } |
| 72 | else |
| 73 | { |
| 74 | a <<= (DBL_MANT_DIG - sd); |
Edward O'Callaghan | 37a6a45 | 2009-08-07 20:30:09 +0000 | [diff] [blame] | 75 | /* a is now rounded to DBL_MANT_DIG bits */ |
Daniel Dunbar | b3a6901 | 2009-06-26 16:47:03 +0000 | [diff] [blame] | 76 | } |
| 77 | double_bits fb; |
Edward O'Callaghan | aabd961 | 2009-09-03 09:12:20 +0000 | [diff] [blame] | 78 | fb.u.s.high = ((su_int)s & 0x80000000) | /* sign */ |
Edward O'Callaghan | 37a6a45 | 2009-08-07 20:30:09 +0000 | [diff] [blame] | 79 | ((e + 1023) << 20) | /* exponent */ |
| 80 | ((su_int)(a >> 32) & 0x000FFFFF); /* mantissa-high */ |
Edward O'Callaghan | aabd961 | 2009-09-03 09:12:20 +0000 | [diff] [blame] | 81 | fb.u.s.low = (su_int)a; /* mantissa-low */ |
Daniel Dunbar | b3a6901 | 2009-06-26 16:47:03 +0000 | [diff] [blame] | 82 | return fb.f; |
| 83 | } |
| 84 | |
| 85 | #endif |