1 // RUN: %clang_builtins %s %librt -o %t && %run %t
2 // REQUIRES: librt_has_clzti2
10 // Returns: the number of leading 0-bits
12 // Precondition: a != 0
14 COMPILER_RT_ABI
int __clzti2(ti_int a
);
16 int test__clzti2(ti_int a
, int expected
)
23 printf("error in __clzti2(0x%llX%.16llX) = %d, expected %d\n",
24 at
.s
.high
, at
.s
.low
, x
, expected
);
29 char assumption_1
[sizeof(ti_int
) == 2*sizeof(di_int
)] = {0};
36 const int N
= (int)(sizeof(ti_int
) * CHAR_BIT
);
38 if (test__clzti2(0x00000001, N
-1))
40 if (test__clzti2(0x00000002, N
-2))
42 if (test__clzti2(0x00000003, N
-2))
44 if (test__clzti2(0x00000004, N
-3))
46 if (test__clzti2(0x00000005, N
-3))
48 if (test__clzti2(0x0000000A, N
-4))
50 if (test__clzti2(0x1000000A, N
*3/4+3))
52 if (test__clzti2(0x2000000A, N
*3/4+2))
54 if (test__clzti2(0x6000000A, N
*3/4+1))
56 if (test__clzti2(0x8000000AuLL
, N
*3/4))
58 if (test__clzti2(0x000005008000000AuLL
, 85))
60 if (test__clzti2(0x020005008000000AuLL
, 70))
62 if (test__clzti2(0x720005008000000AuLL
, 65))
64 if (test__clzti2(0x820005008000000AuLL
, 64))
67 if (test__clzti2(make_ti(0x0000000080000000LL
, 0x8000000800000000LL
), 32))
69 if (test__clzti2(make_ti(0x0000000100000000LL
, 0x8000000800000000LL
), 31))
71 if (test__clzti2(make_ti(0x1000000100000000LL
, 0x8000000800000000LL
), 3))
73 if (test__clzti2(make_ti(0x7000000100000000LL
, 0x8000000800000000LL
), 1))
75 if (test__clzti2(make_ti(0x8000000100000000LL
, 0x8000000800000000LL
), 0))