[PowerPC] Collect some CallLowering arguments into a struct. [NFC]
[llvm-project.git] / compiler-rt / test / builtins / Unit / ffsdi2_test.c
blob50cb0bf68fd3de601b14cb2c8e275c71703f6ac2
1 // RUN: %clang_builtins %s %librt -o %t && %run %t
2 // REQUIRES: librt_has_ffsdi2
3 //===-- ffsdi2_test.c - Test __ffsdi2 -------------------------------------===//
4 //
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
8 //
9 //===----------------------------------------------------------------------===//
11 // This file tests __ffsdi2 for the compiler_rt library.
13 //===----------------------------------------------------------------------===//
15 #include "int_lib.h"
16 #include <stdio.h>
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);
26 if (x != expected)
27 printf("error in __ffsdi2(0x%llX) = %d, expected %d\n", a, x, expected);
28 return x != expected;
31 char assumption_1[sizeof(di_int) == 2*sizeof(si_int)] = {0};
33 int main()
35 if (test__ffsdi2(0x00000000, 0))
36 return 1;
37 if (test__ffsdi2(0x00000001, 1))
38 return 1;
39 if (test__ffsdi2(0x00000002, 2))
40 return 1;
41 if (test__ffsdi2(0x00000003, 1))
42 return 1;
43 if (test__ffsdi2(0x00000004, 3))
44 return 1;
45 if (test__ffsdi2(0x00000005, 1))
46 return 1;
47 if (test__ffsdi2(0x0000000A, 2))
48 return 1;
49 if (test__ffsdi2(0x10000000, 29))
50 return 1;
51 if (test__ffsdi2(0x20000000, 30))
52 return 1;
53 if (test__ffsdi2(0x60000000, 30))
54 return 1;
55 if (test__ffsdi2(0x80000000uLL, 32))
56 return 1;
57 if (test__ffsdi2(0x0000050000000000uLL, 41))
58 return 1;
59 if (test__ffsdi2(0x0200080000000000uLL, 44))
60 return 1;
61 if (test__ffsdi2(0x7200000000000000uLL, 58))
62 return 1;
63 if (test__ffsdi2(0x8000000000000000uLL, 64))
64 return 1;
66 return 0;