-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvisitor.cpp
More file actions
240 lines (185 loc) · 4.62 KB
/
visitor.cpp
File metadata and controls
240 lines (185 loc) · 4.62 KB
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
#include <stdio.h>
#include <benchmark/benchmark.h>
namespace vtable {
class Visitor;
class Expr {
public:
virtual ~Expr() {}
virtual void accept(Visitor *v) = 0;
};
class ConstExpr;
class PlusExpr;
class Visitor {
public:
virtual void handleConstExpr(ConstExpr *e) {}
virtual void handlePlusExpr(PlusExpr *e) {}
};
class ConstExpr : public Expr {
int v;
public:
ConstExpr(int v) : v(v) {}
void accept(Visitor *v) override {
v->handleConstExpr(this);
}
int value() const { return v; }
};
// Can generalize to a binary expr.
class PlusExpr : public Expr {
Expr *lhs;
Expr *rhs;
public:
PlusExpr(Expr *lhs, Expr *rhs) : lhs(lhs), rhs(rhs) {}
Expr *getLHS() const { return lhs; }
Expr *getRHS() const { return rhs; }
void accept(Visitor *v) override {
v->handlePlusExpr(this);
}
};
class PrintVisitor : public Visitor {
public:
void handleConstExpr(ConstExpr *e) override {
printf("%d", e->value());
}
void handlePlusExpr(PlusExpr *e) override {
e->getLHS()->accept(this);
printf(" + ");
e->getRHS()->accept(this);
}
};
class CalcVisitor : public Visitor {
// The value obtained after visiting an expr.
int result = 0;
public:
void handleConstExpr(ConstExpr *e) override {
result = e->value();
}
void handlePlusExpr(PlusExpr *e) override {
e->getLHS()->accept(this);
int lhs = result;
e->getRHS()->accept(this);
result += lhs;
}
int getResult() const { return result; }
};
} // namespace vtable
void __attribute__((noinline)) useVtable(vtable::Expr *vtable_obj) {
// vtable::PrintVisitor p;
// obj->accept(&p);
// printf("\n");
vtable::CalcVisitor c;
vtable_obj->accept(&c);
// printf("Calc result is %d\n", c.getResult());
}
namespace crtp {
template<typename Derived> class Visitor;
enum class Kind {
CONST,
PLUS,
};
class Expr {
Kind kind;
public:
Expr(Kind kind) : kind(kind) {}
Kind getKind() const { return kind; }
};
class ConstExpr;
class PlusExpr;
template<typename Derived>
class Visitor {
public:
void visit(Expr *e) {
switch (e->getKind()) {
case Kind::CONST:
return static_cast<Derived *>(this)->handleConstExpr(
reinterpret_cast<ConstExpr *>(e));
case Kind::PLUS:
return static_cast<Derived *>(this)->handlePlusExpr(
reinterpret_cast<PlusExpr *>(e));
}
}
void handleConstExpr(ConstExpr *e) {}
void handlePlusExpr(PlusExpr *e) {}
};
class ConstExpr : public Expr {
int v;
public:
ConstExpr(int v) : Expr(Kind::CONST), v(v) {}
int value() const { return v; }
};
// Can generalize to a binary expr.
class PlusExpr : public Expr {
Expr *lhs;
Expr *rhs;
public:
PlusExpr(Expr *lhs, Expr *rhs) : Expr(Kind::PLUS), lhs(lhs), rhs(rhs) {}
Expr *getLHS() const { return lhs; }
Expr *getRHS() const { return rhs; }
};
class PrintVisitor : public Visitor<PrintVisitor> {
public:
void handleConstExpr(ConstExpr *e) {
printf("%d", e->value());
}
void handlePlusExpr(PlusExpr *e) {
visit(e->getLHS());
printf(" + ");
visit(e->getRHS());
}
};
class CalcVisitor : public Visitor<CalcVisitor> {
// The value obtained after visiting an expr.
int result = 0;
public:
void handleConstExpr(ConstExpr *e) {
result = e->value();
}
void handlePlusExpr(PlusExpr *e) {
visit(e->getLHS());
int lhs = result;
visit(e->getRHS());
result += lhs;
}
int getResult() const { return result; }
};
} // namespace crtp
void __attribute__((noinline)) useCrtp(crtp::Expr *crtp_obj) {
// crtp::PrintVisitor p;
// p.visit(obj);
// printf("\n");
crtp::CalcVisitor c;
c.visit(crtp_obj);
// printf("Calc result is %d\n", c.getResult());
}
// int main() {
// useVtable();
// useCrtp();
// }
template<typename E, typename ConstE, typename PlusE>
E *createExpr(unsigned exprLen) {
E *obj = new ConstE(1);
for (unsigned i = 0; i < exprLen; ++i) {
obj = new PlusE(obj, new ConstE(i));
}
return obj;
}
static void BM_CrtpCall(benchmark::State& state) {
// Don't worry about deallocation.
unsigned exprLen = state.range(0);
crtp::Expr *crtp_obj =
createExpr<crtp::Expr, crtp::ConstExpr, crtp::PlusExpr>(exprLen);
for (auto _ : state) {
useCrtp(crtp_obj);
}
}
BENCHMARK(BM_CrtpCall)->RangeMultiplier(16)->Range(2, 2<<12);
static void BM_VtableCall(benchmark::State& state) {
// Don't worry about deallocation.
unsigned exprLen = state.range(0);
vtable::Expr *vtable_obj =
createExpr<vtable::Expr, vtable::ConstExpr, vtable::PlusExpr>(exprLen);
for (auto _ : state) {
useVtable(vtable_obj);
}
}
BENCHMARK(BM_VtableCall)->RangeMultiplier(16)->Range(2, 2<<12);
BENCHMARK_MAIN();