Cthulhu  0.2.10
Cthulhu compiler collection
node.c
Go to the documentation of this file.
1 // SPDX-License-Identifier: LGPL-3.0-only
2 
3 #include "scan/node.h"
4 
5 #include "base/panic.h"
6 #include "arena/arena.h"
7 
8 const where_t kNowhere = { 0, 0, 0, 0 };
9 
11 node_t *node_builtin(const char *name, arena_t *arena)
12 {
13  CTASSERT(name != NULL);
14  CTASSERT(arena != NULL);
15 
16  scan_t *scan = scan_builtin(name, arena);
17  node_t *node = node_new(scan, kNowhere);
18 
19  return node;
20 }
21 
23 bool node_is_builtin(const node_t *node)
24 {
25  CTASSERTF(node != NULL, "node cannot be NULL");
26  return scan_is_builtin(node->scan);
27 }
28 
30 void node_init(node_t *node, const scan_t *scan, where_t where)
31 {
32  CTASSERT(node != NULL);
33  CTASSERT(scan != NULL);
34 
35  node->scan = scan;
36  node->where = where;
37 }
38 
40 node_t *node_new(const scan_t *scan, where_t where)
41 {
42  node_t *node = ARENA_MALLOC(sizeof(node_t), "node", scan, scan->nodes);
43  node_init(node, scan, where);
44 
45  return node;
46 }
47 
49 node_t node_make(const scan_t *scan, where_t where)
50 {
51  node_t node;
52  node_init(&node, scan, where);
53  return node;
54 }
55 
57 const scan_t *node_get_scan(const node_t *node)
58 {
59  CTASSERT(node != NULL);
60 
61  return node->scan;
62 }
63 
66 {
67  CTASSERT(node != NULL);
68 
69  return node->where;
70 }
CT_NODISCARD CT_SCAN_API scan_t * scan_builtin(const char *language, arena_t *arena)
create a builtin scanner
Definition: scan.c:33
CT_NODISCARD CT_PUREFN CT_SCAN_API bool scan_is_builtin(const scan_t *scan)
check if a scanner is the builtin scanner
Definition: scan.c:41
#define STA_DECL
sal2 annotation on function implementations to copy annotations from the declaration
STA_DECL node_t * node_builtin(const char *name, arena_t *arena)
get the builtin node node used for drivers that declare builtin symbols
Definition: node.c:11
STA_DECL const scan_t * node_get_scan(const node_t *node)
get the associated source file of a node
Definition: node.c:57
STA_DECL bool node_is_builtin(const node_t *node)
check if a node is the builtin node
Definition: node.c:23
STA_DECL where_t node_get_location(const node_t *node)
get the location of a node inside its source file
Definition: node.c:65
const where_t kNowhere
nowhere in a source file
Definition: node.c:8
STA_DECL node_t * node_new(const scan_t *scan, where_t where)
create a new node on the heap
Definition: node.c:40
STA_DECL node_t node_make(const scan_t *scan, where_t where)
create a new node on the stack
Definition: node.c:49
#define ARENA_MALLOC(size, name, parent, arena)
allocate memory from a custom allocator
Definition: arena.h:392
#define CTASSERT(expr)
assert a condition, prints the condition as a message
Definition: panic.h:130
#define CTASSERTF(expr,...)
assert a condition with a message and optional format arguments
Definition: panic.h:116
STA_DECL void node_init(node_t *node, const scan_t *scan, where_t where)
Definition: node.c:30
an allocator object
Definition: arena.h:86
a position in a source file
Definition: node.h:23
const scan_t * scan
the scanner that this node is in
Definition: node.h:25
where_t where
the location of this node
Definition: node.h:28
a source file scanner
Definition: scan.h:24
arena_t * nodes
arena to use when allocating nodes
Definition: scan.h:33
a location inside a scanner locations are inclusive and 0-based
Definition: where.h:23