-
Notifications
You must be signed in to change notification settings - Fork 0
/
semantic.c
705 lines (548 loc) · 18.5 KB
/
semantic.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
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
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
#include "semantic.h"
#include "cmm-type.h"
#include "cmm-symtab.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
typedef void (*ast_visitor)(Node);
static ast_visitor sema_visitors[]; // Predeclaration
#define sema_visit(x) sema_visitors[x->tag](x)
bool semantic_error = false;
#define STRUCT_SCOPE (-10086)
#define SEMA_ERROR_MSG(lineno, fmt, ...) \
do {\
semantic_error = true; \
fprintf(stderr, "Semantic error at line %d: " fmt "\n", lineno, ## __VA_ARGS__);\
} while(0)
static bool is_in_struct = false;
static int offset = 0;
static void vardec_is_id(Node vardec)
{
vardec->sema.name = vardec->child->val.s;
vardec->sema.lineno = vardec->child->lineno;
}
static void vardec_is_vardec_size(Node vardec)
{
Node sub_vardec = vardec->child;
Node size = sub_vardec->sibling;
Type *temp_array = new_type(CMM_ARRAY, NULL, vardec->sema.type, NULL);
temp_array->size = size->val.i;
temp_array->type_size = temp_array->size * vardec->sema.type->type_size;
sub_vardec->sema.type = temp_array;
sema_visit(sub_vardec);
vardec->sema = sub_vardec->sema; // Together with name, lineno
}
static void dec_is_vardec(Node dec)
{
Node vardec = dec->child;
vardec->sema.type = dec->sema.type;
sema_visit(vardec);
Symbol *symbol = insert(vardec->sema.name, vardec->sema.type, vardec->sema.lineno, get_symtab_top());
if (symbol == NULL) {
SEMA_ERROR_MSG(vardec->sema.lineno, "Redefined variable \"%s\".", vardec->sema.name);
// TODO handle memory leak
}
symbol->offset = offset;
offset += symbol->type->type_size;
dec->sema = vardec->sema;
}
static void dec_is_vardec_initialization(Node dec)
{
dec_is_vardec(dec);
// Initialization
if (is_in_struct) {
// Field does not allow assignment
SEMA_ERROR_MSG(dec->lineno, "Initialization in the structure definition is not allowed");
}
else {
// Assignment consistency check
Node init = dec->child->sibling;
sema_visit(init);
if (!typecmp(init->sema.type, dec->sema.type)) {
SEMA_ERROR_MSG(init->lineno, "Type mismatch");
}
}
}
static void def_is_spec_dec(Node def)
{
// Handle Specifier
Node spec = def->child;
sema_visit(spec);
Type *type = spec->sema.type;
assert(type->type_size != 0);
for (Node dec = spec->sibling; dec != NULL; dec = dec->sibling) {
dec->sema.type = type;
sema_visit(dec);
}
}
static void struct_is_id(Node struc)
{
Node id = struc->child;
const Symbol *ent = query(id->val.s);
if (ent == NULL || ent->type->class != CMM_TYPE || ent->type->meta->class != CMM_STRUCT) {
SEMA_ERROR_MSG(id->lineno, "Undefined struct name '%s'", id->val.s);
}
else {
// ent->type is a meta type
struc->sema.type = ent->type->meta;
}
}
static void struct_is_id_def(Node struc)
{
int saved_offset = offset;
is_in_struct = true;
offset = 0; // Calc field's offset from zero
new_symtab();
const char *name = (struc->tag == STRUCT_is_DEF) ? "" : struc->child->val.s;
Node def = (struc->tag == STRUCT_is_DEF) ? struc->child : struc->child->sibling;
// Construct struct
Type *this = new_type(CMM_STRUCT, name, NULL, NULL);
this->lineno = struc->lineno;
// Get field list
while (def != NULL) {
sema_visit(def);
def = def->sibling;
}
// Save the struct symbol table for fields
this->field_table = pop_symtab();
this->type_size = offset;
// Use the struct name to register in the symbol table.
// Ignore the struct with empty tag.
if (struc->tag == STRUCT_is_ID_DEF) {
Type *meta = new_type(CMM_TYPE, this->name, this, NULL);
meta->lineno = struc->lineno;
if (insert(meta->name, meta, struc->lineno, get_symtab_top()) == NULL) {
SEMA_ERROR_MSG(struc->lineno, "Duplicated name \"%s\".", name);
}
}
struc->sema.type = this;
is_in_struct = false;
offset = saved_offset;
}
static void spec_is_type(Node spec)
{
const char *type_name = spec->child->val.s;
if (!strcmp(type_name, BASIC_INT->name)) {
spec->sema.type = BASIC_INT;
}
else if (!strcmp(type_name, BASIC_CHAR->name)) {
spec->sema.type = BASIC_CHAR;
}
else if (!strcmp(type_name, BASIC_FLOAT->name)) {
spec->sema.type = BASIC_FLOAT;
}
else {
PANIC("Unexpected type");
}
}
static void spec_is_struct(Node spec)
{
sema_visit(spec->child);
spec->sema = spec->child->sema;
}
static void var_is_spec_vardec(Node paramdec)
{
Node spec = paramdec->child;
Node vardec = spec->sibling;
sema_visit(spec);
Type *type = spec->sema.type;
vardec->sema.type = type;
sema_visit(vardec);
Symbol *sym = insert(vardec->sema.name, vardec->sema.type, paramdec->lineno, get_symtab_top());
if (sym == NULL) {
SEMA_ERROR_MSG(vardec->lineno, "Duplicated variable definition of '%s'", vardec->sema.name);
}
sym->offset = offset;
offset += sym->type->type_size;
paramdec->sema = vardec->sema;
}
// Then we should link the paramdec's type up to form a param type list.
// varlist should return a type of CmmParam, and the generation of CmmParam occurs here.
static Type *get_params(Node var)
{
if (var == NULL) {
return NULL;
}
sema_visit(var);
Type *sub_list = get_params(var->sibling);
Type *param = new_type(CMM_PARAM, var->sema.name, var->sema.type, sub_list);
return param;
}
// Analyze the function signiture, include function's name and parameter list.
static void func_is_id_var(Node fundec)
{
assert(fundec->tag == FUNC_is_ID_VAR);
Node id = fundec->child;
Node var = id->sibling;
// Get identifier
const char *name = id->val.s;
Type *func = new_type(CMM_FUNC, name, fundec->sema.type, NULL);
// Generate function symbol
if (insert(func->name, func, fundec->lineno, get_symtab_top()) == NULL) {
SEMA_ERROR_MSG(fundec->lineno, "Redefined function \"%s\"", func->name);
// TODO handle memory leak!
}
// Get param list if exists
// Put the function's parameters and local variables in a new symbol table.
// The pop is called in extdef production
new_symtab();
func->param = get_params(var);
}
//
// exp only return its type.
// We use stmt analyzer to check the return type.
//
static inline int is_lval(const Node exp)
{
if (exp->tag == EXP_is_ID) {
// Avoid function name and type name.
// An array directly found in the symbol table is a constant variable
// which cannot be assigned.
const Symbol *ent = query(exp->child->val.s);
// TODO Ugly conditions
return ent != NULL && ent->type->class != CMM_FUNC && ent->type->class != CMM_TYPE && ent->type->class != CMM_ARRAY;
}
else {
return exp->tag == EXP_is_EXP_IDX || exp->tag == EXP_is_EXP_FIELD;
}
}
static void exp_is_unary(Node exp)
{
sema_visit(exp->child);
Type *type = exp->child->sema.type;
if (typecmp(type, BASIC_INT) || typecmp(type, BASIC_CHAR)) {
exp->sema.type = type;
}
else if (typecmp(type, BASIC_FLOAT) && exp->val.operator[0] == '!') {
SEMA_ERROR_MSG(exp->lineno, "\"!\" cannot cast on float");
}
else {
SEMA_ERROR_MSG(exp->lineno, "\"%s\" cannot case on unbasic type", exp->val.operator);
}
}
static void exp_is_binary(Node exp)
{
Node lexp = exp->child;
Node rexp = lexp->sibling;
sema_visit(lexp);
sema_visit(rexp);
Type *ltype = lexp->sema.type;
Type *rtype = rexp->sema.type;
if (!typecmp(ltype, rtype) &&
!(typecmp(rtype, BASIC_CHAR) & typecmp(ltype, BASIC_INT)) &&
!(typecmp(ltype, BASIC_CHAR) & typecmp(rtype, BASIC_INT))){
// Type mismatched
SEMA_ERROR_MSG(exp->lineno, "Type mismatched for operands");
}
else if (!typecmp(ltype, BASIC_INT) && !typecmp(ltype, BASIC_FLOAT) &&
!typecmp(ltype, BASIC_CHAR)) {
// Type matched, but cannot be operated
SEMA_ERROR_MSG(exp->lineno, "The type is not allowed in operation '%s'", exp->val.operator);
}
else {
exp->sema.type = ltype;
}
}
static void exp_is_assign(Node exp)
{
Node lexp = exp->child;
Node rexp = lexp->sibling;
sema_visit(lexp);
sema_visit(rexp);
if (!typecmp(lexp->sema.type, rexp->sema.type) &&
!(typecmp(lexp->sema.type, BASIC_CHAR) & typecmp(rexp->sema.type, BASIC_INT))) {
SEMA_ERROR_MSG(exp->lineno, "Type mismatched for assignment.");
}
else if (!is_lval(lexp)) {
SEMA_ERROR_MSG(exp->lineno, "The left-hand side of an assignment must be a variable.");
}
exp->sema.type = lexp->sema.type;
}
static void exp_is_exp_idx(Node exp)
{
Node lexp = exp->child;
Node rexp = lexp->sibling;
sema_visit(lexp);
sema_visit(rexp);
if (rexp->sema.type != NULL && rexp->sema.type->class != CMM_INT) {
SEMA_ERROR_MSG(rexp->lineno, "expression is not a integer");
}
// If lexp_type is null, it means that an semantic error has occurred, then we can ignore the
// consecutive errors.
if (lexp->sema.type != NULL) {
if (lexp->sema.type->class != CMM_ARRAY) {
SEMA_ERROR_MSG(lexp->lineno, "expression is not an array.");
}
else {
assert(lexp->sema.type->base != NULL);
exp->sema.type = lexp->sema.type->base;
}
}
}
static void check_param_list(Type *param, Node arg, int lineno)
{
while (param != NULL && arg != NULL) {
sema_visit(arg);
Type *param_type = arg->sema.type;
if (!typecmp(param_type, param->base)) {
SEMA_ERROR_MSG(arg->lineno, "parameter type mismatches");
}
param = param->link;
arg = arg->sibling;
}
if (!(param == NULL && arg == NULL)) {
SEMA_ERROR_MSG(lineno, "parameter number mismatches");
}
}
static void exp_is_id_arg(Node exp)
{
Node id = exp->child;
const Symbol *query_result = query(id->val.s);
if (query_result == NULL) {
SEMA_ERROR_MSG(id->lineno, "Undefined function \"%s\".", id->val.s);
}
else if (query_result->type->class != CMM_FUNC) {
SEMA_ERROR_MSG(id->lineno, "\"%s\" is not a function.", id->val.s);
}
else {
// Error report in the check
check_param_list(query_result->type->param, id->sibling, exp->lineno);
// Return the return type while ignoring errors in arguments
exp->sema.type = query_result->type->ret;
}
}
static void exp_is_exp_field(Node exp)
{
Node struc = exp->child;
sema_visit(struc);
if (struc->sema.type->class != CMM_STRUCT) {
SEMA_ERROR_MSG(exp->lineno, "The left identifier of '.' is not a struct");
}
else {
Node field = struc->sibling;
const Symbol *field_symbol = query_without_fallback(field->val.s, struc->sema.type->field_table);
if (field_symbol == NULL) {
SEMA_ERROR_MSG(field->lineno, "Undefined field \"%s\" in struct \"%s\".",
field->val.s, struc->sema.type->name);
}
else {
exp->sema.type = field_symbol->type;
}
}
}
static void exp_is_id(Node exp)
{
Node id = exp->child;
const Symbol *query_result = query(id->val.s);
if (query_result == NULL) {
SEMA_ERROR_MSG(id->lineno, "Undefined variable \"%s\"", id->val.s);
}
else if (query_result->type->class == CMM_TYPE) {
SEMA_ERROR_MSG(id->lineno, "Cannot resovle variable \"%s\"", id->val.s);
}
else {
exp->sema.type = query_result->type;
}
}
static void exp_is_int(Node exp)
{
exp->sema.type = BASIC_INT;
}
static void exp_is_float(Node exp)
{
exp->sema.type = BASIC_FLOAT;
}
static void exp_is_char(Node exp)
{
exp->sema.type = BASIC_CHAR;
}
static void stmt_is_return(Node stmt)
{
Node exp = stmt->child;
sema_visit(exp);
if (!typecmp(exp->sema.type, stmt->sema.type)) {
SEMA_ERROR_MSG(exp->lineno, "Type mismatched for return.");
}
}
static void stmt_is_for(Node stmt)
{
sema_visit(stmt->child);
if (stmt->child->tag != EXP_is_ASSIGN) {
SEMA_ERROR_MSG(stmt->child->lineno, "No initialization in for loop");
}
sema_visit(stmt->child->sibling);
if (!typecmp(stmt->child->sibling->sema.type, BASIC_INT)) {
SEMA_ERROR_MSG(stmt->child->sibling->lineno, "The expression type is not suitable for loop condition");
}
sema_visit(stmt->child->sibling->sibling);
sema_visit(stmt->child->sibling->sibling->sibling);
}
static void stmt_is_while(Node stmt)
{
Node cond = stmt->child;
Node loop = cond->sibling;
sema_visit(cond);
if (!typecmp(cond->sema.type, BASIC_INT)) {
SEMA_ERROR_MSG(cond->lineno, "The condition expression must return int");
}
loop->sema.type = stmt->sema.type; // Check return type in true-branch
sema_visit(loop);
}
static void stmt_is_if(Node stmt)
{
Node cond = stmt->child;
Node behav = cond->sibling;
sema_visit(cond);
if (!typecmp(cond->sema.type, BASIC_INT)) {
SEMA_ERROR_MSG(stmt->lineno, "The condition expression must return int");
}
behav->sema.type = stmt->sema.type; // Check return type in true-branch
sema_visit(behav);
}
static void stmt_is_if_else(Node stmt)
{
Node cond = stmt->child;
Node true_branch = cond->sibling;
Node false_branch = true_branch->sibling;
sema_visit(cond);
if (!typecmp(cond->sema.type, BASIC_INT)) {
SEMA_ERROR_MSG(stmt->lineno, "The condition expression must return int");
}
true_branch->sema.type = stmt->sema.type; // Check return type
sema_visit(true_branch);
false_branch->sema.type = stmt->sema.type; // Cehck return type
sema_visit(false_branch);
}
static void stmt_is_exp(Node stmt)
{
sema_visit(stmt->child);
}
static void stmt_is_compst(Node stmt)
{
// Change symbol table here but not compst to make
// registering function parameters easier.
new_symtab();
Node compst = stmt->child;
compst->sema.type = stmt->sema.type;
sema_visit(compst);
stmt->sema.symtab = pop_symtab();
}
static void compst_is_def_stmt(Node compst)
{
Node stmt = compst->child;
while (stmt != NULL) {
sema_visit(stmt);
stmt = stmt->sibling;
}
}
static void extdec_is_vardec(Node extdec)
{
Node vardec = extdec->child;
vardec->sema.type = extdec->sema.type;
sema_visit(vardec);
Symbol *sym = insert(vardec->sema.name, vardec->sema.type, vardec->sema.lineno, get_symtab_top());
if (sym == NULL) {
SEMA_ERROR_MSG(vardec->sema.lineno, "Duplicated identifier '%s'", vardec->sema.name);
// TODO handle memory leak
}
sym->offset = offset;
offset += sym->type->type_size;
extdec->sema = vardec->sema;
}
static void extdef_is_spec_extdec(Node extdef)
{
// Global variables declaration.
assert(extdef->tag == EXTDEF_is_SPEC_EXTDEC);
Node spec = extdef->child;
Node extdec = spec->sibling;
sema_visit(spec);
extdec->sema.type = spec->sema.type;
sema_visit(extdec);
}
static void extdef_is_spec(Node extdef)
{
assert(extdef->tag == EXTDEF_is_SPEC);
sema_visit(extdef->child);
}
static void extdef_is_spec_func_compst(Node extdef)
{
Node spec = extdef->child;
Node func = spec->sibling;
Node compst = func->sibling;
sema_visit(spec);
int saved_offset = offset;
offset = 0;
func->sema.type = spec->sema.type; // Inherit the type info to register the function symbol
sema_visit(func);
compst->sema.type = spec->sema.type; // Inherit the type info to check return type consistentcy
sema_visit(compst);
offset = saved_offset;
extdef->sema.symtab = pop_symtab();
}
static void prog_is_extdef(Node prog)
{
init_symtab();
new_symtab();
// Add predefined functions
Type *read = new_type(CMM_FUNC, "read", NULL, NULL);
read->ret = BASIC_INT;
insert("read", read, -1, get_symtab_top());
Type *write = new_type(CMM_FUNC, "write", NULL, NULL);
write->param = new_type(CMM_PARAM, "o", BASIC_INT, NULL);
insert("write", write, -1, get_symtab_top());
Type *writec = new_type(CMM_FUNC, "writec", NULL, NULL);
writec->param = new_type(CMM_PARAM, "o", BASIC_CHAR, NULL);
insert("writec", writec, -1, get_symtab_top());
Node extdef = prog->child;
while (extdef != NULL) {
sema_visit(extdef);
extdef = extdef->sibling;
}
assert(prog->sema.symtab == NULL);
prog->sema.symtab = pop_symtab();
assert(prog->sema.symtab != NULL);
}
static ast_visitor sema_visitors[] = {
[PROG_is_EXTDEF] = prog_is_extdef,
[EXTDEF_is_SPEC_EXTDEC] = extdef_is_spec_extdec,
[EXTDEF_is_SPEC] = extdef_is_spec,
[EXTDEF_is_SPEC_FUNC_COMPST] = extdef_is_spec_func_compst,
[EXTDEC_is_VARDEC] = extdec_is_vardec,
[EXTDEC_is_VARDEC_INITIALIZATION] = extdec_is_vardec,
[SPEC_is_TYPE] = spec_is_type,
[SPEC_is_STRUCT] = spec_is_struct,
[STRUCT_is_ID] = struct_is_id,
[STRUCT_is_DEF] = struct_is_id_def, // Share most part
[STRUCT_is_ID_DEF] = struct_is_id_def,
[FUNC_is_ID_VAR] = func_is_id_var,
[VARDEC_is_ID] = vardec_is_id,
[VARDEC_is_VARDEC_SIZE] = vardec_is_vardec_size,
[VAR_is_SPEC_VARDEC] = var_is_spec_vardec,
[COMPST_is_DEF_STMT] = compst_is_def_stmt,
[DEF_is_SPEC_DEC] = def_is_spec_dec,
[DEC_is_VARDEC] = dec_is_vardec,
[DEC_is_VARDEC_INITIALIZATION] = dec_is_vardec_initialization,
[STMT_is_COMPST] = stmt_is_compst,
[STMT_is_EXP] = stmt_is_exp,
[STMT_is_IF] = stmt_is_if,
[STMT_is_IF_ELSE] = stmt_is_if_else,
[STMT_is_FOR] = stmt_is_for,
[STMT_is_WHILE] = stmt_is_while,
[STMT_is_RETURN] = stmt_is_return,
[EXP_is_INT] = exp_is_int,
[EXP_is_FLOAT] = exp_is_float,
[EXP_is_CHAR] = exp_is_char,
[EXP_is_ID] = exp_is_id,
[EXP_is_ASSIGN] = exp_is_assign,
[EXP_is_EXP_IDX] = exp_is_exp_idx,
[EXP_is_ID_ARG] = exp_is_id_arg,
[EXP_is_EXP_FIELD] = exp_is_exp_field,
[EXP_is_UNARY] = exp_is_unary,
[EXP_is_BINARY] = exp_is_binary,
[EXP_is_RELOP] = exp_is_binary,
};
void analyze_program(Node prog)
{
sema_visit(prog);
}