-
Notifications
You must be signed in to change notification settings - Fork 1
/
cparse.y
260 lines (224 loc) · 4.69 KB
/
cparse.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
/* YACC Specification for MINI C PARSER */
%{
#include <stdio.h>
#include <stdlib.h>
extern FILE *fp;
int err=0;
%}
%token INT FLOAT CHAR DOUBLE VOID
%token FOR WHILE DO
%token IF ELSE PRINTF RETURN BREAK CONTINUE DEFINE CASE SWITCH DEFAULT MAIN REAL
%token STRUCT UNION
%token NUM ID
%token INCLUDE
%token DOT
%token SPACE HASH
%right '='
%right '+'
%left AND OR
%left '<' '>' LE GE EQ NE LT GT
%%
/* c program structure */
start: multi_Declaration MainFunction
| include multi_Declaration MainFunction
| include MainFunction
| MainFunction
;
/* Multi declaration */
multi_Declaration:Declaration
|multi_Declaration Declaration
;
/* Declaration block */
Declaration: Type Assignment ';'
| Assignment ';'
| FunctionCall ';'
| ArrayUsage ';'
| Type ArrayUsage ';'
| StructStmt
| unionStmt
| error
;
/* Assignment block */
Assignment: ID '=' Assignment
| ID '=' FunctionCall
| ID '=' ArrayUsage
| ID '+''+'',' Assignment
| ID '-''-' ',' Assignment
| '+''+' ID ',' Assignment
| '-''-' ID ','Assignment
| ArrayUsage '=' Assignment
| ID ',' Assignment
| NUM ',' Assignment
| ID '+' Assignment
| ID '-' Assignment
| ID '*' Assignment
| ID '/' Assignment
| NUM '+' Assignment
| NUM '-' Assignment
| NUM '*' Assignment
| NUM '/' Assignment
| '\'' Assignment '\''
| '(' Assignment ')'
| '-' '(' Assignment ')'
| '-' NUM
| '-' ID
|ID '+''+'
|ID '-''-'
|'+''+' ID
|'-''-' ID
|NUM
|REAL
|ID
;
/* Macro or Preprocessor block */
include:'#' INCLUDE LT ID DOT ID GT
|'#' DEFINE ID NUM
|'#' DEFINE ID ID
|include '#' INCLUDE LT ID DOT ID GT
|include '#' DEFINE ID NUM
|include '#' DEFINE ID ID
;
/* Function Call Block */
FunctionCall : ID'('')'
| ID'('Assignment')'
;
/* Array Usage */
ArrayUsage : ID'['NUM']'
| ID'['NUM']''['NUM']'
;
/* Function block */
MainFunction: Type MAIN '(' ArgListOpt ')' CompoundStmt
;
/* Multi_Function */
ArgListOpt: ArgList
|
;
/* Argument List */
ArgList: ArgList ',' Arg
| Arg
;
/* Argument type */
Arg: Type ID
;
/* Compound statements */
CompoundStmt: '{' StmtList '}'
;
/* Statement List */
StmtList: StmtList Stmt
|
;
/* Statements */
Stmt: WhileStmt
| doWhileStmt
| multi_Declaration
| ForStmt
| IfStmt
| retStmt
| SwitchStmt
| PrintFunc
| ';'
;
/* Return Statement */
retStmt:RETURN '(' ID ')' ';'
|RETURN '(' NUM ')' ';'
;
loopStmt: Stmt
|breakStmt
|contStmt
;
/*loop Compound statements */
loopCompoundStmt: '{' loopStmtList '}'
;
/*loop Statement List */
loopStmtList: loopStmtList loopStmt
|
;
/* Break Statement */
breakStmt:BREAK ';';
/* Continue Statement */
contStmt:CONTINUE ';';
/* Type Identifier block */
Type: INT
| FLOAT
| CHAR
| DOUBLE
| VOID
;
/* While Loop Block */
WhileStmt: WHILE '(' Expr ')' loopStmt
| WHILE '(' Expr ')' loopCompoundStmt
;
/* Do While Loop Block */
doWhileStmt: DO loopStmt WHILE '(' Expr ')' ';'
| DO loopCompoundStmt WHILE '(' Expr ')' ';'
;
/* For Block */
ForStmt: FOR '(' Expr ';' Expr ';' Expr ')' loopStmt
| FOR '(' Expr ';' Expr ';' Expr ')' loopCompoundStmt
| FOR '(' Expr ')' loopStmt
| FOR '(' Expr ')' loopCompoundStmt
;
/* IfStmt Block */
IfStmt : IF '(' Expr ')'
Stmt
|IF '(' Expr ')' CompoundStmt
|IF '(' Expr ')' CompoundStmt ELSE CompoundStmt
|IF '(' Expr ')' CompoundStmt ELSE Stmt
;
/* Switch Statement */
SwitchStmt:SWITCH '(' ID ')' '{' CaseBlock '}'
|SWITCH '(' ID ')' '{' CaseBlock DEFAULT ':' loopCompoundStmt '}'
|SWITCH '(' ID ')' '{' CaseBlock DEFAULT ':' loopStmt '}'
;
/* Case Block */
CaseBlock:CASE NUM ':' loopCompoundStmt
|CASE NUM ':' loopStmt
|CaseBlock CASE NUM ':' loopCompoundStmt
|CaseBlock CASE NUM ':' loopStmt
;
/* Struct Statement */
StructStmt : STRUCT ID '{' multi_Declaration '}' ';'
| STRUCT ID '{' multi_Declaration '}' ID ';'
| STRUCT ID '{' multi_Declaration '}' ID '['NUM']' ';'
;
/* Union Statement */
unionStmt: UNION ID '{' multi_Declaration '}'
| UNION ID '{' multi_Declaration '}' ID ';'
| UNION ID '{' multi_Declaration '}' ID '['NUM']' ';'
;
/* Print Function */
PrintFunc : PRINTF '(' '"' print '"' ')' ';'
|PRINTF '(' '"' print '"' ',' print ')' ';'
;
print :ID print
|ID
;
/* Expression Block */
Expr:
| Expr LE Expr
| Expr GE Expr
| Expr NE Expr
| Expr EQ Expr
| Expr GT Expr
| Expr LT Expr
| Assignment
| ArrayUsage
;
%%
#include "lex.yy.c"
#include <ctype.h>
int count=0;
int main(int argc, char *argv[])
{
yyin = fopen(argv[1], "r");
if(!yyparse() && err==0)
printf("\nParsing Completed,no errors!\n");
else
printf("\nParsing Failed!!!\n");
fclose(yyin);
return 0;
}
yyerror(char *s) {
printf("%d : %s %s\n", yylineno, s, yytext );
err++;
}