]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/include/bits/indirect_array.h
PR libstdc++/36104 part four
[thirdparty/gcc.git] / libstdc++-v3 / include / bits / indirect_array.h
CommitLineData
725dc051
BK
1// The template and inlines for the -*- C++ -*- indirect_array class.
2
d652f226 3// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2004, 2005, 2009, 2010
00386a9b 4// Free Software Foundation, Inc.
725dc051
BK
5//
6// This file is part of the GNU ISO C++ Library. This library is free
7// software; you can redistribute it and/or modify it under the
8// terms of the GNU General Public License as published by the
748086b7 9// Free Software Foundation; either version 3, or (at your option)
725dc051
BK
10// any later version.
11
12// This library is distributed in the hope that it will be useful,
13// but WITHOUT ANY WARRANTY; without even the implied warranty of
14// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15// GNU General Public License for more details.
16
748086b7
JJ
17// Under Section 7 of GPL version 3, you are granted additional
18// permissions described in the GCC Runtime Library Exception, version
19// 3.1, as published by the Free Software Foundation.
20
21// You should have received a copy of the GNU General Public License and
22// a copy of the GCC Runtime Library Exception along with this program;
23// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
24// <http://www.gnu.org/licenses/>.
725dc051 25
f910786b 26/** @file bits/indirect_array.h
729e3d3f 27 * This is an internal header file, included by other library headers.
f910786b 28 * Do not attempt to use it directly. @headername{valarray}
729e3d3f
PE
29 */
30
143c27b0
BK
31// Written by Gabriel Dos Reis <Gabriel.Dos-Reis@DPTMaths.ENS-Cachan.Fr>
32
3d7c150e
BK
33#ifndef _INDIRECT_ARRAY_H
34#define _INDIRECT_ARRAY_H 1
b0a85b86
GDR
35
36#pragma GCC system_header
725dc051 37
12ffa228
BK
38namespace std _GLIBCXX_VISIBILITY(default)
39{
40_GLIBCXX_BEGIN_NAMESPACE_VERSION
3cbc7af0 41
5b9daa7e
BK
42 /**
43 * @addtogroup numeric_arrays
44 * @{
45 */
46
7fb397a4
JQ
47 /**
48 * @brief Reference to arbitrary subset of an array.
49 *
50 * An indirect_array is a reference to the actual elements of an array
82cb2574
PC
51 * specified by an ordered array of indices. The way to get an
52 * indirect_array is to call operator[](valarray<size_t>) on a valarray.
53 * The returned indirect_array then permits carrying operations out on the
54 * referenced subset of elements in the original valarray.
7fb397a4
JQ
55 *
56 * For example, if an indirect_array is obtained using the array (4,2,0) as
57 * an argument, and then assigned to an array containing (1,2,3), then the
58 * underlying array will have array[0]==3, array[2]==2, and array[4]==1.
59 *
60 * @param Tp Element type.
61 */
8164237c 62 template <class _Tp>
7fb397a4
JQ
63 class indirect_array
64 {
65 public:
66 typedef _Tp value_type;
8164237c 67
d4cd08dd
PC
68 // _GLIBCXX_RESOLVE_LIB_DEFECTS
69 // 253. valarray helper functions are almost entirely useless
70
ecc7568d
JQ
71 /// Copy constructor. Both slices refer to the same underlying array.
72 indirect_array(const indirect_array&);
73
7fb397a4
JQ
74 /// Assignment operator. Assigns elements to corresponding elements
75 /// of @a a.
76 indirect_array& operator=(const indirect_array&);
ed6814f7 77
7fb397a4
JQ
78 /// Assign slice elements to corresponding elements of @a v.
79 void operator=(const valarray<_Tp>&) const;
80 /// Multiply slice elements by corresponding elements of @a v.
81 void operator*=(const valarray<_Tp>&) const;
82 /// Divide slice elements by corresponding elements of @a v.
83 void operator/=(const valarray<_Tp>&) const;
84 /// Modulo slice elements by corresponding elements of @a v.
ed6814f7 85 void operator%=(const valarray<_Tp>&) const;
7fb397a4
JQ
86 /// Add corresponding elements of @a v to slice elements.
87 void operator+=(const valarray<_Tp>&) const;
88 /// Subtract corresponding elements of @a v from slice elements.
ed6814f7 89 void operator-=(const valarray<_Tp>&) const;
7fb397a4
JQ
90 /// Logical xor slice elements with corresponding elements of @a v.
91 void operator^=(const valarray<_Tp>&) const;
92 /// Logical and slice elements with corresponding elements of @a v.
93 void operator&=(const valarray<_Tp>&) const;
94 /// Logical or slice elements with corresponding elements of @a v.
95 void operator|=(const valarray<_Tp>&) const;
96 /// Left shift slice elements by corresponding elements of @a v.
97 void operator<<=(const valarray<_Tp>&) const;
98 /// Right shift slice elements by corresponding elements of @a v.
ed6814f7 99 void operator>>=(const valarray<_Tp>&) const;
7fb397a4
JQ
100 /// Assign all slice elements to @a t.
101 void operator= (const _Tp&) const;
102 // ~indirect_array();
ed6814f7 103
7fb397a4
JQ
104 template<class _Dom>
105 void operator=(const _Expr<_Dom, _Tp>&) const;
106 template<class _Dom>
107 void operator*=(const _Expr<_Dom, _Tp>&) const;
108 template<class _Dom>
109 void operator/=(const _Expr<_Dom, _Tp>&) const;
110 template<class _Dom>
111 void operator%=(const _Expr<_Dom, _Tp>&) const;
112 template<class _Dom>
113 void operator+=(const _Expr<_Dom, _Tp>&) const;
114 template<class _Dom>
115 void operator-=(const _Expr<_Dom, _Tp>&) const;
116 template<class _Dom>
117 void operator^=(const _Expr<_Dom, _Tp>&) const;
118 template<class _Dom>
119 void operator&=(const _Expr<_Dom, _Tp>&) const;
120 template<class _Dom>
121 void operator|=(const _Expr<_Dom, _Tp>&) const;
122 template<class _Dom>
123 void operator<<=(const _Expr<_Dom, _Tp>&) const;
124 template<class _Dom>
ed6814f7 125 void operator>>=(const _Expr<_Dom, _Tp>&) const;
8164237c 126
7fb397a4
JQ
127 private:
128 /// Copy constructor. Both slices refer to the same underlying array.
7fb397a4 129 indirect_array(_Array<_Tp>, size_t, _Array<size_t>);
8164237c 130
7fb397a4
JQ
131 friend class valarray<_Tp>;
132 friend class gslice_array<_Tp>;
ed6814f7
BI
133
134 const size_t _M_sz;
7fb397a4 135 const _Array<size_t> _M_index;
ed6814f7
BI
136 const _Array<_Tp> _M_array;
137
7fb397a4
JQ
138 // not implemented
139 indirect_array();
140 };
8164237c
GDR
141
142 template<typename _Tp>
ed6814f7 143 inline
00386a9b 144 indirect_array<_Tp>::indirect_array(const indirect_array<_Tp>& __a)
d4cd08dd 145 : _M_sz(__a._M_sz), _M_index(__a._M_index), _M_array(__a._M_array) {}
8164237c
GDR
146
147 template<typename _Tp>
82cb2574
PC
148 inline
149 indirect_array<_Tp>::indirect_array(_Array<_Tp> __a, size_t __s,
150 _Array<size_t> __i)
151 : _M_sz(__s), _M_index(__i), _M_array(__a) {}
8164237c
GDR
152
153 template<typename _Tp>
82cb2574
PC
154 inline indirect_array<_Tp>&
155 indirect_array<_Tp>::operator=(const indirect_array<_Tp>& __a)
156 {
157 std::__valarray_copy(__a._M_array, _M_sz, __a._M_index, _M_array,
158 _M_index);
159 return *this;
160 }
8164237c 161
8164237c 162 template<typename _Tp>
82cb2574
PC
163 inline void
164 indirect_array<_Tp>::operator=(const _Tp& __t) const
165 { std::__valarray_fill(_M_array, _M_index, _M_sz, __t); }
8164237c
GDR
166
167 template<typename _Tp>
82cb2574
PC
168 inline void
169 indirect_array<_Tp>::operator=(const valarray<_Tp>& __v) const
170 { std::__valarray_copy(_Array<_Tp>(__v), _M_sz, _M_array, _M_index); }
8164237c
GDR
171
172 template<typename _Tp>
82cb2574
PC
173 template<class _Dom>
174 inline void
175 indirect_array<_Tp>::operator=(const _Expr<_Dom, _Tp>& __e) const
176 { std::__valarray_copy(__e, _M_sz, _M_array, _M_index); }
725dc051
BK
177
178#undef _DEFINE_VALARRAY_OPERATOR
00386a9b
GDR
179#define _DEFINE_VALARRAY_OPERATOR(_Op, _Name) \
180 template<typename _Tp> \
181 inline void \
182 indirect_array<_Tp>::operator _Op##=(const valarray<_Tp>& __v) const\
183 { \
184 _Array_augmented_##_Name(_M_array, _M_index, _Array<_Tp>(__v), _M_sz); \
185 } \
725dc051 186 \
00386a9b
GDR
187 template<typename _Tp> \
188 template<class _Dom> \
189 inline void \
190 indirect_array<_Tp>::operator _Op##=(const _Expr<_Dom,_Tp>& __e) const\
191 { \
192 _Array_augmented_##_Name(_M_array, _M_index, __e, _M_sz); \
193 }
194
195_DEFINE_VALARRAY_OPERATOR(*, __multiplies)
196_DEFINE_VALARRAY_OPERATOR(/, __divides)
197_DEFINE_VALARRAY_OPERATOR(%, __modulus)
198_DEFINE_VALARRAY_OPERATOR(+, __plus)
199_DEFINE_VALARRAY_OPERATOR(-, __minus)
200_DEFINE_VALARRAY_OPERATOR(^, __bitwise_xor)
201_DEFINE_VALARRAY_OPERATOR(&, __bitwise_and)
202_DEFINE_VALARRAY_OPERATOR(|, __bitwise_or)
203_DEFINE_VALARRAY_OPERATOR(<<, __shift_left)
204_DEFINE_VALARRAY_OPERATOR(>>, __shift_right)
725dc051
BK
205
206#undef _DEFINE_VALARRAY_OPERATOR
207
5b9daa7e
BK
208 // @} group numeric_arrays
209
12ffa228
BK
210_GLIBCXX_END_NAMESPACE_VERSION
211} // namespace
725dc051 212
3d7c150e 213#endif /* _INDIRECT_ARRAY_H */