Cthulhu  0.2.10
Cthulhu compiler collection
ops.h
Go to the documentation of this file.
1 // SPDX-License-Identifier: LGPL-3.0-only
2 
3 #pragma once
4 
5 #include <ctu_tree_api.h>
6 
7 #include "core/compiler.h"
8 #include "core/analyze.h"
9 
11 
14 
16 typedef enum tree_kind_t
17 {
18 #define TREE_KIND(ID, NAME, TAGS) ID,
19 #include "cthulhu/tree/tree.inc"
22 
24 typedef enum tree_quals_t
25 {
26 #define TYPE_QUALIFIER(ID, NAME, FLAG) ID = (FLAG),
27 #include "tree.inc"
28 } tree_quals_t;
29 
31 typedef enum binary_t
32 {
33 #define BINARY_OP(ID, NAME, SYMBOL) ID,
34 #include "tree.inc"
37 
39 typedef enum compare_t
40 {
41 #define COMPARE_OP(ID, NAME, SYMBOL) ID,
42 #include "tree.inc"
45 
47 typedef enum unary_t
48 {
49 #define UNARY_OP(ID, NAME, SYMBOL) ID,
50 #include "tree.inc"
53 
55 typedef enum tree_cast_t
56 {
57 #define CAST_OP(ID, NAME) ID,
58 #include "tree.inc"
61 
63 typedef enum tree_arity_t
64 {
65 #define TREE_ARITY(ID, STR) ID,
66 #include "tree.inc"
69 
71 typedef enum tree_linkage_t
72 {
73 #define TREE_LINKAGE(ID, STR) ID,
74 #include "tree.inc"
77 
79 typedef enum tree_jump_t
80 {
81 #define TREE_JUMP(ID, STR) ID,
82 #include "tree.inc"
85 
87 typedef enum tree_visibility_t
88 {
89 #define TREE_VISIBILITY(ID, STR) ID,
90 #include "tree.inc"
93 
95 typedef enum digit_t
96 {
97 #define DIGIT_KIND(ID, STR) ID,
98 #include "tree.inc"
101 
103 typedef enum sign_t
104 {
105 #define SIGN_KIND(ID, STR) ID,
106 #include "tree.inc"
107  eSignTotal
109 
111 typedef enum eval_model_t
112 {
113 #define TREE_EVAL_MODEL(ID, STR, BITS) ID = (BITS),
114 #include "tree.inc"
115 } eval_model_t;
116 
123 CT_TREE_API const char *unary_name(IN_DOMAIN(<, eUnaryTotal) unary_t op);
124 
131 CT_TREE_API const char *binary_name(IN_DOMAIN(<, eBinaryTotal) binary_t op);
132 
139 CT_TREE_API const char *compare_name(IN_DOMAIN(<, eCompareTotal)compare_t op);
140 
147 CT_TREE_API const char *unary_symbol(IN_DOMAIN(<, eUnaryTotal) unary_t op);
148 
155 CT_TREE_API const char *binary_symbol(IN_DOMAIN(<, eBinaryTotal) binary_t op);
156 
163 CT_TREE_API const char *compare_symbol(IN_DOMAIN(<, eCompareTotal) compare_t op);
164 
171 CT_TREE_API const char *sign_name(IN_DOMAIN(<, eSignTotal) sign_t sign);
172 
179 CT_TREE_API const char *digit_name(IN_DOMAIN(<, eDigitTotal) digit_t digit);
180 
187 CT_TREE_API const char *quals_string(tree_quals_t quals);
188 
195 CT_TREE_API const char *linkage_string(IN_DOMAIN(<, eLinkTotal) tree_linkage_t link);
196 
203 CT_TREE_API const char *visibility_string(IN_DOMAIN(<, eVisibileTotal) tree_visibility_t vis);
204 
206 
#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
#define CT_BEGIN_API
Definition: compiler.h:129
#define CT_END_API
Definition: compiler.h:130
tree_arity_t
all arities
Definition: ops.h:64
CT_TREE_API const char * binary_name(binary_t op)
get the pretty name of a binary operator
Definition: ops.c:42
tree_jump_t
the type of jump
Definition: ops.h:80
CT_TREE_API const char * linkage_string(tree_linkage_t link)
get the name of a linkage
Definition: ops.c:141
CT_TREE_API const char * binary_symbol(binary_t op)
get the C symbol of a binary operator
Definition: ops.c:54
CT_TREE_API const char * unary_symbol(unary_t op)
get the C symbol of a unary operator
Definition: ops.c:30
CT_TREE_API const char * quals_string(tree_quals_t quals)
get the name of a set of qualifiers
Definition: ops.c:109
tree_cast_t
all casts
Definition: ops.h:56
tree_quals_t
all type qualifiers
Definition: ops.h:25
tree_visibility_t
symbol visibility
Definition: ops.h:88
CT_TREE_API const char * compare_symbol(compare_t op)
get the C symbol of a comparison operator
Definition: ops.c:78
sign_t
integer sign
Definition: ops.h:104
CT_TREE_API const char * visibility_string(tree_visibility_t vis)
get the name of visibility
Definition: ops.c:153
binary_t
all binary operators
Definition: ops.h:32
eval_model_t
tree evaluation model
Definition: ops.h:112
CT_TREE_API const char * sign_name(sign_t sign)
get the pretty name of a integer sign
Definition: ops.c:90
tree_linkage_t
the linkage of a declaration
Definition: ops.h:72
CT_TREE_API const char * digit_name(digit_t digit)
get the pretty name of a digit
Definition: ops.c:102
tree_kind_t
all tree node types
Definition: ops.h:17
digit_t
digit width
Definition: ops.h:96
unary_t
all unary operators
Definition: ops.h:48
CT_TREE_API const char * compare_name(compare_t op)
get the pretty name of a comparison operator
Definition: ops.c:66
CT_TREE_API const char * unary_name(unary_t op)
get the pretty name of a unary operator
Definition: ops.c:18
compare_t
all comparison operators
Definition: ops.h:40
@ eTreeTotal
Definition: ops.h:20
@ eArityTotal
Definition: ops.h:67
@ eJumpTotal
Definition: ops.h:83
@ eCastTotal
Definition: ops.h:59
@ 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