Cthulhu  0.2.10
Cthulhu compiler collection
broker.h
Go to the documentation of this file.
1 // SPDX-License-Identifier: LGPL-3.0-only
2 
3 #pragma once
4 
5 #include <ctu_broker_api.h>
6 
7 #include "arena/arena.h"
8 #include "core/compiler.h"
9 #include "core/text.h"
10 #include "core/version_def.h"
11 
12 #include "notify/diagnostic.h"
13 
14 #include <stdint.h>
15 
16 typedef struct scan_callbacks_t scan_callbacks_t;
17 typedef struct scan_t scan_t;
18 typedef struct arena_t arena_t;
19 typedef struct fs_t fs_t;
20 typedef struct tree_t tree_t;
21 typedef struct vector_t vector_t;
22 typedef struct tree_cookie_t tree_cookie_t;
23 typedef struct io_t io_t;
24 typedef struct node_t node_t;
25 typedef struct logger_t logger_t;
26 typedef struct tree_attrib_t tree_attrib_t;
27 typedef struct ssa_result_t ssa_result_t;
28 
30 
35 
36 typedef struct frontend_t frontend_t;
37 typedef struct language_t language_t;
38 typedef struct plugin_t plugin_t;
39 typedef struct target_t target_t;
40 typedef struct broker_t broker_t;
41 
43 typedef struct compile_unit_t compile_unit_t;
44 typedef struct plugin_runtime_t plugin_runtime_t;
45 typedef struct target_runtime_t target_runtime_t;
46 
47 typedef struct target_emit_t target_emit_t;
48 
49 #define CT_LANG_EXTS(...) { __VA_ARGS__, NULL }
50 
54 
55 typedef enum broker_pass_t
56 {
57 #define BROKER_PASS(ID, STR) ID,
58 #include "broker.inc"
59 
62 
64 typedef enum broker_stage_t
65 {
66 #define BROKER_STAGE(ID, STR) ID,
67 #include "broker.inc"
68 
71 
73 typedef enum broker_event_t
74 {
75 #define BROKER_EVENT(ID, STR) ID,
76 #include "broker.inc"
77 
80 
81 typedef enum broker_arena_t
82 {
83 #define BROKER_ARENA(ID, STR) ID,
84 #include "broker.inc"
85 
88 
90 typedef enum file_layout_t
91 {
92 #define FILE_LAYOUT(ID, STR) ID,
93 #include "broker.inc"
96 
98 typedef struct module_info_t
99 {
101  const char *id;
102 
104  const char *name;
105 
108 
111 } module_info_t;
112 
114 typedef void (*language_pass_t)(language_runtime_t *runtime, compile_unit_t *unit);
115 
117 typedef void (*language_create_t)(language_runtime_t *runtime, tree_t *root);
118 typedef void (*language_destroy_t)(language_runtime_t *runtime);
119 
120 typedef void (*language_preparse_t)(language_runtime_t *runtime, void *context);
121 typedef void (*language_postparse_t)(language_runtime_t *runtime, scan_t *scan, void *ast);
122 
123 typedef struct language_builtins_t
124 {
127 
129  STA_FIELD_SIZE(length) const size_t *decls;
130 
132  STA_FIELD_SIZE(length) const char * const *names;
133 
135  STA_FIELD_RANGE(eSemaCount, SIZE_MAX) size_t length;
137 
139 typedef char *(*lang_repr_tree_t)(tree_t *tree, arena_t *arena);
140 
142 typedef struct language_t
143 {
146 
149 
152 
155  const char * const *exts;
156 
158  size_t context_size;
159 
161  size_t ast_size;
162 
165 
168 
172 
176 
179 
182 } language_t;
183 
185 typedef struct plugin_event_t
186 {
190 
191 typedef struct event_list_t
192 {
194  size_t count;
195 } event_list_t;
196 
197 typedef void (*plugin_create_t)(plugin_runtime_t *runtime);
198 typedef void (*plugin_destroy_t)(plugin_runtime_t *runtime);
199 
201 typedef struct plugin_t
202 {
205 
208 
211 
214 } plugin_t;
215 
216 typedef void (*target_create_t)(target_runtime_t *runtime);
217 typedef void (*target_destroy_t)(target_runtime_t *runtime);
218 
220 typedef void (*target_tree_t)(target_runtime_t *runtime, const tree_t *tree, target_emit_t *emit);
221 
222 typedef struct emit_result_t
223 {
225 } emit_result_t;
226 
228 typedef emit_result_t (*target_ssa_t)(target_runtime_t *runtime, const ssa_result_t *ssa, target_emit_t *emit);
229 
231 typedef struct target_t
232 {
235 
238 
241 
244 
247 } target_t;
248 
250 typedef struct frontend_t
251 {
254 } frontend_t;
255 
259 
260 typedef struct language_runtime_t
261 {
262  const language_t *info;
264 
267 
270 
273 
277 
278 typedef struct compile_unit_t
279 {
282 
285  void *ast;
286 
291 
292 typedef struct plugin_runtime_t
293 {
294  const plugin_t *info;
296 
297 typedef struct target_runtime_t
298 {
299  const target_t *info;
301 
303 
306 
307 typedef struct target_emit_t
308 {
310 
312 } target_emit_t;
313 
316 
318 CT_BROKER_API broker_t *broker_new(IN_NOTNULL const frontend_t *frontend, IN_NOTNULL arena_t *arena);
319 
321 CT_BROKER_API plugin_runtime_t *broker_add_plugin(IN_NOTNULL broker_t *broker, IN_NOTNULL const plugin_t *plugin);
322 CT_BROKER_API target_runtime_t *broker_add_target(IN_NOTNULL broker_t *broker, IN_NOTNULL const target_t *target);
323 
324 CT_BROKER_API void broker_init(IN_NOTNULL broker_t *broker);
325 CT_BROKER_API void broker_deinit(IN_NOTNULL broker_t *broker);
326 
328 
329 CT_BROKER_API void broker_parse(IN_NOTNULL language_runtime_t *runtime, IN_NOTNULL io_t *io);
330 
331 CT_BROKER_API void broker_run_pass(IN_NOTNULL broker_t *broker, broker_pass_t pass);
332 
333 CT_BROKER_API void broker_resolve(IN_NOTNULL broker_t *broker);
334 
335 CT_BROKER_API logger_t *broker_get_logger(IN_NOTNULL broker_t *broker);
336 CT_BROKER_API const node_t *broker_get_node(IN_NOTNULL broker_t *broker);
337 CT_BROKER_API arena_t *broker_get_arena(IN_NOTNULL broker_t *broker);
338 
341 CT_BROKER_API vector_t *broker_get_modules(IN_NOTNULL broker_t *broker);
342 
344 
345 CT_BROKER_API void lang_add_unit(IN_NOTNULL language_runtime_t *runtime, unit_id_t id, const node_t *node, void *ast, const size_t *sizes, size_t count);
347 
348 CT_BROKER_API void unit_update(IN_NOTNULL compile_unit_t *unit, IN_NOTNULL void *ast, IN_NOTNULL tree_t *tree);
349 CT_BROKER_API void *unit_get_ast(IN_NOTNULL compile_unit_t *unit);
350 
351 CT_BROKER_API text_view_t build_unit_id(IN_NOTNULL const vector_t *parts, IN_NOTNULL arena_t *arena);
352 
354 
355 
357 
358 CT_BROKER_API void target_emit_tree(IN_NOTNULL target_runtime_t *runtime, IN_NOTNULL const tree_t *tree, IN_NOTNULL target_emit_t *emit);
360 
362 
364 CT_BROKER_API const char *broker_pass_name(IN_DOMAIN(<, ePassCount) broker_pass_t pass);
365 
367 CT_BROKER_API const char *file_layout_name(IN_DOMAIN(<, eFileLayoutCount) file_layout_t layout);
368 
370 
#define RET_NOTNULL
annotate the return value as not being null
#define IN_NOTNULL
annotate a parameter as not being null
#define IN_DOMAIN(cmp, it)
annotate a parameter as being bounded by the expression of cmp and it
#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
CT_BROKER_API const node_t * broker_get_node(broker_t *broker)
Definition: broker.c:333
CT_BROKER_API compile_unit_t * broker_get_unit(broker_t *broker, unit_id_t id)
text_view_t unit_id_t
the name of a module to represent the name java.lang use `CT_TEXT_VIEW("java\0lang")
Definition: broker.h:53
CT_BROKER_API emit_result_t target_emit_ssa(target_runtime_t *runtime, const ssa_result_t *ssa, target_emit_t *emit)
Definition: broker.c:579
CT_BROKER_API void * unit_get_ast(compile_unit_t *unit)
Definition: broker.c:511
CT_BROKER_API void broker_parse(language_runtime_t *runtime, io_t *io)
Definition: broker.c:376
char *(* lang_repr_tree_t)(tree_t *tree, arena_t *arena)
convert a tree node to a string
Definition: broker.h:139
CT_BROKER_API void broker_run_pass(broker_t *broker, broker_pass_t pass)
Definition: broker.c:419
broker_stage_t
stages of compilation
Definition: broker.h:65
broker_pass_t
Definition: broker.h:56
CT_BROKER_API void broker_resolve(broker_t *broker)
Definition: broker.c:450
emit_result_t(* target_ssa_t)(target_runtime_t *runtime, const ssa_result_t *ssa, target_emit_t *emit)
ssa output generation
Definition: broker.h:228
void(* language_preparse_t)(language_runtime_t *runtime, void *context)
Definition: broker.h:120
void(* language_pass_t)(language_runtime_t *runtime, compile_unit_t *unit)
a language compilation pass
Definition: broker.h:114
void(* language_create_t)(language_runtime_t *runtime, tree_t *root)
initialize the root module
Definition: broker.h:117
CT_BROKER_API void target_emit_tree(target_runtime_t *runtime, const tree_t *tree, target_emit_t *emit)
all plugin apis
Definition: broker.c:566
CT_BROKER_API void lang_add_unit(language_runtime_t *runtime, unit_id_t id, const node_t *node, void *ast, const size_t *sizes, size_t count)
all runtime apis
Definition: broker.c:462
CT_BROKER_API void unit_update(compile_unit_t *unit, void *ast, tree_t *tree)
Definition: broker.c:519
file_layout_t
output folder structure
Definition: broker.h:91
CT_BROKER_API compile_unit_t * lang_get_unit(language_runtime_t *runtime, unit_id_t id)
Definition: broker.c:494
void(* plugin_destroy_t)(plugin_runtime_t *runtime)
Definition: broker.h:198
CT_BROKER_API language_runtime_t * broker_add_language(broker_t *broker, const language_t *lang)
Definition: broker.c:175
CT_BROKER_API void broker_deinit(broker_t *broker)
Definition: broker.c:295
CT_CONSTFN CT_CONSTFN CT_BROKER_API const char * file_layout_name(file_layout_t layout)
Definition: broker.c:610
CT_BROKER_API broker_t * broker_new(const frontend_t *frontend, arena_t *arena)
Definition: broker.c:130
void(* target_tree_t)(target_runtime_t *runtime, const tree_t *tree, target_emit_t *emit)
tree output generation
Definition: broker.h:220
CT_BROKER_API target_runtime_t * broker_add_target(broker_t *broker, const target_t *target)
Definition: broker.c:241
void(* language_postparse_t)(language_runtime_t *runtime, scan_t *scan, void *ast)
Definition: broker.h:121
CT_CONSTFN CT_BROKER_API const char * broker_pass_name(broker_pass_t pass)
extra stuff
Definition: broker.c:597
broker_arena_t
Definition: broker.h:82
void(* target_destroy_t)(target_runtime_t *runtime)
Definition: broker.h:217
CT_BROKER_API void broker_init(broker_t *broker)
Definition: broker.c:265
broker_event_t
plugin events generated by the broker
Definition: broker.h:74
CT_BROKER_API plugin_runtime_t * broker_add_plugin(broker_t *broker, const plugin_t *plugin)
Definition: broker.c:220
CT_BROKER_API vector_t * broker_get_modules(broker_t *broker)
get all the modules in the broker this does not include the root module
Definition: broker.c:362
CT_BROKER_API arena_t * broker_get_arena(broker_t *broker)
Definition: broker.c:341
void(* language_destroy_t)(language_runtime_t *runtime)
Definition: broker.h:118
void(* plugin_create_t)(plugin_runtime_t *runtime)
Definition: broker.h:197
void(* target_create_t)(target_runtime_t *runtime)
Definition: broker.h:216
CT_BROKER_API logger_t * broker_get_logger(broker_t *broker)
Definition: broker.c:325
CT_BROKER_API text_view_t build_unit_id(const vector_t *parts, arena_t *arena)
Definition: broker.c:532
@ eStageCount
Definition: broker.h:69
@ ePassCount
Definition: broker.h:60
@ eArenaCount
Definition: broker.h:86
@ eEventCount
Definition: broker.h:78
#define CT_BEGIN_API
Definition: compiler.h:129
#define CT_END_API
Definition: compiler.h:130
@ eFileLayoutCount
Definition: broker.h:94
@ eSemaCount
Definition: tree.h:47
an allocator object
Definition: arena.h:86
tree_t * tree
the tree for this unit is NULL if the unit has not been forward declared yet
Definition: broker.h:289
language_runtime_t * lang
the language that this originated from
Definition: broker.h:281
void * ast
the ast for this unit is NULL if this is a builtin/precompiled unit
Definition: broker.h:285
a list of diagnostics
Definition: diagnostic.h:48
vector_t * files
Definition: broker.h:224
const plugin_event_t * events
Definition: broker.h:193
size_t count
Definition: broker.h:194
the frontend running the mediator
Definition: broker.h:251
module_info_t info
information about the frontend
Definition: broker.h:253
Definition: common.h:72
io object implementation
Definition: impl.h:122
STA_FIELD_RANGE(eSemaCount, SIZE_MAX) size_t length
size of decls
STA_FIELD_SIZE(length) const size_t *decls
passthrough decl sizes for the builtin module
STA_FIELD_SIZE(length) const char *const *names
name of each decl tag
unit_id_t name
the name of the builtin module
Definition: broker.h:126
arena_t * arena
default memory arena
Definition: broker.h:266
const language_t * info
Definition: broker.h:262
arena_t * ast_arena
arena for the language ast
Definition: broker.h:269
broker_t * broker
Definition: broker.h:263
tree_t * root
the builtins module for this language
Definition: broker.h:275
logger_t * logger
logger
Definition: broker.h:272
a language driver support capabilities
Definition: broker.h:143
language_preparse_t fn_preparse
called before a file is parsed should return a pointer to a context that will be put into the scanner
Definition: broker.h:171
const char *const * exts
the default file extensions this language should be used for
Definition: broker.h:155
size_t context_size
the size of the scan context for this language
Definition: broker.h:158
const scan_callbacks_t * scanner
callbacks for the parser
Definition: broker.h:178
lang_repr_tree_t repr_tree
convert a tree node to a string
Definition: broker.h:151
language_info_t builtin
builtin module configuration
Definition: broker.h:148
language_destroy_t fn_destroy
called at shutdown
Definition: broker.h:167
language_postparse_t fn_postparse
called after a file is parsed should produce translation units from a scanned ast
Definition: broker.h:175
module_info_t info
common information about the language
Definition: broker.h:145
language_pass_t fn_passes[ePassCount]
an array of passes to run on each translation unit
Definition: broker.h:181
size_t ast_size
the size of an ast node for this language
Definition: broker.h:161
language_create_t fn_create
called once at startup
Definition: broker.h:164
a logging sink
Definition: notify.c:14
common information about anything the broker supports
Definition: broker.h:99
version_info_t version
the version of the module
Definition: broker.h:107
diagnostic_list_t diagnostics
all diagnostics associated with this module
Definition: broker.h:110
const char * id
unique id for the module
Definition: broker.h:101
const char * name
the human readable name for the module
Definition: broker.h:104
a position in a source file
Definition: node.h:23
a plugin event callback description
Definition: broker.h:186
broker_event_t event
the event to listen for
Definition: broker.h:188
const plugin_t * info
Definition: broker.h:294
plugin support capabilities
Definition: broker.h:202
event_list_t events
the events this plugin is interested in
Definition: broker.h:213
module_info_t info
information about the plugin
Definition: broker.h:204
plugin_destroy_t fn_destroy
called at shutdown
Definition: broker.h:210
plugin_create_t fn_create
called once at startup
Definition: broker.h:207
scanner function callbacks for flex and bison
Definition: compile.h:26
a source file scanner
Definition: scan.h:24
fs_t * fs
Definition: broker.h:311
file_layout_t layout
Definition: broker.h:309
broker_t * broker
Definition: broker.h:300
arena_t * arena
Definition: broker.h:302
logger_t * logger
Definition: broker.h:304
const target_t * info
Definition: broker.h:299
a codegen target backend
Definition: broker.h:232
target_tree_t fn_tree
generate from the tree form
Definition: broker.h:243
target_ssa_t fn_ssa
generate from the ssa form
Definition: broker.h:246
target_destroy_t fn_destroy
called at shutdown
Definition: broker.h:240
target_create_t fn_create
called once at startup
Definition: broker.h:237
module_info_t info
information about the target
Definition: broker.h:234
a non-owning view of text
Definition: text.h:24
an application of an attribute
Definition: attrib.h:24
Definition: tree.h:67
a generic vector of pointers
Definition: vector.c:16
version information for a driver/interface/plugin
Definition: version_def.h:48