1 // RUN: %clang_builtins %s %librt -o %t && %run %t
2 // REQUIRES: librt_has_ffsdi2
3 //===-- ffsdi2_test.c - Test __ffsdi2 -------------------------------------===//
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 __ffsdi2 for the compiler_rt library.
13 //===----------------------------------------------------------------------===//
18 // Returns: the index of the least significant 1-bit in a, or
19 // the value zero if a is zero. The least significant bit is index one.
21 COMPILER_RT_ABI si_int
__ffsdi2(di_int a
);
23 int test__ffsdi2(di_int a
, si_int expected
)
25 si_int x
= __ffsdi2(a
);
27 printf("error in __ffsdi2(0x%llX) = %d, expected %d\n", a
, x
, expected
);
31 char assumption_1
[sizeof(di_int
) == 2*sizeof(si_int
)] = {0};
35 if (test__ffsdi2(0x00000000, 0))
37 if (test__ffsdi2(0x00000001, 1))
39 if (test__ffsdi2(0x00000002, 2))
41 if (test__ffsdi2(0x00000003, 1))
43 if (test__ffsdi2(0x00000004, 3))
45 if (test__ffsdi2(0x00000005, 1))
47 if (test__ffsdi2(0x0000000A, 2))
49 if (test__ffsdi2(0x10000000, 29))
51 if (test__ffsdi2(0x20000000, 30))
53 if (test__ffsdi2(0x60000000, 30))
55 if (test__ffsdi2(0x80000000uLL
, 32))
57 if (test__ffsdi2(0x0000050000000000uLL
, 41))
59 if (test__ffsdi2(0x0200080000000000uLL
, 44))
61 if (test__ffsdi2(0x7200000000000000uLL
, 58))
63 if (test__ffsdi2(0x8000000000000000uLL
, 64))