Cthulhu  0.2.10
Cthulhu compiler collection
Compiler runtime mediator

Core of the compiler, manages languages, plugins, and targets. More...

Collaboration diagram for Compiler runtime mediator:

Data Structures

struct  module_info_t
 common information about anything the broker supports More...
 
struct  language_info_t
 
struct  language_t
 a language driver support capabilities More...
 
struct  plugin_event_t
 a plugin event callback description More...
 
struct  event_list_t
 
struct  plugin_t
 plugin support capabilities More...
 
struct  emit_result_t
 
struct  target_t
 a codegen target backend More...
 
struct  frontend_t
 the frontend running the mediator More...
 
struct  language_runtime_t
 
struct  compile_unit_t
 
struct  plugin_runtime_t
 
struct  target_runtime_t
 
struct  target_emit_t
 

Macros

#define CT_LANG_EXTS(...)   { __VA_ARGS__, NULL }
 

Typedefs

typedef text_view_t unit_id_t
 the name of a module to represent the name java.lang use `CT_TEXT_VIEW("java\0lang") More...
 
typedef void(* language_pass_t) (language_runtime_t *runtime, compile_unit_t *unit)
 a language compilation pass More...
 
typedef void(* language_create_t) (language_runtime_t *runtime, tree_t *root)
 initialize the root module More...
 
typedef void(* language_destroy_t) (language_runtime_t *runtime)
 
typedef void(* language_preparse_t) (language_runtime_t *runtime, void *context)
 
typedef void(* language_postparse_t) (language_runtime_t *runtime, scan_t *scan, void *ast)
 
typedef char *(* lang_repr_tree_t) (tree_t *tree, arena_t *arena)
 convert a tree node to a string More...
 
typedef void(* plugin_create_t) (plugin_runtime_t *runtime)
 
typedef void(* plugin_destroy_t) (plugin_runtime_t *runtime)
 
typedef void(* target_create_t) (target_runtime_t *runtime)
 
typedef void(* target_destroy_t) (target_runtime_t *runtime)
 
typedef void(* target_tree_t) (target_runtime_t *runtime, const tree_t *tree, target_emit_t *emit)
 tree output generation More...
 
typedef emit_result_t(* target_ssa_t) (target_runtime_t *runtime, const ssa_result_t *ssa, target_emit_t *emit)
 ssa output generation More...
 

Enumerations

enum  broker_pass_t { ePassCount }
 
enum  broker_stage_t { eStageCount }
 stages of compilation More...
 
enum  broker_event_t { eEventCount }
 plugin events generated by the broker More...
 
enum  broker_arena_t { eArenaCount }
 
enum  file_layout_t { eFileLayoutCount , eFileLayoutCount }
 output folder structure More...
 

Functions

CT_BROKER_API broker_tbroker_new (const frontend_t *frontend, arena_t *arena)
 
CT_BROKER_API language_runtime_tbroker_add_language (broker_t *broker, const language_t *lang)
 
CT_BROKER_API plugin_runtime_tbroker_add_plugin (broker_t *broker, const plugin_t *plugin)
 
CT_BROKER_API target_runtime_tbroker_add_target (broker_t *broker, const target_t *target)
 
CT_BROKER_API void broker_init (broker_t *broker)
 
CT_BROKER_API void broker_deinit (broker_t *broker)
 
CT_BROKER_API compile_unit_tbroker_get_unit (broker_t *broker, unit_id_t id)
 
CT_BROKER_API void broker_parse (language_runtime_t *runtime, io_t *io)
 
CT_BROKER_API void broker_run_pass (broker_t *broker, broker_pass_t pass)
 
CT_BROKER_API void broker_resolve (broker_t *broker)
 
CT_BROKER_API logger_tbroker_get_logger (broker_t *broker)
 
CT_BROKER_API const node_tbroker_get_node (broker_t *broker)
 
CT_BROKER_API arena_tbroker_get_arena (broker_t *broker)
 
CT_BROKER_API vector_tbroker_get_modules (broker_t *broker)
 get all the modules in the broker this does not include the root module More...
 
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 More...
 
CT_BROKER_API compile_unit_tlang_get_unit (language_runtime_t *runtime, unit_id_t id)
 
CT_BROKER_API void unit_update (compile_unit_t *unit, void *ast, tree_t *tree)
 
CT_BROKER_API void * unit_get_ast (compile_unit_t *unit)
 
CT_BROKER_API text_view_t build_unit_id (const vector_t *parts, arena_t *arena)
 
CT_BROKER_API void target_emit_tree (target_runtime_t *runtime, const tree_t *tree, target_emit_t *emit)
 all plugin apis More...
 
CT_BROKER_API emit_result_t target_emit_ssa (target_runtime_t *runtime, const ssa_result_t *ssa, target_emit_t *emit)
 
CT_CONSTFN CT_BROKER_API const char * broker_pass_name (broker_pass_t pass)
 extra stuff More...
 
CT_CONSTFN CT_CONSTFN CT_BROKER_API const char * file_layout_name (file_layout_t layout)
 

Detailed Description

Core of the compiler, manages languages, plugins, and targets.

Macro Definition Documentation

◆ CT_LANG_EXTS

#define CT_LANG_EXTS (   ...)    { __VA_ARGS__, NULL }

Definition at line 49 of file broker.h.

Typedef Documentation

◆ lang_repr_tree_t

typedef char*(* lang_repr_tree_t) (tree_t *tree, arena_t *arena)

convert a tree node to a string

Definition at line 139 of file broker.h.

◆ language_create_t

typedef void(* language_create_t) (language_runtime_t *runtime, tree_t *root)

initialize the root module

Definition at line 117 of file broker.h.

◆ language_destroy_t

typedef void(* language_destroy_t) (language_runtime_t *runtime)

Definition at line 118 of file broker.h.

◆ language_pass_t

typedef void(* language_pass_t) (language_runtime_t *runtime, compile_unit_t *unit)

a language compilation pass

Definition at line 114 of file broker.h.

◆ language_postparse_t

typedef void(* language_postparse_t) (language_runtime_t *runtime, scan_t *scan, void *ast)

Definition at line 121 of file broker.h.

◆ language_preparse_t

typedef void(* language_preparse_t) (language_runtime_t *runtime, void *context)

Definition at line 120 of file broker.h.

◆ plugin_create_t

typedef void(* plugin_create_t) (plugin_runtime_t *runtime)

Definition at line 197 of file broker.h.

◆ plugin_destroy_t

typedef void(* plugin_destroy_t) (plugin_runtime_t *runtime)

Definition at line 198 of file broker.h.

◆ target_create_t

typedef void(* target_create_t) (target_runtime_t *runtime)

Definition at line 216 of file broker.h.

◆ target_destroy_t

typedef void(* target_destroy_t) (target_runtime_t *runtime)

Definition at line 217 of file broker.h.

◆ target_ssa_t

typedef emit_result_t(* target_ssa_t) (target_runtime_t *runtime, const ssa_result_t *ssa, target_emit_t *emit)

ssa output generation

Definition at line 228 of file broker.h.

◆ target_tree_t

typedef void(* target_tree_t) (target_runtime_t *runtime, const tree_t *tree, target_emit_t *emit)

tree output generation

Definition at line 220 of file broker.h.

◆ unit_id_t

the name of a module to represent the name java.lang use `CT_TEXT_VIEW("java\0lang")

