1 // RUN: %clang_builtins %s %librt -o %t && %run %t
2 // REQUIRES: librt_has_fixunssfsi
3 //===-- fixunssfsi_test.c - Test __fixunssfsi -----------------------------===//
5 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
6 // See https://llvm.org/LICENSE.txt for license information.
7 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
9 //===----------------------------------------------------------------------===//
11 // This file tests __fixunssfsi for the compiler_rt library.
13 //===----------------------------------------------------------------------===//
18 // Returns: convert a to a unsigned int, rounding toward zero.
19 // Negative values all become zero.
21 // Assumption: float is a IEEE 32 bit floating point type
22 // su_int is a 32 bit integral type
23 // value in float is representable in su_int or is negative
24 // (no range checking performed)
26 // seee eeee emmm mmmm mmmm mmmm mmmm mmmm
28 COMPILER_RT_ABI su_int
__fixunssfsi(float a
);
30 int test__fixunssfsi(float a
, su_int expected
)
32 su_int x
= __fixunssfsi(a
);
34 printf("error in __fixunssfsi(%A) = %X, expected %X\n", a
, x
, expected
);
38 char assumption_2
[sizeof(su_int
)*CHAR_BIT
== 32] = {0};
39 char assumption_3
[sizeof(float)*CHAR_BIT
== 32] = {0};
43 if (test__fixunssfsi(0.0F
, 0))
46 if (test__fixunssfsi(0.5F
, 0))
48 if (test__fixunssfsi(0.99F
, 0))
50 if (test__fixunssfsi(1.0F
, 1))
52 if (test__fixunssfsi(1.5F
, 1))
54 if (test__fixunssfsi(1.99F
, 1))
56 if (test__fixunssfsi(2.0F
, 2))
58 if (test__fixunssfsi(2.01F
, 2))
60 if (test__fixunssfsi(-0.5F
, 0))
62 if (test__fixunssfsi(-0.99F
, 0))
65 if (test__fixunssfsi(-1.0F
, 0)) // libgcc ignores "returns 0 for negative input" spec
67 if (test__fixunssfsi(-1.5F
, 0))
69 if (test__fixunssfsi(-1.99F
, 0))
71 if (test__fixunssfsi(-2.0F
, 0))
73 if (test__fixunssfsi(-2.01F
, 0))
77 if (test__fixunssfsi(0x1.000000p
+31F
, 0x80000000))
79 if (test__fixunssfsi(0x1.000000p
+32F
, 0xFFFFFFFF))
81 if (test__fixunssfsi(0x1.FFFFFEp
+31F
, 0xFFFFFF00))
83 if (test__fixunssfsi(0x1.FFFFFEp
+30F
, 0x7FFFFF80))
85 if (test__fixunssfsi(0x1.FFFFFCp
+30F
, 0x7FFFFF00))
89 if (test__fixunssfsi(-0x1.FFFFFEp
+30F
, 0))
91 if (test__fixunssfsi(-0x1.FFFFFCp
+30F
, 0))