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
|
/* SPDX-License-Identifier: copyleft-next-0.3.1 */
/* Copyright 2023 Kim Kuparinen < kimi.h.kuparinen@gmail.com > */
/** @file scope.c
*
* Implementations for scope handling stuff.
*/
#include <stddef.h>
#include <string.h>
#include <stdio.h>
#include <stdarg.h>
#include <stdlib.h>
#include <assert.h>
#include <ek/debug.h>
#include <ek/scope.h>
#include <ek/actualize.h>
static bool same_src_scope(struct scope *a, struct scope *b)
{
/** @todo a bit ridiculous, is there a less hacky way? */
return a->fctx.fbuf == b->fctx.fbuf;
}
struct scope *create_scope()
{
/* if I ever try making the parser multithreaded, this should be atomic. */
static size_t counter = 0;
struct scope *scope = calloc(1, sizeof(struct scope));
if (!scope) {
internal_error("ran out of memory allocating scope");
return NULL;
}
scope->expanded = expanded_create();
scope->symbols = visible_create();
scope->macros = visible_create();
scope->types = visible_create();
scope->exported_symbols = exported_create();
scope->exported_macros = exported_create();
scope->exported_types = exported_create();
scope->number = counter++;
return scope;
}
void destroy_scope(struct scope *scope)
{
if (!scope)
return;
if (scope_flags(scope, SCOPE_FILE)) {
free((void *)scope->fctx.fbuf);
free((void *)scope->fctx.fname);
}
visible_destroy(&scope->symbols);
visible_destroy(&scope->macros);
visible_destroy(&scope->types);
expanded_destroy(&scope->expanded);
exported_destroy(&scope->exported_symbols);
exported_destroy(&scope->exported_macros);
exported_destroy(&scope->exported_types);
struct scope *prev = scope->children, *cur;
if (prev) do {
cur = prev->next;
destroy_scope(prev);
} while ((prev = cur));
free(scope);
}
void scope_set_flags(struct scope *scope, enum scope_flags flags)
{
assert(scope);
scope->flags |= flags;
}
unsigned scope_flags(struct scope *scope, enum scope_flags flags)
{
assert(scope);
return (scope->flags & flags) == flags;
}
struct ast **create_type(struct scope *scope, char *id, struct ast *type)
{
return visible_insert(&scope->types, id, type);
}
struct ast **create_expanded(struct scope *scope, struct ast *def,
struct type *types, struct ast *expd)
{
struct expanded_key key = {.def = def, .types = types};
return expanded_insert(&scope->expanded, key, expd);
}
struct ast **create_var(struct scope *scope, char *id, struct ast *var)
{
return visible_insert(&scope->symbols, id, var);
}
struct ast **create_macro(struct scope *scope, char *id, struct ast *macro)
{
return visible_insert(&scope->macros, id, macro);
}
struct ast **create_proc(struct scope *scope, char *id, struct ast *proc)
{
return visible_insert(&scope->symbols, id, proc);
}
static bool scope_add_recurse(struct scope *scope, struct ast *node)
{
if (!scope->parent)
return false;
if (!ast_flags(node, AST_FLAG_PUBLIC))
return false;
if (same_src_scope(scope, node->scope))
return true;
return scope_flags(scope, SCOPE_PUBLIC);
}
int scope_add_var(struct scope *scope, struct ast *var)
{
struct ast *exists = scope_find_symbol(scope, var_id(var));
if (exists) {
semantic_error(scope->fctx, var, "var redefined");
semantic_info(scope->fctx, exists, "previously here");
return -1;
}
create_var(scope, var_id(var), var);
if (scope_add_recurse(scope, var))
return scope_add_var(scope->parent, var);
return 0;
}
int scope_add_type(struct scope *scope, char *id, struct ast *type)
{
struct ast *exists = scope_find_type(scope, id);
if (exists) {
semantic_error(scope->fctx, type, "type redefined");
semantic_info(scope->fctx, exists, "previously here");
return -1;
}
create_type(scope, id, type);
if (scope_add_recurse(scope, type))
return scope_add_type(scope->parent, id, type);
return 0;
}
static void insert_chain(struct scope *scope, char *id, struct ast *type)
{
struct ast **v = visible_find(&scope->types, id);
assert(v);
struct ast *n = *v;
if (ast_flags(n, AST_FLAG_PUBLIC)
|| !ast_flags(type, AST_FLAG_PUBLIC)) {
type->chain = n;
*v = type;
return;
}
/* find first public continuation in chain and insert just before it */
struct ast *next = n->chain;
while (next->k == AST_STRUCT_CONT_DEF && !ast_flags(next,
AST_FLAG_PUBLIC)) {
n = next;
next = n->chain;
}
n->chain = type;
type->chain = next;
}
int scope_add_chain(struct scope *scope, char *id, struct ast *type)
{
struct ast *exists = file_scope_find_type(scope, id);
if (!exists) {
semantic_error(scope->fctx, type, "no previous definition");
return -1;
}
insert_chain(scope, id, type);
if (scope_add_recurse(scope, type))
return scope_add_chain(scope->parent, id, type);
return 0;
}
int scope_add_macro(struct scope *scope, struct ast *macro)
{
assert(macro->k == AST_MACRO_DEF);
struct ast *exists = file_scope_find_macro(scope, macro_def_id(macro));
if (exists) {
semantic_error(scope->fctx, macro, "macro redefined");
semantic_info(scope->fctx, exists, "previously here");
return -1;
}
/* always add to scope, do resolve checking later */
create_macro(scope, macro_def_id(macro), macro);
if (scope_add_recurse(scope, macro))
return scope_add_macro(scope->parent, macro);
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 && proc_body(exists) == proc_body(proc)) {
semantic_error(proc->scope->fctx, proc, "proc redefined");
semantic_info(exists->scope->fctx, exists, "previously here");
return -1;
}
/* always add to scope, do resolve checking later */
create_proc(scope, proc_id(proc), proc);
if (scope_add_recurse(scope, proc))
return scope_add_proc(scope->parent, proc);
return 0;
}
int scope_add_trait(struct scope *scope, struct ast *trait)
{
assert(trait->k == AST_TRAIT_DEF);
char *id = trait_id(trait);
struct ast *exists = file_scope_find_type(scope, id);
if (exists) {
semantic_error(scope->fctx, trait, "type redefined");
semantic_info(scope->fctx, exists, "previously here");
return -1;
}
create_type(scope, id, trait);
if (scope_add_recurse(scope, trait))
return scope_add_trait(scope->parent, trait);
return 0;
}
int scope_add_expd_struct(struct scope *scope, struct ast *def,
struct type *types, struct ast *expd)
{
assert(def->k == AST_STRUCT_DEF);
assert(expd->k == AST_STRUCT_DEF);
assert(file_scope_find_expd_struct(scope, def, types) == NULL);
create_expanded(scope, def, types, expd);
if (scope_add_recurse(scope, expd))
return scope_add_expd_struct(scope->parent, def, types, expd);
return 0;
}
int scope_add_expd_chain(struct scope *scope, struct ast *def,
struct type *types, struct ast *expd)
{
assert(def->k == AST_STRUCT_CONT_DEF);
assert(expd->k == AST_STRUCT_CONT_DEF);
assert(file_scope_find_expd_struct(scope, def, types) == NULL);
create_expanded(scope, def, types, expd);
if (scope_add_recurse(scope, expd))
return scope_add_expd_chain(scope->parent, def, types, expd);
return 0;
}
struct ast *scope_find_type(struct scope *scope, char *id)
{
struct ast **v = visible_find(&scope->types, id);
if (!v)
return NULL;
return *v;
}
struct ast *file_scope_find_type(struct scope *scope, char *id)
{
if (!scope)
return NULL;
struct ast *found = scope_find_type(scope, id);
if (found)
return found;
if (!scope_flags(scope, SCOPE_FILE))
return file_scope_find_type(scope->parent, id);
return NULL;
}
struct ast *scope_find_macro(struct scope *scope, char *id)
{
struct ast **v = visible_find(&scope->macros, id);
if (!v)
return NULL;
return *v;
}
struct ast *file_scope_find_macro(struct scope *scope, char *id)
{
if (!scope)
return NULL;
struct ast *found = scope_find_macro(scope, id);
if (found)
return found;
if (!scope_flags(scope, SCOPE_FILE))
return file_scope_find_macro(scope->parent, id);
return NULL;
}
struct ast *scope_find_proc(struct scope *scope, char *id)
{
struct ast **v = visible_find(&scope->symbols, id);
if (!v)
return NULL;
struct ast *n = *v;
assert(n);
if (n->k != AST_PROC_DEF)
return NULL;
return n;
}
struct ast *file_scope_find_proc(struct scope *scope, char *id)
{
struct ast *n = file_scope_find_symbol(scope, id);
if (!n)
return NULL;
if (n->k != AST_PROC_DEF)
return NULL;
return n;
}
struct ast *scope_find_symbol(struct scope *scope, char *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)
{
if (!scope)
return NULL;
struct ast *found = scope_find_symbol(scope, id);
if (found)
return found;
if (!scope_flags(scope, SCOPE_FILE))
return file_scope_find_symbol(scope->parent, id);
return NULL;
}
struct ast *scope_find_var(struct scope *scope, char *id)
{
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;
return n;
}
struct ast *file_scope_find_var(struct scope *scope, char *id)
{
if (!scope)
return NULL;
struct ast *found = scope_find_var(scope, id);
if (found)
return found;
if (!scope_flags(scope, SCOPE_FILE))
return file_scope_find_var(scope->parent, id);
return NULL;
}
struct ast *scope_find_expd_struct(struct scope *scope, struct ast *def,
struct type *types)
{
assert(def->k == AST_STRUCT_DEF || def->k == AST_STRUCT_CONT_DEF);
struct expanded_key key = {.def = def, .types = types};
struct ast **expd = expanded_find(&scope->expanded, key);
if (!expd)
return NULL;
struct ast *exists = *expd;
assert(exists->k == AST_STRUCT_DEF || exists->k == AST_STRUCT_CONT_DEF);
return exists;
}
struct ast *file_scope_find_expd_struct(struct scope *scope, struct ast *def,
struct type *types)
{
assert(def->k == AST_STRUCT_DEF || def->k == AST_STRUCT_CONT_DEF);
struct ast *found = scope_find_expd_struct(scope, def, types);
if (found)
return found;
if (!scope_flags(scope, SCOPE_FILE))
return file_scope_find_expd_struct(scope->parent, def, types);
return NULL;
}
void scope_add_scope(struct scope *parent, struct scope *child)
{
assert(parent);
assert(child);
if (!scope_flags(child, SCOPE_FILE)) {
child->fctx = parent->fctx;
}
child->parent = parent;
child->next = parent->children;
parent->children = child;
}
bool is_exported_type(struct scope *scope, struct ast *def)
{
struct ast **found = exported_find(&scope->exported_types, def);
if (found)
return true;
if (scope->parent)
return is_exported_type(scope->parent, def);
return false;
}
bool is_exported_symbol(struct scope *scope, struct ast *def)
{
struct ast **found = exported_find(&scope->exported_symbols, def);
if (found)
return true;
if (scope->parent)
return is_exported_symbol(scope->parent, def);
return false;
}
bool is_exported_macro(struct scope *scope, struct ast *def)
{
struct ast **found = exported_find(&scope->exported_macros, def);
if (found)
return true;
if (scope->parent)
return is_exported_macro(scope->parent, def);
return false;
}
|