1 //===-- ctzti2_test.c - Test __ctzti2 -------------------------------------===//
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 __ctzti2 for the compiler_rt library.
12 //===----------------------------------------------------------------------===//
19 // Returns: the number of trailing 0-bits
21 // Precondition: a != 0
23 si_int
__ctzti2(ti_int a
);
25 int test__ctzti2(ti_int a
, si_int expected
)
27 si_int x
= __ctzti2(a
);
32 printf("error in __ctzti2(0x%llX%.16llX) = %d, expected %d\n",
33 at
.s
.high
, at
.s
.low
, x
, expected
);
38 char assumption_1
[sizeof(ti_int
) == 2*sizeof(di_int
)] = {0};
45 if (test__ctzti2(0x00000001, 0))
47 if (test__ctzti2(0x00000002, 1))
49 if (test__ctzti2(0x00000003, 0))
51 if (test__ctzti2(0x00000004, 2))
53 if (test__ctzti2(0x00000005, 0))
55 if (test__ctzti2(0x0000000A, 1))
57 if (test__ctzti2(0x10000000, 28))
59 if (test__ctzti2(0x20000000, 29))
61 if (test__ctzti2(0x60000000, 29))
63 if (test__ctzti2(0x80000000uLL
, 31))
65 if (test__ctzti2(0x0000050000000000uLL
, 40))
67 if (test__ctzti2(0x0200080000000000uLL
, 43))
69 if (test__ctzti2(0x7200000000000000uLL
, 57))
71 if (test__ctzti2(0x8000000000000000uLL
, 63))
73 if (test__ctzti2(make_ti(0x00000000A0000000LL
, 0x0000000000000000LL
), 93))
75 if (test__ctzti2(make_ti(0xF000000000000000LL
, 0x0000000000000000LL
), 124))
77 if (test__ctzti2(make_ti(0x8000000000000000LL
, 0x0000000000000000LL
), 127))