-
-
Notifications
You must be signed in to change notification settings - Fork 178
/
Types.h
495 lines (397 loc) · 9.27 KB
/
Types.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
#pragma once
#include "Platform.h"
#include "Bitvec.h"
#include <memory.h>
#include <vector>
#include <map>
#include <set>
#include <string>
#include <iostream>
#include <cstdint>
using namespace std;
#include <assert.h>
#define MACRO_ITOA_(x) #x
#define MACRO_ITOA(x) MACRO_ITOA_(x)
#define COUNT_OF(x) ((sizeof(x)/sizeof(0[x])) / ((size_t)(!(sizeof(x) % sizeof(0[x])))))
#define ARRAY_END(x) (&(x)[COUNT_OF(x)])
//-----------------------------------------------------------------------------
// If the optimizer detects that a value in a speed test is constant or unused,
// the optimizer may remove references to it or otherwise create code that
// would not occur in a real-world application. To prevent the optimizer from
// doing this we declare two trivial functions that either sink or source data,
// and bar the compiler from optimizing them.
void blackhole ( uint32_t x );
uint32_t whitehole ( void );
static inline uint8_t bitrev(uint8_t b)
{
static const unsigned char revbits[16] =
{
0x0, 0x8, 0x4, 0xc, 0x2, 0xa, 0x6, 0xe,
0x1, 0x9, 0x5, 0xd, 0x3, 0xb, 0x7, 0xf
};
return (revbits[ b & 0b1111 ] << 4) | revbits[ b >> 4 ];
}
//-----------------------------------------------------------------------------
// We want to verify that every test produces the same result on every platform
// To do this, we hash the results of every test to produce an overall
// verification value for the whole test suite. If two runs produce the same
// verification value, then every test in both run produced the same results
extern uint32_t g_verify;
// Mix the given blob of data into the verification code
void MixVCode ( const void * blob, int len );
//-----------------------------------------------------------------------------
typedef void (*pfHash)(const void *blob, const int len, const uint32_t seed,
void *out);
enum HashQuality { SKIP, POOR, GOOD };
struct HashInfo
{
pfHash hash;
int hashbits;
uint32_t verification;
const char * name;
const char * desc;
enum HashQuality quality;
const std::vector<uint64_t> secrets;
};
struct ByteVec : public std::vector<uint8_t>
{
ByteVec ( const void * key, int len )
{
resize(len);
memcpy(&front(),key,len);
}
};
template< typename hashtype, typename keytype >
struct CollisionMap : public std::map< hashtype, std::vector<keytype> >
{
};
template< typename hashtype >
struct HashSet : public std::set<hashtype>
{
};
//-----------------------------------------------------------------------------
template < class T >
class hashfunc
{
public:
hashfunc ( pfHash h ) : m_hash(h)
{
}
inline void operator () ( const void * key, const int len, const uint32_t seed, uint32_t * out )
{
m_hash(key,len,seed,out);
}
inline operator pfHash ( void ) const
{
return m_hash;
}
inline T operator () ( const void * key, const int len, const uint32_t seed )
{
T result;
m_hash(key,len,seed,(unsigned*)&result);
return result;
}
inline T operator () ( const void * key, const int len, const uint64_t seed )
{
T result;
m_hash(key,len,seed,(unsigned*)&result);
return result;
}
pfHash m_hash;
};
// hash_combine. The magic number 0x9e3779b9 is derived from the inverse golden ratio.
// phi = (1+sqrt(5))/2; 2^32 / phi => 2654435769.497230
template <typename T>
inline void hash_combine (std::uint16_t& seed, const T& val)
{
seed ^= std::hash<T>{}(val) + 0x9e37U + (seed<<3) + (seed>>1);
}
template <typename T>
inline void hash_combine (std::uint32_t& seed, const T& val)
{
seed ^= std::hash<T>{}(val) + 0x9e3779b9U + (seed<<6) + (seed>>2);
}
template <typename T>
inline void hash_combine (std::uint64_t& seed, const T& val)
{
seed ^= std::hash<T>{}(val) + 0x9e3779b97f4a7c15LLU + (seed<<12) + (seed>>4);
}
//-----------------------------------------------------------------------------
// Key-processing callback objects. Simplifies keyset testing a bit.
struct KeyCallback
{
KeyCallback() : m_count(0)
{
}
virtual ~KeyCallback()
{
}
virtual void operator() ( const void * key, int len )
{
m_count++;
}
virtual void reserve ( int keycount )
{
};
int m_count;
};
//----------
static void printKey(const void* key, size_t len);
template<typename hashtype>
struct HashCallback : public KeyCallback
{
typedef std::vector<hashtype> hashvec;
HashCallback ( pfHash hash, hashvec & hashes ) : m_hashes(hashes), m_pfHash(hash)
{
m_hashes.clear();
}
virtual void operator () ( const void * key, int len )
{
size_t newsize = m_hashes.size() + 1;
m_hashes.resize(newsize);
hashtype h;
m_pfHash(key, len, 0, &h);
m_hashes.back() = h;
}
virtual void reserve ( int keycount )
{
m_hashes.reserve(keycount);
}
hashvec & m_hashes;
pfHash m_pfHash;
//----------
private:
HashCallback & operator = ( const HashCallback & );
};
//----------
template<typename hashtype>
struct CollisionCallback : public KeyCallback
{
typedef HashSet<hashtype> hashset;
typedef CollisionMap<hashtype,ByteVec> collmap;
CollisionCallback ( pfHash hash, hashset & collisions, collmap & cmap )
: m_pfHash(hash),
m_collisions(collisions),
m_collmap(cmap)
{
}
virtual void operator () ( const void * key, int len )
{
hashtype h;
m_pfHash(key,len,0,&h);
if(m_collisions.count(h))
{
m_collmap[h].push_back( ByteVec(key,len) );
}
}
//----------
pfHash m_pfHash;
hashset & m_collisions;
collmap & m_collmap;
private:
CollisionCallback & operator = ( const CollisionCallback & c );
};
//-----------------------------------------------------------------------------
template <int _bits>
class Blob
{
public:
Blob ()
{
for (size_t i = 0; i < sizeof (bytes); i++)
{
bytes[i] = 0;
}
}
Blob (int x)
{
for (size_t i = 0; i < sizeof (bytes); i++)
{
bytes[i] = 0;
}
*(int *)bytes = x;
}
Blob (unsigned long long x) { *(unsigned long long *)bytes = x; }
Blob (unsigned long x) { *(unsigned long *)bytes = x; }
Blob (const Blob &k)
{
for (size_t i = 0; i < sizeof (bytes); i++)
{
bytes[i] = k.bytes[i];
}
}
Blob &
operator= (const Blob &k)
{
for (size_t i = 0; i < sizeof (bytes); i++)
{
bytes[i] = k.bytes[i];
}
return *this;
}
Blob (uint64_t a, uint64_t b)
{
uint64_t t[2] = { a, b };
set (&t, 16);
}
void
set (const void *blob, size_t len)
{
const uint8_t *k = (const uint8_t *)blob;
len = len > sizeof (bytes) ? sizeof (bytes) : len;
for (size_t i = 0; i < len; i++)
{
bytes[i] = k[i];
}
for (size_t i = len; i < sizeof (bytes); i++)
{
bytes[i] = 0;
}
}
uint8_t &
operator[] (int i)
{
return bytes[i];
}
const uint8_t &
operator[] (int i) const
{
return bytes[i];
}
//----------
// boolean operations
bool
operator<(const Blob &k) const
{
for (int i = sizeof (bytes) - 1; i >= 0; i--)
{
if (bytes[i] < k.bytes[i])
return true;
if (bytes[i] > k.bytes[i])
return false;
}
return false;
}
bool
operator== (const Blob &k) const
{
for (size_t i = 0; i < sizeof (bytes); i++)
{
if (bytes[i] != k.bytes[i])
return false;
}
return true;
}
bool
operator!= (const Blob &k) const
{
return !(*this == k);
}
//----------
// bitwise operations
Blob
operator^ (const Blob &k) const
{
Blob t;
for (size_t i = 0; i < sizeof (bytes); i++)
{
t.bytes[i] = bytes[i] ^ k.bytes[i];
}
return t;
}
Blob &
operator^= (const Blob &k)
{
for (size_t i = 0; i < sizeof (bytes); i++)
{
bytes[i] ^= k.bytes[i];
}
return *this;
}
int
operator& (int x)
{
return (*(int *)bytes) & x;
}
int
operator| (int x)
{
return (*(int *)bytes) | x;
}
Blob &
operator|= (const Blob &k)
{
for (size_t i = 0; i < sizeof (bytes); i++)
{
bytes[i] |= k.bytes[i];
}
return *this;
}
Blob &
operator|= (uint8_t k)
{
bytes[0] |= k;
return *this;
}
Blob &
operator&= (const Blob &k)
{
for (size_t i = 0; i < sizeof (bytes); i++)
{
bytes[i] &= k.bytes[i];
}
return *this;
}
Blob
operator<< (int c)
{
Blob t = *this;
lshift (&t.bytes[0], sizeof (bytes), c);
return t;
}
Blob
operator>> (int c)
{
Blob t = *this;
rshift (&t.bytes[0], sizeof (bytes), c);
return t;
}
Blob &
operator<<= (int c)
{
lshift (&bytes[0], sizeof (bytes), c);
return *this;
}
Blob &
operator>>= (int c)
{
rshift (&bytes[0], sizeof (bytes), c);
return *this;
}
Blob &
bitreverse (void)
{
assert (_bits % 8 == 0);
const int j = _bits / 8;
for (int i = 0; i < j; i++)
{
bytes[j - i] = bitrev (bytes[i]);
}
return *this;
}
friend ostream&
operator<< (ostream& out, const Blob<_bits>& t)
{
out << "0x" << hex;
for (size_t i = 0; i < _bits/8; i++)
out << t.bytes[i];
out << dec;
return out;
}
//----------
private:
uint8_t bytes[(_bits + 7) / 8];
};
typedef Blob<128> uint128_t;
typedef Blob<256> uint256_t;
//-----------------------------------------------------------------------------