1 /* This file is distributed under the University of Illinois Open Source 2 * License. See LICENSE.TXT for details. 3 */ 4 5 /* long double __floatunditf(unsigned long long x); */ 6 /* This file implements the PowerPC unsigned long long -> long double conversion */ 7 8 #include "DD.h" 9 #include <stdint.h> 10 11 long double __floatunditf(uint64_t a) { 12 13 /* Begins with an exact copy of the code from __floatundidf */ 14 15 static const double twop52 = 0x1.0p52; 16 static const double twop84 = 0x1.0p84; 17 static const double twop84_plus_twop52 = 0x1.00000001p84; 18 19 doublebits high = { .d = twop84 }; 20 doublebits low = { .d = twop52 }; 21 22 high.x |= a >> 32; /* 0x1.0p84 + high 32 bits of a */ 23 low.x |= a & UINT64_C(0x00000000ffffffff); /* 0x1.0p52 + low 32 bits of a */ 24 25 const double high_addend = high.d - twop84_plus_twop52; 26 27 /* At this point, we have two double precision numbers 28 * high_addend and low.d, and we wish to return their sum 29 * as a canonicalized long double: 30 */ 31 32 /* This implementation sets the inexact flag spuriously. */ 33 /* This could be avoided, but at some substantial cost. */ 34 35 DD result; 36 37 result.s.hi = high_addend + low.d; 38 result.s.lo = (high_addend - result.s.hi) + low.d; 39 40 return result.ld; 41 42 } 43