aboutsummaryrefslogtreecommitdiff
path: root/src/lower.c
blob: 8849bd1483c269985bb37dade0fd23bfa0f114ed (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
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
/* SPDX-License-Identifier: copyleft-next-0.3.1 */
/* Copyright 2024 Kim Kuparinen < kimi.h.kuparinen@gmail.com > */

#include <stdbool.h>
#include <stdlib.h>
#include <string.h>
#include <stdarg.h>
#include <assert.h>

#include <fwd/lower.h>
#include <fwd/scope.h>

/** @todo semantics in this file are a bit unclear, should probably do some kind
 * of "each function starts and ends on an indented empty line" or something */

struct state {
	long indent;
};

static void increase_indent(struct state *state)
{
	state->indent++;
}

static void decrease_indent(struct state *state)
{
	state->indent--;
}

static void indent(struct state *state)
{
	for (long i = 0; i < state->indent; ++i)
		putchar(' ');
}

static int lower_var(struct ast *expr);

static int lower_expr(struct state *state, struct ast *expr);
static int lower_closure(struct state *state, struct ast *closure);

static int lower_block(struct state *state, struct ast *block, bool ret);
static int lower_statement(struct state *state, struct ast *stmt, bool ret);

static int lower_type(struct type *type);
static int lower_types(struct type *types);

static int lower_binop(struct state *state, struct ast *binop)
{
	printf("(");
	if (lower_expr(state, binop_left(binop)))
		return -1;

	switch (binop->k) {
	case AST_ADD:   printf(" + "); break;
	case AST_SUB:   printf(" - "); break;
	case AST_MUL:   printf(" * "); break;
	case AST_DIV:   printf(" / "); break;
	case AST_REM:   printf(" %% "); break;
	case AST_LSHIFT:        printf(" << "); break;
	case AST_RSHIFT:        printf(" >> "); break;
	default:
		internal_error("missing binop lowering");
		return -1;
	}

	if (lower_expr(state, binop_right(binop)))
		return -1;

	printf(")");
	return 0;
}

static int lower_comparison(struct state *state, struct ast *comp)
{
	printf("(");
	if (lower_expr(state, comparison_left(comp)))
		return -1;

	switch (comp->k) {
	case AST_LT: printf(" < "); break;
	case AST_GT: printf(" > "); break;
	case AST_LE: printf(" <= "); break;
	case AST_GE: printf(" <= "); break;
	case AST_NE: printf(" != "); break;
	case AST_EQ: printf(" == "); break;
	default:
		internal_error("missing comparison lowering");
		return -1;
	}

	if (lower_expr(state, comparison_right(comp)))
		return -1;

	printf(")");
	return 0;
}

static int lower_exprs(struct state *state, struct ast *exprs)
{
	if (!exprs)
		return 0;

	if (lower_expr(state, exprs))
		return -1;

	foreach_node(expr, exprs->n) {
		printf(", ");
		if (lower_expr(state, expr))
			return -1;
	}

	return 0;
}

static int lower_type_construct(struct type *type)
{
	printf("%s", tconstruct_id(type));
	printf("<");

	if (lower_types(tconstruct_args(type)))
		return -1;

	printf(">");
	return 0;
}

static int lower_type_callable(struct type *type)
{
	/* std::function has a slight overhead compared to just using auto here,
	 * but auto doesn't play well with recursive templates like with our
	 * fib.fwd example, so use std::function for now. Eventually I might
	 * instead write a C backend or something to have more control over the
	 * exact semantics, but for now this is good enough. */
	printf("std::function<fwd_err_t(");

	if (lower_types(type->t0))
		return -1;

	printf(")>");
	return 0;
}

static int lower_type_ref(struct type *type)
{
	if (lower_type(tref_base(type)))
		return -1;

	printf("&");
	return 0;
}

static int lower_type_ptr(struct type *type)
{
	/* would I need parentheses in some cases? */
	if (lower_type(tptr_base(type)))
		return -1;

	printf("*");
	return 0;
}

static int lower_type(struct type *type)
{
	switch (type->k) {
	case TYPE_ID: printf("%s", tid_str(type)); return 0;
	case TYPE_CONSTRUCT: return lower_type_construct(type);
	case TYPE_CLOSURE: return lower_type_callable(type);
	case TYPE_FUNC_PTR: return lower_type_callable(type);
	case TYPE_PURE_CLOSURE: return lower_type_callable(type);
	case TYPE_REF: return lower_type_ref(type);
	case TYPE_PTR: return lower_type_ptr(type);
	default:
		internal_error("missing type lowering");
		return -1;
	}

	return 0;
}

static int lower_types(struct type *types)
{
	if (!types)
		return 0;

	if (lower_type(types))
		return -1;

	foreach_type(type, types->n) {
		printf(", ");
		if (lower_type(type))
			return -1;
	}

	return 0;
}

static int lower_init(struct state *state, struct ast *init)
{
	printf("%s", init_id(init));

	if (init_args(init)) {
		printf("<");
		if (lower_types(init_args(init)))
			return -1;

		printf(">");
	}

	printf("{");

	if (lower_exprs(state, init_body(init)))
		return -1;

	printf("}");
	return 0;
}

static int lower_unop(struct state *state, struct ast *expr)
{
	switch (expr->k) {
	case AST_LNOT:  printf("-"); break;
	case AST_NOT:   printf("~"); break;
	case AST_NEG:   printf("-"); break;
	default:
		internal_error("missing unop lowering");
		return -1;
	}

	return lower_expr(state, unop_expr(expr));
}

static int lower_expr(struct state *state, struct ast *expr)
{
	if (is_unop(expr))
		return lower_unop(state, expr);

	if (is_binop(expr))
		return lower_binop(state, expr);

	if (is_comparison(expr))
		return lower_comparison(state, expr);

	switch (expr->k) {
	case AST_ID:            printf("%s", id_str(expr)); break;
	case AST_CONST_INT:     printf("%lld", int_val(expr)); break;
	case AST_CONST_FLOAT:   printf("%f", float_val(expr)); break;
	case AST_CONST_BOOL:    printf("%s", bool_val(expr) ? "true" : "false");
		break;
	case AST_CONST_STR:     printf("\"%s\"", str_val(expr)); break;
	case AST_CONST_CHAR:    printf("'%c'", (char)char_val(expr)); break;
	case AST_INIT:          return lower_init(state, expr);
	case AST_CLOSURE:       return lower_closure(state, expr);
	case AST_REF:           return lower_expr(state, ref_base(expr));
	case AST_DEREF:         return lower_expr(state, deref_base(expr));
	default:
		internal_error("missing expr lowering");
		return -1;
	}

	return 0;
}

static int lower_move(struct state *state, struct ast *move)
{
	if (move->k == AST_ID) {
		/** @todo once I start messing about with references, moves
		 * should only be outputted for parameters that take ownership
		 */
		printf("move(%s)", id_str(move));
		return 0;
	}

	return lower_expr(state, move);
}

static int lower_moves(struct state *state, struct ast *moves)
{
	if (!moves)
		return 0;

	if (lower_move(state, moves))
		return -1;

	foreach_node(move, moves->n) {
		printf(", ");
		if (lower_move(state, move))
			return -1;
	}

	return 0;
}

static int lower_err_branch(struct state *state, struct ast *err)
{
	if (lower_block(state, err_branch_body(err), false))
		return -1;

	printf("\n");
	return 0;
}

static int lower_mark_moved(struct state *state, struct ast *moves)
{
	if (!moves)
		return 0;

	foreach_node(move, moves) {
		if (move->k != AST_ID)
			continue;

		if (is_trivially_copyable(move->t))
			continue;

		if (is_callable(move->t))
			continue;

		printf("%s_owned = false;\n", id_str(move));
		indent(state);
	}

	return 0;
}

/** @todo this is probably more complicated than it really needs to be, maybe
 * refactor into lower_checked_call and lower_implicit_call or something for
 * explicit and implicit error handling cases? */
static int lower_call(struct state *state, struct ast *call, bool ret)
{
	struct ast *err = call_err(call);
	/** @todo better default error name? */
	const char *err_str = err ? err_branch_id(err) : "_fwd_err";

	if (lower_mark_moved(state, call_args(call)))
		return -1;

	bool direct_ret = ret && !err;
	if (direct_ret)
		printf("return ");
	else
		printf("if (auto %s = ", err_str);

	if (lower_expr(state, call_expr(call)))
		return -1;

	printf("(");

	if (lower_moves(state, call_args(call)))
		return -1;

	if (direct_ret) {
		printf(");\n");
		return 0;
	}

	printf("))");
	if (err) {
		if (lower_err_branch(state, err))
			return -1;

		if (ret) {
			printf("\n");
			indent(state);
			printf("return nullptr;\n");
		}

		return 0;
	}

	printf("\n");
	indent(state);
	printf(" return %s;\n", err_str);

	if (ret) {
		indent(state);
		printf("return nullptr;\n");
	}

	return 0;
}

static int lower_let(struct state *state, struct ast *let, bool ret)
{
	if (lower_var(let_var(let)))
		return -1;

	printf(" = ");

	if (lower_expr(state, let_expr(let)))
		return -1;

	printf(";\n");
	if (ret) {
		indent(state);
		printf("return nullptr;\n");
	}

	return 0;
}

static int lower_if(struct state *state, struct ast *stmt, bool ret)
{
	printf("if (");
	if (lower_expr(state, if_cond(stmt)))
		return -1;

	printf(") ");

	if (lower_block(state, if_body(stmt), ret))
		return -1;

	if (!if_else(stmt)) {
		printf("\n");
		return 0;
	}

	printf(" else ");
	if (lower_block(state, if_else(stmt), ret))
		return -1;

	printf("\n");
	return 0;
}

static int lower_error(struct ast *err)
{
	assert(error_str(err) || error_id(err));
	if (error_str(err)) {
		printf("return %s;\n", error_str(err));
		return 0;
	}

	struct ast *id = error_id(err);
	printf("return %s;\n", id_str(id));
	return 0;
}

static int lower_own(struct state *state, struct ast *stmt, bool ret)
{
	/** @todo name mangling */
	printf("if (!%s_owned) ", own_id(stmt));
	if (lower_block(state, own_body(stmt), ret))
		return -1;

	printf("\n");
	return 0;
}

static int lower_statement(struct state *state, struct ast *stmt, bool ret)
{
	switch (stmt->k) {
	case AST_OWN:   return lower_own(state, stmt, ret);
	case AST_LET:   return lower_let(state, stmt, ret);
	case AST_CALL:  return lower_call(state, stmt, ret);
	case AST_IF:    return lower_if(state, stmt, ret);
	case AST_EMPTY: return 0;
	default:
		internal_error("missing statement lowering");
		return -1;
	}

	return 0;
}

static int lower_block_vars(struct state *state, struct ast *block)
{
	struct scope *scope = block->scope;

	bool populated = false;
	foreach_visible(n, scope->symbols) {
		struct ast *def = n->node;
		if (def->k != AST_VAR_DEF)
			continue;

		if (is_trivially_copyable(def->t))
			continue;

		if (is_callable(def->t))
			continue;

		if (!populated) {
			indent(state);
			printf("[[maybe_unused]] bool %s_owned = true",
					var_id(def));

			populated = true;
			continue;
		}

		printf(", %s_owned = true", var_id(def));
	}

	if (populated)
		printf(";\n\n");

	return 0;
}

static int lower_block(struct state *state, struct ast *block, bool ret)
{
	printf("{\n");
	increase_indent(state);

	if (lower_block_vars(state, block))
		return -1;

	foreach_node(stmt, block_body(block)) {
		indent(state);

		bool returning = block_error(block) ? false : ret && !stmt->n;
		if (lower_statement(state, stmt, returning))
			return -1;
	}

	if (block_error(block)) {
		indent(state);
		if (lower_error(block_error(block)))
			return -1;
	}

	decrease_indent(state);
	indent(state);
	printf("}");
	return 0;
}

static int lower_var(struct ast *var)
{
	if (lower_type(var_type(var)))
		return -1;

	printf(" %s", var_id(var));
	return 0;
}

static int lower_vars(struct ast *vars)
{
	if (!vars)
		return 0;

	if (lower_var(vars))
		return -1;

	foreach_node(var, vars->n) {
		printf(", ");
		if (lower_var(var))
			return -1;
	}

	return 0;
}

static int lower_closure(struct state *state, struct ast *closure)
{
	printf("[&](");
	if (lower_vars(closure_bindings(closure)))
		return -1;

	printf(")");

	if (lower_block(state, closure_body(closure), true))
		return -1;

	return 0;
}

static int lower_proto(struct ast *proc)
{
	/* 'extern' functions should be provided to us by whatever framework the
	 * user is using */
	if (!proc_body(proc))
		return 0;

	printf("fwd_err_t ");
	if (strcmp("main", proc_id(proc)) == 0)
		printf("fwd_main(");
	else
		printf("%s(", proc_id(proc));


	if (lower_vars(proc_params(proc)))
		return -1;

	printf(");\n\n");
	return 0;
}

static int lower_proc(struct ast *proc)
{
	if (!proc_body(proc))
		return 0;

	printf("fwd_err_t ");
	if (strcmp("main", proc_id(proc)) == 0)
		printf("fwd_main(");
	else
		printf("%s(", proc_id(proc));

	if (lower_vars(proc_params(proc)))
		return -1;

	printf(")\n");

	struct state state = {0};
	if (lower_block(&state, proc_body(proc), true))
		return -1;

	printf("\n\n");
	return 0;
}

int lower(struct scope *root)
{
	printf("#include <fwdlib.hpp>\n");

	foreach_visible(visible, root->symbols) {
		struct ast *proc = visible->node;
		assert(proc->k == AST_PROC_DEF);
		if (lower_proto(proc))
			return -1;
	}

	foreach_visible(visible, root->symbols) {
		struct ast *proc = visible->node;
		if (lower_proc(proc))
			return -1;
	}


	puts("int main()");
	puts("{");
	puts("	fwd_err_t err = fwd_main();");
	puts("	if (err) {");
	puts("		fprintf(stderr, \"%s\", err);");
	puts("		return -1;");
	puts("	}");
	puts("}");

	return 0;
}