My Project
programmer's documentation
Loading...
Searching...
No Matches
bft_mem.h
Go to the documentation of this file.
1#ifndef __BFT_MEM_H__
2#define __BFT_MEM_H__
3
4/*============================================================================
5 * Base memory allocation wrappers with optional tracing
6 *============================================================================*/
7
8/*
9 This file is part of Code_Saturne, a general-purpose CFD tool.
10
11 Copyright (C) 1998-2019 EDF S.A.
12
13 This program is free software; you can redistribute it and/or modify it under
14 the terms of the GNU General Public License as published by the Free Software
15 Foundation; either version 2 of the License, or (at your option) any later
16 version.
17
18 This program is distributed in the hope that it will be useful, but WITHOUT
19 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
20 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
21 details.
22
23 You should have received a copy of the GNU General Public License along with
24 this program; if not, write to the Free Software Foundation, Inc., 51 Franklin
25 Street, Fifth Floor, Boston, MA 02110-1301, USA.
26*/
27
28/*----------------------------------------------------------------------------*/
29
30#include "cs_defs.h"
31
32/*----------------------------------------------------------------------------*/
33
34/* BFT headers */
35
36#include "bft_error.h"
37
38/*-----------------------------------------------------------------------------*/
39
41
42/*============================================================================
43 * Public types
44 *============================================================================*/
45
46/*============================================================================
47 * Public macros
48 *============================================================================*/
49
50/*
51 * Allocate memory for _ni items of type _type.
52 *
53 * This macro calls bft_mem_malloc(), automatically setting the
54 * allocated variable name and source file name and line arguments.
55 *
56 * parameters:
57 * _ptr --> pointer to allocated memory.
58 * _ni <-- number of items.
59 * _type <-- element type.
60 */
61
62#define BFT_MALLOC(_ptr, _ni, _type) \
63_ptr = (_type *) bft_mem_malloc(_ni, sizeof(_type), \
64 #_ptr, __FILE__, __LINE__)
65
66/*
67 * Reallocate memory for _ni items of type _type.
68 *
69 * This macro calls bft_mem_realloc(), automatically setting the
70 * allocated variable name and source file name and line arguments.
71 *
72 * parameters:
73 * _ptr <-> pointer to allocated memory.
74 * _ni <-- number of items.
75 * _type <-- element type.
76 */
77
78#define BFT_REALLOC(_ptr, _ni, _type) \
79_ptr = (_type *) bft_mem_realloc(_ptr, _ni, sizeof(_type), \
80 #_ptr, __FILE__, __LINE__)
81
82/*
83 * Free allocated memory.
84 *
85 * This macro calls bft_mem_free(), automatically setting the
86 * allocated variable name and source file name and line arguments.
87 *
88 * The freed pointer is set to NULL to avoid accidental reuse.
89 *
90 * parameters:
91 * _ptr <-> pointer to allocated memory.
92 */
93
94#ifdef __cplusplus /* avoid casting from void for C++ */
95
96#define BFT_FREE(_ptr) \
97bft_mem_free(_ptr, #_ptr, __FILE__, __LINE__), _ptr = NULL
98
99#else
100
101#define BFT_FREE(_ptr) \
102_ptr = bft_mem_free(_ptr, #_ptr, __FILE__, __LINE__)
103
104#endif /* __cplusplus */
105
106/*
107 * Allocate aligned memory for _ni items of type _type.
108 *
109 * This macro calls bft_mem_memalign(), automatically setting the
110 * allocated variable name and source file name and line arguments.
111 *
112 * parameters:
113 * _ptr --> pointer to allocated memory.
114 * _align <-- alignment.
115 * _ni <-- number of items.
116 * _type <-- element type.
117 */
118
119#define BFT_MEMALIGN(_ptr, _align, _ni, _type) \
120_ptr = (_type *) bft_mem_memalign(_align, _ni, sizeof(_type), \
121 #_ptr, __FILE__, __LINE__)
122
123/*============================================================================
124 * Public function prototypes
125 *============================================================================*/
126
127/*
128 * Initialize memory handling.
129 *
130 * This function should be called before any other bft_mem_...()
131 * function. To activate memory allocation logging, a logfile
132 * name should be given as an argument. The resulting file will
133 * be a regular, local file. If this file cannot be opened for
134 * some reason, logging is silently de-activated.
135 *
136 * parameter:
137 * log_file_name <-- name of optional log_file (if NULL, no log).
138 */
139
140void
141bft_mem_init(const char *log_file_name);
142
143/*
144 * End memory handling.
145 *
146 * This function should be called after all other bft_mem_...()
147 * functions. In case of memory allocation logging, it
148 * writes final information to the log file and closes is.
149 */
150
151void
152bft_mem_end(void);
153
154/*
155 * Initialize memory handling.
156 *
157 * This function should be called before any other bft_mem_...()
158 * function. To activate memory allocation logging, a logfile
159 * name should be given as an argument. The resulting file will
160 * be a regular, local file. If this file cannot be opened for
161 * some reason, logging is silently de-activated.
162 *
163 * parameter:
164 * log_file_name <-- name of optional log_file (if NULL, no log).
165 */
166
167/*
168 * Indicates if bft_mem_...() functions are initialized.
169 *
170 * returns:
171 * 1 if bft_mem_init has been called, 0 otherwise.
172 */
173
174int
176
177/*
178 * Allocate memory for ni items of size bytes.
179 *
180 * This function calls malloc(), but adds tracing capabilities, and
181 * automatically calls the bft_error() errorhandler if it fails to
182 * allocate the required memory.
183 *
184 * parameters:
185 * ni <-- number of items.
186 * size <-- element size.
187 * var_name <-- allocated variable name string.
188 * file_name <-- name of calling source file.
189 * line_num <-- line number in calling source file.
190 *
191 * returns:
192 * pointer to allocated memory.
193 */
194
195void *
196bft_mem_malloc(size_t ni,
197 size_t size,
198 const char *var_name,
199 const char *file_name,
200 int line_num);
201
202/*
203 * Reallocate memory for ni items of size bytes.
204 *
205 * This function calls realloc(), but adds tracing capabilities, and
206 * automatically calls the bft_error() errorhandler if it fails to
207 * allocate the required memory.
208 *
209 * parameters:
210 * ptr <-> pointer to previous memory location
211 * (if NULL, bft_alloc() called).
212 * ni <-- number of items.
213 * size <-- element size.
214 * var_name <-- allocated variable name string.
215 * file_name <-- name of calling source file.
216 * line_num -> line number in calling source file
217 *
218 * returns:
219 * pointer to allocated memory.
220 */
221
222void *
223bft_mem_realloc(void *ptr,
224 size_t ni,
225 size_t size,
226 const char *var_name,
227 const char *file_name,
228 int line_num);
229
230/*
231 * Free allocated memory.
232 *
233 * This function calls free(), but adds tracing capabilities, and
234 * automatically calls the bft_error() errorhandler if it fails to
235 * free the corresponding memory. In case of a NULL pointer argument,
236 * the function simply returns.
237 *
238 * parameters:
239 * ptr <-> pointer to previous memory location
240 * (if NULL, bft_alloc() called).
241 * var_name <-- allocated variable name string.
242 * file_name <-- name of calling source file.
243 * line_num <-- line number in calling source file.
244 *
245 * returns:
246 * NULL pointer.
247 */
248
249void *
250bft_mem_free(void *ptr,
251 const char *var_name,
252 const char *file_name,
253 int line_num);
254
255/*
256 * Allocate aligned memory for ni elements of size bytes.
257 *
258 * This function calls posix_memalign() if available, but adds tracing
259 * capabilities, and automatically calls the bft_error() errorhandler if
260 * it fails to allocate the required memory.
261 *
262 * The associated function bft_mem_have_memalign() indicates if this
263 * type of allocation may be used on this system.
264 *
265 * parameters:
266 * alignment <-- alignent.
267 * ni <-- number of items.
268 * size <-- element size.
269 * var_name <-- allocated variable name string.
270 * file_name <-- name of calling source file.
271 * line_num <-- line number in calling source file.
272 *
273 * returns:
274 * pointer to allocated memory.
275 */
276
277void *
278bft_mem_memalign(size_t alignment,
279 size_t ni,
280 size_t size,
281 const char *var_name,
282 const char *file_name,
283 int line_num);
284
291size_t
293
300size_t
301bft_mem_size_max(void);
302
303/*
304 * Indicate if a memory aligned allocation variant is available.
305 *
306 * If no such function is available, bft_mem_memalign() will always fail.
307 *
308 * returns:
309 * 1 if memory aligned allocation is possible, 0 otherwise.
310 */
311
312int
314
315/* Returns the error handler associated with the bft_mem_...() functions.
316 *
317 * returns:
318 * pointer to the error handler function.
319 */
320
323
324/*
325 * Associates an error handler with the bft_mem_...() functions.
326 *
327 * With the default error handler, an error message is output to stderr,
328 * (after bft_print_flush() is called), and the general error handler used
329 * by bft_error() is then called (which results in the termination of the
330 * current process or process group).
331 *
332 * parameter:
333 * handler <-- pointer to the error handler function.
334 */
335
336void
338
339/*----------------------------------------------------------------------------*/
340
342
343#endif /* __BFT_MEM_H__ */
void() bft_error_handler_t(const char *const file_name, const int line_num, const int sys_error_code, const char *const format, va_list arg_ptr)
Function pointer to opaque error handler.
Definition bft_error.h:52
size_t bft_mem_size_current(void)
Return current theoretical dynamic memory allocated.
Definition bft_mem.c:1146
int bft_mem_initialized(void)
Indicates if bft_mem_...() functions are initialized.
Definition bft_mem.c:741
void bft_mem_end(void)
End memory handling.
Definition bft_mem.c:667
size_t bft_mem_size_max(void)
Return maximum theoretical dynamic memory allocated.
Definition bft_mem.c:1158
void bft_mem_init(const char *log_file_name)
Initialize memory handling.
Definition bft_mem.c:590
bft_error_handler_t * bft_mem_error_handler_get(void)
Returns the error handler associated with the bft_mem_...() functions.
Definition bft_mem.c:1170
void bft_mem_error_handler_set(bft_error_handler_t *handler)
Associates an error handler with the bft_mem_...() functions.
Definition bft_mem.c:1187
void * bft_mem_memalign(size_t alignment, size_t ni, size_t size, const char *var_name, const char *file_name, int line_num)
Allocate aligned memory for ni elements of size bytes.
Definition bft_mem.c:1051
void * bft_mem_malloc(size_t ni, size_t size, const char *var_name, const char *file_name, int line_num)
Allocate memory for ni elements of size bytes.
Definition bft_mem.c:763
int bft_mem_have_memalign(void)
Indicate if a memory aligned allocation variant is available.
Definition bft_mem.c:1201
void * bft_mem_realloc(void *ptr, size_t ni, size_t size, const char *var_name, const char *file_name, int line_num)
Reallocate memory for ni elements of size bytes.
Definition bft_mem.c:847
void * bft_mem_free(void *ptr, const char *var_name, const char *file_name, int line_num)
Free allocated memory.
Definition bft_mem.c:978
#define BEGIN_C_DECLS
Definition cs_defs.h:467
#define END_C_DECLS
Definition cs_defs.h:468