1 //===-- clzti2_test.c - Test __clzti2 -------------------------------------===//
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 __clzti2 for the compiler_rt library.
12 //===----------------------------------------------------------------------===//
19 // Returns: the number of leading 0-bits
21 // Precondition: a != 0
23 si_int
__clzti2(ti_int a
);
25 int test__clzti2(ti_int a
, si_int expected
)
27 si_int x
= __clzti2(a
);
32 printf("error in __clzti2(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 const int N
= (int)(sizeof(ti_int
) * CHAR_BIT
);
47 if (test__clzti2(0x00000001, N
-1))
49 if (test__clzti2(0x00000002, N
-2))
51 if (test__clzti2(0x00000003, N
-2))
53 if (test__clzti2(0x00000004, N
-3))
55 if (test__clzti2(0x00000005, N
-3))
57 if (test__clzti2(0x0000000A, N
-4))
59 if (test__clzti2(0x1000000A, N
*3/4+3))
61 if (test__clzti2(0x2000000A, N
*3/4+2))
63 if (test__clzti2(0x6000000A, N
*3/4+1))
65 if (test__clzti2(0x8000000AuLL
, N
*3/4))
67 if (test__clzti2(0x000005008000000AuLL
, 85))
69 if (test__clzti2(0x020005008000000AuLL
, 70))
71 if (test__clzti2(0x720005008000000AuLL
, 65))
73 if (test__clzti2(0x820005008000000AuLL
, 64))
76 if (test__clzti2(make_ti(0x0000000080000000LL
, 0x8000000800000000LL
), 32))
78 if (test__clzti2(make_ti(0x0000000100000000LL
, 0x8000000800000000LL
), 31))
80 if (test__clzti2(make_ti(0x1000000100000000LL
, 0x8000000800000000LL
), 3))
82 if (test__clzti2(make_ti(0x7000000100000000LL
, 0x8000000800000000LL
), 1))
84 if (test__clzti2(make_ti(0x8000000100000000LL
, 0x8000000800000000LL
), 0))