This group discusses the functions that provide memory pool management. More...
Typedefs | |
typedef struct _Eina_Mempool | Eina_Mempool |
The opaque type for the mempool structure. | |
typedef struct _Eina_Mempool_Backend | Eina_Mempool_Backend |
The opaque type for the mempool backend type. | |
typedef void(* | Eina_Mempool_Repack_Cb) (void *dst, void *src, void *data) |
The callback type which is called when the mempool "repacks" its data. More... | |
Functions | |
EINA_API Eina_Mempool * | eina_mempool_add (const char *name, const char *context, const char *options,...) |
Creates a new mempool of the given type. More... | |
EINA_API void | eina_mempool_del (Eina_Mempool *mp) |
Deletes the given mempool. More... | |
static void * | eina_mempool_realloc (Eina_Mempool *mp, void *element, unsigned int size) |
Re-allocates an amount memory by the given mempool. More... | |
static void * | eina_mempool_malloc (Eina_Mempool *mp, unsigned int size) |
Allocates memory using the given mempool. More... | |
static void * | eina_mempool_malloc_near (Eina_Mempool *mp, void *after, void *before, unsigned int size) |
Allocates memory in the given mempool using locality hint to improve future memory access use. More... | |
static void * | eina_mempool_calloc (Eina_Mempool *mp, unsigned int size) |
Allocates and zeros memory using the given mempool. More... | |
static void | eina_mempool_free (Eina_Mempool *mp, void *element) |
Frees resources previously allocated by the given mempool. More... | |
EINA_API void | eina_mempool_repack (Eina_Mempool *mp, Eina_Mempool_Repack_Cb cb, void *data) |
Repacks the objects in the mempool. More... | |
EINA_API void | eina_mempool_gc (Eina_Mempool *mp) |
Runs a garbage collection cycle. More... | |
static Eina_Bool | eina_mempool_from (Eina_Mempool *mp, void *element) |
Check if a pointer is a valid element from the mempool. More... | |
EINA_API void | eina_mempool_statistics (Eina_Mempool *mp) |
Has the backend update its internal statistics. More... | |
static Eina_Iterator * | eina_mempool_iterator_new (Eina_Mempool *mp) |
Provide an iterator to walk all allocated elements from a specified mempool. More... | |
EINA_API Eina_Bool | eina_mempool_register (Eina_Mempool_Backend *be) |
Registers the given memory pool backend. More... | |
EINA_API void | eina_mempool_unregister (Eina_Mempool_Backend *be) |
Unregisters the given memory pool backend. More... | |
static unsigned int | eina_mempool_alignof (unsigned int size) |
Computes the alignment that would be used when allocating a object of size size . More... | |
Variables | |
EINA_API Eina_Error | EINA_ERROR_NOT_MEMPOOL_MODULE |
This group discusses the functions that provide memory pool management.
Several mempools are available:
chained_pool:
It is the default one. It allocates a big chunk of memory with malloc() and splits the result into chunks of the requested size that are pushed inside a stack. When requested, it takes this pointer from the stack to give them to whoever wants them. pass_through:
it just call malloc() and free(). It may be faster on some computers than using our own allocators (like having a huge L2 cache, over 4MB). one_big:
It calls malloc() just one time for the requested number of items. This is useful when you know in advance how many objects of some type live during the life of the mempool. Eina_Mempool_Repack_Cb |
The callback type which is called when the mempool "repacks" its data.
I.e. moves it around to optimize the way it is stored in memory. This is useful to improve data locality and to free internal pools back to the OS.
EINA_API Eina_Mempool * eina_mempool_add | ( | const char * | name, |
const char * | context, | ||
const char * | options, | ||
... | |||
) |
Creates a new mempool of the given type.
[in] | name | Name of the mempool kind to use. |
[in] | context | Identifier of the mempool created (for debug purposes). |
[in] | options | Unused. Use the variable arguments list instead to pass options to the mempool. |
[in] | ... | Additional options to pass to the allocator; depends entirely on the type of mempool ("int pool size" for chained and "int item_size" for one_big. |
References DBG, and EINA_SAFETY_ON_NULL_RETURN_VAL.
Referenced by eina_cow_add().
EINA_API void eina_mempool_del | ( | Eina_Mempool * | mp | ) |
Deletes the given mempool.
[in] | mp | The mempool to delete |
References DBG, and EINA_SAFETY_ON_NULL_RETURN.
Referenced by eina_cow_del().
|
inlinestatic |
Re-allocates an amount memory by the given mempool.
[in] | mp | The mempool |
[in] | element | The element to re-allocate |
[in] | size | The size in bytes to re-allocate |
element
with size
bytes using the mempool mp
. If not used anymore, the data must be freed with eina_mempool_free(). mp
.
|
inlinestatic |
Allocates memory using the given mempool.
[in] | mp | The mempool |
[in] | size | The size in bytes to allocate |
size
bytes using the mempool mp
. If not used anymore, the data must be freed with eina_mempool_free(). mp
.Referenced by eina_cow_write(), eina_quadtree_add(), eina_rectangle_new(), eina_rectangle_pool_request(), eina_simple_xml_attribute_new(), eina_simple_xml_node_load(), eina_simple_xml_node_tag_new(), eina_value_array_new(), eina_value_hash_new(), eina_value_list_new(), eina_value_new(), and eina_value_struct_new().
|
inlinestatic |
Allocates memory in the given mempool using locality hint to improve future memory access use.
[in] | mp | The mempool |
[in] | after | Hint to the nearest pointer after which to try find an empty spot. |
[in] | before | Hint to the nearest pointer before which to try find an empty spot. |
[in] | size | The size in bytes to allocate |
after
and before
.This function is to be used to improve cache locality of structure that are likely to be used one after another. An example of this use would be Eina_List.
size
bytes using the mempool mp
. If not used anymore, the data must be freed with eina_mempool_free(). after
and before
must be either NULL
or allocated by the same mempool mp
. They are hint and if no space near them is found, memory will be allocated without locality improvement. mp
.
|
inlinestatic |
Allocates and zeros memory using the given mempool.
[in] | mp | The mempool |
[in] | size | The size in bytes to allocate |
This function allocates, zeroes, and returns size
bytes using the mempool mp
. If not used anymore, the data must be freed with eina_mempool_free().
mp
.Referenced by eina_promise_continue_new(), and eina_promise_new().
|
inlinestatic |
Frees resources previously allocated by the given mempool.
[in] | mp | The mempool |
[in] | element | The data to free |
This function frees element
allocated by mp
. element
must have been obtained from eina_mempool_malloc(), eina_mempool_calloc(), or eina_mempool_realloc().
mp
.Referenced by edje_edit_part_del(), eina_cow_free(), eina_promise_all_array(), eina_promise_all_iterator(), eina_quadtree_del(), eina_quadtree_free(), eina_rectangle_free(), eina_rectangle_pool_free(), eina_rectangle_pool_release(), eina_simple_xml_attribute_free(), eina_value_array_new(), eina_value_free(), eina_value_hash_new(), eina_value_list_new(), eina_value_new(), and eina_value_struct_new().
EINA_API void eina_mempool_repack | ( | Eina_Mempool * | mp, |
Eina_Mempool_Repack_Cb | cb, | ||
void * | data | ||
) |
Repacks the objects in the mempool.
[in] | mp | The mempool |
[in] | cb | A callback to update the pointers the objects with their new location |
[in] | data | Data to pass as third argument to cb |
References DBG, and EINA_SAFETY_ON_NULL_RETURN.
EINA_API void eina_mempool_gc | ( | Eina_Mempool * | mp | ) |
Runs a garbage collection cycle.
[in] | mp | The mempool |
References DBG, and EINA_SAFETY_ON_NULL_RETURN.
|
inlinestatic |
Check if a pointer is a valid element from the mempool.
[in] | mp | The mempool |
[in] | element | The data to free |
EINA_API void eina_mempool_statistics | ( | Eina_Mempool * | mp | ) |
Has the backend update its internal statistics.
[in] | mp | The mempool |
References DBG, and EINA_SAFETY_ON_NULL_RETURN.
|
inlinestatic |
Provide an iterator to walk all allocated elements from a specified mempool.
[in] | mp | The mempool |
NULL
if it is not possible to iterate over the mempool, a valid iterator otherwise.EINA_API Eina_Bool eina_mempool_register | ( | Eina_Mempool_Backend * | be | ) |
Registers the given memory pool backend.
[in] | be | The backend |
References DBG, eina_hash_add(), EINA_SAFETY_ON_NULL_RETURN_VAL, and _Eina_Mempool_Backend::name.
EINA_API void eina_mempool_unregister | ( | Eina_Mempool_Backend * | be | ) |
Unregisters the given memory pool backend.
[in] | be | The backend |
References DBG, eina_hash_del(), EINA_SAFETY_ON_NULL_RETURN, and _Eina_Mempool_Backend::name.
|
inlinestatic |
Computes the alignment that would be used when allocating a object of size size
.
[in] | size |
size
. References EINA_UNLIKELY.
Referenced by eina_cow_add().