1 //===-- fixunstfdi_test.c - Test __fixunstfdi -----------------------------===//
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 __fixunstfdi for the compiler_rt library.
12 //===----------------------------------------------------------------------===//
19 // Returns: convert a to a unsigned long long, rounding toward zero.
20 // Negative values all become zero.
22 // Assumption: long double is a ppc 128 bit floating point type
23 // du_int is a 64 bit integral type
24 // value in long double is representable in du_int or is negative
25 // (no range checking performed)
27 du_int
__fixunstfdi(long double a
);
29 int test__fixunstfdi(long double a
, du_int expected
)
31 du_int x
= __fixunstfdi(a
);
33 printf("error in __fixunstfdi(%LA) = %llX, expected %llX\n",
38 char assumption_1
[sizeof(du_int
) == 2*sizeof(su_int
)] = {0};
39 char assumption_2
[sizeof(du_int
)*CHAR_BIT
== 64] = {0};
40 char assumption_3
[sizeof(long double)*CHAR_BIT
== 128] = {0};
47 if (test__fixunstfdi(0.0, 0))
50 if (test__fixunstfdi(0.5, 0))
52 if (test__fixunstfdi(0.99, 0))
54 if (test__fixunstfdi(1.0, 1))
56 if (test__fixunstfdi(1.5, 1))
58 if (test__fixunstfdi(1.99, 1))
60 if (test__fixunstfdi(2.0, 2))
62 if (test__fixunstfdi(2.01, 2))
64 if (test__fixunstfdi(-0.5, 0))
66 if (test__fixunstfdi(-0.99, 0))
68 if (test__fixunstfdi(-1.0, 0))
70 if (test__fixunstfdi(-1.5, 0))
72 if (test__fixunstfdi(-1.99, 0))
74 if (test__fixunstfdi(-2.0, 0))
76 if (test__fixunstfdi(-2.01, 0))
79 if (test__fixunstfdi(0x1.FFFFFEp
+62, 0x7FFFFF8000000000LL
))
81 if (test__fixunstfdi(0x1.FFFFFCp
+62, 0x7FFFFF0000000000LL
))
84 if (test__fixunstfdi(-0x1.FFFFFEp
+62, 0))
86 if (test__fixunstfdi(-0x1.FFFFFCp
+62, 0))
89 if (test__fixunstfdi(0x1.FFFFFFFFFFFFFp
+62, 0x7FFFFFFFFFFFFC00LL
))
91 if (test__fixunstfdi(0x1.FFFFFFFFFFFFEp
+62, 0x7FFFFFFFFFFFF800LL
))
94 if (test__fixunstfdi(-0x1.FFFFFFFFFFFFFp
+62, 0))
96 if (test__fixunstfdi(-0x1.FFFFFFFFFFFFEp
+62, 0))
99 if (test__fixunstfdi(0x1.FFFFFFFFFFFFFFFEp
+63L, 0xFFFFFFFFFFFFFFFFLL
))
101 if (test__fixunstfdi(0x1.0000000000000002p
+63L, 0x8000000000000001LL
))
103 if (test__fixunstfdi(0x1.0000000000000000p
+63L, 0x8000000000000000LL
))
105 if (test__fixunstfdi(0x1.FFFFFFFFFFFFFFFCp
+62L, 0x7FFFFFFFFFFFFFFFLL
))
107 if (test__fixunstfdi(0x1.FFFFFFFFFFFFFFF8p
+62L, 0x7FFFFFFFFFFFFFFELL
))
110 if (test__fixunstfdi(-0x1.0000000000000000p
+63L, 0))
112 if (test__fixunstfdi(-0x1.FFFFFFFFFFFFFFFCp
+62L, 0))
114 if (test__fixunstfdi(-0x1.FFFFFFFFFFFFFFF8p
+62L, 0))