1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
|
/* Copyright (C) 2015-2016 Free Software Foundation, Inc.
This file is part of GDB.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
#ifndef COMMON_ENUM_FLAGS_H
#define COMMON_ENUM_FLAGS_H
/* Type-safe wrapper for enum flags. enum flags are enums where the
values are bits that are meant to be ORed together.
This allows writing code like the below, while with raw enums this
would fail to compile without casts to enum type at the assignments
to 'f':
enum some_flag
{
flag_val1 = 1 << 1,
flag_val2 = 1 << 2,
flag_val3 = 1 << 3,
flag_val4 = 1 << 4,
};
DEF_ENUM_FLAGS_TYPE(enum some_flag, some_flags)
some_flags f = flag_val1 | flag_val2;
f |= flag_val3;
It's also possible to assign literal zero to an enum flags variable
(meaning, no flags), dispensing adding an awkward explicit "no
value" value to the enumeration. For example:
some_flags f = 0;
f |= flag_val3 | flag_val4;
Note that literal integers other than zero fail to compile:
some_flags f = 1; // error
*/
/* Comprehensive unit tests are found in gdb/enum-flags-selftests.c. */
#ifdef __cplusplus
#include <type_traits>
/* Traits type used to prevent the global operator overloads from
instantiating for non-flag enums. */
template<typename T> struct enum_flags_type {};
/* Use this to mark an enum as flags enum, enabling the global
operator overloads for ENUM_TYPE. This must be called in the
global namespace. */
#define ENABLE_ENUM_FLAGS_OPERATORS(enum_type) \
template<> \
struct enum_flags_type<enum_type> \
{ \
typedef enum_flags<enum_type> type; \
}
/* Use this to mark an enum as flags enum. It defines FLAGS_TYPE as
enum_flags wrapper class for ENUM, and enables the global operator
overloads for ENUM. This must be called in the global
namespace. */
#define DEF_ENUM_FLAGS_TYPE(enum_type, flags_type) \
typedef enum_flags<enum_type> flags_type; \
ENABLE_ENUM_FLAGS_OPERATORS(enum_type);
template <typename E>
class enum_flags
{
public:
typedef E enum_type;
typedef typename std::underlying_type<enum_type>::type underlying_type;
private:
/* Private type used to support initializing flag types with zero:
foo_flags f = 0;
but not other integers:
foo_flags f = 1;
The way this works is that we define an implicit constructor that
takes a pointer to this private type. Since nothing can
instantiate an object of this type, the only possible pointer to
pass to the constructor is the NULL pointer, or, zero. */
struct zero_type;
public:
/* Allow default construction, just like raw enums. */
enum_flags () = default;
/* The default move/copy/assignment do the right thing. */
/* If you get an error saying these two overloads are ambiguous,
then you tried to mix values of different enum types. */
constexpr enum_flags (enum_type e)
: m_enum_value (e)
{}
constexpr enum_flags (enum_flags::zero_type *zero)
: m_enum_value ((enum_type) 0)
{}
enum_flags &operator&= (enum_flags e)
{
m_enum_value = (enum_type) (m_enum_value & e.m_enum_value);
return *this;
}
enum_flags &operator|= (enum_flags e)
{
m_enum_value = (enum_type) (m_enum_value | e.m_enum_value);
return *this;
}
enum_flags &operator^= (enum_flags e)
{
m_enum_value = (enum_type) (m_enum_value ^ e.m_enum_value);
return *this;
}
/* Like raw enums, allow conversion to the underlying type. */
constexpr operator underlying_type () const
{ return m_enum_value; }
/* Get the underlying value as a raw enum. */
constexpr enum_type raw () const
{ return m_enum_value; }
/* Binary operations involving some unrelated type (which would be a
bug) are implemented as non-members, and deleted. */
/* Unary operators. */
constexpr enum_flags operator~ () const
{ return (enum_type) ~m_enum_value; }
private:
/* Stored as enum_type because GDB knows to print the bit flags
neatly if the enum values look like bit flags. */
enum_type m_enum_value;
};
/* Global operator overloads. */
/* Generate binary operators. */
#define ENUM_FLAGS_GEN_BINOP(OPERATOR_OP, OP) \
\
/* Raw enum on both LHS/RHS. Returns raw enum type. */ \
template <typename enum_type> \
constexpr typename enum_flags_type<enum_type>::type::enum_type \
OPERATOR_OP (enum_type e1, enum_type e2) \
{ \
using underlying = typename std::underlying_type<enum_type>::type; \
return (enum_type) (underlying (e1) OP underlying (e2)); \
} \
\
/* enum_flags on the LHS. */ \
template <typename enum_type> \
constexpr typename enum_flags_type<enum_type>::type \
OPERATOR_OP (enum_flags<enum_type> e1, enum_type e2) \
{ return e1.raw () OP e2; } \
\
/* enum_flags on the RHS. */ \
template <typename enum_type> \
constexpr typename enum_flags_type<enum_type>::type \
OPERATOR_OP (enum_type e1, enum_flags<enum_type> e2) \
{ return e1 OP e2.raw (); } \
\
/* enum_flags on both LHS/RHS. */ \
template <typename enum_type> \
constexpr typename enum_flags_type<enum_type>::type \
OPERATOR_OP (enum_flags<enum_type> e1, enum_flags<enum_type> e2) \
{ return e1.raw () OP e2.raw (); } \
\
/* Delete cases involving unrelated types. */ \
\
template <typename enum_type, typename unrelated_type> \
constexpr typename enum_flags_type<enum_type>::type \
OPERATOR_OP (enum_type e1, unrelated_type e2) = delete; \
\
template <typename enum_type, typename unrelated_type> \
constexpr typename enum_flags_type<enum_type>::type \
OPERATOR_OP (unrelated_type e1, enum_type e2) = delete; \
\
template <typename enum_type, typename unrelated_type> \
constexpr typename enum_flags_type<enum_type>::type \
OPERATOR_OP (enum_flags<enum_type> e1, unrelated_type e2) = delete; \
\
template <typename enum_type, typename unrelated_type> \
constexpr typename enum_flags_type<enum_type>::type \
OPERATOR_OP (unrelated_type e1, enum_flags<enum_type> e2) = delete;
/* Generate non-member compound assignment operators. Only the raw
enum versions are defined here. The enum_flags versions are
defined as member functions, simply because it's less code that
way.
Note we delete operators that would allow e.g.,
"enum_type | 1" or "enum_type1 | enum_type2"
because that would allow a mistake like :
enum flags1 { F1_FLAGS1 = 1 };
enum flags2 { F2_FLAGS2 = 2 };
enum flags1 val;
switch (val) {
case F1_FLAGS1 | F2_FLAGS2:
...
If you really need to 'or' different flags, cast to integer first.
*/
#define ENUM_FLAGS_GEN_COMPOUND_ASSIGN(OPERATOR_OP, OP) \
/* lval reference version. */ \
template <typename enum_type> \
constexpr typename enum_flags_type<enum_type>::type::enum_type & \
OPERATOR_OP (enum_type &e1, const enum_type &e2) \
{ return e1 = e1 OP e2; } \
\
/* rval reference version. */ \
template <typename enum_type> \
constexpr typename enum_flags_type<enum_type>::type::enum_type & \
OPERATOR_OP (enum_type &&e1, const enum_type &e2) \
{ return e1 = e1 OP e2; } \
\
/* Delete assignment from unrelated types. */ \
\
template <typename enum_type, typename other_enum_type> \
constexpr typename enum_flags_type<enum_type>::type::enum_type & \
OPERATOR_OP (enum_type &e1, const other_enum_type &e2) = delete; \
\
template <typename enum_type, typename other_enum_type> \
constexpr typename enum_flags_type<enum_type>::type::enum_type & \
OPERATOR_OP (enum_type &&e1, const other_enum_type &e2) = delete;
ENUM_FLAGS_GEN_BINOP(operator|, |)
ENUM_FLAGS_GEN_BINOP(operator&, &)
ENUM_FLAGS_GEN_BINOP(operator^, ^)
ENUM_FLAGS_GEN_COMPOUND_ASSIGN(operator|=, |)
ENUM_FLAGS_GEN_COMPOUND_ASSIGN(operator&=, &)
ENUM_FLAGS_GEN_COMPOUND_ASSIGN(operator^=, ^)
/* Unary operators for the raw flags enum. */
template <typename enum_type>
constexpr typename enum_flags_type<enum_type>::type::enum_type
operator~ (enum_type e)
{
using underlying = typename std::underlying_type<enum_type>::type;
return (enum_type) ~underlying (e);
}
/* Delete operator<< and operator>>. */
template <typename enum_type, typename any_type>
constexpr typename enum_flags_type<enum_type>::type
operator<< (const enum_type &, const any_type &) = delete;
template <typename enum_type, typename any_type>
constexpr typename enum_flags_type<enum_type>::type
operator<< (const enum_flags<enum_type> &, const any_type &) = delete;
template <typename enum_type, typename any_type>
constexpr typename enum_flags_type<enum_type>::type
operator>> (const enum_type &, const any_type &) = delete;
template <typename enum_type, typename any_type>
constexpr typename enum_flags_type<enum_type>::type
operator>> (const enum_flags<enum_type> &, const any_type &) = delete;
#else /* __cplusplus */
/* In C, the flags type is just a typedef for the enum type. */
#define DEF_ENUM_FLAGS_TYPE(enum_type, flags_type) \
typedef enum_type flags_type
#endif /* __cplusplus */
#endif /* COMMON_ENUM_FLAGS_H */
|