[PowerPC] Collect some CallLowering arguments into a struct. [NFC]
[llvm-project.git] / compiler-rt / test / builtins / Unit / parityti2_test.c
blob4c9317d0b26a9f3c9c32d845b67189800d63508b
1 // RUN: %clang_builtins %s %librt -o %t && %run %t
2 // REQUIRES: librt_has_parityti2
3 // REQUIRES: int128
4 //===-- parityti2_test.c - Test __parityti2 -------------------------------===//
5 //
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
9 //
10 //===----------------------------------------------------------------------===//
12 // This file tests __parityti2 for the compiler_rt library.
14 //===----------------------------------------------------------------------===//
16 #include "int_lib.h"
17 #include <stdio.h>
18 #include <stdlib.h>
20 #ifdef CRT_HAS_128BIT
22 // Returns: 1 if number of bits is odd else returns 0
24 COMPILER_RT_ABI si_int __parityti2(ti_int a);
26 int naive_parity(ti_int a)
28 int r = 0;
29 for (; a; a = a & (a - 1))
30 r = ~r;
31 return r & 1;
34 int test__parityti2(ti_int a)
36 si_int x = __parityti2(a);
37 si_int expected = naive_parity(a);
38 if (x != expected)
40 twords at;
41 at.all = a;
42 printf("error in __parityti2(0x%.16llX%.16llX) = %d, expected %d\n",
43 at.s.high, at.s.low, x, expected);
45 return 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};
51 #endif
53 int main()
55 #ifdef CRT_HAS_128BIT
56 int i;
57 for (i = 0; i < 10000; ++i)
58 if (test__parityti2(((ti_int)rand() << 96) + ((ti_int)rand() << 64) +
59 ((ti_int)rand() << 32) + rand()))
60 return 1;
62 #else
63 printf("skipped\n");
64 #endif
65 return 0;