1 //===-- fixunsxfdi_test.c - Test __fixunsxfdi -----------------------------===//
3 // The LLVM Compiler Infrastructure
5 // This file is dual licensed under the MIT and the University of Illinois Open
6 // Source Licenses. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file tests __fixunsxfdi for the compiler_rt library.
12 //===----------------------------------------------------------------------===//
19 #if HAS_80_BIT_LONG_DOUBLE
20 // Returns: convert a to a unsigned long long, rounding toward zero.
21 // Negative values all become zero.
23 // Assumption: long double is an intel 80 bit floating point type padded with 6 bytes
24 // du_int is a 64 bit integral type
25 // value in long double is representable in du_int or is negative
26 // (no range checking performed)
28 // gggg gggg gggg gggg gggg gggg gggg gggg | gggg gggg gggg gggg seee eeee eeee eeee |
29 // 1mmm mmmm mmmm mmmm mmmm mmmm mmmm mmmm | mmmm mmmm mmmm mmmm mmmm mmmm mmmm mmmm
31 du_int
__fixunsxfdi(long double a
);
33 int test__fixunsxfdi(long double a
, du_int expected
)
35 du_int x
= __fixunsxfdi(a
);
37 printf("error in __fixunsxfdi(%LA) = %llX, expected %llX\n",
42 char assumption_1
[sizeof(du_int
) == 2*sizeof(su_int
)] = {0};
43 char assumption_2
[sizeof(du_int
)*CHAR_BIT
== 64] = {0};
44 char assumption_3
[sizeof(long double)*CHAR_BIT
== 128] = {0};
49 #if HAS_80_BIT_LONG_DOUBLE
50 if (test__fixunsxfdi(0.0, 0))
53 if (test__fixunsxfdi(0.5, 0))
55 if (test__fixunsxfdi(0.99, 0))
57 if (test__fixunsxfdi(1.0, 1))
59 if (test__fixunsxfdi(1.5, 1))
61 if (test__fixunsxfdi(1.99, 1))
63 if (test__fixunsxfdi(2.0, 2))
65 if (test__fixunsxfdi(2.01, 2))
67 if (test__fixunsxfdi(-0.5, 0))
69 if (test__fixunsxfdi(-0.99, 0))
71 if (test__fixunsxfdi(-1.0, 0))
73 if (test__fixunsxfdi(-1.5, 0))
75 if (test__fixunsxfdi(-1.99, 0))
77 if (test__fixunsxfdi(-2.0, 0))
79 if (test__fixunsxfdi(-2.01, 0))
82 if (test__fixunsxfdi(0x1.FFFFFEp
+62, 0x7FFFFF8000000000LL
))
84 if (test__fixunsxfdi(0x1.FFFFFCp
+62, 0x7FFFFF0000000000LL
))
87 if (test__fixunsxfdi(-0x1.FFFFFEp
+62, 0))
89 if (test__fixunsxfdi(-0x1.FFFFFCp
+62, 0))
92 if (test__fixunsxfdi(0x1.FFFFFFFFFFFFFp
+62, 0x7FFFFFFFFFFFFC00LL
))
94 if (test__fixunsxfdi(0x1.FFFFFFFFFFFFEp
+62, 0x7FFFFFFFFFFFF800LL
))
97 if (test__fixunsxfdi(-0x1.FFFFFFFFFFFFFp
+62, 0))
99 if (test__fixunsxfdi(-0x1.FFFFFFFFFFFFEp
+62, 0))
102 if (test__fixunsxfdi(0x1.FFFFFFFFFFFFFFFEp
+63L, 0xFFFFFFFFFFFFFFFFLL
))
104 if (test__fixunsxfdi(0x1.0000000000000002p
+63L, 0x8000000000000001LL
))
106 if (test__fixunsxfdi(0x1.0000000000000000p
+63L, 0x8000000000000000LL
))
108 if (test__fixunsxfdi(0x1.FFFFFFFFFFFFFFFCp
+62L, 0x7FFFFFFFFFFFFFFFLL
))
110 if (test__fixunsxfdi(0x1.FFFFFFFFFFFFFFF8p
+62L, 0x7FFFFFFFFFFFFFFELL
))
113 if (test__fixunsxfdi(-0x1.0000000000000000p
+63L, 0))
115 if (test__fixunsxfdi(-0x1.FFFFFFFFFFFFFFFCp
+62L, 0))
117 if (test__fixunsxfdi(-0x1.FFFFFFFFFFFFFFF8p
+62L, 0))