-
Notifications
You must be signed in to change notification settings - Fork 26
/
util.h
584 lines (493 loc) · 13.7 KB
/
util.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
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
#pragma once
#include <iostream>
#include <sstream>
#include <string>
#include <limits>
#include <queue>
#include <utility>
#include <memory>
#include <atomic>
#include <tuple>
#include <algorithm>
#include <stdint.h>
#include <pthread.h>
#include <sys/time.h>
#include <time.h>
#include <cxxabi.h>
#include "macros.h"
namespace util {
// padded, aligned primitives
template <typename T, bool Pedantic = true>
class aligned_padded_elem {
public:
template <class... Args>
aligned_padded_elem(Args &&... args)
: elem(std::forward<Args>(args)...) {
if (Pedantic) ALWAYS_ASSERT(((uintptr_t) this % CACHELINE_SIZE) == 0);
}
T elem;
CACHE_PADOUT;
// syntactic sugar- can treat like a pointer
inline T &operator*() { return elem; }
inline const T &operator*() const { return elem; }
inline T *operator->() { return &elem; }
inline const T *operator->() const { return &elem; }
private:
inline void __cl_asserter() const {
static_assert((sizeof(*this) % CACHELINE_SIZE) == 0, "xx");
}
} CACHE_ALIGNED;
// some pre-defs
typedef aligned_padded_elem<uint8_t> aligned_padded_u8;
typedef aligned_padded_elem<uint16_t> aligned_padded_u16;
typedef aligned_padded_elem<uint32_t> aligned_padded_u32;
typedef aligned_padded_elem<uint64_t> aligned_padded_u64;
template <typename T>
struct host_endian_trfm {
ALWAYS_INLINE T operator()(const T &t) const { return t; }
};
template <>
struct host_endian_trfm<uint16_t> {
ALWAYS_INLINE uint16_t operator()(uint16_t t) const {
return be16toh(t);
}
};
template <>
struct host_endian_trfm<int16_t> {
ALWAYS_INLINE int16_t operator()(int16_t t) const {
return be16toh(t);
}
};
template <>
struct host_endian_trfm<int32_t> {
ALWAYS_INLINE int32_t operator()(int32_t t) const {
return be32toh(t);
}
};
template <>
struct host_endian_trfm<uint32_t> {
ALWAYS_INLINE uint32_t operator()(uint32_t t) const {
return be32toh(t);
}
};
template <>
struct host_endian_trfm<int64_t> {
ALWAYS_INLINE int64_t operator()(int64_t t) const {
return be64toh(t);
}
};
template <>
struct host_endian_trfm<uint64_t> {
ALWAYS_INLINE uint64_t operator()(uint64_t t) const {
return be64toh(t);
}
};
template <typename T>
struct big_endian_trfm {
ALWAYS_INLINE T operator()(const T &t) const { return t; }
};
template <>
struct big_endian_trfm<uint16_t> {
ALWAYS_INLINE uint16_t operator()(uint16_t t) const {
return htobe16(t);
}
};
template <>
struct big_endian_trfm<int16_t> {
ALWAYS_INLINE int16_t operator()(int16_t t) const {
return htobe16(t);
}
};
template <>
struct big_endian_trfm<int32_t> {
ALWAYS_INLINE int32_t operator()(int32_t t) const {
return htobe32(t);
}
};
template <>
struct big_endian_trfm<uint32_t> {
ALWAYS_INLINE uint32_t operator()(uint32_t t) const {
return htobe32(t);
}
};
template <>
struct big_endian_trfm<int64_t> {
ALWAYS_INLINE int64_t operator()(int64_t t) const {
return htobe64(t);
}
};
template <>
struct big_endian_trfm<uint64_t> {
ALWAYS_INLINE uint64_t operator()(uint64_t t) const {
return htobe64(t);
}
};
inline std::string hexify_buf(const char *buf, size_t len) {
const char *const lut = "0123456789ABCDEF";
std::string output;
output.reserve(2 * len);
for (size_t i = 0; i < len; ++i) {
const unsigned char c = (unsigned char)buf[i];
output.push_back(lut[c >> 4]);
output.push_back(lut[c & 15]);
}
return output;
}
template <typename T>
inline std::string hexify(const T &t) {
std::ostringstream buf;
buf << std::hex << t;
return buf.str();
}
template <>
inline std::string hexify(const std::string &input) {
return hexify_buf(input.data(), input.size());
}
template <typename T, unsigned int lgbase>
struct mask_ {
static const T value = ((T(1) << lgbase) - 1);
};
// rounding
template <typename T, unsigned int lgbase>
static constexpr ALWAYS_INLINE T round_up(T t) {
return (t + mask_<T, lgbase>::value) & ~mask_<T, lgbase>::value;
}
template <typename T, unsigned int lgbase>
static constexpr ALWAYS_INLINE T round_down(T t) {
return (t & ~mask_<T, lgbase>::value);
}
template <typename T, typename U>
static ALWAYS_INLINE T iceil(T x, U y) {
U mod = x % y;
return x + (mod ? y - mod : 0);
}
template <typename T>
static inline T slow_round_up(T x, T q) {
const T r = x % q;
if (!r) return x;
return x + (q - r);
}
template <typename T>
static inline T slow_round_down(T x, T q) {
const T r = x % q;
if (!r) return x;
return x - r;
}
// not thread-safe
//
// taken from java:
// http://developer.classpath.org/doc/java/util/Random-source.html
class fast_random {
public:
fast_random(unsigned long seed) : seed(0) { set_seed0(seed); }
inline unsigned long next() {
return ((unsigned long)next(32) << 32) + next(32);
}
inline uint32_t next_u32() { return next(32); }
inline uint16_t next_u16() { return next(16); }
/** [0.0, 1.0) */
inline double next_uniform() {
return (((unsigned long)next(26) << 27) + next(27)) / (double)(1L << 53);
}
inline char next_char() { return next(8) % 256; }
inline char next_readable_char() {
static const char readables[] =
"0123456789@ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz";
return readables[next(6)];
}
inline std::string next_string(size_t len) {
std::string s(len, 0);
for (size_t i = 0; i < len; i++) s[i] = next_char();
return s;
}
inline std::string next_readable_string(size_t len) {
std::string s(len, 0);
for (size_t i = 0; i < len; i++) s[i] = next_readable_char();
return s;
}
inline unsigned long get_seed() { return seed; }
inline void set_seed(unsigned long seed) { this->seed = seed; }
private:
inline void set_seed0(unsigned long seed) {
this->seed = (seed ^ 0x5DEECE66DL) & ((1L << 48) - 1);
}
inline unsigned long next(unsigned int bits) {
seed = (seed * 0x5DEECE66DL + 0xBL) & ((1L << 48) - 1);
return (unsigned long)(seed >> (48 - bits));
}
unsigned long seed;
};
template <typename ForwardIterator>
std::string format_list(ForwardIterator begin, ForwardIterator end) {
std::ostringstream ss;
ss << "[";
bool first = true;
while (begin != end) {
if (!first) ss << ", ";
first = false;
ss << *begin++;
}
ss << "]";
return ss.str();
}
/**
* Returns the lowest position p such that p0+p != p1+p.
*/
inline size_t first_pos_diff(const char *p0, size_t sz0, const char *p1,
size_t sz1) {
const char *p0end = p0 + sz0;
const char *p1end = p1 + sz1;
size_t n = 0;
while (p0 != p0end && p1 != p1end && p0[n] == p1[n]) n++;
return n;
}
class timer {
private:
timer(const timer &) = delete;
timer &operator=(const timer &) = delete;
timer(timer &&) = delete;
public:
timer() { lap(); }
inline uint64_t lap() {
uint64_t t0 = start;
uint64_t t1 = cur_usec();
start = t1;
return t1 - t0;
}
inline double lap_ms() { return lap() / 1000.0; }
static inline uint64_t cur_usec() {
struct timeval tv;
gettimeofday(&tv, 0);
return ((uint64_t)tv.tv_sec) * 1000000 + tv.tv_usec;
}
inline uint64_t get_start() { return start; }
private:
uint64_t start;
};
class scoped_timer {
private:
timer t;
std::string region;
bool enabled;
public:
scoped_timer(const std::string ®ion, bool enabled = true)
: region(region), enabled(enabled) {}
~scoped_timer() {
if (enabled) {
const double x = t.lap() / 1000.0; // ms
std::cerr << "timed region " << region << " took " << x << " ms"
<< std::endl;
}
}
};
inline std::string next_key(const std::string &s) {
std::string s0(s);
s0.resize(s.size() + 1);
return s0;
}
template <typename T, typename Container = std::vector<T>>
struct std_reverse_pq {
typedef std::priority_queue<T, Container, std::greater<T>> type;
};
template <typename PairType, typename FirstComp>
struct std_pair_first_cmp {
inline bool operator()(const PairType &lhs, const PairType &rhs) const {
FirstComp c;
return c(lhs.first, rhs.first);
}
};
static inline std::vector<std::string> split(const std::string &s, char delim) {
std::vector<std::string> elems;
std::stringstream ss(s);
std::string item;
while (std::getline(ss, item, delim)) elems.emplace_back(item);
return elems;
}
struct default_string_allocator {
inline std::string *operator()() {
strs.emplace_back(new std::string);
return strs.back().get();
}
private:
std::vector<std::shared_ptr<std::string>> strs;
};
static constexpr uint64_t compute_fields_mask() { return 0; }
template <typename First, typename... Rest>
static constexpr uint64_t compute_fields_mask(First f, Rest... rest) {
return (1UL << f) | compute_fields_mask(rest...);
}
template <uint64_t Mask>
struct Fields {
static const uint64_t value = Mask;
};
#define FIELDS(args...) ::util::Fields<::util::compute_fields_mask(args)>()
#ifdef DISABLE_FIELD_SELECTION
#define GUARDED_FIELDS(args...) \
::util::Fields<::std::numeric_limits<uint64_t>::max()>()
#else
#define GUARDED_FIELDS(args...) FIELDS(args)
#endif
template <typename T>
struct cxx_typename {
static std::string value() {
int st;
char *name = abi::__cxa_demangle(typeid(T).name(), nullptr, nullptr, &st);
if (unlikely(st))
return std::string(typeid(T).name()) + "<demangle failed>";
std::string ret(name);
free(name);
return ret;
}
};
// returns a vector of [start, ..., end)
template <typename T>
static std::vector<T> MakeRange(T start, T end) {
std::vector<T> ret;
for (T i = start; i < end; i++) ret.push_back(i);
return ret;
}
struct timespec_utils {
// thanks austin
static void subtract(const struct timespec *x, const struct timespec *y,
struct timespec *out) {
// Perform the carry for the later subtraction by updating y.
struct timespec y2 = *y;
if (x->tv_nsec < y2.tv_nsec) {
int sec = (y2.tv_nsec - x->tv_nsec) / 1e9 + 1;
y2.tv_nsec -= 1e9 * sec;
y2.tv_sec += sec;
}
if (x->tv_nsec - y2.tv_nsec > 1e9) {
int sec = (x->tv_nsec - y2.tv_nsec) / 1e9;
y2.tv_nsec += 1e9 * sec;
y2.tv_sec -= sec;
}
// Compute the time remaining to wait. tv_nsec is certainly
// positive.
out->tv_sec = x->tv_sec - y2.tv_sec;
out->tv_nsec = x->tv_nsec - y2.tv_nsec;
}
};
template <typename T>
struct RangeAwareParser {
inline std::vector<T> operator()(const std::string &s) const {
std::vector<T> ret;
if (s.find('-') == std::string::npos) {
T t;
std::istringstream iss(s);
iss >> t;
ret.emplace_back(t);
} else {
std::vector<std::string> toks(split(s, '-'));
ALWAYS_ASSERT(toks.size() == 2);
T t0, t1;
std::istringstream iss0(toks[0]), iss1(toks[1]);
iss0 >> t0;
iss1 >> t1;
for (T t = t0; t <= t1; t++) ret.emplace_back(t);
}
return ret;
}
};
template <typename T, typename Parser>
static std::vector<T> ParseCSVString(const std::string &s,
Parser p = Parser()) {
std::vector<T> ret;
std::vector<std::string> toks(split(s, ','));
for (auto &s : toks) {
auto values = p(s);
ret.insert(ret.end(), values.begin(), values.end());
}
return ret;
}
template <typename T>
static inline T non_atomic_fetch_add(std::atomic<T> &data, T arg) {
const T ret = data.load(std::memory_order_acquire);
data.store(ret + arg, std::memory_order_release);
return ret;
}
template <typename T>
static inline T non_atomic_fetch_sub(std::atomic<T> &data, T arg) {
const T ret = data.load(std::memory_order_acquire);
data.store(ret - arg, std::memory_order_release);
return ret;
}
static inline std::string to_lower(const std::string &s) {
std::string ret(s);
std::transform(ret.begin(), ret.end(), ret.begin(), ::tolower);
return ret;
}
} // namespace util
// pretty printer for std::pair<A, B>
template <typename A, typename B>
inline std::ostream &operator<<(std::ostream &o, const std::pair<A, B> &p) {
o << "[" << p.first << ", " << p.second << "]";
return o;
}
// pretty printer for std::vector<T, Alloc>
template <typename T, typename Alloc>
static std::ostream &operator<<(std::ostream &o,
const std::vector<T, Alloc> &v) {
bool first = true;
o << "[";
for (auto &p : v) {
if (!first) o << ", ";
first = false;
o << p;
}
o << "]";
return o;
}
// pretty printer for std::tuple<...>
namespace private_ {
template <size_t Idx, bool Enable, class... Types>
struct helper {
static inline void apply(std::ostream &o, const std::tuple<Types...> &t) {
if (Idx) o << ", ";
o << std::get<Idx, Types...>(t);
helper<Idx + 1, (Idx + 1) < std::tuple_size<std::tuple<Types...>>::value,
Types...>::apply(o, t);
}
};
template <size_t Idx, class... Types>
struct helper<Idx, false, Types...> {
static inline void apply(std::ostream &o, const std::tuple<Types...> &t) {
MARK_REFERENCED(o);
MARK_REFERENCED(t);
}
};
}
template <class... Types>
static inline std::ostream &operator<<(std::ostream &o,
const std::tuple<Types...> &t) {
o << "[";
private_::helper<0, 0 < std::tuple_size<std::tuple<Types...>>::value,
Types...>::apply(o, t);
o << "]";
return o;
}
/**
* Barrier implemented by spinning
*/
class spin_barrier {
public:
spin_barrier(size_t n) : n(n) {}
spin_barrier(const spin_barrier &) = delete;
spin_barrier(spin_barrier &&) = delete;
spin_barrier &operator=(const spin_barrier &) = delete;
~spin_barrier() { ALWAYS_ASSERT(n == 0); }
void count_down() {
// written like this (instead of using __sync_fetch_and_add())
// so we can have assertions
for (;;) {
size_t copy = n;
ALWAYS_ASSERT(copy > 0);
if (__sync_bool_compare_and_swap(&n, copy, copy - 1)) return;
}
}
void wait_for() {
while (n > 0) NOP_PAUSE;
}
private:
volatile size_t n;
};