Cthulhu  0.2.10
Cthulhu compiler collection
memory.c
Go to the documentation of this file.
1 // SPDX-License-Identifier: LGPL-3.0-only
2 
3 #include "memory/memory.h"
4 
5 #include "arena/arena.h"
6 #include "base/panic.h"
7 
8 #include <gmp.h>
9 
13 
14 static arena_t *gGlobalArena = NULL;
15 
17 {
18  return gGlobalArena;
19 }
20 
22 {
23  CTASSERT(arena != NULL);
24 
25  gGlobalArena = arena;
26 }
27 
29 
30 static arena_t *gGmpArena = NULL;
31 
32 static void *ctu_gmp_malloc(size_t size)
33 {
34  return ARENA_MALLOC(size, "gmp", gGmpArena, gGmpArena);
35 }
36 
37 static void *ctu_gmp_realloc(void *ptr, size_t old_size, size_t new_size)
38 {
39  // mini-gmp gives us zero in some cases (-1 + 1) causes this
40  size_t old = old_size != 0 ? old_size : CT_ALLOC_SIZE_UNKNOWN;
41  return arena_realloc(ptr, new_size, old, gGmpArena);
42 }
43 
44 static void ctu_gmp_free(void *ptr, size_t size)
45 {
46  // mini-gmp doesnt handle free size and always gives us zero
47  size_t old = size != 0 ? size : CT_ALLOC_SIZE_UNKNOWN;
48  arena_free(ptr, old, gGmpArena);
49 }
50 
52 void init_gmp_arena(arena_t *arena)
53 {
54  CTASSERT(arena != NULL);
55 
56  gGmpArena = arena;
57  mp_set_memory_functions(ctu_gmp_malloc, ctu_gmp_realloc, ctu_gmp_free);
58 }
CT_NODISCARD size_t size
Definition: scan.h:128
#define STA_DECL
sal2 annotation on function implementations to copy annotations from the declaration
STA_DECL void init_gmp_arena(arena_t *arena)
initialize gmp with a custom allocator
Definition: memory.c:52
void init_global_arena(arena_t *arena)
initialize the global memory arena
Definition: memory.c:21
arena_t * get_global_arena(void)
get the global memory arena
Definition: memory.c:16
#define CT_ALLOC_SIZE_UNKNOWN
unknown allocation size constant when freeing or reallocating memory, this can be used as the size to...
Definition: arena.h:37
CT_NODISCARD CT_ARENA_API void * arena_realloc(STA_RELEASE void *ptr, size_t new_size, size_t old_size, arena_t *arena)
resize a memory allocation from a custom allocator
#define ARENA_MALLOC(size, name, parent, arena)
allocate memory from a custom allocator
Definition: arena.h:392
CT_ARENA_API void arena_free(STA_RELEASE void *ptr, size_t size, arena_t *arena)
release memory from a custom allocator
#define CTASSERT(expr)
assert a condition, prints the condition as a message
Definition: panic.h:130
an allocator object
Definition: arena.h:86