57 #define OPT_EXEC(fn, ...) do { if (fn != NULL) fn(__VA_ARGS__); } while (0)
79 static void resolve_module_tag(
tree_t *mod,
size_t tag)
90 static void resolve_module(
tree_t *mod)
103 resolve_module(tree);
139 broker->
arena = arena;
187 CTASSERTF(builtin.
name.text != NULL,
"language '%s' did not specify a builtin name", info.
name);
189 CTASSERTF(builtin.decls != NULL,
"language '%s' did not specify builtin decls", info.
name);
192 runtime->
info = lang;
196 runtime->
arena = arena;
207 runtime->
root = tree;
210 compile_unit_t *unit = compile_unit_new(runtime, arena, NULL, tree);
233 runtime->
info = plugin;
254 runtime->
info = target;
256 runtime->
arena = arena;
271 for (
size_t i = 0; i < len; i++)
279 for (
size_t i = 0; i < len; i++)
287 for (
size_t i = 0; i < len; i++)
301 for (
size_t i = 0; i < len; i++)
309 for (
size_t i = 0; i < len; i++)
317 for (
size_t i = 0; i < len; i++)
345 return broker->
arena;
367 collect_units(&modules, broker->
builtins);
368 collect_units(&modules, broker->
units);
409 if (!parse_ok(result, scan, broker->
logger))
430 if (unit->
ast == NULL)
454 resolve_module(broker->
root);
480 for (
size_t i = 0; i <
id.length; i++)
483 copy[
id.length] =
'\0';
488 compile_unit_t *unit = compile_unit_new(runtime, arena, ast, tree);
539 for (
size_t i = 0; i < len; i++)
545 size_t size = chars + len - 1;
549 for (
size_t i = 0; i < len; i++)
557 buf[offset++] =
'\0';
575 target->
fn_tree(runtime, tree, emit);
588 return target->
fn_ssa(runtime, ssa, emit);
591 static const char *
const kPassNames[
ePassCount] = {
592 #define BROKER_PASS(ID, STR) [ID] = (STR),
601 return kPassNames[pass];
605 #define FILE_LAYOUT(ID, STR) [ID] = (STR),
614 return kFileLayoutNames[layout];
CT_NODISCARD CT_SCAN_API scan_t * scan_io(const char *language, io_t *io, arena_t *arena)
create a scanner from an io source
CT_SCAN_API void scan_set_context(scan_t *scan, void *value)
get the context of a scanner
CT_PUREFN CT_TREE_API const node_t * tree_get_node(const tree_t *tree)
CT_PUREFN CT_TREE_API const char * tree_get_name(const tree_t *tree)
#define STA_DECL
sal2 annotation on function implementations to copy annotations from the declaration
CT_NOALIAS CT_BASE_API void * ctu_memcpy(STA_WRITES(size) void *CT_RESTRICT dst, STA_READS(size) const void *CT_RESTRICT src, size_t size)
copy memory from one location to another equivalent to memcpy but with safety checks
CT_NODISCARD CT_PUREFN CT_BASE_API size_t ctu_strlen(const char *str)
get the length of a string not including the null terminator equivalent to strlen but with safety che...
CT_CONSTFN CT_BASE_API text_view_t text_view_make(STA_READS(length) const char *text, size_t length)
create a new non-owning text array text must be at least length bytes long
STA_DECL const node_t * broker_get_node(broker_t *broker)
STA_DECL emit_result_t target_emit_ssa(target_runtime_t *runtime, const ssa_result_t *ssa, target_emit_t *emit)
STA_DECL void * unit_get_ast(compile_unit_t *unit)
STA_DECL void broker_parse(language_runtime_t *runtime, io_t *io)
STA_DECL void broker_run_pass(broker_t *broker, broker_pass_t pass)
STA_DECL void broker_resolve(broker_t *broker)
void(* language_pass_t)(language_runtime_t *runtime, compile_unit_t *unit)
a language compilation pass
STA_DECL void target_emit_tree(target_runtime_t *runtime, const tree_t *tree, target_emit_t *emit)
all plugin apis
STA_DECL void lang_add_unit(language_runtime_t *runtime, unit_id_t id, const node_t *node, void *ast, const size_t *decls, size_t length)
all runtime apis
STA_DECL void unit_update(compile_unit_t *unit, void *ast, tree_t *tree)
file_layout_t
output folder structure
compile_unit_t * lang_get_unit(language_runtime_t *runtime, unit_id_t id)
STA_DECL language_runtime_t * broker_add_language(broker_t *broker, const language_t *lang)
STA_DECL void broker_deinit(broker_t *broker)
STA_DECL const char * file_layout_name(file_layout_t layout)
STA_DECL broker_t * broker_new(const frontend_t *frontend, arena_t *arena)
STA_DECL target_runtime_t * broker_add_target(broker_t *broker, const target_t *target)
STA_DECL const char * broker_pass_name(broker_pass_t pass)
extra stuff
STA_DECL void broker_init(broker_t *broker)
STA_DECL plugin_runtime_t * broker_add_plugin(broker_t *broker, const plugin_t *plugin)
STA_DECL vector_t * broker_get_modules(broker_t *broker)
get all the modules in the broker this does not include the root module
STA_DECL arena_t * broker_get_arena(broker_t *broker)
STA_DECL logger_t * broker_get_logger(broker_t *broker)
STA_DECL text_view_t build_unit_id(const vector_t *parts, arena_t *arena)
CT_NODISCARD CT_PUREFN CT_STD_API bool map_has_next(const map_iter_t *iter)
check if a map iterator has more elements
CT_NODISCARD CT_PUREFN CT_STD_API map_iter_t map_iter(const map_t *map)
create a new map iterator
CT_STD_API void map_set(map_t *map, const void *key, void *value)
set a key-value pair in a map
CT_NODISCARD CT_STD_API map_t * map_new(size_t size, hash_info_t info, arena_t *arena)
create a new map on the heap
CT_NODISCARD CT_PUREFN CT_STD_API void * map_get(const map_t *map, const void *key)
get a value from a map
CT_NODISCARD CT_NOALIAS CT_STD_API map_entry_t map_next(map_iter_t *iter)
get the next key-value pair from a map iterator
CT_INTEROP_API parse_result_t scan_buffer(scan_t *scan, const scan_callbacks_t *callbacks)
parse the contents of a scanner into a language specific ast
@ eParseInitError
error initializing the scanner internals (our fault)
@ eParseOk
parse was successful
@ eParseScanError
entered invalid state during scanning (our fault)
@ eParseReject
failed due to invalid input (users fault)
CT_NODISCARD CT_SCAN_API node_t * node_builtin(const char *name, arena_t *arena)
get the builtin node node used for drivers that declare builtin symbols
CT_SCAN_API const where_t kNowhere
nowhere in a source file
CT_NODISCARD CT_SCAN_API node_t * node_new(const scan_t *scan, where_t where)
create a new node on the heap
CT_BASE_API void ctu_log(STA_FORMAT_STRING const char *fmt,...)
log a message
CT_NODISCARD CT_ARENA_API void * arena_memdup(STA_READS(size) const void *ptr, size_t size, arena_t *arena)
duplicate a memory region from a custom allocator duplicate a region of memory and return a pointer t...
#define ARENA_IDENTIFY(ptr, name, parent, arena)
rename and reparent a pointer in a custom allocator
#define ARENA_REPARENT(arena, ptr, parent)
reparent a pointer in a custom allocator
#define ARENA_MALLOC(size, name, parent, arena)
allocate memory from a custom allocator
CT_NOTIFY_API event_builder_t msg_notify(INOUT_NOTNULL logger_t *logs, const diagnostic_t *diagnostic, const node_t *node, STA_FORMAT_STRING const char *fmt,...)
notify the logger of a new message
CT_NODISCARD CT_NOTIFY_API logger_t * logger_new(arena_t *arena)
create a new logger
#define CT_ASSERT_RANGE(value, min, max)
assert that a value is in a range inclusive bounds check
#define CT_NEVER(...)
assert that a code path is never reached
#define CTASSERT(expr)
assert a condition, prints the condition as a message
#define CTASSERTF(expr,...)
assert a condition with a message and optional format arguments
CT_TREE_API tree_t * tree_module(tree_t *parent, const node_t *node, const char *name, size_t decls, const size_t *sizes)
create a new module
CT_TREE_API map_t * tree_module_tag(const tree_t *self, size_t tag)
CT_TREE_API tree_cookie_t * tree_get_cookie(tree_t *sema)
return a resolution cookie
CT_TREE_API tree_t * tree_module_root(logger_t *reports, tree_cookie_t *cookie, const node_t *node, const char *name, size_t decls, const size_t *sizes, arena_t *arena)
CT_TREE_API tree_t * tree_resolve(tree_cookie_t *cookie, const tree_t *decl)
CT_TREE_API void * tree_module_set(tree_t *self, size_t tag, const char *name, void *value)
set a declaration in the current module
CT_STD_API const hash_info_t kTypeInfoText
type information for a text_view_t
CT_NODISCARD CT_PUREFN CT_STD_API void * vector_get(const vector_t *vector, size_t index)
get a value from a vector
CT_NODISCARD CT_STD_API vector_t * vector_new(size_t size, arena_t *arena)
create a new vector with an initial capacity
CT_STD_API void vector_push(vector_t **vector, void *value)
push a value onto the end of a vector
CT_NODISCARD CT_PUREFN CT_STD_API size_t vector_len(const vector_t *vector)
get the length of a vector
const frontend_t * frontend
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
the frontend running the mediator
module_info_t info
information about the frontend
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
size_t context_size
the size of the scan context for this language
const scan_callbacks_t * scanner
callbacks for the parser
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
language_create_t fn_create
called once at startup
a key-value pair in a map
void * value
the value of this entry
common information about anything the broker supports
version_info_t version
the version of the 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
plugin support capabilities
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
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
a generic vector of pointers
const char * license
the license of this component