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 "setup/memory.h"
4 #include "setup/setup.h"
5 
6 #include "arena/arena.h"
7 #include "core/macros.h"
8 
9 #include <stdlib.h>
10 
12 
13 static void *default_malloc(size_t size, void *user)
14 {
15  CT_UNUSED(user);
16 
17  return malloc(size);
18 }
19 
20 static void *default_realloc(void *ptr, size_t new_size, size_t old_size, void *user)
21 {
22  CT_UNUSED(user);
23  CT_UNUSED(old_size);
24 
25  return realloc(ptr, new_size);
26 }
27 
28 static void default_free(void *ptr, size_t size, void *user)
29 {
30  CT_UNUSED(user);
31  CT_UNUSED(size);
32 
33  free(ptr);
34 }
35 
36 static arena_t gDefaultAlloc = {
37  .name = "default global allocator",
38  .fn_malloc = default_malloc,
39  .fn_realloc = default_realloc,
40  .fn_free = default_free
41 };
42 
44 {
45  return &gDefaultAlloc;
46 }
CT_NODISCARD size_t size
Definition: scan.h:128
#define CT_UNUSED(x)
mark a variable as unused
Definition: macros.h:46
arena_t * ctu_default_alloc(void)
get the default allocator
Definition: memory.c:43
an allocator object
Definition: arena.h:86
const char * name
the name of the allocator
Definition: arena.h:88