aboutsummaryrefslogtreecommitdiff
path: root/src/store.c
diff options
context:
space:
mode:
authorMarvin Borner2023-02-20 16:17:31 +0100
committerMarvin Borner2023-02-20 16:17:31 +0100
commita162fdc74abf0686ec06e65e06d67a8ce5c13b30 (patch)
treeb844718a0befa9853c8c12255933f0ed9308f69d /src/store.c
parentc741632fbe41c8fcb0b2ea0c2a5b08e778768a7d (diff)
Kinda working but slow
Diffstat (limited to 'src/store.c')
-rw-r--r--src/store.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/store.c b/src/store.c
index ae1d1bd..7bab153 100644
--- a/src/store.c
+++ b/src/store.c
@@ -35,6 +35,7 @@
#include <string.h>
#include <store.h>
+#include <gc.h>
#define store_node_debug_fmt \
"node{element_arity=%u, element_map=%08x, branch_arity=%u, branch_map=%08x, ref_count=%u}"
@@ -249,7 +250,7 @@ static void node_destroy(struct node *node)
DEBUG_NOTICE(" destroying " store_node_debug_fmt "@%p\n",
store_node_debug_args(node), (void *)node);
- free(node);
+ gc_free(&gc, node);
}
// reference counting
@@ -283,7 +284,7 @@ static struct node *node_new(uint32_t element_map, uint32_t branch_map,
{
const size_t content_size = STORE_NODE_ELEMENTS_SIZE(element_arity) +
STORE_NODE_BRANCHES_SIZE(branch_arity);
- struct node *result = malloc(sizeof(*result) + content_size);
+ struct node *result = gc_malloc(&gc, sizeof(*result) + content_size);
result->element_arity = element_arity;
result->branch_arity = branch_arity;
@@ -432,7 +433,8 @@ static struct collision_node *
collision_node_new(const STORE_NODE_ELEMENT_T *values, uint8_t element_arity)
{
size_t content_size = sizeof(STORE_NODE_ELEMENT_T) * element_arity;
- struct collision_node *result = malloc(sizeof(*result) + content_size);
+ struct collision_node *result =
+ gc_malloc(&gc, sizeof(*result) + content_size);
result->element_arity = element_arity;
result->branch_arity = 0;
@@ -868,7 +870,7 @@ static int node_equals(struct node *left, struct node *right,
static struct store *store_from(struct node *root, unsigned length,
STORE_HASHFN_T(hash), STORE_EQUALSFN_T(equals))
{
- struct store *result = malloc(sizeof(*result));
+ struct store *result = gc_malloc(&gc, sizeof(*result));
result->ref_count = 0;
result->root = root;
result->length = length;
@@ -882,7 +884,7 @@ void store_destroy(struct store **store)
DEBUG_NOTICE("destroying store@%p\n", (void *)*store);
store_node_release((*store)->root);
- free(*store);
+ gc_free(&gc, *store);
*store = NULL;
}