1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-09-29 01:49:28 +02:00
libunwind-eh_elf/src/mi/mempool.c
Tommi Rantala e6edad069c Use GCC __BIGGEST_ALIGNMENT__ for sos-pool MAX_ALIGN
Use the __BIGGEST_ALIGNMENT__ macro provided by GCC for sos_alloc()
allocation alignment. The macro gives ``the largest alignment ever used
for any data type on the target machine you are compiling for.''

__BIGGEST_ALIGNMENT__ also has some other nice properties, e.g. it is
power-of-two on all architectures (note that on i386, sizeof(long
double) = 12), and on some architectures (e.g. SuperH) the alignment
requirement can be lower than sizeof(long double).
2012-09-28 13:52:21 +03:00

183 lines
4.4 KiB
C

/* libunwind - a platform-independent unwind library
Copyright (C) 2002-2003, 2005 Hewlett-Packard Co
Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
This file is part of libunwind.
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
#include "libunwind_i.h"
/* From GCC docs: ``Gcc also provides a target specific macro
* __BIGGEST_ALIGNMENT__, which is the largest alignment ever used for any data
* type on the target machine you are compiling for.'' */
#ifdef __BIGGEST_ALIGNMENT__
# define MAX_ALIGN __BIGGEST_ALIGNMENT__
#else
# define MAX_ALIGN (sizeof (long double))
#endif
static char sos_memory[SOS_MEMORY_SIZE];
static char *sos_memp;
static size_t pg_size;
HIDDEN void *
sos_alloc (size_t size)
{
char *mem;
#ifdef HAVE_CMPXCHG
char *old_mem;
size = UNW_ALIGN(size, MAX_ALIGN);
if (!sos_memp)
cmpxchg_ptr (&sos_memp, 0, sos_memory);
do
{
old_mem = sos_memp;
mem = (char *) UNW_ALIGN((unsigned long) old_mem, MAX_ALIGN);
mem += size;
assert (mem < sos_memory + sizeof (sos_memory));
}
while (!cmpxchg_ptr (&sos_memp, old_mem, mem));
#else
static define_lock (sos_lock);
intrmask_t saved_mask;
size = UNW_ALIGN(size, MAX_ALIGN);
lock_acquire (&sos_lock, saved_mask);
{
if (!sos_memp)
sos_memp = sos_memory;
mem = (char *) UNW_ALIGN((unsigned long) sos_memp, MAX_ALIGN);
mem += size;
assert (mem < sos_memory + sizeof (sos_memory));
sos_memp = mem;
}
lock_release (&sos_lock, saved_mask);
#endif
return mem;
}
/* Must be called while holding the mempool lock. */
static void
free_object (struct mempool *pool, void *object)
{
struct object *obj = object;
obj->next = pool->free_list;
pool->free_list = obj;
++pool->num_free;
}
static void
add_memory (struct mempool *pool, char *mem, size_t size, size_t obj_size)
{
char *obj;
for (obj = mem; obj <= mem + size - obj_size; obj += obj_size)
free_object (pool, obj);
}
static void
expand (struct mempool *pool)
{
size_t size;
char *mem;
size = pool->chunk_size;
GET_MEMORY (mem, size);
if (!mem)
{
size = (pool->obj_size + pg_size - 1) & -pg_size;
GET_MEMORY (mem, size);
if (!mem)
{
/* last chance: try to allocate one object from the SOS memory */
size = pool->obj_size;
mem = sos_alloc (size);
}
}
add_memory (pool, mem, size, pool->obj_size);
}
HIDDEN void
mempool_init (struct mempool *pool, size_t obj_size, size_t reserve)
{
if (pg_size == 0)
pg_size = getpagesize ();
memset (pool, 0, sizeof (*pool));
lock_init (&pool->lock);
/* round object-size up to integer multiple of MAX_ALIGN */
obj_size = UNW_ALIGN(obj_size, MAX_ALIGN);
if (!reserve)
{
reserve = pg_size / obj_size / 4;
if (!reserve)
reserve = 16;
}
pool->obj_size = obj_size;
pool->reserve = reserve;
pool->chunk_size = (2*reserve*obj_size + pg_size - 1) & -pg_size;
expand (pool);
}
HIDDEN void *
mempool_alloc (struct mempool *pool)
{
intrmask_t saved_mask;
struct object *obj;
lock_acquire (&pool->lock, saved_mask);
{
if (pool->num_free <= pool->reserve)
expand (pool);
assert (pool->num_free > 0);
--pool->num_free;
obj = pool->free_list;
pool->free_list = obj->next;
}
lock_release (&pool->lock, saved_mask);
return obj;
}
HIDDEN void
mempool_free (struct mempool *pool, void *object)
{
intrmask_t saved_mask;
lock_acquire (&pool->lock, saved_mask);
{
free_object (pool, object);
}
lock_release (&pool->lock, saved_mask);
}