Vc  1.1.0
SIMD Vector Classes for C++
trigonometric.h
1 /* This file is part of the Vc library. {{{
2 Copyright © 2009-2015 Matthias Kretz <kretz@kde.org>
3 All rights reserved.
4 
5 Redistribution and use in source and binary forms, with or without
6 modification, are permitted provided that the following conditions are met:
7  * Redistributions of source code must retain the above copyright
8  notice, this list of conditions and the following disclaimer.
9  * Redistributions in binary form must reproduce the above copyright
10  notice, this list of conditions and the following disclaimer in the
11  documentation and/or other materials provided with the distribution.
12  * Neither the names of contributing organizations nor the
13  names of its contributors may be used to endorse or promote products
14  derived from this software without specific prior written permission.
15 
16 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
17 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY
20 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23 ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 
27 }}}*/
28 
29 #ifndef VC_COMMON_TRIGONOMETRIC_H_
30 #define VC_COMMON_TRIGONOMETRIC_H_
31 
32 #include "macros.h"
33 
34 namespace Vc_VERSIONED_NAMESPACE
35 {
36 namespace Detail
37 {
38 template<Vc::Implementation Impl> struct MapImpl { enum Dummy { Value = Impl }; };
39 template<> struct MapImpl<Vc::SSE42Impl> { enum Dummy { Value = MapImpl<Vc::SSE41Impl>::Value }; };
40 
41 template<Vc::Implementation Impl> using TrigonometricImplementation =
42  ImplementationT<MapImpl<Impl>::Value
43 #if defined(Vc_IMPL_XOP) && defined(Vc_IMPL_FMA4)
46 #endif
47  >;
48 } // namespace Detail
49 
50 namespace Common
51 {
52 template<typename Impl> struct Trigonometric
53 {
54  template<typename T> static T sin(const T &_x);
55  template<typename T> static T cos(const T &_x);
56  template<typename T> static void sincos(const T &_x, T *_sin, T *_cos);
57  template<typename T> static T asin (const T &_x);
58  template<typename T> static T atan (const T &_x);
59  template<typename T> static T atan2(const T &y, const T &x);
60 };
61 } // namespace Common
62 
63 #ifdef Vc_IMPL_SSE
64 // this is either SSE, AVX, or AVX2
65 namespace Detail
66 {
67 template <typename T, typename Abi>
68 using Trig = Common::Trigonometric<Detail::TrigonometricImplementation<
69  (std::is_same<Abi, VectorAbi::Sse>::value
70  ? SSE42Impl
71  : std::is_same<Abi, VectorAbi::Avx>::value ? AVXImpl : ScalarImpl)>>;
72 } // namespace Detail
73 template <typename T, typename Abi> Vc_INTRINSIC Vector<T, Abi> sin(const Vector<T, Abi> &x) { return Detail::Trig<T, Abi>::sin(x); }
74 template <typename T, typename Abi> Vc_INTRINSIC Vector<T, Abi> cos(const Vector<T, Abi> &x) { return Detail::Trig<T, Abi>::cos(x); }
75 template <typename T, typename Abi> Vc_INTRINSIC Vector<T, Abi> asin(const Vector<T, Abi> &x) { return Detail::Trig<T, Abi>::asin(x); }
76 template <typename T, typename Abi> Vc_INTRINSIC Vector<T, Abi> atan(const Vector<T, Abi> &x) { return Detail::Trig<T, Abi>::atan(x); }
77 template <typename T, typename Abi> Vc_INTRINSIC Vector<T, Abi> atan2(const Vector<T, Abi> &y, const Vector<T, Abi> &x) { return Detail::Trig<T, Abi>::atan2(y, x); }
78 template <typename T, typename Abi> Vc_INTRINSIC void sincos(const Vector<T, Abi> &x, Vector<T, Abi> *sin, Vector<T, Abi> *cos) { Detail::Trig<T, Abi>::sincos(x, sin, cos); }
79 #endif
80 } // namespace Vc
81 
82 #endif // VC_COMMON_TRIGONOMETRIC_H_
Vc::Vector< T > sin(const Vc::Vector< T > &v)
Vc::Vector< T > cos(const Vc::Vector< T > &v)
Support for XOP instructions.
Definition: global.h:519
Vc::Vector< T > atan2(const Vc::Vector< T > &y, const Vc::Vector< T > &x)
Calculates the angle given the lengths of the opposite and adjacent legs in a right triangle...
Vc::Vector< T > atan(const Vc::Vector< T > &v)
Vc::Vector< T > asin(const Vc::Vector< T > &v)
x86 SSE + SSE2 + SSE3 + SSSE3 + SSE4.1 + SSE4.2
Definition: global.h:493
Support for FMA4 instructions.
Definition: global.h:517
Vector Classes Namespace.
Definition: cpuid.h:33
uses only fundamental types
Definition: global.h:483
x86 AVX
Definition: global.h:495