aboutsummaryrefslogtreecommitdiff
path: root/src/lower.c
blob: 7c5fdbd4d0b92f6e13c60137af0ada63fa98fce0 (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
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
#include <stdio.h>
#include <stdlib.h>
#include <sys/mman.h>

#include <posthaste/lower.h>
#include <posthaste/scope.h>
#include <posthaste/utils.h>

/* The bytecode is similar in construction to Lua's, as in there's two arrays, one
 * for global values and one for local values. The local value array is referred
 * to as the stack. In theory each function/procedure could get its own stack,
 * but in this case there's just a single global stack, and each call moves a
 * stack pointer up to signify entering a new function. Procedure/function
 * formal parameters are the first things on the stack.
 *
 * All instructions are of the three-value kinds, i.e. an instruction has an
 * opcode, an output location and two input locations, not all of which have to
 * be used. There's a special null_loc() to signify an unused location.
 * Locations are effectively just indexes into either the global or local
 * array. I've also added a separate CONST instruction that pushes a constant
 * value to a specified output location.
 *
 * Individual instructions are very wide, which decreases cache performance and
 * makes this particular implementation fairly slow to interpret, but the extra
 * width means it's a little bit easier to work due to not having to
 * compress/decompress anything. In particular, I tried to make JIT compilation
 * as easy as possible, at expense of interpretation speed.
 */

/* globals are kind of ugly and could/should be made into parameters (or
 * potentially even members of some all-encompassing state) but this works for
 * this simple implementation, implementing the change would mosty just require
 * changing function signatures which is boring and I don't want to do it right
 * now */
static struct vec fns = {0};

/* locs use global 0 to mean unitialized and global 1 is reserved as null_loc(),
 * so skip two first globals */
static size_t globals = 2;

size_t num_globals()
{
	return globals;
}

static void lower(struct fn *f, struct ast *n);
static void lower_list(struct fn *f, struct ast *l)
{
	foreach_node(n, l) {
		lower(f, n);
	}
}

static size_t loc_as_int(struct loc l)
{
	size_t a = l.o;
	a |= (size_t)(l.l) << (sizeof(size_t) * 8 - 1);
	return a;
}

static struct loc build_local_loc(size_t idx)
{
	return (struct loc){.l = 1, .o = idx};
}

static struct loc build_global_loc(size_t idx)
{
	return (struct loc){.l = 0, .o = idx};
}

static struct loc null_loc()
{
	/* don't exactly love this but I guess it works */
	return build_global_loc(1);
}

static void output_insn(struct fn *f, enum insn_kind k, struct loc o,
                        struct loc i0, struct loc i1, int64_t v)
{
	struct insn i = {.k = k, .o = o, .i0 = i0, .i1 = i1, .v = v};
	vect_append(struct insn, f->insns, &i);
}

static void output_label(struct fn *f)
{
	output_insn(f, LABEL, null_loc(), null_loc(), null_loc(), 0);
}

static void lower_var(struct fn *f, struct ast *n)
{
	n->l = build_local_loc(f->sp++);
	struct ast *expr = var_expr(n);
	lower(f, expr);
	output_insn(f, MOVE, n->l, expr->l, null_loc(), 0);
}

static void lower_formal(struct fn *f, struct ast *n)
{
	n->l = build_local_loc(f->sp++);
}

static void lower_date(struct fn *f, struct ast *n)
{
	n->l = build_local_loc(f->sp);
	output_insn(f, CONST, n->l, null_loc(), null_loc(), n->v);
}

static void lower_string(struct fn *f, struct ast *n)
{
	n->l = build_local_loc(f->sp);
	output_insn(f, CONST, n->l, null_loc(), null_loc(), (int64_t)n->id);
}

static void lower_int(struct fn *f, struct ast *n)
{
	n->l = build_local_loc(f->sp);
	output_insn(f, CONST, n->l, null_loc(), null_loc(), n->v);
}

static void lower_add(struct fn *f, struct ast *n)
{
	n->l = build_local_loc(f->sp);
	struct ast *l = add_l(n);
	struct ast *r = add_r(n);

	/* since variable definitions can't appear in expressions, there's no
	 * danger of some variable claiming a stack location above this point and
	 * it being overwritten by accident. If variable definitions were
	 * expressions, we would probably have to do an extra pass before
	 * lowering that pre-assigns locations to all variables */
	f->sp += 1; lower(f, l);
	f->sp += 1; lower(f, r);
	/* technically we could reuse the stack location for l, but I found that
	 * reading the generated instruction sequences was a bit easier with
	 * separate output and input stack locations */
	f->sp -= 2;

	output_insn(f, ADD, n->l, l->l, r->l, 0);
}

static void lower_sub(struct fn *f, struct ast *n)
{
	n->l = build_local_loc(f->sp);
	struct ast *l = sub_l(n);
	struct ast *r = sub_r(n);

	f->sp += 1; lower(f, l);
	f->sp += 1; lower(f, r);
	f->sp -= 2;

	output_insn(f, SUB, n->l, l->l, r->l, 0);
}

static void lower_mul(struct fn *f, struct ast *n)
{
	n->l = build_local_loc(f->sp);
	struct ast *l = mul_l(n);
	struct ast *r = mul_r(n);

	f->sp += 1; lower(f, l);
	f->sp += 1; lower(f, r);
	f->sp -= 2;

	output_insn(f, MUL, n->l, l->l, r->l, 0);
}

static void lower_div(struct fn *f, struct ast *n)
{
	n->l = build_local_loc(f->sp);
	struct ast *l = div_l(n);
	struct ast *r = div_r(n);

	f->sp += 1; lower(f, l);
	f->sp += 1; lower(f, r);
	f->sp -= 2;

	output_insn(f, DIV, n->l, l->l, r->l, 0);
}

static void lower_dot_assign(struct fn *f, struct ast *n)
{
	struct ast *r = assign_r(n);
	struct ast *l = assign_l(n);

	lower(f, r);

	struct ast *base = dot_base(l);
	lower(f, base);

	enum insn_kind store = STORE_DAY;
	if (same_id(l->id, "day"))
		store = STORE_DAY;

	else if (same_id(l->id, "month"))
		store = STORE_MONTH;

	else if (same_id(l->id, "year"))
		store = STORE_YEAR;
	else
		abort();

	output_insn(f, store, base->l, base->l, r->l, 0);
	n->l = base->l;
}

static void lower_assign(struct fn *f, struct ast *n)
{
	struct ast *l = assign_l(n);
	if (l->k == AST_DOT)
		return lower_dot_assign(f, n);

	struct ast *r = assign_r(n);

	lower(f, r);
	lower(f, l);
	output_insn(f, MOVE, l->l, r->l, null_loc(), 0);
	n->l = null_loc();
}

static void lower_id(struct fn *f, struct ast *n)
{
	UNUSED(f);
	struct ast *exists = file_scope_find(n->scope, n->id);
	assert(exists);

	/* using ast nodes/scope lookup as convenient way to store variable ->
	 * location mappings */
	n->l = exists->l;
}

static void lower_return(struct fn *f, struct ast *n)
{
	struct ast *expr = return_expr(n);
	lower(f, expr);
	output_insn(f, RET, null_loc(), expr->l, null_loc(), 0);
	n->l = null_loc();
}

static void lower_attr(struct fn *f, struct ast *n)
{
	n->l = build_local_loc(f->sp);

	struct ast *base = attr_base(n);
	lower(f, base);

	enum insn_kind load = LOAD_DAY;
	if (same_id(n->id, "day"))
		load = LOAD_DAY;

	else if (same_id(n->id, "month"))
		load = LOAD_MONTH;

	else if (same_id(n->id, "year"))
		load = LOAD_YEAR;

	else if (same_id(n->id, "weekday"))
		load = LOAD_WEEKDAY;

	else if (same_id(n->id, "weeknum"))
		load = LOAD_WEEKNUM;

	else
		abort();

	output_insn(f, load, n->l, base->l, null_loc(), 0);
}

static void lower_print(struct fn *f, struct ast *p)
{
	foreach_node(n, print_items(p)) {
		lower(f, n);

		/* don't print space on last element */
		if (n->n)
			output_insn(f, PRINT_SPACE, null_loc(), null_loc(),
			            null_loc(), 0);
	}

	output_insn(f, PRINT_NEWLINE, null_loc(), null_loc(), null_loc(), 0);
	p->l = null_loc();
}

static void lower_proc_call(struct fn *f, struct ast *c)
{
	size_t count = 0;
	foreach_node(n, proc_call_args(c)) {
		/* place each argument in its own stack location to await being
		 * used */
		f->sp += 1; lower(f, n); count += 1;
	}

	size_t i = 0;
	foreach_node(n, proc_call_args(c)) {
		output_insn(f, ARG, null_loc(), n->l, null_loc(), i);
		i++;
	}

	struct ast *def = file_scope_find(c->scope, proc_call_id(c));
	output_insn(f, CALL, null_loc(), null_loc(), null_loc(),
	            loc_as_int(def->l));

	c->l = build_local_loc(f->sp);
	if (c->t != TYPE_VOID)
		output_insn(f, RETVAL, c->l, null_loc(), null_loc(), 0);

	f->sp -= count;
}

static void lower_func_call(struct fn *f, struct ast *c)
{
	size_t count = 0;
	foreach_node(n, func_call_args(c)) {
		f->sp += 1; lower(f, n); count += 1;
	}

	size_t i = 0;
	foreach_node(n, func_call_args(c)) {
		output_insn(f, ARG, null_loc(), n->l, null_loc(), i);
		i++;
	}

	struct ast *def = file_scope_find(c->scope, func_call_id(c));
	output_insn(f, CALL, null_loc(), null_loc(), null_loc(),
	            loc_as_int(def->l));
	c->l = build_local_loc(f->sp);
	if (c->t != TYPE_VOID)
		output_insn(f, RETVAL, c->l, null_loc(), null_loc(), 0);

	f->sp -= count;
}

static void lower_eq(struct fn *f, struct ast *n)
{
	n->l = build_local_loc(f->sp);
	struct ast *l = eq_l(n);
	struct ast *r = eq_r(n);

	f->sp += 1; lower(f, l);
	f->sp += 1; lower(f, r);
	f->sp -= 2;

	output_insn(f, EQ, n->l, l->l, r->l, 0);
}

static void lower_lt(struct fn *f, struct ast *n)
{
	n->l = build_local_loc(f->sp);
	struct ast *l = lt_l(n);
	struct ast *r = lt_r(n);

	f->sp += 1; lower(f, l);
	f->sp += 1; lower(f, r);
	f->sp -= 2;

	output_insn(f, LT, n->l, l->l, r->l, 0);
}

static void lower_pos(struct fn *f, struct ast *n)
{
	struct ast *expr = pos_expr(n);
	lower(f, expr);
	n->l = expr->l;
}

static void lower_neg(struct fn *f, struct ast *n)
{
	n->l = build_local_loc(f->sp);
	struct ast *expr = neg_expr(n);
	f->sp += 1; lower(f, expr);
	f->sp -= 1;

	output_insn(f, NEG, n->l, expr->l, null_loc(), 0);
}

static void lower_print_date(struct fn *f, struct ast *n)
{
	struct ast *expr = print_date_expr(n);
	lower(f, expr);
	output_insn(f, PRINT_DATE, null_loc(), expr->l, null_loc(), 0);
	n->l = null_loc();
}

static void lower_print_int(struct fn *f, struct ast *n)
{
	struct ast *expr = print_int_expr(n);
	lower(f, expr);
	output_insn(f, PRINT_INT, null_loc(), expr->l, null_loc(), 0);
	n->l = null_loc();
}

static void lower_print_string(struct fn *f, struct ast *n)
{
	struct ast *expr = print_string_expr(n);
	lower(f, expr);
	output_insn(f, PRINT_STRING, null_loc(), expr->l, null_loc(), 0);
	n->l = null_loc();
}

static void lower_print_bool(struct fn *f, struct ast *n)
{
	struct ast *expr = print_bool_expr(n);
	lower(f, expr);
	output_insn(f, PRINT_BOOL, null_loc(), expr->l, null_loc(), 0);
	n->l = null_loc();
}

static void lower_date_add(struct fn *f, struct ast *n)
{
	n->l = build_local_loc(f->sp);

	struct ast *l = date_add_l(n);
	struct ast *r = date_add_r(n);

	f->sp += 1; lower(f, l);
	f->sp += 1; lower(f, r);
	f->sp -= 2;

	output_insn(f, DATE_ADD, n->l, l->l, r->l, 0);
}

static void lower_date_sub(struct fn *f, struct ast *n)
{
	n->l = build_local_loc(f->sp);

	struct ast *l = date_sub_l(n);
	struct ast *r = date_sub_r(n);

	f->sp += 1; lower(f, l);
	f->sp += 1; lower(f, r);
	f->sp -= 2;

	output_insn(f, DATE_SUB, n->l, l->l, r->l, 0);
}

static void lower_date_diff(struct fn *f, struct ast *n)
{
	n->l = build_local_loc(f->sp);

	struct ast *l = date_diff_l(n);
	struct ast *r = date_diff_r(n);

	f->sp += 1; lower(f, l);
	f->sp += 1; lower(f, r);
	f->sp -= 2;

	output_insn(f, DATE_DIFF, n->l, l->l, r->l, 0);
}

static void lower_until(struct fn *f, struct ast *n)
{
	size_t off = vec_len(&f->insns);
	output_label(f);

	lower_list(f, until_body(n));

	struct ast *cond = until_cond(n);
	lower(f, cond);

	output_insn(f, BZ, null_loc(), cond->l, null_loc(), off);
	n->l = null_loc();
}

static void patch_branch(struct fn *f, size_t branch, size_t off)
{
	/* the patch destination must always be a label, required by the JIT */
	assert((vect_at(struct insn, f->insns, off)).k == LABEL);

	struct insn i = vect_at(struct insn, f->insns, branch);
	i.v = off;
	vect_at(struct insn, f->insns, branch) = i;
}

static void lower_unless(struct fn *f, struct ast *n)
{
	struct ast *cond = unless_cond(n);
	lower(f, cond);

	size_t branch = vec_len(&f->insns);
	/* placeholder */
	output_insn(f, B, null_loc(), cond->l, null_loc(), 0);

	struct ast *body = unless_body(n);
	lower_list(f, body);

	size_t jump = vec_len(&f->insns);
	/* placeholder */
	output_insn(f, J, null_loc(), null_loc(), null_loc(), 0);

	size_t off = vec_len(&f->insns);
	output_label(f);
	patch_branch(f, branch, off);

	struct ast *otherwise = unless_otherwise(n);
	lower_list(f, otherwise);

	off = vec_len(&f->insns);
	output_label(f);
	patch_branch(f, jump, off);

	n->l = null_loc();
}

static void lower_unless_expr(struct fn *f, struct ast *n)
{
	n->l = build_local_loc(f->sp);

	struct ast *cond = unless_expr_cond(n);
	lower(f, cond);

	size_t branch = vec_len(&f->insns);
	/* placeholder */
	output_insn(f, B, null_loc(), cond->l, null_loc(), 0);

	struct ast *body = unless_expr_body(n);
	lower(f, body);

	output_insn(f, MOVE, n->l, body->l, null_loc(), 0);

	size_t jump = vec_len(&f->insns);
	/* placeholder */
	output_insn(f, J, null_loc(), null_loc(), null_loc(), 0);

	size_t off = vec_len(&f->insns);
	output_label(f);
	patch_branch(f, branch, off);

	struct ast *otherwise = unless_expr_otherwise(n);
	lower(f, otherwise);
	output_insn(f, MOVE, n->l, otherwise->l, null_loc(), 0);

	off = vec_len(&f->insns);
	output_label(f);
	patch_branch(f, jump, off);
}

static void lower_builtin_call(struct fn *f, struct ast *n)
{
	/* for now we only support Today(), which doesn't have any args */
	assert(same_id(builtin_call_id(n), "Today"));

	n->l = build_local_loc(f->sp);
	output_insn(f, TODAY, n->l, null_loc(), null_loc(), 0);
}

static void lower(struct fn *f, struct ast *n)
{
	/* technically it would be possible for some lowering to use stack space
	 * without calling lower(), probably causing difficult to debug runtime weirdness.
	 * Not currently an issue, but something that would need to be taken
	 * into account if this instruction set was extended at some point. */
	if (f->max_sp < f->sp)
		f->max_sp = f->sp;

	switch (n->k) {
	case AST_PROC_DEF: break;
	case AST_FUNC_DEF: break;
	case AST_VAR_DEF: lower_var(f, n); break;
	case AST_FORMAL_DEF: lower_formal(f, n); break;
	case AST_CONST_STRING: lower_string(f, n); break;
	case AST_CONST_DATE: lower_date(f, n); break;
	case AST_CONST_INT: lower_int(f, n); break;
	case AST_ASSIGN: lower_assign(f, n); break;
	case AST_ADD: lower_add(f, n); break;
	case AST_SUB: lower_sub(f, n); break;
	case AST_MUL: lower_mul(f, n); break;
	case AST_DIV: lower_div(f, n); break;
	case AST_ID: lower_id(f, n); break;
	case AST_RETURN: lower_return(f, n); break;
	case AST_ATTR: lower_attr(f, n); break;
	case AST_PRINT: lower_print(f, n); break;
	case AST_PROC_CALL: lower_proc_call(f, n); break;
	case AST_FUNC_CALL: lower_func_call(f, n); break;
	case AST_BUILTIN_CALL: lower_builtin_call(f, n); break;
	case AST_EQ: lower_eq(f, n); break;
	case AST_LT: lower_lt(f, n); break;
	case AST_POS: lower_pos(f, n); break;
	case AST_NEG: lower_neg(f, n); break;
	case AST_PRINT_DATE: lower_print_date(f, n); break;
	case AST_PRINT_STRING: lower_print_string(f, n); break;
	case AST_PRINT_BOOL: lower_print_bool(f, n); break;
	case AST_PRINT_INT: lower_print_int(f, n); break;
	case AST_DATE_ADD: lower_date_add(f, n); break;
	case AST_DATE_SUB: lower_date_sub(f, n); break;
	case AST_DATE_DIFF: lower_date_diff(f, n); break;
	case AST_UNTIL: lower_until(f, n); break;
	case AST_UNLESS: lower_unless(f, n); break;
	case AST_UNLESS_EXPR: lower_unless_expr(f, n); break;

	/* handled by assign */
	case AST_DOT: break;
	}

	/* each ast node is assigned some location, regardless of if it actually
	 * needs one as a sanity check */
	assert(loc_as_int(n->l) > 0);
}

static void lower_global_var(struct fn *f, struct ast *n) {
	n->l = build_global_loc(globals++);
	struct ast *expr = var_expr(n);
	lower(f, expr);
	output_insn(f, MOVE, n->l, expr->l, null_loc(), 0);
}

static void add_proc(struct ast *n) {
	size_t idx = vec_len(&fns);
	n->l = build_global_loc(idx);
	struct fn f = {.name = proc_id(n),
		       .idx = idx,
		       .sp = 0,
		       .insns = vec_create(sizeof(struct insn))};

	vect_append(struct fn, fns, &f);
}

static void add_func(struct ast *n) {
	size_t idx = vec_len(&fns);
	n->l = build_global_loc(idx);
	struct fn f = {.name = func_id(n),
		       .idx = idx,
		       .sp = 0,
		       .insns = vec_create(sizeof(struct insn))};

	vect_append(struct fn, fns, &f);
}

static void lower_proc_def(struct ast *d)
{
	struct fn *f = vec_at(&fns, d->l.o);
	assert(f);

	f->params = ast_list_len(proc_formals(d));

	lower_list(f, proc_formals(d));
	lower_list(f, proc_vars(d));
	lower_list(f, proc_body(d));

	if (d->t == TYPE_VOID)
		output_insn(f, STOP, null_loc(), null_loc(), null_loc(), 0);
}

static void lower_func_def(struct ast *d)
{
	struct fn *f = vec_at(&fns, d->l.o);
	assert(f);

	f->params = ast_list_len(func_formals(d));

	lower_list(f, func_formals(d));
	lower_list(f, func_vars(d));
	lower_list(f, func_body(d));
}

#ifdef DEBUG
static void dump_loc(struct loc l)
{
	if (is_null_loc(l)) {
		printf("null, ");
		return;
	}

	bool local = l.l;
	if (local) {
		printf("l");
	} else {
		printf("g");
	}

	size_t val = l.o;
	printf("%zd, ", val);
}

static void dump_val(int64_t v)
{
	printf("%lli", (long long)v);
}

static void dump_insn(struct insn i, size_t addr)
{
	printf("//%8zd: ", addr);
#define DUMP(x) case x: printf(#x); break;
	switch (i.k) {
	DUMP(TODAY);
	DUMP(CALL);
	DUMP(MOVE);
	DUMP(ADD);
	DUMP(SUB);
	DUMP(MUL);
	DUMP(DIV);
	DUMP(ARG);
	DUMP(STOP);
	DUMP(RETVAL);
	DUMP(PRINT_DATE);
	DUMP(PRINT_INT);
	DUMP(PRINT_STRING);
	DUMP(PRINT_NEWLINE);
	DUMP(PRINT_SPACE);
	DUMP(PRINT_BOOL);
	DUMP(DATE_ADD);
	DUMP(DATE_SUB);
	DUMP(DATE_DIFF);
	DUMP(STORE_DAY);
	DUMP(STORE_MONTH);
	DUMP(STORE_YEAR);
	DUMP(LOAD_DAY);
	DUMP(LOAD_MONTH);
	DUMP(LOAD_YEAR);
	DUMP(LOAD_WEEKDAY);
	DUMP(LOAD_WEEKNUM);
	DUMP(RET);
	DUMP(CONST);
	DUMP(EQ);
	DUMP(LT);
	DUMP(NEG);
	DUMP(B);
	DUMP(BZ);
	DUMP(J);
	DUMP(LABEL);
	}
#undef DUMP

	printf(" ");

	dump_loc(i.o);
	dump_loc(i.i0);
	dump_loc(i.i1);
	dump_val(i.v);

	printf("\n");
}

static void dump_insns(struct fn *f)
{
	size_t addr = 0;
	foreach_vec(ii, f->insns) {
		struct insn i = vect_at(struct insn, f->insns, ii);
		dump_insn(i, addr);
		addr++;
	}
}
#endif /* DEBUG */

struct fn *find_fn(size_t idx)
{
	return vec_at(&fns, idx);
}

int lower_ast(struct ast *tree)
{
	fns = vec_create(sizeof(struct fn));

	/* make body of file out to be a kind of main function, it will always
	 * be at index 0 */
	struct fn main = {.name = "main",
		          .idx = 0,
		          .sp = 0,
		          .insns = vec_create(sizeof(struct insn))};

	vect_append(struct fn, fns, &main);

	/* first create function nodes in fns to assign each procedure an index */
	foreach_node(n, tree) {
		switch (n->k) {
		case AST_PROC_DEF: add_proc(n); break;
		case AST_FUNC_DEF: add_func(n); break;
		default:
		}
	}

	struct fn *f = &vect_at(struct fn, fns, 0);
	/* we can't treat file scope as a regular function, as all variable
	 * definitions must be made global, so we have a little bit of
	 * duplicated code here but that's fine */
	foreach_node(n, tree) {
		switch (n->k) {
		case AST_VAR_DEF: lower_global_var(f, n); break;
		case AST_PROC_DEF: lower_proc_def(n); break;
		case AST_FUNC_DEF: lower_func_def(n); break;
		default: lower(f, n);
		}
	}

	/* append a return without value so we know when to stop interpretation */
	output_insn(f, STOP, null_loc(), null_loc(), null_loc(), 0);

#ifdef DEBUG
	foreach_vec(fi, fns) {
		struct fn *f = vec_at(&fns, fi);
		printf("// %s (%zd):\n", f->name, f->idx);
		dump_insns(f);
	}
#endif
	return 0;
}

static void destroy_fn(struct fn *f)
{
	vec_destroy(&f->insns);

	/* filled in by JIT, but struct fn is still under the jurisdiction of
	 * lower.c so free arena here */
	if (f->arena)
		munmap(f->arena, f->size);
}

void destroy_lowering()
{
	foreach_vec(fi, fns) {
		struct fn *f = vec_at(&fns, fi);
		destroy_fn(f);
	}

	vec_destroy(&fns);
}