1 //===-- fixsfdi_test.c - Test __fixsfdi -----------------------------------===//
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 __fixsfdi for the compiler_rt library.
12 //===----------------------------------------------------------------------===//
17 // Returns: convert a to a signed long long, rounding toward zero.
19 // Assumption: float is a IEEE 32 bit floating point type
20 // su_int is a 32 bit integral type
21 // value in float is representable in di_int (no range checking performed)
23 // seee eeee emmm mmmm mmmm mmmm mmmm mmmm
25 di_int
__fixsfdi(float a
);
27 int test__fixsfdi(float a
, di_int expected
)
29 di_int x
= __fixsfdi(a
);
31 printf("error in __fixsfdi(%A) = %llX, expected %llX\n", a
, x
, expected
);
35 char assumption_1
[sizeof(di_int
) == 2*sizeof(si_int
)] = {0};
36 char assumption_2
[sizeof(su_int
)*CHAR_BIT
== 32] = {0};
37 char assumption_3
[sizeof(float)*CHAR_BIT
== 32] = {0};
41 if (test__fixsfdi(0.0F
, 0))
44 if (test__fixsfdi(0.5F
, 0))
46 if (test__fixsfdi(0.99F
, 0))
48 if (test__fixsfdi(1.0F
, 1))
50 if (test__fixsfdi(1.5F
, 1))
52 if (test__fixsfdi(1.99F
, 1))
54 if (test__fixsfdi(2.0F
, 2))
56 if (test__fixsfdi(2.01F
, 2))
58 if (test__fixsfdi(-0.5F
, 0))
60 if (test__fixsfdi(-0.99F
, 0))
62 if (test__fixsfdi(-1.0F
, -1))
64 if (test__fixsfdi(-1.5F
, -1))
66 if (test__fixsfdi(-1.99F
, -1))
68 if (test__fixsfdi(-2.0F
, -2))
70 if (test__fixsfdi(-2.01F
, -2))
73 if (test__fixsfdi(0x1.FFFFFEp
+62F
, 0x7FFFFF8000000000LL
))
75 if (test__fixsfdi(0x1.FFFFFCp
+62F
, 0x7FFFFF0000000000LL
))
78 if (test__fixsfdi(-0x1.FFFFFEp
+62F
, 0x8000008000000000LL
))
80 if (test__fixsfdi(-0x1.FFFFFCp
+62F
, 0x8000010000000000LL
))