aboutsummaryrefslogtreecommitdiff
path: root/src/targets/unblc.c
blob: 46d63a560b321bb2d76bc1cd4fddcec09bc43a99 (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
// Copyright (c) 2024, Marvin Borner <dev@marvinborner.de>
// SPDX-License-Identifier: MIT

#include <stdlib.h>
#include <string.h>
#include <stdio.h>

#include <target.h>
#include <parse.h>
#include <log.h>

static void fprint_blc(struct term *term, struct bloc_parsed *bloc, FILE *file)
{
	switch (term->type) {
	case ABS:
		fprintf(file, "00");
		fprint_blc(term->u.abs.term, bloc, file);
		break;
	case APP:
		fprintf(file, "01");
		fprint_blc(term->u.app.lhs, bloc, file);
		fprint_blc(term->u.app.rhs, bloc, file);
		break;
	case VAR:
		for (int i = 0; i <= term->u.var.index; i++)
			fprintf(file, "1");
		fprintf(file, "0");
		break;
	case REF:
		if (term->u.ref.index + 1 >= bloc->length)
			fatal("invalid ref index %ld\n", term->u.ref.index);
		fprint_blc(bloc->entries[bloc->length - term->u.ref.index - 2],
			   bloc, file);
		break;
	default:
		fatal("invalid type %d\n", term->type);
	}
}

static void write_blc(struct bloc_parsed *bloc, FILE *file)
{
	fprint_blc(bloc->entries[bloc->length - 1], bloc, file);
	fprintf(file, "\n");
}

struct target_spec target_blc = {
	.name = "blc",
	.exec = write_blc,
};