-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathasm_parser.cpp
More file actions
397 lines (323 loc) · 11.4 KB
/
asm_parser.cpp
File metadata and controls
397 lines (323 loc) · 11.4 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
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
/*
* Copyright 2011 StreamNovation Ltd. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are
* permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this list of
* conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
* of conditions and the following disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY StreamNovation Ltd. ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL StreamNovation Ltd. OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* The views and conclusions contained in the software and documentation are those of the
* authors and should not be interpreted as representing official policies, either expressed
* or implied, of StreamNovation Ltd.
*
*
* Author(s):
* Adam Rak <adam.rak@streamnovation.com>
*
*
*
*/
#include <iostream>
#include <boost/spirit/include/qi.hpp>
#include <boost/spirit/include/phoenix_core.hpp>
#include <boost/spirit/include/phoenix_operator.hpp>
#include <boost/spirit/include/phoenix_stl.hpp>
#include <boost/spirit/repository/include/qi_confix.hpp>
#include "asm_parser.hpp"
using namespace std;
using namespace boost::spirit;
static std::string clear_comments(std::string text)
{
using boost::spirit::qi::phrase_parse;
using boost::spirit::qi::char_;
using boost::spirit::qi::eol;
using boost::phoenix::push_back;
using boost::phoenix::ref;
using boost::spirit::repository::confix;
std::vector<char> result;
#define comment_p1 (confix("/*", "*/")[*(char_ - "*/")])
#define comment_p2 (confix("//", eol)[*(char_ - eol)])
#define comment_p3 (confix("(*", "*)")[*(char_ - "*)")])
auto begin = text.begin();
auto end = text.end();
phrase_parse(begin, end, *char_[push_back(boost::phoenix::ref(result), _1)], comment_p1 | comment_p2 | comment_p3);
#undef comment_p1
#undef comment_p2
#undef comment_p3
return std::string(result.begin(), result.end());
}
struct printer
{
bool detailed;
typedef boost::spirit::utf8_string string;
printer(bool detailed = false) : detailed(detailed) {}
void element(string const& tag, string const& value, int depth) const
{
for (int i = 0; i < (8+depth*4); ++i) // indent to depth
{
std::cout << ' ';
}
if (detailed)
{
std::cout << "tag: " << tag;
if (value != "")
{
std::cout << ", value: \"" << value << "\"";
}
std::cout << std::endl;
}
else
{
if (value != "")
{
cout << value << endl;
}
else
{
cout << tag << endl;
}
}
}
};
static void print_info(boost::spirit::info const& what, bool detailed = false)
{
using boost::spirit::basic_info_walker;
cout << endl;
printer pr(detailed);
basic_info_walker<printer> walker(pr, what.tag, 0);
boost::apply_visitor(walker, what.value);
}
struct assign_str
{
std::string& str;
assign_str(std::string& s) : str(s)
{
}
void operator()(const vector<char>& s, qi::unused_type, qi::unused_type) const
{
str = std::string(s.begin(), s.end());
}
};
struct new_instruction
{
vector<gpu_asm::instruction>& istream;
string& label;
new_instruction(vector<gpu_asm::instruction>& istream, string& label) : istream(istream) , label(label)
{
}
void operator()(const vector<char>& s, qi::unused_type, qi::unused_type) const
{
string name(s.begin(), s.end());
// cout << name << endl;
istream.push_back(gpu_asm::instruction());
istream.back().name = name;
istream.back().label = label;
label = "";
}
};
// struct new_microcode
// {
// vector<gpu_asm::instruction>& istream;
//
// new_microcode(vector<gpu_asm::instruction>& istream) : istream(istream)
// {
// }
//
// void operator()(const boost::optional<vector<char>>& s_, qi::unused_type, qi::unused_type) const
// {
// auto s = s_.get_value_or(vector<char>(0));
// string name(s.begin(), s.end());
// // cout << name << endl;
// istream.back().microcodes.push_back(gpu_asm::microcode());
// istream.back().microcodes.back().name = name;
// }
// };
struct new_field
{
vector<gpu_asm::instruction>& istream;
new_field(vector<gpu_asm::instruction>& istream) : istream(istream)
{
}
void operator()(const vector<char>& s, qi::unused_type, qi::unused_type) const
{
string name(s.begin(), s.end());
istream.back().fields.push_back(gpu_asm::microcode_field());
istream.back().fields.back().name = name;
}
};
struct set_enum
{
vector<gpu_asm::instruction>& istream;
set_enum(vector<gpu_asm::instruction>& istream) : istream(istream)
{
}
void operator()(const vector<char>& s, qi::unused_type, qi::unused_type) const
{
string name(s.begin(), s.end());
// cout << name << endl;
istream.back().fields.back().enum_elem = name;
}
};
struct set_field_label
{
vector<gpu_asm::instruction>& istream;
set_field_label(vector<gpu_asm::instruction>& istream) : istream(istream)
{
}
void operator()(const vector<char>& s, qi::unused_type, qi::unused_type) const
{
string name(s.begin(), s.end());
// cout << name << endl;
istream.back().fields.back().label = name;
}
};
struct set_num
{
vector<gpu_asm::instruction>& istream;
set_num(vector<gpu_asm::instruction>& istream) : istream(istream)
{
}
void operator()(int i, qi::unused_type, qi::unused_type) const
{
// cout << i << endl;
istream.back().fields.back().offset = i;
istream.back().fields.back().offset_is_set = true;
}
};
#define new_instruction new_instruction(istream, future_label)
#define new_field new_field(istream)
#define set_enum set_enum(istream)
#define set_field_label set_field_label(istream)
#define set_num set_num(istream)
std::vector<gpu_asm::instruction> parse_asm_text(std::string text)
{
using boost::spirit::qi::phrase_parse;
using boost::spirit::qi::eps;
using boost::spirit::qi::lexeme;
using boost::spirit::qi::char_;
using boost::spirit::qi::alnum;
using boost::spirit::qi::int_;
using boost::spirit::ascii::space;
using boost::spirit::qi::expectation_failure;
vector<gpu_asm::instruction> istream;
string future_label;
text = clear_comments(text);
#define name ( lexeme[+(alnum | char_('_'))])
#define num ( '(' > (int_[set_num] | (lit('@') > name[set_field_label])) > ')')
#define field ( name[new_field] > -('.' > name[set_enum]) > -(num))
#define microcode ( !(name >> ':') >> !lit('@') >> !(lit("end") > ";") >> *field > ';')
#define instruction ( -(lit('@') > name[assign_str(future_label)]) >> !(lit("end") > ";") >> (name >> ':')[new_instruction] > *microcode)
auto begin = text.begin();
auto end = text.end();
int linenum = 0;
for (int i = 0; i < int(text.length()); i++)
if (text[i] == '\n')
linenum++;
try{
phrase_parse(begin, end, eps > *instruction > "end" > ";", space);
#undef name
#undef num
#undef field
#undef microcode
#undef instruction
} catch (expectation_failure<decltype(begin)> const& x)
{
std::cout << "expected: "; print_info(x.what_);
std::string got(x.first, x.last);
int gotlinenum = 0;
for (int i = 0; i < int(got.length()); i++)
if (got[i] == '\n')
gotlinenum++;
int gotsize = got.size();
if (got.find("\n") != std::string::npos)
{
got.resize(got.find("\n"));
}
std::cout << "got: \"" << got << "\" at line: #" << linenum - gotlinenum +1 << std::endl;
int pos = 0;
int cpos = int(text.length()) - gotsize;
for (int i = int(text.length()) - gotsize; i >= 0; i--)
{
if (text[i] == '\n')
{
pos = i+1;
break;
}
}
int pos2 = text.length();
for (int i = pos; i < int(text.length()); i++)
{
if (text[i] == '\n')
{
pos2 = i;
break;
}
}
std::string line(text.begin()+pos, text.begin()+pos2);
for (int i = 0; i < int(line.length()); i++)
{
if (line[i] == '\t')
{
line[i] = ' ';
}
}
std::cout << line << endl;
for (int i = 0; i < cpos-pos; i++)
{
cout << " ";
}
cout << "^" << endl;
throw std::runtime_error("Syntax error");
}
return istream;
}
void parse_field_value(std::string text, long offset, std::string& name)
{
using boost::spirit::qi::phrase_parse;
using boost::spirit::qi::eps;
using boost::spirit::qi::lexeme;
using boost::spirit::qi::char_;
using boost::spirit::qi::alnum;
using boost::spirit::qi::int_;
using boost::spirit::ascii::space;
using boost::spirit::qi::expectation_failure;
if (text == "")
{
offset = 0;
name = "";
return;
}
#define num ( int_[boost::phoenix::ref(offset) = _1])
#define name_p ( lexeme[+(alnum | char_('_'))][assign_str(name)])
#define offset_p ( '(' > num > ')')
#define value ( num | (name_p >> -offset_p))
auto begin = text.begin();
auto end = text.end();
try{
phrase_parse(begin, end, eps > value, space);
#undef num
#undef name_p
#undef offset_p
#undef value
} catch (expectation_failure<decltype(begin)> const& x)
{
cout << "expected: "; print_info(x.what_);
string got(x.first, x.last);
cout << "got: " << got << endl;
}
}