|
3 | 3 | // RUN: %clang_cc1 -x c -ffreestanding %s -triple=x86_64-apple-darwin -no-enable-noundef-analysis -emit-llvm -o - | FileCheck %s |
4 | 4 | // RUN: %clang_cc1 -x c++ -std=c++11 -ffreestanding %s -triple=x86_64-apple-darwin -no-enable-noundef-analysis -emit-llvm -o - | FileCheck %s |
5 | 5 |
|
| 6 | +// RUN: %clang_cc1 -x c -ffreestanding %s -triple=x86_64-apple-darwin -target-feature +popcnt -no-enable-noundef-analysis -emit-llvm -o - -fexperimental-new-constant-interpreter | FileCheck %s --check-prefixes=CHECK,CHECK-POPCNT |
| 7 | +// RUN: %clang_cc1 -x c++ -std=c++11 -ffreestanding %s -triple=x86_64-apple-darwin -target-feature +popcnt -no-enable-noundef-analysis -emit-llvm -o - -fexperimental-new-constant-interpreter | FileCheck %s --check-prefixes=CHECK,CHECK-POPCNT |
| 8 | +// RUN: %clang_cc1 -x c -ffreestanding %s -triple=x86_64-apple-darwin -no-enable-noundef-analysis -emit-llvm -o - -fexperimental-new-constant-interpreter | FileCheck %s |
| 9 | +// RUN: %clang_cc1 -x c++ -std=c++11 -ffreestanding %s -triple=x86_64-apple-darwin -no-enable-noundef-analysis -emit-llvm -o - -fexperimental-new-constant-interpreter | FileCheck %s |
| 10 | + |
| 11 | + |
6 | 12 | #include <x86intrin.h> |
| 13 | +#include "builtin_test_helpers.h" |
7 | 14 |
|
8 | 15 | #ifdef __POPCNT__ |
9 | 16 | int test_mm_popcnt_u32(unsigned int __X) { |
10 | 17 | //CHECK-POPCNT: call i32 @llvm.ctpop.i32 |
11 | 18 | return _mm_popcnt_u32(__X); |
12 | 19 | } |
| 20 | +TEST_CONSTEXPR(_mm_popcnt_u32(0x00000000) == 0); |
| 21 | +TEST_CONSTEXPR(_mm_popcnt_u32(0x000000F0) == 4); |
13 | 22 | #endif |
14 | 23 |
|
15 | 24 | int test_popcnt32(unsigned int __X) { |
16 | 25 | //CHECK: call i32 @llvm.ctpop.i32 |
17 | 26 | return _popcnt32(__X); |
18 | 27 | } |
| 28 | +TEST_CONSTEXPR(_popcnt32(0x00000000) == 0); |
| 29 | +TEST_CONSTEXPR(_popcnt32(0x100000F0) == 5); |
19 | 30 |
|
20 | 31 | int test__popcntd(unsigned int __X) { |
21 | 32 | //CHECK: call i32 @llvm.ctpop.i32 |
22 | 33 | return __popcntd(__X); |
23 | 34 | } |
| 35 | +TEST_CONSTEXPR(__popcntd(0x00000000) == 0); |
| 36 | +TEST_CONSTEXPR(__popcntd(0x00F000F0) == 8); |
24 | 37 |
|
25 | 38 | #ifdef __x86_64__ |
26 | 39 | #ifdef __POPCNT__ |
27 | 40 | long long test_mm_popcnt_u64(unsigned long long __X) { |
28 | 41 | //CHECK-POPCNT: call i64 @llvm.ctpop.i64 |
29 | 42 | return _mm_popcnt_u64(__X); |
30 | 43 | } |
| 44 | +TEST_CONSTEXPR(_mm_popcnt_u64(0x0000000000000000ULL) == 0); |
| 45 | +TEST_CONSTEXPR(_mm_popcnt_u64(0xF000000000000001ULL) == 5); |
31 | 46 | #endif |
32 | 47 |
|
33 | 48 | long long test_popcnt64(unsigned long long __X) { |
34 | 49 | //CHECK: call i64 @llvm.ctpop.i64 |
35 | 50 | return _popcnt64(__X); |
36 | 51 | } |
| 52 | +TEST_CONSTEXPR(_popcnt64(0x0000000000000000ULL) == 0); |
| 53 | +TEST_CONSTEXPR(_popcnt64(0xF00000F000000001ULL) == 9); |
37 | 54 |
|
38 | 55 | long long test__popcntq(unsigned long long __X) { |
39 | 56 | //CHECK: call i64 @llvm.ctpop.i64 |
40 | 57 | return __popcntq(__X); |
41 | 58 | } |
42 | | -#endif |
43 | | - |
44 | | -// Test constexpr handling. |
45 | | -#if defined(__cplusplus) && (__cplusplus >= 201103L) |
46 | | -#if defined(__POPCNT__) |
47 | | -char ctpop32_0[_mm_popcnt_u32(0x00000000) == 0 ? 1 : -1]; |
48 | | -char ctpop32_1[_mm_popcnt_u32(0x000000F0) == 4 ? 1 : -1]; |
49 | | -#endif |
50 | | - |
51 | | -char popcnt32_0[_popcnt32(0x00000000) == 0 ? 1 : -1]; |
52 | | -char popcnt32_1[_popcnt32(0x100000F0) == 5 ? 1 : -1]; |
53 | | - |
54 | | -char popcntd_0[__popcntd(0x00000000) == 0 ? 1 : -1]; |
55 | | -char popcntd_1[__popcntd(0x00F000F0) == 8 ? 1 : -1]; |
56 | | - |
57 | | -#ifdef __x86_64__ |
58 | | -#if defined(__POPCNT__) |
59 | | -char ctpop64_0[_mm_popcnt_u64(0x0000000000000000ULL) == 0 ? 1 : -1]; |
60 | | -char ctpop64_1[_mm_popcnt_u64(0xF000000000000001ULL) == 5 ? 1 : -1]; |
61 | | -#endif |
62 | | - |
63 | | -char popcnt64_0[_popcnt64(0x0000000000000000ULL) == 0 ? 1 : -1]; |
64 | | -char popcnt64_1[_popcnt64(0xF00000F000000001ULL) == 9 ? 1 : -1]; |
65 | | - |
66 | | -char popcntq_0[__popcntq(0x0000000000000000ULL) == 0 ? 1 : -1]; |
67 | | -char popcntq_1[__popcntq(0xF000010000300001ULL) == 8 ? 1 : -1]; |
68 | | -#endif |
| 59 | +TEST_CONSTEXPR(__popcntq(0x0000000000000000ULL) == 0); |
| 60 | +TEST_CONSTEXPR(__popcntq(0xF000010000300001ULL) == 8); |
69 | 61 | #endif |
0 commit comments