|
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_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 More...
|
|
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 More...
|
|
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 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_t * | util_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) |
|
Utility functions for the runtime.