blob: 8f11f1b3fb9cf867cde70e9592e86d867add753f (
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
|
// Copyright (c) 2023, Marvin Borner <dev@marvinborner.de>
// SPDX-License-Identifier: MIT
#ifndef BLOC_TREE_H
#define BLOC_TREE_H
#include <stdint.h>
#include <term.h>
#define VALIDATED_TREE ((int)0x0)
#define INVALIDATED_TREE ((int)0xffffffff)
#define FREEABLE_TREE(t) \
((t)->state != VALIDATED_TREE && (t)->state != INVALIDATED_TREE)
struct tree {
term_type type;
uint32_t hash;
int state; // zero or index to ref
int size; // blc length
union {
struct {
struct tree *term;
} abs;
struct {
struct tree *lhs;
struct tree *rhs;
} app;
struct {
int index;
} var;
struct {
size_t index;
} ref;
} u;
};
struct list {
int val; // length or priority
void *data;
struct list *next;
};
struct list *tree_merge_duplicates(struct term *term);
#endif
|