[AMDGPU] Remove s_wakeup_barrier instruction (#122277)
[llvm-project.git] / compiler-rt / test / builtins / Unit / popcountti2_test.c
blobc3919dccdcb8c80db102e8dfec53f1393fe0cb45
1 // RUN: %clang_builtins %s %librt -o %t && %run %t
2 // REQUIRES: librt_has_popcountti2
3 // REQUIRES: int128
5 #include "int_lib.h"
6 #include <stdio.h>
7 #include <stdlib.h>
9 #ifdef CRT_HAS_128BIT
11 // Returns: count of 1 bits
13 COMPILER_RT_ABI int __popcountti2(ti_int a);
15 int naive_popcount(ti_int a)
17 int r = 0;
18 for (; a; a = (tu_int)a >> 1)
19 r += a & 1;
20 return r;
23 int test__popcountti2(ti_int a)
25 si_int x = __popcountti2(a);
26 si_int expected = naive_popcount(a);
27 if (x != expected)
29 twords at;
30 at.all = a;
31 printf("error in __popcountti2(0x%.16llX%.16llX) = %d, expected %d\n",
32 at.s.high, at.s.low, x, expected);
34 return x != expected;
37 char assumption_1[sizeof(ti_int) == 2*sizeof(di_int)] = {0};
38 char assumption_2[sizeof(di_int)*CHAR_BIT == 64] = {0};
40 #endif
42 int main()
44 #ifdef CRT_HAS_128BIT
45 if (test__popcountti2(0))
46 return 1;
47 if (test__popcountti2(1))
48 return 1;
49 if (test__popcountti2(2))
50 return 1;
51 if (test__popcountti2(0xFFFFFFFFFFFFFFFDLL))
52 return 1;
53 if (test__popcountti2(0xFFFFFFFFFFFFFFFELL))
54 return 1;
55 if (test__popcountti2(0xFFFFFFFFFFFFFFFFLL))
56 return 1;
57 if (test__popcountti2(make_ti(0xFFFFFFFFFFFFFFFFLL, 0xFFFFFFFFFFFFFFFDLL)))
58 return 1;
59 if (test__popcountti2(make_ti(0xFFFFFFFFFFFFFFFFLL, 0xFFFFFFFFFFFFFFFELL)))
60 return 1;
61 if (test__popcountti2(make_ti(0xFFFFFFFFFFFFFFFFLL, 0xFFFFFFFFFFFFFFFFLL)))
62 return 1;
63 int i;
64 for (i = 0; i < 10000; ++i)
65 if (test__popcountti2(((ti_int)rand() << 96) | ((ti_int)rand() << 64) |
66 ((ti_int)rand() << 32) | rand()))
67 return 1;
69 #else
70 printf("skipped\n");
71 #endif
72 return 0;