blob: 20a3b71b317c07af60adc950809800037da83877 [file] [log] [blame]
Edward O'Callaghan8bf1e092009-08-09 18:41:02 +00001/* This file is distributed under the University of Illinois Open Source
2 * License. See LICENSE.TXT for details.
3 */
Daniel Dunbarb3a69012009-06-26 16:47:03 +00004
Edward O'Callaghan8bf1e092009-08-09 18:41:02 +00005/* long double __floatunditf(unsigned long long x); */
6/* This file implements the PowerPC unsigned long long -> long double conversion */
Daniel Dunbarb3a69012009-06-26 16:47:03 +00007
8#include "DD.h"
9#include <stdint.h>
10
11long double __floatunditf(uint64_t a) {
12
Edward O'Callaghan8bf1e092009-08-09 18:41:02 +000013 /* Begins with an exact copy of the code from __floatundidf */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000014
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
Edward O'Callaghan8bf1e092009-08-09 18:41:02 +000022 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 */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000024
25 const double high_addend = high.d - twop84_plus_twop52;
26
Edward O'Callaghan8bf1e092009-08-09 18:41:02 +000027 /* 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. */
Daniel Dunbarb3a69012009-06-26 16:47:03 +000034
35 DD result;
36
Edward O'Callaghan8bf1e092009-08-09 18:41:02 +000037 result.s.hi = high_addend + low.d;
38 result.s.lo = (high_addend - result.s.hi) + low.d;
Daniel Dunbarb3a69012009-06-26 16:47:03 +000039
40 return result.ld;
41
42}