aboutsummaryrefslogtreecommitdiff
path: root/src/analyze.c
blob: 7eee49a071bb8018e450539ab94b5dc34edfba04 (plain) (blame)
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
/* SPDX-License-Identifier: copyleft-next-0.3.1 */
/* Copyright 2024 Kim Kuparinen < kimi.h.kuparinen@gmail.com > */

#include <fwd/analyze.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>

struct state {
};

static int analyze(struct state *state, struct scope *scope, struct ast *node);
static int analyze_list(struct state *state, struct scope *scope,
                        struct ast *nodes);

static int analyze_type(struct state *state, struct scope *scope,
                        struct type *type);
static int analyze_type_list(struct state *state, struct scope *scope,
                             struct type *types);

static int analyze_proc(struct state *state, struct scope *scope,
                        struct ast *node)
{
	(void)state;
	(void)scope;

	struct scope *proc_scope = create_scope();
	if (!proc_scope) {
		internal_error("failed allocating proc scope");
		return -1;
	}

	proc_scope->flags |= SCOPE_PROC;
	scope_add_scope(scope, proc_scope);

	struct state proc_state = {};
	if (analyze_list(&proc_state, proc_scope, proc_params(node)))
		return -1;

	struct type *proc_type = tgen_func_ptr(NULL, node->loc);
	if (!proc_type) {
		internal_error("failed allocating proc type");
		return -1;
	}

	size_t group = 0;
	foreach_node(param, proc_params(node)) {
		if (param->ol == NULL && param->or == NULL)
			group++; /* no opt group */

		if (param->ol == NULL && param->or)
			group++; /* start of new group */

		/* otherwise same or ending group, don't increment */

		param->t->group = group;
		type_append(&proc_type->t0, clone_type(param->t));
	}

	node->t = proc_type;

	return analyze(&proc_state, proc_scope, proc_body(node));
}

static int analyze_unop(struct state *state, struct scope *scope,
                        struct ast *node)
{
	/** @todo check expr is some primitive type */
	struct ast *expr = unop_expr(node);
	if (analyze(state, scope, expr))
		return -1;

	node->t = expr->t;
	return 0;
}

static int analyze_binop(struct state *state, struct scope *scope,
                         struct ast *node)
{
	struct ast *lhs = binop_left(node);
	struct ast *rhs = binop_right(node);

	if (analyze(state, scope, lhs))
		return -1;

	if (analyze(state, scope, rhs))
		return -1;


	if (!types_match(lhs->t, rhs->t)) {
		type_mismatch(scope, node, lhs->t, rhs->t);
		return -1;
	}

	/** @todo check type is some primitive */
	node->t = lhs->t;
	return 0;
}

static int analyze_comparison(struct state *state, struct scope *scope,
                              struct ast *node)
{
	struct ast *lhs = comparison_left(node);
	struct ast *rhs = comparison_right(node);

	if (analyze(state, scope, lhs))
		return -1;

	if (analyze(state, scope, rhs))
		return -1;


	if (!types_match(lhs->t, rhs->t)) {
		type_mismatch(scope, node, lhs->t, rhs->t);
		return -1;
	}

	/** @todo check type is some primitive */
	char *tf = strdup("bool");
	if (!tf) {
		internal_error("failed allocating comparison bool str");
		return -1;
	}

	node->t = tgen_id(tf, node->loc);
	if (!node->t) {
		internal_error("failed allocating comparison bool type");
		free(tf);
		return -1;
	}

	return 0;
}

static int analyze_block(struct state *state, struct scope *scope,
                         struct ast *node)
{
	struct scope *block_scope = create_scope();
	if (!block_scope) {
		internal_error("failed to allocate block scope");
		return -1;
	}

	scope_add_scope(scope, block_scope);
	if (analyze_list(state, block_scope, block_body(node)))
		return -1;

	struct ast *last = ast_last(block_body(node));
	if (last)
		node->t = last->t;
	else
		node->t = tgen_void(node->loc);

