-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
59 lines (42 loc) · 1.17 KB
/
main.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
#include <stdio.h>
#include "symtab.h"
#include "typer.h"
// extern int yylex();
extern FILE* yyin;
extern int yyparse();
extern int yylex();
extern char *yytext;
extern int yydebug;
extern symbol_table *symtable;
extern translation_unit *unit;
int main() {
FILE *f = fopen("examples/example.c", "r");
if (f == NULL) {
perror("Failed to open file");
return 1;
}
// yydebug = 1;
// Initialize root scope symbol table
symbol_table *symtable = malloc(sizeof(symbol_table));
symbol_table_init(symtable, NULL);
// Run yacc parser, populate symbol table
yyin = f;
yyparse();
printf("%d\n", unit);
typecheck_translation_unit(unit);
fclose(f);
return 0;
}
// int token;
// while ((token = yylex())) {
// printf("%d: %s\n", token, yytext);
// }
// symbol_table table;
// symbol_table_init(&table, NULL);
// symbol_table_insert(&table, "a", 3);
// symbol_table_insert(&table, "b", 8);
// symbol_table table2;
// symbol_table_init(&table2, &table);
// symbol_table_insert(&table2, "c", 3);
// symbol_table_insert(&table2, "b", 9);
// symbol_table_debug(&table2);