Definition at line 53 of file broker.h.

Enumeration Type Documentation

◆ broker_arena_t

Enumerator
eArenaCount 

Definition at line 81 of file broker.h.

◆ broker_event_t

plugin events generated by the broker

Enumerator
eEventCount 

Definition at line 73 of file broker.h.

◆ broker_pass_t

Enumerator
ePassCount 

Definition at line 55 of file broker.h.

◆ broker_stage_t

stages of compilation

Enumerator
eStageCount 

Definition at line 64 of file broker.h.

◆ file_layout_t

output folder structure

Enumerator
eFileLayoutCount 
eFileLayoutCount 

Definition at line 90 of file broker.h.

Function Documentation

◆ broker_add_language()

CT_BROKER_API language_runtime_t* broker_add_language ( broker_t broker,
const language_t lang 
)

Definition at line 175 of file broker.c.

◆ broker_add_plugin()

CT_BROKER_API plugin_runtime_t* broker_add_plugin ( broker_t broker,
const plugin_t plugin 
)

Definition at line 220 of file broker.c.

◆ broker_add_target()

CT_BROKER_API target_runtime_t* broker_add_target ( broker_t broker,
const target_t target 
)

Definition at line 241 of file broker.c.

◆ broker_deinit()

CT_BROKER_API void broker_deinit ( broker_t broker)

