-
Notifications
You must be signed in to change notification settings - Fork 0
/
symresolver.c
114 lines (95 loc) · 3.31 KB
/
symresolver.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
//
// Created by David Ensikat on 20/5/2023.
//
#include "helpers/vector.h"
#include "compiler.h"
static void symresolver_push_symbol(struct compile_process *process, struct symbol *sym) {
vector_push(process->symbols.table, &sym);
}
void symresolver_initialize(struct compile_process *process) {
process->symbols.tables = vector_create(sizeof(struct vector *));
}
void symresolver_new_table(struct compile_process *process) {
// Save the current table
vector_push(process->symbols.tables, &process->symbols.table);
// Overwrite the active table
process->symbols.table = vector_create(sizeof(struct symbol *));
}
void symresolver_end_table(struct compile_process *process) {
struct vector *last_table = vector_back_ptr(process->symbols.tables);
process->symbols.table = last_table;
vector_pop(process->symbols.tables);
}
struct symbol *symresolver_get_symbol(struct compile_process *process, const char *name) {
vector_set_peek_pointer(process->symbols.table, 0);
struct symbol *symbol = vector_peek_ptr(process->symbols.table);
while (symbol) {
if (S_EQ(symbol->name, name)) {
break;
}
symbol = vector_peek_ptr(process->symbols.table);
}
return symbol;
}
struct symbol *symresolver_get_symbol_for_native_function(struct compile_process *process, const char *name) {
struct symbol *sym = symresolver_get_symbol(process, name);
if (!sym) {
return NULL;
}
if (sym->type != SYMBOL_TYPE_NATIVE_FUNCTION) {
return NULL;
}
return sym;
}
struct symbol *symresolver_register_symbol(struct compile_process *process,
const char *sym_name,
int type,
void *data) {
if (symresolver_get_symbol(process, sym_name)) {
return NULL;
}
struct symbol *sym = calloc(1, sizeof(struct symbol));
sym->name = sym_name;
sym->type = type;
sym->data = data;
symresolver_push_symbol(process, sym);
return sym;
}
struct node *symresolver_node(struct symbol *sym) {
if (sym->type != SYMBOL_TYPE_NODE) {
return NULL;
}
return sym->data;
}
void symresolver_build_for_variable_node(struct compile_process *process, struct node *node) {
compiler_error(process, "Variables not yet supported\n");
}
void symresolver_build_for_function_node(struct compile_process *process, struct node *node) {
compiler_error(process, "Functions not yet supported\n");
}
void symresolver_build_for_structure_node(struct compile_process *process, struct node *node) {
if (node->flags & NODE_FLAG_IS_FORWARD_DECLARATION) {
// don't register forward declarations
return;
}
symresolver_register_symbol(process, node->_struct.name, SYMBOL_TYPE_NODE, node);
}
void symresolver_build_for_union_node(struct compile_process *process, struct node *node) {
if (node->flags & NODE_FLAG_IS_FORWARD_DECLARATION) {
// don't register forward declarations
return;
}
symresolver_register_symbol(process, node->_union.name, SYMBOL_TYPE_NODE, node);
}
void symresolver_build_for_node(struct compile_process *process, struct node *node) {
switch (node->type) {
case NODE_TYPE_VARIABLE: symresolver_build_for_variable_node(process, node);
break;
case NODE_TYPE_FUNCTION: symresolver_build_for_function_node(process, node);
break;
case NODE_TYPE_STRUCT: symresolver_build_for_structure_node(process, node);
break;
case NODE_TYPE_UNION: symresolver_build_for_union_node(process, node);
break;
}
}