-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathmemory_pool_ops.h
150 lines (133 loc) · 5.58 KB
/
memory_pool_ops.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
/*
*
* Copyright (C) 2023-2025 Intel Corporation
*
* Under the Apache License v2.0 with LLVM Exceptions. See LICENSE.TXT.
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
*
*/
#ifndef UMF_MEMORY_POOL_OPS_H
#define UMF_MEMORY_POOL_OPS_H 1
#include <umf/base.h>
#include <umf/memory_provider.h>
#ifdef __cplusplus
extern "C" {
#endif
/// @brief Version of the Memory Pool ops structure.
/// NOTE: This is equal to the latest UMF version, in which the ops structure
/// has been modified.
#define UMF_POOL_OPS_VERSION_CURRENT UMF_MAKE_VERSION(0, 11)
///
/// @brief This structure comprises function pointers used by corresponding umfPool*
/// calls. Each memory pool implementation should initialize all function
/// pointers.
///
typedef struct umf_memory_pool_ops_t {
/// Version of the ops structure.
/// Should be initialized using UMF_POOL_OPS_VERSION_CURRENT.
uint32_t version;
///
/// @brief Initializes memory pool.
/// @param providers array of memory providers that will be used for coarse-grain allocations.
/// Should contain at least one memory provider.
/// @param numProvider number of elements in the providers array
/// @param params pool-specific params
/// @param pool [out] returns pointer to the pool
/// @return UMF_RESULT_SUCCESS on success or appropriate error code on failure.
///
umf_result_t (*initialize)(umf_memory_provider_handle_t provider,
void *params, void **pool);
///
/// @brief Finalizes memory pool
/// @param pool pool to finalize
///
void (*finalize)(void *pool);
///
/// @brief Allocates \p size bytes of uninitialized storage from \p pool
/// @param pool pointer to the memory pool
/// @param size number of bytes to allocate
/// @return Pointer to the allocated memory
///
void *(*malloc)(void *pool, size_t size);
///
/// @brief Allocates memory from \p pool for an array of \p num elements
/// of \p size bytes each and initializes all bytes in the allocated storage
/// to zero
/// @param pool pointer to the memory pool
/// @param num number of objects
/// @param size number of bytes to allocate for each object
/// @return Pointer to the allocated memory
///
void *(*calloc)(void *pool, size_t num, size_t size);
///
/// @brief Reallocates memory from \p pool
/// @param pool pointer to the memory pool
/// @param ptr pointer to the memory block to be reallocated
/// @param size new size for the memory block in bytes
/// @return Pointer to the allocated memory
///
void *(*realloc)(void *pool, void *ptr, size_t size);
///
/// @brief Allocates \p size bytes of uninitialized storage from the specified \p pool
/// with the specified \p alignment
/// @param pool pointer to the memory pool
/// @param size number of bytes to allocate
/// @param alignment alignment of the allocation in bytes
/// @return Pointer to the allocated memory
///
void *(*aligned_malloc)(void *pool, size_t size, size_t alignment);
///
/// @brief Obtains size of block of memory allocated from the \p pool for a given \p ptr
/// @param pool pointer to the memory pool
/// @param ptr pointer to the allocated memory
/// @return size of the memory block allocated from the \p pool
///
size_t (*malloc_usable_size)(void *pool, void *ptr);
///
/// @brief Frees the memory space of the specified \p pool pointed by \p ptr
/// @param pool pointer to the memory pool
/// @param ptr pointer to the allocated memory to free
/// @return UMF_RESULT_SUCCESS on success or appropriate error code on failure.
/// Whether any status other than UMF_RESULT_SUCCESS can be returned
/// depends on the memory provider used by the \p pool.
///
umf_result_t (*free)(void *pool, void *);
///
/// @brief Retrieve \p umf_result_t representing the error of the last failed allocation
/// operation in this thread (malloc, calloc, realloc, aligned_malloc).
///
/// \details
/// * Implementations *must* store the error code in thread-local
/// storage prior to returning NULL from the allocation functions.
///
/// * If the last allocation/de-allocation operation succeeded, the value returned by
/// this function is unspecified.
///
/// * The application *may* call this function from simultaneous threads.
///
/// * The implementation of this function *should* be lock-free.
/// @param pool pointer to the memory pool for which the last allocation error is returned
/// @return Error code describing the failure of the last failed allocation operation.
/// The value is undefined if the previous allocation was successful.
///
umf_result_t (*get_last_allocation_error)(void *pool);
///
/// @brief Control operation for the memory pool.
/// The function is used to perform various control operations
/// on the memory pool.
///
/// @param hPool handle to the memory pool.
/// @param operationType type of the operation to be performed.
/// @param name name associated with the operation.
/// @param arg argument for the operation.
/// @param queryType type of the query to be performed.
///
/// @return umf_result_t result of the control operation.
///
umf_result_t (*ctl)(void *hPool, int operationType, const char *name,
void *arg, umf_ctl_query_type_t queryType);
} umf_memory_pool_ops_t;
#ifdef __cplusplus
}
#endif
#endif /* UMF_MEMORY_POOL_OPS_H */