blob: 49b2b557284225d6eb1e3ecfb8358ef6377360d2 [file] [log] [blame]
Tim Shen403c6672018-04-23 21:54:06 +00001//===----------------------------------------------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is dual licensed under the MIT and the University of Illinois Open
6// Source Licenses. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
Tim Shen38cd7de2018-07-30 22:27:38 +000010// UNSUPPORTED: c++98, c++03, c++11, c++14
Tim Shen403c6672018-04-23 21:54:06 +000011
12// See GCC PR63723.
13// UNSUPPORTED: gcc-4.9
14
15// <experimental/simd>
16//
17// [simd.class]
18// template <class U> simd(U&& value);
19
20#include <cstdint>
21#include <experimental/simd>
22
Tim Shen38cd7de2018-07-30 22:27:38 +000023namespace ex = std::experimental::parallelism_v2;
Tim Shen403c6672018-04-23 21:54:06 +000024
25template <class T, class... Args>
26auto not_supported_native_simd_ctor(Args&&... args)
Tim Shen38cd7de2018-07-30 22:27:38 +000027 -> decltype(ex::native_simd<T>(std::forward<Args>(args)...),
28 void()) = delete;
Tim Shen403c6672018-04-23 21:54:06 +000029
30template <class T>
31void not_supported_native_simd_ctor(...) {}
32
33template <class T, class... Args>
34auto supported_native_simd_ctor(Args&&... args)
Tim Shen38cd7de2018-07-30 22:27:38 +000035 -> decltype(ex::native_simd<T>(std::forward<Args>(args)...), void()) {}
Tim Shen403c6672018-04-23 21:54:06 +000036
37template <class T>
38void supported_native_simd_ctor(...) = delete;
39
40void compile_narrowing_conversion() {
41 supported_native_simd_ctor<int8_t>(3);
42 supported_native_simd_ctor<int16_t>(3);
43 supported_native_simd_ctor<int32_t>(3);
44 supported_native_simd_ctor<int64_t>(3);
45 supported_native_simd_ctor<uint8_t>(3);
46 supported_native_simd_ctor<uint16_t>(3);
47 supported_native_simd_ctor<uint32_t>(3);
48 supported_native_simd_ctor<uint64_t>(3);
49 supported_native_simd_ctor<float>(3.f);
50 supported_native_simd_ctor<double>(3.);
51 supported_native_simd_ctor<long double>(3.);
52
53 not_supported_native_simd_ctor<float>(3.);
54 not_supported_native_simd_ctor<int8_t>(long(3));
55 not_supported_native_simd_ctor<float>(long(3));
56 not_supported_native_simd_ctor<int>(3.);
57}
58
Tim Shen38cd7de2018-07-30 22:27:38 +000059void compile_convertible() {
60 struct ConvertibleToInt {
61 operator int64_t() const;
62 };
63 supported_native_simd_ctor<int64_t>(ConvertibleToInt());
64
65 struct NotConvertibleToInt {};
66 not_supported_native_simd_ctor<int64_t>(NotConvertibleToInt());
67}
68
69void compile_unsigned() {
70 not_supported_native_simd_ctor<int>(3u);
71 supported_native_simd_ctor<uint16_t>(3u);
72}
73
74template <typename SimdType>
75void test_broadcast() {
76 SimdType a(3);
77 for (size_t i = 0; i < a.size(); i++) {
78 assert(a[i] == 3);
79 }
80}
81
82int main() {
83 test_broadcast<ex::native_simd<int>>();
84 test_broadcast<ex::fixed_size_simd<int, 4>>();
85 test_broadcast<ex::fixed_size_simd<int, 15>>();
86}