-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparse.cpp
330 lines (255 loc) · 6.05 KB
/
parse.cpp
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
#include "parse.h"
#include "gettoken.h"
#include "tree.h"
static int error_count = 0;
void ParseError(int line, string msg)
{
++error_count;
cout << line + 1 << ": " << msg << endl;
}
ParseTree *Prog(istream &in, int &line)
{
ParseTree *sl = Slist(in, line);
if (GetToken::Get(in, line) != DONE)
ParseError(line, "Unrecognized statement");
if (sl == 0)
ParseError(line, "No statements in program");
if (error_count)
return 0;
return sl;
}
ParseTree *Slist(istream &in, int &line)
{
ParseTree *s = Stmt(in, line);
if (s == 0)
return 0;
Token t;
if ((t = GetToken::Get(in, line)) != SC && t != NL)
{
ParseError(line, "Missing statement separator");
return 0;
}
return new StmtList(s, Slist(in, line));
}
ParseTree *Stmt(istream &in, int &line)
{
ParseTree *s = 0;
Token t = GetToken::Get(in, line);
switch (t.GetTokenType())
{
case IF:
s = IfStmt(in, line);
break;
case PRINT:
s = PrintStmt(in, line);
break;
case SET:
s = SetStmt(in, line);
break;
case LOOP:
s = LoopStmt(in, line);
break;
case ERR:
ParseError(line, "Invalid token");
break;
case DONE:
break;
case NL:
case SC:
s = Stmt(in, line);
break;
default:
GetToken::PushBack(t);
break;
}
return s;
}
ParseTree *IfStmt(istream &in, int &line)
{
ParseTree *expression = Expr(in, line);
if (expression == 0)
{
ParseError(line, "Missing expression after if");
return 0;
}
Token t2 = GetToken::Get(in, line);
if (t2.GetTokenType() != BEGIN)
{
ParseError(line, "Missing BEGIN after expression");
return 0;
}
ParseTree *statement = Slist(in, line);
if (statement == 0)
{
ParseError(line, "Missing statement after BEGIN");
return 0;
}
Token t3 = GetToken::Get(in, line);
if (t3.GetTokenType() != END)
{
ParseError(line, "Missing END after statement");
return 0;
}
return new IfStatement(line, expression, statement);
}
ParseTree *LoopStmt(istream &in, int &line)
{
ParseTree *expression = Expr(in, line);
if (expression == 0)
{
ParseError(line, "Missing expression after loop");
return 0;
}
Token t2 = GetToken::Get(in, line);
if (t2.GetTokenType() != BEGIN)
{
ParseError(line, "Missing BEGIN after expression");
return 0;
}
ParseTree *statement = Slist(in, line);
if (statement == 0)
{
ParseError(line, "Missing statement list after BEGIN");
return 0;
}
Token t3 = GetToken::Get(in, line);
if (t3.GetTokenType() != END)
{
ParseError(line, "Missing END after statement THIS ONE");
return 0;
}
return new LoopStatement(line, expression, statement);
}
ParseTree *SetStmt(istream &in, int &line)
{
Token t = GetToken::Get(in, line);
if (t.GetTokenType() != ID)
{
ParseError(line, "Missing ID after set");
return 0;
}
ParseTree *expression = Expr(in, line);
if (expression == 0)
{
ParseError(line, "Missing expression after id");
return 0;
}
Token t2 = GetToken::Get(in, line);
if (t2.GetTokenType() == NL || t2.GetTokenType() == SC)
{
GetToken::PushBack(t2);
}
return new SetStatement(line, t.GetLexeme(), expression);
}
ParseTree *PrintStmt(istream &in, int &line)
{
ParseTree *expression = Expr(in, line);
if (expression == 0)
{
ParseError(line, "Missing expression after print");
return 0;
}
Token t1 = GetToken::Get(in, line);
if (t1.GetTokenType() == NL || t1.GetTokenType() != SC)
{
GetToken::PushBack(t1);
}
else
{
GetToken::PushBack(t1);
}
return new PrintStatement(line, expression);
}
ParseTree *Expr(istream &in, int &line)
{
ParseTree *t1 = Prod(in, line);
if (t1 == 0)
{
return 0;
}
while (true)
{
Token t = GetToken::Get(in, line);
if (t != PLUS && t != MINUS)
{
GetToken::PushBack(t);
return t1;
}
ParseTree *t2 = Prod(in, line);
if (t2 == 0)
{
ParseError(line, "Missing expression after operator");
return 0;
}
if (t == PLUS)
t1 = new Addition(t.GetLinenum(), t1, t2);
else
t1 = new Subtraction(t.GetLinenum(), t1, t2);
}
return t1;
}
ParseTree *Prod(istream &in, int &line)
{
ParseTree *t1 = Primary(in, line);
if (t1 == 0)
{
return 0;
}
while (true)
{
Token t = GetToken::Get(in, line);
if (t != STAR && t != SLASH)
{
GetToken::PushBack(t);
return t1;
}
ParseTree *t2 = Primary(in, line);
if (t2 == 0)
{
ParseError(line, "Missing expression after operator");
return 0;
}
if (t == STAR)
{
t1 = new Multiplication(t.GetLinenum(), t1, t2);
}
else if (t == SLASH)
{
t1 = new Division(t.GetLinenum(), t1, t2);
}
}
return t1;
}
ParseTree *Primary(istream &in, int &line)
{
Token t = GetToken::Get(in, line);
if (t.GetTokenType() == ID)
{
return new Ident(t);
}
else if (t.GetTokenType() == ICONST)
{
return new IConst(line, stoi(t.GetLexeme()));
}
else if (t.GetTokenType() == SCONST)
{
return new SConst(line, t.GetLexeme());
}
else if (t.GetTokenType() == LPAREN)
{
ParseTree *expression = Expr(in, line);
if (expression == 0)
{
return 0;
}
t = GetToken::Get(in, line);
if (t.GetTokenType() != RPAREN)
{
ParseError(line, "Missing ) after expression");
return 0;
}
return expression;
}
ParseError(line, "Primary expected");
return 0;
}