2012-03-07 06:57:45 +08:00
|
|
|
/******************************************************************************/
|
|
|
|
#ifdef JEMALLOC_H_TYPES
|
|
|
|
|
|
|
|
/* Size of stack-allocated buffer passed to buferror(). */
|
|
|
|
#define BUFERROR_BUF 64
|
|
|
|
|
2012-03-14 04:19:04 +08:00
|
|
|
/*
|
2012-03-22 09:33:03 +08:00
|
|
|
* Size of stack-allocated buffer used by malloc_{,v,vc}printf(). This must be
|
|
|
|
* large enough for all possible uses within jemalloc.
|
2012-03-14 04:19:04 +08:00
|
|
|
*/
|
|
|
|
#define MALLOC_PRINTF_BUFSIZE 4096
|
|
|
|
|
2012-03-22 09:33:03 +08:00
|
|
|
/*
|
|
|
|
* Wrap a cpp argument that contains commas such that it isn't broken up into
|
|
|
|
* multiple arguments.
|
|
|
|
*/
|
2013-12-09 14:28:27 +08:00
|
|
|
#define JEMALLOC_ARG_CONCAT(...) __VA_ARGS__
|
2012-03-22 09:33:03 +08:00
|
|
|
|
2012-03-24 06:39:07 +08:00
|
|
|
/*
|
|
|
|
* Silence compiler warnings due to uninitialized values. This is used
|
|
|
|
* wherever the compiler fails to recognize that the variable is never used
|
|
|
|
* uninitialized.
|
|
|
|
*/
|
|
|
|
#ifdef JEMALLOC_CC_SILENCE
|
|
|
|
# define JEMALLOC_CC_SILENCE_INIT(v) = v
|
|
|
|
#else
|
|
|
|
# define JEMALLOC_CC_SILENCE_INIT(v)
|
|
|
|
#endif
|
|
|
|
|
2012-03-07 06:57:45 +08:00
|
|
|
/*
|
|
|
|
* Define a custom assert() in order to reduce the chances of deadlock during
|
|
|
|
* assertion failure.
|
|
|
|
*/
|
|
|
|
#ifndef assert
|
|
|
|
#define assert(e) do { \
|
|
|
|
if (config_debug && !(e)) { \
|
|
|
|
malloc_printf( \
|
|
|
|
"<jemalloc>: %s:%d: Failed assertion: \"%s\"\n", \
|
|
|
|
__FILE__, __LINE__, #e); \
|
|
|
|
abort(); \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef not_reached
|
|
|
|
#define not_reached() do { \
|
|
|
|
if (config_debug) { \
|
|
|
|
malloc_printf( \
|
|
|
|
"<jemalloc>: %s:%d: Unreachable code reached\n", \
|
|
|
|
__FILE__, __LINE__); \
|
|
|
|
abort(); \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef not_implemented
|
|
|
|
#define not_implemented() do { \
|
|
|
|
if (config_debug) { \
|
|
|
|
malloc_printf("<jemalloc>: %s:%d: Not implemented\n", \
|
|
|
|
__FILE__, __LINE__); \
|
|
|
|
abort(); \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
#endif
|
|
|
|
|
Refactor to support more varied testing.
Refactor the test harness to support three types of tests:
- unit: White box unit tests. These tests have full access to all
internal jemalloc library symbols. Though in actuality all symbols
are prefixed by jet_, macro-based name mangling abstracts this away
from test code.
- integration: Black box integration tests. These tests link with
the installable shared jemalloc library, and with the exception of
some utility code and configure-generated macro definitions, they have
no access to jemalloc internals.
- stress: Black box stress tests. These tests link with the installable
shared jemalloc library, as well as with an internal allocator with
symbols prefixed by jet_ (same as for unit tests) that can be used to
allocate data structures that are internal to the test code.
Move existing tests into test/{unit,integration}/ as appropriate.
Split out internal parts of jemalloc_defs.h.in and put them in
jemalloc_internal_defs.h.in. This reduces internals exposure to
applications that #include <jemalloc/jemalloc.h>.
Refactor jemalloc.h header generation so that a single header file
results, and the prototypes can be used to generate jet_ prototypes for
tests. Split jemalloc.h.in into multiple parts (jemalloc_defs.h.in,
jemalloc_macros.h.in, jemalloc_protos.h.in, jemalloc_mangle.h.in) and
use a shell script to generate a unified jemalloc.h at configure time.
Change the default private namespace prefix from "" to "je_".
Add missing private namespace mangling.
Remove hard-coded private_namespace.h. Instead generate it and
private_unnamespace.h from private_symbols.txt. Use similar logic for
public symbols, which aids in name mangling for jet_ symbols.
Add test_warn() and test_fail(). Replace existing exit(1) calls with
test_fail() calls.
2013-12-01 07:25:42 +08:00
|
|
|
#ifndef assert_not_implemented
|
2012-03-07 06:57:45 +08:00
|
|
|
#define assert_not_implemented(e) do { \
|
|
|
|
if (config_debug && !(e)) \
|
|
|
|
not_implemented(); \
|
|
|
|
} while (0)
|
Refactor to support more varied testing.
Refactor the test harness to support three types of tests:
- unit: White box unit tests. These tests have full access to all
internal jemalloc library symbols. Though in actuality all symbols
are prefixed by jet_, macro-based name mangling abstracts this away
from test code.
- integration: Black box integration tests. These tests link with
the installable shared jemalloc library, and with the exception of
some utility code and configure-generated macro definitions, they have
no access to jemalloc internals.
- stress: Black box stress tests. These tests link with the installable
shared jemalloc library, as well as with an internal allocator with
symbols prefixed by jet_ (same as for unit tests) that can be used to
allocate data structures that are internal to the test code.
Move existing tests into test/{unit,integration}/ as appropriate.
Split out internal parts of jemalloc_defs.h.in and put them in
jemalloc_internal_defs.h.in. This reduces internals exposure to
applications that #include <jemalloc/jemalloc.h>.
Refactor jemalloc.h header generation so that a single header file
results, and the prototypes can be used to generate jet_ prototypes for
tests. Split jemalloc.h.in into multiple parts (jemalloc_defs.h.in,
jemalloc_macros.h.in, jemalloc_protos.h.in, jemalloc_mangle.h.in) and
use a shell script to generate a unified jemalloc.h at configure time.
Change the default private namespace prefix from "" to "je_".
Add missing private namespace mangling.
Remove hard-coded private_namespace.h. Instead generate it and
private_unnamespace.h from private_symbols.txt. Use similar logic for
public symbols, which aids in name mangling for jet_ symbols.
Add test_warn() and test_fail(). Replace existing exit(1) calls with
test_fail() calls.
2013-12-01 07:25:42 +08:00
|
|
|
#endif
|
2012-03-07 06:57:45 +08:00
|
|
|
|
2013-10-22 05:56:27 +08:00
|
|
|
/* Use to assert a particular configuration, e.g., cassert(config_debug). */
|
|
|
|
#define cassert(c) do { \
|
|
|
|
if ((c) == false) \
|
|
|
|
not_reached(); \
|
|
|
|
} while (0)
|
|
|
|
|
2012-03-07 06:57:45 +08:00
|
|
|
#endif /* JEMALLOC_H_TYPES */
|
|
|
|
/******************************************************************************/
|
|
|
|
#ifdef JEMALLOC_H_STRUCTS
|
|
|
|
|
|
|
|
#endif /* JEMALLOC_H_STRUCTS */
|
|
|
|
/******************************************************************************/
|
|
|
|
#ifdef JEMALLOC_H_EXTERNS
|
|
|
|
|
2013-12-09 12:52:21 +08:00
|
|
|
int buferror(int err, char *buf, size_t buflen);
|
2014-01-07 12:33:48 +08:00
|
|
|
uintmax_t malloc_strtoumax(const char *restrict nptr,
|
|
|
|
char **restrict endptr, int base);
|
2012-05-02 17:08:03 +08:00
|
|
|
void malloc_write(const char *s);
|
2012-03-07 06:57:45 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* malloc_vsnprintf() supports a subset of snprintf(3) that avoids floating
|
|
|
|
* point math.
|
|
|
|
*/
|
|
|
|
int malloc_vsnprintf(char *str, size_t size, const char *format,
|
|
|
|
va_list ap);
|
|
|
|
int malloc_snprintf(char *str, size_t size, const char *format, ...)
|
|
|
|
JEMALLOC_ATTR(format(printf, 3, 4));
|
|
|
|
void malloc_vcprintf(void (*write_cb)(void *, const char *), void *cbopaque,
|
|
|
|
const char *format, va_list ap);
|
|
|
|
void malloc_cprintf(void (*write)(void *, const char *), void *cbopaque,
|
|
|
|
const char *format, ...) JEMALLOC_ATTR(format(printf, 3, 4));
|
|
|
|
void malloc_printf(const char *format, ...)
|
|
|
|
JEMALLOC_ATTR(format(printf, 1, 2));
|
|
|
|
|
|
|
|
#endif /* JEMALLOC_H_EXTERNS */
|
|
|
|
/******************************************************************************/
|
|
|
|
#ifdef JEMALLOC_H_INLINES
|
|
|
|
|
|
|
|
#ifndef JEMALLOC_ENABLE_INLINE
|
|
|
|
size_t pow2_ceil(size_t x);
|
2014-05-29 07:11:55 +08:00
|
|
|
size_t lg_floor(size_t x);
|
2012-04-30 18:38:26 +08:00
|
|
|
void set_errno(int errnum);
|
|
|
|
int get_errno(void);
|
2012-03-07 06:57:45 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if (defined(JEMALLOC_ENABLE_INLINE) || defined(JEMALLOC_UTIL_C_))
|
|
|
|
/* Compute the smallest power of 2 that is >= x. */
|
|
|
|
JEMALLOC_INLINE size_t
|
|
|
|
pow2_ceil(size_t x)
|
|
|
|
{
|
|
|
|
|
|
|
|
x--;
|
|
|
|
x |= x >> 1;
|
|
|
|
x |= x >> 2;
|
|
|
|
x |= x >> 4;
|
|
|
|
x |= x >> 8;
|
|
|
|
x |= x >> 16;
|
|
|
|
#if (LG_SIZEOF_PTR == 3)
|
|
|
|
x |= x >> 32;
|
|
|
|
#endif
|
|
|
|
x++;
|
|
|
|
return (x);
|
|
|
|
}
|
|
|
|
|
2014-05-29 07:11:55 +08:00
|
|
|
#if (defined(__i386__) || defined(__amd64__) || defined(__x86_64__))
|
|
|
|
JEMALLOC_INLINE size_t
|
|
|
|
lg_floor(size_t x)
|
|
|
|
{
|
|
|
|
size_t ret;
|
|
|
|
|
|
|
|
asm ("bsr %1, %0"
|
|
|
|
: "=r"(ret) // Outputs.
|
|
|
|
: "r"(x) // Inputs.
|
|
|
|
);
|
|
|
|
return (ret);
|
|
|
|
}
|
|
|
|
#elif (defined(JEMALLOC_HAVE_BUILTIN_CLZ))
|
|
|
|
JEMALLOC_INLINE size_t
|
|
|
|
lg_floor(size_t x)
|
|
|
|
{
|
|
|
|
|
|
|
|
#if (LG_SIZEOF_PTR == LG_SIZEOF_INT)
|
|
|
|
return ((8 << LG_SIZEOF_PTR - 1) - __builtin_clz(x));
|
|
|
|
#elif (LG_SIZEOF_PTR == LG_SIZEOF_LONG)
|
|
|
|
return ((8 << LG_SIZEOF_PTR - 1) - __builtin_clzl(x));
|
|
|
|
#else
|
|
|
|
# error "Unsupported type sizes for lg_floor()"
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
JEMALLOC_INLINE size_t
|
|
|
|
lg_floor(size_t x)
|
|
|
|
{
|
|
|
|
|
|
|
|
x |= (x >> 1);
|
|
|
|
x |= (x >> 2);
|
|
|
|
x |= (x >> 4);
|
|
|
|
x |= (x >> 8);
|
|
|
|
x |= (x >> 16);
|
|
|
|
#if (LG_SIZEOF_PTR == 3 && LG_SIZEOF_PTR == LG_SIZEOF_LONG)
|
|
|
|
x |= (x >> 32);
|
|
|
|
return (65 - ffsl(~x));
|
|
|
|
#elif (LG_SIZEOF_PTR == 2)
|
|
|
|
return (33 - ffs(~x));
|
|
|
|
#else
|
|
|
|
# error "Unsupported type sizes for lg_floor()"
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-04-30 18:38:26 +08:00
|
|
|
/* Sets error code */
|
|
|
|
JEMALLOC_INLINE void
|
|
|
|
set_errno(int errnum)
|
|
|
|
{
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
SetLastError(errnum);
|
|
|
|
#else
|
|
|
|
errno = errnum;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get last error code */
|
|
|
|
JEMALLOC_INLINE int
|
|
|
|
get_errno(void)
|
|
|
|
{
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
2012-04-30 18:38:27 +08:00
|
|
|
return (GetLastError());
|
2012-04-30 18:38:26 +08:00
|
|
|
#else
|
2012-04-30 18:38:27 +08:00
|
|
|
return (errno);
|
2012-04-30 18:38:26 +08:00
|
|
|
#endif
|
|
|
|
}
|
2012-03-07 06:57:45 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* JEMALLOC_H_INLINES */
|
|
|
|
/******************************************************************************/
|