42ec26e640
This commit was SVN r7999.
159 строки
5.1 KiB
C
159 строки
5.1 KiB
C
/*
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
* University Research and Technology
|
|
* Corporation. All rights reserved.
|
|
* Copyright (c) 2004-2005 The University of Tennessee and The University
|
|
* of Tennessee Research Foundation. All rights
|
|
* reserved.
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
* University of Stuttgart. All rights reserved.
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
* All rights reserved.
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*/
|
|
|
|
#include "ompi_config.h"
|
|
|
|
#include "class/ompi_free_list.h"
|
|
#include "include/sys/cache.h"
|
|
|
|
|
|
static void ompi_free_list_construct(ompi_free_list_t* fl);
|
|
static void ompi_free_list_destruct(ompi_free_list_t* fl);
|
|
|
|
|
|
opal_class_t ompi_free_list_t_class = {
|
|
"ompi_free_list_t",
|
|
OBJ_CLASS(opal_list_t),
|
|
(opal_construct_t)ompi_free_list_construct,
|
|
(opal_destruct_t)ompi_free_list_destruct
|
|
};
|
|
|
|
struct ompi_free_list_memory_t {
|
|
opal_list_item_t super;
|
|
mca_mpool_base_registration_t *registration;
|
|
};
|
|
typedef struct ompi_free_list_memory_t ompi_free_list_memory_t;
|
|
static OBJ_CLASS_INSTANCE(ompi_free_list_memory_t,
|
|
opal_list_item_t,
|
|
NULL, NULL);
|
|
|
|
|
|
static void ompi_free_list_construct(ompi_free_list_t* fl)
|
|
{
|
|
OBJ_CONSTRUCT(&fl->fl_lock, opal_mutex_t);
|
|
OBJ_CONSTRUCT(&fl->fl_condition, opal_condition_t);
|
|
fl->fl_max_to_alloc = 0;
|
|
fl->fl_num_allocated = 0;
|
|
fl->fl_num_per_alloc = 0;
|
|
fl->fl_num_waiting = 0;
|
|
fl->fl_elem_size = 0;
|
|
fl->fl_elem_class = 0;
|
|
fl->fl_mpool = 0;
|
|
OBJ_CONSTRUCT(&(fl->fl_allocations), opal_list_t);
|
|
}
|
|
|
|
static void ompi_free_list_destruct(ompi_free_list_t* fl)
|
|
{
|
|
opal_list_item_t *item;
|
|
|
|
while (NULL != (item = opal_list_remove_first(&(fl->fl_allocations)))) {
|
|
/* destruct the item (we constructed it), then free the memory chunk */
|
|
OBJ_DESTRUCT(item);
|
|
if (NULL != fl->fl_mpool) {
|
|
ompi_free_list_memory_t *fl_mem = (ompi_free_list_memory_t*) item;
|
|
fl->fl_mpool->mpool_free(fl->fl_mpool, item, fl_mem->registration);
|
|
} else {
|
|
free(item);
|
|
}
|
|
}
|
|
|
|
OBJ_DESTRUCT(&fl->fl_allocations);
|
|
OBJ_DESTRUCT(&fl->fl_condition);
|
|
OBJ_DESTRUCT(&fl->fl_lock);
|
|
}
|
|
|
|
int ompi_free_list_init(
|
|
ompi_free_list_t *flist,
|
|
size_t elem_size,
|
|
opal_class_t* elem_class,
|
|
int num_elements_to_alloc,
|
|
int max_elements_to_alloc,
|
|
int num_elements_per_alloc,
|
|
mca_mpool_base_module_t* mpool)
|
|
{
|
|
flist->fl_elem_size = elem_size;
|
|
flist->fl_elem_class = elem_class;
|
|
flist->fl_max_to_alloc = max_elements_to_alloc;
|
|
flist->fl_num_allocated = 0;
|
|
flist->fl_num_per_alloc = num_elements_per_alloc;
|
|
flist->fl_mpool = mpool;
|
|
if(num_elements_to_alloc)
|
|
return ompi_free_list_grow(flist, num_elements_to_alloc);
|
|
return OMPI_SUCCESS;
|
|
}
|
|
|
|
|
|
int ompi_free_list_grow(ompi_free_list_t* flist, size_t num_elements)
|
|
{
|
|
unsigned char* ptr;
|
|
ompi_free_list_memory_t *alloc_ptr;
|
|
size_t i;
|
|
size_t mod;
|
|
mca_mpool_base_registration_t* user_out = NULL;
|
|
|
|
if (flist->fl_max_to_alloc > 0)
|
|
if (flist->fl_num_allocated + num_elements > flist->fl_max_to_alloc)
|
|
num_elements = flist->fl_max_to_alloc - flist->fl_num_allocated;
|
|
|
|
if (num_elements == 0)
|
|
return OMPI_ERR_TEMP_OUT_OF_RESOURCE;
|
|
|
|
if (NULL != flist->fl_mpool)
|
|
alloc_ptr = flist->fl_mpool->mpool_alloc(flist->fl_mpool,
|
|
(num_elements * flist->fl_elem_size) + CACHE_LINE_SIZE + sizeof(ompi_free_list_memory_t),
|
|
0, 0, &user_out);
|
|
else
|
|
alloc_ptr = malloc((num_elements * flist->fl_elem_size) + CACHE_LINE_SIZE + sizeof(ompi_free_list_memory_t));
|
|
if(NULL == alloc_ptr)
|
|
return OMPI_ERR_TEMP_OUT_OF_RESOURCE;
|
|
|
|
/* make the alloc_ptr a list item, save the chunk in the allocations list, and
|
|
have ptr point to memory right after the list item structure */
|
|
OBJ_CONSTRUCT(alloc_ptr, ompi_free_list_memory_t);
|
|
opal_list_append(&(flist->fl_allocations), (opal_list_item_t*) alloc_ptr);
|
|
if (NULL != flist->fl_mpool) {
|
|
alloc_ptr->registration = user_out;
|
|
} else {
|
|
alloc_ptr->registration = NULL;
|
|
}
|
|
ptr = (unsigned char*) alloc_ptr + sizeof(ompi_free_list_memory_t);
|
|
|
|
mod = (unsigned long)ptr % CACHE_LINE_SIZE;
|
|
if(mod != 0) {
|
|
ptr += (CACHE_LINE_SIZE - mod);
|
|
}
|
|
|
|
for(i=0; i<num_elements; i++) {
|
|
ompi_free_list_item_t* item = (ompi_free_list_item_t*)ptr;
|
|
item->user_data = user_out;
|
|
if (NULL != flist->fl_elem_class) {
|
|
OBJ_CONSTRUCT_INTERNAL(item, flist->fl_elem_class);
|
|
} else {
|
|
OBJ_CONSTRUCT(&item->super, opal_list_item_t);
|
|
}
|
|
|
|
opal_list_append(&(flist->super), &(item->super));
|
|
ptr += flist->fl_elem_size;
|
|
}
|
|
flist->fl_num_allocated += num_elements;
|
|
return OMPI_SUCCESS;
|
|
}
|
|
|
|
|
|
|