-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparser.c
More file actions
455 lines (425 loc) · 9.12 KB
/
Copy pathparser.c
File metadata and controls
455 lines (425 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
#include "structure.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
static int tokenType;//current token type
static int tokenNum;//current token value
static char tokenId[12];//current token name, 12 can be fixed later
static lexemeToken* curToken;//current token pointer
static instruction* code;//return type, a instruction set [op, r, l, m]
static int cdx = 0;//current code index
static int level = -1;//current level
static int rdx = 0;//current register index
//static int addr = 4;//current address for var or proc
static int sdx = 0;//current symbol table index(current symbol table size)
static symbol symbolTable[MAX_SYMBOL_TABLE_SIZE];
static int halt = 0;
//assume no variable conflict
int findSymbol(char name[]){
int position = -1;
for(int i = 0; i < sdx; i++){
if(strcmp(symbolTable[i].name, name) == 0){
position = i;
break;
}
}
return position;
}
//get next token in the token list
void getToken(){
tokenType = curToken -> tokenType;
//printf("%d ", tokenType);
if(tokenType == identsym){
strcpy(tokenId, curToken -> lexeme);
//printf("%s", tokenId);
}else if(tokenType == numbersym){
tokenNum = atoi(curToken -> lexeme);
//printf("%d", tokenNum);
}
//printf("\n");
curToken = curToken -> next;
}
void program(){
//emit(6, 0, 0, 7);
if(halt != 1){
getToken();
block();
if(tokenType != periodsym){
printf("Error: periodsym missing\n");
halt = 1;
}else{
emit(9, 0, 0, 3);
}
}
}
void block(){
if(halt != 1){
level++;
//const
if(tokenType == constsym){
do{
symbolTable[sdx].kind = 1;
getToken();
if(tokenType != identsym){
printf("Error: identsym missing\n");
halt = 1;
}else{
strcpy(symbolTable[sdx].name, tokenId);
getToken();
if(tokenType != eqsym){
printf("Error: eqsym missing\n");
halt = 1;
}else{
getToken();
if(tokenType != numbersym){
printf("Error: numbersym missing\n");
halt = 1;
}else{
//generate const value
symbolTable[sdx].val = tokenNum;
sdx++;
getToken();
}
}
}
}while(tokenType == commasym);
if(tokenType != semicolonsym){
printf("Error: semicolonsym missing\n");
halt = 1;
}else{
getToken();
}
}
//var
int addrOfVar = 4;
if(tokenType == varsym){
do{
symbolTable[sdx].kind = 2;
getToken();
if(tokenType != identsym){
printf("Error: identsym missing\n");
halt = 1;
}else{
strcpy(symbolTable[sdx].name, tokenId);
symbolTable[sdx].level = level;
symbolTable[sdx].addr = addrOfVar;
addrOfVar++;
//addr++;
sdx++;
getToken();
}
}while(tokenType == commasym);
if(tokenType != semicolonsym){
printf("Error: semicolonsym missing\n");
halt = 1;
}else{
getToken();
}
}
emit(6, 0, 0, addrOfVar);
//never reach here for homework3
//procedure
while(tokenType == procsym){
symbolTable[sdx].kind = 3;
getToken();
if(tokenType != identsym){
printf("Error: identsym missing\n");
halt = 1;
}else{
strcpy(symbolTable[sdx].name, tokenId);
symbolTable[sdx].addr = cdx;
//addrOfVar++;
//addr++;
sdx++;
getToken();
if(tokenType != semicolonsym){
printf("Error: semicolonsym missing\n");
halt = 1;
}else{
getToken();
block();
if(tokenType != semicolonsym){
printf("Error: semicolonsym missing\n");
halt = 1;
}else{
getToken();
}
}
}
}
statement();
level--;
}
}
void statement(){
if(halt != 1){
if(tokenType == identsym){
int i = findSymbol(tokenId);
if(i == -1){
printf("Error: Undeclared identify\n");
halt = 1;
}else if(symbolTable[i].kind != 2){
printf("Error: Assignment to constant or procedure is not allowed\n");
halt = 1;
}
else{
getToken();
if(tokenType != becomessym){
printf("Error: becomessym missing\n");
halt = 1;
}else{
getToken();
expression();
//the final result is always in register 0???
emit(4, 0, symbolTable[i].level, symbolTable[i].addr);
rdx--;
}
}
}else if(tokenType == callsym){
emit(6, 0, 0, 4);
getToken();
if(tokenType != identsym){
printf("Error: not identsym\n");
halt = 1;
}else{
int i = findSymbol(tokenId);
if(i == -1){
printf("Error: Undeclared identify\n");
halt = 1;
}else{
if(symbolTable[i].kind != 3){
printf("Error: call a constant or variable\n");
halt = 1;
}else{
emit(5, 0, symbolTable[i].level, symbolTable[i].addr);
getToken();
}
}
}
}else if(tokenType == beginsym){
getToken();
statement();
while(tokenType == semicolonsym){
getToken();
statement();
}
if(tokenType != endsym){
printf("Error: endsym missing\n");
halt = 1;
}else{
getToken();
}
}else if(tokenType == ifsym){
getToken();
condition();
if(tokenType != thensym){
printf("Error: not thensym\n");
halt = 1;
}else{
getToken();
int ctemp = cdx;
emit(8, 0, 0, 0);
statement();
code[ctemp].m = cdx;
}
}else if(tokenType == whilesym){
int cx1 = cdx;
getToken();
condition();
int cx2 = cdx;
emit(8, 0, 0, 0);
if(tokenType != dosym){
printf("Error: not dosym\n");
halt = 1;
}else{
getToken();
statement();
emit(7, 0, 0, cx1);
code[cx2].m = cdx;
}
}else if(tokenType == readsym){
getToken();
if(tokenType != identsym){
printf("Error: identsym missing\n");
halt = 1;
}else{
int i = findSymbol(tokenId);
emit(9, 0, 0, 2);
emit(9, 0, symbolTable[i].level, symbolTable[i].addr);
getToken();
}
}else if(tokenType == writesym){
getToken();
if(tokenType != identsym){
printf("Error: identsym missing\n");
halt = 1;
}else{
int i = findSymbol(tokenId);
emit(3, 0, symbolTable[i].level, symbolTable[i].addr);
emit(9, 0, 0, 1);
getToken();
}
}
}
}
void condition(){
if(halt != 1){
if(tokenType == oddsym){
getToken();
expression();
//not sure about the register
emit(15, 0, 0, 0);
}else{
expression();
if(tokenType < 9 || tokenType > 14){
printf("Error: not rel-op\n");
halt = 1;
}else{
int relOp = tokenType;
getToken();
expression();
switch(relOp){
case 9:
//register arrangement
emit(17, 0, rdx-2, rdx-1);
break;
case 10:
emit(18, 0, rdx-2, rdx-1);
break;
case 11:
emit(19, 0, rdx-2, rdx-1);
break;
case 12:
emit(20, 0, rdx-2, rdx-1);
break;
case 13:
emit(21, 0, rdx-2, rdx-1);
break;
case 14:
emit(22, 0, rdx-2, rdx-1);
break;
}
rdx -= 2;
}
}
}
}
void expression(){
if(halt != 1){
int addop;
if(tokenType == plussym || tokenType == minussym){
addop = tokenType;
getToken();
term();
if(addop == minussym)
emit(10, rdx-1, 0 ,0);
}else{
term();
}
while(tokenType == plussym || tokenType == minussym){
addop = tokenType;
getToken();
term();
if(addop == plussym){
emit(11, rdx-2, rdx-2, rdx-1);
}else{
emit(12, rdx-2, rdx-2, rdx-1);
}
rdx--;
}
}
}
void term(){
if(halt != 1){
int mulop;
factor();
while(tokenType == multsym || tokenType == slashsym){
mulop = tokenType;
getToken();
factor();
if(mulop == multsym){
emit(13, rdx-2, rdx-2, rdx-1);
}else{
emit(14, rdx-2, rdx-2, rdx-1);
}
rdx--;
}
}
}
void factor(){
if(halt != 1){
if(tokenType == identsym){
int i = findSymbol(tokenId);
if(i == -1){
printf("Error: Undeclared identify\n");
halt = 1;
}else if(symbolTable[i].kind == 3){
printf("Error: expression must not contain a procedure\n");
halt = 1;
}else{
if(symbolTable[i].kind == 1){
emit(1, rdx, 0, symbolTable[i].val);
}else{
emit(3, rdx, symbolTable[i].level, symbolTable[i].addr);
}
rdx++;
getToken();
}
}else if(tokenType == numbersym){
emit(1, rdx, 0, tokenNum);
getToken();
rdx++;
}else if(tokenType == lparentsym){
getToken();
expression();
if(tokenType != rparentsym){
printf("Error: right parenthesis missing\n");
halt = 1;
}else{
getToken();
}
}
}
}
void emit(int op, int r, int l, int m){
if(halt != 1){
if(cdx > MAX_CODE_LENGTH){
printf("Error: code too long\n");
halt = 1;
}else{
code[cdx].op = op;
code[cdx].r = r;
code[cdx].l = l;
code[cdx].m = m;
cdx++;
}
}
}
void printAssembly(){
if(halt != 1){
printf("Code is syntactically correct. Assembly code generated successfully.\n");
printf("-------------------------------------------\n");
printf("GENERATED INTERMEDIATE CODE:\n");
for(int i = 0; i < cdx; ++i){
printf("%3d %s %d %d %d\n", i, OpName[code[i].op - 1], code[i].r, code[i].l, code[i].m);
}
printf("\n\n");
}else{
printf("Assembly generation is terminated by error\n");
printf("-------------------------------------------\n\n\n");
}
}
instruction* parser(lexemeToken* token){
if(token != NULL){
curToken = token -> next;
code = malloc(sizeof(instruction) * MAX_CODE_LENGTH);
program();
if(halt == 0)
return code;
else
return NULL;
}
else
return NULL;
}