-
Notifications
You must be signed in to change notification settings - Fork 1
/
constexpr_wrapper.h
469 lines (400 loc) · 17.4 KB
/
constexpr_wrapper.h
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
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
/* SPDX-License-Identifier: LGPL-3.0-or-later */
/* Copyright © 2023-2024 GSI Helmholtzzentrum fuer Schwerionenforschung GmbH
* Matthias Kretz <[email protected]>
*/
#ifndef VIR_CONSTEXPR_WRAPPER_H_
#define VIR_CONSTEXPR_WRAPPER_H_
#if defined __cpp_concepts && __cpp_concepts >= 201907 && __has_include(<concepts>)
#define VIR_HAVE_CONSTEXPR_WRAPPER 1
#include <algorithm>
#include <array>
#include <concepts>
#include <limits>
#include <type_traits>
#include <utility>
namespace vir
{
/**
* Implements P2781 with modifications:
*
* - Overload operator-> to return value.operator->() if well-formed, otherwise act like a pointer
* dereference to underlying value (allows calling functions on wrapped type).
*
* - Overload operator() to act like integral_constant::operator(), unless value() is
* well-formed.
*/
template <auto Xp, typename = std::remove_cvref_t<decltype(Xp)>>
struct constexpr_wrapper;
// *** constexpr_value<T, U = void> ***
// If U is given, T must be convertible to U (`constexpr_value<int> auto` is analogous to `int`).
// If U is void (default), the type of the value is unconstrained.
template <typename Tp, typename Up = void>
concept constexpr_value = (std::same_as<Up, void> or std::convertible_to<Tp, Up>)
#if defined __GNUC__ and __GNUC__ < 13
and not std::is_member_pointer_v<decltype(&Tp::value)>
#endif
and requires { typename constexpr_wrapper<Tp::value>; };
namespace detail
{
// exposition-only
// Note: `not _any_constexpr_wrapper` is not equivalent to `not derived_from<T,
// constexpr_wrapper<T::value>>` because of SFINAE (i.e. SFINAE would be reversed)
template <typename Tp>
concept _any_constexpr_wrapper = std::derived_from<Tp, constexpr_wrapper<Tp::value>>;
// exposition-only
// Concept that enables declaring a single binary operator overload per operation:
// 1. LHS is derived from This, then RHS is either also derived from This (and there's only a
// single candidate) or RHS is not a constexpr_wrapper (LHS provides the only operator
// candidate).
// 2. LHS is not a constexpr_wrapper, then RHS is derived from This (RHS provides the only
// operator candidate).
template <typename Tp, typename This>
concept _lhs_constexpr_wrapper
= constexpr_value<Tp> and (std::derived_from<Tp, This> or not _any_constexpr_wrapper<Tp>);
}
// Prefer to use `constexpr_value<type> auto` instead of `template <typename T> void
// f(constexpr_wrapper<T, type> ...` to constrain the type of the constant.
template <auto Xp, typename Tp>
struct constexpr_wrapper
{
using value_type = Tp;
using type = constexpr_wrapper;
static constexpr value_type value{ Xp };
constexpr
operator value_type() const
{ return Xp; }
// overloads the following:
//
// unary:
// + - ~ ! & * ++ -- ->
//
// binary:
// + - * / % & | ^ && || , << >> == != < <= > >= ->* = += -= *= /= %= &= |= ^= <<= >>=
//
// [] and () are overloaded for constexpr_value or not constexpr_value, the latter not
// wrapping the result in constexpr_wrapper
// The overload of -> is inconsistent because it cannot wrap its return value in a
// constexpr_wrapper. The compiler/standard requires a pointer type. However, -> can work if
// it unwraps. The utility is questionable though, which it why may be interesting to
// "dereferencing" the wrapper to its value if Tp doesn't implement operator->.
constexpr const auto*
operator->() const
{
if constexpr (requires{value.operator->();})
return value.operator->();
else
return std::addressof(value);
}
template <auto Yp = Xp>
constexpr constexpr_wrapper<+Yp>
operator+() const
{ return {}; }
template <auto Yp = Xp>
constexpr constexpr_wrapper<-Yp>
operator-() const
{ return {}; }
template <auto Yp = Xp>
constexpr constexpr_wrapper<~Yp>
operator~() const
{ return {}; }
template <auto Yp = Xp>
constexpr constexpr_wrapper<!Yp>
operator!() const
{ return {}; }
template <auto Yp = Xp>
constexpr constexpr_wrapper<&Yp>
operator&() const
{ return {}; }
template <auto Yp = Xp>
constexpr constexpr_wrapper<*Yp>
operator*() const
{ return {}; }
template <auto Yp = Xp>
constexpr constexpr_wrapper<++Yp>
operator++() const
{ return {}; }
template <auto Yp = Xp>
constexpr constexpr_wrapper<Yp++>
operator++(int) const
{ return {}; }
template <auto Yp = Xp>
constexpr constexpr_wrapper<--Yp>
operator--() const
{ return {}; }
template <auto Yp = Xp>
constexpr constexpr_wrapper<Yp-->
operator--(int) const
{ return {}; }
template <detail::_lhs_constexpr_wrapper<constexpr_wrapper> Ap, constexpr_value Bp>
friend constexpr constexpr_wrapper<Ap::value + Bp::value>
operator+(Ap, Bp)
{ return {}; }
template <detail::_lhs_constexpr_wrapper<constexpr_wrapper> Ap, constexpr_value Bp>
friend constexpr constexpr_wrapper<Ap::value - Bp::value>
operator-(Ap, Bp)
{ return {}; }
template <detail::_lhs_constexpr_wrapper<constexpr_wrapper> Ap, constexpr_value Bp>
friend constexpr constexpr_wrapper<Ap::value * Bp::value>
operator*(Ap, Bp)
{ return {}; }
template <detail::_lhs_constexpr_wrapper<constexpr_wrapper> Ap, constexpr_value Bp>
friend constexpr constexpr_wrapper<Ap::value / Bp::value>
operator/(Ap, Bp)
{ return {}; }
template <detail::_lhs_constexpr_wrapper<constexpr_wrapper> Ap, constexpr_value Bp>
friend constexpr constexpr_wrapper<Ap::value % Bp::value>
operator%(Ap, Bp)
{ return {}; }
template <detail::_lhs_constexpr_wrapper<constexpr_wrapper> Ap, constexpr_value Bp>
friend constexpr constexpr_wrapper<Ap::value & Bp::value>
operator&(Ap, Bp)
{ return {}; }
template <detail::_lhs_constexpr_wrapper<constexpr_wrapper> Ap, constexpr_value Bp>
friend constexpr constexpr_wrapper<Ap::value | Bp::value>
operator|(Ap, Bp)
{ return {}; }
template <detail::_lhs_constexpr_wrapper<constexpr_wrapper> Ap, constexpr_value Bp>
friend constexpr constexpr_wrapper<Ap::value ^ Bp::value>
operator^(Ap, Bp)
{ return {}; }
template <detail::_lhs_constexpr_wrapper<constexpr_wrapper> Ap, constexpr_value Bp>
friend constexpr constexpr_wrapper<Ap::value && Bp::value>
operator&&(Ap, Bp)
{ return {}; }
template <detail::_lhs_constexpr_wrapper<constexpr_wrapper> Ap, constexpr_value Bp>
friend constexpr constexpr_wrapper<Ap::value || Bp::value>
operator||(Ap, Bp)
{ return {}; }
template <detail::_lhs_constexpr_wrapper<constexpr_wrapper> Ap, constexpr_value Bp>
friend constexpr constexpr_wrapper<(Ap::value , Bp::value)>
operator,(Ap, Bp)
{ return {}; }
template <detail::_lhs_constexpr_wrapper<constexpr_wrapper> Ap, constexpr_value Bp>
friend constexpr constexpr_wrapper<(Ap::value << Bp::value)>
operator<<(Ap, Bp)
{ return {}; }
template <detail::_lhs_constexpr_wrapper<constexpr_wrapper> Ap, constexpr_value Bp>
friend constexpr constexpr_wrapper<(Ap::value >> Bp::value)>
operator>>(Ap, Bp)
{ return {}; }
template <detail::_lhs_constexpr_wrapper<constexpr_wrapper> Ap, constexpr_value Bp>
friend constexpr constexpr_wrapper<(Ap::value == Bp::value)>
operator==(Ap, Bp)
{ return {}; }
template <detail::_lhs_constexpr_wrapper<constexpr_wrapper> Ap, constexpr_value Bp>
friend constexpr constexpr_wrapper<(Ap::value != Bp::value)>
operator!=(Ap, Bp)
{ return {}; }
template <detail::_lhs_constexpr_wrapper<constexpr_wrapper> Ap, constexpr_value Bp>
friend constexpr constexpr_wrapper<(Ap::value < Bp::value)>
operator<(Ap, Bp)
{ return {}; }
template <detail::_lhs_constexpr_wrapper<constexpr_wrapper> Ap, constexpr_value Bp>
friend constexpr constexpr_wrapper<(Ap::value <= Bp::value)>
operator<=(Ap, Bp)
{ return {}; }
template <detail::_lhs_constexpr_wrapper<constexpr_wrapper> Ap, constexpr_value Bp>
friend constexpr constexpr_wrapper<(Ap::value > Bp::value)>
operator>(Ap, Bp)
{ return {}; }
template <detail::_lhs_constexpr_wrapper<constexpr_wrapper> Ap, constexpr_value Bp>
friend constexpr constexpr_wrapper<(Ap::value >= Bp::value)>
operator>=(Ap, Bp)
{ return {}; }
template <detail::_lhs_constexpr_wrapper<constexpr_wrapper> Ap, constexpr_value Bp>
friend constexpr constexpr_wrapper<(Ap::value <=> Bp::value)>
operator<=>(Ap, Bp)
{ return {}; }
template <detail::_lhs_constexpr_wrapper<constexpr_wrapper> Ap, constexpr_value Bp>
friend constexpr constexpr_wrapper<(Ap::value ->* Bp::value)>
operator->*(Ap, Bp)
{ return {}; }
template <constexpr_value Ap>
requires requires { typename constexpr_wrapper<(Xp = Ap::value)>; }
constexpr auto
operator=(Ap) const
{ return constexpr_wrapper<(Xp = Ap::value)>{}; }
template <detail::_lhs_constexpr_wrapper<constexpr_wrapper> Ap, constexpr_value Bp>
friend constexpr constexpr_wrapper<(Ap::value += Bp::value)>
operator+=(Ap, Bp)
{ return {}; }
template <detail::_lhs_constexpr_wrapper<constexpr_wrapper> Ap, constexpr_value Bp>
friend constexpr constexpr_wrapper<(Ap::value -= Bp::value)>
operator-=(Ap, Bp)
{ return {}; }
template <detail::_lhs_constexpr_wrapper<constexpr_wrapper> Ap, constexpr_value Bp>
friend constexpr constexpr_wrapper<(Ap::value *= Bp::value)>
operator*=(Ap, Bp)
{ return {}; }
template <detail::_lhs_constexpr_wrapper<constexpr_wrapper> Ap, constexpr_value Bp>
friend constexpr constexpr_wrapper<(Ap::value /= Bp::value)>
operator/=(Ap, Bp)
{ return {}; }
template <detail::_lhs_constexpr_wrapper<constexpr_wrapper> Ap, constexpr_value Bp>
friend constexpr constexpr_wrapper<(Ap::value %= Bp::value)>
operator%=(Ap, Bp)
{ return {}; }
template <detail::_lhs_constexpr_wrapper<constexpr_wrapper> Ap, constexpr_value Bp>
friend constexpr constexpr_wrapper<(Ap::value &= Bp::value)>
operator&=(Ap, Bp)
{ return {}; }
template <detail::_lhs_constexpr_wrapper<constexpr_wrapper> Ap, constexpr_value Bp>
friend constexpr constexpr_wrapper<(Ap::value |= Bp::value)>
operator|=(Ap, Bp)
{ return {}; }
template <detail::_lhs_constexpr_wrapper<constexpr_wrapper> Ap, constexpr_value Bp>
friend constexpr constexpr_wrapper<(Ap::value ^= Bp::value)>
operator^=(Ap, Bp)
{ return {}; }
template <detail::_lhs_constexpr_wrapper<constexpr_wrapper> Ap, constexpr_value Bp>
friend constexpr constexpr_wrapper<(Ap::value <<= Bp::value)>
operator<<=(Ap, Bp)
{ return {}; }
template <detail::_lhs_constexpr_wrapper<constexpr_wrapper> Ap, constexpr_value Bp>
friend constexpr constexpr_wrapper<(Ap::value >>= Bp::value)>
operator>>=(Ap, Bp)
{ return {}; }
#if defined __cpp_static_call_operator && __cplusplus >= 202302L
#define _static static
#define _const
#else
#define _static
#define _const const
#endif
// overload operator() for constexpr_value and non-constexpr_value
template <constexpr_value... Args>
requires requires { typename constexpr_wrapper<value(Args::value...)>; }
_static constexpr auto
operator()(Args...) _const
{ return constexpr_wrapper<value(Args::value...)>{}; }
template <typename... Args>
requires (not constexpr_value<std::remove_cvref_t<Args>> || ...)
_static constexpr decltype(value(std::declval<Args>()...))
operator()(Args&&... _args) _const
{ return value(std::forward<Args>(_args)...); }
_static constexpr Tp
operator()() _const
requires (not requires { value(); })
{ return value; }
// overload operator[] for constexpr_value and non-constexpr_value
#if __cpp_multidimensional_subscript
template <constexpr_value... Args>
requires std::is_compound_v<value_type>
_static constexpr constexpr_wrapper<value[Args::value...]>
operator[](Args...) _const
{ return {}; }
template <typename... Args>
requires (not constexpr_value<std::remove_cvref_t<Args>> || ...)
&& std::is_compound_v<value_type>
_static constexpr decltype(value[std::declval<Args>()...])
operator[](Args&&... _args) _const
{ return value[std::forward<Args>(_args)...]; }
#else
template <constexpr_value Arg>
requires std::is_compound_v<value_type>
_static constexpr constexpr_wrapper<value[Arg::value]>
operator[](Arg) _const
{ return {}; }
template <typename Arg>
requires (not constexpr_value<std::remove_cvref_t<Arg>>)
&& std::is_compound_v<value_type>
_static constexpr decltype(value[std::declval<Arg>()])
operator[](Arg&& _arg) _const
{ return value[std::forward<Arg>(_arg)]; }
#endif
#undef _static
#undef _const
};
// constexpr_wrapper constant (cw)
template <auto Xp>
inline constexpr constexpr_wrapper<Xp> cw{};
namespace detail
{
template <char... Chars>
consteval auto
cw_prepare_array()
{
constexpr auto not_digit_sep = [](char c) { return c != '\''; };
constexpr char arr0[sizeof...(Chars)] = {Chars...};
constexpr auto size
= std::count_if(std::begin(arr0), std::end(arr0), not_digit_sep);
std::array<char, size> tmp = {};
std::copy_if(std::begin(arr0), std::end(arr0), tmp.begin(), not_digit_sep);
return tmp;
}
template <char... Chars>
consteval auto
cw_parse()
{
constexpr std::array arr = cw_prepare_array<Chars...>();
constexpr int base = arr[0] == '0' and 2 < arr.size()
? arr[1] == 'x' or arr[1] == 'X' ? 16
: arr[1] == 'b' ? 2 : 8
: 10;
constexpr int offset = base == 10 ? 0 : base == 8 ? 1 : 2;
constexpr bool valid_chars = std::all_of(arr.begin() + offset, arr.end(), [=](char c) {
if constexpr (base == 16)
return (c >= 'a' and c <= 'f') or (c >= 'A' and c <= 'F')
or (c >= '0' and c <= '9');
else
return c >= '0' and c < char('0' + base);
});
static_assert(valid_chars, "invalid characters in constexpr_wrapper literal");
// common values, freeing values for error conditions
if constexpr (arr.size() == 1 and arr[0] =='0')
return static_cast<signed char>(0);
else if constexpr (arr.size() == 1 and arr[0] =='1')
return static_cast<signed char>(1);
else if constexpr (arr.size() == 1 and arr[0] =='2')
return static_cast<signed char>(2);
else
{
constexpr unsigned long long x = [&]() {
unsigned long long x = {};
constexpr auto max = std::numeric_limits<unsigned long long>::max();
auto it = arr.begin() + offset;
for (; it != arr.end(); ++it)
{
unsigned nextdigit = *it - '0';
if constexpr (base == 16)
{
if (*it >= 'a')
nextdigit = *it - 'a' + 10;
else if (*it >= 'A')
nextdigit = *it - 'A' + 10;
}
if (x > max / base)
return 0ull;
x *= base;
if (x > max - nextdigit)
return 0ull;
x += nextdigit;
}
return x;
}();
static_assert(x != 0, "constexpr_wrapper literal value out of range");
if constexpr (x <= std::numeric_limits<signed char>::max())
return static_cast<signed char>(x);
else if constexpr (x <= std::numeric_limits<signed short>::max())
return static_cast<signed short>(x);
else if constexpr (x <= std::numeric_limits<signed int>::max())
return static_cast<signed int>(x);
else if constexpr (x <= std::numeric_limits<signed long>::max())
return static_cast<signed long>(x);
else if constexpr (x <= std::numeric_limits<signed long long>::max())
return static_cast<signed long long>(x);
else
return x;
}
}
}
namespace literals
{
template <char... Chars>
constexpr auto operator"" _cw()
{ return vir::cw<vir::detail::cw_parse<Chars...>()>; }
}
} // namespace vir
#endif // has concepts
#endif // VIR_CONSTEXPR_WRAPPER_H_
// vim: et tw=100 ts=8 sw=2 cc=101