-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtypecheck.c
484 lines (460 loc) · 12.5 KB
/
typecheck.c
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
//g -> global lookup
//l -> local lookup
//a -> Arg Lookup
//t -> type
struct Fieldlist *ftemp;
int verify(struct ASTNode *node, int g, int l, int a, struct Typetable *t)
{
if (l)
{
Ltemp = LLookup(node->name);
if (Ltemp != NULL)
{
yyerror("Re initialization of variable\n");
exit(1);
}
}
if (a)
{
Argtemp = PLookup(node->name);
if (Argtemp != NULL)
{
yyerror("Re initialization of variable in paramlist\n");
exit(1);
}
}
if (g)
{
Gtemp = GLookup(node->name);
if (Gtemp != NULL)
{
yyerror("Re initialization of identifier\n");
exit(1);
}
}
if (t != NULL)
{
if (!(t == TLookup("integer")))
{
yyerror("arrays of udt and strings are not allowed\n");
exit(1);
}
}
return 1;
}
int install_id(struct ASTNode *node, struct ASTNode *node2, struct Typetable *t)
{
if (t == TLookup("integer"))
GInstall(node->name, TLookup("array_integer"), node2->value.intval, NULL);
else if (t == TLookup("string"))
GInstall(node->name, TLookup("array_string"), node2->value.intval, NULL);
else
{
yyerror("arrays of udt is not allowed\n");
exit(1);
}
}
int type_comp(struct Typetable *t1, struct Typetable *t2, char c)
{
switch (c)
{
case 'r':
if (t1 != t2)
{
yyerror("return type do not match with the function return type\n");
exit(1);
}
break;
case ' ':
return (t1 == t2);
break;
case 'i':
if (t1 != t2)
{
yyerror("Expected boolean , Found value in if\n");
exit(1);
}
break;
case 'e':
if (t1 != t2)
{
yyerror("Expected boolean , Found value in if else\n");
exit(1);
}
break;
case 'w':
if (t1 != t2)
{
yyerror("Expected boolean , Found value in while\n");
exit(1);
}
break;
case '+':
if (t1 == TLookup("string") || t2 == TLookup("string"))
{
yyerror("conflict in operand types in PLUS\n");
exit(1);
}
break;
case '-':
if (t1 == TLookup("string") || t2 == TLookup("string"))
{
yyerror("conflict in operand types in MINUS\n");
exit(1);
}
break;
case '*':
if (t1 == TLookup("string") || t2 == TLookup("string"))
{
yyerror("conflict in operand types in MUL\n");
exit(1);
}
break;
case '/':
if (t1 == TLookup("string") || t2 == TLookup("string"))
{
yyerror("conflict in operand types in DIV\n");
exit(1);
}
break;
case '%':
if (t1 == TLookup("string") || t2 == TLookup("string"))
{
yyerror("conflict in operand types in MOD\n");
exit(1);
}
break;
case '<':
if (t1 == TLookup("string") || t2 == TLookup("string"))
{
yyerror("conflict in operand types in LT\n");
exit(1);
}
break;
case '>':
if (t1 == TLookup("string") || t2 == TLookup("string"))
{
yyerror("conflict in operand types in GT\n");
exit(1);
}
break;
case '#': // <=
if (t1 == TLookup("string") || t2 == TLookup("string"))
{
yyerror("conflict in operand types in LE\n");
exit(1);
}
break;
case '$': // >=
if (t1 == TLookup("string") || t2 == TLookup("string"))
{
yyerror("conflict in operand types in GE\n");
exit(1);
}
break;
case 'a':
if (t1 != t2)
{
yyerror("conflict in assignment types\n");
exit(1);
}
break;
case 'd': // ==
if (t1 != t2)
{
yyerror("conflict in operand types in DEQ\n");
exit(1);
}
break;
case 'n': // !=
if (t1 != t2)
{
yyerror("conflict in operand types in NEQ\n");
exit(1);
}
break;
case '&': // AND
if (!(t1 == TLookup("boolean") && t2 == TLookup("boolean")))
{
yyerror("conflict in operand types in AND\n");
exit(1);
}
break;
case '|': // OR
if (!(t1 == TLookup("boolean") && t2 == TLookup("boolean")))
{
yyerror("conflict in operand types in OR\n");
exit(1);
}
break;
case '!': // NOT
if (t1 != TLookup("boolean"))
{
yyerror("conflict in operand types in NOT\n");
exit(1);
}
break;
case '=': // == NULL
if (t1 == TLookup("string") || t1 == TLookup("integer"))
{
yyerror("conflict in operand types in DEQNILL\n");
exit(1);
}
break;
case '^': // != NULL
if (t1 == TLookup("string") || t1 == TLookup("integer"))
{
yyerror("conflict in operand types in NEQNILL\n");
exit(1);
}
case 'x': //exposcall
if (t2 != NULL)
{
if (t2 != TLookup("string"))
{
yyerror("invalid fun_code type in exposcall\n");
exit(1);
}
}
else
{
if (t1 == TLookup("string"))
{
yyerror("invalid return type to exposcall\n");
exit(1);
}
}
break;
}
return 1;
}
//assign type for id and id deqnill and neqnill
// fr = free
// al = alloc
// fd = field
// rd = read (id)
int type_assign(struct ASTNode *node, struct ASTNode *node2, int udt, int fr, int al, int fd, int rd)
{
Ltemp = LLookup(node->name);
if (Ltemp != NULL)
{
if (udt)
{
if (Ltemp->type == TLookup("integer") || Ltemp->type == TLookup("string"))
{
if (fr)
yyerror("cannot free a non udt\n");
else if (al)
yyerror("cannot ALLOC a non udt\n");
else if (fd)
yyerror(" . operation over integer/string type is not allowed\n");
else
yyerror("cannot assign null to non-udt\n");
exit(1);
}
}
node->type = Ltemp->type;
if (fd)
{
ftemp = FLookup(node2->name, node->type->fields);
if (ftemp != NULL)
{
node2->type = ftemp->type;
node->ptr2 = node2;
}
else
{
yyerror("Un-declared field variable\n");
exit(1);
}
}
}
else
{
Argtemp = PLookup(node->name);
if (Argtemp != NULL)
{
if (!rd)
{
if (udt)
{
if (Argtemp->type == TLookup("integer") || Argtemp->type == TLookup("string"))
{
if (fr)
yyerror("cannot free a non udt\n");
else if (al)
yyerror("cannot ALLOC a non udt\n");
else if (fd)
yyerror(" . operation over integer/string type is not allowed\n");
else
yyerror("cannot assign null to non-udt\n");
exit(1);
}
}
node->type = Argtemp->type;
if (fd)
{
ftemp = FLookup(node2->name, node->type->fields);
if (ftemp != NULL)
{
node2->type = ftemp->type;
node->ptr2 = node2;
}
else
{
yyerror("Un-declared field variable\n");
exit(1);
}
}
}
else
{
if (Argtemp->type == TLookup("integer"))
node->type = TLookup("integer");
else if (Argtemp->type == TLookup("string"))
node->type = TLookup("string");
}
}
else
{
Gtemp = GLookup(node->name);
if (Gtemp == NULL)
{
yyerror("Un-declared variable\n");
printf("%s\n", node->name);
exit(1);
}
else
{
if (!rd)
{
if (Gtemp->type == TLookup("array_integer") || Gtemp->type == TLookup("array_string"))
{
if (fd)
{
yyerror(" . operation over arrays not allowed\n");
}
else
{
yyerror("conflict in ID NodeType : Expected Variable . Found Array\n");
}
printf("%s\n", node->name);
exit(1);
}
}
}
if (udt)
{
if (Gtemp->type == TLookup("integer") || Gtemp->type == TLookup("string"))
{
if (fr)
{
yyerror("cannot free a non udt\n");
}
else if (al)
{
yyerror("cannot ALLOC a non udt\n");
}
else if (fd)
{
yyerror(" . operation over integer/string type is not allowed\n");
}
else
{
yyerror("cannot assign null to non-udt\n");
}
exit(1);
}
}
if (!fr)
{
node->Gentry = Gtemp;
}
node->type = Gtemp->type;
if (fd)
{
ftemp = FLookup(node2->name, node->type->fields);
if (ftemp != NULL)
{
node2->type = ftemp->type;
node->ptr2 = node2;
}
else
{
yyerror("Un-declared field variable\n");
exit(1);
}
}
}
}
return 1;
}
//type assign for arrays and functions
int type_assign_arr(struct ASTNode *node, struct ASTNode *node2, int func)
{
Gtemp = GLookup(node->name);
if (Gtemp == NULL)
{
printf("Un-declared identifier\n");
printf("%s\n", node->name);
exit(1);
}
if (func)
{
if (Gtemp->size != -1)
{
yyerror("conflict in ID NodeType : Expected Function \n");
printf("%s\n", node->name);
exit(1);
}
else
{
node->Gentry = Gtemp;
node->type = Gtemp->type;
}
return 0;
}
else if (Gtemp->type == TLookup("string") || Gtemp->type == TLookup("integer"))
{
yyerror("conflict in ID NodeType : Expected Variable , Found Array\n");
printf("%s\n", node->name);
exit(1);
}
else if (node2->type != TLookup("integer"))
{
yyerror("Expected value \n");
printf("%s\n", node->name);
exit(1);
}
else
{
node->Gentry = Gtemp;
if (Gtemp->type == TLookup("array_integer"))
node->type = TLookup("integer");
else if (Gtemp->type == TLookup("array_string"))
node->type = TLookup("string");
}
return 1;
}
int start()
{
intermediate = fopen("assemblycode.asm", "w+");
if (intermediate == NULL)
{
printf("Unable to locate file\n");
exit(1);
}
fprintf(intermediate, "0\n2056\n0\n0\n0\n0\n0\n0\n");
fprintf(intermediate, "MOV SP,%d\n", totalCount - 1);
fprintf(intermediate, "MOV BP,%d\n", totalCount);
fprintf(intermediate, "PUSH R0\n");
fprintf(intermediate, "CALL MAIN\n");
fprintf(intermediate, "INT 10\n"); //need to push registers
return 0;
}
struct ASTNode *get_last(struct ASTNode *head)
{
while (head->ptr2 != NULL)
head = head->ptr2;
return head;
}