Cthulhu  0.2.10
Cthulhu compiler collection
Driver utility functions

Utility functions for the runtime. More...

Collaboration diagram for Driver utility functions:

Data Structures

struct  search_t
 
struct  decl_search_t
 

Functions

CT_UTIL_API void * util_select_decl (tree_t *sema, search_t search, const char *name)
 search for a declaration by name in a set of tags More...
 
CT_UTIL_API tree_tutil_search_namespace (tree_t *sema, search_t search, const node_t *node, const vector_t *path, bool *is_imported)
 search for a namespace given a path, ignoring the last element in the path More...
 
CT_UTIL_API tree_tutil_search_path (tree_t *sema, const decl_search_t *search, const node_t *node, vector_t *path)
 search for a decl given a path More...
 
CT_UTIL_API tree_tutil_search_qualified (tree_t *sema, const decl_search_t *search, const node_t *node, const char *mod, const char *name)
 search for a decl inside a module More...
 
CT_UTIL_API bool util_eval_digit (mpz_t value, const tree_t *expr)
 evaluate a digit expression More...
 
CT_BEGIN_API CT_UTIL_API text_t util_text_escape (logger_t *reports, const node_t *node, STA_READS(length) const char *text, size_t length, arena_t *arena)
 escape a string literal into a string More...
 
CT_UTIL_API bool util_text_has_escapes (STA_READS(length) const char *text, size_t length)
 
CT_BEGIN_API CT_UTIL_API bool util_types_equal (const tree_t *lhs, const tree_t *rhs)
 compare two types for strict equality compares two types for exact equality, does not follow typedefs More...
 
CT_UTIL_API bool util_types_comparable (tree_cookie_t *cookie, const tree_t *lhs, const tree_t *rhs)
 query two types for comparability in binary logic operations More...
 
CT_UTIL_API tree_tutil_type_cast (const tree_t *dst, tree_t *expr)
 attempt to cast an expression to a type More...
 
CT_UTIL_API bool util_length_bounded (size_t length)
 check if the length of an array is bounded More...
 
CT_UTIL_API const char * util_length_name (size_t length)
 get the pretty name of a length return either the length as a string or "unbounded" if the length is unbounded More...
 
CT_UTIL_API bool util_type_is_aggregate (const tree_t *type)
 
CT_UTIL_API bool util_type_is_pointer (const tree_t *type)
 
CT_UTIL_API bool util_type_is_array (const tree_t *type)
 
CT_UTIL_API bool util_type_is_opaque (const tree_t *type)
 
CT_UTIL_API bool util_type_is_reference (const tree_t *type)
 
CT_UTIL_API bool util_type_is_digit (const tree_t *type)
 

Detailed Description

Utility functions for the runtime.

Function Documentation

◆ util_eval_digit()

CT_UTIL_API bool util_eval_digit ( mpz_t  value,
const tree_t expr 
)

evaluate a digit expression

Parameters
valuethe value to set
exprthe expression to evaluate
Returns
true if the expression was evaluated, false otherwise

Definition at line 293 of file util.c.

◆ util_length_bounded()

CT_UTIL_API bool util_length_bounded ( size_t  length)

check if the length of an array is bounded

Parameters
lengththe length of the array
Returns
true if the length is bounded, false otherwise

Definition at line 312 of file util.c.

◆ util_length_name()

CT_UTIL_API const char* util_length_name ( size_t  length)

get the pretty name of a length return either the length as a string or "unbounded" if the length is unbounded

Parameters
lengththe length to get the name of
Returns
the name of the length

Definition at line 317 of file util.c.

◆ util_search_namespace()

CT_UTIL_API tree_t* util_search_namespace ( tree_t sema,
search_t  search,
const node_t node,
const vector_t path,
bool *  is_imported 
)

search for a namespace given a path, ignoring the last element in the path

Parameters
semathe sema context
searchthe search options
nodethe node to report errors on
paththe path to search
is_importedwhether the namespace was imported
Returns
the namespace if found, an error otherwise

Definition at line 66 of file query.c.

◆ util_search_path()

CT_UTIL_API tree_t* util_search_path ( tree_t sema,
const decl_search_t search,
const node_t node,
vector_t path 
)

search for a decl given a path

Parameters
semathe sema context
searchthe search options
nodethe node to report errors on
paththe path to search
Returns
tree_t* the decl if found, an error otherwise

Definition at line 92 of file query.c.

◆ util_search_qualified()

CT_UTIL_API tree_t* util_search_qualified ( tree_t sema,
const decl_search_t search,
const node_t node,
const char *  mod,
const char *  name 
)

search for a decl inside a module

Parameters
semathe sema context
searchthe search options
nodethe node to report errors on
modthe module to search in
namethe name of the decl
Returns
tree_t*

Definition at line 125 of file query.c.

◆ util_select_decl()

CT_UTIL_API void* util_select_decl ( tree_t sema,
search_t  search,
const char *  name 
)

search for a declaration by name in a set of tags

Parameters
semathe sema context
searchthe tags ids to search
namethe name of the decl
Returns
the decl if found, an error otherwise

Definition at line 16 of file util.c.

◆ util_text_escape()

CT_BEGIN_API CT_UTIL_API text_t util_text_escape ( logger_t reports,
const node_t node,
STA_READS(length) const char *  text,
size_t  length,
arena_t arena 
)

escape a string literal into a string

Parameters
reportsthe reports to use
nodethe node to report errors on
textthe text to escape
lengththe length of the text
arenathe arena to allocate the escaped text in
Returns
the escaped text

◆ util_text_has_escapes()

CT_UTIL_API bool util_text_has_escapes ( STA_READS(length) const char *  text,
size_t  length 
)

◆ util_type_cast()

CT_UTIL_API tree_t* util_type_cast ( const tree_t dst,
tree_t expr 
)

attempt to cast an expression to a type

Parameters
dstthe desired type
exprthe expression to try and cast
Returns
tree_t* the casted expression or tree_error if the cast could not be done

Definition at line 212 of file util.c.

◆ util_type_is_aggregate()

CT_UTIL_API bool util_type_is_aggregate ( const tree_t type)

Definition at line 323 of file util.c.

◆ util_type_is_array()

CT_UTIL_API bool util_type_is_array ( const tree_t type)

Definition at line 335 of file util.c.

◆ util_type_is_digit()

CT_UTIL_API bool util_type_is_digit ( const tree_t type)

Definition at line 353 of file util.c.

◆ util_type_is_opaque()

CT_UTIL_API bool util_type_is_opaque ( const tree_t type)

Definition at line 341 of file util.c.

◆ util_type_is_pointer()

CT_UTIL_API bool util_type_is_pointer ( const tree_t type)

Definition at line 329 of file util.c.

◆ util_type_is_reference()

CT_UTIL_API bool util_type_is_reference ( const tree_t type)

Definition at line 347 of file util.c.

◆ util_types_comparable()

CT_UTIL_API bool util_types_comparable ( tree_cookie_t cookie,
const tree_t lhs,
const tree_t rhs 
)

query two types for comparability in binary logic operations

Parameters
lhsthe left hand side type
rhsthe right hand side type
Returns
true if the types are comparable, false otherwise

Definition at line 69 of file util.c.

◆ util_types_equal()

CT_BEGIN_API CT_UTIL_API bool util_types_equal ( const tree_t lhs,
const tree_t rhs 
)

compare two types for strict equality compares two types for exact equality, does not follow typedefs

Parameters
lhsthe left hand side type
rhsthe right hand side type
Returns
true if the types are equal, false otherwise

Definition at line 33 of file util.c.