	if (!block_error(node))
		return 0;

	struct ast *err = block_error(node);
	if (error_str(err))
		return 0;

	struct ast *id = error_id(err);
	assert(id);

	struct ast *def = file_scope_find_symbol(scope, id_str(id));
	if (!def) {
		semantic_error(scope, id, "no such symbol");
		return -1;
	}

	struct type *t = def->t;
	if (t->k != TYPE_ERR) {
		semantic_error(scope, id, "invalid error variable type");
		return -1;
	}

	return 0;
}

static int analyze_var(struct state *state, struct scope *scope,
                       struct ast *node)
{
	if (analyze_type(state, scope, var_type(node)))
		return -1;

	node->t = var_type(node);
	return scope_add_var(scope, node);
}

static int analyze_let(struct state *state, struct scope *scope,
                       struct ast *node)
{
	if (analyze(state, scope, let_var(node)))
		return -1;

	if (analyze(state, scope, let_expr(node)))
		return -1;

	struct type *l = (let_var(node))->t;
	struct type *r = (let_expr(node))->t;
	if (!types_match(l, r)) {
		type_mismatch(scope, node, l, r);
		return -1;
	}

	node->t = l;
	return 0;
}

static int analyze_init(struct state *state, struct scope *scope,
                        struct ast *node)
{
	if (analyze_type_list(state, scope, init_args(node)))
		return -1;

	if (analyze(state, scope, init_body(node)))
		return -1;

	/** @todo check that all parameters match, though that requires that the
	 * type is defined in fwd and not in C++, so this might have to wait a
	 * bit */
	node->t = tgen_construct(strdup(init_id(node)), init_args(node),
	                         node->loc);
	if (!node->t) {
		internal_error("failed allocating type for construct");
		return -1;
	}

	return 0;
}

static int analyze_call(struct state *state, struct scope *scope,
                        struct ast *node)
{
	struct ast *expr = call_expr(node);
	if (analyze(state, scope, expr))
		return -1;

	if (!is_callable(expr->t)) {
		semantic_error(scope, node, "expected callable expression");
		return -1;
	}

	struct type *types = callable_types(expr->t);
	struct ast *args = call_args(node);
	if (analyze_list(state, scope, args))
		return -1;

	size_t expected = type_list_len(types);
	size_t got = ast_list_len(args);
	if (expected != got) {
		semantic_error(scope, node, "expected %d params, got %d",
		               expected, got);
		return -1;
	}

	struct type *type = types;
	foreach_node(arg, args) {
		if (!types_match(type, arg->t)) {
			type_mismatch(scope, node, type, arg->t);
			return -1;
		}

		/* clone group info */
		arg->t->group = type->group;
		type = type->n;
	}

	node->t = tgen_void(node->loc);
	if (!node->t) {
		internal_error("failed allocating void type for call");
		return -1;
	}

	return analyze(state, scope, call_err(node));
}

static int analyze_ref(struct state *state, struct scope *scope,
                       struct ast *node)
{
	struct ast *expr = ref_base(node);
	if (analyze(state, scope, expr))
		return -1;

	if (!is_lvalue(expr)) {
		semantic_error(node->scope, node, "trying to reference rvalue");
		return -1;
	}

	struct type *ref = tgen_ref(expr->t, node->loc);
	if (!ref) {
		internal_error("failed allocating ref type");
		return -1;
	}

	node->t = ref;
	return 0;
}

static int analyze_deref(struct state *state, struct scope *scope,
                         struct ast *node)
{
	struct ast *expr = deref_base(node);
	if (analyze(state, scope, expr))
		return -1;

	if (expr->t->k == TYPE_PTR) {
		semantic_error(node->scope, node,
		               "deref of raw ptr not allowed");
		semantic_info(node->scope, node,
		              "use fwd_null() to convert to ref");
		return -1;
	}

