2004-06-15 20:56:35 +04:00
|
|
|
/**
|
2004-11-22 04:38:40 +03:00
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University.
|
|
|
|
* All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The Trustees of the University of Tennessee.
|
|
|
|
* All rights reserved.
|
2004-11-28 23:09:25 +03:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
2005-03-24 15:43:37 +03:00
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
2004-11-22 04:38:40 +03:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
2004-06-15 20:56:35 +04:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
/**
|
2004-07-13 00:05:29 +04:00
|
|
|
* @file
|
|
|
|
* The public definition of the MCA Allocator framework.
|
2004-06-15 20:56:35 +04:00
|
|
|
*/
|
|
|
|
#ifndef MCA_ALLOCATOR_H
|
|
|
|
#define MCA_ALLOCATOR_H
|
|
|
|
#include "mca/mca.h"
|
|
|
|
|
2004-10-21 02:31:03 +04:00
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2004-08-02 04:24:22 +04:00
|
|
|
/* Here so that we can use mca_allocator_base_module_t in the function typedefs */
|
|
|
|
struct mca_allocator_base_module_t;
|
2004-06-15 20:56:35 +04:00
|
|
|
|
|
|
|
/**
|
2005-05-31 23:07:27 +04:00
|
|
|
* The allocate function typedef for the function to be provided by the component.
|
2004-06-15 20:56:35 +04:00
|
|
|
*/
|
2005-06-07 00:17:57 +04:00
|
|
|
typedef void* (*mca_allocator_base_module_alloc_fn_t)(struct mca_allocator_base_module_t*, size_t size, size_t align, void** user_out);
|
2004-06-15 20:56:35 +04:00
|
|
|
|
|
|
|
/**
|
2004-07-13 00:05:29 +04:00
|
|
|
* The realloc function typedef
|
2004-06-15 20:56:35 +04:00
|
|
|
*/
|
2005-06-07 00:17:57 +04:00
|
|
|
typedef void* (*mca_allocator_base_module_realloc_fn_t)(struct mca_allocator_base_module_t*, void*, size_t, void** user_out);
|
2004-06-15 20:56:35 +04:00
|
|
|
|
|
|
|
/**
|
2004-07-13 00:05:29 +04:00
|
|
|
* Free function typedef
|
2004-06-15 20:56:35 +04:00
|
|
|
*/
|
2004-08-02 04:24:22 +04:00
|
|
|
typedef void(*mca_allocator_base_module_free_fn_t)(struct mca_allocator_base_module_t*, void *);
|
2004-06-15 20:56:35 +04:00
|
|
|
|
|
|
|
|
2004-07-13 00:05:29 +04:00
|
|
|
/**
|
2004-06-17 00:59:06 +04:00
|
|
|
* compact/return memory to higher level allocator
|
|
|
|
*/
|
|
|
|
|
2004-10-20 02:00:19 +04:00
|
|
|
typedef int (*mca_allocator_base_module_compact_fn_t)(
|
2004-08-02 04:24:22 +04:00
|
|
|
struct mca_allocator_base_module_t* allocator
|
2004-06-17 00:59:06 +04:00
|
|
|
);
|
|
|
|
|
|
|
|
|
2004-07-13 00:05:29 +04:00
|
|
|
/**
|
2004-06-17 00:59:06 +04:00
|
|
|
* cleanup (free) any resources held by allocator
|
|
|
|
*/
|
|
|
|
|
2004-08-02 04:24:22 +04:00
|
|
|
typedef int (*mca_allocator_base_module_finalize_fn_t)(
|
|
|
|
struct mca_allocator_base_module_t* allocator
|
2004-06-15 20:56:35 +04:00
|
|
|
);
|
|
|
|
|
2004-07-13 00:05:29 +04:00
|
|
|
/**
|
|
|
|
* The data structure for each component.
|
|
|
|
*/
|
2004-08-02 04:24:22 +04:00
|
|
|
struct mca_allocator_base_module_t {
|
|
|
|
mca_allocator_base_module_alloc_fn_t alc_alloc;
|
|
|
|
/**< Allocate memory */
|
|
|
|
mca_allocator_base_module_realloc_fn_t alc_realloc;
|
|
|
|
/**< Reallocate memory */
|
|
|
|
mca_allocator_base_module_free_fn_t alc_free;
|
|
|
|
/**< Free memory */
|
2004-10-20 02:00:19 +04:00
|
|
|
mca_allocator_base_module_compact_fn_t alc_compact;
|
2004-08-02 04:24:22 +04:00
|
|
|
/**< Return memory */
|
2005-05-31 21:06:55 +04:00
|
|
|
mca_allocator_base_module_finalize_fn_t alc_finalize;
|
2004-08-02 04:24:22 +04:00
|
|
|
/**< Finalize and free everything */
|
2005-05-31 21:06:55 +04:00
|
|
|
void* user_in;
|
2004-06-15 20:56:35 +04:00
|
|
|
};
|
2004-07-13 00:05:29 +04:00
|
|
|
/**
|
|
|
|
* Convenience typedef.
|
|
|
|
*/
|
2004-08-02 04:24:22 +04:00
|
|
|
typedef struct mca_allocator_base_module_t mca_allocator_base_module_t;
|
2004-06-15 20:56:35 +04:00
|
|
|
|
|
|
|
|
2004-06-15 21:19:11 +04:00
|
|
|
/**
|
2004-07-13 00:05:29 +04:00
|
|
|
* A function to get more memory from the system. This function is to be
|
|
|
|
* provided by the module to the allocator framework.
|
2004-06-15 21:19:11 +04:00
|
|
|
*/
|
|
|
|
|
2005-06-07 00:17:57 +04:00
|
|
|
typedef void* (*mca_allocator_base_component_segment_alloc_fn_t)(size_t* size, void* user_in, void** user_out);
|
2004-06-15 21:19:11 +04:00
|
|
|
|
|
|
|
/**
|
2004-07-13 00:05:29 +04:00
|
|
|
* A function to free memory from the control of the allocator framework
|
|
|
|
* back to the system. This function is to be provided by the module to the
|
|
|
|
* allocator frmaework.
|
2004-06-15 21:19:11 +04:00
|
|
|
*/
|
2004-08-02 04:24:22 +04:00
|
|
|
typedef void* (*mca_allocator_base_component_segment_free_fn_t)(void* segment);
|
2004-06-15 21:19:11 +04:00
|
|
|
|
|
|
|
|
2004-06-15 20:56:35 +04:00
|
|
|
/**
|
2004-08-02 04:24:22 +04:00
|
|
|
* The function used to initialize the component.
|
2004-06-15 20:56:35 +04:00
|
|
|
*/
|
2005-03-27 17:05:23 +04:00
|
|
|
typedef struct mca_allocator_base_module_t*
|
|
|
|
(*mca_allocator_base_component_init_fn_t)(
|
|
|
|
bool enable_mpi_threads,
|
2004-08-02 04:24:22 +04:00
|
|
|
mca_allocator_base_component_segment_alloc_fn_t segment_alloc,
|
2005-05-31 21:06:55 +04:00
|
|
|
mca_allocator_base_component_segment_free_fn_t segment_free,
|
|
|
|
void* user_in
|
2004-06-15 20:56:35 +04:00
|
|
|
);
|
|
|
|
|
2004-07-13 00:05:29 +04:00
|
|
|
/**
|
|
|
|
* The data structure provided by each component to the framework which
|
|
|
|
* describes the component.
|
|
|
|
*/
|
2004-08-02 04:24:22 +04:00
|
|
|
struct mca_allocator_base_component_1_0_0_t {
|
|
|
|
mca_base_component_t allocator_version;
|
|
|
|
/**< The version of the component */
|
|
|
|
mca_base_component_data_1_0_0_t allocator_data;
|
|
|
|
/**< The component metadata */
|
|
|
|
mca_allocator_base_component_init_fn_t allocator_init;
|
|
|
|
/**< The component initialization function. */
|
2004-06-15 20:56:35 +04:00
|
|
|
};
|
2004-08-02 04:24:22 +04:00
|
|
|
|
2004-07-13 00:05:29 +04:00
|
|
|
/**
|
|
|
|
* Convenience typedef.
|
|
|
|
*/
|
2004-08-02 04:24:22 +04:00
|
|
|
typedef struct mca_allocator_base_component_1_0_0_t mca_allocator_base_component_t;
|
2004-06-15 20:56:35 +04:00
|
|
|
|
2004-07-13 00:05:29 +04:00
|
|
|
/**
|
2004-08-02 04:24:22 +04:00
|
|
|
* Macro for use in components that are of type allocator v1.0.0
|
2004-06-16 02:03:54 +04:00
|
|
|
*/
|
|
|
|
#define MCA_ALLOCATOR_BASE_VERSION_1_0_0 \
|
2005-05-31 23:07:27 +04:00
|
|
|
/* allocator v1.0 is chained to MCA v1.0 */ \
|
2004-06-16 02:03:54 +04:00
|
|
|
MCA_BASE_VERSION_1_0_0, \
|
2005-05-31 23:07:27 +04:00
|
|
|
/* allocator v1.0 */ \
|
2004-06-16 02:03:54 +04:00
|
|
|
"allocator", 1, 0, 0
|
|
|
|
|
2004-07-13 00:05:29 +04:00
|
|
|
/**
|
|
|
|
* The output integer used for the mca base
|
|
|
|
*/
|
2004-10-22 20:06:05 +04:00
|
|
|
OMPI_DECLSPEC extern int mca_allocator_base_output;
|
2004-10-21 02:31:03 +04:00
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
|
|
}
|
|
|
|
#endif
|
2004-06-15 20:56:35 +04:00
|
|
|
#endif /* MCA_ALLOCATOR_H */
|
|
|
|
|