aboutsummaryrefslogtreecommitdiffstats
path: root/src/allocator.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2016-03-15 23:19:01 +0100
committerMattias Andrée <maandree@kth.se>2016-03-15 23:19:59 +0100
commitac0d3a625a5f0e2f81522b7d6d7ca6a6c3f158e2 (patch)
tree12933e1ae8fefbd8c0899d271b7cb35cfa9be3d7 /src/allocator.c
parentRemove unnecessary trim (diff)
downloadlibzahl-ac0d3a625a5f0e2f81522b7d6d7ca6a6c3f158e2.tar.gz
libzahl-ac0d3a625a5f0e2f81522b7d6d7ca6a6c3f158e2.tar.bz2
libzahl-ac0d3a625a5f0e2f81522b7d6d7ca6a6c3f158e2.tar.xz
Fix bug in libzahl_msb_nz_* and optimise and simplify libzahl_realloc
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'src/allocator.c')
-rw-r--r--src/allocator.c20
1 files changed, 7 insertions, 13 deletions
diff --git a/src/allocator.c b/src/allocator.c
index 7737046..80668f1 100644
--- a/src/allocator.c
+++ b/src/allocator.c
@@ -5,21 +5,15 @@
void
libzahl_realloc(z_t a, size_t need)
{
- size_t i, x;
+ size_t i, new_size = 1;
zahl_char_t *new;
- /* Find n such that n is a minimal power of 2 ≥ need. */
- if (likely((need & (~need + 1)) != need)) {
- need |= need >> 1;
- need |= need >> 2;
- need |= need >> 4;
- for (i = sizeof(need), x = 8; (i >>= 1); x <<= 1)
- need |= need >> x;
- need += 1;
+ new_size <<= i = libzahl_msb_nz_zu(need);
+ if (likely(new_size != need)) {
+ i += 1;
+ new_size <<= 1;
}
- i = libzahl_msb_nz_zu(need);
-
if (likely(libzahl_pool_n[i])) {
libzahl_pool_n[i]--;
new = libzahl_pool[i][libzahl_pool_n[i]];
@@ -27,12 +21,12 @@ libzahl_realloc(z_t a, size_t need)
zfree(a);
a->chars = new;
} else {
- a->chars = realloc(a->chars, need * sizeof(zahl_char_t));
+ a->chars = realloc(a->chars, new_size * sizeof(zahl_char_t));
if (unlikely(!a->chars)) {
if (!errno) /* sigh... */
errno = ENOMEM;
libzahl_failure(errno);
}
}
- a->alloced = need;
+ a->alloced = new_size;
}