	if (expr->t->k != TYPE_REF) {
		semantic_error(node->scope, node,
		               "deref of something not a reference");
		return -1;
	}

	node->t = tptr_base(expr->t);
	return 0;
}

static int analyze_id(struct state *state, struct scope *scope,
                      struct ast *node)
{
	struct ast *found = file_scope_find_symbol(scope, id_str(node));
	if (!found) {
		semantic_error(scope, node, "no symbol named \"%s\"",
		               id_str(node));
		return -1;
	}

	/* kind of hacky, functions are given their type before they've been
	 * analyzed fully, this enables recursion */
	if (!found->t && !ast_flags(found, AST_FLAG_ANALYZED)) {
		assert(found->k == AST_PROC_DEF);
		/* a proc def will use its own state and scope, but pass these
		 * on in case the analysis wants to print errors or something
		 */
		if (analyze(state, scope, found))
			return -1;
	}

	node->t = found->t;
	return 0;
}

static int analyze_closure(struct state *state, struct scope *scope,
                           struct ast *node)
{
	struct scope *closure_scope = create_scope();
	if (!closure_scope) {
		internal_error("failed allocating closure scope");
		return -1;
	}

	node->scope = closure_scope;
	closure_scope->flags |= SCOPE_PROC;
	scope_add_scope(scope, closure_scope);

	if (analyze_list(state, closure_scope, closure_bindings(node)))
		return -1;

	if (analyze(state, closure_scope, closure_body(node)))
		return -1;

	struct type *callable = NULL;
	if (ast_flags(node, AST_FLAG_NOMOVES))
		callable = tgen_pure_closure(NULL, node->loc);
	else
		callable = tgen_closure(NULL, node->loc);

	if (!callable) {
		internal_error("failed allocating closure type");
		return -1;
	}

	foreach_node(binding, closure_bindings(node)) {
		type_append(&callable->t0, clone_type(binding->t));
	}

	node->t = callable;
	return 0;
}

static int analyze_int(struct state *state, struct scope *scope,
                       struct ast *node)
{
	/** @todo do this properly, very hacky, bad bad bad */
	char *i = strdup("int");
	if (!i) {
		internal_error("failed allocating constant int type string");
		return -1;
	}

	node->t = tgen_id(i, node->loc);
	if (!node->t) {
		internal_error("failed allocating constant int type");
		free(i);
		return -1;
	}

	return 0;
}

static int analyze_str(struct state *state, struct scope *scope,
                       struct ast *node)
{
	/** @todo do this properly, very hacky, bad bad bad */
	char *i = strdup("char");
	if (!i) {
		internal_error("failed allocating constant char type string");
		return -1;
	}

	struct type *ch = tgen_id(i, node->loc);
	if (!ch) {
		internal_error("failed allocating constant char type");
		free(i);
		return -1;
	}

	struct type *str = tgen_ptr(ch, node->loc);
	if (!str) {
		internal_error("failed allocating constant str type");
		return -1;
	}

	node->t = str;
	return 0;
}

static int analyze_if(struct state *state, struct scope *scope,
                      struct ast *node)
{
	if (analyze(state, scope, if_cond(node)))
		return -1;

	if (analyze(state, scope, if_body(node)))
		return -1;

	if (analyze(state, scope, if_else(node)))
		return -1;

	node->t = tgen_void(node->loc);
	if (!node->t) {
		internal_error("failed allocating 'if' void type");
		return -1;
	}

	return 0;
}

static int analyze_err_branch(struct state *state, struct scope *scope, struct ast *node)
{
	struct scope *branch_scope = create_scope();
	if (!branch_scope) {
		internal_error("failed allocating err branch scope");
		return -1;
	}

	node->t = tgen_void(node->loc);

	scope_add_scope(scope, branch_scope);
	struct ast *var = gen_var(strdup(err_branch_id(node)), NULL, node->loc);
	struct type *err_type = tgen_err(node->loc);
	var->t = err_type;
	scope_add_var(branch_scope, var);
	return analyze(state, branch_scope, err_branch_body(node));
}

