-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparser.y
436 lines (371 loc) · 7.06 KB
/
parser.y
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
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
%{
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include "sds.h"
#define YYERROR_VERBOSE 1
extern FILE *yyin;
extern int yylex();
extern void yyerror(char const* msg);
extern int line;
#define BUFER_SIZE 1024
char buffer[BUFER_SIZE];
typedef struct str {
char * val;
size_t cap;
size_t len;
} str;
%}
%output "parser.c"
%defines "parser.h"
%union
{
sds string;
//buffer_t *string;
//char *string;
}
%token <string> PROGRAM
%token <string> DATA
%token <string> PROCEDURE
%token <string> DIVISION
%token <string> GET
%token <string> PUT
%token <string> TO
%token <string> EXECUTE
%token <string> REPEAT
%token <string> EITHER
%token <string> BOTH
%token <string> NEITHER
%left <string> LT
%left <string> LE
%left <string> GT
%left <string> GE
%left <string> NE
%left <string> EQ
%right <string> NOT
%left <string> AND
%left <string> OR
%left <string> NOR
%left <string> ADD
%left <string> SUB
%left <string> MUL
%left <string> DIV
%right <string> SET
%left <string> LEFTPAREN
%left <string> RIGHTPAREN
%token <string> SECTION_OPEN
%token <string> SECTION_CLOSE
%token <string> INTEGER
%token <string> FLOAT
%token <string> CHAR
%token <string> END
%token <string> SEMICOLON
%token <string> COLON
%token <string> COMMANDEND
%token <string> ID
%token <string> NUMBER
%token <string> STRING
%token <string> UNSIGNED
%type<string> heading
%type<string> data_part
%type<string> exe_part
%type <string> data_body
%type <string> data_stmt
%type <string> type
%type <string> id_list
%type <string> stmt_list
%type <string> stmt_list_or_no
%type <string> stmt
%type <string> assgn_stmt
//%type <string> index
//%type <string> no
%type <string> in_stmt
%type <string> out_stmt
%type <string> in_list
%type <string> out_list
%type <string> loop_stmt
%type <string> cond1_stmt
%type <string> structure
%type <string> condition
%type <string> expression
%start program
%%
program: structure {
// INIT
// printf("%s", $1);
}
;
structure: heading data_part exe_part {
// $$ = sdsnew("#include <iostream>\n\nusing namespace std;\n\n");
// sdscat($$, $2);
// sdscat($$, $3);
printf("%s", $1);
printf("#include <iostream>\n\nusing namespace std;\n\n");
printf("%s", $2);
printf("int main()\n{\n");
printf("%s", $3);
printf("return 0;\n}\n");
}
| {
$$ = sdsnew("// empty program\n");
}
;
heading: PROGRAM ID COLON {
$$ = sdsnew("// Program ");
$$ = sdscat($$, $2);
$$ = sdscat($$, "\n");
}
| {
$$ = sdsempty();
}
;
data_part: DATA DIVISION COMMANDEND data_body END COMMANDEND {
$$ = sdsnew($4);
}
| {
$$ = sdsempty();
}
;
data_body: data_stmt {
$$ = sdsnew($1);
}
| data_stmt data_body {
$$ = sdsnew($1);
$$ = sdscat($$, $2);
}
;
data_stmt: id_list COLON type COMMANDEND {
$$ = sdsnew($3);
$$ = sdscat($$, " ");
$$ = sdscat($$, $1);
$$ = sdscat($$, ";\n");
}
;
id_list: ID {
$$ = sdsnew($1);
}
| ID SEMICOLON id_list {
$$ = sdsnew($1);
$$ = sdscat($$, ",");
$$ = sdscat($$, $3);
}
;
type: INTEGER {
$$ = sdsnew("int");
}
| FLOAT {
$$ = sdsnew("float");
}
| CHAR {
$$ = sdsnew("char");
}
;
exe_part: PROCEDURE DIVISION COMMANDEND stmt_list_or_no END COMMANDEND {
// $$ = sdsnew("int main()\n{\n");
// $$ = sdscat($$, $4);
// $$ = sdscat($$, "return 0;\n}\n");
$$ = sdsnew($4);
}
;
stmt_list_or_no: stmt_list {
$$ = sdsnew($1);
}
| {
$$ = sdsnew("// empty stmts\n");
}
;
stmt_list: stmt {
$$ = $1;
}
| stmt stmt_list {
$$ = sdsnew($1);
$$ = sdscat($$, $2);
}
;
stmt: assgn_stmt { $$ = $1; }
| in_stmt { $$ = $1; }
| out_stmt { $$ = $1; }
| loop_stmt { $$ = $1; }
| cond1_stmt { $$ = $1; }
;
assgn_stmt: SET ID TO expression COMMANDEND {
$$ = sdsnew($2);
$$ = sdscat($$, " = ");
$$ = sdscat($$, $4);
$$ = sdscat($$, ";\n");
}
;
//index: ID | NUMBER | ID SEMICOLON index | NUMBER SEMICOLON index
// ;
//no: UNSIGNED
// | INTEGER
// ;
in_stmt: GET in_list COMMANDEND {
$$ = sdsnew("cin >> ");
$$ = sdscat($$, $2);
$$ = sdscat($$, ";\n");
}
;
in_list: ID {
$$ = sdsnew($1);
}
| ID SEMICOLON in_list {
$$ = sdsnew($1);
$$ = sdscat($$, " >> ");
$$ = sdscat($$, $3);
}
;
out_stmt: PUT out_list COMMANDEND {
$$ = sdsnew("cout << ");
$$ = sdscat($$, $2);
$$ = sdscat($$, " << \"\\n\"");
$$ = sdscat($$, ";\n");
}
| PUT COMMANDEND {
$$ = sdsnew("cout << ");
$$ = sdscat($$, " \"\\n\"");
$$ = sdscat($$, ";\n");
}
;
out_list: ID SEMICOLON out_list {
$$ = sdsnew($1);
$$ = sdscat($$, " << ");
$$ = sdscat($$, $3);
}
| ID {
$$ = sdsnew($1);
}
;
loop_stmt: REPEAT SECTION_OPEN stmt_list_or_no SECTION_CLOSE condition {
$$ = sdsnew("while( ");
$$ = sdscat($$, $5);
$$ = sdscat($$, " ) {\n");
$$ = sdscat($$, $3);
$$ = sdscat($$, "}\n");
}
;
cond1_stmt: EXECUTE SECTION_OPEN stmt_list_or_no SECTION_CLOSE COMMANDEND {
$$ = sdsnew("// execute ");
$$ = sdscat($$, $5);
//$$ = sdscat($$, " ) {\n");
$$ = sdscat($$, "\n");
//$$ = sdscat($$, "{\n");
$$ = sdscat($$, $3);
//$$ = sdscat($$, "}\n");
}
;
condition: EITHER expression COMMANDEND {
$$ = sdsnew($2);
//$$ = sdsnew($1);
//$$ = sdscat($$, $2);
// $$ = sdscat($$, " OR ");
// $$ = sdscat($$, $3);
}
| NEITHER expression COMMANDEND {
$$ = sdsnew($2);
//$$ = sdsnew($1);
//$$ = sdscat($$, $2);
// $$ = sdscat($$, " NOR ");
// $$ = sdscat($$, $3);
}
| BOTH expression COMMANDEND {
$$ = sdsnew($2);
//$$ = sdsnew($1);
//$$ = sdscat($$, $2);
// $$ = sdscat($$, " AND ");
// $$ = sdscat($$, $3);
}
;
expression:
SUB expression {
$$ = sdsnew("- ");
$$ = sdscat($$, $2);
}
| NOT expression {
$$ = sdsnew("! ");
$$ = sdscat($$, $2);
}
| expression GT expression {
$$ = sdsnew($1);
$$ = sdscat($$, " > ");
$$ = sdscat($$, $3);
}
| expression GE expression {
$$ = sdsnew($1);
$$ = sdscat($$, " >= ");
$$ = sdscat($$, $3);
}
| expression LT expression {
$$ = sdsnew($1);
$$ = sdscat($$, " < ");
$$ = sdscat($$, $3);
}
| expression LE expression {
$$ = sdsnew($1);
$$ = sdscat($$, " <= ");
$$ = sdscat($$, $3);
}
| expression AND expression {
$$ = sdsnew($1);
$$ = sdscat($$, " && ");
$$ = sdscat($$, $3);
}
| expression OR expression {
$$ = sdsnew($1);
$$ = sdscat($$, " || ");
$$ = sdscat($$, $3);
}
| ID {
$$ = $1;
}
| STRING {
$$ = $1;
}
| NUMBER {
$$ = $1;
}
| expression DIV expression {
// if ($3 == 0) { yyerror("Cannot divide by zero"); exit(1); } else {}
$$ = sdsnew($1);
$$ = sdscat($$, " / ");
$$ = sdscat($$, $3);
}
| expression MUL expression {
$$ = sdsnew($1);
$$ = sdscat($$, " * ");
$$ = sdscat($$, $3);
}
| LEFTPAREN expression RIGHTPAREN {
$$ = sdsnew("( ");
$$ = sdscat($$, $2);
$$ = sdscat($$, " )");
}
| expression ADD expression {
$$ = sdsnew($1);
$$ = sdscat($$, " + ");
$$ = sdscat($$, $3);
}
| expression SUB expression {
$$ = sdsnew($1);
$$ = sdscat($$, " - ");
$$ = sdscat($$, $3);
}
;
%%
int yywrap()
{
return 1;
}
void yyerror(char const* msg)
{
// fprintf(stderr, "[%d]:%s\n", line, msg);
}
int main(int argc, char *argv[])
{
// Read a file
if(argc > 1)
yyin = fopen(argv[1], "r");
// Parse
yyparse();
return 0;
}