1 // XFAIL: target=aarch64-{{.*}}-windows-{{.*}}
2 // RUN: %clang_builtins %s %librt -o %t && %run %t
3 // REQUIRES: librt_has_fixunstfdi
7 #if _ARCH_PPC || __aarch64__
11 // Returns: convert a to a unsigned long long, rounding toward zero.
12 // Negative values all become zero.
14 // Assumption: long double is a 128 bit floating point type
15 // du_int is a 64 bit integral type
16 // value in long double is representable in du_int or is negative
17 // (no range checking performed)
19 COMPILER_RT_ABI du_int
__fixunstfdi(long double a
);
21 int test__fixunstfdi(long double a
, du_int expected
)
23 du_int x
= __fixunstfdi(a
);
25 printf("error in __fixunstfdi(%LA) = %llX, expected %llX\n",
30 char assumption_1
[sizeof(du_int
) == 2*sizeof(su_int
)] = {0};
31 char assumption_2
[sizeof(du_int
)*CHAR_BIT
== 64] = {0};
32 char assumption_3
[sizeof(long double)*CHAR_BIT
== 128] = {0};
38 #if _ARCH_PPC || __aarch64__
39 if (test__fixunstfdi(0.0, 0))
42 if (test__fixunstfdi(0.5, 0))
44 if (test__fixunstfdi(0.99, 0))
46 if (test__fixunstfdi(1.0, 1))
48 if (test__fixunstfdi(1.5, 1))
50 if (test__fixunstfdi(1.99, 1))
52 if (test__fixunstfdi(2.0, 2))
54 if (test__fixunstfdi(2.01, 2))
56 if (test__fixunstfdi(-0.5, 0))
58 if (test__fixunstfdi(-0.99, 0))
60 if (test__fixunstfdi(-1.0, 0))
62 if (test__fixunstfdi(-1.5, 0))
64 if (test__fixunstfdi(-1.99, 0))
66 if (test__fixunstfdi(-2.0, 0))
68 if (test__fixunstfdi(-2.01, 0))
71 if (test__fixunstfdi(0x1.FFFFFEp
+62, 0x7FFFFF8000000000LL
))
73 if (test__fixunstfdi(0x1.FFFFFCp
+62, 0x7FFFFF0000000000LL
))
76 if (test__fixunstfdi(-0x1.FFFFFEp
+62, 0))
78 if (test__fixunstfdi(-0x1.FFFFFCp
+62, 0))
81 if (test__fixunstfdi(0x1.FFFFFFFFFFFFFp
+62, 0x7FFFFFFFFFFFFC00LL
))
83 if (test__fixunstfdi(0x1.FFFFFFFFFFFFEp
+62, 0x7FFFFFFFFFFFF800LL
))
86 if (test__fixunstfdi(-0x1.FFFFFFFFFFFFFp
+62, 0))
88 if (test__fixunstfdi(-0x1.FFFFFFFFFFFFEp
+62, 0))
91 if (test__fixunstfdi(0x1.FFFFFFFFFFFFFFFEp
+63L, 0xFFFFFFFFFFFFFFFFLL
))
93 if (test__fixunstfdi(0x1.0000000000000002p
+63L, 0x8000000000000001LL
))
95 if (test__fixunstfdi(0x1.0000000000000000p
+63L, 0x8000000000000000LL
))
97 if (test__fixunstfdi(0x1.FFFFFFFFFFFFFFFCp
+62L, 0x7FFFFFFFFFFFFFFFLL
))
99 if (test__fixunstfdi(0x1.FFFFFFFFFFFFFFF8p
+62L, 0x7FFFFFFFFFFFFFFELL
))
101 if (test__fixunstfdi(0x1.p
+64L, 0xFFFFFFFFFFFFFFFFLL
))
104 if (test__fixunstfdi(-0x1.0000000000000000p
+63L, 0))
106 if (test__fixunstfdi(-0x1.FFFFFFFFFFFFFFFCp
+62L, 0))
108 if (test__fixunstfdi(-0x1.FFFFFFFFFFFFFFF8p
+62L, 0))