1 // RUN: %clang_builtins %s %librt -o %t && %run %t
2 // REQUIRES: librt_has_popcountti2
4 //===-- popcountti2_test.c - Test __popcountti2 ----------------------------===//
6 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
7 // See https://llvm.org/LICENSE.txt for license information.
8 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
10 //===----------------------------------------------------------------------===//
12 // This file tests __popcountti2 for the compiler_rt library.
14 //===----------------------------------------------------------------------===//
22 // Returns: count of 1 bits
24 COMPILER_RT_ABI si_int
__popcountti2(ti_int a
);
26 int naive_popcount(ti_int a
)
29 for (; a
; a
= (tu_int
)a
>> 1)
34 int test__popcountti2(ti_int a
)
36 si_int x
= __popcountti2(a
);
37 si_int expected
= naive_popcount(a
);
42 printf("error in __popcountti2(0x%.16llX%.16llX) = %d, expected %d\n",
43 at
.s
.high
, at
.s
.low
, x
, expected
);
48 char assumption_1
[sizeof(ti_int
) == 2*sizeof(di_int
)] = {0};
49 char assumption_2
[sizeof(di_int
)*CHAR_BIT
== 64] = {0};
56 if (test__popcountti2(0))
58 if (test__popcountti2(1))
60 if (test__popcountti2(2))
62 if (test__popcountti2(0xFFFFFFFFFFFFFFFDLL
))
64 if (test__popcountti2(0xFFFFFFFFFFFFFFFELL
))
66 if (test__popcountti2(0xFFFFFFFFFFFFFFFFLL
))
68 if (test__popcountti2(make_ti(0xFFFFFFFFFFFFFFFFLL
, 0xFFFFFFFFFFFFFFFDLL
)))
70 if (test__popcountti2(make_ti(0xFFFFFFFFFFFFFFFFLL
, 0xFFFFFFFFFFFFFFFELL
)))
72 if (test__popcountti2(make_ti(0xFFFFFFFFFFFFFFFFLL
, 0xFFFFFFFFFFFFFFFFLL
)))
75 for (i
= 0; i
< 10000; ++i
)
76 if (test__popcountti2(((ti_int
)rand() << 96) | ((ti_int
)rand() << 64) |
77 ((ti_int
)rand() << 32) | rand()))