-
Notifications
You must be signed in to change notification settings - Fork 0
/
pc.y
460 lines (411 loc) · 13.8 KB
/
pc.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
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
%{
#include <iostream>
using std::cerr;
using std::endl;
#include <string>
using std::string;
#include <vector>
using std::vector;
#include <stdio.h>
#include "Tree.h"
#include "Scope.h"
#define YYDEBUG 1
#define SCOPE_DBG 0
#define TREE_DBG 0
int yylex();
int yyparse();
void yyerror(char*);
extern int lineno;
extern Scope* prog_scope;
extern Scope* current;
%}
%union {
/* scanner attributes */
int ival;
float rval;
char *sval;
int opval;
/* for passing around the trees */
Tree *tval;
/* dirty thing to get around some strange typing error */
void *vp;
}
/* for dangling else.
Source: http://epaperpress.com/lexandyacc/if.html */
%nonassoc IFX
%nonassoc ELSE
%token <ival> INUM
%token <rval> RNUM
%token <sval> ID
%token <opval> ASSIGNOP
%token <opval> RELOP
%token <opval> ADDOP
%token <opval> MULOP
%token <opval> NOT
%token <opval> LT LE GT GE EQ NE
%token <opval> OR PLUS MINUS
%token <opval> AND STAR SLASH
%token PROGRAM
%token VAR
%token ARRAY OF DOTDOT
%token INTEGER REAL BOOL
%token FUNCTION PROCEDURE
%token BBEGIN END
%token IF THEN ELSE
%token WHILE DO FOR TO
%token FUNCTION_CALL
%token ARRAY_ACCESS
%token COMMA
%token SEMICOLON
%token ARGUMENT
%token ANY // for read/write functions.
// %type <sval> subprogram_head
%type <tval> compound_statement
%type <tval> optional_statements
%type <tval> procedure_statement
%type <tval> statement_list
%type <tval> statement
%type <tval> variable
%type <tval> expression_list
%type <tval> expression
%type <tval> simple_expression
%type <tval> term
%type <tval> factor
%type <vp> identifier_list // a vector of ids (represented as strings)
%type <vp> type // a vector of types (represented as integers)
%type <vp> subprogram_declarations // a vector of scopes (which will have the same parent)
%type <vp> declarations // a pointer to a vector<Decls>
%type <vp> arguments // a pointer to a vector<Decls>
%type <vp> parameter_list
%type <vp> subprogram_declaration
%type <ival> standard_type
%%
program:
PROGRAM ID '(' identifier_list ')' ';'
declarations
subprogram_declarations
compound_statement
'.'
{
if (TREE_DBG) {
cerr << "line "<< lineno <<": PROGRAM " << $2 << ": " << endl;
$9->display(cerr, 0);
cerr << endl;
}
prog_scope = new Scope(string($2),
(vector<Decls>*) $7,
(vector<Scope*>*) $8,
$9);
TypeSignature ts;
ts.push_back(PROCEDURE);
ts.push_back(ANY);
vector<string> ids;
ids.push_back("read");
ids.push_back("write");
prog_scope->insert(ids,ts);
if (SCOPE_DBG)
prog_scope->display(cerr,0);
prog_scope->semantic_check();
/* ofstream o;
o.open("a.s");
prog_scope->top_prologue(o);
prog_scope->gencode(o); */
}
;
identifier_list
: ID
{
vector<string> *tmp = new vector<string>;
tmp->push_back(string($1));
$$ = tmp;
}
| identifier_list ',' ID
{
vector<string> *tmp = (vector<string>*) $1;
tmp->push_back(string($3));
$$ = tmp;
}
;
declarations
: declarations VAR identifier_list ':' type ';'
{
vector<Decls> *tmp = (vector<Decls>*) $1;
vector<string> *ids = (vector<string>*) $3;
TypeSignature *types = (TypeSignature*) $5;
tmp->push_back( make_pair(ids, types) );
$$ = tmp;
}
| /* empty */
{
$$ = new vector<Decls>;
}
;
type
: standard_type
{
TypeSignature *tmp = new TypeSignature;
tmp->push_back($1);
$$ = tmp;
}
| ARRAY '[' INUM DOTDOT INUM ']' OF standard_type
{
TypeSignature *tmp = new TypeSignature;
tmp->push_back(ARRAY);
tmp->push_back($3);
tmp->push_back($5);
tmp->push_back($8);
$$ = tmp;
}
;
standard_type
: INTEGER
{ $$ = INTEGER; }
| REAL
{ $$ = REAL; }
;
subprogram_declarations
: subprogram_declarations subprogram_declaration ';'
{
vector<Scope*> *tmp = (vector<Scope*>*) $1;
tmp->push_back((Scope*) $2);
$$ = tmp;
}
| /* empty */
{
$$ = new vector<Scope*>;
}
;
subprogram_declaration
// 1 2 3 4 5 6 7 8 9
: FUNCTION ID arguments ':' standard_type ';' declarations subprogram_declarations compound_statement
{
if (TREE_DBG) {
cerr << "line " << lineno << ": " << $2 << ":" << endl;
$9->display(cerr, 0);
cerr << endl;
}
string id = string($2);
vector<Decls>* args = (vector<Decls>*) $3;
vector<Decls>* decls = (vector<Decls>*) $7;
// construct the function entry. We'll push it up the scope tree later.
Decls tmp;
TypeSignature *fcn_type = new TypeSignature;
fcn_type->push_back(FUNCTION);
for (int i=0; i<args->size(); i++) {
tmp = (*args)[i];
for (int j=0; j<(tmp.first)->size(); j++) // for each arg of this type
for (int k=0; k<((tmp.second)->size())-1; k++) // push back the type, except the trailing ARGUMENT.
fcn_type->push_back( (*(tmp.second))[k] );
}
fcn_type->push_back($5); // the return type.
vector<Decls>* total = new vector<Decls>; // (id,fcn_type) + args + decls
// the function bit
vector<string> *fcn_id = new vector<string>;
fcn_id->push_back(id);
total->push_back( make_pair(fcn_id, fcn_type) );
// args
for (int i=0; i<args->size(); i++)
total->push_back( (*args)[i] );
// decls
for (int i=0; i<decls->size(); i++)
total->push_back( (*decls)[i] );
$$ = new Scope(id, total, (vector<Scope*>*) $8, $9);
}
| PROCEDURE ID arguments ';' declarations subprogram_declarations compound_statement
{ //yolo copy pasta swag i am so bad at this
if (TREE_DBG) {
cerr << "line " << lineno << ": " << $2 << ":" << endl;
$7->display(cerr, 0);
cerr << endl;
}
string id = string($2);
vector<Decls>* args = (vector<Decls>*) $3;
vector<Decls>* decls = (vector<Decls>*) $5;
// construct the function entry. We'll push it up the scope tree later.
Decls tmp;
TypeSignature *fcn_type = new TypeSignature;
fcn_type->push_back(PROCEDURE);
for (int i=0; i<args->size(); i++) {
tmp = (*args)[i];
for (int j=0; j<(tmp.first)->size(); j++) // for each arg of this type
for (int k=0; k<((tmp.second)->size())-1; k++) // push back the type, except the trailing ARGUMENT.
fcn_type->push_back( (*(tmp.second))[k] );
}
vector<Decls>* total = new vector<Decls>; // (id,fcn_type) + args + decls
// the function bit
vector<string> *fcn_id = new vector<string>;
fcn_id->push_back(id);
total->push_back( make_pair(fcn_id, fcn_type) );
// args
for (int i=0; i<args->size(); i++)
total->push_back( (*args)[i] );
// decls
for (int i=0; i<decls->size(); i++)
total->push_back( (*decls)[i] );
$$ = new Scope(id, total, (vector<Scope*>*) $6, $7);
}
;
arguments
: '(' parameter_list ')'
{
$$ = $2;
}
| /* empty */
{
$$ = new vector<Decls>;
}
;
parameter_list
: identifier_list ':' type
{
vector<Decls>* ret = new vector<Decls>;
vector<string> *t1 = (vector<string>*) $1;
TypeSignature *t2 = (TypeSignature*) $3;
t2->push_back(ARGUMENT);
ret->push_back( make_pair(t1, t2) );
$$ = ret;
}
| parameter_list ';' identifier_list ':' type
{
vector<Decls>* ret = (vector<Decls>*) $1;
vector<string> *t1 = (vector<string>*) $3;
TypeSignature *t2 = (TypeSignature*) $5;
t2->push_back(ARGUMENT);
ret->push_back( make_pair(t1, t2) );
$$ = ret;
}
;
/* statement */
compound_statement
: BBEGIN optional_statements END
{ $$ = $2; }
;
optional_statements
: statement_list
{ $$ = $1; }
| /* empty */
{
$$ = new Tree();
}
;
statement_list
: statement
{ $$ = $1; }
| statement_list ';' statement
{
$$ = new Tree( $1, SEMICOLON, $3);
}
;
statement
: variable ASSIGNOP expression
{
$$ = new Tree($1, ASSIGNOP, $3);
}
| procedure_statement
{ $$ = $1; }
| compound_statement
{ $$ = $1; }
// Note that IF x THEN y is the same as If x THEN y ELSE do-nothing
| IF expression THEN statement %prec IFX
{
$$ = new Tree($2, IF,
new Tree($4, ELSE, new Tree()));
}
| IF expression THEN statement ELSE statement
{
$$ = new Tree( $2, IF, new Tree($4, ELSE, $6));
}
| WHILE expression DO statement
{
$$ = new Tree($2, WHILE, $4);
}
| FOR variable ASSIGNOP expression TO expression DO statement
{
$$ = new Tree(new Tree($2,
ASSIGNOP,
new Tree($4, TO, $6)),
FOR,
$8);
}
;
variable
: ID
{ $$ = new Tree($1); }
| ID '[' expression ']'
{
$$ = new Tree(new Tree($1), ARRAY_ACCESS, $3);
}
;
procedure_statement
: ID
{ $$ = new Tree($1); }
| ID '(' expression_list ')'
{
$$ = new Tree(new Tree($1), FUNCTION_CALL, $3);
}
;
/* expression */
expression_list
: expression
{ $$ = $1; }
| expression_list ',' expression
{
$$ = new Tree($1, COMMA, $3);
}
;
expression
: simple_expression
{ $$ = $1; }
| expression RELOP simple_expression
{
$$ = new Tree( $1, $2, $3, RELOP);
}
;
simple_expression
: term
{ $$ = $1; }
| simple_expression ADDOP term
{
$$ = new Tree($1, $2, $3, ADDOP);
}
;
term
: factor
{ $$ = $1; }
| term MULOP factor
{
$$ = new Tree($1, $2, $3, MULOP);
}
;
factor
: ID
{ $$ = new Tree($1); }
| ID '[' expression ']'
{
$$ = new Tree(new Tree($1), ARRAY_ACCESS, $3);
}
| ID '(' expression_list ')'
{
$$ = new Tree(new Tree($1), FUNCTION_CALL, $3);
}
| INUM
{ $$ = new Tree($1); }
| RNUM
{ $$ = new Tree($1); }
| '(' expression ')'
{ $$ = $2; }
| NOT factor
{
$$ = new Tree($2, NOT, NULL);
}
;
%%
void yyerror(char* message) {
fprintf(stderr, "line %d, error: %s\n", lineno, message);
exit(1);
}
Scope *prog_scope, *current;
main() {
cerr << endl;
yyparse();
}