Cthulhu  0.2.10
Cthulhu compiler collection
ssa.h
Go to the documentation of this file.
1 // SPDX-License-Identifier: LGPL-3.0-only
2 
3 #pragma once
4 
5 #include <ctu_ssa_api.h>
6 
7 #include "core/compiler.h"
8 
9 #include "cthulhu/tree/ops.h"
10 
11 #include <stdbool.h>
12 #include <gmp.h>
13 
15 
20 
21 typedef struct logger_t logger_t;
22 typedef struct vector_t vector_t;
23 typedef struct typevec_t typevec_t;
24 typedef struct map_t map_t;
25 typedef struct set_t set_t;
26 typedef struct arena_t arena_t;
27 
28 typedef struct tree_t tree_t;
29 
30 typedef struct ssa_module_t ssa_module_t;
31 typedef struct ssa_symbol_t ssa_symbol_t;
32 
33 typedef struct ssa_block_t ssa_block_t;
34 typedef struct ssa_step_t ssa_step_t;
35 typedef struct ssa_operand_t ssa_operand_t;
36 
37 typedef struct ssa_type_t ssa_type_t;
38 typedef struct ssa_value_t ssa_value_t;
39 
40 typedef enum ssa_kind_t {
41 #define SSA_KIND(ID, NAME) ID,
42 #include "ssa.inc"
43 
46 
47 typedef enum ssa_opkind_t {
48 #define SSA_OPERAND(ID, NAME) ID,
49 #include "ssa.inc"
50 
53 
54 typedef enum ssa_opcode_t {
55 #define SSA_OPCODE(ID, NAME) ID,
56 #include "ssa.inc"
57 
58  eOpCount
60 
61 typedef enum ssa_value_state_t {
62 #define SSA_VALUE(ID, NAME) ID,
63 #include "ssa.inc"
64 
67 
71 
78 typedef struct ssa_storage_t {
80  const ssa_type_t *type;
81 
83  size_t size;
84 
88 
89 typedef struct ssa_param_t {
90  const char *name;
91  const ssa_type_t *type;
92 } ssa_param_t;
93 
94 typedef struct ssa_local_t {
96 
97  const char *name;
98  const ssa_type_t *type;
99 } ssa_local_t;
100 
101 typedef struct ssa_const_t {
104 } ssa_const_t;
105 
106 typedef struct ssa_field_t {
107  const char *name;
108  const ssa_type_t *type;
109 } ssa_field_t;
110 
114 
115 typedef struct ssa_type_digit_t {
119 
120 typedef struct ssa_case_t {
121  const char *name;
122  mpz_t value;
123 } ssa_case_t;
124 
125 typedef struct ssa_type_enum_t {
127  typevec_t *cases; // typevec_t<ssa_case_t>
129 
130 typedef struct ssa_type_closure_t {
132  typevec_t *params; // typevec_t<ssa_param_t *>
133  bool variadic;
135 
136 typedef struct ssa_type_pointer_t {
138  size_t length;
140 
141 typedef struct ssa_type_record_t {
142  typevec_t *fields; // typevec_t<ssa_field_t>
144 
145 typedef struct ssa_type_t {
148  const char *name;
149 
150  union {
156  };
157 } ssa_type_t;
158 
159 typedef union ssa_literal_value_t {
160  /* eTypeDigit */
161  mpz_t digit;
162 
163  /* eTypeBool */
164  bool boolean;
165 
166  /* eTypePointer */
168 
169  /* eTypeOpaque */
170  mpz_t pointer;
172 
173 typedef union ssa_relative_value_t {
176 
177 typedef struct ssa_value_t {
178  const ssa_type_t *type;
180  bool init;
181 
182  union {
183  /* eValueLiteral */
185 
186  /* eValueRelocation */
188  };
189 } ssa_value_t;
190 
191 typedef struct ssa_operand_t {
193 
194  union {
195  /* eOperandBlock */
196  const ssa_block_t *bb;
197 
198  /* eOperandReg */
199  struct {
201  size_t vreg_index;
202  };
203 
204  /* eOperandLocal */
205  size_t local;
206 
207  /* eOperandParam */
208  size_t param;
209 
210  /* eOperandGlobal */
212 
213  /* eOperandFunction */
214  const ssa_symbol_t *function;
215 
216  /* eOperandImm */
218  };
219 } ssa_operand_t;
220 
221 typedef struct ssa_store_t {
224 } ssa_store_t;
225 
226 typedef struct ssa_load_t {
228 } ssa_load_t;
229 
230 typedef struct ssa_addr_t {
232 } ssa_addr_t;
233 
234 typedef struct ssa_unary_t {
237 } ssa_unary_t;
238 
239 typedef struct ssa_binary_t {
243 } ssa_binary_t;
244 
245 typedef struct ssa_compare_t {
249 } ssa_compare_t;
250 
251 typedef struct ssa_cast_t {
253  const ssa_type_t *type;
254 } ssa_cast_t;
255 
256 typedef struct ssa_call_t {
257  ssa_operand_t function;
259 } ssa_call_t;
260 
261 typedef struct ssa_offset_t {
264 } ssa_offset_t;
265 
266 typedef struct ssa_member_t {
268  size_t index;
269 } ssa_member_t;
270 
271 typedef struct ssa_return_t {
273 } ssa_return_t;
274 
275 typedef struct ssa_branch_t {
279 } ssa_branch_t;
280 
281 typedef struct ssa_jump_t {
283 } ssa_jump_t;
284 
285 typedef struct ssa_sizeof_t {
286  const ssa_type_t *type;
287 } ssa_sizeof_t;
288 
289 typedef struct ssa_alignof_t {
290  const ssa_type_t *type;
291 } ssa_alignof_t;
292 
293 typedef struct ssa_offsetof_t {
294  const ssa_type_t *type;
295  size_t index;
297 
298 typedef struct ssa_step_t {
300 
301  union {
306 
310 
313 
316 
320 
324  };
325 } ssa_step_t;
326 
327 typedef struct ssa_block_t
328 {
329  const char *name;
331 } ssa_block_t;
332 
333 typedef struct ssa_symbol_t
334 {
337 
338  const char *linkage_string;
339 
340  const char *name;
341  const ssa_type_t *type;
343 
345 
348 
350 
352 } ssa_symbol_t;
353 
354 typedef struct ssa_module_t {
355  const char *name;
356 
360 } ssa_module_t;
361 
362 typedef struct ssa_result_t {
363  vector_t *modules; // vector<ssa_module>
364  map_t *deps; // map<ssa_symbol, set<ssa_symbol>>
365 } ssa_result_t;
366 
374 
378 
384 CT_SSA_API void ssa_opt(IN_NOTNULL logger_t *reports, ssa_result_t mod, IN_NOTNULL arena_t *arena);
385 
389 
390 CT_SSA_API ssa_type_t *ssa_type_bool(const char *name, tree_quals_t quals);
391 CT_SSA_API ssa_type_t *ssa_type_digit(const char *name, tree_quals_t quals, sign_t sign, digit_t digit);
392 CT_SSA_API ssa_type_t *ssa_type_pointer(const char *name, tree_quals_t quals, ssa_type_t *pointer, size_t length);
393 
397 
399 CT_SSA_API bool ssa_value_get_bool(IN_NOTNULL const ssa_value_t *value);
400 CT_SSA_API void ssa_value_get_digit(IN_NOTNULL const ssa_value_t *value, OUT_NOTNULL mpz_t result);
401 
405 
407 CT_SSA_API const char *ssa_type_name(STA_IN_RANGE(0, eTypeCount - 1) ssa_kind_t kind);
408 
410 CT_SSA_API const char *ssa_opkind_name(STA_IN_RANGE(0, eOperandCount - 1) ssa_opkind_t kind);
411 
413 CT_SSA_API const char *ssa_opcode_name(STA_IN_RANGE(0, eOpCount - 1) ssa_opcode_t opcode);
414 
416 CT_SSA_API const char *ssa_value_name(STA_IN_RANGE(0, eValueCount - 1) ssa_value_state_t value);
417 
419 
#define RET_NOTNULL
annotate the return value as not being null
#define STA_IN_RANGE(lo, hi)
Definition: analyze.h:142
#define CT_NODISCARD
mark a function as returning a value that must be used
#define IN_NOTNULL
annotate a parameter as not being null
#define CT_CONSTFN
mark a function as const, has no side effects and always returns the same value for the same argument...
Definition: analyze.h:227
#define OUT_NOTNULL
Definition: analyze.h:99
#define CT_BEGIN_API
Definition: compiler.h:129
#define CT_END_API
Definition: compiler.h:130
CT_CONSTFN CT_NODISCARD CT_SSA_API const char * ssa_opkind_name(STA_IN_RANGE(0, eOperandCount - 1) ssa_opkind_t kind)
CT_CONSTFN CT_NODISCARD CT_SSA_API const char * ssa_value_name(STA_IN_RANGE(0, eValueCount - 1) ssa_value_state_t value)
CT_SSA_API void ssa_opt(logger_t *reports, ssa_result_t mod, arena_t *arena)
Optimize a given module.
Definition: opt.c:359
ssa_opcode_t
Definition: ssa.h:54
CT_SSA_API ssa_result_t ssa_compile(vector_t *mods, arena_t *arena)
compile a set of trees into their ssa form
Definition: ssa.c:911
CT_CONSTFN CT_NODISCARD CT_SSA_API const char * ssa_type_name(STA_IN_RANGE(0, eTypeCount - 1) ssa_kind_t kind)
CT_CONSTFN CT_NODISCARD CT_SSA_API const char * ssa_opcode_name(STA_IN_RANGE(0, eOpCount - 1) ssa_opcode_t opcode)
ssa_kind_t
Definition: ssa.h:40
ssa_opkind_t
Definition: ssa.h:47
CT_SSA_API bool ssa_value_get_bool(const ssa_value_t *value)
Definition: value.c:136
CT_SSA_API ssa_type_t * ssa_type_bool(const char *name, tree_quals_t quals)
Definition: type.c:37
CT_SSA_API ssa_type_t * ssa_type_pointer(const char *name, tree_quals_t quals, ssa_type_t *pointer, size_t length)
Definition: type.c:63
CT_SSA_API void ssa_value_get_digit(const ssa_value_t *value, OUT_NOTNULL mpz_t result)
ssa_value_state_t
Definition: ssa.h:61
CT_SSA_API ssa_type_t * ssa_type_digit(const char *name, tree_quals_t quals, sign_t sign, digit_t digit)
Definition: type.c:42
CT_SSA_API ssa_literal_value_t ssa_value_get_literal(const ssa_value_t *value)
Definition: value.c:128
@ eOpCount
Definition: ssa.h:58
@ eTypeCount
Definition: ssa.h:44
@ eOperandCount
Definition: ssa.h:51
@ eValueCount
Definition: ssa.h:65
tree_quals_t
all type qualifiers
Definition: ops.h:25
tree_visibility_t
symbol visibility
Definition: ops.h:88
sign_t
integer sign
Definition: ops.h:104
binary_t
all binary operators
Definition: ops.h:32
tree_linkage_t
the linkage of a declaration
Definition: ops.h:72
digit_t
digit width
Definition: ops.h:96
unary_t
all unary operators
Definition: ops.h:48
compare_t
all comparison operators
Definition: ops.h:40
an allocator object
Definition: arena.h:86
a logging sink
Definition: notify.c:14
an unordered hash map
Definition: map.h:38
an unordered hash set
Definition: set.c:19
ssa_operand_t symbol
Definition: ssa.h:231
const ssa_type_t * type
Definition: ssa.h:290
binary_t binary
Definition: ssa.h:242
ssa_operand_t rhs
Definition: ssa.h:241
ssa_operand_t lhs
Definition: ssa.h:240
typevec_t * steps
Definition: ssa.h:330
const char * name
Definition: ssa.h:329
ssa_operand_t then
Definition: ssa.h:277
ssa_operand_t other
Definition: ssa.h:278
ssa_operand_t cond
Definition: ssa.h:276
typevec_t * args
Definition: ssa.h:258
mpz_t value
Definition: ssa.h:122
const char * name
Definition: ssa.h:121
const ssa_type_t * type
Definition: ssa.h:253
ssa_operand_t operand
Definition: ssa.h:252
ssa_operand_t rhs
Definition: ssa.h:247
ssa_operand_t lhs
Definition: ssa.h:246
compare_t compare
Definition: ssa.h:248
const ssa_value_t * value
Definition: ssa.h:103
ssa_storage_t storage
Definition: ssa.h:102
const ssa_type_t * type
Definition: ssa.h:108
const char * name
Definition: ssa.h:107
ssa_operand_t target
Definition: ssa.h:282
ssa_operand_t src
Definition: ssa.h:227
const char * name
Definition: ssa.h:97
const ssa_type_t * type
Definition: ssa.h:98
ssa_storage_t storage
Definition: ssa.h:95
size_t index
Definition: ssa.h:268
ssa_operand_t object
Definition: ssa.h:267
vector_t * types
vector<ssa_type_t> all types used by this module
Definition: ssa.h:357
vector_t * functions
vector<ssa_symbol_t> all functions declared/imported/exported by this module
Definition: ssa.h:359
vector_t * globals
vector<ssa_symbol_t> all globals declared/imported/exported by this module
Definition: ssa.h:358
const char * name
Definition: ssa.h:355
ssa_operand_t offset
Definition: ssa.h:263
ssa_operand_t array
Definition: ssa.h:262
size_t index
Definition: ssa.h:295
const ssa_type_t * type
Definition: ssa.h:294
size_t param
Definition: ssa.h:208
const ssa_value_t * value
Definition: ssa.h:217
size_t local
Definition: ssa.h:205
const ssa_block_t * vreg_context
Definition: ssa.h:200
ssa_opkind_t kind
Definition: ssa.h:192
const ssa_symbol_t * global
Definition: ssa.h:211
const ssa_block_t * bb
Definition: ssa.h:196
size_t vreg_index
Definition: ssa.h:201
const char * name
Definition: ssa.h:90
const ssa_type_t * type
Definition: ssa.h:91
vector_t * modules
Definition: ssa.h:363
map_t * deps
Definition: ssa.h:364
ssa_operand_t value
Definition: ssa.h:272
const ssa_type_t * type
Definition: ssa.h:286
ssa_offset_t offset
Definition: ssa.h:314
ssa_store_t store
Definition: ssa.h:303
ssa_call_t call
Definition: ssa.h:312
ssa_unary_t unary
Definition: ssa.h:307
ssa_alignof_t align_of
Definition: ssa.h:322
ssa_binary_t binary
Definition: ssa.h:308
ssa_load_t load
Definition: ssa.h:304
const ssa_value_t * value
Definition: ssa.h:302
ssa_branch_t branch
Definition: ssa.h:318
ssa_opcode_t opcode
Definition: ssa.h:299
ssa_addr_t addr
Definition: ssa.h:305
ssa_return_t ret
Definition: ssa.h:317
ssa_offsetof_t offset_of
Definition: ssa.h:323
ssa_jump_t jump
Definition: ssa.h:319
ssa_member_t member
Definition: ssa.h:315
ssa_compare_t compare
Definition: ssa.h:309
ssa_cast_t cast
Definition: ssa.h:311
ssa_sizeof_t size_of
Definition: ssa.h:321
ssa underlying storage type
Definition: ssa.h:78
size_t size
the number of elements in the storage
Definition: ssa.h:83
tree_quals_t quals
the qualifiers of the storage
Definition: ssa.h:86
const ssa_type_t * type
the internal storage type
Definition: ssa.h:80
ssa_operand_t src
Definition: ssa.h:223
ssa_operand_t dst
Definition: ssa.h:222
ssa_block_t * entry
entry block
Definition: ssa.h:349
const ssa_type_t * type
the public facing type of this symbol
Definition: ssa.h:341
vector_t * blocks
vector_t<ssa_block_t *>
Definition: ssa.h:351
ssa_storage_t storage
the backing storage for this symbol
Definition: ssa.h:342
tree_visibility_t visibility
Definition: ssa.h:336
typevec_t * params
typevec_t<ssa_type_t>
Definition: ssa.h:347
const char * linkage_string
external name
Definition: ssa.h:338
const ssa_value_t * value
the value of this symbol, must always be set for globals
Definition: ssa.h:344
typevec_t * locals
typevec_t<ssa_type_t>
Definition: ssa.h:346
tree_linkage_t linkage
Definition: ssa.h:335
const char * name
internal name
Definition: ssa.h:340
const ssa_type_t * result
Definition: ssa.h:131
bool variadic
Definition: ssa.h:133
typevec_t * params
Definition: ssa.h:132
digit_t digit
Definition: ssa.h:117
sign_t sign
Definition: ssa.h:116
typevec_t * cases
Definition: ssa.h:127
ssa_type_t * underlying
Definition: ssa.h:126
const ssa_type_t * pointer
Definition: ssa.h:137
size_t length
Definition: ssa.h:138
typevec_t * fields
Definition: ssa.h:142
ssa_kind_t kind
Definition: ssa.h:146
tree_quals_t quals
Definition: ssa.h:147
ssa_type_record_t record
Definition: ssa.h:154
ssa_type_closure_t closure
Definition: ssa.h:152
ssa_type_digit_t digit
Definition: ssa.h:151
ssa_type_enum_t sum
Definition: ssa.h:155
const char * name
Definition: ssa.h:148
ssa_type_pointer_t pointer
Definition: ssa.h:153
unary_t unary
Definition: ssa.h:236
ssa_operand_t operand
Definition: ssa.h:235
ssa_literal_value_t literal
Definition: ssa.h:184
bool init
whether this value has been initialized
Definition: ssa.h:180
ssa_value_state_t value
Definition: ssa.h:179
const ssa_type_t * type
Definition: ssa.h:178
ssa_relative_value_t relative
Definition: ssa.h:187
Definition: tree.h:67
A vector with a fixed type size.
Definition: vector.h:24
a generic vector of pointers
Definition: vector.c:16
vector_t * data
Definition: ssa.h:167
mpz_t pointer
Definition: ssa.h:170
const ssa_symbol_t * symbol
Definition: ssa.h:174