aboutsummaryrefslogtreecommitdiff
path: root/src/build.c
diff options
context:
space:
mode:
authorMarvin Borner2023-04-14 18:02:02 +0200
committerMarvin Borner2023-04-14 18:02:02 +0200
commit35702ebb4997f5f1aec25ba1c9ba257f352ea493 (patch)
treee3dd9e543a3344cba23e48dc6bf903d65bc7e2a3 /src/build.c
parent43996255f614ac57deb2fc0666f221853c60b343 (diff)
pqueue lib and fixes
this makes everything dramatically faster
Diffstat (limited to 'src/build.c')
-rw-r--r--src/build.c43
1 files changed, 41 insertions, 2 deletions
diff --git a/src/build.c b/src/build.c
index 7867e31..d8a8146 100644
--- a/src/build.c
+++ b/src/build.c
@@ -6,8 +6,6 @@
#include <stdio.h>
#include <build.h>
-#include <free.h>
-#include <parse.h>
static void write_bit(char val, FILE *file, char *byte, int *bit)
{
@@ -84,3 +82,44 @@ void write_bloc(struct list *table, const char *path)
fclose(file);
}
+
+static void fprint_bloc_blc(struct term *term, struct bloc_parsed *bloc,
+ FILE *file)
+{
+ switch (term->type) {
+ case ABS:
+ fprintf(file, "00");
+ fprint_bloc_blc(term->u.abs.term, bloc, file);
+ break;
+ case APP:
+ fprintf(file, "01");
+ fprint_bloc_blc(term->u.app.lhs, bloc, file);
+ fprint_bloc_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)
+ fprintf(stderr, "invalid ref index %ld\n",
+ term->u.ref.index);
+ fprint_bloc_blc(
+ bloc->entries[bloc->length - term->u.ref.index - 2],
+ bloc, file);
+ break;
+ default:
+ fprintf(stderr, "invalid type %d\n", term->type);
+ }
+}
+
+void write_blc(struct bloc_parsed *bloc, const char *path)
+{
+ FILE *file = fopen(path, "wb");
+
+ fprint_bloc_blc(bloc->entries[bloc->length - 1], bloc, file);
+ fprintf(file, "\n");
+
+ fclose(file);
+}