2 * Memory Pool implementation logic.
8 #define BLOCK_GROWTH_SIZE (1024 * 1024 - sizeof(struct mp_block))
11 * The inner union is an approximation for C11's max_align_t, and the
12 * struct + offsetof computes _Alignof. This can all just be replaced
13 * with _Alignof(max_align_t) if/when C11 is part of the baseline.
14 * Note that _Alignof(X) need not be the same as sizeof(X); it's only
15 * required to be a (possibly trivial) factor. They are the same for
16 * most architectures, but m68k for example has only 2-byte alignment
17 * for its 4-byte and 8-byte types, so using sizeof would waste space.
19 * Add more types to the union if the current set is insufficient.
21 struct git_max_alignment
{
24 uintmax_t max_align_uintmax
;
25 void *max_align_pointer
;
28 #define GIT_MAX_ALIGNMENT offsetof(struct git_max_alignment, aligned)
31 * Allocate a new mp_block and insert it after the block specified in
32 * `insert_after`. If `insert_after` is NULL, then insert block at the
33 * head of the linked list.
35 static struct mp_block
*mem_pool_alloc_block(struct mem_pool
*pool
,
37 struct mp_block
*insert_after
)
41 pool
->pool_alloc
+= sizeof(struct mp_block
) + block_alloc
;
42 p
= xmalloc(st_add(sizeof(struct mp_block
), block_alloc
));
44 p
->next_free
= (char *)p
->space
;
45 p
->end
= p
->next_free
+ block_alloc
;
48 p
->next_block
= insert_after
->next_block
;
49 insert_after
->next_block
= p
;
51 p
->next_block
= pool
->mp_block
;
58 void mem_pool_init(struct mem_pool
*pool
, size_t initial_size
)
60 memset(pool
, 0, sizeof(*pool
));
61 pool
->block_alloc
= BLOCK_GROWTH_SIZE
;
64 mem_pool_alloc_block(pool
, initial_size
, NULL
);
67 void mem_pool_discard(struct mem_pool
*pool
, int invalidate_memory
)
69 struct mp_block
*block
, *block_to_free
;
71 block
= pool
->mp_block
;
74 block_to_free
= block
;
75 block
= block
->next_block
;
77 if (invalidate_memory
)
78 memset(block_to_free
->space
, 0xDD, ((char *)block_to_free
->end
) - ((char *)block_to_free
->space
));
83 pool
->mp_block
= NULL
;
87 void *mem_pool_alloc(struct mem_pool
*pool
, size_t len
)
89 struct mp_block
*p
= NULL
;
92 /* round up to a 'GIT_MAX_ALIGNMENT' alignment */
93 if (len
& (GIT_MAX_ALIGNMENT
- 1))
94 len
+= GIT_MAX_ALIGNMENT
- (len
& (GIT_MAX_ALIGNMENT
- 1));
97 pool
->mp_block
->end
- pool
->mp_block
->next_free
>= len
)
101 if (len
>= (pool
->block_alloc
/ 2))
102 return mem_pool_alloc_block(pool
, len
, pool
->mp_block
);
104 p
= mem_pool_alloc_block(pool
, pool
->block_alloc
, NULL
);
112 void *mem_pool_calloc(struct mem_pool
*pool
, size_t count
, size_t size
)
114 size_t len
= st_mult(count
, size
);
115 void *r
= mem_pool_alloc(pool
, len
);
120 char *mem_pool_strdup(struct mem_pool
*pool
, const char *str
)
122 size_t len
= strlen(str
) + 1;
123 char *ret
= mem_pool_alloc(pool
, len
);
125 return memcpy(ret
, str
, len
);
128 char *mem_pool_strndup(struct mem_pool
*pool
, const char *str
, size_t len
)
130 char *p
= memchr(str
, '\0', len
);
131 size_t actual_len
= (p
? p
- str
: len
);
132 char *ret
= mem_pool_alloc(pool
, actual_len
+1);
134 ret
[actual_len
] = '\0';
135 return memcpy(ret
, str
, actual_len
);
138 int mem_pool_contains(struct mem_pool
*pool
, void *mem
)
142 /* Check if memory is allocated in a block */
143 for (p
= pool
->mp_block
; p
; p
= p
->next_block
)
144 if ((mem
>= ((void *)p
->space
)) &&
145 (mem
< ((void *)p
->end
)))
151 void mem_pool_combine(struct mem_pool
*dst
, struct mem_pool
*src
)
155 /* Append the blocks from src to dst */
156 if (dst
->mp_block
&& src
->mp_block
) {
158 * src and dst have blocks, append
159 * blocks from src to dst.
162 while (p
->next_block
)
165 p
->next_block
= src
->mp_block
;
166 } else if (src
->mp_block
) {
168 * src has blocks, dst is empty.
170 dst
->mp_block
= src
->mp_block
;
172 /* src is empty, nothing to do. */
175 dst
->pool_alloc
+= src
->pool_alloc
;
177 src
->mp_block
= NULL
;