1 #ifndef EL__UTIL_MEMORY_H
2 #define EL__UTIL_MEMORY_H
4 /* If defined, we'll crash if ALLOC_MAXTRIES is attained,
5 * if not defined, we'll try to continue. */
6 /* #define CRASH_IF_ALLOC_MAXTRIES */
8 /* Max. number of retry in case of memory allocation failure. */
9 #define ALLOC_MAXTRIES 3
11 /* Delay in seconds between each alloc try. */
14 #define fmem_alloc(x) mem_alloc(x)
15 #define fmem_free(x) mem_free(x)
18 /* Cygwin wants some size_t definition here... let's try to make it happy
20 #include <sys/types.h>
24 void *mem_mmap_alloc(size_t size
);
25 void mem_mmap_free(void *p
, size_t size
);
26 void *mem_mmap_realloc(void *p
, size_t old_size
, size_t new_size
);
28 #define mem_mmap_alloc(x) mem_alloc(x)
29 #define mem_mmap_free(x, y) mem_free(x)
30 #define mem_mmap_realloc(x, y, z) mem_realloc(x, z)
36 #include "util/memdebug.h"
38 #define mem_alloc(x) debug_mem_alloc(__FILE__, __LINE__, x)
39 #define mem_calloc(x, y) debug_mem_calloc(__FILE__, __LINE__, x, y)
40 #define mem_free(x) debug_mem_free(__FILE__, __LINE__, x)
41 #define mem_realloc(x, y) debug_mem_realloc(__FILE__, __LINE__, x, y)
45 #ifndef CONFIG_FASTMEM
47 void *mem_alloc(size_t);
48 void *mem_calloc(size_t, size_t);
49 void mem_free(void *);
50 void *mem_realloc(void *, size_t);
56 /* TODO: For enhanced portability, checks at configure time:
58 * realloc(NULL, 0) -> NULL
59 * realloc(p, 0) <-> free(p)
60 * realloc(NULL, n) <-> malloc(n)
61 * Some old implementations may not respect these rules.
62 * For these we need some replacement functions.
63 * This should not be an issue on most modern systems.
66 # define mem_alloc(size) malloc(size)
67 # define mem_calloc(count, size) calloc(count, size)
68 # define mem_free(p) free(p)
69 # define mem_realloc(p, size) realloc(p, size)
72 /* fmem_* functions should be use for allocation and freeing of memory
74 * See alloca(3) manpage. */
84 #define fmem_alloc(x) alloca(x)
87 #else /* HAVE_ALLOCA */
89 #define fmem_alloc(x) mem_alloc(x)
90 #define fmem_free(x) mem_free(x)
92 #endif /* HAVE_ALLOCA */
94 #endif /* CONFIG_FASTMEM */
96 #endif /* DEBUG_MEMLEAK */
99 /* Granular memory allocation. */
101 /* The ``old'' style granularity. XXX: Must be power of 2 */
102 #define ALLOC_GR 0x100
104 #include <string.h> /* for memset() */
106 /* The granularity used by the aligned memory functions below must be a mask
107 * with all bits set from but not including the most significant bit and down.
108 * So if an alignment of 256 is wanted use 0xFF. */
110 #define ALIGN_MEMORY_SIZE(x, gr) (((x) + (gr)) & ~(gr))
115 unsigned char *file
, int line
,
117 void **ptr
, size_t old
, size_t new, size_t objsize
, size_t mask
)
119 size_t newsize
= ALIGN_MEMORY_SIZE(new, mask
);
120 size_t oldsize
= ALIGN_MEMORY_SIZE(old
, mask
);
122 if (newsize
> oldsize
) {
129 data
= debug_mem_realloc(file
, line
, *ptr
, newsize
);
131 data
= mem_realloc(*ptr
, newsize
);
133 if (!data
) return NULL
;
135 *ptr
= (void *) data
;
136 memset(&data
[oldsize
], 0, newsize
- oldsize
);
143 #define mem_align_alloc(ptr, old, new, obj, mask) \
144 mem_align_alloc__(__FILE__, __LINE__, (void **) ptr, old, new, sizeof(obj), mask)
146 #define mem_align_alloc(ptr, old, new, obj, mask) \
147 mem_align_alloc__((void **) ptr, old, new, sizeof(obj), mask)
151 /* Maybe-free macros */
152 /* TODO: Think about making what they do more obvious in their identifier, they
153 * could be obfuscating their users a little for the newcomers otherwise. */
155 #define mem_free_set(x, v) do { if (*(x)) mem_free(*(x)); *(x) = (v); } while (0)
156 #define mem_free_if(x) do { register void *p = (x); if (p) mem_free(p); } while (0)
159 /* This may help to find bugs. */
161 #define mem_free_if(x) mem_free_set(&x, NULL)
165 /* This is out of place, but there is no better place. */
168 #define intdup(i) intdup__(__FILE__, __LINE__, i)
170 #define intdup(i) intdup__(i)
176 unsigned char *file
, int line
,
181 int *p
= debug_mem_alloc(file
, line
, sizeof(*p
));
183 int *p
= mem_alloc(sizeof(*p
));