5 #include <ctu_tree_api.h>
18 #define TREE_KIND(ID, NAME, TAGS) ID,
26 #define TYPE_QUALIFIER(ID, NAME, FLAG) ID = (FLAG),
33 #define BINARY_OP(ID, NAME, SYMBOL) ID,
41 #define COMPARE_OP(ID, NAME, SYMBOL) ID,
49 #define UNARY_OP(ID, NAME, SYMBOL) ID,
57 #define CAST_OP(ID, NAME) ID,
65 #define TREE_ARITY(ID, STR) ID,
73 #define TREE_LINKAGE(ID, STR) ID,
81 #define TREE_JUMP(ID, STR) ID,
89 #define TREE_VISIBILITY(ID, STR) ID,
97 #define DIGIT_KIND(ID, STR) ID,
105 #define SIGN_KIND(ID, STR) ID,
113 #define TREE_EVAL_MODEL(ID, STR, BITS) ID = (BITS),
#define RET_NOTNULL
annotate the return value as not being null
#define IN_DOMAIN(cmp, it)
annotate a parameter as being bounded by the expression of cmp and it
CT_TREE_API const char * binary_name(binary_t op)
get the pretty name of a binary operator
tree_jump_t
the type of jump
CT_TREE_API const char * linkage_string(tree_linkage_t link)
get the name of a linkage
CT_TREE_API const char * binary_symbol(binary_t op)
get the C symbol of a binary operator
CT_TREE_API const char * unary_symbol(unary_t op)
get the C symbol of a unary operator
CT_TREE_API const char * quals_string(tree_quals_t quals)
get the name of a set of qualifiers
tree_quals_t
all type qualifiers
tree_visibility_t
symbol visibility
CT_TREE_API const char * compare_symbol(compare_t op)
get the C symbol of a comparison operator
CT_TREE_API const char * visibility_string(tree_visibility_t vis)
get the name of visibility
binary_t
all binary operators
eval_model_t
tree evaluation model
CT_TREE_API const char * sign_name(sign_t sign)
get the pretty name of a integer sign
tree_linkage_t
the linkage of a declaration
CT_TREE_API const char * digit_name(digit_t digit)
get the pretty name of a digit
tree_kind_t
all tree node types
unary_t
all unary operators
CT_TREE_API const char * compare_name(compare_t op)
get the pretty name of a comparison operator
CT_TREE_API const char * unary_name(unary_t op)
get the pretty name of a unary operator
compare_t
all comparison operators