-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparse.c
More file actions
289 lines (265 loc) · 7.17 KB
/
Copy pathparse.c
File metadata and controls
289 lines (265 loc) · 7.17 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
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
/****************************************************/
/* File: parse.c */
/* The parser implementation for the TINY compiler */
/* Compiler Construction: Principles and Practice */
/* Kenneth C. Louden */
/****************************************************/
#include "globals.h"
#include "util.h"
#include "lexer.h"
#include "parse.h"
static TokenType token; /* holds current token */
/* function prototypes for recursive calls */
static TreeNode * stmt_sequence(void);
static TreeNode * statement(void);
static TreeNode * if_stmt(void);
static TreeNode * repeat_stmt(void);
static TreeNode * assign_stmt(void);
static TreeNode * read_stmt(void);
static TreeNode * write_stmt(void);
static TreeNode * myexp(void);
static TreeNode * simple_exp(void);
static TreeNode * term(void);
static TreeNode * factor(void);
static void syntaxError(char * message)
{ fprintf(listing,"\n>>> ");
fprintf(listing,"Syntax error at line %d: %s",lineno,message);
Error = TRUE;
}
/* This fuction can be called by the following fuctions. */
static void match(TokenType expected)
{ if (token == expected) token = getToken();
else {
syntaxError("unexpected token -> ");
printToken(token,tokenString);
fprintf(listing," ");
}
}
/* Each of the following functions represents the process of put one certain non-terminal character on the syntex tree as a node: */
/* You can write other functions referring to the format of the function stmt_sequence(void). */
//stmt_seq->stmt{stmt}
TreeNode * stmt_sequence(void)
{ TreeNode * t = statement();
TreeNode * p = t;
while ((token!=ENDFILE) && (token!=END) &&
(token!=ELSE) && (token!=UNTIL))
{ TreeNode * q;
//match(SEMI);
q = statement();
if (q!=NULL) {
if (t==NULL) t = p = q;
else /* now p cannot be NULL either */
{ p->sibling = q;
p = q;
}
}
}
return t;
}
// stmt->if_stmt | repeat_stmt | assign_stmt | read_stmt | write_stmt |
/*FIRST(stmt) = IF REPEAT ID READ WRITE
FIRST(if_stmt) = IF
FIRST(repeat_stmt) = REPEAT
FIRST(assign_stmt) = ID
FIRST(read_stmt) = READ
FIRST(write_stmt) = WRITE*/
TreeNode * statement(void)
{
TreeNode * tmp = NULL;
switch (token)
{
case IF:
tmp = if_stmt();break;
case REPEAT:
tmp = repeat_stmt();break;
case ID:
tmp = assign_stmt();break;
case READ:
tmp = read_stmt();break;
case WRITE:
tmp = write_stmt();break;
default:
syntaxError("unexpected token");
printToken(token, tokenString);
match(token);break;
}
return tmp;
}
//repeat_stmt->REPEAT stmt_seq UNTIL exp
TreeNode * repeat_stmt(void)
{
TreeNode* tmp = newStmtNode(RepeatK); //new repeat node
if(tmp == NULL) {syntaxError("Can not create new stmtnode.");return NULL;}
match(REPEAT);
tmp->child[0] = stmt_sequence();
match(UNTIL);
tmp->child[1] = myexp();
return tmp;
}
//if_stmt->IF exp THEN stmt_seq END | IF exp THEN stmt_seq ELSE stmt_seq END
/*if_stmt->IF exp THEN stmt_seq tmp
tmp->END | ELSE stmt_seq END
*/
TreeNode * if_stmt(void)
{
TreeNode* tmp = newStmtNode(IfK);
if(tmp == NULL) {syntaxError("Can not create new stmtnode.");return NULL;}
match(IF);
tmp->child[0] = myexp();
match(THEN);
tmp->child[1] = stmt_sequence();//
if(token == END)
match(END);
else if(token == ELSE)
{
match(ELSE);
tmp->child[2] = stmt_sequence();
match(END);
}
return tmp;
}
//assign_stmt->ID:=exp
TreeNode * assign_stmt(void)
{
TreeNode* tmp = newStmtNode(AssignK);
if(tmp == NULL) {syntaxError("Can not create new stmtnode.");return NULL;}
if(token == ID) tmp->attr.name = copyString(tokenString);
match(ID);
match(ASSIGN);
tmp->child[0] = myexp();
return tmp;
}
//read_stmt->READ ID
TreeNode * read_stmt(void)
{
TreeNode* tmp = newStmtNode(ReadK);
if(tmp == NULL) {syntaxError("Can not create new stmtnode.");return NULL;}
match(READ);
if(token == ID) tmp->attr.name = copyString(tokenString);
match(ID);
return tmp;
}
//write_stmt->WRITE exp
TreeNode * write_stmt(void)
{
TreeNode* tmp = newStmtNode(WriteK);
if(tmp == NULL) {syntaxError("Can not create new stmtnode.");return NULL;}
match(WRITE);
tmp->child[0] = myexp();
return tmp;
}
//exp->simple_exp<simple_exp | simple_exp=simple_exp | simple_exp
/*exp->simple_exp tmp
tmp-> < simple_exp | = simple_exp | epsilon
follow(exp) = follow(tmp) = ) THEN + follow(stmt_seq)
follow(stmt_seq) = first(stmt) + end until else $
first(stmt) = IF REPEAT ID READ WRITE
*/
TreeNode * myexp(void)
{
TreeNode* tmp = simple_exp();
if( token == LT || token == EQ)
{
TreeNode* tmp1 = newExpNode(OpK);
if(tmp1 == NULL) {syntaxError("Can not create new expnode."); return NULL;}
tmp1->attr.op = token;
tmp1->child[0] = tmp;
tmp = tmp1;
match(token);
tmp->child[1] = simple_exp();
return tmp;
}
else if (token != RPAREN && token != THEN && token != END && token != UNTIL
&& token != ELSE && token != ENDFILE && token != IF && token != REPEAT
&& token != ID && token != READ && token != WRITE)
{
syntaxError("unexpected token");
printToken(token, tokenString);
match(token);
}
return tmp;
}
//simple_exp->simple_exp+term | simple_exp-term | term
/*simple_exp-> simple_exp tmp | term
tmp-> + term | - term*/
/*simple_exp-> term { +|- term }*/
TreeNode * simple_exp(void)
{
TreeNode* tmp = term();
while (token == PLUS || token == MINUS)
{
TreeNode* tmp1 = newExpNode(OpK);
if(tmp1 == NULL) {syntaxError("Can not create new expnode."); return NULL;}
tmp1->child[0] = tmp;
tmp1->attr.op = token;
tmp = tmp1;
match(token);
tmp->child[1] = term();
}
return tmp;
}
//term->term*factor | term/factor | factor
/*term->factor{ *|/ factor }*/
TreeNode * term(void)
{
TreeNode* tmp = factor();
while (token == TIMES || token == OVER)
{
TreeNode* tmp1 = newExpNode(OpK);
if(tmp1 == NULL) {syntaxError("Can not create new expnode."); return NULL;}
tmp1->child[0] = tmp;
tmp1->attr.op = token;
tmp = tmp1;
match(token);
tmp1->child[1] = factor();
}
return tmp;
}
//factor->(exp) | NUM | ID
TreeNode * factor(void)
{
if(token == LPAREN)
{
match(LPAREN);
TreeNode* tmp = myexp();
match(RPAREN);
return tmp;
}
else if (token == NUM)
{
TreeNode* tmp = newExpNode(ConstK);
if(tmp == NULL) {syntaxError("Can not create new expnode."); return NULL;}
tmp->attr.val = atoi(tokenString);
match(NUM);
return tmp;
}
else if (token == ID)
{
TreeNode* tmp = newExpNode(IdK);
if(tmp == NULL) {syntaxError("Can not create new expnode."); return NULL;}
tmp->attr.name = copyString(tokenString);
match(ID);
return tmp;
}
else
{
syntaxError("unexpected token -> ");
printToken(token,tokenString);
match(token);
return NULL;
}
}
/****************************************/
/* the primary function of the parser */
/****************************************/
/* Function parse returns the newly
* constructed syntax tree
*/
TreeNode * parse(void)
{ TreeNode * t;
token = getToken(); /*get one token each time and parse it */
t = stmt_sequence();
if (token!=ENDFILE)
syntaxError("Code ends before file\n");
return t;
}