1 // RUN: %clang_builtins %s %librt -o %t && %run %t
2 // REQUIRES: librt_has_fixunsxfti
3 // REQUIRES: x86-target-arch
8 #if defined(CRT_HAS_128BIT) && HAS_80_BIT_LONG_DOUBLE
10 // Returns: convert a to a unsigned long long, rounding toward zero.
11 // Negative values all become zero.
13 // Assumption: long double is an intel 80 bit floating point type padded with 6 bytes
14 // tu_int is a 64 bit integral type
15 // value in long double is representable in tu_int or is negative
16 // (no range checking performed)
18 // gggg gggg gggg gggg gggg gggg gggg gggg | gggg gggg gggg gggg seee eeee eeee eeee |
19 // 1mmm mmmm mmmm mmmm mmmm mmmm mmmm mmmm | mmmm mmmm mmmm mmmm mmmm mmmm mmmm mmmm
21 COMPILER_RT_ABI tu_int
__fixunsxfti(long double a
);
23 int test__fixunsxfti(long double a
, tu_int expected
)
25 tu_int x
= __fixunsxfti(a
);
31 expectedt
.all
= expected
;
32 printf("error in __fixunsxfti(%LA) = 0x%.16llX%.16llX, expected 0x%.16llX%.16llX\n",
33 a
, xt
.s
.high
, xt
.s
.low
, expectedt
.s
.high
, expectedt
.s
.low
);
38 char assumption_1
[sizeof(tu_int
) == 2*sizeof(du_int
)] = {0};
39 char assumption_2
[sizeof(tu_int
)*CHAR_BIT
== 128] = {0};
40 char assumption_3
[sizeof(long double)*CHAR_BIT
== 128] = {0};
46 #if defined(CRT_HAS_128BIT) && HAS_80_BIT_LONG_DOUBLE
47 if (test__fixunsxfti(0.0, 0))
50 if (test__fixunsxfti(0.5, 0))
52 if (test__fixunsxfti(0.99, 0))
54 if (test__fixunsxfti(1.0, 1))
56 if (test__fixunsxfti(1.5, 1))
58 if (test__fixunsxfti(1.99, 1))
60 if (test__fixunsxfti(2.0, 2))
62 if (test__fixunsxfti(2.01, 2))
64 if (test__fixunsxfti(-0.5, 0))
66 if (test__fixunsxfti(-0.99, 0))
68 if (test__fixunsxfti(-1.0, 0))
70 if (test__fixunsxfti(-1.5, 0))
72 if (test__fixunsxfti(-1.99, 0))
74 if (test__fixunsxfti(-2.0, 0))
76 if (test__fixunsxfti(-2.01, 0))
79 if (test__fixunsxfti(0x1.FFFFFEp
+62, 0x7FFFFF8000000000LL
))
81 if (test__fixunsxfti(0x1.FFFFFCp
+62, 0x7FFFFF0000000000LL
))
84 if (test__fixunsxfti(-0x1.FFFFFEp
+62, 0))
86 if (test__fixunsxfti(-0x1.FFFFFCp
+62, 0))
89 if (test__fixunsxfti(0x1.FFFFFFFFFFFFFp
+62, 0x7FFFFFFFFFFFFC00LL
))
91 if (test__fixunsxfti(0x1.FFFFFFFFFFFFEp
+62, 0x7FFFFFFFFFFFF800LL
))
94 if (test__fixunsxfti(-0x1.FFFFFFFFFFFFFp
+62, 0))
96 if (test__fixunsxfti(-0x1.FFFFFFFFFFFFEp
+62, 0))
99 if (test__fixunsxfti(0x1.FFFFFFFFFFFFFFFEp
+63L, 0xFFFFFFFFFFFFFFFFLL
))
101 if (test__fixunsxfti(0x1.0000000000000002p
+63L, 0x8000000000000001LL
))
103 if (test__fixunsxfti(0x1.0000000000000000p
+63L, 0x8000000000000000LL
))
105 if (test__fixunsxfti(0x1.FFFFFFFFFFFFFFFCp
+62L, 0x7FFFFFFFFFFFFFFFLL
))
107 if (test__fixunsxfti(0x1.FFFFFFFFFFFFFFF8p
+62L, 0x7FFFFFFFFFFFFFFELL
))
110 if (test__fixunsxfti(-0x1.0000000000000000p
+63L, 0))
112 if (test__fixunsxfti(-0x1.FFFFFFFFFFFFFFFCp
+62L, 0))
114 if (test__fixunsxfti(-0x1.FFFFFFFFFFFFFFF8p
+62L, 0))
117 if (test__fixunsxfti(0x1.FFFFFFFFFFFFFFFEp
+127L, make_ti(0xFFFFFFFFFFFFFFFFLL
, 0)))
119 if (test__fixunsxfti(0x1.0000000000000002p
+127L, make_ti(0x8000000000000001LL
, 0)))
121 if (test__fixunsxfti(0x1.0000000000000000p
+127L, make_ti(0x8000000000000000LL
, 0)))
123 if (test__fixunsxfti(0x1.FFFFFFFFFFFFFFFCp
+126L, make_ti(0x7FFFFFFFFFFFFFFFLL
, 0)))
125 if (test__fixunsxfti(0x1.FFFFFFFFFFFFFFF8p
+126L, make_ti(0x7FFFFFFFFFFFFFFELL
, 0)))