]> git.xonotic.org Git - xonotic/gmqcc.git/blob - ast.h
ast_entfield node
[xonotic/gmqcc.git] / ast.h
1 /*
2  * Copyright (C) 2012
3  *     Wolfgang Bumiller
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a copy of
6  * this software and associated documentation files (the "Software"), to deal in
7  * the Software without restriction, including without limitation the rights to
8  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
9  * of the Software, and to permit persons to whom the Software is furnished to do
10  * so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice shall be included in all
13  * copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21  * SOFTWARE.
22  */
23 #ifndef GMQCC_AST_HDR
24 #define GMQCC_AST_HDR
25 #include "ir.h"
26
27 /* Note: I will not be using a _t suffix for the
28  * "main" ast node types for now.
29  */
30
31 typedef union ast_node_u ast_node;
32 typedef union ast_expression_u ast_expression;
33
34 typedef struct ast_value_s      ast_value;
35 typedef struct ast_function_s   ast_function;
36 typedef struct ast_block_s      ast_block;
37 typedef struct ast_binary_s     ast_binary;
38 typedef struct ast_store_s      ast_store;
39 typedef struct ast_entfield_s   ast_entfield;
40
41 /* Node interface with common components
42  */
43 typedef void ast_node_delete(ast_node*);
44 typedef struct
45 {
46     lex_ctx          context;
47     /* I don't feel comfortable using keywords like 'delete' as names... */
48     ast_node_delete *destroy;
49     /* keep: if a node contains this node, 'keep'
50      * prevents its dtor from destroying this node as well.
51      */
52     bool             keep;
53 } ast_node_common;
54
55 #define ast_delete(x) ( ( (ast_node*)(x) ) -> node.destroy )((ast_node*)(x))
56 #define ast_unref(x) do                     \
57 {                                           \
58     if (! (((ast_node*)(x))->node.keep) ) { \
59         ast_delete(x);                      \
60     }                                       \
61 } while(0)
62
63 /* Expression interface
64  *
65  * Any expression or block returns an ir_value, and needs
66  * to know the current function.
67  */
68 typedef bool ast_expression_codegen(ast_expression*,
69                                     ast_function*,
70                                     ir_value**);
71 typedef struct
72 {
73     ast_node_common         node;
74     ast_expression_codegen *codegen;
75 } ast_expression_common;
76
77 /* Value
78  *
79  * Types are also values, both have a type and a name.
80  * especially considering possible constructs like typedefs.
81  * typedef float foo;
82  * is like creating a 'float foo', foo serving as the type's name.
83  */
84 struct ast_value_s
85 {
86     ast_expression_common expression;
87
88     const char *name;
89
90     int         vtype;
91     ast_value  *next;
92
93     bool isconst;
94     union {
95         double        vfloat;
96         int           vint;
97         vector        vvec;
98         const char   *vstring;
99         int           ventity;
100         ast_function *vfunc;
101     } constval;
102
103     ir_value *ir_v;
104
105     /* if vtype is qc_function, params contain parameters, and
106      * 'next' the return type.
107      */
108     MEM_VECTOR_MAKE(ast_value*, params);
109 };
110 ast_value* ast_value_new(lex_ctx ctx, const char *name, int qctype);
111 /* This will NOT delete an underlying ast_function */
112 void ast_value_delete(ast_value*);
113
114 bool ast_value_set_name(ast_value*, const char *name);
115
116 bool ast_value_codegen(ast_value*, ast_function*, ir_value**);
117
118 /* Binary
119  *
120  * A value-returning binary expression.
121  */
122 struct ast_binary_s
123 {
124     ast_expression_common expression;
125
126     int             op;
127     ast_expression *left;
128     ast_expression *right;
129 };
130 ast_binary* ast_binary_new(lex_ctx    ctx,
131                            int        op,
132                            ast_expression *left,
133                            ast_expression *right);
134 void ast_binary_delete(ast_binary*);
135
136 /* hmm, seperate functions?
137 bool ast_block_codegen(ast_block*, ast_function*, ir_value**);
138  */
139 bool ast_binary_codegen(ast_binary*, ast_function*, ir_value**);
140
141 /* Entity-field
142  *
143  * This must do 2 things:
144  * -) Provide a way to fetch an entity field value. (Rvalue)
145  * -) Provide a pointer to an entity field. (Lvalue)
146  * The problem:
147  * In original QC, there's only a STORE via pointer, but
148  * no LOAD via pointer.
149  * So we must know beforehand if we are going to read or assign
150  * the field.
151  * For this we will have to extend the codegen() functions with
152  * a flag saying whether or not we need an L or an R-value.
153  */
154 struct ast_entfield_s
155 {
156     ast_expression_common expression;
157     /* The entity can come from an expression of course. */
158     ast_expression *entity;
159     /* As can the field, it just must result in a value of TYPE_FIELD */
160     ast_expression *field;
161 };
162 ast_entfield* ast_entfield_new(lex_ctx ctx, ast_expression *entity, ast_expression *field);
163 void ast_entfield_delete(ast_entfield*);
164
165 bool ast_entfield_codegen(ast_entfield*, ast_function*, ir_value**);
166
167 /* Store
168  *
169  * Stores left<-right and returns left.
170  * Specialized binary expression node
171  */
172 struct ast_store_s
173 {
174     ast_expression_common expression;
175     int             op;
176     ast_value      *dest; /* When we add pointers this might have to change to expression */
177     ast_expression *source;
178 };
179 ast_store* ast_store_new(lex_ctx ctx, int op,
180                          ast_value *d, ast_expression *s);
181 void ast_store_delete(ast_store*);
182
183 bool ast_store_codegen(ast_store*, ast_function*, ir_value**);
184
185 /* Blocks
186  *
187  */
188 struct ast_block_s
189 {
190     ast_expression_common expression;
191
192     MEM_VECTOR_MAKE(ast_value*,      locals);
193     MEM_VECTOR_MAKE(ast_expression*, exprs);
194 };
195 ast_block* ast_block_new(lex_ctx ctx);
196 void ast_block_delete(ast_block*);
197
198 MEM_VECTOR_PROTO(ast_block, ast_value*, locals);
199 MEM_VECTOR_PROTO(ast_block, ast_expression*, exprs);
200
201 bool ast_block_codegen(ast_block*, ast_function*, ir_value**);
202
203 /* Function
204  *
205  * Contains a list of blocks... at least in theory.
206  * Usually there's just the main block, other blocks are inside that.
207  *
208  * Technically, functions don't need to be an AST node, since we have
209  * neither functions inside functions, nor lambdas, and function
210  * pointers could just work with a name. However, this way could be
211  * more flexible, and adds no real complexity.
212  */
213 struct ast_function_s
214 {
215     ast_node_common node;
216
217     ast_value  *vtype;
218     const char *name;
219
220     ir_function *ir_func;
221
222     MEM_VECTOR_MAKE(ast_block*, blocks);
223 };
224 ast_function* ast_function_new(lex_ctx ctx, const char *name, ast_value *vtype);
225 /* This will NOT delete the underlying ast_value */
226 void ast_function_delete(ast_function*);
227
228 MEM_VECTOR_PROTO(ast_function, ast_block*, blocks);
229
230 bool ast_function_codegen(ast_function *self, ir_builder *builder);
231
232 /* Expression union
233  */
234 union ast_expression_u
235 {
236     ast_expression_common expression;
237
238     ast_binary binary;
239     ast_block  block;
240 };
241
242 /* Node union
243  */
244 union ast_node_u
245 {
246     ast_node_common node;
247     ast_expression  expression;
248 };
249
250 #endif