1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* dbus-mempool.h Memory pools
4 * Copyright (C) 2002 Red Hat, Inc.
6 * Licensed under the Academic Free License version 1.2
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 #include "dbus-mempool.h"
27 * @defgroup DBusMemPool memory pools
28 * @ingroup DBusInternals
29 * @brief DBusMemPool object
31 * Types and functions related to DBusMemPool. A memory pool is used
32 * to decrease memory fragmentation/overhead and increase speed for
33 * blocks of small uniformly-sized objects. The main point is to avoid
34 * the overhead of a malloc block for each small object, speed is
39 * @defgroup DBusMemPoolInternals Memory pool implementation details
40 * @ingroup DBusInternals
41 * @brief DBusMemPool implementation details
43 * The guts of DBusMemPool.
49 * typedef so DBusFreedElement struct can refer to itself.
51 typedef struct DBusFreedElement DBusFreedElement;
54 * struct representing an element on the free list.
55 * We just cast freed elements to this so we can
56 * make a list out of them.
58 struct DBusFreedElement
60 DBusFreedElement *next; /**< next element of the free list */
64 * The dummy size of the variable-length "elements"
65 * field in DBusMemBlock
67 #define ELEMENT_PADDING 4
70 * Typedef for DBusMemBlock so the struct can recursively
73 typedef struct DBusMemBlock DBusMemBlock;
76 * DBusMemBlock object represents a single malloc()-returned
77 * block that gets chunked up into objects in the memory pool.
81 DBusMemBlock *next; /**< next block in the list, which is already used up;
82 * only saved so we can free all the blocks
83 * when we free the mem pool.
86 int used_so_far; /**< bytes of this block already allocated as elements. */
88 unsigned char elements[ELEMENT_PADDING]; /**< the block data, actually allocated to required size */
92 * Internals fields of DBusMemPool
96 int element_size; /**< size of a single object in the pool */
97 int block_size; /**< size of most recently allocated block */
98 unsigned int zero_elements : 1; /**< whether to zero-init allocated elements */
100 DBusFreedElement *free_elements; /**< a free list of elements to recycle */
101 DBusMemBlock *blocks; /**< blocks of memory from malloc() */
107 * @addtogroup DBusMemPool
113 * @typedef DBusMemPool
115 * Opaque object representing a memory pool. Memory pools allow
116 * avoiding per-malloc-block memory overhead when allocating a lot of
117 * small objects that are all the same size. They are slightly
118 * faster than calling malloc() also.
122 * Creates a new memory pool, or returns #NULL on failure. Objects in
123 * the pool must be at least sizeof(void*) bytes each, due to the way
124 * memory pools work. To avoid creating 64 bit problems, this means at
125 * least 8 bytes on all platforms, unless you are 4 bytes on 32-bit
126 * and 8 bytes on 64-bit.
128 * @param element_size size of an element allocated from the pool.
129 * @param zero_elements whether to zero-initialize elements
130 * @returns the new pool or #NULL
133 _dbus_mem_pool_new (int element_size,
134 dbus_bool_t zero_elements)
138 pool = dbus_new0 (DBusMemPool, 1);
142 /* these assertions are equivalent but the first is more clear
143 * to programmers that see it fail.
145 _dbus_assert (element_size >= (int) sizeof (void*));
146 _dbus_assert (element_size >= (int) sizeof (DBusFreedElement));
148 pool->element_size = element_size;
149 pool->zero_elements = zero_elements != FALSE;
151 /* pick a size for the first block; it increases
152 * for each block we need to allocate. This is
153 * actually half the initial block size
154 * since _dbus_mem_pool_alloc() unconditionally
155 * doubles it prior to creating a new block.
157 pool->block_size = element_size * 8;
159 _dbus_assert ((pool->block_size %
160 pool->element_size) == 0);
166 * Frees a memory pool (and all elements allocated from it).
168 * @param pool the memory pool.
171 _dbus_mem_pool_free (DBusMemPool *pool)
175 block = pool->blocks;
176 while (block != NULL)
178 DBusMemBlock *next = block->next;
189 * Allocates an object from the memory pool.
190 * The object must be freed with _dbus_mem_pool_dealloc().
192 * @param pool the memory pool
193 * @returns the allocated object or #NULL if no memory.
196 _dbus_mem_pool_alloc (DBusMemPool *pool)
198 if (pool->free_elements)
200 DBusFreedElement *element = pool->free_elements;
202 pool->free_elements = pool->free_elements->next;
204 if (pool->zero_elements)
205 memset (element, '\0', pool->element_size);
213 if (pool->blocks == NULL ||
214 pool->blocks->used_so_far == pool->block_size)
216 /* Need a new block */
220 if (pool->block_size <= _DBUS_INT_MAX / 4) /* avoid overflow */
222 /* use a larger block size for our next block */
223 pool->block_size *= 2;
224 _dbus_assert ((pool->block_size %
225 pool->element_size) == 0);
228 alloc_size = sizeof (DBusMemBlock) - ELEMENT_PADDING + pool->block_size;
230 if (pool->zero_elements)
231 block = dbus_malloc0 (alloc_size);
233 block = dbus_malloc (alloc_size);
238 block->used_so_far = 0;
239 block->next = pool->blocks;
240 pool->blocks = block;
243 element = &pool->blocks->elements[pool->blocks->used_so_far];
245 pool->blocks->used_so_far += pool->element_size;
252 * Deallocates an object previously created with
253 * _dbus_mem_pool_alloc(). The previous object
254 * must have come from this same pool.
255 * @param pool the memory pool
256 * @param element the element earlier allocated.
259 _dbus_mem_pool_dealloc (DBusMemPool *pool,
262 DBusFreedElement *freed;
265 freed->next = pool->free_elements;
266 pool->free_elements = freed;
271 #ifdef DBUS_BUILD_TESTS
272 #include "dbus-test.h"
277 time_for_size (int size)
283 #define FREE_ARRAY_SIZE 512
284 #define N_ITERATIONS FREE_ARRAY_SIZE * 512
285 void *to_free[FREE_ARRAY_SIZE];
288 printf ("Timings for size %d\n", size);
290 printf (" malloc\n");
296 while (i < N_ITERATIONS)
298 to_free[j] = dbus_malloc (size);
299 _dbus_assert (to_free[j] != NULL); /* in a real app of course this is wrong */
303 if (j == FREE_ARRAY_SIZE)
306 while (j < FREE_ARRAY_SIZE)
308 dbus_free (to_free[j]);
320 printf (" created/destroyed %d elements in %g seconds\n",
321 N_ITERATIONS, (end - start) / (double) CLOCKS_PER_SEC);
325 printf (" mempools\n");
329 pool = _dbus_mem_pool_new (size, FALSE);
333 while (i < N_ITERATIONS)
335 to_free[j] = _dbus_mem_pool_alloc (pool);
336 _dbus_assert (to_free[j] != NULL); /* in a real app of course this is wrong */
340 if (j == FREE_ARRAY_SIZE)
343 while (j < FREE_ARRAY_SIZE)
345 _dbus_mem_pool_dealloc (pool, to_free[j]);
355 _dbus_mem_pool_free (pool);
359 printf (" created/destroyed %d elements in %g seconds\n",
360 N_ITERATIONS, (end - start) / (double) CLOCKS_PER_SEC);
362 printf (" zeroed malloc\n");
368 while (i < N_ITERATIONS)
370 to_free[j] = dbus_malloc0 (size);
371 _dbus_assert (to_free[j] != NULL); /* in a real app of course this is wrong */
375 if (j == FREE_ARRAY_SIZE)
378 while (j < FREE_ARRAY_SIZE)
380 dbus_free (to_free[j]);
392 printf (" created/destroyed %d elements in %g seconds\n",
393 N_ITERATIONS, (end - start) / (double) CLOCKS_PER_SEC);
395 printf (" zeroed mempools\n");
399 pool = _dbus_mem_pool_new (size, TRUE);
403 while (i < N_ITERATIONS)
405 to_free[j] = _dbus_mem_pool_alloc (pool);
406 _dbus_assert (to_free[j] != NULL); /* in a real app of course this is wrong */
410 if (j == FREE_ARRAY_SIZE)
413 while (j < FREE_ARRAY_SIZE)
415 _dbus_mem_pool_dealloc (pool, to_free[j]);
425 _dbus_mem_pool_free (pool);
429 printf (" created/destroyed %d elements in %g seconds\n",
430 N_ITERATIONS, (end - start) / (double) CLOCKS_PER_SEC);
434 * @ingroup DBusMemPoolInternals
435 * Unit test for DBusMemPool
436 * @returns #TRUE on success.
439 _dbus_mem_pool_test (void)
442 int element_sizes[] = { 4, 8, 16, 50, 124 };
445 while (i < _DBUS_N_ELEMENTS (element_sizes))
447 time_for_size (element_sizes[i]);
454 #endif /* DBUS_BUILD_TESTS */