-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaliasenv_cfmacros.h
288 lines (255 loc) · 8.82 KB
/
aliasenv_cfmacros.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
#ifndef aliasenv_cfmacros_GUARD
#define aliasenv_cfmacros_GUARD
#include "split.h"
#include "aliasenv_maker.h"
#include "defines.h"
#include "writer.h"
#include <map>
namespace ctb
{
/**
* This cf serves as a custom macro preprocessor. Reason is that it turns out that C preprocessor is too weak language for this complex macros. Not that it would not be cappable of arithmetics and recurse, but it is a real pain.
*
decl("BUFFER_DECL", "capacity, vsize, ingranularity, outgranularity, id, type")
decl("BUFFER_SIZE", "id")
decl("BUFFER_FULL", "id")
decl("BUFFER_FULL_GRANULAR", "id")
decl("BUFFER_EMPTY_GRANULAR", "id")
decl("BUFFER_EMPTY", "id")
decl("BUFFER_PUSH_SIMPLE", "capacity, vsize, id, val")
decl("BUFFER_PUSH_ONE", "capacity, vsize, id, typeabbrev, val")
decl("BUFFER_CONSUME_ONE", "id")
decl("BUFFER_CONSUME_VECTOR", "id")
decl("BUFFER_PEEK_SIMPLE", "capacity, vsize, id, to")
decl("BUFFER_PEEK_ONE", "capacity, vsize, id, typeabbrev, to")
decl("BUFFER_PEEK_VECTOR", "capacity, vsize, id, typeabbrev, to")
*
*
* */
class aliasenv_cfmacros
{
protected:
typedef aliasenv_maker<aliasenv_cfmacros, language_empty> aliasenv_subtab;
static void init();
static bool interpret(const string&, string&);
static bool split_call(const string&, string&, stringlist&);
static bool declargs(const string& args, int args_got, const string& name_got);
public:
typedef language_cpp language;
static string alias(const string& a, bool* s = NULL, int n = -1);
static string get_name();
template <class G> static writer<aliasenv_cfmacros> generate(int m, G& graph, string name, stringlist args) ;
static void self_test();
};
//map<string, string> aliasenv_cfmacros::aliases;
#define ADD(a,b) aliases.insert(aliastab_t::value_type(a,b))
string aliasenv_cfmacros::get_name()
{
return "cfmacros";
}
bool aliasenv_cfmacros::split_call(const string& call, string& name, stringlist& args)
{
int pb = call.find('(');
int pe = call.find(')');
if(pb == string::npos || pe == string::npos)
return false;
string myname = call.substr(0, pb);
string list = call.substr(pb+1, pe - pb -1);
name = trim(myname);
args = splitlist(trim(list));
return true;
}
#define decl(dname, dargs) else if(name == dname && declargs(dargs, args.size(), name))
#define S(a) ++i; aliasenv_subtab::access(a) = string("$")+ctb::to_string(i);
#define TOINT(a) ctb::stoi(writer<aliasenv_subtab>().print(a,args, i ).write_str())
#define GET(a) writer<aliasenv_subtab>().print(a,args, i ).write_str()
#define P(s) w.print(s, args, i);
#define C() if(args_present != i-1) warning(string("expected ") + ctb::to_string(i-1) + " arguments at " + name + ", but got " + ctb::to_string(args_present));
bool aliasenv_cfmacros::declargs(const string& str, int args_present, const string& name)
{
auto arglist = splitlist(str);
int i = 0;
for(const string& arg : arglist)
{
S(arg);
}
S("i");
C();
return true;
}
bool aliasenv_cfmacros::interpret(const string& a, string& ret)
{
string name;
stringlist args;
if(!split_call(a, name, args))
{
//warning(string("aliasenv_cfmacros did not recognize its macro pattern in ") + a );
return false;
}
int i = 0;
writer<aliasenv_subtab> w;
aliasenv_subtab::push();
w.print("/*expanded from '$1'*/", name);
if(false)
{
/*just for the decl macro syntax*/
}
decl("BUFFER_DECL", "capacity, vsize, ingranularity, outgranularity, id, type")
{
for(int i = 0; i < TOINT("$[$capacity/$vsize]"); ++i)
{
P("$type gendecl_${id}_${i};");
}
P("int gendecl_readat_${id} = 0;");
P("int gendecl_contains_${id} = 0;");
P("static const int gendecl_capacity_${id} = $capacity;");
P("static const int gendecl_outgran_${id} = $outgranularity;");
P("static const int gendecl_ingran_${id} = $ingranularity;");
P("static const int gendecl_vsize_${id} = $vsize;");
}
decl("BUFFER_DUMP_VECTOR", "capacity, vsize, id")
{
P("printf(\" BUFFER $id, of size %i\\n\", gendecl_contains_${id});");
for(int i = 0; i < TOINT("$[$capacity/$vsize]"); ++i)
{
P("DEBUG_SSE( gendecl_${id}_${i}, gendecl_${id}_${i});");
P("if($i == gendecl_readat_${id} / $vsize) printf(\" ->\");");
P("if($i == ((gendecl_readat_${id} + gendecl_contains_${id}) % gendecl_capacity_${id}) / $vsize) printf(\" <-\");");
P("printf(\"\\n\");");
}
}
decl("BUFFER_SIZE", "id")
{
P("gendecl_contains_${id}");
}
decl("BUFFER_DUMP", "capacity, id")
{
P("printf(\" BUFFER $id, of size %i\\n\", gendecl_contains_${id});");
for(int i = 0; i < TOINT("$[$capacity]"); ++i)
{
P("printf(\" %i\", gendecl_${id}_${i});");
P("if($i == gendecl_readat_${id}) printf(\" ->\");");
P("if($i == (gendecl_readat_${id} + gendecl_contains_${id}) % gendecl_capacity_${id}) printf(\" <-\");");
P("printf(\"\\n\");");
}
}
decl("BUFFER_FULL", "id")
{
P(" (gendecl_contains_${id} == gendecl_capacity_${id}) ");
}
decl("BUFFER_FULL_GRANULAR", "id")
{
P("(gendecl_capacity_${id} - gendecl_ingran_${id} < gendecl_contains_${id} )");
}
decl("BUFFER_EMPTY_GRANULAR", "id")
{
P(" (gendecl_contains_${id} < gendecl_outgran_${id}) ");
}
decl("BUFFER_EMPTY", "id")
{
P(" (gendecl_contains_${id} == 0) ");
}
decl("BUFFER_PUSH_SIMPLE", "capacity, vsize, id, val")
{
P("switch((gendecl_readat_${id} + gendecl_contains_${id}) % ${capacity}){ ");
for (auto i = 0; i < TOINT("$capacity"); i++)
P("case $i: gendecl_$id_$i = $val; break;");
P("};");
P("gendecl_contains_$id += $vsize;");
}
decl("BUFFER_PUSH_ONE", "capacity, vsize, id, typeabbrev, val")
{
P("switch((gendecl_readat_${id} + gendecl_contains_${id}) % ${capacity}){ ");
for (auto i = 0; i < TOINT("$capacity"); i++)
P("case $i: gendecl_$id_$[$i/$vsize] = _mm_insert_$typeabbrev((__m128i)gendecl_$id_$[$i / $vsize], $val, $i % gendecl_vsize_$id); break;");
P("};");
P("gendecl_contains_$id++;");
}
decl("BUFFER_PEEK_SIMPLE", "capacity, vsize, id, to")
{
P("switch(gendecl_readat_$id){ ");
for (auto i = 0; i < TOINT("$capacity"); i++)
P("case $i: $to = gendecl_$id_$[$i / $vsize]; break;");
P("}");
}
decl("BUFFER_PEEK_ONE", "capacity, vsize, id, typeabbrev, to")
{
P("switch(gendecl_readat_$id){ ");
for (auto i = 0; i < TOINT("$capacity"); i++)
P("case $i: $to = _mm_extract_$typeabbrev((__m128i)gendecl_$id_$[$i / $vsize], $i % gendecl_vsize_$id); break;");
P("}");
}
decl("BUFFER_PEEK_VECTOR", "capacity, vsize, id, typeabbrev, to")
{
P("switch(gendecl_readat_$id){ ");
for (auto i = 0; i < TOINT("$capacity"); i++)
P("case $i: $to = _mm_alignr_epi8(gendecl_$id_$[(1 + ($i/$vsize)) % ($capacity/$vsize)], gendecl_$id_$[$i / $vsize], ($i%gendecl_vsize_$id)*(16/gendecl_vsize_$id)); break;");
P("}");
}
decl("BUFFER_CONSUME_VECTOR", "id")
{
P("gendecl_readat_$id = ((gendecl_readat_$id + gendecl_vsize_$id) % gendecl_capacity_$id);");
P("gendecl_contains_$id -= gendecl_vsize_$id;");
}
decl("BUFFER_CONSUME_ONE", "id")
{
P("gendecl_readat_$id = ((gendecl_readat_$id + 1) % gendecl_capacity_$id);");
P("gendecl_contains_$id--;");
}
else
{
warning(string("aliasenv_cfmacros did not match string: ") + a + " with name parsed as " + name);
aliasenv_subtab::pop();
return false;
}
aliasenv_subtab::pop();
ret = w.write_str();
return true;
}
#undef S
#undef P
#undef C
#undef TOINT
#undef ARGS
string aliasenv_cfmacros::alias(const string& a, bool* s, int n)
{
string ret;
bool succ;
try
{
succ = interpret(a, ret);
}
RETHROW(string("in aliasenv_cfmacros while interpretting ")+a);
if(!succ)
{
if(s != NULL)
*s = false;
else
warn(string("warning: alias not found: ").append(a));
return "";
}
if(s != NULL)
*s = true;
return ret;
}
void aliasenv_cfmacros::init()
{
static bool initialized = false;
if(initialized)
return;
initialized = true;
}
template <class G>
writer<aliasenv_cfmacros> aliasenv_cfmacros::generate(int max_granularity, G& graph, string name, stringlist args)
{
error( "empty aliasenv generator used");
return writer<aliasenv_cfmacros>();
}
void aliasenv_cfmacros::self_test()
{
writer<aliasenv_cfmacros> w;
w.print("${BUFFER_EMPTY_GRANULAR(myid)}");
//assert(w.write_str() == " (gendecl_contains_myid < gendecl_outgran_myid) ");
}
};
#endif