-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparser.y
413 lines (346 loc) · 14.8 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
%{
#define YYDEBUG 1
#define ANY -1
#define INT 0
#define BOOL 1
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <unistd.h>
#include "common.h"
%}
%code requires {
#include "ast.h"
#include "symlist.h"
#include "code.h"
#include "mips.h"
StmtList* root;
InstrList* instructions;
List* symList;
int validate_expression(Expr* expr, int type);
int validate_operation(Expr* lhs, Expr* rhs, int type);
int validate_var(string var, int type);
void generateASM();
void compiler();
}
%nonassoc
CMD_FUNC
CMD_MAIN
CMD_IF
CMD_ELSE
CMD_WHILE
VAR
VARP
TYPE_INT
TYPE_BOOL
EOL
ASPA
COMMA
SYM_OB
SYM_CB
SYM_OP
SYM_CP
OP_ATRIB
CMD_VAR
CMD_SCAN
CMD_PRINT
%left
OP_OR
OP_AND
OP_EQ OP_DIFF OP_LT OP_LTE OP_GT OP_GTE
OP_SUM OP_SUB
OP_MULT OP_DIV OP_MOD
SYM_SC
%union
{
char* tyString;
int tyInt;
StmtList* tyStmtList;
Stmt* tyStmt;
Attrib* tyAttrib;
Expr* tyExpr;
Print* tyPrint;
Read* tyRead;
While* tyWhile;
If* tyIf;
}
%type <tyString> VAR
%type <tyString> VARP
%type <tyInt> TYPE_BOOL
%type <tyInt> TYPE_INT
%type <tyStmtList> Program
%type <tyStmtList> Main
%type <tyStmtList> Block
%type <tyStmtList> StatementList
%type <tyExpr> Expression
%type <tyExpr> Term
%type <tyExpr> Factor
%type <tyAttrib> Assignment
%type <tyAttrib> Declaration
%type <tyAttrib> AttribStmt
%type <tyWhile> WhileStmt
%type <tyIf> IfStmt
%type <tyPrint> InputStmt
%type <tyRead> OutputStmt
%type <tyStmt> Statement
%%
Program:
/* nothing */ { root = NULL; }
| Main
{
root = $1;
instructions = genIC(root);
compiler();
}
;
Separator:
SYM_SC
| EOL
;
Main:
CMD_FUNC CMD_MAIN SYM_OP SYM_CP Block { $$ = $5; }
| CMD_FUNC CMD_MAIN SYM_OP SYM_CP Block Separator { $$ = $5; }
;
Block:
SYM_OB StatementList SYM_CB { $$ = $2; }
;
StatementList:
/* nothing */ { $$ = NULL; }
| Statement Separator StatementList { $$ = ast_stmtList($1,$3); }
;
Statement:
AttribStmt { $$ = ast_stmt_attrib($1); }
| Expression { $$ = ast_stmt_expr($1); }
| Block { $$ = ast_stmt_block($1); }
| IfStmt { $$ = ast_stmt_if($1); }
| WhileStmt { $$ = ast_stmt_while($1); }
| InputStmt { $$ = ast_stmt_print($1); }
| OutputStmt { $$ = ast_stmt_read($1); }
;
InputStmt:
CMD_PRINT SYM_OP VARP SYM_CP { $$ = ast_print_input_word($3); }
| CMD_PRINT VAR {
if(list_get(symList,$2) == -1)
yyerror("variable not declared!");
$$ = ast_print_input_word($2);
}
;
OutputStmt:
CMD_SCAN SYM_OP VAR COMMA VAR SYM_CP { $$ = ast_print_output($3,$5); }
;
IfStmt:
CMD_IF Expression Block
{
validate_expression($2,BOOL);
$$ = ast_if(NULL,$2,$3,NULL);
}
| CMD_IF AttribStmt SYM_SC Expression Block
{
validate_expression($4,BOOL);
$$ = ast_if($2,$4,$5,NULL);
}
| CMD_IF Expression Block CMD_ELSE IfStmt
{
validate_expression($2,BOOL);
$$ = ast_if(NULL,$2,$3,ast_stmtList(ast_stmt_if($5),NULL));
}
| CMD_IF Expression Block CMD_ELSE Block
{
validate_expression($2,BOOL);
$$ = ast_if(NULL,$2,$3,$5);
}
| CMD_IF AttribStmt SYM_SC Expression Block CMD_ELSE IfStmt
{
validate_expression($4,BOOL);
$$ = ast_if($2,$4,$5,ast_stmtList(ast_stmt_if($7),NULL));
}
| CMD_IF AttribStmt SYM_SC Expression Block CMD_ELSE Block
{
validate_expression($4,BOOL);
$$ = ast_if($2,$4,$5,$7);
}
;
WhileStmt:
CMD_WHILE Block { $$ = ast_while(NULL,$2); }
| CMD_WHILE Expression Block
{
validate_expression($2,BOOL);
$$ = ast_while($2,$3);
}
;
AttribStmt:
/* nothing */ { $$ = NULL; }
| Declaration { $$ = $1; }
| Assignment { $$ = $1; }
;
Assignment:
VAR OP_ATRIB Expression
{
validate_var($1,$3->expr_type);
$$ = ast_attrib_assign($1,$3);
}
;
Declaration:
CMD_VAR VAR OP_ATRIB Expression
{
if(list_get(symList,$2) != -1)
yyerror("Already defined.");
symList = list_store(symList,$2,$4->expr_type);
$$ = ast_attrib_decl($2,$4);
}
;
Expression:
Expression OP_EQ Expression
{
validate_operation($1,$3,ANY);
$$ = ast_expr_op_bool($1,OP_EQ,$3);
}
| Expression OP_DIFF Expression
{
validate_operation($1,$3,ANY);
$$ = ast_expr_op_bool($1,OP_DIFF,$3);
}
| Expression OP_LT Expression
{
validate_operation($1,$3,ANY);
$$ = ast_expr_op_bool($1,OP_LT,$3);
}
| Expression OP_LTE Expression
{
validate_operation($1,$3,ANY);
$$ = ast_expr_op_bool($1,OP_LTE,$3);
}
| Expression OP_GT Expression
{
validate_operation($1,$3,ANY);
$$ = ast_expr_op_bool($1,OP_GT,$3);
}
| Expression OP_GTE Expression
{
validate_operation($1,$3,ANY);
$$ = ast_expr_op_bool($1,OP_GTE,$3);
}
| Expression OP_AND Expression
{
validate_operation($1,$3,BOOL);
$$ = ast_expr_op_bool($1,OP_AND,$3);
}
| Expression OP_OR Expression
{
validate_operation($1,$3,BOOL);
$$ = ast_expr_op_bool($1,OP_OR,$3);
}
| Expression OP_SUM Term
{
validate_operation($1,$3,INT);
$$ = ast_expr_op_int($1,OP_SUM,$3);
}
| Expression OP_SUB Term
{
validate_operation($1,$3,INT);
$$ = ast_expr_op_int($1,OP_SUB,$3);
}
| Term
{
$$ = $1;
}
;
Term:
Term OP_MULT Factor
{
validate_operation($1,$3,INT);
$$ = ast_expr_op_int($1,OP_MULT,$3);
}
| Term OP_DIV Factor
{
validate_operation($1,$3,INT);
$$ = ast_expr_op_int($1,OP_DIV,$3);
}
| Term OP_MOD Factor
{
validate_operation($1,$3,INT);
$$ = ast_expr_op_int($1,OP_MOD,$3);
}
| Factor
{
$$ = $1;
}
;
Factor:
SYM_OP Expression SYM_CP
{
$$ = $2;
}
| TYPE_INT
{
$$ = ast_expr_primitive_int($1);
}
| TYPE_BOOL
{
$$ = ast_expr_primitive_bool($1);
}
| VAR
{
int t = validate_var($1,ANY);
if(t == 0)
$$ = ast_expr_identifier_int($1);
else
$$ = ast_expr_identifier_bool($1);
}
;
%%
int validate_expression(Expr* expr, int type)
{
int t = expr->expr_type;
if(type != -1 && t != type)
yyerror("Expression with wrong type!");
return t;
}
int validate_operation(Expr* lhs, Expr* rhs, int type)
{
int tl = lhs->expr_type;
int tr = rhs->expr_type;
if(tl != tr)
yyerror("Operation with different types!");
validate_expression(lhs,type);
return tl;
}
int validate_var(string var, int type)
{
int t = list_get(symList,var);
if(t == -1)
yyerror("Variable not defined!");
else if(type != -1 && t != type)
yyerror("Wrong type!");
return t;
}
void compiler()
{
printf("\n˙˘˘˘˘˘˘˘˘˘˘˘˘˘˘˚˚˘˘˘˘˘˘˘˘˘˘˘˘˘˙\nAST:\n\n");
printAST(root,0);
printf("\n˙˘˘˘˘˘˘˘˘˘˘˘˘˘˘˘˘˘˘˘˘˘˘˘˘˘˘˘˘˙\nIC:\n\n");
printIC(instructions);
printf("\n˙˘˘˘˘˘˘˘˘˘˘˘˘˘˘˘˘˘˘˘˘˘˘˘˘˘˘˘˘˙\nMIPS:\n\n");
printMIPS(instructions);
}
void yyerror(const char *s)
{
fprintf(stderr, "error: %s\n", s);
exit(1);
}
int main(int argc, char **argv)
{
if(argc != 2)
{
printf("Try: ./rust_in_pieces prog.rs\n");
return 1;
}
yyin = fopen(argv[1], "r");
if(!yyin)
{
perror("Error");
return 1;
}
yydebug = 0;
return yyparse();
}