12 static const char *
const kUnaryNames[
eUnaryTotal] = {
13 #define UNARY_OP(ID, STR, SYM) [ID] = (STR),
21 return kUnaryNames[op];
24 static const char *
const kUnarySymbols[
eUnaryTotal] = {
25 #define UNARY_OP(ID, STR, SYM) [ID] = (SYM),
33 return kUnarySymbols[op];
37 #define BINARY_OP(ID, STR, SYM) [ID] = (STR),
45 return kBinaryNames[op];
48 static const char *
const kBinarySymbols[
eBinaryTotal] = {
49 #define BINARY_OP(ID, STR, SYM) [ID] = (SYM),
57 return kBinarySymbols[op];
61 #define COMPARE_OP(ID, STR, SYM) [ID] = (STR),
69 return kCompareNames[op];
73 #define COMPARE_OP(ID, STR, SYM) [ID] = (SYM),
81 return kCompareSymbols[op];
84 static const char *
const kSignNames[
eSignTotal] = {
85 #define SIGN_KIND(ID, STR) [ID] = (STR),
93 return kSignNames[sign];
96 static const char *
const kDigitNames[
eDigitTotal] = {
97 #define DIGIT_KIND(ID, STR) [ID] = (STR),
105 return kDigitNames[digit];
116 #define TYPE_QUALIFIER(ID, STR, BIT) + sizeof(STR)
122 #define TYPE_QUALIFIER(ID, STR, BIT) \
123 if (quals & (ID)) { \
126 ctu_memcpy(ptr, STR, sizeof(STR)); \
127 ptr += sizeof(STR) - 1; \
135 static const char *
const kLinkNames[
eLinkTotal] = {
136 #define TREE_LINKAGE(ID, STR) [ID] = (STR),
144 return kLinkNames[link];
148 #define TREE_VISIBILITY(ID, STR) [ID] = (STR),
156 return kVisibilityNames[vis];
#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
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
tree_quals_t
all type qualifiers
tree_visibility_t
symbol visibility
binary_t
all binary operators
tree_linkage_t
the linkage of a declaration
unary_t
all unary operators
compare_t
all comparison operators
STA_DECL const char * compare_symbol(compare_t op)
get the C symbol of a comparison operator
STA_DECL const char * linkage_string(tree_linkage_t link)
get the name of a linkage
STA_DECL const char * binary_symbol(binary_t op)
get the C symbol of a binary operator
STA_DECL const char * quals_string(tree_quals_t quals)
get the name of a set of qualifiers
STA_DECL const char * unary_symbol(unary_t op)
get the C symbol of a unary operator
STA_DECL const char * binary_name(binary_t op)
get the pretty name of a binary operator
STA_DECL const char * sign_name(sign_t sign)
get the pretty name of a integer sign
STA_DECL const char * digit_name(digit_t digit)
get the pretty name of a digit
STA_DECL const char * visibility_string(tree_visibility_t vis)
get the name of visibility
STA_DECL const char * compare_name(compare_t op)
get the pretty name of a comparison operator
STA_DECL const char * unary_name(unary_t op)
get the pretty name of a unary operator