25#ifndef _GLIBCXX_SIMD_VEC_H
26#define _GLIBCXX_SIMD_VEC_H 1
29#pragma GCC system_header
32#if __cplusplus >= 202400L
35#include "simd_flags.h"
42#pragma GCC diagnostic push
43#pragma GCC diagnostic ignored "-Wpsabi"
45namespace std _GLIBCXX_VISIBILITY(default)
47_GLIBCXX_BEGIN_NAMESPACE_VERSION
51 template <
typename _Tp,
typename _Ap>
55 using value_type = _Tp;
59 using mask_type = basic_mask<0, void>;
61#define _GLIBCXX_DELETE_SIMD "This specialization is disabled because of an invalid combination " \
62 "of template arguments to basic_vec."
64 basic_vec() =
delete(_GLIBCXX_DELETE_SIMD);
66 ~basic_vec() =
delete(_GLIBCXX_DELETE_SIMD);
68 basic_vec(
const basic_vec&) =
delete(_GLIBCXX_DELETE_SIMD);
70 basic_vec& operator=(
const basic_vec&) =
delete(_GLIBCXX_DELETE_SIMD);
72#undef _GLIBCXX_DELETE_SIMD
75 template <
typename _Tp,
typename _Ap>
78 using _Vp = basic_vec<_Tp, _Ap>;
81 using value_type = _Tp;
85 using mask_type = basic_mask<
sizeof(_Tp), abi_type>;
87 using iterator = __iterator<_Vp>;
89 using const_iterator = __iterator<const _Vp>;
93 {
return {
static_cast<_Vp&
>(*this), 0}; }
95 constexpr const_iterator
96 begin() const noexcept
99 constexpr const_iterator
100 cbegin() const noexcept
101 {
return {
static_cast<const _Vp&
>(*this), 0}; }
103 constexpr default_sentinel_t
107 constexpr default_sentinel_t
108 cend() const noexcept
111 static constexpr auto size = __simd_size_c<_Ap::_S_size>;
113 _VecBase() =
default;
116 template <
typename _Up,
typename _UAbi>
117 requires (_Ap::_S_size != _UAbi::_S_size)
118 _VecBase(
const basic_vec<_Up, _UAbi>&) =
delete(
"size mismatch");
120 template <
typename _Up,
typename _UAbi>
121 requires (_Ap::_S_size == _UAbi::_S_size) && (!__explicitly_convertible_to<_Up, _Tp>)
123 _VecBase(
const basic_vec<_Up, _UAbi>&)
124 =
delete(
"the value types are not convertible");
126 [[__gnu__::__always_inline__]]
128 operator+(
const _Vp& __x,
const _Vp& __y)
noexcept
135 [[__gnu__::__always_inline__]]
137 operator-(
const _Vp& __x,
const _Vp& __y)
noexcept
144 [[__gnu__::__always_inline__]]
146 operator*(
const _Vp& __x,
const _Vp& __y)
noexcept
153 [[__gnu__::__always_inline__]]
155 operator/(
const _Vp& __x,
const _Vp& __y)
noexcept
162 [[__gnu__::__always_inline__]]
164 operator%(
const _Vp& __x,
const _Vp& __y)
noexcept
165 requires requires (_Tp __a) { __a % __a; }
172 [[__gnu__::__always_inline__]]
174 operator&(
const _Vp& __x,
const _Vp& __y)
noexcept
175 requires requires (_Tp __a) { __a & __a; }
182 [[__gnu__::__always_inline__]]
184 operator|(
const _Vp& __x,
const _Vp& __y)
noexcept
185 requires requires (_Tp __a) { __a | __a; }
192 [[__gnu__::__always_inline__]]
194 operator^(
const _Vp& __x,
const _Vp& __y)
noexcept
195 requires requires (_Tp __a) { __a ^ __a; }
202 [[__gnu__::__always_inline__]]
204 operator<<(
const _Vp& __x,
const _Vp& __y) _GLIBCXX_SIMD_NOEXCEPT
205 requires requires (_Tp __a) { __a << __a; }
212 [[__gnu__::__always_inline__]]
214 operator<<(
const _Vp& __x, __simd_size_type __y) _GLIBCXX_SIMD_NOEXCEPT
215 requires requires (_Tp __a, __simd_size_type __b) { __a << __b; }
222 [[__gnu__::__always_inline__]]
224 operator>>(
const _Vp& __x,
const _Vp& __y) _GLIBCXX_SIMD_NOEXCEPT
225 requires requires (_Tp __a) { __a >> __a; }
232 [[__gnu__::__always_inline__]]
234 operator>>(
const _Vp& __x, __simd_size_type __y) _GLIBCXX_SIMD_NOEXCEPT
235 requires requires (_Tp __a, __simd_size_type __b) { __a >> __b; }
246 template <
integral _Tp>
247 inline constexpr _Tp __max_shift
248 = (
sizeof(_Tp) <
sizeof(int) ?
sizeof(int) :
sizeof(_Tp)) * __CHAR_BIT__;
250 template <__vectorizable _Tp, __abi_tag _Ap>
251 requires (_Ap::_S_nreg == 1)
252 class basic_vec<_Tp, _Ap>
253 : public _VecBase<_Tp, _Ap>
255 template <
typename,
typename>
256 friend class basic_vec;
258 template <
size_t,
typename>
259 friend class basic_mask;
261 static constexpr int _S_size = _Ap::_S_size;
263 static constexpr int _S_full_size = __bit_ceil(
unsigned(_S_size));
265 static constexpr bool _S_is_scalar = _S_size == 1;
267 static constexpr bool _S_use_bitmask = _Ap::_S_is_bitmask && !_S_is_scalar;
269 using _DataType =
typename _Ap::template _DataType<_Tp>;
279 static constexpr bool _S_is_partial =
sizeof(_M_data) >
sizeof(_Tp) * _S_size;
281 using __canon_value_type = __canonical_vec_type_t<_Tp>;
284 using value_type = _Tp;
286 using mask_type = _VecBase<_Tp, _Ap>::mask_type;
289 [[__gnu__::__always_inline__]]
290 static constexpr basic_vec
291 _S_init(_DataType __x)
298 [[__gnu__::__always_inline__]]
299 constexpr const _DataType&
303 [[__gnu__::__always_inline__]]
304 friend constexpr bool
305 __is_const_known(
const basic_vec& __x)
306 {
return __builtin_constant_p(__x._M_data); }
308 [[__gnu__::__always_inline__]]
310 _M_concat_data([[maybe_unused]]
bool __do_sanitize =
false)
const
312 if constexpr (_S_is_scalar)
313 return __vec_builtin_type<__canon_value_type, 1>{_M_data};
318 template <
int _Size = _S_size,
int _Offset = 0,
typename _A0,
typename _Fp>
319 [[__gnu__::__always_inline__]]
320 static constexpr basic_vec
321 _S_static_permute(
const basic_vec<value_type, _A0>& __x, _Fp&& __idxmap)
323 using _Xp = basic_vec<value_type, _A0>;
325 if constexpr (_S_is_scalar)
327 constexpr __simd_size_type __j = [&]
consteval {
328 if constexpr (__index_permutation_function_sized<_Fp>)
329 return __idxmap(_Offset, _Size);
331 return __idxmap(_Offset);
333 if constexpr (__j == simd::zero_element || __j == simd::uninit_element)
336 static_assert(__j >= 0 && __j < _Xp::_S_size);
337 __r._M_data = __x[__j];
341 auto __idxmap2 = [=](
auto __i)
consteval {
342 if constexpr (int(__i + _Offset) >= _Size)
343 return __simd_size_c<simd::uninit_element>;
344 else if constexpr (__index_permutation_function_sized<_Fp>)
345 return __simd_size_c<__idxmap(__i + _Offset, _Size)>;
347 return __simd_size_c<__idxmap(__i + _Offset)>;
349 constexpr auto __adj_idx = [](
auto __i) {
350 constexpr int __j = __i;
351 if constexpr (__j == simd::zero_element)
352 return __simd_size_c<__bit_ceil(
unsigned(_Xp::_S_size))>;
353 else if constexpr (__j == simd::uninit_element)
354 return __simd_size_c<-1>;
357 static_assert(__j >= 0 && __j < _Xp::_S_size);
358 return __simd_size_c<__j>;
361 constexpr auto [...__is0] = _IotaArray<_S_size>;
362 constexpr bool __needs_zero_element
363 = ((__idxmap2(__simd_size_c<__is0>).value == simd::zero_element) || ...);
364 constexpr auto [...__is_full] = _IotaArray<_S_full_size>;
365 if constexpr (_A0::_S_nreg == 2 && !__needs_zero_element)
367 __r._M_data = __builtin_shufflevector(
368 __x._M_data0._M_data, __x._M_data1._M_data,
369 __adj_idx(__idxmap2(__simd_size_c<__is_full>)).value...);
373 __r._M_data = __builtin_shufflevector(
374 __x._M_concat_data(),
decltype(__x._M_concat_data())(),
375 __adj_idx(__idxmap2(__simd_size_c<__is_full>)).value...);
381 template <
typename _Vp>
382 [[__gnu__::__always_inline__]]
384 _M_chunk() const noexcept
386 constexpr int __n = _S_size / _Vp::_S_size;
387 constexpr int __rem = _S_size % _Vp::_S_size;
388 constexpr auto [...__is] = _IotaArray<__n>;
389 if constexpr (__rem == 0)
390 return array<_Vp, __n> {__extract_simd_at<_Vp>(cw<_Vp::_S_size * __is>, *
this)...};
393 using _Rest = resize_t<__rem, _Vp>;
394 return tuple(__extract_simd_at<_Vp>(cw<_Vp::_S_size * __is>, *
this)...,
395 __extract_simd_at<_Rest>(cw<_Vp::_S_size * __n>, *
this));
399 [[__gnu__::__always_inline__]]
400 static constexpr basic_vec
401 _S_concat(
const basic_vec& __x0)
noexcept
404 template <
typename... _As>
405 requires (
sizeof...(_As) > 1)
406 [[__gnu__::__always_inline__]]
407 static constexpr basic_vec
408 _S_concat(
const basic_vec<value_type, _As>&... __xs)
noexcept
410 static_assert(_S_size == (_As::_S_size + ...));
411 return __extract_simd_at<basic_vec>(cw<0>, __xs...);
438 template <
int _Shift, _ArchTraits _Traits = {}>
439 [[__gnu__::__always_inline__]]
441 _M_elements_shifted_to_front()
const
443 static_assert(_Shift < _S_size && -_Shift < _S_size);
444 if constexpr (_Shift == 0)
447 return _S_static_permute(*
this, [](
int __i)
consteval {
448 int __off = __i + _Shift;
449 return __off >= _S_size || __off < 0 ? zero_element : __off;
459 template <
typename _Vp, __canon_value_type __
id>
460 [[__gnu__::__always_inline__]]
462 _M_pad_to_T_with_value() const noexcept
464 static_assert(!_Vp::_S_is_partial);
465 static_assert(_Ap::_S_nreg == 1);
466 if constexpr (
sizeof(_Vp) == 32)
468 static_assert(
sizeof(_M_data) == 32);
469 constexpr auto __k = _Vp::mask_type::_S_partial_mask_of_n(_S_size);
470 return __select_impl(__k, _Vp::_S_init(_M_data), __id);
474 static_assert(
sizeof(_Vp) <= 16);
475 static_assert(
sizeof(_M_data) <=
sizeof(_Vp));
476 _Vp __v1 = __vec_zero_pad_to<sizeof(_Vp)>(_M_data);
477 if constexpr (__id == 0 && _S_is_partial)
481 __v1 = __v1.template _M_elements_shifted_to_front<-(_Vp::_S_size - _S_size)>();
482 else if constexpr (_Vp::_S_size - _S_size == 1)
484 __vec_set(__v1._M_data, _Vp::_S_size - 1, __id);
485 else if constexpr (__has_single_bit(
unsigned(_Vp::_S_size - _S_size)))
487 constexpr int __n = _Vp::_S_size - _S_size;
488 using _Ip = __integer_from<__n *
sizeof(__canon_value_type)>;
489 constexpr auto [...__is] = _IotaArray<__n>;
490 constexpr __canon_value_type __idn[__n] = {((void)__is, __id)...};
491 auto __vn = __vec_bit_cast<_Ip>(__v1._M_data);
492 __vec_set(__vn, _Vp::_S_size / __n - 1, __builtin_bit_cast(_Ip, __idn));
493 __v1._M_data =
reinterpret_cast<typename _Vp::_DataType
>(__vn);
495 else if constexpr (__id != 0 && !_S_is_partial)
499 constexpr _Vp __idn([](
int __i) {
500 return __i >= _S_size ? __id : __canon_value_type();
502 __v1._M_data = __vec_or(__v1._M_data, __idn._M_data);
504 else if constexpr (__id != 0 || _S_is_partial)
506 constexpr auto __k = _Vp::mask_type::_S_partial_mask_of_n(_S_size);
507 __v1 = __select_impl(__k, __v1, __id);
513 [[__gnu__::__always_inline__]]
515 _M_reduce_to_half(
auto __binary_op)
const
517 static_assert(__has_single_bit(
unsigned(_S_size)));
518 auto [__a, __b] = chunk<_S_size / 2>(*this);
519 return __binary_op(__a, __b);
522 template <
typename _Rest,
typename _BinaryOp>
523 [[__gnu__::__always_inline__]]
525 _M_reduce_tail(
const _Rest& __rest, _BinaryOp __binary_op)
const
527 if constexpr (_S_is_scalar)
528 return __binary_op(*
this, __rest)._M_data;
529 else if constexpr (_Rest::_S_size == _S_size)
530 return __binary_op(*
this, __rest)._M_reduce(__binary_op);
531 else if constexpr (_Rest::_S_size > _S_size)
533 auto [__a, __b] = __rest.template _M_chunk<basic_vec>();
534 return __binary_op(*
this, __a)._M_reduce_tail(__b, __binary_op);
536 else if constexpr (_Rest::_S_size == 1)
537 return __binary_op(_Rest(_M_reduce(__binary_op)), __rest)[0];
538 else if constexpr (
sizeof(_M_data) <= 16
539 &&
requires { __default_identity_element<__canon_value_type, _BinaryOp>(); })
541 constexpr __canon_value_type __id
542 = __default_identity_element<__canon_value_type, _BinaryOp>();
543 return __binary_op(_M_data, __rest.template _M_pad_to_T_with_value<basic_vec, __id>())
544 ._M_reduce(__binary_op);
547 return _M_reduce_to_half(__binary_op)._M_reduce_tail(__rest, __binary_op);
556 template <
typename _BinaryOp, _ArchTraits _Traits = {}>
557 [[__gnu__::__always_inline__]]
559 _M_reduce(_BinaryOp __binary_op)
const
561 constexpr bool __have_id_elem
562 =
requires { __default_identity_element<__canon_value_type, _BinaryOp>(); };
563 if constexpr (_S_size == 1)
564 return operator[](0);
565 else if constexpr (_Traits.template _M_eval_as_f32<value_type>()
566 && (is_same_v<_BinaryOp, plus<>>
567 || is_same_v<_BinaryOp, multiplies<>>))
568 return value_type(rebind_t<float, basic_vec>(*this)._M_reduce(__binary_op));
570 else if constexpr (is_integral_v<value_type> &&
sizeof(value_type) == 1
571 && is_same_v<
decltype(__binary_op), multiplies<>>)
586 if constexpr (!_S_is_partial)
588 using _V16 = resize_t<_S_size / 2, rebind_t<unsigned short, basic_vec>>;
589 auto __a = __builtin_bit_cast(_V16, *
this);
590 return __binary_op(__a, __a >> 8)._M_reduce(__binary_op);
594 using _V16 = rebind_t<unsigned short, basic_vec>;
595 return _V16(*this)._M_reduce(__binary_op);
599 else if constexpr (__has_single_bit(
unsigned(_S_size)))
601 if constexpr (
sizeof(_M_data) > 16)
602 return _M_reduce_to_half(__binary_op)._M_reduce(__binary_op);
603 else if constexpr (_S_size == 2)
604 return _M_reduce_to_half(__binary_op)[0];
607 static_assert(_S_size <= 16);
610 if constexpr (
sizeof(_M_data) <= 16 && is_integral_v<value_type>)
612 if constexpr (_S_size > 8)
613 __x = __binary_op(__x, __x.template _M_elements_shifted_to_front<8>());
614 if constexpr (_S_size > 4)
615 __x = __binary_op(__x, __x.template _M_elements_shifted_to_front<4>());
616 if constexpr (_S_size > 2)
617 __x = __binary_op(__x, __x.template _M_elements_shifted_to_front<2>());
620 return __binary_op(__x, __x.template _M_elements_shifted_to_front<1>())[0];
623 if constexpr (_S_size > 8)
624 __x = __binary_op(__x, _S_static_permute(__x, _SwapNeighbors<8>()));
625 if constexpr (_S_size > 4)
626 __x = __binary_op(__x, _S_static_permute(__x, _SwapNeighbors<4>()));
629 if constexpr (is_integral_v<value_type> &&
sizeof(value_type) <= 1)
630 return value_type(resize_t<4, rebind_t<int, basic_vec>>(chunk<4>(__x)[0])
631 ._M_reduce(__binary_op));
633 if constexpr (_S_size > 2)
634 __x = __binary_op(__x, _S_static_permute(__x, _SwapNeighbors<2>()));
635 if constexpr (is_integral_v<value_type> &&
sizeof(value_type) == 2)
636 return __binary_op(__x, _S_static_permute(__x, _SwapNeighbors<1>()))[0];
638 return __binary_op(vec<value_type, 1>(__x[0]), vec<value_type, 1>(__x[1]))[0];
641 else if constexpr (
sizeof(_M_data) == 32)
643 const auto [__lo, __hi] = chunk<__bit_floor(unsigned(_S_size))>(*
this);
644 return __lo._M_reduce_tail(__hi, __binary_op);
646 else if constexpr (
sizeof(_M_data) == 64)
650 auto __chunked = chunk<__bit_floor(
unsigned(_S_size)) / 2>(*this);
651 using _Cp =
decltype(__chunked);
652 if constexpr (tuple_size_v<_Cp> == 4)
654 const auto& [__a, __b, __c, __rest] = __chunked;
655 constexpr bool __amd_cpu = _Traits._M_have_sse4a();
656 if constexpr (__have_id_elem && __rest._S_size > 1 && __amd_cpu)
662 const auto& [__a, __rest] = chunk<__bit_floor(unsigned(_S_size))>(*
this);
663 using _Vp = remove_cvref_t<
decltype(__a)>;
664 constexpr __canon_value_type __id
665 = __default_identity_element<__canon_value_type, _BinaryOp>();
666 const _Vp __b = __rest.template _M_pad_to_T_with_value<_Vp, __id>();
667 return __binary_op(__a, __b)._M_reduce(__binary_op);
669 else if constexpr (__have_id_elem && __rest._S_size > 1)
675 using _Vp = remove_cvref_t<
decltype(__a)>;
676 constexpr __canon_value_type __id
677 = __default_identity_element<__canon_value_type, _BinaryOp>();
678 const _Vp __d = __rest.template _M_pad_to_T_with_value<_Vp, __id>();
679 return __binary_op(__binary_op(__a, __b), __binary_op(__c, __d))
680 ._M_reduce(__binary_op);
683 return __binary_op(__binary_op(__a, __b), __c)
684 ._M_reduce_tail(__rest, __binary_op);
686 else if constexpr (tuple_size_v<_Cp> == 3)
688 const auto& [__a, __b, __rest] = __chunked;
689 return __binary_op(__a, __b)._M_reduce_tail(__rest, __binary_op);
692 static_assert(
false);
694 else if constexpr (__have_id_elem)
696 constexpr __canon_value_type __id
697 = __default_identity_element<__canon_value_type, _BinaryOp>();
698 using _Vp = resize_t<__bit_ceil(
unsigned(_S_size)), basic_vec>;
699 return _M_pad_to_T_with_value<_Vp, __id>()._M_reduce(__binary_op);
703 const auto& [__a, __rest] = chunk<__bit_floor(unsigned(_S_size))>(*
this);
704 return __a._M_reduce_tail(__rest, __binary_op);
713 template <_OptTraits _Traits = {}>
714 [[__gnu__::__always_inline__]]
716 _M_isnan() const requires is_floating_point_v<value_type>
718 if constexpr (_Traits._M_finite_math_only())
719 return mask_type(
false);
720 else if constexpr (_S_is_scalar)
721 return mask_type(std::isnan(_M_data));
722 else if constexpr (_S_use_bitmask)
723 return _M_isunordered(*
this);
724 else if constexpr (!_Traits._M_support_snan())
725 return !(*
this == *
this);
726 else if (__is_const_known(_M_data))
727 return mask_type([&](
int __i) {
return std::isnan(_M_data[__i]); });
731 using _Ip = __integer_from<
sizeof(value_type)>;
733 < __builtin_bit_cast(rebind_t<_Ip, basic_vec>, _M_fabs());
737 template <_TargetTraits _Traits = {}>
738 [[__gnu__::__always_inline__]]
740 _M_isinf() const requires is_floating_point_v<value_type>
742 if constexpr (_Traits._M_finite_math_only())
743 return mask_type(
false);
744 else if constexpr (_S_is_scalar)
745 return mask_type(std::isinf(_M_data));
746 else if (__is_const_known(_M_data))
747 return mask_type([&](
int __i) {
return std::isinf(_M_data[__i]); });
749 else if constexpr (_S_use_bitmask)
750 return mask_type::_S_init(__x86_bitmask_isinf(_M_data));
751 else if constexpr (_Traits._M_have_avx512dq())
752 return __x86_bit_to_vecmask<typename mask_type::_DataType>(
753 __x86_bitmask_isinf(_M_data));
757 using _Ip = __integer_from<
sizeof(value_type)>;
758 return __vec_bit_cast<_Ip>(_M_fabs()._M_data)
763 [[__gnu__::__always_inline__]]
765 _M_abs() const requires signed_integral<value_type>
766 {
return _M_data < 0 ? -_M_data : _M_data; }
768 [[__gnu__::__always_inline__]]
770 _M_fabs() const requires floating_point<value_type>
772 if constexpr (_S_is_scalar)
775 return __vec_and(__vec_not(_S_signmask<_DataType>), _M_data);
778 template <_TargetTraits _Traits = {}>
779 [[__gnu__::__always_inline__]]
781 _M_isunordered(basic_vec __y)
const requires is_floating_point_v<value_type>
783 if constexpr (_Traits._M_finite_math_only())
784 return mask_type(
false);
785 else if constexpr (_S_is_scalar)
786 return mask_type(std::isunordered(_M_data, __y._M_data));
788 else if constexpr (_S_use_bitmask)
789 return _M_bitmask_cmp<_X86Cmp::_Unord>(__y._M_data);
792 return mask_type([&](
int __i) {
793 return std::isunordered(_M_data[__i], __y._M_data[__i]);
804 template <
typename _Up, _ArchTraits _Traits = {}>
805 static inline basic_vec
806 _S_partial_load(
const _Up* __mem,
size_t __n)
808 if constexpr (_S_is_scalar)
809 return __n == 0 ? basic_vec() : basic_vec(
static_cast<value_type
>(*__mem));
810 else if (__is_const_known_equal_to(__n >=
size_t(_S_size),
true))
811 return basic_vec(_LoadCtorTag(), __mem);
812 else if constexpr (!__converts_trivially<_Up, value_type>)
813 return static_cast<basic_vec
>(rebind_t<_Up, basic_vec>::_S_partial_load(__mem, __n));
817 if constexpr (_Traits._M_have_avx512f()
818 || (_Traits._M_have_avx() &&
sizeof(_Up) >= 4))
820 const auto __k = __n < _S_size ? mask_type::_S_partial_mask_of_n(
int(__n))
822 return _S_masked_load(__mem, mask_type::_S_partial_mask_of_n(
int(__n)));
825 if (__n >=
size_t(_S_size)) [[unlikely]]
826 return basic_vec(_LoadCtorTag(), __mem);
829 else if (__is_const_known_equal_to(
831 return __select_impl(mask_type::_S_partial_mask_of_n(
int(__n)),
832 basic_vec(_LoadCtorTag(), __mem), basic_vec());
834 else if constexpr (_S_size > 4)
836 alignas(_DataType)
byte __dst[
sizeof(_DataType)] = {};
837 const byte* __src =
reinterpret_cast<const byte*
>(__mem);
838 __memcpy_chunks<sizeof(_Up), sizeof(_DataType)>(__dst, __src, __n);
839 return __builtin_bit_cast(_DataType, __dst);
841 else if (__n == 0) [[unlikely]]
843 else if constexpr (_S_size == 2)
844 return _DataType {
static_cast<value_type
>(__mem[0]), 0};
847 constexpr auto [...__is] = _IotaArray<_S_size - 2>;
849 static_cast<value_type
>(__mem[0]),
850 static_cast<value_type
>(__is + 1 < __n ? __mem[__is + 1] : 0)...
868 template <
typename _Up, _ArchTraits _Traits = {}>
869 static inline basic_vec
870 _S_masked_load(
const _Up* __mem, mask_type __k)
872 if constexpr (_S_size == 1)
873 return __k[0] ?
static_cast<value_type
>(__mem[0]) : value_type();
875 else if constexpr (_Traits._M_have_avx512f())
876 return __x86_masked_load<_DataType>(__mem, __k._M_data);
877 else if constexpr (_Traits._M_have_avx() && (
sizeof(_Up) == 4 ||
sizeof(_Up) == 8))
879 if constexpr (__converts_trivially<_Up, value_type>)
880 return __x86_masked_load<_DataType>(__mem, __k._M_data);
883 using _UV = rebind_t<_Up, basic_vec>;
884 return basic_vec(_UV::_S_masked_load(__mem,
typename _UV::mask_type(__k)));
888 else if (__k._M_none_of()) [[unlikely]]
890 else if constexpr (_S_is_scalar)
891 return basic_vec(
static_cast<value_type
>(*__mem));
895 _Bitmask<_S_size < 32 ? 32 : _S_size> __bits = __k._M_to_uint();
896 [[assume(__bits != 0)]];
897 if constexpr (__converts_trivially<_Up, value_type>)
900 __bit_foreach(__bits, [&] [[__gnu__::__always_inline__]] (
int __i) {
901 __r[__i] = __mem[__i];
907 using _UV = rebind_t<_Up, basic_vec>;
908 alignas(_UV) _Up __tmp[
sizeof(_UV) /
sizeof(_Up)] = {};
909 __bit_foreach(__bits, [&] [[__gnu__::__always_inline__]] (
int __i) {
910 __tmp[__i] = __mem[__i];
912 return basic_vec(__builtin_bit_cast(_UV, __tmp));
917 template <
typename _Up>
918 [[__gnu__::__always_inline__]]
920 _M_store(_Up* __mem)
const
922 if constexpr (__converts_trivially<value_type, _Up>)
923 __builtin_memcpy(__mem, &_M_data,
sizeof(_Up) * _S_size);
925 rebind_t<_Up, basic_vec>(*this)._M_store(__mem);
937 template <
typename _Up, _ArchTraits _Traits = {}>
939 _S_partial_store(
const basic_vec __v, _Up* __mem,
size_t __n)
941 if (__is_const_known_equal_to(__n >= _S_size,
true))
944 else if constexpr (_Traits._M_have_avx512f() && !_S_is_scalar)
946 const auto __k = __n < _S_size ? mask_type::_S_partial_mask_of_n(
int(__n))
948 return _S_masked_store(__v, __mem, __k);
951 else if (__n >= _S_size) [[unlikely]]
953 else if (__n == 0) [[unlikely]]
955 else if constexpr (__converts_trivially<value_type, _Up>)
957 byte* __dst =
reinterpret_cast<byte*
>(__mem);
958 const byte* __src =
reinterpret_cast<const byte*
>(&__v._M_data);
959 __memcpy_chunks<sizeof(_Up), sizeof(_M_data)>(__dst, __src, __n);
963 using _UV = rebind_t<_Up, basic_vec>;
964 _UV::_S_partial_store(_UV(__v), __mem, __n);
981 template <
typename _Up, _ArchTraits _Traits = {}>
984 _S_masked_store(
const basic_vec __v, _Up* __mem,
const mask_type __k)
987 if constexpr (_Traits._M_have_avx512f())
989 __x86_masked_store(__v._M_data, __mem, __k._M_data);
992 else if constexpr (_Traits._M_have_avx() && (
sizeof(_Up) == 4 ||
sizeof(_Up) == 8))
994 if constexpr (__converts_trivially<value_type, _Up>)
995 __x86_masked_store(__v._M_data, __mem, __k._M_data);
998 using _UV = rebind_t<_Up, basic_vec>;
999 _UV::_S_masked_store(_UV(__v), __mem,
typename _UV::mask_type(__k));
1004 if (__k._M_none_of()) [[unlikely]]
1006 else if constexpr (_S_is_scalar)
1007 __mem[0] = __v._M_data;
1011 _Bitmask<_S_size < 32 ? 32 : _S_size> __bits = __k._M_to_uint();
1012 [[assume(__bits != 0)]];
1013 if constexpr (__converts_trivially<value_type, _Up>)
1015 __bit_foreach(__bits, [&] [[__gnu__::__always_inline__]] (
int __i) {
1016 __mem[__i] = __v[__i];
1021 const rebind_t<_Up, basic_vec> __cvted(__v);
1022 __bit_foreach(__bits, [&] [[__gnu__::__always_inline__]] (
int __i) {
1023 __mem[__i] = __cvted[__i];
1030 basic_vec() =
default;
1033 using _NativeVecType =
decltype([] {
1034 if constexpr (_S_is_scalar)
1035 return __vec_builtin_type<__canon_value_type, 1>();
1052 basic_vec(_NativeVecType __x)
1053 : _M_data([&] [[__gnu__::__always_inline__]] {
1054 if constexpr (_S_is_scalar)
1071 operator _NativeVecType()
const
1073 if constexpr (_S_is_scalar)
1074 return _NativeVecType{_M_data};
1083 template <__vec_builtin _IV>
1084 requires same_as<__x86_intel_intrin_value_type<value_type>, __vec_value_type<_IV>>
1085 && (
sizeof(_IV) ==
sizeof(_DataType) &&
sizeof(_IV) >= 16
1086 && !is_same_v<_IV, _DataType>)
1089 : _M_data(reinterpret_cast<_DataType>(__x))
1095 template <__vec_builtin _IV>
1096 requires same_as<__x86_intel_intrin_value_type<value_type>, __vec_value_type<_IV>>
1097 && (
sizeof(_IV) ==
sizeof(_DataType) &&
sizeof(_IV) >= 16
1098 && !is_same_v<_IV, _DataType>)
1100 operator _IV()
const
1101 {
return reinterpret_cast<_IV
>(_M_data); }
1116 template <__broadcast_constructible<value_type> _Up>
1117 [[__gnu__::__always_inline__]]
1119 basic_vec(_Up&& __x) noexcept
1120 : _M_data(_DataType() == _DataType() ?
static_cast<value_type
>(__x) : value_type())
1124 template <
typename _Up,
typename _UAbi, _TargetTraits _Traits = {}>
1125 requires (_S_size == _UAbi::_S_size)
1126 && __explicitly_convertible_to<_Up, value_type>
1127 [[__gnu__::__always_inline__]]
1129 explicit(!__value_preserving_convertible_to<_Up, value_type>
1130 || __higher_rank_than<_Up, value_type>)
1131 basic_vec(
const basic_vec<_Up, _UAbi>& __x) noexcept
1132 : _M_data([&] [[__gnu__::__always_inline__]] {
1133 if constexpr (_S_is_scalar)
1134 return static_cast<value_type
>(__x[0]);
1135 else if constexpr (_UAbi::_S_nreg >= 2)
1139 return _S_concat(resize_t<__x._N0, basic_vec>(__x._M_data0),
1140 resize_t<__x._N1, basic_vec>(__x._M_data1))._M_data;
1142 return __vec_cast<_DataType>(__x._M_concat_data());
1146 using _VecBase<_Tp, _Ap>::_VecBase;
1149 template <__simd_generator_invokable<value_type, _S_size> _Fp>
1150 [[__gnu__::__always_inline__]]
1152 basic_vec(_Fp&& __gen)
1153 : _M_data([&] [[__gnu__::__always_inline__]] {
1154 constexpr auto [...__is] = _IotaArray<_S_size>;
1155 return _DataType{
static_cast<value_type
>(__gen(__simd_size_c<__is>))...};
1160 template <
typename _Up>
1161 [[__gnu__::__always_inline__]]
1163 basic_vec(_LoadCtorTag,
const _Up* __ptr)
1166 if constexpr (_S_is_scalar)
1167 _M_data =
static_cast<value_type
>(__ptr[0]);
1170 constexpr auto [...__is] = _IotaArray<_S_size>;
1171 _M_data = _DataType{
static_cast<value_type
>(__ptr[__is])...};
1175 if constexpr (__converts_trivially<_Up, value_type>)
1177 __builtin_memcpy(&_M_data, __ptr,
sizeof(value_type) * _S_size);
1180 __vec_builtin_type<_Up, _S_full_size> __tmp = {};
1181 __builtin_memcpy(&__tmp, __ptr,
sizeof(_Up) * _S_size);
1182 _M_data = __vec_cast<_DataType>(__tmp);
1187 template <ranges::contiguous_range _Rg,
typename... _Flags>
1188 requires __static_sized_range<_Rg, _S_size>
1189 && __vectorizable<ranges::range_value_t<_Rg>>
1190 && __explicitly_convertible_to<ranges::range_value_t<_Rg>, value_type>
1191 [[__gnu__::__always_inline__]]
1193 basic_vec(_Rg&& __range, flags<_Flags...> __flags = {})
1194 : basic_vec(_LoadCtorTag(), __flags.template _S_adjust_pointer<basic_vec>(
1195 ranges::
data(__range)))
1197 static_assert(__loadstore_convertible_to<ranges::range_value_t<_Rg>, value_type,
1207 [[__gnu__::__always_inline__]]
1208 constexpr value_type
1209 operator[](__simd_size_type __i)
const
1211 __glibcxx_simd_precondition(__i >= 0 && __i < _S_size,
"subscript is out of bounds");
1212 if constexpr (_S_is_scalar)
1215 return _M_data[__i];
1221 [[__gnu__::__always_inline__]]
1222 constexpr basic_vec&
1223 operator++() noexcept requires requires(value_type __a) { ++__a; }
1224 {
return *
this += value_type(1); }
1226 [[__gnu__::__always_inline__]]
1228 operator++(
int)
noexcept requires requires(value_type __a) { __a++; }
1230 basic_vec __r = *
this;
1231 *
this += value_type(1);
1235 [[__gnu__::__always_inline__]]
1236 constexpr basic_vec&
1237 operator--() noexcept requires requires(value_type __a) { --__a; }
1238 {
return *
this -= value_type(1); }
1240 [[__gnu__::__always_inline__]]
1242 operator--(
int)
noexcept requires requires(value_type __a) { __a--; }
1244 basic_vec __r = *
this;
1245 *
this -= value_type(1);
1249 [[__gnu__::__always_inline__]]
1251 operator!() const noexcept requires requires(value_type __a) { !__a; }
1252 {
return *
this == value_type(); }
1259 [[__gnu__::__always_inline__]]
1261 operator+() const noexcept requires requires(value_type __a) { +__a; }
1269 [[__gnu__::__always_inline__]]
1271 operator-() const noexcept requires requires(value_type __a) { -__a; }
1272 {
return _S_init(-_M_data); }
1279 [[__gnu__::__always_inline__]]
1281 operator~() const noexcept requires requires(value_type __a) { ~__a; }
1282 {
return _S_init(~_M_data); }
1290 [[__gnu__::__always_inline__]]
1291 friend constexpr basic_vec&
1292 operator&=(basic_vec& __x,
const basic_vec& __y)
noexcept
1293 requires requires(value_type __a) { __a & __a; }
1295 __x._M_data &= __y._M_data;
1304 [[__gnu__::__always_inline__]]
1305 friend constexpr basic_vec&
1306 operator|=(basic_vec& __x,
const basic_vec& __y)
noexcept
1307 requires requires(value_type __a) { __a | __a; }
1309 __x._M_data |= __y._M_data;
1318 [[__gnu__::__always_inline__]]
1319 friend constexpr basic_vec&
1320 operator^=(basic_vec& __x,
const basic_vec& __y)
noexcept
1321 requires requires(value_type __a) { __a ^ __a; }
1323 __x._M_data ^= __y._M_data;
1336 [[__gnu__::__always_inline__]]
1337 friend constexpr basic_vec&
1338 operator+=(basic_vec& __x,
const basic_vec& __y)
noexcept
1339 requires requires(value_type __a) { __a + __a; }
1341 if constexpr (_S_is_partial && is_integral_v<value_type> && is_signed_v<value_type>)
1356 using _UV =
typename _Ap::template _DataType<make_unsigned_t<value_type>>;
1357 const _DataType __result
1358 =
reinterpret_cast<_DataType
>(
reinterpret_cast<_UV
>(__x._M_data)
1359 +
reinterpret_cast<_UV
>(__y._M_data));
1360 const auto __positive = __y > value_type();
1361 const auto __overflow = __positive != (__result > __x);
1362 if (__overflow._M_any_of())
1363 __builtin_unreachable();
1364 __x._M_data = __result;
1366 else if constexpr (_TargetTraits()._M_eval_as_f32<value_type>())
1367 __x = basic_vec(rebind_t<float, basic_vec>(__x) + __y);
1369 __x._M_data += __y._M_data;
1375 [[__gnu__::__always_inline__]]
1376 friend constexpr basic_vec&
1377 operator-=(basic_vec& __x,
const basic_vec& __y)
noexcept
1378 requires requires(value_type __a) { __a - __a; }
1380 if constexpr (_S_is_partial && is_integral_v<value_type> && is_signed_v<value_type>)
1382 using _UV =
typename _Ap::template _DataType<make_unsigned_t<value_type>>;
1383 const _DataType __result
1384 =
reinterpret_cast<_DataType
>(
reinterpret_cast<_UV
>(__x._M_data)
1385 -
reinterpret_cast<_UV
>(__y._M_data));
1386 const auto __positive = __y > value_type();
1387 const auto __overflow = __positive != (__result < __x);
1388 if (__overflow._M_any_of())
1389 __builtin_unreachable();
1390 __x._M_data = __result;
1392 else if constexpr (_TargetTraits()._M_eval_as_f32<value_type>())
1393 __x = basic_vec(rebind_t<float, basic_vec>(__x) - __y);
1395 __x._M_data -= __y._M_data;
1401 [[__gnu__::__always_inline__]]
1402 friend constexpr basic_vec&
1403 operator*=(basic_vec& __x,
const basic_vec& __y)
noexcept
1404 requires requires(value_type __a) { __a * __a; }
1406 if constexpr (_S_is_partial && is_integral_v<value_type> && is_signed_v<value_type>)
1408 for (
int __i = 0; __i < _S_size; ++__i)
1410 if (__builtin_mul_overflow_p(__x._M_data[__i], __y._M_data[__i], value_type()))
1411 __builtin_unreachable();
1413 using _UV =
typename _Ap::template _DataType<make_unsigned_t<value_type>>;
1414 __x._M_data =
reinterpret_cast<_DataType
>(
reinterpret_cast<_UV
>(__x._M_data)
1415 *
reinterpret_cast<_UV
>(__y._M_data));
1421 else if constexpr (_S_is_scalar && is_unsigned_v<value_type>
1422 && is_signed_v<
decltype(value_type() * value_type())>)
1423 __x._M_data =
unsigned(__x._M_data) * unsigned(__y._M_data);
1425 else if constexpr (_TargetTraits()._M_eval_as_f32<value_type>())
1426 __x = basic_vec(rebind_t<float, basic_vec>(__x) * __y);
1429 __x._M_data *= __y._M_data;
1433 template <_TargetTraits _Traits = {}>
1434 [[__gnu__::__always_inline__]]
1435 friend constexpr basic_vec&
1436 operator/=(basic_vec& __x,
const basic_vec& __y)
noexcept
1437 requires requires(value_type __a) { __a / __a; }
1439 const basic_vec __result([&](
int __i) -> value_type {
return __x[__i] / __y[__i]; });
1440 if (__is_const_known(__result))
1442 return __x = __result;
1450 if constexpr (is_integral_v<value_type> && _S_size > 2
1451 && __value_preserving_convertible_to<value_type, double>)
1455 if (!__is_const_known(__y))
1458 if constexpr (_Traits._M_have_avx512fp16()
1459 && __value_preserving_convertible_to<value_type, _Float16>)
1460 return __x = basic_vec(rebind_t<_Float16, basic_vec>(__x) / __y);
1461 else if constexpr (__value_preserving_convertible_to<value_type, float>)
1462 return __x = basic_vec(rebind_t<float, basic_vec>(__x) / __y);
1464 return __x = basic_vec(rebind_t<double, basic_vec>(__x) / __y);
1468 if constexpr (_Traits._M_eval_as_f32<value_type>())
1469 return __x = basic_vec(rebind_t<float, basic_vec>(__x) / __y);
1471 basic_vec __y1 = __y;
1472 if constexpr (_S_is_partial)
1474 if constexpr (is_integral_v<value_type>)
1478 for (
int __i = 0; __i < _S_size; ++__i)
1479 __x._M_data[__i] /= __y._M_data[__i];
1483 __y1 = __select_impl(mask_type::_S_init(mask_type::_S_implicit_mask),
1484 __y, basic_vec(value_type(1)));
1486 __x._M_data /= __y1._M_data;
1490 [[__gnu__::__always_inline__]]
1491 friend constexpr basic_vec&
1492 operator%=(basic_vec& __x,
const basic_vec& __y)
noexcept
1493 requires requires(value_type __a) { __a % __a; }
1495 static_assert(is_integral_v<value_type>);
1496 if constexpr (_S_is_partial)
1498 const basic_vec __y1 = __select_impl(mask_type::_S_init(mask_type::_S_implicit_mask),
1499 __y, basic_vec(value_type(1)));
1500 if (__is_const_known(__y1))
1501 __x._M_data %= __y1._M_data;
1506 for (
int __i = 0; __i < _S_size; ++__i)
1507 __x._M_data[__i] %= __y._M_data[__i];
1511 __x._M_data %= __y._M_data;
1515 [[__gnu__::__always_inline__]]
1516 friend constexpr basic_vec&
1517 operator<<=(basic_vec& __x,
const basic_vec& __y) _GLIBCXX_SIMD_NOEXCEPT
1518 requires requires(value_type __a) { __a << __a; }
1520 __glibcxx_simd_precondition(is_unsigned_v<value_type> || all_of(__y >= value_type()),
1521 "negative shift is undefined behavior");
1522 __glibcxx_simd_precondition(all_of(__y < __max_shift<value_type>),
1523 "too large shift invokes undefined behavior");
1524 __x._M_data <<= __y._M_data;
1528 [[__gnu__::__always_inline__]]
1529 friend constexpr basic_vec&
1530 operator>>=(basic_vec& __x,
const basic_vec& __y) _GLIBCXX_SIMD_NOEXCEPT
1531 requires requires(value_type __a) { __a >> __a; }
1533 __glibcxx_simd_precondition(is_unsigned_v<value_type> || all_of(__y >= value_type()),
1534 "negative shift is undefined behavior");
1535 __glibcxx_simd_precondition(all_of(__y < __max_shift<value_type>),
1536 "too large shift invokes undefined behavior");
1537 __x._M_data >>= __y._M_data;
1541 [[__gnu__::__always_inline__]]
1542 friend constexpr basic_vec&
1543 operator<<=(basic_vec& __x, __simd_size_type __y) _GLIBCXX_SIMD_NOEXCEPT
1544 requires requires(value_type __a, __simd_size_type __b) { __a << __b; }
1546 __glibcxx_simd_precondition(__y >= 0,
"negative shift is undefined behavior");
1547 __glibcxx_simd_precondition(__y <
int(__max_shift<value_type>),
1548 "too large shift invokes undefined behavior");
1549 __x._M_data <<= __y;
1553 [[__gnu__::__always_inline__]]
1554 friend constexpr basic_vec&
1555 operator>>=(basic_vec& __x, __simd_size_type __y) _GLIBCXX_SIMD_NOEXCEPT
1556 requires requires(value_type __a, __simd_size_type __b) { __a >> __b; }
1558 __glibcxx_simd_precondition(__y >= 0,
"negative shift is undefined behavior");
1559 __glibcxx_simd_precondition(__y <
int(__max_shift<value_type>),
1560 "too large shift invokes undefined behavior");
1561 __x._M_data >>= __y;
1567 template <_X86Cmp _Cmp>
1568 [[__gnu__::__always_inline__]]
1570 _M_bitmask_cmp(_DataType __y)
const
1572 static_assert(_S_use_bitmask);
1573 if (__is_const_known(_M_data, __y))
1575 constexpr auto [...__is] = _IotaArray<_S_size>;
1576 constexpr auto __cmp_op = [] [[__gnu__::__always_inline__]]
1577 (value_type __a, value_type __b) {
1578 if constexpr (_Cmp == _X86Cmp::_Eq)
1580 else if constexpr (_Cmp == _X86Cmp::_Lt)
1582 else if constexpr (_Cmp == _X86Cmp::_Le)
1584 else if constexpr (_Cmp == _X86Cmp::_Unord)
1585 return std::isunordered(__a, __b);
1586 else if constexpr (_Cmp == _X86Cmp::_Neq)
1588 else if constexpr (_Cmp == _X86Cmp::_Nlt)
1589 return !(__a < __b);
1590 else if constexpr (_Cmp == _X86Cmp::_Nle)
1591 return !(__a <= __b);
1593 static_assert(
false);
1595 const _Bitmask<_S_size> __bits
1596 = ((__cmp_op(__vec_get(_M_data, __is), __vec_get(__y, __is))
1597 ? (1ULL << __is) : 0) | ...);
1598 return mask_type::_S_init(__bits);
1601 return mask_type::_S_init(__x86_bitmask_cmp<_Cmp>(_M_data, __y));
1605 [[__gnu__::__always_inline__]]
1606 friend constexpr mask_type
1607 operator==(
const basic_vec& __x,
const basic_vec& __y)
noexcept
1610 if constexpr (_S_use_bitmask)
1611 return __x._M_bitmask_cmp<_X86Cmp::_Eq>(__y._M_data);
1614 return mask_type::_S_init(__x._M_data == __y._M_data);
1617 [[__gnu__::__always_inline__]]
1618 friend constexpr mask_type
1619 operator!=(
const basic_vec& __x,
const basic_vec& __y)
noexcept
1622 if constexpr (_S_use_bitmask)
1623 return __x._M_bitmask_cmp<_X86Cmp::_Neq>(__y._M_data);
1626 return mask_type::_S_init(__x._M_data != __y._M_data);
1629 [[__gnu__::__always_inline__]]
1630 friend constexpr mask_type
1631 operator<(
const basic_vec& __x,
const basic_vec& __y)
noexcept
1634 if constexpr (_S_use_bitmask)
1635 return __x._M_bitmask_cmp<_X86Cmp::_Lt>(__y._M_data);
1638 return mask_type::_S_init(__x._M_data < __y._M_data);
1641 [[__gnu__::__always_inline__]]
1642 friend constexpr mask_type
1643 operator<=(
const basic_vec& __x,
const basic_vec& __y)
noexcept
1646 if constexpr (_S_use_bitmask)
1647 return __x._M_bitmask_cmp<_X86Cmp::_Le>(__y._M_data);
1650 return mask_type::_S_init(__x._M_data <= __y._M_data);
1653 [[__gnu__::__always_inline__]]
1654 friend constexpr mask_type
1655 operator>(
const basic_vec& __x,
const basic_vec& __y)
noexcept
1656 {
return __y < __x; }
1658 [[__gnu__::__always_inline__]]
1659 friend constexpr mask_type
1660 operator>=(
const basic_vec& __x,
const basic_vec& __y)
noexcept
1661 {
return __y <= __x; }
1664 template <_TargetTraits _Traits = {}>
1665 [[__gnu__::__always_inline__]]
1666 friend constexpr basic_vec
1667 __select_impl(
const mask_type& __k,
const basic_vec& __t,
const basic_vec& __f)
noexcept
1669 if constexpr (_S_size == 1)
1670 return __k[0] ? __t : __f;
1671 else if constexpr (_S_use_bitmask)
1674 if (__is_const_known(__k, __t, __f))
1675 return basic_vec([&](
int __i) {
return __k[__i] ? __t[__i] : __f[__i]; });
1677 return __x86_bitmask_blend(__k._M_data, __t._M_data, __f._M_data);
1679 static_assert(
false,
"TODO");
1684 return __k._M_data ? __t._M_data : __f._M_data;
1688 constexpr bool __uses_simd_register =
sizeof(_M_data) >= 8;
1689 using _VO = _VecOps<_DataType>;
1690 if (_VO::_S_is_const_known_equal_to(__f._M_data, 0))
1692 if (is_integral_v<value_type> && __uses_simd_register
1693 && _VO::_S_is_const_known_equal_to(__t._M_data, 1))
1698 return basic_vec((-__k)._M_abs());
1700 return __vec_and(
reinterpret_cast<_DataType
>(__k._M_data), __t._M_data);
1702 else if (_VecOps<_DataType>::_S_is_const_known_equal_to(__t._M_data, 0))
1704 if (is_integral_v<value_type> && __uses_simd_register
1705 && _VO::_S_is_const_known_equal_to(__f._M_data, 1))
1706 return value_type(1) + basic_vec(-__k);
1708 return __vec_and(
reinterpret_cast<_DataType
>(__vec_not(__k._M_data)), __f._M_data);
1717 return __k._M_data < 0 ? __t._M_data : __f._M_data;
1719 return __k._M_data ? __t._M_data : __f._M_data;
1725 template <__vectorizable _Tp, __abi_tag _Ap>
1726 requires (_Ap::_S_nreg > 1)
1727 class basic_vec<_Tp, _Ap>
1728 : public _VecBase<_Tp, _Ap>
1730 template <
typename,
typename>
1731 friend class basic_vec;
1733 template <
size_t,
typename>
1734 friend class basic_mask;
1736 static constexpr int _S_size = _Ap::_S_size;
1738 static constexpr int _N0 = __bit_ceil(
unsigned(_S_size)) / 2;
1740 static constexpr int _N1 = _S_size - _N0;
1742 using _DataType0 = __similar_vec<_Tp, _N0, _Ap>;
1745 static_assert(_N0 *
sizeof(_Tp) ==
sizeof(_DataType0));
1747 using _DataType1 = __similar_vec<_Tp, _N1, _Ap>;
1749 static_assert(_DataType0::abi_type::_S_nreg + _DataType1::abi_type::_S_nreg == _Ap::_S_nreg);
1751 static constexpr bool _S_is_scalar = _DataType0::_S_is_scalar;
1753 _DataType0 _M_data0;
1755 _DataType1 _M_data1;
1757 static constexpr bool _S_use_bitmask = _DataType0::_S_use_bitmask;
1759 static constexpr bool _S_is_partial = _DataType1::_S_is_partial;
1762 using value_type = _Tp;
1764 using mask_type = _VecBase<_Tp, _Ap>::mask_type;
1766 [[__gnu__::__always_inline__]]
1767 static constexpr basic_vec
1768 _S_init(
const _DataType0& __x,
const _DataType1& __y)
1776 [[__gnu__::__always_inline__]]
1777 constexpr const _DataType0&
1779 {
return _M_data0; }
1781 [[__gnu__::__always_inline__]]
1782 constexpr const _DataType1&
1784 {
return _M_data1; }
1786 [[__gnu__::__always_inline__]]
1787 friend constexpr bool
1788 __is_const_known(
const basic_vec& __x)
1789 {
return __is_const_known(__x._M_data0) && __is_const_known(__x._M_data1); }
1791 [[__gnu__::__always_inline__]]
1793 _M_concat_data([[maybe_unused]]
bool __do_sanitize =
false)
const
1795 return __vec_concat(_M_data0._M_concat_data(
false),
1796 __vec_zero_pad_to<
sizeof(_M_data0)>(
1797 _M_data1._M_concat_data(__do_sanitize)));
1800 template <
int _Size = _S_size,
int _Offset = 0,
typename _A0,
typename _Fp>
1801 [[__gnu__::__always_inline__]]
1802 static constexpr basic_vec
1803 _S_static_permute(
const basic_vec<value_type, _A0>& __x, _Fp&& __idxmap)
1806 _DataType0::template _S_static_permute<_Size, _Offset>(__x, __idxmap),
1807 _DataType1::template _S_static_permute<_Size, _Offset + _N0>(__x, __idxmap));
1810 template <
typename _Vp>
1811 [[__gnu__::__always_inline__]]
1813 _M_chunk() const noexcept
1815 constexpr int __n = _S_size / _Vp::_S_size;
1816 constexpr int __rem = _S_size % _Vp::_S_size;
1817 constexpr auto [...__is] = _IotaArray<__n>;
1818 if constexpr (__rem == 0)
1819 return array<_Vp, __n>{__extract_simd_at<_Vp>(cw<_Vp::_S_size * __is>,
1820 _M_data0, _M_data1)...};
1823 using _Rest = resize_t<__rem, _Vp>;
1824 return tuple(__extract_simd_at<_Vp>(cw<_Vp::_S_size * __is>, _M_data0, _M_data1)...,
1825 __extract_simd_at<_Rest>(cw<_Vp::_S_size * __n>, _M_data0, _M_data1));
1829 [[__gnu__::__always_inline__]]
1830 static constexpr const basic_vec&
1831 _S_concat(
const basic_vec& __x0)
noexcept
1834 template <
typename... _As>
1835 requires (
sizeof...(_As) >= 2)
1836 [[__gnu__::__always_inline__]]
1837 static constexpr basic_vec
1838 _S_concat(
const basic_vec<value_type, _As>&... __xs)
noexcept
1840 static_assert(_S_size == (_As::_S_size + ...));
1841 return _S_init(__extract_simd_at<_DataType0>(cw<0>, __xs...),
1842 __extract_simd_at<_DataType1>(cw<_N0>, __xs...));
1845 [[__gnu__::__always_inline__]]
1847 _M_reduce_to_half(
auto __binary_op)
const requires (_N0 == _N1)
1848 {
return __binary_op(_M_data0, _M_data1); }
1850 [[__gnu__::__always_inline__]]
1851 constexpr value_type
1852 _M_reduce_tail(
const auto& __rest,
auto __binary_op)
const
1854 if constexpr (__rest.size() > _S_size)
1856 auto [__a, __b] = __rest.template _M_chunk<basic_vec>();
1857 return __binary_op(*
this, __a)._M_reduce_tail(__b, __binary_op);
1859 else if constexpr (__rest.size() == _S_size)
1860 return __binary_op(*
this, __rest)._M_reduce(__binary_op);
1862 return _M_reduce_to_half(__binary_op)._M_reduce_tail(__rest, __binary_op);
1865 template <
typename _BinaryOp, _TargetTraits _Traits = {}>
1866 [[__gnu__::__always_inline__]]
1867 constexpr value_type
1868 _M_reduce(_BinaryOp __binary_op)
const
1870 if constexpr (_Traits.template _M_eval_as_f32<value_type>()
1871 && (is_same_v<_BinaryOp, plus<>>
1872 || is_same_v<_BinaryOp, multiplies<>>))
1873 return value_type(rebind_t<float, basic_vec>(*this)._M_reduce(__binary_op));
1875 else if constexpr (is_integral_v<value_type> &&
sizeof(value_type) == 1
1876 && is_same_v<
decltype(__binary_op), multiplies<>>)
1889 if constexpr (_DataType1::_S_is_scalar)
1890 return __binary_op(_DataType1(_M_data0._M_reduce(__binary_op)), _M_data1)[0];
1892 else if constexpr (_S_size % 2 == 0)
1894 using _V16 = resize_t<_S_size / 2, rebind_t<unsigned short, basic_vec>>;
1895 auto __a = __builtin_bit_cast(_V16, *
this);
1896 return __binary_op(__a, __a >> __CHAR_BIT__)._M_reduce(__binary_op);
1900 using _V16 = rebind_t<unsigned short, basic_vec>;
1901 return _V16(*this)._M_reduce(__binary_op);
1906 return _M_data0._M_reduce_tail(_M_data1, __binary_op);
1909 [[__gnu__::__always_inline__]]
1911 _M_isnan() const requires is_floating_point_v<value_type>
1912 {
return mask_type::_S_init(_M_data0._M_isnan(), _M_data1._M_isnan()); }
1914 [[__gnu__::__always_inline__]]
1916 _M_isinf() const requires is_floating_point_v<value_type>
1917 {
return mask_type::_S_init(_M_data0._M_isinf(), _M_data1._M_isinf()); }
1919 [[__gnu__::__always_inline__]]
1921 _M_isunordered(basic_vec __y)
const requires is_floating_point_v<value_type>
1923 return mask_type::_S_init(_M_data0._M_isunordered(__y._M_data0),
1924 _M_data1._M_isunordered(__y._M_data1));
1927 [[__gnu__::__always_inline__]]
1929 _M_abs() const requires signed_integral<value_type>
1930 {
return _S_init(_M_data0._M_abs(), _M_data1._M_abs()); }
1932 [[__gnu__::__always_inline__]]
1934 _M_fabs() const requires floating_point<value_type>
1935 {
return _S_init(_M_data0._M_fabs(), _M_data1._M_fabs()); }
1937 template <
typename _Up>
1938 [[__gnu__::__always_inline__]]
1939 static inline basic_vec
1940 _S_partial_load(
const _Up* __mem,
size_t __n)
1943 return _S_init(_DataType0(_LoadCtorTag(), __mem),
1944 _DataType1::_S_partial_load(__mem + _N0, __n - _N0));
1946 return _S_init(_DataType0::_S_partial_load(__mem, __n),
1950 template <
typename _Up, _ArchTraits _Traits = {}>
1951 static inline basic_vec
1952 _S_masked_load(
const _Up* __mem, mask_type __k)
1954 return _S_init(_DataType0::_S_masked_load(__mem, __k._M_data0),
1955 _DataType1::_S_masked_load(__mem + _N0, __k._M_data1));
1958 template <
typename _Up>
1959 [[__gnu__::__always_inline__]]
1961 _M_store(_Up* __mem)
const
1963 _M_data0._M_store(__mem);
1964 _M_data1._M_store(__mem + _N0);
1967 template <
typename _Up>
1968 [[__gnu__::__always_inline__]]
1970 _S_partial_store(
const basic_vec& __v, _Up* __mem,
size_t __n)
1974 __v._M_data0._M_store(__mem);
1975 _DataType1::_S_partial_store(__v._M_data1, __mem + _N0, __n - _N0);
1979 _DataType0::_S_partial_store(__v._M_data0, __mem, __n);
1983 template <
typename _Up>
1984 [[__gnu__::__always_inline__]]
1986 _S_masked_store(
const basic_vec& __v, _Up* __mem,
const mask_type& __k)
1988 _DataType0::_S_masked_store(__v._M_data0, __mem, __k._M_data0);
1989 _DataType1::_S_masked_store(__v._M_data1, __mem + _N0, __k._M_data1);
1992 basic_vec() =
default;
1995 using _NativeVecType = __vec_builtin_type<value_type, __bit_ceil(
unsigned(_S_size))>;
1997 [[__gnu__::__always_inline__]]
1999 basic_vec(
const _NativeVecType& __x)
2000 : _M_data0(_VecOps<__vec_builtin_type<value_type, _N0>>::_S_extract(__x)),
2001 _M_data1(_VecOps<__vec_builtin_type<value_type, __bit_ceil(unsigned(_N1))>>
2002 ::_S_extract(__x, integral_constant<int, _N0>()))
2005 [[__gnu__::__always_inline__]]
2007 operator _NativeVecType()
const
2008 {
return _M_concat_data(); }
2011 template <__broadcast_constructible<value_type> _Up>
2012 [[__gnu__::__always_inline__]]
2014 basic_vec(_Up&& __x) noexcept
2015 : _M_data0(
static_cast<value_type
>(__x)), _M_data1(
static_cast<value_type
>(__x))
2019 template <
typename _Up,
typename _UAbi>
2020 requires (_S_size == _UAbi::_S_size)
2021 && __explicitly_convertible_to<_Up, value_type>
2022 [[__gnu__::__always_inline__]]
2024 explicit(!__value_preserving_convertible_to<_Up, value_type>
2025 || __higher_rank_than<_Up, value_type>)
2026 basic_vec(
const basic_vec<_Up, _UAbi>& __x) noexcept
2027 : _M_data0(get<0>(chunk<_N0>(__x))),
2028 _M_data1(get<1>(chunk<_N0>(__x)))
2031 using _VecBase<_Tp, _Ap>::_VecBase;
2034 template <__simd_generator_invokable<value_type, _S_size> _Fp>
2035 [[__gnu__::__always_inline__]]
2037 basic_vec(_Fp&& __gen)
2038 : _M_data0(__gen), _M_data1([&] [[__gnu__::__always_inline__]] (auto __i) {
2039 return __gen(__simd_size_c<__i + _N0>);
2044 template <
typename _Up>
2045 [[__gnu__::__always_inline__]]
2047 basic_vec(_LoadCtorTag,
const _Up* __ptr)
2048 : _M_data0(_LoadCtorTag(), __ptr),
2049 _M_data1(_LoadCtorTag(), __ptr + _N0)
2052 template <ranges::contiguous_range _Rg,
typename... _Flags>
2053 requires __static_sized_range<_Rg, _S_size>
2054 && __vectorizable<ranges::range_value_t<_Rg>>
2055 && __explicitly_convertible_to<ranges::range_value_t<_Rg>, value_type>
2057 basic_vec(_Rg&& __range, flags<_Flags...> __flags = {})
2058 : basic_vec(_LoadCtorTag(),
2059 __flags.template _S_adjust_pointer<basic_vec>(ranges::
data(__range)))
2061 static_assert(__loadstore_convertible_to<ranges::range_value_t<_Rg>, value_type,
2066 [[__gnu__::__always_inline__]]
2067 constexpr value_type
2068 operator[](__simd_size_type __i)
const
2070 __glibcxx_simd_precondition(__i >= 0 && __i < _S_size,
"subscript is out of bounds");
2071 if (__is_const_known(__i))
2072 return __i < _N0 ? _M_data0[__i] : _M_data1[__i - _N0];
2075 using _AliasingT [[__gnu__::__may_alias__]] = value_type;
2076 return reinterpret_cast<const _AliasingT*
>(
this)[__i];
2081 [[__gnu__::__always_inline__]]
2082 constexpr basic_vec&
2083 operator++() noexcept requires requires(value_type __a) { ++__a; }
2090 [[__gnu__::__always_inline__]]
2092 operator++(
int)
noexcept requires requires(value_type __a) { __a++; }
2094 basic_vec __r = *
this;
2100 [[__gnu__::__always_inline__]]
2101 constexpr basic_vec&
2102 operator--() noexcept requires requires(value_type __a) { --__a; }
2109 [[__gnu__::__always_inline__]]
2111 operator--(
int)
noexcept requires requires(value_type __a) { __a--; }
2113 basic_vec __r = *
this;
2119 [[__gnu__::__always_inline__]]
2121 operator!() const noexcept requires requires(value_type __a) { !__a; }
2122 {
return mask_type::_S_init(!_M_data0, !_M_data1); }
2124 [[__gnu__::__always_inline__]]
2126 operator+() const noexcept requires requires(value_type __a) { +__a; }
2129 [[__gnu__::__always_inline__]]
2131 operator-() const noexcept requires requires(value_type __a) { -__a; }
2132 {
return _S_init(-_M_data0, -_M_data1); }
2134 [[__gnu__::__always_inline__]]
2136 operator~() const noexcept requires requires(value_type __a) { ~__a; }
2137 {
return _S_init(~_M_data0, ~_M_data1); }
2140#define _GLIBCXX_SIMD_DEFINE_OP(sym) \
2141 [[__gnu__::__always_inline__]] \
2142 friend constexpr basic_vec& \
2143 operator sym##=(basic_vec& __x, const basic_vec& __y) _GLIBCXX_SIMD_NOEXCEPT \
2145 __x._M_data0 sym##= __y._M_data0; \
2146 __x._M_data1 sym##= __y._M_data1; \
2150 _GLIBCXX_SIMD_DEFINE_OP(+)
2151 _GLIBCXX_SIMD_DEFINE_OP(-)
2152 _GLIBCXX_SIMD_DEFINE_OP(*)
2153 _GLIBCXX_SIMD_DEFINE_OP(/)
2154 _GLIBCXX_SIMD_DEFINE_OP(%)
2155 _GLIBCXX_SIMD_DEFINE_OP(&)
2156 _GLIBCXX_SIMD_DEFINE_OP(|)
2157 _GLIBCXX_SIMD_DEFINE_OP(^)
2158 _GLIBCXX_SIMD_DEFINE_OP(<<)
2159 _GLIBCXX_SIMD_DEFINE_OP(>>)
2161#undef _GLIBCXX_SIMD_DEFINE_OP
2163 [[__gnu__::__always_inline__]]
2164 friend constexpr basic_vec&
2165 operator<<=(basic_vec& __x, __simd_size_type __y) _GLIBCXX_SIMD_NOEXCEPT
2166 requires requires(value_type __a, __simd_size_type __b) { __a << __b; }
2168 __x._M_data0 <<= __y;
2169 __x._M_data1 <<= __y;
2173 [[__gnu__::__always_inline__]]
2174 friend constexpr basic_vec&
2175 operator>>=(basic_vec& __x, __simd_size_type __y) _GLIBCXX_SIMD_NOEXCEPT
2176 requires requires(value_type __a, __simd_size_type __b) { __a >> __b; }
2178 __x._M_data0 >>= __y;
2179 __x._M_data1 >>= __y;
2184 [[__gnu__::__always_inline__]]
2185 friend constexpr mask_type
2186 operator==(
const basic_vec& __x,
const basic_vec& __y)
noexcept
2187 {
return mask_type::_S_init(__x._M_data0 == __y._M_data0, __x._M_data1 == __y._M_data1); }
2189 [[__gnu__::__always_inline__]]
2190 friend constexpr mask_type
2191 operator!=(
const basic_vec& __x,
const basic_vec& __y)
noexcept
2192 {
return mask_type::_S_init(__x._M_data0 != __y._M_data0, __x._M_data1 != __y._M_data1); }
2194 [[__gnu__::__always_inline__]]
2195 friend constexpr mask_type
2196 operator<(
const basic_vec& __x,
const basic_vec& __y)
noexcept
2197 {
return mask_type::_S_init(__x._M_data0 < __y._M_data0, __x._M_data1 < __y._M_data1); }
2199 [[__gnu__::__always_inline__]]
2200 friend constexpr mask_type
2201 operator<=(
const basic_vec& __x,
const basic_vec& __y)
noexcept
2202 {
return mask_type::_S_init(__x._M_data0 <= __y._M_data0, __x._M_data1 <= __y._M_data1); }
2204 [[__gnu__::__always_inline__]]
2205 friend constexpr mask_type
2206 operator>(
const basic_vec& __x,
const basic_vec& __y)
noexcept
2207 {
return mask_type::_S_init(__x._M_data0 > __y._M_data0, __x._M_data1 > __y._M_data1); }
2209 [[__gnu__::__always_inline__]]
2210 friend constexpr mask_type
2211 operator>=(
const basic_vec& __x,
const basic_vec& __y)
noexcept
2212 {
return mask_type::_S_init(__x._M_data0 >= __y._M_data0, __x._M_data1 >= __y._M_data1); }
2215 [[__gnu__::__always_inline__]]
2216 friend constexpr basic_vec
2217 __select_impl(
const mask_type& __k,
const basic_vec& __t,
const basic_vec& __f)
noexcept
2219 return _S_init(__select_impl(__k._M_data0, __t._M_data0, __f._M_data0),
2220 __select_impl(__k._M_data1, __t._M_data1, __f._M_data1));
2225 template <ranges::contiguous_range _Rg,
typename... _Ts>
2226 requires __static_sized_range<_Rg>
2227 basic_vec(_Rg&& __r, _Ts...)
2228 -> basic_vec<ranges::range_value_t<_Rg>,
2229 __deduce_abi_t<ranges::range_value_t<_Rg>,
2231 static_cast<__simd_size_type
>(ranges::size(__r))>>;
2233 static_cast<__simd_size_type
>(
decltype(std::span(__r))::extent)>>;
2236 template <
size_t _Bytes,
typename _Ap>
2237 basic_vec(basic_mask<_Bytes, _Ap>)
2238 -> basic_vec<__integer_from<_Bytes>,
2239 decltype(__abi_rebind<__integer_from<_Bytes>, basic_mask<_Bytes, _Ap>::size.value,
2243 template <__vectorizable _Tp>
2244 requires is_arithmetic_v<_Tp>
2245 inline constexpr _Tp
2246 __iota<_Tp> = _Tp();
2248 template <
typename _Tp,
typename _Ap>
2249 inline constexpr basic_vec<_Tp, _Ap>
2250 __iota<basic_vec<_Tp, _Ap>> = basic_vec<_Tp, _Ap>([](_Tp __i) -> _Tp {
2252 "iota object would overflow");
2256_GLIBCXX_END_NAMESPACE_VERSION
2259#pragma GCC diagnostic pop
constexpr bool operator<=(const duration< _Rep1, _Period1 > &__lhs, const duration< _Rep2, _Period2 > &__rhs)
constexpr bool operator>=(const duration< _Rep1, _Period1 > &__lhs, const duration< _Rep2, _Period2 > &__rhs)
constexpr bool operator<(const duration< _Rep1, _Period1 > &__lhs, const duration< _Rep2, _Period2 > &__rhs)
constexpr bool operator>(const duration< _Rep1, _Period1 > &__lhs, const duration< _Rep2, _Period2 > &__rhs)
constexpr complex< _Tp > operator-(const complex< _Tp > &__x, const complex< _Tp > &__y)
Return new complex value x minus y.
constexpr complex< _Tp > operator+(const complex< _Tp > &__x, const complex< _Tp > &__y)
Return new complex value x plus y.
bool is_sufficiently_aligned(_Tp *__ptr)
Is __ptr aligned to an _Align byte boundary?
ISO C++ entities toplevel namespace is std.
_Tp fabs(const std::complex< _Tp > &__z)
fabs(__z) TR1 8.1.8 [tr.c99.cmplx.fabs]
constexpr auto data(_Container &__cont) noexcept(noexcept(__cont.data())) -> decltype(__cont.data())
Return the data pointer of a container.
static constexpr _Tp max() noexcept
static constexpr _Tp infinity() noexcept