-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnodes.c
86 lines (70 loc) · 2.58 KB
/
nodes.c
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
#ifndef cst_NODES_C
#define cst_NODES_C 1
#include "nodes.h"
#include <assert.h>
#include <malloc.h>
/* generate node functions (body) */
#define _cst_NODES_IS_HEADER 0
#define _cst_CREATE_NODE_FUNCS_(name, free_body, print_body) \
cst_Node* cst_binit_##name(cst_Node* base, cst_n##name* n, uint32_t pstart, uint32_t pend, uint32_t lno, uint32_t cno) { \
*base = (cst_Node)cst_EMPTYNODE; \
base->val = (Cst__DummyEmpty*)n; \
base->node_case = cst_NTYPE_##name; \
base->pos_start = pstart; base->pos_end = pend; \
base->lineno = lno; base->colno = cno; \
return base; \
} \
void cst_nfree_##name(cst_n##name* n) free_body; \
void cst_nprint_##name(FILE* s, cst_n##name* n) { \
fputs("Node type: " #name "\n", s); \
print_body \
}
#define _cst_CREATE_NODE_FUNCS(name, free_body, print_body, init_body, init_name, ...) \
cst_n##name* cst_ninit_##name(cst_n##name* n, __VA_ARGS__) { \
*n = (cst_n##name)CST__##init_name##__INIT; \
init_body \
return n; \
} \
_cst_CREATE_NODE_FUNCS_(name, free_body, print_body)
#define _cst_CREATE_NODE_FUNCS_NIP(name, free_body, print_body, init_body, init_name) \
cst_n##name* cst_ninit_##name(cst_n##name* n) { \
*n = (cst_n##name)CST__##init_name##__INIT; \
init_body \
return n; \
} \
_cst_CREATE_NODE_FUNCS_(name, free_body, print_body)
#include "protobuf/nodes.pb-c.c"
#include "protobuf/accesses.pb-c.c"
#include "nodes/accesses.ch"
#include "protobuf/atoms.pb-c.c"
#include "nodes/atoms.ch"
#include "protobuf/control.pb-c.c"
#include "nodes/control.ch"
#include "protobuf/operators.pb-c.c"
#include "nodes/operators.ch"
#include "protobuf/procedures.pb-c.c"
#include "nodes/procedures.ch"
#include "protobuf/statements.pb-c.c"
#include "nodes/statements.ch"
#include "protobuf/types.pb-c.c"
#include "nodes/types.ch"
#undef _cst_NODES_IS_HEADER
#undef _cst_CREATE_NODE_FUNCS_
#undef _cst_CREATE_NODE_FUNCS
#undef _cst_CREATE_NODE_FUNCS_ONEPARAM
#undef _cst_CREATE_NODE_FUNCS_NOPARAMS
/* functions */
void cst_print_node(FILE* s, cst_Node* n) {
fprintf(s, " - pos_start[uint]: %u\n"
" - pos_end[uint]: %u\n"
" - lineno[uint]: %u\n"
" - colno[uint]: %u\n"
" - node_case: %d\n"
" ^ ", n->pos_start, n->pos_end, n->lineno, n->colno, n->node_case);
cst_GENERIC_SFXARGS(n, cst_nprint_, assert(false), s);
}
void cst_free_node(cst_Node* n) {
cst_GENERIC_NOARGS(n, cst_nfree_, assert(false));
free(n->val);
}
#endif // cst_NODES_C