Cthulhu  0.2.10
Cthulhu compiler collection
language_t Struct Reference

a language driver support capabilities More...

#include <broker.h>

Collaboration diagram for language_t:

Data Fields

module_info_t info
 common information about the language More...
 
language_info_t builtin
 builtin module configuration More...
 
lang_repr_tree_t repr_tree
 convert a tree node to a string More...
 
const char *const * exts
 the default file extensions this language should be used for More...
 
size_t context_size
 the size of the scan context for this language More...
 
size_t ast_size
 the size of an ast node for this language More...
 
language_create_t fn_create
 called once at startup More...
 
language_destroy_t fn_destroy
 called at shutdown More...
 
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 More...
 
language_postparse_t fn_postparse
 called after a file is parsed should produce translation units from a scanned ast More...
 
const scan_callbacks_tscanner
 callbacks for the parser More...
 
language_pass_t fn_passes [ePassCount]
 an array of passes to run on each translation unit More...
 

Detailed Description

a language driver support capabilities

Definition at line 142 of file broker.h.

Field Documentation

◆ ast_size

size_t language_t::ast_size

the size of an ast node for this language

Definition at line 161 of file broker.h.

◆ builtin

language_info_t language_t::builtin

builtin module configuration

Definition at line 148 of file broker.h.

◆ context_size

size_t language_t::context_size

the size of the scan context for this language

Definition at line 158 of file broker.h.

◆ exts

const char* const* language_t::exts

the default file extensions this language should be used for

Note
this is a null terminated array

Definition at line 155 of file broker.h.

◆ fn_create

language_create_t language_t::fn_create

called once at startup

Definition at line 164 of file broker.h.

◆ fn_destroy

language_destroy_t language_t::fn_destroy

called at shutdown

Definition at line 167 of file broker.h.

◆ fn_passes

language_pass_t language_t::fn_passes[ePassCount]

an array of passes to run on each translation unit

Definition at line 181 of file broker.h.

◆ fn_postparse

language_postparse_t language_t::fn_postparse

called after a file is parsed should produce translation units from a scanned ast

Definition at line 175 of file broker.h.

◆ fn_preparse

language_preparse_t language_t::fn_preparse

called before a file is parsed should return a pointer to a context that will be put into the scanner

Definition at line 171 of file broker.h.

◆ info

module_info_t language_t::info

common information about the language

Definition at line 145 of file broker.h.

◆ repr_tree

lang_repr_tree_t language_t::repr_tree

convert a tree node to a string

Definition at line 151 of file broker.h.

◆ scanner

const scan_callbacks_t* language_t::scanner

callbacks for the parser

Definition at line 178 of file broker.h.


The documentation for this struct was generated from the following file: