Vc  1.1.0
SIMD Vector Classes for C++
alignedbase.h
1 /* This file is part of the Vc library. {{{
2 Copyright © 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_ALIGNEDBASE_H_
30 #define VC_COMMON_ALIGNEDBASE_H_
31 
32 #include "types.h"
33 #include "macros.h"
34 
35 namespace Vc_VERSIONED_NAMESPACE
36 {
37 namespace Detail
38 {
42 template <typename T> constexpr T max(T a) { return a; }
46 template <typename T, typename... Ts> constexpr T max(T a, T b, Ts... rest)
47 {
48  return a > b ? max(a, rest...) : max(b, rest...);
49 }
50 } // namespace Detail
51 namespace Common
52 {
53 template <std::size_t> Vc_INTRINSIC void *aligned_malloc(std::size_t);
54 Vc_ALWAYS_INLINE void free(void *);
55 } // namespace Common
56 
68 template <std::size_t Alignment> struct alignas(Alignment) AlignedBase
69 {
70  Vc_FREE_STORE_OPERATORS_ALIGNED(Alignment)
71 };
72 
88  Detail::max(alignof(Vector<float>), alignof(Vector<double>), alignof(Vector<ullong>),
89  alignof(Vector<llong>), alignof(Vector<ulong>), alignof(Vector<long>),
90  alignof(Vector<uint>), alignof(Vector<int>), alignof(Vector<ushort>),
91  alignof(Vector<short>), alignof(Vector<uchar>), alignof(Vector<schar>))>;
92 
101 template <typename V> using VectorAlignedBaseT = AlignedBase<alignof(V)>;
102 
124 
134 }
135 
136 #endif // VC_COMMON_ALIGNEDBASE_H_
137 
138 // vim: foldmethod=marker
void free(T *p)
Frees memory that was allocated with Vc::malloc.
Definition: memory.h:103
The main vector class for expressing data parallelism.
Definition: types.h:45
Vc::Vector< T > max(const Vc::Vector< T > &x, const Vc::Vector< T > &y)
Helper class to ensure a given alignment.
Definition: alignedbase.h:68