-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparse.cpp
More file actions
472 lines (429 loc) · 9.12 KB
/
parse.cpp
File metadata and controls
472 lines (429 loc) · 9.12 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
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
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
/* Implementation of Recursive-Descent Parser
* parse.cpp
*/
#include "parse.h"
map<string, bool> defVar;
map<string, Token> SymTable;
namespace Parser {
bool pushed_back = false;
LexItem pushed_token;
static LexItem GetNextToken(istream& in, int& line) {
if( pushed_back ) {
pushed_back = false;
return pushed_token;
}
return getNextToken(in, line);
}
static void PushBackToken(LexItem & t) {
if( pushed_back ) {
// cout<<"aborting";
abort();
}
pushed_back = true;
pushed_token = t;
}
}
static int error_count = 0;
int ErrCount()
{
return error_count;
}
void ParseError(int line, string msg)
{
++error_count;
cout << line << ": " << msg << endl;
}
//Decl = Type IdentList
//Type = INTEGER | REAL | CHAR
bool DeclStmt(istream& in, int& line) {
bool status = false;
LexItem tok;
//cout << "in Decl" << endl;
LexItem t = Parser::GetNextToken(in, line);
if(t == INT || t == FLOAT ) {
status = IdentList(in, line, t);
//cout<< "returning from IdentList" << " " << (status? 1: 0) << endl;
if (!status)
{
ParseError(line, "Incorrect variable in Declaration Statement.");
return status;
}
}
else{
Parser::PushBackToken(t);
ParseError(line, "Incorrect Type.");
return false;
}
return true;
}
bool Stmt(istream& in, int& line){
bool status=true;
//cout << "in Stmt" << endl;
LexItem t = Parser::GetNextToken(in, line);
switch( t.GetToken() ) {
case INT: case FLOAT:
Parser::PushBackToken(t);
status = DeclStmt(in, line);
if(!status)
{
ParseError(line, "Incorrect Declaration Statement.");
return status;
}
break;
case IF: case WRITE: case IDENT:
Parser::PushBackToken(t);
status = ControlStmt(in, line);
if(!status)
{
ParseError(line, "Incorrect control Statement.");
return status;
}
break;
default:
Parser::PushBackToken(t);
}
return status;
}
//WriteStmt:= wi, ExpreList
bool WriteStmt(istream& in, int& line) {
//LexItem t;
//cout << "in WriteStmt" << endl;
bool ex = ExprList(in, line);
if( !ex ) {
ParseError(line, "Missing expression after Write");
return false;
}
//Evaluate: print out the list of expressions values
return ex;
}
bool IdentList(istream& in, int& line, LexItem tok) {
LexItem t = Parser::GetNextToken(in, line);
if(t == IDENT){
if(defVar.find(t.GetLexeme()) != defVar.end()){
ParseError(line, "Variable Redefinition");
return false;
}
defVar[t.GetLexeme()] = true;
SymTable[t.GetLexeme()] = tok.GetToken();
t = Parser::GetNextToken(in, line);
while(t == COMMA){
t = Parser::GetNextToken(in, line);
if(t == IDENT){
if(defVar.find(t.GetLexeme()) != defVar.end()){
ParseError(line, "Variable Redefinition");
return false;
}
defVar[t.GetLexeme()] = true;
SymTable[t.GetLexeme()] = tok.GetToken();
t = Parser::GetNextToken(in, line);
} else{
Parser:: PushBackToken(t);
return false;
}
}
Parser::PushBackToken(t);
return true;
} else{
Parser::PushBackToken(t);
// ParseError(line, "Incorrect Identifiers");
return false;
}
}
bool ExprList(istream& in, int& line){
bool exp = Expr(in,line);
if(exp){
LexItem t = Parser::GetNextToken(in, line);
while(t == COMMA){
exp = Expr(in, line);
if(exp){
t = Parser::GetNextToken(in,line);
}
else{
ParseError(line, "Expression needed after cooma");
return false;
}
}
Parser::PushBackToken(t);
return true;
}
else {
ParseError(line, "Invalid expression");
return false;
}
}
bool Expr(istream& in, int& line){
bool term = Term(in,line);
if(term){
LexItem t = Parser::GetNextToken(in,line);
while(t == PLUS || t == MINUS){
term = Term(in,line);
if(term){
t = Parser::GetNextToken(in,line);
}
else{
ParseError(line, "Term needed after plus/minus operator");
return false;
}
}
Parser::PushBackToken(t);
return true;
}
else {
ParseError(line, "Invalid term");
return false;
}
}
bool Term(istream& in, int& line){
bool sfact = SFactor(in,line);
if(sfact){
LexItem t = Parser::GetNextToken(in,line);
while(t == MULT || t == DIV || t == REM){
sfact = SFactor(in,line);
if(sfact){
t = Parser::GetNextToken(in,line);
}
else {
ParseError(line, "SFactor needed after mult/div/rem operator");
return false;
}
}
Parser::PushBackToken(t);
}
return sfact;
}
bool SFactor(istream& in, int& line){
LexItem t = Parser::GetNextToken(in,line);
if(t == PLUS|| t == MINUS){
int sign;
if(t == PLUS)
sign = 1;
else
sign = -1;
bool fact= Factor(in, line, sign);
if(fact){
return true;
}
else{
ParseError(line,"Incomplete factor after plus/minus");
return false;
}
}
else {
Parser::PushBackToken(t);
bool fact = Factor(in,line, 0);
if(fact) {
return true;
}
else{
ParseError(line, "Incorrect Sfactor");
return false;
}
}
}
bool Factor(istream& in, int& line, int sign){
bool status = false;
LexItem t = Parser::GetNextToken(in,line);
switch(t.GetToken()){
case IDENT : case ICONST : case RCONST : case SCONST:
return true;
case LPAREN:
status = Expr(in,line);
if(!status){
ParseError(line, "Invalid expression");
return status;
}
t = Parser::GetNextToken(in, line);
if(t == RPAREN){
return status;
}
else{
ParseError(line, "Missing Right Parenthesis");
return false;
}
break;
default:
Parser::PushBackToken(t);
}
return status;
}
bool LogicExpr(istream& in, int& line){
bool expr = Expr(in,line);
if(expr){
LexItem t = Parser::GetNextToken(in,line);
if(t == GTHAN || t == EQUAL){
expr = Expr(in,line);
if(expr){
return true;
}
else{
return false;
}
}
else {
ParseError(line, "Invalid logical expression");
return false;
}
}
else{
ParseError(line,"Expression needed");
return false;
}
}
bool AssignStmt(istream& in, int& line){
bool curr = Var(in,line);
if(curr){
LexItem t = Parser::GetNextToken(in,line);
if(t == ASSOP){
curr = Expr(in,line);
return curr;
}
}
//ParseError(line, "Invalid assignment");
return false;
}
bool Var(istream& in, int& line){
LexItem t = Parser::GetNextToken(in,line);
if(t == IDENT){
return true;
}
else {
Parser::PushBackToken(t);
return false;
}
}
bool IfStmt(istream& in, int& line){
LexItem t = Parser::GetNextToken(in,line);
if(t == LPAREN){
bool logicexp = LogicExpr(in,line);
// cout<<"logic done";
if(!logicexp){
ParseError(line,"Incorrect Logical Expression inside IF");
return false;
}
t = Parser::GetNextToken(in,line);
// cout<<t;
if(t == RPAREN){
bool ctrl = ControlStmt(in,line);
if(!ctrl){
ParseError(line,"Missing control statement");
}
return ctrl;
} else{
ParseError(line,"Missing Right Parenthesis for IF");
Parser::PushBackToken(t);
return false;
}
}else{
ParseError(line, "Missing Left Parenthesis for IF");
Parser::PushBackToken(t);
return false;
}
}
bool ControlStmt(istream& in, int& line){
bool status=true;
//cout << "in Stmt" << endl;
LexItem t = Parser::GetNextToken(in, line);
switch( t.GetToken() ) {
case IF:
//Parser::PushBackToken(t);
status = IfStmt(in, line);
if(!status)
{
ParseError(line, "Incorrect if Statement.");
return status;
}
break;
case WRITE:
//Parser::PushBackToken(t);
status = WriteStmt(in, line);
if(!status)
{
ParseError(line, "Incorrect write Statement.");
return status;
}
break;
case IDENT:
Parser::PushBackToken(t);
status = AssignStmt(in,line);
if(!status){
ParseError(line,"Incorrect assignment statement");
return status;
}
break;
default:
Parser::PushBackToken(t);
}
return status;
}
bool StmtList(istream& in, int& line){
LexItem t = Parser::GetNextToken(in,line);
// cout<<t;
if(t == END){
Parser::PushBackToken(t);
return true;
}
Parser::PushBackToken(t);
bool stmt = Stmt(in,line);
if(stmt){
LexItem next = Parser::GetNextToken(in,line);
if(next == SEMICOL){
// cout<<"1 statment done"<<endl;
stmt = StmtList(in,line);
// cout<<stmt;
return stmt;
}
else {
Parser::PushBackToken(next);
// cout<<"m"<<endl;
ParseError(line, "Missing a semicolon");
return false;
}
}
else {
ParseError(line, "Missing a semicolon");
return false;
}
}
bool Prog(istream& in, int& line){
bool status = true;
LexItem t = Parser::GetNextToken(in,line);
if(t== DONE){
ParseError(line,"Empty File");
return false;
}
if(t == PROGRAM){
t = Parser::GetNextToken(in,line);
if(t == IDENT){
status = StmtList(in,line);
// cout<<"statement list successfult"<<endl;
if(!status){
ParseError(line,"Incorrect Syntax in the Program");
return status;
}
t = Parser::GetNextToken(in,line);
if(t == END){
t = Parser::GetNextToken(in,line);
if(t == PROGRAM){
return true;
}
else {
Parser::PushBackToken(t);
ParseError(line,"Missing PROGRAM at the End");
return false;
}
} else{
Parser::PushBackToken(t);
ParseError(line, "END statement missing");
return false;
}
} else {
Parser::PushBackToken(t);
ParseError(line, "Missing Program Name.");
return false;
}
} else{
Parser::PushBackToken(t);
ParseError(line,"Missing PROGRAM");
return false;
}
}