5 #include <ctu_broker_api.h>
49 #define CT_LANG_EXTS(...) { __VA_ARGS__, NULL }
57 #define BROKER_PASS(ID, STR) ID,
66 #define BROKER_STAGE(ID, STR) ID,
75 #define BROKER_EVENT(ID, STR) ID,
83 #define BROKER_ARENA(ID, STR) ID,
92 #define FILE_LAYOUT(ID, STR) ID,
123 typedef struct language_builtins_t
#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...
CT_BROKER_API const node_t * broker_get_node(broker_t *broker)
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")
CT_BROKER_API emit_result_t target_emit_ssa(target_runtime_t *runtime, const ssa_result_t *ssa, target_emit_t *emit)
CT_BROKER_API void * unit_get_ast(compile_unit_t *unit)
CT_BROKER_API void broker_parse(language_runtime_t *runtime, io_t *io)
char *(* lang_repr_tree_t)(tree_t *tree, arena_t *arena)
convert a tree node to a string
CT_BROKER_API void broker_run_pass(broker_t *broker, broker_pass_t pass)
broker_stage_t
stages of compilation
CT_BROKER_API void broker_resolve(broker_t *broker)
emit_result_t(* target_ssa_t)(target_runtime_t *runtime, const ssa_result_t *ssa, target_emit_t *emit)
ssa output generation
void(* language_preparse_t)(language_runtime_t *runtime, void *context)
void(* language_pass_t)(language_runtime_t *runtime, compile_unit_t *unit)
a language compilation pass
void(* language_create_t)(language_runtime_t *runtime, tree_t *root)
initialize the root module
CT_BROKER_API void target_emit_tree(target_runtime_t *runtime, const tree_t *tree, target_emit_t *emit)
all plugin apis
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
CT_BROKER_API void unit_update(compile_unit_t *unit, void *ast, tree_t *tree)
file_layout_t
output folder structure
CT_BROKER_API compile_unit_t * lang_get_unit(language_runtime_t *runtime, unit_id_t id)
void(* plugin_destroy_t)(plugin_runtime_t *runtime)
CT_BROKER_API language_runtime_t * broker_add_language(broker_t *broker, const language_t *lang)
CT_BROKER_API void broker_deinit(broker_t *broker)
CT_CONSTFN CT_CONSTFN CT_BROKER_API const char * file_layout_name(file_layout_t layout)
CT_BROKER_API broker_t * broker_new(const frontend_t *frontend, arena_t *arena)
void(* target_tree_t)(target_runtime_t *runtime, const tree_t *tree, target_emit_t *emit)
tree output generation
CT_BROKER_API target_runtime_t * broker_add_target(broker_t *broker, const target_t *target)
void(* language_postparse_t)(language_runtime_t *runtime, scan_t *scan, void *ast)
CT_CONSTFN CT_BROKER_API const char * broker_pass_name(broker_pass_t pass)
extra stuff
void(* target_destroy_t)(target_runtime_t *runtime)
CT_BROKER_API void broker_init(broker_t *broker)
broker_event_t
plugin events generated by the broker
CT_BROKER_API plugin_runtime_t * broker_add_plugin(broker_t *broker, const plugin_t *plugin)
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
CT_BROKER_API arena_t * broker_get_arena(broker_t *broker)
void(* language_destroy_t)(language_runtime_t *runtime)
void(* plugin_create_t)(plugin_runtime_t *runtime)
void(* target_create_t)(target_runtime_t *runtime)
CT_BROKER_API logger_t * broker_get_logger(broker_t *broker)
CT_BROKER_API text_view_t build_unit_id(const vector_t *parts, arena_t *arena)
tree_t * tree
the tree for this unit is NULL if the unit has not been forward declared yet
language_runtime_t * lang
the language that this originated from
void * ast
the ast for this unit is NULL if this is a builtin/precompiled unit
const plugin_event_t * events
the frontend running the mediator
module_info_t info
information about the frontend
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
arena_t * arena
default memory arena
arena_t * ast_arena
arena for the language ast
tree_t * root
the builtins module for this language
a language driver support capabilities
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
const char *const * exts
the default file extensions this language should be used for
size_t context_size
the size of the scan context for this language
const scan_callbacks_t * scanner
callbacks for the parser
lang_repr_tree_t repr_tree
convert a tree node to a string
language_info_t builtin
builtin module configuration
language_destroy_t fn_destroy
called at shutdown
language_postparse_t fn_postparse
called after a file is parsed should produce translation units from a scanned ast
module_info_t info
common information about the language
language_pass_t fn_passes[ePassCount]
an array of passes to run on each translation unit
size_t ast_size
the size of an ast node for this language
language_create_t fn_create
called once at startup
common information about anything the broker supports
version_info_t version
the version of the module
diagnostic_list_t diagnostics
all diagnostics associated with this module
const char * id
unique id for the module
const char * name
the human readable name for the module
a position in a source file
a plugin event callback description
broker_event_t event
the event to listen for
plugin support capabilities
event_list_t events
the events this plugin is interested in
module_info_t info
information about the plugin
plugin_destroy_t fn_destroy
called at shutdown
plugin_create_t fn_create
called once at startup
scanner function callbacks for flex and bison
target_tree_t fn_tree
generate from the tree form
target_ssa_t fn_ssa
generate from the ssa form
target_destroy_t fn_destroy
called at shutdown
target_create_t fn_create
called once at startup
module_info_t info
information about the target
a non-owning view of text
an application of an attribute
a generic vector of pointers
version information for a driver/interface/plugin