ucx/mempool.c

Sat, 21 Dec 2013 12:31:31 +0100

author
Olaf Wintermann <olaf.wintermann@gmail.com>
date
Sat, 21 Dec 2013 12:31:31 +0100
changeset 158
81d580042da1
parent 141
c466e2a6cbd0
child 177
11ad03783baf
permissions
-rw-r--r--

Added allocator to mempool struct + fixed suncc.mk

olaf@13 1 /*
universe@103 2 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
olaf@13 3 *
universe@103 4 * Copyright 2013 Olaf Wintermann. All rights reserved.
universe@103 5 *
universe@103 6 * Redistribution and use in source and binary forms, with or without
universe@103 7 * modification, are permitted provided that the following conditions are met:
universe@103 8 *
universe@103 9 * 1. Redistributions of source code must retain the above copyright
universe@103 10 * notice, this list of conditions and the following disclaimer.
universe@103 11 *
universe@103 12 * 2. Redistributions in binary form must reproduce the above copyright
universe@103 13 * notice, this list of conditions and the following disclaimer in the
universe@103 14 * documentation and/or other materials provided with the distribution.
universe@103 15 *
universe@103 16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
universe@103 17 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
universe@103 18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
universe@103 19 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
universe@103 20 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
universe@103 21 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
universe@103 22 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
universe@103 23 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
universe@103 24 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
universe@103 25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
universe@103 26 * POSSIBILITY OF SUCH DAMAGE.
olaf@13 27 */
olaf@13 28
olaf@13 29 #include <stdlib.h>
olaf@13 30 #include <string.h>
olaf@13 31 #include <stdio.h>
universe@95 32 #ifdef __cplusplus
universe@95 33 #define __STDC_FORMAT_MACROS
universe@95 34 #endif
universe@75 35 #include <inttypes.h>
olaf@13 36
olaf@17 37 #include "mempool.h"
olaf@13 38
universe@138 39 /** Capsule for destructible memory chunks. */
olaf@13 40 typedef struct {
universe@138 41 /** The destructor for the memory chunk. */
olaf@13 42 ucx_destructor destructor;
universe@138 43 /**
universe@138 44 * First byte of the memory chunk.
universe@138 45 * Note, that the address <code>&amp;c</code> is also the address
universe@138 46 * of the whole memory chunk.
universe@138 47 */
olaf@13 48 char c;
olaf@13 49 } ucx_memchunk;
olaf@13 50
universe@138 51 /** Capsule for data and its destructor. */
olaf@13 52 typedef struct {
universe@138 53 /** The destructor for the data. */
olaf@13 54 ucx_destructor destructor;
universe@138 55 /** A pointer to the data. */
olaf@13 56 void *ptr;
olaf@13 57 } ucx_regdestr;
olaf@13 58
olaf@131 59 UCX_EXTERN void ucx_mempool_shared_destr(void* ptr) {
olaf@13 60 ucx_regdestr *rd = (ucx_regdestr*)ptr;
olaf@13 61 rd->destructor(rd->ptr);
olaf@13 62 }
olaf@13 63
olaf@13 64 UcxMempool *ucx_mempool_new(size_t n) {
olaf@14 65 UcxMempool *pool = (UcxMempool*)malloc(sizeof(UcxMempool));
universe@135 66 if (!pool) {
universe@135 67 return NULL;
universe@135 68 }
universe@15 69
universe@69 70 pool->data = (void**) malloc(n * sizeof(void*));
universe@15 71 if (pool->data == NULL) {
universe@15 72 free(pool);
universe@15 73 return NULL;
universe@15 74 }
universe@15 75
olaf@13 76 pool->ndata = 0;
olaf@13 77 pool->size = n;
olaf@158 78
olaf@158 79 UcxAllocator *allocator = (UcxAllocator*)malloc(sizeof(UcxAllocator));
olaf@158 80 if(!allocator) {
olaf@158 81 free(pool->data);
olaf@158 82 free(pool);
olaf@158 83 return NULL;
olaf@158 84 }
olaf@158 85 allocator->malloc = (ucx_allocator_malloc)ucx_mempool_malloc;
olaf@158 86 allocator->calloc = (ucx_allocator_calloc)ucx_mempool_calloc;
olaf@158 87 allocator->realloc = (ucx_allocator_realloc)ucx_mempool_realloc;
olaf@158 88 allocator->free = (ucx_allocator_free)ucx_mempool_free;
olaf@158 89 allocator->pool = pool;
olaf@158 90 pool->allocator = allocator;
olaf@158 91
olaf@13 92 return pool;
olaf@13 93 }
olaf@13 94
universe@15 95 int ucx_mempool_chcap(UcxMempool *pool, size_t newcap) {
universe@69 96 void **data = (void**) realloc(pool->data, newcap*sizeof(void*));
universe@135 97 if (data) {
universe@15 98 pool->data = data;
universe@15 99 pool->size = newcap;
universe@15 100 return EXIT_SUCCESS;
universe@135 101 } else {
universe@135 102 return EXIT_FAILURE;
universe@15 103 }
olaf@13 104 }
olaf@13 105
olaf@13 106 void *ucx_mempool_malloc(UcxMempool *pool, size_t n) {
universe@141 107 if (pool->ndata >= pool->size) {
universe@141 108 // The hard coded 16 is documented for this function and ucx_mempool_new
universe@141 109 if (ucx_mempool_chcap(pool, pool->size + 16) == EXIT_FAILURE) {
universe@141 110 return NULL;
universe@141 111 }
universe@141 112 }
universe@141 113
olaf@13 114 ucx_memchunk *mem = (ucx_memchunk*)malloc(sizeof(ucx_destructor) + n);
universe@135 115 if (!mem) {
universe@135 116 return NULL;
universe@135 117 }
olaf@13 118
olaf@13 119 mem->destructor = NULL;
olaf@13 120 pool->data[pool->ndata] = mem;
olaf@13 121 pool->ndata++;
olaf@13 122
universe@135 123 return &(mem->c);
olaf@13 124 }
olaf@13 125
olaf@13 126 void *ucx_mempool_calloc(UcxMempool *pool, size_t nelem, size_t elsize) {
olaf@13 127 void *ptr = ucx_mempool_malloc(pool, nelem*elsize);
universe@135 128 if (!ptr) {
olaf@13 129 return NULL;
olaf@13 130 }
olaf@13 131 memset(ptr, 0, nelem * elsize);
olaf@13 132 return ptr;
olaf@13 133 }
olaf@13 134
olaf@13 135 void *ucx_mempool_realloc(UcxMempool *pool, void *ptr, size_t n) {
universe@28 136 char *mem = ((char*)ptr) - sizeof(ucx_destructor);
universe@15 137 char *newm = (char*) realloc(mem, n + sizeof(ucx_destructor));
universe@135 138 if (!newm) {
universe@135 139 return NULL;
universe@135 140 }
universe@15 141 if (mem != newm) {
universe@95 142 for(size_t i=0 ; i < pool->ndata ; i++) {
olaf@14 143 if(pool->data[i] == mem) {
olaf@14 144 pool->data[i] = newm;
universe@28 145 return newm + sizeof(ucx_destructor);
olaf@14 146 }
olaf@13 147 }
universe@116 148 fprintf(stderr, "FATAL: 0x%08" PRIxPTR" not in mpool 0x%08" PRIxPTR"\n",
universe@75 149 (intptr_t)ptr, (intptr_t)pool);
universe@141 150 exit(EXIT_FAILURE);
universe@16 151 } else {
universe@28 152 return newm + sizeof(ucx_destructor);
olaf@13 153 }
olaf@13 154 }
olaf@13 155
olaf@113 156 void ucx_mempool_free(UcxMempool *pool, void *ptr) {
olaf@113 157 ucx_memchunk *chunk = (ucx_memchunk*)((char*)ptr-sizeof(ucx_destructor));
olaf@113 158 for(size_t i=0 ; i<pool->ndata ; i++) {
olaf@113 159 if(chunk == pool->data[i]) {
olaf@113 160 if(chunk->destructor != NULL) {
universe@141 161 chunk->destructor(&(chunk->c));
olaf@113 162 }
olaf@113 163 free(chunk);
olaf@113 164 size_t last_index = pool->ndata - 1;
olaf@113 165 if(i != last_index) {
olaf@113 166 pool->data[i] = pool->data[last_index];
universe@141 167 pool->data[last_index] = NULL;
olaf@113 168 }
olaf@113 169 pool->ndata--;
olaf@113 170 return;
olaf@113 171 }
olaf@113 172 }
universe@116 173 fprintf(stderr, "FATAL: 0x%08" PRIxPTR" not in mpool 0x%08" PRIxPTR"\n",
olaf@113 174 (intptr_t)ptr, (intptr_t)pool);
universe@135 175 exit(EXIT_FAILURE);
olaf@113 176 }
olaf@113 177
olaf@113 178 void ucx_mempool_destroy(UcxMempool *pool) {
olaf@13 179 ucx_memchunk *chunk;
universe@95 180 for(size_t i=0 ; i<pool->ndata ; i++) {
olaf@13 181 chunk = (ucx_memchunk*) pool->data[i];
olaf@113 182 if(chunk) {
universe@135 183 if(chunk->destructor) {
universe@135 184 chunk->destructor(&(chunk->c));
olaf@113 185 }
olaf@113 186 free(chunk);
olaf@13 187 }
olaf@13 188 }
olaf@13 189 free(pool->data);
olaf@158 190 free(pool->allocator);
olaf@13 191 free(pool);
olaf@13 192 }
olaf@13 193
olaf@13 194 void ucx_mempool_set_destr(void *ptr, ucx_destructor func) {
olaf@13 195 *(ucx_destructor*)((char*)ptr-sizeof(ucx_destructor)) = func;
olaf@13 196 }
olaf@13 197
olaf@13 198 void ucx_mempool_reg_destr(UcxMempool *pool, void *ptr, ucx_destructor destr) {
olaf@13 199 ucx_regdestr *rd = (ucx_regdestr*)ucx_mempool_malloc(
olaf@13 200 pool,
olaf@13 201 sizeof(ucx_regdestr));
olaf@13 202 rd->destructor = destr;
olaf@14 203 rd->ptr = ptr;
olaf@13 204 ucx_mempool_set_destr(rd, ucx_mempool_shared_destr);
olaf@13 205 }
olaf@113 206

mercurial