-
Notifications
You must be signed in to change notification settings - Fork 5
/
cminus.txt
395 lines (354 loc) · 10.3 KB
/
cminus.txt
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
%{
#define YYPARSER
#include "globals.h"
#include "util.h"
#include "scan.h"
#include "parse.h"
#include <stdio.h>
#include <string.h>
#define YYSTYPE TreeNode *
int yyerror(char * message);
static char * savedName; /* for use in assignments */
static int savedLineNo; /* ditto */
static TreeNode * parseTree; /* stores syntax tree for later return */
static int yylex(void);
%}
%start program
%token ID NUM
%token SEMI COMMA
%token IF INT ELSE RETURN VOID WHILE
%token ASSIGN EQUAL LT LTEQ GT GTEQ DIFF
%token LPAREN RPAREN LBRACKETS RBRACKETS LKEY RKEY
%left PLUS MINUS
%left TIMES OVER
%token ERROR
%expect 1
%% /* Grammar for C- */
program : declaration_list
{parseTree = $1;}
;
//BEGIN FUCTION
declaration_list : declaration { $$ = $1; }
| declaration_list declaration
{
YYSTYPE t = $1;
if ( t != NULL )
{
while( t->sibling != NULL )
t = t->sibling;
t->sibling = $2;
$$ = $1;
} else $$ = $2;
}
;
declaration : var_declaration { $$ = $1; }
| fun_declaration { $$ = $1; }
;
var_declaration : type_specifier id SEMI
{
$$ = $1;
$$->child[0] = $2;
}
| type_specifier id LBRACKETS num RBRACKETS SEMI
{
$$ = $1;
$2->is_vector = 1;
$$->child[0] = $2;
$2->child[0] = $4;
}
;
type_specifier : INT
{
$$ = newExpNode(TypeK);
$$->type=Integer;
$$->attr.name = copyString(tokenString);
}
| VOID
{
$$ = newExpNode(TypeK);
$$->type=Void;
$$->attr.name = copyString(tokenString);
}
;
fun_declaration : type_specifier id LPAREN params RPAREN compound_stmt
{
$$ = newStmtNode(FuncK);
$$->attr.name = $2->attr.name;
$$->child[0] = $4;
$$->child[1] = $6;
if (!strcmp($1->attr.name,"int"))
$$->type = Integer;
else
$$->type = Void;
}
;
params : param_list
{
$$ = newStmtNode(ParamsK);
$$->child[0] = $1;
}
| VOID
{ $$ = NULL; }
|
{ $$ = NULL; }
;
param_list : param_list COMMA param
{
YYSTYPE t = $1;
if (t != NULL)
{
while (t->sibling != NULL)
t = t->sibling;
t->sibling = $3;
$$ = $1;
} else $$ = $3;
}
| param
{ $$ = $1; }
;
param : type_specifier id
{
$$ = $1;
$$->child[0] = $2;
$2->is_vector = 0;
}
| type_specifier id LBRACKETS RBRACKETS
{
$$ = $1;
$$->child[0] = $2;
$2->is_vector = 1;
}
;
compound_stmt : LKEY local_declarations statement_list RKEY
{
YYSTYPE t = $2;
if (t != NULL)
{
while (t->sibling != NULL)
t = t->sibling;
t->sibling = $3;
$$ = $2;
} else $$ = $3;
}
;
local_declarations : local_declarations var_declaration
{
YYSTYPE t = $1;
if (t != NULL)
{
while (t->sibling != NULL)
t = t->sibling;
t->sibling = $2;
$$ = $1;
} else $$ = $2;
}
| empty {$$ = NULL;}
;
//END FUNCTION
statement_list : statement_list statement
{
YYSTYPE t = $1;
if ( t != NULL )
{
while( t->sibling != NULL )
t = t->sibling;
t->sibling = $2;
$$ = $1;
} else $$ = $2;
}
| empty { $$ = NULL; }
;
statement : expression_stmt { $$ = $1; }
| compound_stmt { $$ = $1; }
| selection_stmt { $$ = $1; }
| iteration_stmt { $$ = $1; }
| return_stmt { $$ = $1; }
;
expression_stmt : expression SEMI
{$$ = $1;}
| SEMI
{$$ = NULL;}
;
selection_stmt : IF LPAREN expression RPAREN statement
{
$$ = newStmtNode(IfK);
$$->child[0] = $3;
$$->child[1] = $5;
}
| IF LPAREN expression RPAREN statement ELSE statement
{
$$ = newStmtNode(IfK);
$$->child[0] = $3;
$$->child[1] = $5;
$$->child[2] = $7;
}
;
iteration_stmt : WHILE LPAREN expression RPAREN statement
{
$$ = newStmtNode(WhileK);
$$->child[0] = $3;
$$->child[1] = $5;
}
;
return_stmt : RETURN SEMI
{ $$ = newStmtNode(ReturnK); }
| RETURN expression SEMI
{
$$ = newStmtNode(ReturnK);
$$->child[0] = $2;
}
;
expression : var ASSIGN expression
{ $$ = newStmtNode(AssignK);
$$->child[0] = $1;
$$->child[1] = $3;
}
| simple_expression
{ $$ = $1; }
;
var : id
{
$$ = $1;
$1->is_vector = 0;
}
| id LBRACKETS expression RBRACKETS
{
$$ = newExpNode(VectorK);
$$->attr.name = $1->attr.name;
$$->is_vector = 1;
$$->child[0] = $3;
}
;
simple_expression : additive_expression relop additive_expression
{
$$ = newExpNode(OpK);
$$->attr.op = $2->attr.op;
$$->child[0] = $1;
$$->child[1] = $3;
}
| additive_expression { $$ = $1; }
;
relop : LTEQ {
$$ = newExpNode(OpK);
$$->attr.op = LTEQ;
}
| LT {
$$ = newExpNode(OpK);
$$->attr.op = LT;
}
| GT {
$$ = newExpNode(OpK);
$$->attr.op = GT;
}
| GTEQ {
$$ = newExpNode(OpK);
$$->attr.op = GTEQ;
}
| EQUAL {
$$ = newExpNode(OpK);
$$->attr.op = EQUAL;
}
| DIFF {
$$ = newExpNode(OpK);
$$->attr.op = DIFF;
}
;
additive_expression : additive_expression PLUS term
{
$$ = newExpNode(OpK);
$$->child[0] = $1;
$$->child[1] = $3;
$$->attr.op = PLUS;
}
| additive_expression MINUS term
{
$$ = newExpNode(OpK);
$$->child[0] = $1;
$$->child[1] = $3;
$$->attr.op = MINUS;
}
| term { $$ = $1; }
;
term : term TIMES factor
{
$$ = newExpNode(OpK);
$$->child[0] = $1;
$$->child[1] = $3;
$$->attr.op = TIMES;
}
| term OVER factor
{
$$ = newExpNode(OpK);
$$->child[0] = $1;
$$->child[1] = $3;
$$->attr.op = OVER;
}
| factor { $$ = $1; }
;
factor : LPAREN expression RPAREN
{ $$ = $2; }
| var
{$$ = $1;}
| call
{$$ = $1;}
| num
{$$ = $1;}
;
//*************BEGIN CALL FUCTION ***************
call : id LPAREN args RPAREN
{
$$ = newStmtNode(CallK);
$$->attr.name = $1->attr.name;
$$->child[0] = $3;
}
;
args : arg_list
{ $$ = $1; }
| empty
;
arg_list : arg_list COMMA expression
{
YYSTYPE t = $1;
if (t != NULL)
{
while (t->sibling != NULL)
t = t->sibling;
t->sibling = $3;
$$ = $1;
} else $$ = $3;
}
| expression
{ $$ = $1; }
;
//*************END CALL FUCTION ***************
id : ID
{
$$ = newExpNode(IdK);
$$->attr.name = copyString(tokenString);
}
;
num : NUM
{
$$ = newExpNode(ConstK);
$$->attr.val = atoi(copyString(tokenString));
}
;
empty : { $$ = NULL; }
;
%%
int yyerror(char * message)
{ fprintf(listing,"Syntax error at line %d: %s\n",lineno,message);
fprintf(listing,"Current token: ");
printToken(yychar,tokenString);
Error = TRUE;
return 0;
}
/* yylex calls getToken to make Yacc/Bison output
* compatible with ealier versions of the TINY scanner
*/
static int yylex(void)
{ return getToken(); }
TreeNode * parse(void)
{ yyparse();
return parseTree;
}