-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparser.y
More file actions
223 lines (185 loc) · 3.54 KB
/
parser.y
File metadata and controls
223 lines (185 loc) · 3.54 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
%{
#include <stdio.h>
#include <stdlib.h>
int yylex(void);
void yyerror(char *s);
int depth = 0;
extern int yylineno;
void scope_in(void) { depth++; printf("[SCOPE IN] Depth: %d\n", depth); }
void scope_out(void) { printf("[SCOPE OUT] Depth: %d\n", depth); depth--; }
%}
%token INT FLOAT CHAR DOUBLE BOOL CONST VOID
%token INTEGER BOOLEAN DECIMAL VARIABLE CHARACTER_LITERAL
%token WHILE IF ELSE FOR DO SWITCH CASE DEFAULT
%token BREAK CONTINUE RETURN
%token INC DEC
%token AND OR NOT
%token GE LE EQ NE
%token ADDASS MINASS MULASS DIVASS MODASS
%nonassoc IFX
%nonassoc ELSE
%right '=' ADDASS MINASS MULASS DIVASS MODASS
%left OR
%left AND
%left GE LE EQ NE '>' '<'
%left '+' '-'
%left '*' '/' '%'
%right '!' UMINUS
%left INC DEC
%%
program:
/* empty */
| program stmt_top
;
stmt_top:
func_def
| stmt_list
;
stmt_list:
stmt
| stmt_list stmt
;
stmt:
';'
| expr ';'
| FOR '(' for_init ';' opt_expr ';' opt_expr ')' stmt
| WHILE '(' expr ')' stmt
| DO stmt WHILE '(' expr ')' ';'
| IF '(' expr ')' stmt %prec IFX
| IF '(' expr ')' stmt ELSE stmt
| SWITCH '(' expr ')' '{' case_list '}'
| block
| BREAK ';'
| CONTINUE ';'
| RETURN expr ';'
| RETURN ';'
| type init_declarator_list ';'
| CONST type const_declarator_list ';'
;
for_init:
type init_declarator_list
| opt_expr
;
opt_expr
: expr_list
| /* empty */
;
expr_list
: expr
| expr_list ',' expr
;
expr:
INTEGER
| BOOLEAN
| DECIMAL
| CHARACTER_LITERAL
| lvalue
| lvalue '=' expr
| lvalue ADDASS expr
| lvalue MINASS expr
| lvalue MULASS expr
| lvalue DIVASS expr
| lvalue MODASS expr
| lvalue INC
| lvalue DEC
| INC lvalue
| DEC lvalue
| '!' expr
| '-' expr %prec UMINUS
| expr '+' expr
| expr '-' expr
| expr '*' expr
| expr '/' expr
| expr '%' expr
| expr '<' expr
| expr '>' expr
| expr GE expr
| expr LE expr
| expr NE expr
| expr EQ expr
| expr AND expr
| expr OR expr
| '(' expr ')'
| VARIABLE '(' arg_list_opt ')'
;
lvalue
: VARIABLE
| '(' lvalue ')'
;
type:
INT
| FLOAT
| CHAR
| DOUBLE
| BOOL
| VOID
;
init_declarator_list:
init_declarator
| init_declarator_list ',' init_declarator
;
init_declarator:
lvalue
| lvalue '=' expr
;
const_declarator_list:
const_item
| const_declarator_list ',' const_item
;
const_item:
lvalue '=' expr
;
case_list:
case_item
| case_list case_item
;
case_item:
CASE expr ':' stmt_list
| CASE expr ':'
| DEFAULT ':' stmt_list
| DEFAULT ':'
| /* empty */
;
/* functions --abosamrar*/
func_def:
type VARIABLE '(' param_list_opt ')' block
;
param_list_opt:
param_list
| /* empty */
;
param_list:
param
| param_list ',' param
;
param:
type VARIABLE
| type VARIABLE '=' expr /*3ashan el default*/
;
block:
'{' {scope_in();} block_list_opt '}' {scope_out();}
;
block_list_opt:
block_list
| /* empty */
;
block_list:
stmt
| block_list stmt
;
arg_list_opt:
arg_list
| /* empty */
;
arg_list:
expr
| arg_list ',' expr
;
%%
void yyerror(char *s) {
fprintf(stderr, "Error at line %d: %s\n", yylineno, s);
}
int main(void) {
yyparse();
return 0;
}