memory.c

来自「MPI stands for the Message Passing Inter」· C语言 代码 · 共 374 行

C
374
字号
/* * Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana *                         University Research and Technology *                         Corporation.  All rights reserved. * Copyright (c) 2004-2006 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 "opal_config.h"#ifdef HAVE_SYS_TYPES_H#include <sys/types.h>#endif  /* HAVE_SYS_TYPES_H */#ifdef HAVE_SYS_MMAN_H#include <sys/mman.h>#endif  /* HAVE_SYS_MMAN_H */#include "opal/constants.h"#include "opal/util/output.h"#include "opal/memoryhooks/memory.h"#include "opal/memoryhooks/memory_internal.h"#include "opal/class/opal_list.h"#include "opal/class/opal_object.h"#include "opal/sys/atomic.h"/*  * local types */struct callback_list_item_t {    opal_list_item_t super;    opal_mem_hooks_callback_fn_t *cbfunc;    void *cbdata;};typedef struct callback_list_item_t callback_list_item_t;static OBJ_CLASS_INSTANCE(callback_list_item_t, opal_list_item_t, NULL, NULL);/* * local data */static int hooks_support = 0;static opal_list_t alloc_cb_list;static opal_atomic_lock_t alloc_lock;static int alloc_run_callbacks;static opal_list_t release_cb_list;static opal_atomic_lock_t release_lock;static int release_run_callbacks;intopal_mem_hooks_init(void){    OBJ_CONSTRUCT(&alloc_cb_list, opal_list_t);    OBJ_CONSTRUCT(&release_cb_list, opal_list_t);    opal_atomic_init(&alloc_lock, OPAL_ATOMIC_UNLOCKED);    opal_atomic_init(&release_lock, OPAL_ATOMIC_UNLOCKED);    /* delay running callbacks until there is something in the       registration */    alloc_run_callbacks = false;    release_run_callbacks = false;    opal_atomic_mb();    return OPAL_SUCCESS;}intopal_mem_hooks_finalize(void){    opal_list_item_t *item;    /* don't try to run callbacks any more */    alloc_run_callbacks = false;    release_run_callbacks = false;    opal_atomic_mb();    /* aquire the lock, just to make sure no one is currently       twiddling with the list.  We know this won't last long, since       no new calls will come in after we set run_callbacks to false */    opal_atomic_lock(&alloc_lock);    opal_atomic_lock(&release_lock);    /* clean out the lists */    while (NULL != (item = opal_list_remove_first(&alloc_cb_list))) {        OBJ_RELEASE(item);    }    OBJ_DESTRUCT(&alloc_cb_list);    while (NULL != (item = opal_list_remove_first(&release_cb_list))) {        OBJ_RELEASE(item);    }    OBJ_DESTRUCT(&release_cb_list);    opal_atomic_unlock(&alloc_lock);    opal_atomic_unlock(&release_lock);    return OPAL_SUCCESS;}/* called from memory manager / memory-manager specific hooks */voidopal_mem_hooks_set_support(int support){    hooks_support = support;}/* called from the memory manager / memory-manager specific hooks */voidopal_mem_hooks_alloc_hook(void *buf, size_t length, bool from_alloc){    opal_list_item_t *item;    if (!alloc_run_callbacks) return;    /*     * This is not really thread safe - but we can't hold the lock     * while calling the callback function as this routine can     * be called recursively.     *     * Instead, we could set a flag if we are already in the callback,     * and if called recursively queue the new address/length and allow     * the initial callback to dispatch this     */    opal_atomic_lock(&alloc_lock);    item = opal_list_get_first(&alloc_cb_list);    while(item != opal_list_get_end(&alloc_cb_list)) {        opal_list_item_t* next = opal_list_get_next(item);        callback_list_item_t *cbitem = (callback_list_item_t*) item;        item = next;        opal_atomic_unlock(&alloc_lock);        cbitem->cbfunc(buf, length, cbitem->cbdata, (bool) from_alloc);        opal_atomic_lock(&alloc_lock);    }    opal_atomic_unlock(&alloc_lock);}/* called from the memory manager / memory-manager specific hooks */voidopal_mem_hooks_release_hook(void *buf, size_t length, bool from_alloc){    opal_list_item_t *item;    if (!release_run_callbacks) return;    /*     * This is not really thread safe - but we can't hold the lock     * while calling the callback function as this routine can     * be called recursively.     *     * Instead, we could set a flag if we are already in the callback,     * and if called recursively queue the new address/length and allow     * the initial callback to dispatch this     */    opal_atomic_lock(&release_lock);    item = opal_list_get_first(&release_cb_list);    while(item != opal_list_get_end(&release_cb_list)) {        opal_list_item_t* next = opal_list_get_next(item);        callback_list_item_t *cbitem = (callback_list_item_t*) item;        item = next;        opal_atomic_unlock(&release_lock);        cbitem->cbfunc(buf, length, cbitem->cbdata, (bool) from_alloc);        opal_atomic_lock(&release_lock);    }    opal_atomic_unlock(&release_lock);}intopal_mem_hooks_support_level(void){    return hooks_support;}intopal_mem_hooks_register_alloc(opal_mem_hooks_callback_fn_t *func, void *cbdata){    opal_list_item_t *item;    callback_list_item_t *cbitem, *new_cbitem;    int ret = OPAL_SUCCESS;    if (0 == (OPAL_MEMORY_FREE_SUPPORT & hooks_support)) {        return OPAL_ERR_NOT_SUPPORTED;    }    /* pre-allocate a callback item on the assumption it won't be       found.  We can't call OBJ_NEW inside the lock because it might       call alloc / realloc */    new_cbitem = OBJ_NEW(callback_list_item_t);    if (NULL == new_cbitem) {        ret = OPAL_ERR_OUT_OF_RESOURCE;        goto done;    }    opal_atomic_lock(&alloc_lock);    /* we either have or are about to have a registration that needs       calling back.  Let the system know it needs to run callbacks       now */    alloc_run_callbacks = true;    opal_atomic_mb();    /* make sure the callback isn't already in the list */    for (item = opal_list_get_first(&alloc_cb_list) ;         item != opal_list_get_end(&alloc_cb_list) ;         item = opal_list_get_next(item)) {        cbitem = (callback_list_item_t*) item;        if (cbitem->cbfunc == func) {            ret = OPAL_EXISTS;            goto done;        }    }    new_cbitem->cbfunc = func;    new_cbitem->cbdata = cbdata;    opal_list_append(&alloc_cb_list, (opal_list_item_t*) new_cbitem); done:    opal_atomic_unlock(&alloc_lock);    if (OPAL_EXISTS == ret && NULL != new_cbitem) {        OBJ_RELEASE(new_cbitem);    }    return ret;}intopal_mem_hooks_register_release(opal_mem_hooks_callback_fn_t *func, void *cbdata){    opal_list_item_t *item;    callback_list_item_t *cbitem, *new_cbitem;    int ret = OPAL_SUCCESS;    if (0 == (OPAL_MEMORY_FREE_SUPPORT & hooks_support)) {        return OPAL_ERR_NOT_SUPPORTED;    }    /* pre-allocate a callback item on the assumption it won't be       found.  We can't call OBJ_NEW inside the lock because it might       call alloc / realloc */    new_cbitem = OBJ_NEW(callback_list_item_t);    if (NULL == new_cbitem) {        ret = OPAL_ERR_OUT_OF_RESOURCE;        goto done;    }    opal_atomic_lock(&release_lock);    /* we either have or are about to have a registration that needs       calling back.  Let the system know it needs to run callbacks       now */    release_run_callbacks = true;    opal_atomic_mb();    /* make sure the callback isn't already in the list */    for (item = opal_list_get_first(&release_cb_list) ;         item != opal_list_get_end(&release_cb_list) ;         item = opal_list_get_next(item)) {        cbitem = (callback_list_item_t*) item;        if (cbitem->cbfunc == func) {            ret = OPAL_EXISTS;            goto done;        }    }    new_cbitem->cbfunc = func;    new_cbitem->cbdata = cbdata;    opal_list_append(&release_cb_list, (opal_list_item_t*) new_cbitem); done:    opal_atomic_unlock(&release_lock);    if (OPAL_EXISTS == ret && NULL != new_cbitem) {        OBJ_RELEASE(new_cbitem);    }    return ret;}intopal_mem_hooks_unregister_alloc(opal_mem_hooks_callback_fn_t* func){    opal_list_item_t *item;    opal_list_item_t *found_item = NULL;    callback_list_item_t *cbitem;    int ret = OPAL_ERR_NOT_FOUND;    opal_atomic_lock(&alloc_lock);    /* make sure the callback isn't already in the list */    for (item = opal_list_get_first(&alloc_cb_list) ;         item != opal_list_get_end(&alloc_cb_list) ;         item = opal_list_get_next(item)) {        cbitem = (callback_list_item_t*) item;        if (cbitem->cbfunc == func) {            opal_list_remove_item(&alloc_cb_list, item);            found_item = item;            ret = OPAL_SUCCESS;            break;        }    }    opal_atomic_unlock(&alloc_lock);    /* OBJ_ALLOC calls free, so we can't alloc until we get out of       the lock */    if (NULL != found_item) {        OBJ_RELEASE(item);    }    return ret;}intopal_mem_hooks_unregister_release(opal_mem_hooks_callback_fn_t* func){    opal_list_item_t *item;    opal_list_item_t *found_item = NULL;    callback_list_item_t *cbitem;    int ret = OPAL_ERR_NOT_FOUND;    opal_atomic_lock(&release_lock);    /* make sure the callback isn't already in the list */    for (item = opal_list_get_first(&release_cb_list) ;         item != opal_list_get_end(&release_cb_list) ;         item = opal_list_get_next(item)) {        cbitem = (callback_list_item_t*) item;        if (cbitem->cbfunc == func) {            opal_list_remove_item(&release_cb_list, item);            found_item = item;            ret = OPAL_SUCCESS;            break;        }    }    opal_atomic_unlock(&release_lock);    /* OBJ_RELEASE calls free, so we can't release until we get out of       the lock */    if (NULL != found_item) {        OBJ_RELEASE(item);    }    return ret;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?