]> git.xonotic.org Git - xonotic/gmqcc.git/blob - ir.h
Allow string concatenation in the parser as well, for now only for immediate strings...
[xonotic/gmqcc.git] / ir.h
1 /*
2  * Copyright (C) 2012, 2013
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_IR_HDR
24 #define GMQCC_IR_HDR
25 #include "gmqcc.h"
26 /* ir_value */
27
28 typedef struct
29 {
30     /* both inclusive */
31     size_t start;
32     size_t end;
33 } ir_life_entry_t;
34
35 struct ir_function_s;
36 typedef struct ir_value_s {
37     char      *name;
38     int       vtype;
39     int       store;
40     lex_ctx   context;
41     /* even the IR knows the subtype of a field */
42     int       fieldtype;
43     /* and the output type of a function */
44     int       outtype;
45     /* 'const' vs 'var' qualifier */
46     int       cvq;
47     uint32_t  flags;
48
49     struct ir_instr_s **reads;
50     struct ir_instr_s **writes;
51
52     /* constantvalues */
53     bool hasvalue;
54     union {
55         float    vfloat;
56         int      vint;
57         vector   vvec;
58         int32_t  ivec[3];
59         char    *vstring;
60         struct ir_value_s *vpointer;
61         struct ir_function_s *vfunc;
62     } constval;
63
64     struct {
65         int32_t globaladdr;
66         int32_t name;
67         /* filled by the local-allocator */
68         int32_t local;
69         /* added for members */
70         int32_t addroffset;
71         /* to generate field-addresses early */
72         int32_t fieldaddr;
73     } code;
74
75     /* for acessing vectors */
76     struct ir_value_s *members[3];
77     struct ir_value_s *memberof;
78
79     /* arrays will never overlap with temps */
80     bool unique_life;
81     /* temps living during a CALL must be locked */
82     bool      locked;
83     bool      callparam;
84
85     /* For the temp allocator */
86     ir_life_entry_t *life;
87 } ir_value;
88
89 int32_t ir_value_code_addr(const ir_value*);
90
91 /* ir_value can be a variable, or created by an operation */
92 ir_value* ir_value_var(const char *name, int st, int vtype);
93 /* if a result of an operation: the function should store
94  * it to remember to delete it / garbage collect it
95  */
96 ir_value* ir_value_out(struct ir_function_s *owner, const char *name, int st, int vtype);
97 void      ir_value_delete(ir_value*);
98 bool      ir_value_set_name(ir_value*, const char *name);
99 ir_value* ir_value_vector_member(ir_value*, unsigned int member);
100
101 bool GMQCC_WARN vec_ir_value_find(ir_value **vec, const ir_value *what, size_t *idx);
102
103 bool GMQCC_WARN ir_value_set_float(ir_value*, float f);
104 bool GMQCC_WARN ir_value_set_func(ir_value*, int f);
105 #if 0
106 bool GMQCC_WARN ir_value_set_int(ir_value*, int i);
107 #endif
108 bool GMQCC_WARN ir_value_set_string(ir_value*, const char *s);
109 bool GMQCC_WARN ir_value_set_vector(ir_value*, vector v);
110 bool GMQCC_WARN ir_value_set_field(ir_value*, ir_value *fld);
111 /*bool   ir_value_set_pointer_v(ir_value*, ir_value* p); */
112 /*bool   ir_value_set_pointer_i(ir_value*, int i);       */
113
114 /* merge an instruction into the life-range */
115 /* returns false if the lifepoint was already known */
116 bool ir_value_life_merge(ir_value*, size_t);
117 bool ir_value_life_merge_into(ir_value*, const ir_value*);
118 /* check if a value lives at a specific point */
119 bool ir_value_lives(ir_value*, size_t);
120 /* check if the life-range of 2 values overlaps */
121 bool ir_values_overlap(const ir_value*, const ir_value*);
122
123 void ir_value_dump(ir_value*, int (*oprintf)(const char*,...));
124 void ir_value_dump_life(const ir_value *self, int (*oprintf)(const char*,...));
125
126 /* PHI data */
127 typedef struct ir_phi_entry_s
128 {
129     ir_value          *value;
130     struct ir_block_s *from;
131 } ir_phi_entry_t;
132
133 /* instruction */
134 typedef struct ir_instr_s
135 {
136     int       opcode;
137     lex_ctx   context;
138     ir_value* (_ops[3]);
139     struct ir_block_s* (bops[2]);
140
141     ir_phi_entry_t *phi;
142     ir_value      **params;
143
144     /* For the temp-allocation */
145     size_t eid;
146
147     /* For IFs */
148     bool   likely;
149
150     struct ir_block_s *owner;
151 } ir_instr;
152
153 ir_instr* ir_instr_new(lex_ctx ctx, struct ir_block_s *owner, int opcode);
154 void      ir_instr_delete(ir_instr*);
155
156 bool GMQCC_WARN vec_ir_instr_find(ir_instr **vec, ir_instr *what, size_t *idx);
157
158 bool ir_instr_op(ir_instr*, int op, ir_value *value, bool writing);
159
160 void ir_instr_dump(ir_instr* in, char *ind, int (*oprintf)(const char*,...));
161
162 /* block */
163 typedef struct ir_block_s
164 {
165     char      *label;
166     lex_ctx    context;
167     bool       final; /* once a jump is added we're done */
168
169     ir_instr          **instr;
170     struct ir_block_s **entries;
171     struct ir_block_s **exits;
172     ir_value          **living;
173
174     /* For the temp-allocation */
175     size_t entry_id;
176     size_t eid;
177     bool   is_return;
178
179     struct ir_function_s *owner;
180
181     bool   generated;
182     size_t code_start;
183 } ir_block;
184
185 ir_block* ir_block_new(struct ir_function_s *owner, const char *label);
186 void      ir_block_delete(ir_block*);
187
188 bool      ir_block_set_label(ir_block*, const char *label);
189
190 ir_value* ir_block_create_binop(ir_block*, lex_ctx, const char *label, int op,
191                                 ir_value *left, ir_value *right);
192 ir_value* ir_block_create_unary(ir_block*, lex_ctx, const char *label, int op,
193                                 ir_value *operand);
194 bool GMQCC_WARN ir_block_create_store_op(ir_block*, lex_ctx, int op, ir_value *target, ir_value *what);
195 bool GMQCC_WARN ir_block_create_store(ir_block*, lex_ctx, ir_value *target, ir_value *what);
196 bool GMQCC_WARN ir_block_create_storep(ir_block*, lex_ctx, ir_value *target, ir_value *what);
197
198 /* field must be of TYPE_FIELD */
199 ir_value* ir_block_create_load_from_ent(ir_block*, lex_ctx, const char *label, ir_value *ent, ir_value *field, int outype);
200
201 ir_value* ir_block_create_fieldaddress(ir_block*, lex_ctx, const char *label, ir_value *entity, ir_value *field);
202
203 /* This is to create an instruction of the form
204  * <outtype>%label := opcode a, b
205  */
206 ir_value* ir_block_create_general_instr(ir_block *self, lex_ctx, const char *label,
207                                         int op, ir_value *a, ir_value *b, int outype);
208
209 ir_instr* ir_block_create_phi(ir_block*, lex_ctx, const char *label, int vtype);
210 ir_value* ir_phi_value(ir_instr*);
211 void ir_phi_add(ir_instr*, ir_block *b, ir_value *v);
212 ir_instr* ir_block_create_call(ir_block*, lex_ctx, const char *label, ir_value *func, bool noreturn);
213 ir_value* ir_call_value(ir_instr*);
214 void ir_call_param(ir_instr*, ir_value*);
215
216 bool GMQCC_WARN ir_block_create_return(ir_block*, lex_ctx, ir_value *opt_value);
217
218 bool GMQCC_WARN ir_block_create_if(ir_block*, lex_ctx, ir_value *cond,
219                                    ir_block *ontrue, ir_block *onfalse);
220 /* A 'goto' is an actual 'goto' coded in QC, whereas
221  * a 'jump' is a virtual construct which simply names the
222  * next block to go to.
223  * A goto usually becomes an OP_GOTO in the resulting code,
224  * whereas a 'jump' usually doesn't add any actual instruction.
225  */
226 bool GMQCC_WARN ir_block_create_jump(ir_block*, lex_ctx, ir_block *to);
227 bool GMQCC_WARN ir_block_create_goto(ir_block*, lex_ctx, ir_block *to);
228
229 void ir_block_dump(ir_block*, char *ind, int (*oprintf)(const char*,...));
230
231 /* function */
232
233 typedef struct ir_function_s
234 {
235     char      *name;
236     int        outtype;
237     int       *params;
238     ir_block **blocks;
239
240     uint32_t   flags;
241
242     int builtin;
243
244     ir_value *value;
245
246     /* values generated from operations
247      * which might get optimized away, so anything
248      * in there needs to be deleted in the dtor.
249      */
250     ir_value **values;
251
252     /* locally defined variables */
253     ir_value **locals;
254
255     size_t allocated_locals;
256     size_t globaltemps;
257
258     ir_block*     first;
259     ir_block*     last;
260
261     lex_ctx       context;
262
263     /* for prototypes - first we generate all the
264      * globals, and we remember teh function-defs
265      * so we can later fill in the entry pos
266      *
267      * remember the ID:
268      */
269     qcint code_function_def;
270
271     /* for temp allocation */
272     size_t run_id;
273
274     struct ir_builder_s *owner;
275
276     /* vararg support: */
277     size_t max_varargs;
278 } ir_function;
279 #define IR_FLAG_HAS_ARRAYS        (1<<1)
280 #define IR_FLAG_HAS_UNINITIALIZED (1<<2)
281 #define IR_FLAG_HAS_GOTO          (1<<3)
282 #define IR_FLAG_INCLUDE_DEF       (1<<4)
283 #define IR_FLAG_MASK_NO_OVERLAP     (IR_FLAG_HAS_ARRAYS | IR_FLAG_HAS_UNINITIALIZED)
284 #define IR_FLAG_MASK_NO_LOCAL_TEMPS (IR_FLAG_HAS_ARRAYS | IR_FLAG_HAS_UNINITIALIZED)
285
286 ir_function* ir_function_new(struct ir_builder_s *owner, int returntype);
287 void         ir_function_delete(ir_function*);
288
289 void ir_function_collect_value(ir_function*, ir_value *value);
290
291 bool ir_function_set_name(ir_function*, const char *name);
292
293 ir_value* ir_function_create_local(ir_function *self, const char *name, int vtype, bool param);
294
295 bool GMQCC_WARN ir_function_finalize(ir_function*);
296 /*
297 bool ir_function_naive_phi(ir_function*);
298 bool ir_function_enumerate(ir_function*);
299 bool ir_function_calculate_liferanges(ir_function*);
300 */
301
302 ir_block* ir_function_create_block(lex_ctx ctx, ir_function*, const char *label);
303
304 void ir_function_dump(ir_function*, char *ind, int (*oprintf)(const char*,...));
305
306 /* builder */
307 #define IR_HT_SIZE 1024
308 typedef struct ir_builder_s
309 {
310     char *name;
311     ir_function **functions;
312     ir_value    **globals;
313     ir_value    **fields;
314
315     ht            htfunctions;
316     ht            htglobals;
317     ht            htfields;
318
319     ir_value    **extparams;
320     ir_value    **extparam_protos;
321
322     /* the highest func->allocated_locals */
323     size_t        max_locals;
324     size_t        max_globaltemps;
325     uint32_t      first_common_local;
326     uint32_t      first_common_globaltemp;
327
328     const char **filenames;
329     qcint       *filestrings;
330     /* we cache the #IMMEDIATE string here */
331     qcint        str_immediate;
332     /* there should just be this one nil */
333     ir_value    *nil;
334     ir_value    *reserved_va_count;
335 } ir_builder;
336
337 ir_builder* ir_builder_new(const char *modulename);
338 void        ir_builder_delete(ir_builder*);
339
340 bool ir_builder_set_name(ir_builder *self, const char *name);
341
342 ir_function* ir_builder_get_function(ir_builder*, const char *fun);
343 ir_function* ir_builder_create_function(ir_builder*, const char *name, int outtype);
344
345 ir_value* ir_builder_get_global(ir_builder*, const char *fun);
346 ir_value* ir_builder_create_global(ir_builder*, const char *name, int vtype);
347 ir_value* ir_builder_get_field(ir_builder*, const char *fun);
348 ir_value* ir_builder_create_field(ir_builder*, const char *name, int vtype);
349
350 ir_value* ir_builder_get_va_count(ir_builder*);
351
352 bool ir_builder_generate(ir_builder *self, const char *filename);
353
354 void ir_builder_dump(ir_builder*, int (*oprintf)(const char*, ...));
355
356 /* This code assumes 32 bit floats while generating binary */
357 extern int check_int_and_float_size
358 [ (sizeof(int32_t) == sizeof(qcfloat)) ? 1 : -1 ];
359
360 #endif