Definition at line 295 of file broker.c.

◆ broker_get_arena()

CT_BROKER_API arena_t* broker_get_arena ( broker_t broker)

Definition at line 341 of file broker.c.

◆ broker_get_logger()

CT_BROKER_API logger_t* broker_get_logger ( broker_t broker)

Definition at line 325 of file broker.c.

◆ broker_get_modules()

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 at line 362 of file broker.c.

◆ broker_get_node()

CT_BROKER_API const node_t* broker_get_node ( broker_t broker)

Definition at line 333 of file broker.c.

◆ broker_get_unit()

CT_BROKER_API compile_unit_t* broker_get_unit ( broker_t broker,
unit_id_t  id 
)

◆ broker_init()

CT_BROKER_API void broker_init ( broker_t broker)

Definition at line 265 of file broker.c.

◆ broker_new()

CT_BROKER_API broker_t* broker_new ( const frontend_t frontend,
arena_t arena 
)

broker api should only really be called by the frontend

broker api

Definition at line 130 of file broker.c.

◆ broker_parse()

CT_BROKER_API void broker_parse ( language_runtime_t runtime,
io_t io 
)

Definition at line 376 of file broker.c.

◆ broker_pass_name()

CT_CONSTFN CT_BROKER_API const char* broker_pass_name ( broker_pass_t  pass)

extra stuff

Definition at line 597 of file broker.c.

◆ broker_resolve()

CT_BROKER_API void broker_resolve ( broker_t broker)

Definition at line 450 of file broker.c.

◆ broker_run_pass()

CT_BROKER_API void broker_run_pass ( broker_t broker,
broker_pass_t  pass 
)

Definition at line 419 of file broker.c.

◆ build_unit_id()

CT_BROKER_API text_view_t build_unit_id ( const vector_t parts,
arena_t arena 
)

Definition at line 532 of file broker.c.

◆ file_layout_name()

CT_CONSTFN CT_CONSTFN CT_BROKER_API const char* file_layout_name ( file_layout_t  layout)

Definition at line 610 of file broker.c.

◆ lang_add_unit()

CT_BROKER_API 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

translation unit api

Definition at line 462 of file broker.c.

◆ lang_get_unit()

CT_BROKER_API compile_unit_t* lang_get_unit ( language_runtime_t runtime,
unit_id_t  id 
)

Definition at line 494 of file broker.c.

◆ target_emit_ssa()

CT_BROKER_API emit_result_t target_emit_ssa ( target_runtime_t runtime,
const ssa_result_t ssa,
target_emit_t emit 
)

Definition at line 579 of file broker.c.

◆ target_emit_tree()

CT_BROKER_API void target_emit_tree ( target_runtime_t runtime,
const tree_t tree,
target_emit_t emit 
)

all plugin apis

all target apis

Definition at line 566 of file broker.c.

◆ unit_get_ast()

CT_BROKER_API void* unit_get_ast ( compile_unit_t unit)

Definition at line 511 of file broker.c.

◆ unit_update()

CT_BROKER_API void unit_update ( compile_unit_t unit,
void *  ast,
tree_t tree 
)

Definition at line 519 of file broker.c.