14 static tree_t *tree_module_new(
const node_t *node,
const char *name,
17 size_t decls,
const size_t *sizes,
25 self->parent = parent;
32 for (
size_t i = 0; i < decls; i++)
44 return tree_module_new(
56 return tree_module_new(node, name, parent, parent->
cookie, parent->
reports, decls, sizes, parent->
arena);
66 if (map == NULL)
return NULL;
74 if (self->parent != NULL)
CT_LOCAL tree_t * tree_decl(tree_kind_t kind, const node_t *node, const tree_t *type, const char *name, tree_quals_t quals)
#define TREE_EXPECT(SELF, KIND)
CT_NODISCARD CT_STD_API map_t * map_optimal(size_t size, hash_info_t info, arena_t *arena)
create a new map with an optimal size
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_PUREFN CT_STD_API void * map_get(const map_t *map, const void *key)
get a value from a map
#define ARENA_IDENTIFY(ptr, name, parent, arena)
rename and reparent a pointer in a custom allocator
#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
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
map_t * tree_module_tag(const tree_t *self, size_t tag)
void * tree_module_find(tree_t *sema, size_t tag, const char *name, tree_t **module)
search for a declaration in a module also returns the module that the declaration was found in
tree_cookie_t * tree_get_cookie(tree_t *sema)
return a resolution cookie
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)
void * tree_module_set(tree_t *self, size_t tag, const char *name, void *value)
set a declaration in the current module
void * tree_module_get(tree_t *self, size_t tag, const char *name)
recursively search for a declaration in a module
CT_STD_API const hash_info_t kTypeInfoString
type information for a c style string
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_of(size_t len, arena_t *arena)
create a new vector with a specified length
CT_STD_API void vector_set(vector_t *vector, size_t index, void *value)
set a value in a vector
CT_NODISCARD CT_PUREFN CT_STD_API size_t vector_len(const vector_t *vector)
get the length of a vector
a position in a source file