2023-06-10 08:37:47 +08:00
|
|
|
#include "jemalloc/internal/jemalloc_preamble.h"
|
2017-03-04 02:10:08 +08:00
|
|
|
#include "jemalloc/internal/malloc_io.h"
|
|
|
|
#include "jemalloc/internal/util.h"
|
|
|
|
|
2015-11-13 03:06:41 +08:00
|
|
|
/*
|
|
|
|
* Define a custom assert() in order to reduce the chances of deadlock during
|
|
|
|
* assertion failure.
|
|
|
|
*/
|
|
|
|
#ifndef assert
|
2017-01-20 13:41:41 +08:00
|
|
|
#define assert(e) do { \
|
2015-11-13 03:06:41 +08:00
|
|
|
if (unlikely(config_debug && !(e))) { \
|
|
|
|
malloc_printf( \
|
|
|
|
"<jemalloc>: %s:%d: Failed assertion: \"%s\"\n", \
|
|
|
|
__FILE__, __LINE__, #e); \
|
|
|
|
abort(); \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef not_reached
|
2017-01-20 13:41:41 +08:00
|
|
|
#define not_reached() do { \
|
2015-11-13 03:06:41 +08:00
|
|
|
if (config_debug) { \
|
|
|
|
malloc_printf( \
|
|
|
|
"<jemalloc>: %s:%d: Unreachable code reached\n", \
|
|
|
|
__FILE__, __LINE__); \
|
|
|
|
abort(); \
|
|
|
|
} \
|
|
|
|
unreachable(); \
|
|
|
|
} while (0)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef not_implemented
|
2017-01-20 13:41:41 +08:00
|
|
|
#define not_implemented() do { \
|
2015-11-13 03:06:41 +08:00
|
|
|
if (config_debug) { \
|
|
|
|
malloc_printf("<jemalloc>: %s:%d: Not implemented\n", \
|
|
|
|
__FILE__, __LINE__); \
|
|
|
|
abort(); \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef assert_not_implemented
|
2017-01-20 13:41:41 +08:00
|
|
|
#define assert_not_implemented(e) do { \
|
2017-01-16 08:56:30 +08:00
|
|
|
if (unlikely(config_debug && !(e))) { \
|
2015-11-13 03:06:41 +08:00
|
|
|
not_implemented(); \
|
2017-01-16 08:56:30 +08:00
|
|
|
} \
|
2015-11-13 03:06:41 +08:00
|
|
|
} while (0)
|
|
|
|
#endif
|
|
|
|
|
2017-03-04 02:10:08 +08:00
|
|
|
/* Use to assert a particular configuration, e.g., cassert(config_debug). */
|
|
|
|
#ifndef cassert
|
|
|
|
#define cassert(c) do { \
|
|
|
|
if (unlikely(!(c))) { \
|
|
|
|
not_reached(); \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
#endif
|