-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMemoryHierarchy.h
263 lines (194 loc) · 6.45 KB
/
MemoryHierarchy.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
/**
* Autogenerated by Thrift
*
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
*/
#ifndef MemoryHierarchy_H
#define MemoryHierarchy_H
#include <TProcessor.h>
#include "simple_types.h"
namespace simple {
class MemoryHierarchyIf {
public:
virtual ~MemoryHierarchyIf() {}
virtual void step() = 0;
virtual void operate(const Work& w) = 0;
};
class MemoryHierarchyNull : virtual public MemoryHierarchyIf {
public:
virtual ~MemoryHierarchyNull() {}
void step() {
return;
}
void operate(const Work& /* w */) {
return;
}
};
class MemoryHierarchy_step_args {
public:
MemoryHierarchy_step_args() {
}
virtual ~MemoryHierarchy_step_args() throw() {}
bool operator == (const MemoryHierarchy_step_args & /* rhs */) const
{
return true;
}
bool operator != (const MemoryHierarchy_step_args &rhs) const {
return !(*this == rhs);
}
bool operator < (const MemoryHierarchy_step_args & ) const;
uint32_t read(facebook::thrift::protocol::TProtocol* iprot);
uint32_t write(facebook::thrift::protocol::TProtocol* oprot) const;
};
class MemoryHierarchy_step_pargs {
public:
virtual ~MemoryHierarchy_step_pargs() throw() {}
uint32_t write(facebook::thrift::protocol::TProtocol* oprot) const;
};
class MemoryHierarchy_step_result {
public:
MemoryHierarchy_step_result() {
}
virtual ~MemoryHierarchy_step_result() throw() {}
bool operator == (const MemoryHierarchy_step_result & /* rhs */) const
{
return true;
}
bool operator != (const MemoryHierarchy_step_result &rhs) const {
return !(*this == rhs);
}
bool operator < (const MemoryHierarchy_step_result & ) const;
uint32_t read(facebook::thrift::protocol::TProtocol* iprot);
uint32_t write(facebook::thrift::protocol::TProtocol* oprot) const;
};
class MemoryHierarchy_step_presult {
public:
virtual ~MemoryHierarchy_step_presult() throw() {}
uint32_t read(facebook::thrift::protocol::TProtocol* iprot);
};
class MemoryHierarchy_operate_args {
public:
MemoryHierarchy_operate_args() {
}
virtual ~MemoryHierarchy_operate_args() throw() {}
Work w;
struct __isset {
__isset() : w(false) {}
bool w;
} __isset;
bool operator == (const MemoryHierarchy_operate_args & rhs) const
{
if (!(w == rhs.w))
return false;
return true;
}
bool operator != (const MemoryHierarchy_operate_args &rhs) const {
return !(*this == rhs);
}
bool operator < (const MemoryHierarchy_operate_args & ) const;
uint32_t read(facebook::thrift::protocol::TProtocol* iprot);
uint32_t write(facebook::thrift::protocol::TProtocol* oprot) const;
};
class MemoryHierarchy_operate_pargs {
public:
virtual ~MemoryHierarchy_operate_pargs() throw() {}
const Work* w;
uint32_t write(facebook::thrift::protocol::TProtocol* oprot) const;
};
class MemoryHierarchy_operate_result {
public:
MemoryHierarchy_operate_result() {
}
virtual ~MemoryHierarchy_operate_result() throw() {}
bool operator == (const MemoryHierarchy_operate_result & /* rhs */) const
{
return true;
}
bool operator != (const MemoryHierarchy_operate_result &rhs) const {
return !(*this == rhs);
}
bool operator < (const MemoryHierarchy_operate_result & ) const;
uint32_t read(facebook::thrift::protocol::TProtocol* iprot);
uint32_t write(facebook::thrift::protocol::TProtocol* oprot) const;
};
class MemoryHierarchy_operate_presult {
public:
virtual ~MemoryHierarchy_operate_presult() throw() {}
uint32_t read(facebook::thrift::protocol::TProtocol* iprot);
};
class MemoryHierarchyClient : virtual public MemoryHierarchyIf {
public:
MemoryHierarchyClient(boost::shared_ptr<facebook::thrift::protocol::TProtocol> prot) :
piprot_(prot),
poprot_(prot) {
iprot_ = prot.get();
oprot_ = prot.get();
}
MemoryHierarchyClient(boost::shared_ptr<facebook::thrift::protocol::TProtocol> iprot, boost::shared_ptr<facebook::thrift::protocol::TProtocol> oprot) :
piprot_(iprot),
poprot_(oprot) {
iprot_ = iprot.get();
oprot_ = oprot.get();
}
boost::shared_ptr<facebook::thrift::protocol::TProtocol> getInputProtocol() {
return piprot_;
}
boost::shared_ptr<facebook::thrift::protocol::TProtocol> getOutputProtocol() {
return poprot_;
}
void step();
void send_step();
void recv_step();
void operate(const Work& w);
void send_operate(const Work& w);
void recv_operate();
protected:
boost::shared_ptr<facebook::thrift::protocol::TProtocol> piprot_;
boost::shared_ptr<facebook::thrift::protocol::TProtocol> poprot_;
facebook::thrift::protocol::TProtocol* iprot_;
facebook::thrift::protocol::TProtocol* oprot_;
};
class MemoryHierarchyProcessor : virtual public facebook::thrift::TProcessor {
protected:
boost::shared_ptr<MemoryHierarchyIf> iface_;
virtual bool process_fn(facebook::thrift::protocol::TProtocol* iprot, facebook::thrift::protocol::TProtocol* oprot, std::string& fname, int32_t seqid);
private:
std::map<std::string, void (MemoryHierarchyProcessor::*)(int32_t, facebook::thrift::protocol::TProtocol*, facebook::thrift::protocol::TProtocol*)> processMap_;
void process_step(int32_t seqid, facebook::thrift::protocol::TProtocol* iprot, facebook::thrift::protocol::TProtocol* oprot);
void process_operate(int32_t seqid, facebook::thrift::protocol::TProtocol* iprot, facebook::thrift::protocol::TProtocol* oprot);
public:
MemoryHierarchyProcessor(boost::shared_ptr<MemoryHierarchyIf> iface) :
iface_(iface) {
processMap_["step"] = &MemoryHierarchyProcessor::process_step;
processMap_["operate"] = &MemoryHierarchyProcessor::process_operate;
}
virtual bool process(boost::shared_ptr<facebook::thrift::protocol::TProtocol> piprot, boost::shared_ptr<facebook::thrift::protocol::TProtocol> poprot);
virtual ~MemoryHierarchyProcessor() {}
};
class MemoryHierarchyMultiface : virtual public MemoryHierarchyIf {
public:
MemoryHierarchyMultiface(std::vector<boost::shared_ptr<MemoryHierarchyIf> >& ifaces) : ifaces_(ifaces) {
}
virtual ~MemoryHierarchyMultiface() {}
protected:
std::vector<boost::shared_ptr<MemoryHierarchyIf> > ifaces_;
MemoryHierarchyMultiface() {}
void add(boost::shared_ptr<MemoryHierarchyIf> iface) {
ifaces_.push_back(iface);
}
public:
void step() {
uint32_t sz = ifaces_.size();
for (uint32_t i = 0; i < sz; ++i) {
ifaces_[i]->step();
}
}
void operate(const Work& w) {
uint32_t sz = ifaces_.size();
for (uint32_t i = 0; i < sz; ++i) {
ifaces_[i]->operate(w);
}
}
};
} // namespace
#endif