diff options
Diffstat (limited to 'src/scope.c')
-rw-r--r-- | src/scope.c | 106 |
1 files changed, 33 insertions, 73 deletions
diff --git a/src/scope.c b/src/scope.c index a7dfa69..367384a 100644 --- a/src/scope.c +++ b/src/scope.c @@ -28,19 +28,10 @@ struct scope *create_scope() } scope->number = counter++; + scope->symbols = visible_create(16); /* arbitrary number */ return scope; } -static void destroy_visible(struct visible *visible) -{ - struct visible *prev = visible, *cur; - if (prev) - do { - cur = prev->next; - free(prev); - } while ((prev = cur)); -} - void destroy_scope(struct scope *scope) { if (!scope) @@ -51,7 +42,7 @@ void destroy_scope(struct scope *scope) free((void *)scope->fctx.fname); } - destroy_visible(scope->symbols); + visible_destroy(&scope->symbols); struct scope *prev = scope->children, *cur; if (prev) @@ -63,88 +54,50 @@ void destroy_scope(struct scope *scope) free(scope); } -static struct visible *create_visible(char *id, struct ast *node) -{ - struct visible *visible = calloc(1, sizeof(struct visible)); - if (!visible) - return NULL; - - visible->id = id; - visible->node = node; - return visible; -} - -struct visible *create_var(struct scope *scope, char *id, struct ast *var) -{ - struct visible *n = create_visible(id, var); - if (!n) - return NULL; - - n->next = scope->symbols; - scope->symbols = n; - - return n; -} - -struct visible *create_proc(struct scope *scope, char *id, struct ast *proc) -{ - struct visible *n = create_visible(id, proc); - if (!n) - return NULL; - - n->next = scope->symbols; - scope->symbols = n; - - return n; -} - int scope_add_var(struct scope *scope, struct ast *var) { - struct ast *exists = scope_find_symbol(scope, var_id(var)); - if (exists) { + assert(var->k == AST_VAR_DEF); + struct ast **exists = visible_insert(&scope->symbols, var_id(var), var); + if (!exists) { + internal_error("failed inserting var into scope"); + return -1; + } + + if (*exists != var) { semantic_error(scope, var, "var redefined"); - semantic_info(scope, exists, "previously here"); + semantic_info(scope, *exists, "previously here"); return -1; } - create_var(scope, var_id(var), var); return 0; } int scope_add_proc(struct scope *scope, struct ast *proc) { assert(proc->k == AST_PROC_DEF); - struct ast *exists = file_scope_find_symbol(scope, proc_id(proc)); - if (exists) { + struct ast **exists = visible_insert(&scope->symbols, proc_id(proc), proc); + if (!exists) { + internal_error("failed inserting proc into scope"); + return -1; + } + + if (*exists != proc) { semantic_error(scope, proc, "proc redefined"); - semantic_info(scope, exists, "previously here"); + semantic_info(scope, *exists, "previously here"); return -1; } - /* always add to scope, do resolve checking later */ - create_proc(scope, proc_id(proc), proc); return 0; } -static struct ast *scope_find_visible(struct visible *v, char *id) +struct ast *scope_find_proc(struct scope *scope, char *id) { + struct ast **v = visible_find(&scope->symbols, id); if (!v) return NULL; - foreach_visible(n, v) { - struct ast *node = n->node; - if (same_id(node->s, id)) - return node; - } - - return NULL; -} - -struct ast *scope_find_proc(struct scope *scope, char *id) -{ - struct ast *n = scope_find_visible(scope->symbols, id); - if (!n) - return NULL; + struct ast *n = *v; + assert(n); if (n->k != AST_PROC_DEF) return NULL; @@ -166,7 +119,11 @@ struct ast *file_scope_find_proc(struct scope *scope, char *id) struct ast *scope_find_symbol(struct scope *scope, char *id) { - return scope_find_visible(scope->symbols, id); + struct ast **v = visible_find(&scope->symbols, id); + if (!v) + return NULL; + + return *v; } struct ast *file_scope_find_symbol(struct scope *scope, char *id) @@ -183,10 +140,13 @@ struct ast *file_scope_find_symbol(struct scope *scope, char *id) struct ast *scope_find_var(struct scope *scope, char *id) { - struct ast *n = scope_find_visible(scope->symbols, id); - if (!n) + struct ast **v = visible_find(&scope->symbols, id); + if (!v) return NULL; + struct ast *n = *v; + assert(n); + if (n->k != AST_VAR_DEF) return NULL; |