File indexing completed on 2025-01-31 10:25:42
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022
0023
0024
0025
0026
0027
0028 #ifndef VC_SCALAR_SIMD_CAST_H_
0029 #define VC_SCALAR_SIMD_CAST_H_
0030
0031 #include "../common/simd_cast.h"
0032 #include "type_traits.h"
0033 #include "macros.h"
0034
0035 namespace Vc_VERSIONED_NAMESPACE
0036 {
0037
0038
0039 template <typename To, typename From>
0040 Vc_INTRINSIC Vc_CONST To
0041 simd_cast(Scalar::Vector<From> x, enable_if<Scalar::is_vector<To>::value> = nullarg)
0042 {
0043 return static_cast<To>(x.data());
0044 }
0045
0046
0047 template <typename To, typename From>
0048 Vc_INTRINSIC Vc_CONST To
0049 simd_cast(Scalar::Mask<From> x, enable_if<Scalar::is_mask<To>::value> = nullarg)
0050 {
0051 return static_cast<To>(x.data());
0052 }
0053
0054
0055 template <typename Return, int offset, typename T>
0056 Vc_INTRINSIC Vc_CONST Return simd_cast(
0057 T &&x,
0058 enable_if<Traits::is_simd_vector<T>::value && Scalar::is_vector<Return>::value> = nullarg)
0059 {
0060 return Return(x[offset]);
0061 }
0062
0063 template <typename Return, int offset, typename T>
0064 Vc_INTRINSIC Vc_CONST enable_if<offset == 0 && Traits::is_simd_vector<Return>::value &&
0065 !Scalar::is_vector<Return>::value,
0066 Return>
0067 simd_cast(Scalar::Vector<T> x)
0068 {
0069 Return r{};
0070 r[0] = static_cast<typename Return::EntryType>(x.data());
0071 return r;
0072 }
0073
0074
0075
0076 template <typename Return, int offset, typename T>
0077 Vc_INTRINSIC Vc_CONST Return simd_cast(
0078 T &&x,
0079 enable_if<Traits::is_simd_mask<T>::value && Scalar::is_mask<Return>::value> = nullarg)
0080 {
0081 return Return(bool(x[offset]));
0082 }
0083
0084 template <typename Return, int offset, typename T>
0085 Vc_INTRINSIC Vc_CONST enable_if<
0086 offset == 0 && Traits::is_simd_mask<Return>::value && !Scalar::is_mask<Return>::value,
0087 Return>
0088 simd_cast(Scalar::Mask<T> x)
0089 {
0090 Return r(false);
0091 r[0] = x[0];
0092 return r;
0093 }
0094
0095 }
0096
0097 #endif
0098
0099