Cthulhu  0.2.10
Cthulhu compiler collection
Global memory allocation

Default global memory allocator this is an intermediate layer to help with transitioning to pure arena allocation its recommended to avoid this for new code and to remove it from existing code. More...

Collaboration diagram for Global memory allocation:

Functions

CT_MEMORY_API arena_tget_global_arena (void)
 get the global memory arena More...
 
CT_MEMORY_API void init_global_arena (arena_t *arena)
 initialize the global memory arena More...
 
CT_MEMORY_API void init_gmp_arena (arena_t *arena)
 initialize gmp with a custom allocator More...
 

Detailed Description

Default global memory allocator this is an intermediate layer to help with transitioning to pure arena allocation its recommended to avoid this for new code and to remove it from existing code.

Function Documentation

◆ get_global_arena()

CT_MEMORY_API arena_t* get_global_arena ( void  )

get the global memory arena

Returns
the global memory arena

Definition at line 16 of file memory.c.

◆ init_global_arena()

CT_MEMORY_API void init_global_arena ( arena_t arena)

initialize the global memory arena

Warning
this should be called with care, as it will overwrite the current arena
Parameters
arenathe arena to initialize

Definition at line 21 of file memory.c.

◆ init_gmp_arena()

CT_MEMORY_API void init_gmp_arena ( arena_t arena)

initialize gmp with a custom allocator

Parameters
arenathe allocator to use

Definition at line 52 of file memory.c.