2010-01-17 01:53:50 +08:00
|
|
|
/******************************************************************************/
|
|
|
|
#ifdef JEMALLOC_H_TYPES
|
|
|
|
|
2014-10-06 08:54:10 +08:00
|
|
|
#define LARGE_MINCLASS (ZU(1) << LG_LARGE_MINCLASS)
|
|
|
|
|
2016-05-30 09:34:50 +08:00
|
|
|
/* Maximum number of regions in one slab. */
|
|
|
|
#define LG_SLAB_MAXREGS (LG_PAGE - LG_TINY_MIN)
|
|
|
|
#define SLAB_MAXREGS (1U << LG_SLAB_MAXREGS)
|
2011-03-23 00:00:56 +08:00
|
|
|
|
2016-02-20 12:09:31 +08:00
|
|
|
/* Default decay time in seconds. */
|
|
|
|
#define DECAY_TIME_DEFAULT 10
|
|
|
|
/* Number of event ticks between time checks. */
|
|
|
|
#define DECAY_NTICKS_PER_UPDATE 1000
|
|
|
|
|
2016-05-30 09:34:50 +08:00
|
|
|
typedef struct arena_slab_data_s arena_slab_data_t;
|
2011-03-16 04:59:15 +08:00
|
|
|
typedef struct arena_bin_info_s arena_bin_info_t;
|
2016-10-11 11:32:19 +08:00
|
|
|
typedef struct arena_decay_s arena_decay_t;
|
2010-01-17 01:53:50 +08:00
|
|
|
typedef struct arena_bin_s arena_bin_t;
|
|
|
|
typedef struct arena_s arena_t;
|
2016-02-20 11:37:10 +08:00
|
|
|
typedef struct arena_tdata_s arena_tdata_t;
|
2010-01-17 01:53:50 +08:00
|
|
|
|
|
|
|
#endif /* JEMALLOC_H_TYPES */
|
|
|
|
/******************************************************************************/
|
|
|
|
#ifdef JEMALLOC_H_STRUCTS
|
|
|
|
|
2015-02-16 10:04:46 +08:00
|
|
|
#ifdef JEMALLOC_ARENA_STRUCTS_A
|
2016-05-30 09:34:50 +08:00
|
|
|
struct arena_slab_data_s {
|
|
|
|
/* Index of bin this slab is associated with. */
|
2015-08-20 06:21:32 +08:00
|
|
|
szind_t binind;
|
2014-09-29 16:31:39 +08:00
|
|
|
|
2016-05-30 09:34:50 +08:00
|
|
|
/* Number of free regions in slab. */
|
2014-09-29 16:31:39 +08:00
|
|
|
unsigned nfree;
|
|
|
|
|
|
|
|
/* Per region allocated/deallocated bitmap. */
|
|
|
|
bitmap_t bitmap[BITMAP_GROUPS_MAX];
|
|
|
|
};
|
2015-02-16 10:04:46 +08:00
|
|
|
#endif /* JEMALLOC_ARENA_STRUCTS_A */
|
2010-01-17 01:53:50 +08:00
|
|
|
|
2015-02-16 10:04:46 +08:00
|
|
|
#ifdef JEMALLOC_ARENA_STRUCTS_B
|
2011-03-16 04:59:15 +08:00
|
|
|
/*
|
Use bitmaps to track small regions.
The previous free list implementation, which embedded singly linked
lists in available regions, had the unfortunate side effect of causing
many cache misses during thread cache fills. Fix this in two places:
- arena_run_t: Use a new bitmap implementation to track which regions
are available. Furthermore, revert to preferring the
lowest available region (as jemalloc did with its old
bitmap-based approach).
- tcache_t: Move read-only tcache_bin_t metadata into
tcache_bin_info_t, and add a contiguous array of pointers
to tcache_t in order to track cached objects. This
substantially increases the size of tcache_t, but results
in much higher data locality for common tcache operations.
As a side benefit, it is again possible to efficiently
flush the least recently used cached objects, so this
change changes flushing from MRU to LRU.
The new bitmap implementation uses a multi-level summary approach to
make finding the lowest available region very fast. In practice,
bitmaps only have one or two levels, though the implementation is
general enough to handle extremely large bitmaps, mainly so that large
page sizes can still be entertained.
Fix tcache_bin_flush_large() to always flush statistics, in the same way
that tcache_bin_flush_small() was recently fixed.
Use JEMALLOC_DEBUG rather than NDEBUG.
Add dassert(), and use it for debug-only asserts.
2011-03-17 01:30:13 +08:00
|
|
|
* Read-only information associated with each element of arena_t's bins array
|
2011-03-16 04:59:15 +08:00
|
|
|
* is stored separately, partly to reduce memory usage (only one copy, rather
|
|
|
|
* than one per arena), but mainly to avoid false cacheline sharing.
|
2012-04-06 15:35:09 +08:00
|
|
|
*
|
2016-05-30 09:34:50 +08:00
|
|
|
* Each slab has the following layout:
|
2012-04-06 15:35:09 +08:00
|
|
|
*
|
2016-04-06 09:18:15 +08:00
|
|
|
* /--------------------\
|
|
|
|
* | region 0 |
|
|
|
|
* |--------------------|
|
|
|
|
* | region 1 |
|
|
|
|
* |--------------------|
|
|
|
|
* | ... |
|
|
|
|
* | ... |
|
|
|
|
* | ... |
|
|
|
|
* |--------------------|
|
|
|
|
* | region nregs-1 |
|
|
|
|
* \--------------------/
|
2011-03-16 04:59:15 +08:00
|
|
|
*/
|
|
|
|
struct arena_bin_info_s {
|
2016-05-30 09:34:50 +08:00
|
|
|
/* Size of regions in a slab for this bin's size class. */
|
2016-02-23 02:44:58 +08:00
|
|
|
size_t reg_size;
|
2011-03-16 04:59:15 +08:00
|
|
|
|
2016-05-30 09:34:50 +08:00
|
|
|
/* Total size of a slab for this bin's size class. */
|
|
|
|
size_t slab_size;
|
2011-03-16 04:59:15 +08:00
|
|
|
|
2016-05-30 09:34:50 +08:00
|
|
|
/* Total number of regions in a slab for this bin's size class. */
|
2016-02-23 02:44:58 +08:00
|
|
|
uint32_t nregs;
|
2011-03-16 04:59:15 +08:00
|
|
|
|
Use bitmaps to track small regions.
The previous free list implementation, which embedded singly linked
lists in available regions, had the unfortunate side effect of causing
many cache misses during thread cache fills. Fix this in two places:
- arena_run_t: Use a new bitmap implementation to track which regions
are available. Furthermore, revert to preferring the
lowest available region (as jemalloc did with its old
bitmap-based approach).
- tcache_t: Move read-only tcache_bin_t metadata into
tcache_bin_info_t, and add a contiguous array of pointers
to tcache_t in order to track cached objects. This
substantially increases the size of tcache_t, but results
in much higher data locality for common tcache operations.
As a side benefit, it is again possible to efficiently
flush the least recently used cached objects, so this
change changes flushing from MRU to LRU.
The new bitmap implementation uses a multi-level summary approach to
make finding the lowest available region very fast. In practice,
bitmaps only have one or two levels, though the implementation is
general enough to handle extremely large bitmaps, mainly so that large
page sizes can still be entertained.
Fix tcache_bin_flush_large() to always flush statistics, in the same way
that tcache_bin_flush_small() was recently fixed.
Use JEMALLOC_DEBUG rather than NDEBUG.
Add dassert(), and use it for debug-only asserts.
2011-03-17 01:30:13 +08:00
|
|
|
/*
|
2016-05-30 09:34:50 +08:00
|
|
|
* Metadata used to manipulate bitmaps for slabs associated with this
|
Use bitmaps to track small regions.
The previous free list implementation, which embedded singly linked
lists in available regions, had the unfortunate side effect of causing
many cache misses during thread cache fills. Fix this in two places:
- arena_run_t: Use a new bitmap implementation to track which regions
are available. Furthermore, revert to preferring the
lowest available region (as jemalloc did with its old
bitmap-based approach).
- tcache_t: Move read-only tcache_bin_t metadata into
tcache_bin_info_t, and add a contiguous array of pointers
to tcache_t in order to track cached objects. This
substantially increases the size of tcache_t, but results
in much higher data locality for common tcache operations.
As a side benefit, it is again possible to efficiently
flush the least recently used cached objects, so this
change changes flushing from MRU to LRU.
The new bitmap implementation uses a multi-level summary approach to
make finding the lowest available region very fast. In practice,
bitmaps only have one or two levels, though the implementation is
general enough to handle extremely large bitmaps, mainly so that large
page sizes can still be entertained.
Fix tcache_bin_flush_large() to always flush statistics, in the same way
that tcache_bin_flush_small() was recently fixed.
Use JEMALLOC_DEBUG rather than NDEBUG.
Add dassert(), and use it for debug-only asserts.
2011-03-17 01:30:13 +08:00
|
|
|
* bin.
|
|
|
|
*/
|
2016-02-23 02:44:58 +08:00
|
|
|
bitmap_info_t bitmap_info;
|
2011-03-16 04:59:15 +08:00
|
|
|
};
|
|
|
|
|
2016-10-11 11:32:19 +08:00
|
|
|
struct arena_decay_s {
|
|
|
|
/*
|
|
|
|
* Approximate time in seconds from the creation of a set of unused
|
|
|
|
* dirty pages until an equivalent set of unused dirty pages is purged
|
|
|
|
* and/or reused.
|
|
|
|
*/
|
|
|
|
ssize_t time;
|
2016-10-12 06:30:01 +08:00
|
|
|
/* time / SMOOTHSTEP_NSTEPS. */
|
2016-10-11 11:32:19 +08:00
|
|
|
nstime_t interval;
|
|
|
|
/*
|
|
|
|
* Time at which the current decay interval logically started. We do
|
|
|
|
* not actually advance to a new epoch until sometime after it starts
|
|
|
|
* because of scheduling and computation delays, and it is even possible
|
|
|
|
* to completely skip epochs. In all cases, during epoch advancement we
|
|
|
|
* merge all relevant activity into the most recently recorded epoch.
|
|
|
|
*/
|
|
|
|
nstime_t epoch;
|
2016-10-12 06:30:01 +08:00
|
|
|
/* Deadline randomness generator. */
|
2016-10-11 11:32:19 +08:00
|
|
|
uint64_t jitter_state;
|
|
|
|
/*
|
2016-10-12 06:30:01 +08:00
|
|
|
* Deadline for current epoch. This is the sum of interval and per
|
|
|
|
* epoch jitter which is a uniform random variable in [0..interval).
|
|
|
|
* Epochs always advance by precise multiples of interval, but we
|
|
|
|
* randomize the deadline to reduce the likelihood of arenas purging in
|
|
|
|
* lockstep.
|
2016-10-11 11:32:19 +08:00
|
|
|
*/
|
|
|
|
nstime_t deadline;
|
|
|
|
/*
|
|
|
|
* Number of dirty pages at beginning of current epoch. During epoch
|
2016-10-12 06:30:01 +08:00
|
|
|
* advancement we use the delta between arena->decay.ndirty and
|
|
|
|
* arena->ndirty to determine how many dirty pages, if any, were
|
|
|
|
* generated.
|
2016-10-11 11:32:19 +08:00
|
|
|
*/
|
|
|
|
size_t ndirty;
|
|
|
|
/*
|
|
|
|
* Trailing log of how many unused dirty pages were generated during
|
|
|
|
* each of the past SMOOTHSTEP_NSTEPS decay epochs, where the last
|
|
|
|
* element is the most recent epoch. Corresponding epoch times are
|
2016-10-12 06:30:01 +08:00
|
|
|
* relative to epoch.
|
2016-10-11 11:32:19 +08:00
|
|
|
*/
|
|
|
|
size_t backlog[SMOOTHSTEP_NSTEPS];
|
|
|
|
};
|
|
|
|
|
2010-01-17 01:53:50 +08:00
|
|
|
struct arena_bin_s {
|
2016-05-30 09:34:50 +08:00
|
|
|
/* All operations on arena_bin_t fields require lock ownership. */
|
2016-02-23 02:44:58 +08:00
|
|
|
malloc_mutex_t lock;
|
2010-03-14 12:32:56 +08:00
|
|
|
|
2010-01-17 01:53:50 +08:00
|
|
|
/*
|
2016-05-30 09:34:50 +08:00
|
|
|
* Current slab being used to service allocations of this bin's size
|
|
|
|
* class. slabcur is independent of slabs_{nonfull,full}; whenever
|
|
|
|
* slabcur is reassigned, the previous slab must be deallocated or
|
|
|
|
* inserted into slabs_{nonfull,full}.
|
2010-01-17 01:53:50 +08:00
|
|
|
*/
|
2016-05-30 09:34:50 +08:00
|
|
|
extent_t *slabcur;
|
2010-01-17 01:53:50 +08:00
|
|
|
|
|
|
|
/*
|
2016-05-30 09:34:50 +08:00
|
|
|
* Heap of non-full slabs. This heap is used to assure that new
|
|
|
|
* allocations come from the non-full slab that is lowest in memory.
|
2010-01-17 01:53:50 +08:00
|
|
|
*/
|
2016-05-30 09:34:50 +08:00
|
|
|
extent_heap_t slabs_nonfull;
|
|
|
|
|
|
|
|
/* Ring sentinel used to track full slabs. */
|
|
|
|
extent_t slabs_full;
|
2010-01-17 01:53:50 +08:00
|
|
|
|
|
|
|
/* Bin statistics. */
|
2016-02-23 02:44:58 +08:00
|
|
|
malloc_bin_stats_t stats;
|
2010-01-17 01:53:50 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct arena_s {
|
2010-02-11 02:37:56 +08:00
|
|
|
/* This arena's index within the arenas array. */
|
|
|
|
unsigned ind;
|
|
|
|
|
2010-03-14 12:32:56 +08:00
|
|
|
/*
|
2016-04-23 05:34:14 +08:00
|
|
|
* Number of threads currently assigned to this arena, synchronized via
|
|
|
|
* atomic operations. Each thread has two distinct assignments, one for
|
|
|
|
* application-serving allocation, and the other for internal metadata
|
|
|
|
* allocation. Internal metadata must not be allocated from arenas
|
|
|
|
* created via the arenas.extend mallctl, because the arena.<i>.reset
|
|
|
|
* mallctl indiscriminately discards all allocations for the affected
|
|
|
|
* arena.
|
|
|
|
*
|
|
|
|
* 0: Application allocation.
|
|
|
|
* 1: Internal metadata allocation.
|
2011-03-19 04:41:33 +08:00
|
|
|
*/
|
2016-04-23 05:34:14 +08:00
|
|
|
unsigned nthreads[2];
|
2011-03-19 04:41:33 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* There are three classes of arena operations from a locking
|
|
|
|
* perspective:
|
2016-02-25 15:58:10 +08:00
|
|
|
* 1) Thread assignment (modifies nthreads) is synchronized via atomics.
|
2011-03-19 04:41:33 +08:00
|
|
|
* 2) Bin-related operations are protected by bin locks.
|
2016-05-30 09:34:50 +08:00
|
|
|
* 3) Chunk-related operations are protected by this mutex.
|
2010-03-14 12:32:56 +08:00
|
|
|
*/
|
2010-01-17 01:53:50 +08:00
|
|
|
malloc_mutex_t lock;
|
|
|
|
|
|
|
|
arena_stats_t stats;
|
|
|
|
/*
|
|
|
|
* List of tcaches for extant threads associated with this arena.
|
2015-01-30 07:30:47 +08:00
|
|
|
* Stats from these are merged incrementally, and at exit if
|
|
|
|
* opt_stats_print is enabled.
|
2010-01-17 01:53:50 +08:00
|
|
|
*/
|
|
|
|
ql_head(tcache_t) tcache_ql;
|
|
|
|
|
2010-02-12 05:19:21 +08:00
|
|
|
uint64_t prof_accumbytes;
|
|
|
|
|
2015-05-05 00:58:36 +08:00
|
|
|
/*
|
|
|
|
* PRNG state for cache index randomization of large allocation base
|
|
|
|
* pointers.
|
|
|
|
*/
|
|
|
|
uint64_t offset_state;
|
|
|
|
|
2012-10-12 04:53:15 +08:00
|
|
|
dss_prec_t dss_prec;
|
|
|
|
|
2016-02-20 12:09:31 +08:00
|
|
|
/* True if a thread is currently executing arena_purge_to_limit(). */
|
2015-06-23 09:50:32 +08:00
|
|
|
bool purging;
|
|
|
|
|
2016-05-30 09:34:50 +08:00
|
|
|
/* Number of pages in active extents. */
|
2010-01-25 08:41:01 +08:00
|
|
|
size_t nactive;
|
2010-01-17 01:53:50 +08:00
|
|
|
|
|
|
|
/*
|
2016-05-30 09:34:50 +08:00
|
|
|
* Current count of pages within unused extents that are potentially
|
2010-01-17 01:53:50 +08:00
|
|
|
* dirty, and for which madvise(... MADV_DONTNEED) has not been called.
|
|
|
|
* By tracking this, we can institute a limit on how much dirty unused
|
|
|
|
* memory is mapped for each arena.
|
|
|
|
*/
|
|
|
|
size_t ndirty;
|
|
|
|
|
2016-10-11 11:32:19 +08:00
|
|
|
/* Decay-based purging state. */
|
|
|
|
arena_decay_t decay;
|
2016-02-20 12:09:31 +08:00
|
|
|
|
2016-06-01 05:50:21 +08:00
|
|
|
/* Extant large allocations. */
|
|
|
|
ql_head(extent_t) large;
|
|
|
|
/* Synchronizes all large allocation/update/deallocation. */
|
|
|
|
malloc_mutex_t large_mtx;
|
Move centralized chunk management into arenas.
Migrate all centralized data structures related to huge allocations and
recyclable chunks into arena_t, so that each arena can manage huge
allocations and recyclable virtual memory completely independently of
other arenas.
Add chunk node caching to arenas, in order to avoid contention on the
base allocator.
Use chunks_rtree to look up huge allocations rather than a red-black
tree. Maintain a per arena unsorted list of huge allocations (which
will be needed to enumerate huge allocations during arena reset).
Remove the --enable-ivsalloc option, make ivsalloc() always available,
and use it for size queries if --enable-debug is enabled. The only
practical implications to this removal are that 1) ivsalloc() is now
always available during live debugging (and the underlying radix tree is
available during core-based debugging), and 2) size query validation can
no longer be enabled independent of --enable-debug.
Remove the stats.chunks.{current,total,high} mallctls, and replace their
underlying statistics with simpler atomically updated counters used
exclusively for gdump triggering. These statistics are no longer very
useful because each arena manages chunks independently, and per arena
statistics provide similar information.
Simplify chunk synchronization code, now that base chunk allocation
cannot cause recursive lock acquisition.
2015-02-12 04:24:27 +08:00
|
|
|
|
|
|
|
/*
|
2016-06-02 02:35:30 +08:00
|
|
|
* Heaps of extents that were previously allocated. These are used when
|
|
|
|
* allocating extents, in an attempt to re-use address space.
|
Move centralized chunk management into arenas.
Migrate all centralized data structures related to huge allocations and
recyclable chunks into arena_t, so that each arena can manage huge
allocations and recyclable virtual memory completely independently of
other arenas.
Add chunk node caching to arenas, in order to avoid contention on the
base allocator.
Use chunks_rtree to look up huge allocations rather than a red-black
tree. Maintain a per arena unsorted list of huge allocations (which
will be needed to enumerate huge allocations during arena reset).
Remove the --enable-ivsalloc option, make ivsalloc() always available,
and use it for size queries if --enable-debug is enabled. The only
practical implications to this removal are that 1) ivsalloc() is now
always available during live debugging (and the underlying radix tree is
available during core-based debugging), and 2) size query validation can
no longer be enabled independent of --enable-debug.
Remove the stats.chunks.{current,total,high} mallctls, and replace their
underlying statistics with simpler atomically updated counters used
exclusively for gdump triggering. These statistics are no longer very
useful because each arena manages chunks independently, and per arena
statistics provide similar information.
Simplify chunk synchronization code, now that base chunk allocation
cannot cause recursive lock acquisition.
2015-02-12 04:24:27 +08:00
|
|
|
*/
|
2016-06-02 02:35:30 +08:00
|
|
|
extent_heap_t extents_cached[NPSIZES];
|
|
|
|
extent_heap_t extents_retained[NPSIZES];
|
2016-09-23 02:57:28 +08:00
|
|
|
/*
|
|
|
|
* Ring sentinel used to track unused dirty memory. Dirty memory is
|
|
|
|
* managed as an LRU of cached extents.
|
|
|
|
*/
|
|
|
|
extent_t extents_dirty;
|
|
|
|
/* Protects extents_{cached,retained,dirty}. */
|
2016-06-02 02:35:30 +08:00
|
|
|
malloc_mutex_t extents_mtx;
|
Generalize chunk management hooks.
Add the "arena.<i>.chunk_hooks" mallctl, which replaces and expands on
the "arena.<i>.chunk.{alloc,dalloc,purge}" mallctls. The chunk hooks
allow control over chunk allocation/deallocation, decommit/commit,
purging, and splitting/merging, such that the application can rely on
jemalloc's internal chunk caching and retaining functionality, yet
implement a variety of chunk management mechanisms and policies.
Merge the chunks_[sz]ad_{mmap,dss} red-black trees into
chunks_[sz]ad_retained. This slightly reduces how hard jemalloc tries
to honor the dss precedence setting; prior to this change the precedence
setting was also consulted when recycling chunks.
Fix chunk purging. Don't purge chunks in arena_purge_stashed(); instead
deallocate them in arena_unstash_purged(), so that the dirty memory
linkage remains valid until after the last time it is used.
This resolves #176 and #201.
2015-07-28 23:28:19 +08:00
|
|
|
|
2016-06-04 03:05:53 +08:00
|
|
|
/* User-configurable extent hook functions. */
|
|
|
|
union {
|
|
|
|
extent_hooks_t *extent_hooks;
|
|
|
|
void *extent_hooks_pun;
|
|
|
|
};
|
|
|
|
|
2016-03-24 12:09:28 +08:00
|
|
|
/* Cache of extent structures that were allocated via base_alloc(). */
|
|
|
|
ql_head(extent_t) extent_cache;
|
|
|
|
malloc_mutex_t extent_cache_mtx;
|
Move centralized chunk management into arenas.
Migrate all centralized data structures related to huge allocations and
recyclable chunks into arena_t, so that each arena can manage huge
allocations and recyclable virtual memory completely independently of
other arenas.
Add chunk node caching to arenas, in order to avoid contention on the
base allocator.
Use chunks_rtree to look up huge allocations rather than a red-black
tree. Maintain a per arena unsorted list of huge allocations (which
will be needed to enumerate huge allocations during arena reset).
Remove the --enable-ivsalloc option, make ivsalloc() always available,
and use it for size queries if --enable-debug is enabled. The only
practical implications to this removal are that 1) ivsalloc() is now
always available during live debugging (and the underlying radix tree is
available during core-based debugging), and 2) size query validation can
no longer be enabled independent of --enable-debug.
Remove the stats.chunks.{current,total,high} mallctls, and replace their
underlying statistics with simpler atomically updated counters used
exclusively for gdump triggering. These statistics are no longer very
useful because each arena manages chunks independently, and per arena
statistics provide similar information.
Simplify chunk synchronization code, now that base chunk allocation
cannot cause recursive lock acquisition.
2015-02-12 04:24:27 +08:00
|
|
|
|
2016-05-30 09:34:50 +08:00
|
|
|
/* bins is used to store heaps of free regions. */
|
2012-02-29 08:50:47 +08:00
|
|
|
arena_bin_t bins[NBINS];
|
2010-01-17 01:53:50 +08:00
|
|
|
};
|
2016-02-20 11:37:10 +08:00
|
|
|
|
|
|
|
/* Used in conjunction with tsd for fast arena-related context lookup. */
|
|
|
|
struct arena_tdata_s {
|
2016-02-20 12:09:31 +08:00
|
|
|
ticker_t decay_ticker;
|
2016-02-20 11:37:10 +08:00
|
|
|
};
|
2015-02-16 10:04:46 +08:00
|
|
|
#endif /* JEMALLOC_ARENA_STRUCTS_B */
|
2010-01-17 01:53:50 +08:00
|
|
|
|
|
|
|
#endif /* JEMALLOC_H_STRUCTS */
|
|
|
|
/******************************************************************************/
|
|
|
|
#ifdef JEMALLOC_H_EXTERNS
|
|
|
|
|
2015-05-05 00:58:36 +08:00
|
|
|
static const size_t large_pad =
|
|
|
|
#ifdef JEMALLOC_CACHE_OBLIVIOUS
|
|
|
|
PAGE
|
|
|
|
#else
|
|
|
|
0
|
|
|
|
#endif
|
|
|
|
;
|
|
|
|
|
2016-02-20 12:09:31 +08:00
|
|
|
extern ssize_t opt_decay_time;
|
2010-01-17 01:53:50 +08:00
|
|
|
|
2016-04-07 20:04:12 +08:00
|
|
|
extern const arena_bin_info_t arena_bin_info[NBINS];
|
2010-01-17 01:53:50 +08:00
|
|
|
|
2016-06-02 03:59:02 +08:00
|
|
|
extent_t *arena_extent_cache_alloc(tsdn_t *tsdn, arena_t *arena,
|
2016-06-04 03:05:53 +08:00
|
|
|
extent_hooks_t **r_extent_hooks, void *new_addr, size_t size,
|
|
|
|
size_t alignment, bool *zero);
|
2016-06-02 03:59:02 +08:00
|
|
|
void arena_extent_cache_dalloc(tsdn_t *tsdn, arena_t *arena,
|
2016-06-04 03:05:53 +08:00
|
|
|
extent_hooks_t **r_extent_hooks, extent_t *extent);
|
2016-09-23 02:57:28 +08:00
|
|
|
void arena_extent_cache_maybe_insert(tsdn_t *tsdn, arena_t *arena,
|
|
|
|
extent_t *extent, bool cache);
|
|
|
|
void arena_extent_cache_maybe_remove(tsdn_t *tsdn, arena_t *arena,
|
|
|
|
extent_t *extent, bool cache);
|
2016-06-02 03:59:02 +08:00
|
|
|
extent_t *arena_extent_alloc_large(tsdn_t *tsdn, arena_t *arena,
|
2016-05-19 12:02:46 +08:00
|
|
|
size_t usize, size_t alignment, bool *zero);
|
2016-06-02 03:59:02 +08:00
|
|
|
void arena_extent_dalloc_large(tsdn_t *tsdn, arena_t *arena,
|
|
|
|
extent_t *extent, bool locked);
|
|
|
|
void arena_extent_ralloc_large_shrink(tsdn_t *tsdn, arena_t *arena,
|
2016-05-19 12:02:46 +08:00
|
|
|
extent_t *extent, size_t oldsize);
|
2016-06-02 03:59:02 +08:00
|
|
|
void arena_extent_ralloc_large_expand(tsdn_t *tsdn, arena_t *arena,
|
2016-05-19 12:02:46 +08:00
|
|
|
extent_t *extent, size_t oldsize);
|
2016-05-11 13:21:10 +08:00
|
|
|
ssize_t arena_decay_time_get(tsdn_t *tsdn, arena_t *arena);
|
|
|
|
bool arena_decay_time_set(tsdn_t *tsdn, arena_t *arena, ssize_t decay_time);
|
|
|
|
void arena_purge(tsdn_t *tsdn, arena_t *arena, bool all);
|
|
|
|
void arena_maybe_purge(tsdn_t *tsdn, arena_t *arena);
|
2016-04-23 05:37:17 +08:00
|
|
|
void arena_reset(tsd_t *tsd, arena_t *arena);
|
2016-05-11 13:21:10 +08:00
|
|
|
void arena_tcache_fill_small(tsdn_t *tsdn, arena_t *arena,
|
|
|
|
tcache_bin_t *tbin, szind_t binind, uint64_t prof_accumbytes);
|
2016-04-07 20:04:12 +08:00
|
|
|
void arena_alloc_junk_small(void *ptr, const arena_bin_info_t *bin_info,
|
2012-04-06 15:35:09 +08:00
|
|
|
bool zero);
|
2013-12-18 07:14:36 +08:00
|
|
|
#ifdef JEMALLOC_JET
|
2016-04-07 20:04:12 +08:00
|
|
|
typedef void (arena_dalloc_junk_small_t)(void *, const arena_bin_info_t *);
|
2014-01-08 08:47:56 +08:00
|
|
|
extern arena_dalloc_junk_small_t *arena_dalloc_junk_small;
|
|
|
|
#else
|
2016-04-07 20:04:12 +08:00
|
|
|
void arena_dalloc_junk_small(void *ptr, const arena_bin_info_t *bin_info);
|
2014-01-08 08:47:56 +08:00
|
|
|
#endif
|
2016-05-11 13:21:10 +08:00
|
|
|
void *arena_malloc_hard(tsdn_t *tsdn, arena_t *arena, size_t size,
|
|
|
|
szind_t ind, bool zero);
|
|
|
|
void *arena_palloc(tsdn_t *tsdn, arena_t *arena, size_t usize,
|
2015-02-13 06:06:37 +08:00
|
|
|
size_t alignment, bool zero, tcache_t *tcache);
|
2016-05-28 15:17:28 +08:00
|
|
|
void arena_prof_promote(tsdn_t *tsdn, extent_t *extent, const void *ptr,
|
|
|
|
size_t usize);
|
|
|
|
void arena_dalloc_promoted(tsdn_t *tsdn, extent_t *extent, void *ptr,
|
|
|
|
tcache_t *tcache, bool slow_path);
|
2016-05-11 13:21:10 +08:00
|
|
|
void arena_dalloc_bin_junked_locked(tsdn_t *tsdn, arena_t *arena,
|
2016-05-30 09:34:50 +08:00
|
|
|
extent_t *extent, void *ptr);
|
|
|
|
void arena_dalloc_small(tsdn_t *tsdn, arena_t *arena, extent_t *extent,
|
|
|
|
void *ptr);
|
2016-03-24 11:29:33 +08:00
|
|
|
bool arena_ralloc_no_move(tsdn_t *tsdn, extent_t *extent, void *ptr,
|
|
|
|
size_t oldsize, size_t size, size_t extra, bool zero);
|
|
|
|
void *arena_ralloc(tsdn_t *tsdn, arena_t *arena, extent_t *extent, void *ptr,
|
|
|
|
size_t oldsize, size_t size, size_t alignment, bool zero, tcache_t *tcache);
|
2016-05-11 13:21:10 +08:00
|
|
|
dss_prec_t arena_dss_prec_get(tsdn_t *tsdn, arena_t *arena);
|
|
|
|
bool arena_dss_prec_set(tsdn_t *tsdn, arena_t *arena, dss_prec_t dss_prec);
|
2016-02-20 12:09:31 +08:00
|
|
|
ssize_t arena_decay_time_default_get(void);
|
|
|
|
bool arena_decay_time_default_set(ssize_t decay_time);
|
2016-05-11 13:21:10 +08:00
|
|
|
void arena_basic_stats_merge(tsdn_t *tsdn, arena_t *arena,
|
2016-10-13 01:40:27 +08:00
|
|
|
unsigned *nthreads, const char **dss, ssize_t *decay_time, size_t *nactive,
|
|
|
|
size_t *ndirty);
|
2016-05-11 13:21:10 +08:00
|
|
|
void arena_stats_merge(tsdn_t *tsdn, arena_t *arena, unsigned *nthreads,
|
2016-10-13 01:40:27 +08:00
|
|
|
const char **dss, ssize_t *decay_time, size_t *nactive, size_t *ndirty,
|
|
|
|
arena_stats_t *astats, malloc_bin_stats_t *bstats,
|
|
|
|
malloc_large_stats_t *lstats);
|
2016-04-23 05:34:14 +08:00
|
|
|
unsigned arena_nthreads_get(arena_t *arena, bool internal);
|
|
|
|
void arena_nthreads_inc(arena_t *arena, bool internal);
|
|
|
|
void arena_nthreads_dec(arena_t *arena, bool internal);
|
2016-05-11 13:21:10 +08:00
|
|
|
arena_t *arena_new(tsdn_t *tsdn, unsigned ind);
|
2016-04-09 05:16:19 +08:00
|
|
|
void arena_boot(void);
|
2016-05-11 13:21:10 +08:00
|
|
|
void arena_prefork0(tsdn_t *tsdn, arena_t *arena);
|
|
|
|
void arena_prefork1(tsdn_t *tsdn, arena_t *arena);
|
|
|
|
void arena_prefork2(tsdn_t *tsdn, arena_t *arena);
|
|
|
|
void arena_prefork3(tsdn_t *tsdn, arena_t *arena);
|
|
|
|
void arena_postfork_parent(tsdn_t *tsdn, arena_t *arena);
|
|
|
|
void arena_postfork_child(tsdn_t *tsdn, arena_t *arena);
|
2010-01-17 01:53:50 +08:00
|
|
|
|
|
|
|
#endif /* JEMALLOC_H_EXTERNS */
|
|
|
|
/******************************************************************************/
|
|
|
|
#ifdef JEMALLOC_H_INLINES
|
|
|
|
|
|
|
|
#ifndef JEMALLOC_ENABLE_INLINE
|
2016-06-02 04:40:48 +08:00
|
|
|
void arena_metadata_add(arena_t *arena, size_t size);
|
|
|
|
void arena_metadata_sub(arena_t *arena, size_t size);
|
|
|
|
size_t arena_metadata_get(arena_t *arena);
|
2013-02-07 03:59:30 +08:00
|
|
|
bool arena_prof_accum_impl(arena_t *arena, uint64_t accumbytes);
|
|
|
|
bool arena_prof_accum_locked(arena_t *arena, uint64_t accumbytes);
|
2016-05-11 13:21:10 +08:00
|
|
|
bool arena_prof_accum(tsdn_t *tsdn, arena_t *arena, uint64_t accumbytes);
|
2015-08-20 06:21:32 +08:00
|
|
|
szind_t arena_bin_index(arena_t *arena, arena_bin_t *bin);
|
2016-03-24 11:29:33 +08:00
|
|
|
prof_tctx_t *arena_prof_tctx_get(tsdn_t *tsdn, const extent_t *extent,
|
|
|
|
const void *ptr);
|
|
|
|
void arena_prof_tctx_set(tsdn_t *tsdn, extent_t *extent, const void *ptr,
|
|
|
|
size_t usize, prof_tctx_t *tctx);
|
|
|
|
void arena_prof_tctx_reset(tsdn_t *tsdn, extent_t *extent, const void *ptr,
|
2016-05-30 09:34:50 +08:00
|
|
|
prof_tctx_t *tctx);
|
2016-05-11 13:21:10 +08:00
|
|
|
void arena_decay_ticks(tsdn_t *tsdn, arena_t *arena, unsigned nticks);
|
|
|
|
void arena_decay_tick(tsdn_t *tsdn, arena_t *arena);
|
|
|
|
void *arena_malloc(tsdn_t *tsdn, arena_t *arena, size_t size, szind_t ind,
|
2015-10-28 06:12:10 +08:00
|
|
|
bool zero, tcache_t *tcache, bool slow_path);
|
2016-04-16 15:36:11 +08:00
|
|
|
arena_t *arena_aalloc(tsdn_t *tsdn, const void *ptr);
|
2016-05-28 15:17:28 +08:00
|
|
|
size_t arena_salloc(tsdn_t *tsdn, const extent_t *extent, const void *ptr);
|
2016-03-24 11:29:33 +08:00
|
|
|
void arena_dalloc(tsdn_t *tsdn, extent_t *extent, void *ptr,
|
|
|
|
tcache_t *tcache, bool slow_path);
|
|
|
|
void arena_sdalloc(tsdn_t *tsdn, extent_t *extent, void *ptr, size_t size,
|
|
|
|
tcache_t *tcache, bool slow_path);
|
2010-01-17 01:53:50 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if (defined(JEMALLOC_ENABLE_INLINE) || defined(JEMALLOC_ARENA_C_))
|
2012-05-02 15:30:36 +08:00
|
|
|
# ifdef JEMALLOC_ARENA_INLINE_A
|
2014-11-28 03:22:36 +08:00
|
|
|
JEMALLOC_INLINE void
|
2016-06-02 04:40:48 +08:00
|
|
|
arena_metadata_add(arena_t *arena, size_t size)
|
2014-11-28 03:22:36 +08:00
|
|
|
{
|
|
|
|
|
2016-06-02 04:40:48 +08:00
|
|
|
atomic_add_z(&arena->stats.metadata, size);
|
2014-11-28 03:22:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
JEMALLOC_INLINE void
|
2016-06-02 04:40:48 +08:00
|
|
|
arena_metadata_sub(arena_t *arena, size_t size)
|
2014-11-28 03:22:36 +08:00
|
|
|
{
|
|
|
|
|
2016-06-02 04:40:48 +08:00
|
|
|
atomic_sub_z(&arena->stats.metadata, size);
|
2014-11-28 03:22:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
JEMALLOC_INLINE size_t
|
2016-06-02 04:40:48 +08:00
|
|
|
arena_metadata_get(arena_t *arena)
|
2014-11-28 03:22:36 +08:00
|
|
|
{
|
|
|
|
|
2016-06-02 04:40:48 +08:00
|
|
|
return (atomic_read_z(&arena->stats.metadata));
|
2014-11-28 03:22:36 +08:00
|
|
|
}
|
|
|
|
|
2013-02-07 03:59:30 +08:00
|
|
|
JEMALLOC_INLINE bool
|
2012-11-14 04:56:27 +08:00
|
|
|
arena_prof_accum_impl(arena_t *arena, uint64_t accumbytes)
|
|
|
|
{
|
|
|
|
|
|
|
|
cassert(config_prof);
|
|
|
|
assert(prof_interval != 0);
|
|
|
|
|
|
|
|
arena->prof_accumbytes += accumbytes;
|
|
|
|
if (arena->prof_accumbytes >= prof_interval) {
|
2016-05-29 08:29:03 +08:00
|
|
|
arena->prof_accumbytes %= prof_interval;
|
2013-02-07 03:59:30 +08:00
|
|
|
return (true);
|
2012-11-14 04:56:27 +08:00
|
|
|
}
|
2013-02-07 03:59:30 +08:00
|
|
|
return (false);
|
2012-11-14 04:56:27 +08:00
|
|
|
}
|
|
|
|
|
2013-02-07 03:59:30 +08:00
|
|
|
JEMALLOC_INLINE bool
|
2012-11-14 04:56:27 +08:00
|
|
|
arena_prof_accum_locked(arena_t *arena, uint64_t accumbytes)
|
|
|
|
{
|
|
|
|
|
|
|
|
cassert(config_prof);
|
|
|
|
|
2014-09-12 07:20:44 +08:00
|
|
|
if (likely(prof_interval == 0))
|
2013-02-07 03:59:30 +08:00
|
|
|
return (false);
|
|
|
|
return (arena_prof_accum_impl(arena, accumbytes));
|
2012-11-14 04:56:27 +08:00
|
|
|
}
|
|
|
|
|
2013-02-07 03:59:30 +08:00
|
|
|
JEMALLOC_INLINE bool
|
2016-05-11 13:21:10 +08:00
|
|
|
arena_prof_accum(tsdn_t *tsdn, arena_t *arena, uint64_t accumbytes)
|
2012-11-14 04:56:27 +08:00
|
|
|
{
|
|
|
|
|
|
|
|
cassert(config_prof);
|
|
|
|
|
2014-09-12 07:20:44 +08:00
|
|
|
if (likely(prof_interval == 0))
|
2013-02-07 03:59:30 +08:00
|
|
|
return (false);
|
|
|
|
|
|
|
|
{
|
|
|
|
bool ret;
|
|
|
|
|
2016-05-11 13:21:10 +08:00
|
|
|
malloc_mutex_lock(tsdn, &arena->lock);
|
2013-02-07 03:59:30 +08:00
|
|
|
ret = arena_prof_accum_impl(arena, accumbytes);
|
2016-05-11 13:21:10 +08:00
|
|
|
malloc_mutex_unlock(tsdn, &arena->lock);
|
2013-02-07 03:59:30 +08:00
|
|
|
return (ret);
|
|
|
|
}
|
2012-11-14 04:56:27 +08:00
|
|
|
}
|
2016-03-24 11:29:33 +08:00
|
|
|
# endif /* JEMALLOC_ARENA_INLINE_A */
|
2012-11-14 04:56:27 +08:00
|
|
|
|
2016-03-24 11:29:33 +08:00
|
|
|
# ifdef JEMALLOC_ARENA_INLINE_B
|
2015-08-20 06:21:32 +08:00
|
|
|
JEMALLOC_INLINE szind_t
|
2011-03-16 04:59:15 +08:00
|
|
|
arena_bin_index(arena_t *arena, arena_bin_t *bin)
|
|
|
|
{
|
2016-02-25 04:42:23 +08:00
|
|
|
szind_t binind = (szind_t)(bin - arena->bins);
|
2012-02-29 08:50:47 +08:00
|
|
|
assert(binind < NBINS);
|
2011-03-16 04:59:15 +08:00
|
|
|
return (binind);
|
|
|
|
}
|
|
|
|
|
2014-08-19 07:22:13 +08:00
|
|
|
JEMALLOC_INLINE prof_tctx_t *
|
2016-03-24 11:29:33 +08:00
|
|
|
arena_prof_tctx_get(tsdn_t *tsdn, const extent_t *extent, const void *ptr)
|
2010-10-21 11:52:00 +08:00
|
|
|
{
|
|
|
|
|
2012-02-11 12:22:09 +08:00
|
|
|
cassert(config_prof);
|
2010-10-21 11:52:00 +08:00
|
|
|
assert(ptr != NULL);
|
|
|
|
|
2016-05-30 09:34:50 +08:00
|
|
|
if (unlikely(!extent_slab_get(extent)))
|
2016-06-01 05:50:21 +08:00
|
|
|
return (large_prof_tctx_get(tsdn, extent));
|
2016-05-30 09:34:50 +08:00
|
|
|
return ((prof_tctx_t *)(uintptr_t)1U);
|
2010-10-21 11:52:00 +08:00
|
|
|
}
|
2010-10-23 01:45:59 +08:00
|
|
|
|
|
|
|
JEMALLOC_INLINE void
|
2016-03-24 11:29:33 +08:00
|
|
|
arena_prof_tctx_set(tsdn_t *tsdn, extent_t *extent, const void *ptr,
|
|
|
|
size_t usize, prof_tctx_t *tctx)
|
2010-10-23 01:45:59 +08:00
|
|
|
{
|
|
|
|
|
2012-02-11 12:22:09 +08:00
|
|
|
cassert(config_prof);
|
2010-10-23 01:45:59 +08:00
|
|
|
assert(ptr != NULL);
|
|
|
|
|
2016-05-30 09:34:50 +08:00
|
|
|
if (unlikely(!extent_slab_get(extent)))
|
2016-06-01 05:50:21 +08:00
|
|
|
large_prof_tctx_set(tsdn, extent, tctx);
|
2010-10-23 01:45:59 +08:00
|
|
|
}
|
2010-10-21 11:52:00 +08:00
|
|
|
|
2015-09-15 14:48:11 +08:00
|
|
|
JEMALLOC_INLINE void
|
2016-03-24 11:29:33 +08:00
|
|
|
arena_prof_tctx_reset(tsdn_t *tsdn, extent_t *extent, const void *ptr,
|
2016-05-30 09:34:50 +08:00
|
|
|
prof_tctx_t *tctx)
|
2015-09-15 14:48:11 +08:00
|
|
|
{
|
|
|
|
|
|
|
|
cassert(config_prof);
|
|
|
|
assert(ptr != NULL);
|
2016-05-30 09:34:50 +08:00
|
|
|
assert(!extent_slab_get(extent));
|
2015-09-15 14:48:11 +08:00
|
|
|
|
2016-06-01 05:50:21 +08:00
|
|
|
large_prof_tctx_reset(tsdn, extent);
|
2015-09-15 14:48:11 +08:00
|
|
|
}
|
|
|
|
|
2016-02-20 12:09:31 +08:00
|
|
|
JEMALLOC_ALWAYS_INLINE void
|
2016-05-11 13:21:10 +08:00
|
|
|
arena_decay_ticks(tsdn_t *tsdn, arena_t *arena, unsigned nticks)
|
2016-02-20 12:09:31 +08:00
|
|
|
{
|
2016-05-11 13:21:10 +08:00
|
|
|
tsd_t *tsd;
|
2016-02-20 12:09:31 +08:00
|
|
|
ticker_t *decay_ticker;
|
|
|
|
|
2016-05-11 13:21:10 +08:00
|
|
|
if (unlikely(tsdn_null(tsdn)))
|
2016-02-20 12:09:31 +08:00
|
|
|
return;
|
2016-05-11 13:21:10 +08:00
|
|
|
tsd = tsdn_tsd(tsdn);
|
2016-02-20 12:09:31 +08:00
|
|
|
decay_ticker = decay_ticker_get(tsd, arena->ind);
|
|
|
|
if (unlikely(decay_ticker == NULL))
|
|
|
|
return;
|
|
|
|
if (unlikely(ticker_ticks(decay_ticker, nticks)))
|
2016-05-11 13:21:10 +08:00
|
|
|
arena_purge(tsdn, arena, false);
|
2016-02-20 12:09:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
JEMALLOC_ALWAYS_INLINE void
|
2016-05-11 13:21:10 +08:00
|
|
|
arena_decay_tick(tsdn_t *tsdn, arena_t *arena)
|
2016-02-20 12:09:31 +08:00
|
|
|
{
|
|
|
|
|
2016-09-24 03:18:36 +08:00
|
|
|
malloc_mutex_assert_not_owner(tsdn, &arena->lock);
|
|
|
|
|
2016-05-11 13:21:10 +08:00
|
|
|
arena_decay_ticks(tsdn, arena, 1);
|
2016-02-20 12:09:31 +08:00
|
|
|
}
|
|
|
|
|
2013-01-23 00:45:43 +08:00
|
|
|
JEMALLOC_ALWAYS_INLINE void *
|
2016-05-11 13:21:10 +08:00
|
|
|
arena_malloc(tsdn_t *tsdn, arena_t *arena, size_t size, szind_t ind, bool zero,
|
2016-02-20 10:40:03 +08:00
|
|
|
tcache_t *tcache, bool slow_path)
|
2012-02-14 04:29:49 +08:00
|
|
|
{
|
|
|
|
|
2016-05-11 13:21:10 +08:00
|
|
|
assert(!tsdn_null(tsdn) || tcache == NULL);
|
2012-02-14 04:29:49 +08:00
|
|
|
assert(size != 0);
|
|
|
|
|
2015-10-28 06:12:10 +08:00
|
|
|
if (likely(tcache != NULL)) {
|
|
|
|
if (likely(size <= SMALL_MAXCLASS)) {
|
2016-05-11 13:21:10 +08:00
|
|
|
return (tcache_alloc_small(tsdn_tsd(tsdn), arena,
|
|
|
|
tcache, size, ind, zero, slow_path));
|
2015-10-28 06:12:10 +08:00
|
|
|
}
|
|
|
|
if (likely(size <= tcache_maxclass)) {
|
2016-06-01 05:50:21 +08:00
|
|
|
return (tcache_alloc_large(tsdn_tsd(tsdn), arena,
|
2016-05-11 13:21:10 +08:00
|
|
|
tcache, size, ind, zero, slow_path));
|
2015-10-28 06:12:10 +08:00
|
|
|
}
|
|
|
|
/* (size > tcache_maxclass) case falls through. */
|
|
|
|
assert(size > tcache_maxclass);
|
|
|
|
}
|
|
|
|
|
2016-05-11 13:21:10 +08:00
|
|
|
return (arena_malloc_hard(tsdn, arena, size, ind, zero));
|
2012-02-14 04:29:49 +08:00
|
|
|
}
|
|
|
|
|
2014-11-28 03:22:36 +08:00
|
|
|
JEMALLOC_ALWAYS_INLINE arena_t *
|
2016-04-16 15:36:11 +08:00
|
|
|
arena_aalloc(tsdn_t *tsdn, const void *ptr)
|
2014-11-28 03:22:36 +08:00
|
|
|
{
|
|
|
|
|
2016-04-16 15:36:11 +08:00
|
|
|
return (extent_arena_get(iealloc(tsdn, ptr)));
|
2014-11-28 03:22:36 +08:00
|
|
|
}
|
|
|
|
|
2012-04-20 09:28:03 +08:00
|
|
|
/* Return the size of the allocation pointed to by ptr. */
|
2013-01-23 00:45:43 +08:00
|
|
|
JEMALLOC_ALWAYS_INLINE size_t
|
2016-05-28 15:17:28 +08:00
|
|
|
arena_salloc(tsdn_t *tsdn, const extent_t *extent, const void *ptr)
|
2012-04-20 09:28:03 +08:00
|
|
|
{
|
|
|
|
size_t ret;
|
|
|
|
|
|
|
|
assert(ptr != NULL);
|
|
|
|
|
2016-05-30 09:34:50 +08:00
|
|
|
if (likely(extent_slab_get(extent)))
|
|
|
|
ret = index2size(extent_slab_data_get_const(extent)->binind);
|
|
|
|
else
|
2016-06-01 05:50:21 +08:00
|
|
|
ret = large_salloc(tsdn, extent);
|
2012-04-20 09:28:03 +08:00
|
|
|
|
|
|
|
return (ret);
|
|
|
|
}
|
|
|
|
|
2013-01-23 00:45:43 +08:00
|
|
|
JEMALLOC_ALWAYS_INLINE void
|
2016-03-24 11:29:33 +08:00
|
|
|
arena_dalloc(tsdn_t *tsdn, extent_t *extent, void *ptr, tcache_t *tcache,
|
|
|
|
bool slow_path)
|
2010-01-17 01:53:50 +08:00
|
|
|
{
|
|
|
|
|
2016-05-11 13:21:10 +08:00
|
|
|
assert(!tsdn_null(tsdn) || tcache == NULL);
|
2010-01-17 01:53:50 +08:00
|
|
|
assert(ptr != NULL);
|
Move centralized chunk management into arenas.
Migrate all centralized data structures related to huge allocations and
recyclable chunks into arena_t, so that each arena can manage huge
allocations and recyclable virtual memory completely independently of
other arenas.
Add chunk node caching to arenas, in order to avoid contention on the
base allocator.
Use chunks_rtree to look up huge allocations rather than a red-black
tree. Maintain a per arena unsorted list of huge allocations (which
will be needed to enumerate huge allocations during arena reset).
Remove the --enable-ivsalloc option, make ivsalloc() always available,
and use it for size queries if --enable-debug is enabled. The only
practical implications to this removal are that 1) ivsalloc() is now
always available during live debugging (and the underlying radix tree is
available during core-based debugging), and 2) size query validation can
no longer be enabled independent of --enable-debug.
Remove the stats.chunks.{current,total,high} mallctls, and replace their
underlying statistics with simpler atomically updated counters used
exclusively for gdump triggering. These statistics are no longer very
useful because each arena manages chunks independently, and per arena
statistics provide similar information.
Simplify chunk synchronization code, now that base chunk allocation
cannot cause recursive lock acquisition.
2015-02-12 04:24:27 +08:00
|
|
|
|
2016-04-07 22:24:14 +08:00
|
|
|
if (likely(extent_slab_get(extent))) {
|
2016-05-28 15:17:28 +08:00
|
|
|
/* Small allocation. */
|
|
|
|
if (likely(tcache != NULL)) {
|
2016-05-30 09:34:50 +08:00
|
|
|
szind_t binind = extent_slab_data_get(extent)->binind;
|
2016-05-28 15:17:28 +08:00
|
|
|
tcache_dalloc_small(tsdn_tsd(tsdn), tcache, ptr, binind,
|
|
|
|
slow_path);
|
Move centralized chunk management into arenas.
Migrate all centralized data structures related to huge allocations and
recyclable chunks into arena_t, so that each arena can manage huge
allocations and recyclable virtual memory completely independently of
other arenas.
Add chunk node caching to arenas, in order to avoid contention on the
base allocator.
Use chunks_rtree to look up huge allocations rather than a red-black
tree. Maintain a per arena unsorted list of huge allocations (which
will be needed to enumerate huge allocations during arena reset).
Remove the --enable-ivsalloc option, make ivsalloc() always available,
and use it for size queries if --enable-debug is enabled. The only
practical implications to this removal are that 1) ivsalloc() is now
always available during live debugging (and the underlying radix tree is
available during core-based debugging), and 2) size query validation can
no longer be enabled independent of --enable-debug.
Remove the stats.chunks.{current,total,high} mallctls, and replace their
underlying statistics with simpler atomically updated counters used
exclusively for gdump triggering. These statistics are no longer very
useful because each arena manages chunks independently, and per arena
statistics provide similar information.
Simplify chunk synchronization code, now that base chunk allocation
cannot cause recursive lock acquisition.
2015-02-12 04:24:27 +08:00
|
|
|
} else {
|
2016-05-28 15:17:28 +08:00
|
|
|
arena_dalloc_small(tsdn, extent_arena_get(extent),
|
2016-05-30 09:34:50 +08:00
|
|
|
extent, ptr);
|
2016-05-28 15:17:28 +08:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
size_t usize = extent_usize_get(extent);
|
2012-02-14 04:29:49 +08:00
|
|
|
|
2016-05-28 15:17:28 +08:00
|
|
|
if (likely(tcache != NULL) && usize <= tcache_maxclass) {
|
|
|
|
if (config_prof && unlikely(usize <= SMALL_MAXCLASS)) {
|
|
|
|
arena_dalloc_promoted(tsdn, extent, ptr,
|
|
|
|
tcache, slow_path);
|
2015-05-05 00:58:36 +08:00
|
|
|
} else {
|
2016-06-01 05:50:21 +08:00
|
|
|
tcache_dalloc_large(tsdn_tsd(tsdn), tcache,
|
2016-05-30 09:34:50 +08:00
|
|
|
ptr, usize, slow_path);
|
2015-02-13 06:06:37 +08:00
|
|
|
}
|
2016-05-28 15:17:28 +08:00
|
|
|
} else
|
2016-06-01 05:50:21 +08:00
|
|
|
large_dalloc(tsdn, extent);
|
2016-05-28 15:17:28 +08:00
|
|
|
}
|
2010-01-17 01:53:50 +08:00
|
|
|
}
|
2014-08-29 03:41:48 +08:00
|
|
|
|
|
|
|
JEMALLOC_ALWAYS_INLINE void
|
2016-03-24 11:29:33 +08:00
|
|
|
arena_sdalloc(tsdn_t *tsdn, extent_t *extent, void *ptr, size_t size,
|
|
|
|
tcache_t *tcache, bool slow_path)
|
2014-08-29 03:41:48 +08:00
|
|
|
{
|
|
|
|
|
2016-05-11 13:21:10 +08:00
|
|
|
assert(!tsdn_null(tsdn) || tcache == NULL);
|
2016-05-28 15:17:28 +08:00
|
|
|
assert(ptr != NULL);
|
2016-05-11 13:21:10 +08:00
|
|
|
|
2016-04-07 22:24:14 +08:00
|
|
|
if (likely(extent_slab_get(extent))) {
|
2016-05-28 15:17:28 +08:00
|
|
|
/* Small allocation. */
|
|
|
|
if (likely(tcache != NULL)) {
|
|
|
|
szind_t binind = size2index(size);
|
2016-05-30 09:34:50 +08:00
|
|
|
assert(binind == extent_slab_data_get(extent)->binind);
|
2016-05-28 15:17:28 +08:00
|
|
|
tcache_dalloc_small(tsdn_tsd(tsdn), tcache, ptr, binind,
|
|
|
|
slow_path);
|
|
|
|
} else {
|
|
|
|
arena_dalloc_small(tsdn, extent_arena_get(extent),
|
2016-05-30 09:34:50 +08:00
|
|
|
extent, ptr);
|
2014-08-29 03:41:48 +08:00
|
|
|
}
|
2016-05-28 15:17:28 +08:00
|
|
|
} else {
|
|
|
|
if (likely(tcache != NULL) && size <= tcache_maxclass) {
|
|
|
|
if (config_prof && unlikely(size <= SMALL_MAXCLASS)) {
|
|
|
|
arena_dalloc_promoted(tsdn, extent, ptr,
|
|
|
|
tcache, slow_path);
|
2015-02-13 06:06:37 +08:00
|
|
|
} else {
|
2016-06-01 05:50:21 +08:00
|
|
|
tcache_dalloc_large(tsdn_tsd(tsdn), tcache, ptr,
|
2016-05-11 13:21:10 +08:00
|
|
|
size, slow_path);
|
2015-02-13 06:06:37 +08:00
|
|
|
}
|
2016-05-28 15:17:28 +08:00
|
|
|
} else
|
2016-06-01 05:50:21 +08:00
|
|
|
large_dalloc(tsdn, extent);
|
2016-05-28 15:17:28 +08:00
|
|
|
}
|
2014-08-29 03:41:48 +08:00
|
|
|
}
|
2014-10-06 08:54:10 +08:00
|
|
|
# endif /* JEMALLOC_ARENA_INLINE_B */
|
2010-01-17 01:53:50 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* JEMALLOC_H_INLINES */
|
|
|
|
/******************************************************************************/
|