Cthulhu  0.2.10
Cthulhu compiler collection
ops.c
Go to the documentation of this file.
1 // SPDX-License-Identifier: LGPL-3.0-only
2 
3 #include "cthulhu/tree/ops.h"
4 
5 #include "arena/arena.h"
6 #include "base/panic.h"
7 #include "memory/memory.h"
8 #include "std/vector.h"
9 #include "std/str.h"
10 #include "base/util.h"
11 
12 static const char *const kUnaryNames[eUnaryTotal] = {
13 #define UNARY_OP(ID, STR, SYM) [ID] = (STR),
14 #include "cthulhu/tree/tree.inc"
15 };
16 
18 const char *unary_name(unary_t op)
19 {
20  CTASSERTF(op < eUnaryTotal, "invalid unary operator: %d", op);
21  return kUnaryNames[op];
22 }
23 
24 static const char *const kUnarySymbols[eUnaryTotal] = {
25 #define UNARY_OP(ID, STR, SYM) [ID] = (SYM),
26 #include "cthulhu/tree/tree.inc"
27 };
28 
30 const char *unary_symbol(unary_t op)
31 {
32  CTASSERTF(op < eUnaryTotal, "invalid unary operator: %d", op);
33  return kUnarySymbols[op];
34 }
35 
36 static const char *const kBinaryNames[eBinaryTotal] = {
37 #define BINARY_OP(ID, STR, SYM) [ID] = (STR),
38 #include "cthulhu/tree/tree.inc"
39 };
40 
42 const char *binary_name(binary_t op)
43 {
44  CTASSERTF(op < eBinaryTotal, "invalid binary operator: %d", op);
45  return kBinaryNames[op];
46 }
47 
48 static const char *const kBinarySymbols[eBinaryTotal] = {
49 #define BINARY_OP(ID, STR, SYM) [ID] = (SYM),
50 #include "cthulhu/tree/tree.inc"
51 };
52 
54 const char *binary_symbol(binary_t op)
55 {
56  CTASSERTF(op < eBinaryTotal, "invalid binary operator: %d", op);
57  return kBinarySymbols[op];
58 }
59 
60 static const char *const kCompareNames[eCompareTotal] = {
61 #define COMPARE_OP(ID, STR, SYM) [ID] = (STR),
62 #include "cthulhu/tree/tree.inc"
63 };
64 
66 const char *compare_name(compare_t op)
67 {
68  CTASSERTF(op < eCompareTotal, "invalid compare operator: %d", op);
69  return kCompareNames[op];
70 }
71 
72 static const char *const kCompareSymbols[eCompareTotal] = {
73 #define COMPARE_OP(ID, STR, SYM) [ID] = (SYM),
74 #include "cthulhu/tree/tree.inc"
75 };
76 
78 const char *compare_symbol(compare_t op)
79 {
80  CTASSERTF(op < eCompareTotal, "invalid compare operator: %d", op);
81  return kCompareSymbols[op];
82 }
83 
84 static const char *const kSignNames[eSignTotal] = {
85 #define SIGN_KIND(ID, STR) [ID] = (STR),
86 #include "cthulhu/tree/tree.inc"
87 };
88 
90 const char *sign_name(sign_t sign)
91 {
92  CTASSERTF(sign < eSignTotal, "invalid sign: %d", sign);
93  return kSignNames[sign];
94 }
95 
96 static const char *const kDigitNames[eDigitTotal] = {
97 #define DIGIT_KIND(ID, STR) [ID] = (STR),
98 #include "cthulhu/tree/tree.inc"
99 };
100 
101 STA_DECL
102 const char *digit_name(digit_t digit)
103 {
104  CTASSERTF(digit < eDigitTotal, "invalid digit: %d", digit);
105  return kDigitNames[digit];
106 }
107 
108 STA_DECL
109 const char *quals_string(tree_quals_t quals)
110 {
111  arena_t *arena = get_global_arena();
112 
113  // unhinged macro abuse to make the array size known at compile time
114  char buffer[
115  1
116 #define TYPE_QUALIFIER(ID, STR, BIT) + sizeof(STR)
117 #include "cthulhu/tree/tree.inc"
118  ];
119 
120  char *ptr = buffer;
121 
122 #define TYPE_QUALIFIER(ID, STR, BIT) \
123  if (quals & (ID)) { \
124  if (ptr != buffer) \
125  *ptr++ = '|'; \
126  ctu_memcpy(ptr, STR, sizeof(STR)); \
127  ptr += sizeof(STR) - 1; \
128  }
129 #include "cthulhu/tree/tree.inc"
130 
131  *ptr = '\0';
132  return arena_strndup(buffer, ptr - buffer, arena);
133 }
134 
135 static const char *const kLinkNames[eLinkTotal] = {
136 #define TREE_LINKAGE(ID, STR) [ID] = (STR),
137 #include "cthulhu/tree/tree.inc"
138 };
139 
140 STA_DECL
142 {
143  CTASSERTF(link < eLinkTotal, "invalid link: %d", link);
144  return kLinkNames[link];
145 }
146 
147 static const char *const kVisibilityNames[eVisibileTotal] = {
148 #define TREE_VISIBILITY(ID, STR) [ID] = (STR),
149 #include "cthulhu/tree/tree.inc"
150 };
151 
152 STA_DECL
154 {
155  CTASSERTF(vis < eVisibileTotal, "invalid visibility: %d", vis);
156  return kVisibilityNames[vis];
157 }
#define STA_DECL
sal2 annotation on function implementations to copy annotations from the declaration
CT_MEMORY_API arena_t * get_global_arena(void)
get the global memory arena
Definition: memory.c:16
CT_NODISCARD CT_ARENA_API char * arena_strndup(STA_READS(len) const char *str, size_t len, arena_t *arena)
allocate a copy of a string with a maximum length from a custom allocator
#define CTASSERTF(expr,...)
assert a condition with a message and optional format arguments
Definition: panic.h:116
tree_quals_t
all type qualifiers
Definition: ops.h:25
tree_visibility_t
symbol visibility
Definition: ops.h:88
sign_t
integer sign
Definition: ops.h:104
binary_t
all binary operators
Definition: ops.h:32
tree_linkage_t
the linkage of a declaration
Definition: ops.h:72
digit_t
digit width
Definition: ops.h:96
unary_t
all unary operators
Definition: ops.h:48
compare_t
all comparison operators
Definition: ops.h:40
STA_DECL const char * compare_symbol(compare_t op)
get the C symbol of a comparison operator
Definition: ops.c:78
STA_DECL const char * linkage_string(tree_linkage_t link)
get the name of a linkage
Definition: ops.c:141
STA_DECL const char * binary_symbol(binary_t op)
get the C symbol of a binary operator
Definition: ops.c:54
STA_DECL const char * quals_string(tree_quals_t quals)
get the name of a set of qualifiers
Definition: ops.c:109
STA_DECL const char * unary_symbol(unary_t op)
get the C symbol of a unary operator
Definition: ops.c:30
STA_DECL const char * binary_name(binary_t op)
get the pretty name of a binary operator
Definition: ops.c:42
STA_DECL const char * sign_name(sign_t sign)
get the pretty name of a integer sign
Definition: ops.c:90
STA_DECL const char * digit_name(digit_t digit)
get the pretty name of a digit
Definition: ops.c:102
STA_DECL const char * visibility_string(tree_visibility_t vis)
get the name of visibility
Definition: ops.c:153
STA_DECL const char * compare_name(compare_t op)
get the pretty name of a comparison operator
Definition: ops.c:66
STA_DECL const char * unary_name(unary_t op)
get the pretty name of a unary operator
Definition: ops.c:18
@ eVisibileTotal
Definition: ops.h:91
@ eSignTotal
Definition: ops.h:107
@ eBinaryTotal
Definition: ops.h:35
@ eLinkTotal
Definition: ops.h:75
@ eDigitTotal
Definition: ops.h:99
@ eUnaryTotal
Definition: ops.h:51
@ eCompareTotal
Definition: ops.h:43
an allocator object
Definition: arena.h:86