static int analyze_own(struct state *state, struct scope *scope, struct ast *node)
{
	struct ast *found = file_scope_find_symbol(scope, own_id(node));
	if (!found) {
		semantic_error(scope, node, "no symbol named \"%s\"",
				own_id(node));
		return -1;
	}

	if (is_trivially_copyable(found->t))
		semantic_warn(scope, node, "trivially copyable type is never owned");

	node->t = tgen_void(node->loc);
	return analyze(state, scope, own_body(node));
}

static int analyze(struct state *state, struct scope *scope, struct ast *node)
{
	if (!node)
		return 0;

	if (ast_flags(node, AST_FLAG_ANALYZED)) {
		assert(node->t);
		return 0;
	}

	if (ast_flags(node, AST_FLAG_PREANALYZIS)) {
		semantic_error(scope, node, "semantic loop detected");
		return -1;
	}

	ast_set_flags(node, AST_FLAG_PREANALYZIS);

	if (!node->scope)
		node->scope = scope;

	int ret = 0;
	if (is_binop(node)) {
		ret = analyze_binop(state, scope, node);
		goto out;
	}

	if (is_comparison(node)) {
		ret = analyze_comparison(state, scope, node);
		goto out;
	}

	if (is_unop(node)) {
		ret = analyze_unop(state, scope, node);
		goto out;
	}

	switch (node->k) {
	case AST_ERR_BRANCH: ret = analyze_err_branch(state, scope, node); break;
	case AST_CLOSURE: ret = analyze_closure(state, scope, node); break;
	case AST_PROC_DEF: ret = analyze_proc(state, scope, node); break;
	case AST_VAR_DEF: ret = analyze_var(state, scope, node); break;
	case AST_BLOCK: ret = analyze_block(state, scope, node); break;
	case AST_DEREF: ret = analyze_deref(state, scope, node); break;
	case AST_INIT: ret = analyze_init(state, scope, node); break;
	case AST_CALL: ret = analyze_call(state, scope, node); break;
	case AST_REF: ret = analyze_ref(state, scope, node); break;
	case AST_LET: ret = analyze_let(state, scope, node); break;
	case AST_OWN: ret = analyze_own(state, scope, node); break;
	case AST_ID: ret = analyze_id(state, scope, node); break;
	case AST_IF: ret = analyze_if(state, scope, node); break;

	case AST_CONST_INT: ret = analyze_int(state, scope, node); break;
	case AST_CONST_STR: ret = analyze_str(state, scope, node); break;

	case AST_EMPTY:
		node->t = tgen_void(node->loc);
		ret = 0;
		break;
	default:
		internal_error("missing ast analysis for %s", ast_str(node->k));
		return -1;
	}

out:
	if (ret)
		return ret;

	assert(node->t);
	assert(node->scope);
	ast_set_flags(node, AST_FLAG_ANALYZED);
	return 0;
}

static int analyze_list(struct state *state, struct scope *scope,
                        struct ast *nodes)
{
	foreach_node(node, nodes) {
		if (analyze(state, scope, node))
			return -1;
	}

	return 0;
}

static int analyze_type(struct state *state, struct scope *scope,
                        struct type *type)
{
	/* for now, let's just say all types are fine as they are, specified by
	 * the user. */
	(void)state;
	(void)scope;
	(void)type;
	return 0;
}

static int analyze_type_list(struct state *state, struct scope *scope,
                             struct type *types)
{
	foreach_type(type, types) {
		if (analyze_type(state, scope, type))
			return -1;
	}

	return 0;
}

int analyze_root(struct scope *scope, struct ast *root)
{
	foreach_node(node, root) {
		assert(node->k == AST_PROC_DEF);
		if (scope_add_proc(scope, node))
			return -1;
	}

	foreach_node(node, root) {
		struct state state = {};
		if (analyze(&state, scope, node))
			return -1;
	}

	return 0;
}