-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathparser.c
More file actions
511 lines (391 loc) · 7.91 KB
/
parser.c
File metadata and controls
511 lines (391 loc) · 7.91 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
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
// Compiler Builder 8
// Lester Young
// Timothy Konzel
// Remington Howell
// Johnathan Sattler
// John Herold
// Included libraries
#include "parser.h"
symbol symbolTable[MAX_SYMBOL_TABLE_SIZE];
instruction code[MAX_CODE_LENGTH];
tok * tokenList;
int token;
int numError = 0;
int cx = 0;
int numSym = 0;
char * identName;
int identVal;
int relOpCode;
int numVar = 0;
// execute the program
int program(tok * allTokens, const char * outputFileName, int pm0) {
int i;
tokenList = allTokens;
printf("\n");
advance();
block();
eat(periodsym);
// halt the program
emit(SIO, 0, SIO_HLT);
// print out PM/0 code if requested, and write the output file
if (numError == 0) {
if (pm0) {
printAssembly(code, cx);
printf("\n");
}
writeFile(outputFileName, code, cx);
}
return numError;
}
// run a block of the program
void block() {
constDeclaration();
varDeclaration();
emit(INC, 0, 4 + numVar);
statement();
}
// define constants
void constDeclaration() {
char * name;
int val;
if (token == constsym) {
do {
advance();
name = identName;
eat(identsym);
eat(eqlsym);
val = identVal;
eat(numbersym);
addSymbol(1, name, val, 0, val);
} while (token == commasym);
eat(semicolonsym);
}
}
// define variables
void varDeclaration() {
char * name;
if (token == varsym) {
do {
advance();
name = identName;
eat(identsym);
addSymbol(2, name, 0, 0, 4 + numVar);
numVar++;
} while (token == commasym);
eat(semicolonsym);
}
}
// looks for a statement
void statement() {
int cx1;
int cx2;
char * name;
int i;
int m;
// look for an identsym
if (token == identsym) {
name = identName;
i = symbolExists(name);
// if the identifier isn't defined, return an error
if (i < 0)
error(-5);
else
m = symbolTable[i].addr;
advance();
eat(becomessym);
expression();
// if the identifier isn't a variable, return an error
if (symbolTable[i].kind == 2)
emit(STO, 0, m);
else
error(-6);
}
// look for a beginsym
else if (token == beginsym) {
do {
advance();
statement();
} while (token == semicolonsym);
eat(endsym);
}
// look for an ifsym
else if (token == ifsym) {
advance();
condition();
eat(thensym);
cx1 = cx;
emit(JPC, 0, 0);
statement();
code[cx1].m = cx;
}
// look for a whilesym
else if (token == whilesym) {
cx1 = cx;
advance();
condition();
cx2 = cx;
emit(JPC, 0, 0);
eat(dosym);
statement();
emit(JMP, 0, cx1);
code[cx2].m = cx;
}
// look for a readsym
else if (token == readsym) {
advance();
name = identName;
i = symbolExists(name);
// if the identifier isn't defined, return an error
if (i < 0)
error(-5);
else
m = symbolTable[i].addr;
eat(identsym);
emit(SIO, 0, SIO_INP);
emit(STO, 0, m);
}
// look for a writesym
else if (token == writesym) {
advance();
name = identName;
i = symbolExists(name);
// if the identifier isn't defined, return an error
if (i < 0)
error(-5);
else
m = symbolTable[i].addr;
eat(identsym);
if (symbolTable[i].kind == 1)
emit(LIT, 0, m);
else
emit(LOD, 0, m);
emit(SIO, 0, SIO_OUT);
}
}
// look for a condition
void condition() {
// determine if the condition begins with an oddsym
if (token == oddsym) {
advance();
expression();
emit(OPR, 0, OPR_ODD);
} else {
expression();
relOp();
expression();
emit(OPR, 0, relOpCode);
}
}
// look for a relop
void relOp() {
// determines which operator is being used,
// if an unknown one is used, return an error
if (token == eqlsym)
relOpCode = OPR_EQL;
else if (token == neqsym)
relOpCode = OPR_NEQ;
else if (token == lessym)
relOpCode = OPR_LSS;
else if (token == leqsym)
relOpCode = OPR_LEQ;
else if (token == gtrsym)
relOpCode = OPR_GTR;
else if (token == geqsym)
relOpCode = OPR_GEQ;
else
error(-1);
advance();
}
// look for an expression
void expression() {
int addop;
// check if the expression begins with a plussym or minussym
if (token == plussym || token == minussym) {
addop = token;
advance();
term();
if (addop == minussym)
emit(OPR, 0, OPR_NEG); // negate
} else {
term();
}
// loop for every plussym or minussym
while (token == plussym || token == minussym) {
addop = token;
advance();
term();
if (addop == plussym)
emit(OPR, 0, OPR_ADD); // addition
else
emit(OPR, 0, OPR_SUB); // subtraction
}
}
// look for a term
void term() {
int mulop;
factor();
// loop for every multsym and slashsym
while (token == multsym || token == slashsym) {
mulop = token;
advance();
factor();
if (mulop == multsym)
emit(OPR, 0, OPR_MUL); // multiplication
else
emit(OPR, 0, OPR_DIV); // division
}
}
// look for a factor
void factor() {
char * name;
int i, m;
// check for an identsym
if (token == identsym) {
name = identName;
i = symbolExists(name);
// if the identifier isn't defined, return an error
if (i < 0)
error(-5);
else
m = symbolTable[i].addr;
advance();
if (symbolTable[i].kind == 1)
emit(LIT, 0, m);
else
emit(LOD, 0, m);
}
// look for a number
else if (token == numbersym) {
m = identVal;
advance();
emit(LIT, 0, m);
}
// look for an lparentsym
else if (token == lparentsym) {
advance();
expression();
eat(rparentsym);
}
// if unkown symbol encountered, return an error
else {
error(-2);
}
}
// move to the next token
void advance() {
if (tokenList == NULL) {
token = 0;
return;
}
token = tokenList -> id;
if (token == identsym)
identName = tokenList -> str;
else if (token == numbersym)
identVal = tokenList -> number;
tokenList = tokenList -> next;
}
// Error messages for Tiny PL0/Parser, prints and stops compilation process if encountered
void error(int num) {
numError++;
printf("Error(%d): ", num);
switch (num) {
case -6:
printf("Assignment to constant or procedure is not allowed.");
break;
case -5:
printf("Undeclared identifier (%s)", identName);
break;
case -4:
printf("too many symbols");
break;
case -3:
printf("code too long");
break;
case -2:
printf("the preceding factor cannot begin with this symbol.");
break;
case -1:
printf("relational operator expected.");
break;
case 0:
printf("code ended abruptly.");
break;
case 2: // identsym
printf("const, var, procedure must be followed by identifier.");
break;
case 3: // numbersym
printf("= must be followed by a number.");
break;
case 9: // eqlsym
printf("Identifier must be followed by =.");
break;
case 16: // rparentsym
printf("expected right parenthesis");
break;
case 18: // semicolonsym
printf("semicolon expected");
break;
case 19: // periodsym
printf("period expected");
break;
case 20: // becomesym
if (token == eqlsym) {
printf("use = instead of :=");
} else {
printf("expected :=");
}
break;
case 22: // endsym
printf("end expected");
break;
case 24: // thensym
printf("then expected");
break;
case 26: // dosym
printf("do expected.");
break;
default:
printf("unkown error");
break;
}
printf("\n");
exit(1);
}
// checks for a token. If token isn't found, error function is called.
void eat(int id) {
if (token != id)
error(id);
advance();
}
// create a line of PM/0 code
void emit(int op, int l, int m) {
if (cx > MAX_CODE_LENGTH) {
error(-3);
} else {
code[cx].op = op;
code[cx].l = l;
code[cx].m = m;
cx++;
}
}
// check if a symbol is defined
int symbolExists(char * name) {
int i;
for (i = 0; i < numSym; i++)
if (strcmp(symbolTable[i].name, name) == 0)
return i;
return -1;
}
// add a symbol to the symbol table
void addSymbol(int kind, char * name, int val, int level, int addr) {
if (numSym > MAX_SYMBOL_TABLE_SIZE) {
error(-4);
} else {
symbolTable[numSym].kind = kind;
strcpy(symbolTable[numSym].name, name);
symbolTable[numSym].val = val;
symbolTable[numSym].level = level;
symbolTable[numSym].addr = addr;
numSym++;
}
}