-
Notifications
You must be signed in to change notification settings - Fork 3
/
test.h
86 lines (66 loc) · 1.53 KB
/
test.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
namespace imajuscule {
////////////////////////////////////////////////
struct BigAlignment {
BigAlignment() = default;
BigAlignment(double d) {
v = d;
}
alignas (64) double v;
};
struct SmallAlignment {
double v;
};
static_assert(alignof(SmallAlignment)<alignof(BigAlignment));
static_assert(alignof(SmallAlignment)>=alignof(void*));
//////////////////////////////////////////////////
// A type whose reads / writes are not atomic
struct RepeatInt {
RepeatInt() {
for(size_t i=0; i<is.size(); ++i) {
is[i] = i;
}
}
RepeatInt(int i) {
set(i);
}
int get() const {
return is[0];
}
void set(int i) {
is.fill(i);
}
bool isValid() const {
for(auto v : is) {
if(v!= is[0]) {
return false;
}
}
return true;
}
bool operator < (RepeatInt const & other) const {
return is[0] < other.is[0];
}
private:
std::array<int,1000> is;
};
/////////////////////////////////////////
struct Destructible {
Destructible() {
countLiveObjects()++;
}
Destructible ( const Destructible & ) {
countLiveObjects()++;
}
~Destructible() {
countLiveObjects()--;
}
static int & countLiveObjects() {
static int n = 0;
return n;
}
};
static inline int nLiveObjects() {
return Destructible::countLiveObjects();
}
////////////////////////////////////////////
}