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
|
|
|
/*
|
|
|
|
* By default application code must explicitly refer to mangled symbol names,
|
|
|
|
* so that it is possible to use jemalloc in conjunction with another allocator
|
|
|
|
* in the same application. Define JEMALLOC_MANGLE in order to cause automatic
|
|
|
|
* name mangling that matches the API prefixing that happened as a result of
|
|
|
|
* --with-mangling and/or --with-jemalloc-prefix configuration settings.
|
|
|
|
*/
|
|
|
|
#ifdef JEMALLOC_MANGLE
|
2013-12-08 03:53:26 +08:00
|
|
|
# ifndef JEMALLOC_NO_DEMANGLE
|
|
|
|
# define JEMALLOC_NO_DEMANGLE
|
|
|
|
# endif
|
|
|
|
# define malloc_conf je_malloc_conf
|
|
|
|
# define malloc_message je_malloc_message
|
|
|
|
# define malloc je_malloc
|
|
|
|
# define calloc je_calloc
|
|
|
|
# define posix_memalign je_posix_memalign
|
|
|
|
# define aligned_alloc je_aligned_alloc
|
|
|
|
# define realloc je_realloc
|
|
|
|
# define free je_free
|
Implement the *allocx() API.
Implement the *allocx() API, which is a successor to the *allocm() API.
The *allocx() functions are slightly simpler to use because they have
fewer parameters, they directly return the results of primary interest,
and mallocx()/rallocx() avoid the strict aliasing pitfall that
allocm()/rallocx() share with posix_memalign(). The following code
violates strict aliasing rules:
foo_t *foo;
allocm((void **)&foo, NULL, 42, 0);
whereas the following is safe:
foo_t *foo;
void *p;
allocm(&p, NULL, 42, 0);
foo = (foo_t *)p;
mallocx() does not have this problem:
foo_t *foo = (foo_t *)mallocx(42, 0);
2013-12-13 14:35:52 +08:00
|
|
|
# define mallocx je_mallocx
|
|
|
|
# define rallocx je_rallocx
|
|
|
|
# define xallocx je_xallocx
|
|
|
|
# define sallocx je_sallocx
|
|
|
|
# define dallocx je_dallocx
|
|
|
|
# define nallocx je_nallocx
|
2013-12-08 03:53:26 +08:00
|
|
|
# define mallctl je_mallctl
|
|
|
|
# define mallctlnametomib je_mallctlnametomib
|
|
|
|
# define mallctlbymib je_mallctlbymib
|
Implement the *allocx() API.
Implement the *allocx() API, which is a successor to the *allocm() API.
The *allocx() functions are slightly simpler to use because they have
fewer parameters, they directly return the results of primary interest,
and mallocx()/rallocx() avoid the strict aliasing pitfall that
allocm()/rallocx() share with posix_memalign(). The following code
violates strict aliasing rules:
foo_t *foo;
allocm((void **)&foo, NULL, 42, 0);
whereas the following is safe:
foo_t *foo;
void *p;
allocm(&p, NULL, 42, 0);
foo = (foo_t *)p;
mallocx() does not have this problem:
foo_t *foo = (foo_t *)mallocx(42, 0);
2013-12-13 14:35:52 +08:00
|
|
|
# define malloc_stats_print je_malloc_stats_print
|
|
|
|
# define malloc_usable_size je_malloc_usable_size
|
2013-12-08 03:53:26 +08:00
|
|
|
# define memalign je_memalign
|
|
|
|
# define valloc je_valloc
|
|
|
|
# ifdef JEMALLOC_EXPERIMENTAL
|
|
|
|
# define allocm je_allocm
|
|
|
|
# define rallocm je_rallocm
|
|
|
|
# define sallocm je_sallocm
|
|
|
|
# define dallocm je_dallocm
|
|
|
|
# define nallocm je_nallocm
|
|
|
|
# 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
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The je_* macros can be used as stable alternative names for the public
|
|
|
|
* jemalloc API if JEMALLOC_NO_DEMANGLE is defined. This is primarily meant
|
|
|
|
* for use in jemalloc itself, but it can be used by application code to
|
|
|
|
* provide isolation from the name mangling specified via --with-mangling
|
|
|
|
* and/or --with-jemalloc-prefix.
|
|
|
|
*/
|
|
|
|
#ifndef JEMALLOC_NO_DEMANGLE
|
2013-12-08 03:53:26 +08:00
|
|
|
# undef je_malloc_conf
|
|
|
|
# undef je_malloc_message
|
|
|
|
# undef je_malloc
|
|
|
|
# undef je_calloc
|
|
|
|
# undef je_posix_memalign
|
|
|
|
# undef je_aligned_alloc
|
|
|
|
# undef je_realloc
|
|
|
|
# undef je_free
|
|
|
|
# undef je_malloc_usable_size
|
|
|
|
# undef je_malloc_stats_print
|
|
|
|
# undef je_mallctl
|
|
|
|
# undef je_mallctlnametomib
|
|
|
|
# undef je_mallctlbymib
|
|
|
|
# undef je_memalign
|
|
|
|
# undef je_valloc
|
Implement the *allocx() API.
Implement the *allocx() API, which is a successor to the *allocm() API.
The *allocx() functions are slightly simpler to use because they have
fewer parameters, they directly return the results of primary interest,
and mallocx()/rallocx() avoid the strict aliasing pitfall that
allocm()/rallocx() share with posix_memalign(). The following code
violates strict aliasing rules:
foo_t *foo;
allocm((void **)&foo, NULL, 42, 0);
whereas the following is safe:
foo_t *foo;
void *p;
allocm(&p, NULL, 42, 0);
foo = (foo_t *)p;
mallocx() does not have this problem:
foo_t *foo = (foo_t *)mallocx(42, 0);
2013-12-13 14:35:52 +08:00
|
|
|
# undef je_mallocx
|
|
|
|
# undef je_rallocx
|
|
|
|
# undef je_xallocx
|
|
|
|
# undef je_sallocx
|
|
|
|
# undef je_dallocx
|
|
|
|
# undef je_nallocx
|
2013-12-08 03:53:26 +08:00
|
|
|
# ifdef JEMALLOC_EXPERIMENTAL
|
|
|
|
# undef je_allocm
|
|
|
|
# undef je_rallocm
|
|
|
|
# undef je_sallocm
|
|
|
|
# undef je_dallocm
|
|
|
|
# undef je_nallocm
|
|
|
|
# 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
|
|
|
#endif
|