2017-01-20 13:41:41 +08:00
|
|
|
#define JEMALLOC_ARENA_C_
|
2010-02-12 06:45:59 +08:00
|
|
|
#include "jemalloc/internal/jemalloc_internal.h"
|
2010-01-17 01:53:50 +08:00
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
/* Data. */
|
|
|
|
|
2016-02-20 12:09:31 +08:00
|
|
|
ssize_t opt_decay_time = DECAY_TIME_DEFAULT;
|
|
|
|
static ssize_t decay_time_default;
|
|
|
|
|
2016-04-07 20:04:12 +08:00
|
|
|
const arena_bin_info_t arena_bin_info[NBINS] = {
|
2017-01-20 13:41:41 +08:00
|
|
|
#define BIN_INFO_bin_yes(reg_size, slab_size, nregs) \
|
2016-05-30 09:34:50 +08:00
|
|
|
{reg_size, slab_size, nregs, BITMAP_INFO_INITIALIZER(nregs)},
|
2017-01-20 13:41:41 +08:00
|
|
|
#define BIN_INFO_bin_no(reg_size, slab_size, nregs)
|
|
|
|
#define SC(index, lg_grp, lg_delta, ndelta, psz, bin, pgs, \
|
2016-04-18 07:16:11 +08:00
|
|
|
lg_delta_lookup) \
|
2016-04-07 20:04:12 +08:00
|
|
|
BIN_INFO_bin_##bin((1U<<lg_grp) + (ndelta<<lg_delta), \
|
|
|
|
(pgs << LG_PAGE), (pgs << LG_PAGE) / ((1U<<lg_grp) + \
|
|
|
|
(ndelta<<lg_delta)))
|
|
|
|
SIZE_CLASSES
|
|
|
|
#undef BIN_INFO_bin_yes
|
|
|
|
#undef BIN_INFO_bin_no
|
|
|
|
#undef SC
|
|
|
|
};
|
2010-01-17 01:53:50 +08:00
|
|
|
|
|
|
|
/******************************************************************************/
|
2014-01-15 08:23:03 +08:00
|
|
|
/*
|
|
|
|
* Function prototypes for static functions that are referenced prior to
|
|
|
|
* definition.
|
|
|
|
*/
|
|
|
|
|
2016-05-11 13:21:10 +08:00
|
|
|
static void arena_purge_to_limit(tsdn_t *tsdn, arena_t *arena,
|
2016-04-14 14:36:15 +08:00
|
|
|
size_t ndirty_limit);
|
2016-05-30 09:34:50 +08:00
|
|
|
static void arena_dalloc_bin_slab(tsdn_t *tsdn, arena_t *arena,
|
|
|
|
extent_t *slab, arena_bin_t *bin);
|
|
|
|
static void arena_bin_lower_slab(tsdn_t *tsdn, arena_t *arena,
|
|
|
|
extent_t *slab, arena_bin_t *bin);
|
2010-01-17 01:53:50 +08:00
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2017-02-13 09:43:33 +08:00
|
|
|
static bool
|
|
|
|
arena_stats_init(tsdn_t *tsdn, arena_stats_t *arena_stats) {
|
|
|
|
if (config_debug) {
|
|
|
|
for (size_t i = 0; i < sizeof(arena_stats_t); i++) {
|
|
|
|
assert(((char *)arena_stats)[0] == 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#ifndef JEMALLOC_ATOMIC_U64
|
|
|
|
if (malloc_mutex_init(&arena_stats->mtx, "arena_stats",
|
|
|
|
WITNESS_RANK_ARENA_STATS)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
/* Memory is zeroed, so there is no need to clear stats. */
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
arena_stats_lock(tsdn_t *tsdn, arena_stats_t *arena_stats) {
|
|
|
|
#ifndef JEMALLOC_ATOMIC_U64
|
|
|
|
malloc_mutex_lock(tsdn, &arena_stats->mtx);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
arena_stats_unlock(tsdn_t *tsdn, arena_stats_t *arena_stats) {
|
|
|
|
#ifndef JEMALLOC_ATOMIC_U64
|
|
|
|
malloc_mutex_unlock(tsdn, &arena_stats->mtx);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint64_t
|
|
|
|
arena_stats_read_u64(tsdn_t *tsdn, arena_stats_t *arena_stats, uint64_t *p) {
|
|
|
|
#ifdef JEMALLOC_ATOMIC_U64
|
|
|
|
return atomic_read_u64(p);
|
|
|
|
#else
|
|
|
|
malloc_mutex_assert_owner(tsdn, &arena_stats->mtx);
|
|
|
|
return *p;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
arena_stats_add_u64(tsdn_t *tsdn, arena_stats_t *arena_stats, uint64_t *p,
|
|
|
|
uint64_t x) {
|
|
|
|
#ifdef JEMALLOC_ATOMIC_U64
|
|
|
|
atomic_add_u64(p, x);
|
|
|
|
#else
|
|
|
|
malloc_mutex_assert_owner(tsdn, &arena_stats->mtx);
|
|
|
|
*p += x;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
arena_stats_sub_u64(tsdn_t *tsdn, arena_stats_t *arena_stats, uint64_t *p,
|
|
|
|
uint64_t x) {
|
|
|
|
#ifdef JEMALLOC_ATOMIC_U64
|
|
|
|
atomic_sub_u64(p, x);
|
|
|
|
#else
|
|
|
|
malloc_mutex_assert_owner(tsdn, &arena_stats->mtx);
|
|
|
|
*p -= x;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static size_t
|
|
|
|
arena_stats_read_zu(tsdn_t *tsdn, arena_stats_t *arena_stats, size_t *p) {
|
|
|
|
#ifdef JEMALLOC_ATOMIC_U64
|
|
|
|
return atomic_read_zu(p);
|
|
|
|
#else
|
|
|
|
malloc_mutex_assert_owner(tsdn, &arena_stats->mtx);
|
|
|
|
return *p;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
arena_stats_add_zu(tsdn_t *tsdn, arena_stats_t *arena_stats, size_t *p,
|
|
|
|
size_t x) {
|
|
|
|
#ifdef JEMALLOC_ATOMIC_U64
|
|
|
|
atomic_add_zu(p, x);
|
|
|
|
#else
|
|
|
|
malloc_mutex_assert_owner(tsdn, &arena_stats->mtx);
|
|
|
|
*p += x;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
arena_stats_sub_zu(tsdn_t *tsdn, arena_stats_t *arena_stats, size_t *p,
|
|
|
|
size_t x) {
|
|
|
|
#ifdef JEMALLOC_ATOMIC_U64
|
|
|
|
atomic_sub_zu(p, x);
|
|
|
|
#else
|
|
|
|
malloc_mutex_assert_owner(tsdn, &arena_stats->mtx);
|
|
|
|
*p -= x;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
arena_stats_large_nrequests_add(tsdn_t *tsdn, arena_stats_t *arena_stats,
|
|
|
|
szind_t szind, uint64_t nrequests) {
|
|
|
|
arena_stats_lock(tsdn, arena_stats);
|
|
|
|
arena_stats_add_u64(tsdn, arena_stats, &arena_stats->lstats[szind -
|
|
|
|
NBINS].nrequests, nrequests);
|
|
|
|
arena_stats_unlock(tsdn, arena_stats);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
arena_basic_stats_merge(tsdn_t *tsdn, arena_t *arena, unsigned *nthreads,
|
|
|
|
const char **dss, ssize_t *decay_time, size_t *nactive, size_t *ndirty) {
|
|
|
|
malloc_mutex_lock(tsdn, &arena->lock);
|
|
|
|
*nthreads += arena_nthreads_get(arena, false);
|
|
|
|
*dss = dss_prec_names[arena_dss_prec_get(arena)];
|
|
|
|
*decay_time = arena->decay.time;
|
|
|
|
*nactive += atomic_read_zu(&arena->nactive);
|
|
|
|
*ndirty += extents_npages_get(&arena->extents_cached);
|
|
|
|
malloc_mutex_unlock(tsdn, &arena->lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
arena_stats_merge(tsdn_t *tsdn, arena_t *arena, unsigned *nthreads,
|
|
|
|
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) {
|
|
|
|
cassert(config_stats);
|
|
|
|
|
|
|
|
arena_basic_stats_merge(tsdn, arena, nthreads, dss, decay_time,
|
|
|
|
nactive, ndirty);
|
|
|
|
|
2017-02-14 01:44:46 +08:00
|
|
|
size_t base_allocated, base_resident, base_mapped;
|
2017-02-13 09:43:33 +08:00
|
|
|
base_stats_get(tsdn, arena->base, &base_allocated, &base_resident,
|
|
|
|
&base_mapped);
|
|
|
|
|
|
|
|
arena_stats_lock(tsdn, &arena->stats);
|
|
|
|
|
|
|
|
astats->mapped += base_mapped + arena_stats_read_zu(tsdn, &arena->stats,
|
|
|
|
&arena->stats.mapped);
|
|
|
|
astats->retained += (extents_npages_get(&arena->extents_retained) <<
|
|
|
|
LG_PAGE);
|
|
|
|
astats->npurge += arena_stats_read_u64(tsdn, &arena->stats,
|
|
|
|
&arena->stats.npurge);
|
|
|
|
astats->nmadvise += arena_stats_read_u64(tsdn, &arena->stats,
|
|
|
|
&arena->stats.nmadvise);
|
|
|
|
astats->purged += arena_stats_read_u64(tsdn, &arena->stats,
|
|
|
|
&arena->stats.purged);
|
|
|
|
astats->base += base_allocated;
|
|
|
|
astats->internal += arena_internal_get(arena);
|
|
|
|
astats->resident += base_resident + (((atomic_read_zu(&arena->nactive) +
|
|
|
|
extents_npages_get(&arena->extents_cached)) << LG_PAGE));
|
|
|
|
astats->allocated_large += arena_stats_read_zu(tsdn, &arena->stats,
|
|
|
|
&arena->stats.allocated_large);
|
|
|
|
astats->nmalloc_large += arena_stats_read_u64(tsdn, &arena->stats,
|
|
|
|
&arena->stats.nmalloc_large);
|
|
|
|
astats->ndalloc_large += arena_stats_read_u64(tsdn, &arena->stats,
|
|
|
|
&arena->stats.ndalloc_large);
|
|
|
|
astats->nrequests_large += arena_stats_read_u64(tsdn, &arena->stats,
|
|
|
|
&arena->stats.nrequests_large);
|
|
|
|
|
2017-02-14 01:44:46 +08:00
|
|
|
astats->allocated_large = 0;
|
|
|
|
astats->nmalloc_large = 0;
|
|
|
|
astats->ndalloc_large = 0;
|
|
|
|
astats->nrequests_large = 0;
|
|
|
|
for (szind_t i = 0; i < NSIZES - NBINS; i++) {
|
|
|
|
uint64_t nmalloc = arena_stats_read_u64(tsdn, &arena->stats,
|
2017-02-13 09:43:33 +08:00
|
|
|
&arena->stats.lstats[i].nmalloc);
|
2017-02-14 01:44:46 +08:00
|
|
|
lstats[i].nmalloc += nmalloc;
|
|
|
|
astats->nmalloc_large += nmalloc;
|
|
|
|
|
|
|
|
uint64_t ndalloc = arena_stats_read_u64(tsdn, &arena->stats,
|
2017-02-13 09:43:33 +08:00
|
|
|
&arena->stats.lstats[i].ndalloc);
|
2017-02-14 01:44:46 +08:00
|
|
|
lstats[i].ndalloc += ndalloc;
|
|
|
|
astats->ndalloc_large += ndalloc;
|
|
|
|
|
|
|
|
uint64_t nrequests = arena_stats_read_u64(tsdn, &arena->stats,
|
2017-02-13 09:43:33 +08:00
|
|
|
&arena->stats.lstats[i].nrequests);
|
2017-02-14 01:44:46 +08:00
|
|
|
lstats[i].nrequests += nrequests;
|
|
|
|
astats->nrequests_large += nrequests;
|
|
|
|
|
|
|
|
size_t curlextents = arena_stats_read_zu(tsdn,
|
2017-02-13 09:43:33 +08:00
|
|
|
&arena->stats, &arena->stats.lstats[i].curlextents);
|
2017-02-14 01:44:46 +08:00
|
|
|
lstats[i].curlextents += curlextents;
|
|
|
|
astats->allocated_large += curlextents * index2size(i);
|
2017-02-13 09:43:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
arena_stats_unlock(tsdn, &arena->stats);
|
|
|
|
|
|
|
|
if (config_tcache) {
|
|
|
|
tcache_bin_t *tbin;
|
|
|
|
tcache_t *tcache;
|
|
|
|
|
|
|
|
/* tcache_bytes counts currently cached bytes. */
|
|
|
|
astats->tcache_bytes = 0;
|
2017-02-13 10:50:53 +08:00
|
|
|
malloc_mutex_lock(tsdn, &arena->tcache_ql_mtx);
|
2017-02-13 09:43:33 +08:00
|
|
|
ql_foreach(tcache, &arena->tcache_ql, link) {
|
2017-02-14 01:44:46 +08:00
|
|
|
for (szind_t i = 0; i < nhbins; i++) {
|
2017-02-13 09:43:33 +08:00
|
|
|
tbin = &tcache->tbins[i];
|
|
|
|
astats->tcache_bytes += tbin->ncached *
|
|
|
|
index2size(i);
|
|
|
|
}
|
|
|
|
}
|
2017-02-13 10:50:53 +08:00
|
|
|
malloc_mutex_unlock(tsdn, &arena->tcache_ql_mtx);
|
2017-02-13 09:43:33 +08:00
|
|
|
}
|
|
|
|
|
2017-02-14 01:44:46 +08:00
|
|
|
for (szind_t i = 0; i < NBINS; i++) {
|
2017-02-13 09:43:33 +08:00
|
|
|
arena_bin_t *bin = &arena->bins[i];
|
|
|
|
|
|
|
|
malloc_mutex_lock(tsdn, &bin->lock);
|
|
|
|
bstats[i].nmalloc += bin->stats.nmalloc;
|
|
|
|
bstats[i].ndalloc += bin->stats.ndalloc;
|
|
|
|
bstats[i].nrequests += bin->stats.nrequests;
|
|
|
|
bstats[i].curregs += bin->stats.curregs;
|
|
|
|
if (config_tcache) {
|
|
|
|
bstats[i].nfills += bin->stats.nfills;
|
|
|
|
bstats[i].nflushes += bin->stats.nflushes;
|
|
|
|
}
|
|
|
|
bstats[i].nslabs += bin->stats.nslabs;
|
|
|
|
bstats[i].reslabs += bin->stats.reslabs;
|
|
|
|
bstats[i].curslabs += bin->stats.curslabs;
|
|
|
|
malloc_mutex_unlock(tsdn, &bin->lock);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-19 12:02:46 +08:00
|
|
|
void
|
2016-06-02 03:59:02 +08:00
|
|
|
arena_extent_cache_dalloc(tsdn_t *tsdn, arena_t *arena,
|
2017-01-16 08:56:30 +08:00
|
|
|
extent_hooks_t **r_extent_hooks, extent_t *extent) {
|
2017-01-30 13:57:14 +08:00
|
|
|
witness_assert_depth_to_rank(tsdn, WITNESS_RANK_CORE, 0);
|
2015-02-16 10:04:46 +08:00
|
|
|
|
2017-01-30 13:57:14 +08:00
|
|
|
extent_dalloc_cache(tsdn, arena, r_extent_hooks, extent);
|
|
|
|
arena_purge(tsdn, arena, false);
|
2015-02-16 10:04:46 +08:00
|
|
|
}
|
|
|
|
|
2014-10-31 07:38:08 +08:00
|
|
|
JEMALLOC_INLINE_C void *
|
2016-05-30 09:34:50 +08:00
|
|
|
arena_slab_reg_alloc(tsdn_t *tsdn, extent_t *slab,
|
2017-01-16 08:56:30 +08:00
|
|
|
const arena_bin_info_t *bin_info) {
|
2010-01-17 01:53:50 +08:00
|
|
|
void *ret;
|
2016-05-30 09:34:50 +08:00
|
|
|
arena_slab_data_t *slab_data = extent_slab_data_get(slab);
|
2016-02-26 12:51:00 +08:00
|
|
|
size_t regind;
|
2016-05-30 09:34:50 +08:00
|
|
|
|
|
|
|
assert(slab_data->nfree > 0);
|
|
|
|
assert(!bitmap_full(slab_data->bitmap, &bin_info->bitmap_info));
|
|
|
|
|
2016-11-16 15:56:29 +08:00
|
|
|
regind = bitmap_sfu(slab_data->bitmap, &bin_info->bitmap_info);
|
2016-05-30 09:34:50 +08:00
|
|
|
ret = (void *)((uintptr_t)extent_addr_get(slab) +
|
|
|
|
(uintptr_t)(bin_info->reg_size * regind));
|
|
|
|
slab_data->nfree--;
|
2017-01-20 10:15:45 +08:00
|
|
|
return ret;
|
2010-02-11 02:37:56 +08:00
|
|
|
}
|
|
|
|
|
2016-12-22 04:33:17 +08:00
|
|
|
#ifndef JEMALLOC_JET
|
|
|
|
JEMALLOC_INLINE_C
|
|
|
|
#endif
|
|
|
|
size_t
|
2017-01-16 08:56:30 +08:00
|
|
|
arena_slab_regind(extent_t *slab, szind_t binind, const void *ptr) {
|
2016-12-22 04:33:17 +08:00
|
|
|
size_t diff, regind;
|
2016-05-26 07:21:37 +08:00
|
|
|
|
2016-05-30 09:34:50 +08:00
|
|
|
/* Freeing a pointer outside the slab can cause assertion failure. */
|
|
|
|
assert((uintptr_t)ptr >= (uintptr_t)extent_addr_get(slab));
|
|
|
|
assert((uintptr_t)ptr < (uintptr_t)extent_past_get(slab));
|
|
|
|
/* Freeing an interior pointer can cause assertion failure. */
|
|
|
|
assert(((uintptr_t)ptr - (uintptr_t)extent_addr_get(slab)) %
|
2016-12-22 04:33:17 +08:00
|
|
|
(uintptr_t)arena_bin_info[binind].reg_size == 0);
|
2016-05-26 07:21:37 +08:00
|
|
|
|
2016-12-22 04:33:17 +08:00
|
|
|
/* Avoid doing division with a variable divisor. */
|
2016-05-30 09:34:50 +08:00
|
|
|
diff = (size_t)((uintptr_t)ptr - (uintptr_t)extent_addr_get(slab));
|
2016-12-22 04:33:17 +08:00
|
|
|
switch (binind) {
|
2017-01-20 13:41:41 +08:00
|
|
|
#define REGIND_bin_yes(index, reg_size) \
|
2016-12-22 04:33:17 +08:00
|
|
|
case index: \
|
|
|
|
regind = diff / (reg_size); \
|
|
|
|
assert(diff == regind * (reg_size)); \
|
|
|
|
break;
|
2017-01-20 13:41:41 +08:00
|
|
|
#define REGIND_bin_no(index, reg_size)
|
|
|
|
#define SC(index, lg_grp, lg_delta, ndelta, psz, bin, pgs, \
|
2016-12-22 04:33:17 +08:00
|
|
|
lg_delta_lookup) \
|
|
|
|
REGIND_bin_##bin(index, (1U<<lg_grp) + (ndelta<<lg_delta))
|
|
|
|
SIZE_CLASSES
|
|
|
|
#undef REGIND_bin_yes
|
|
|
|
#undef REGIND_bin_no
|
|
|
|
#undef SC
|
|
|
|
default: not_reached();
|
2016-05-26 07:21:37 +08:00
|
|
|
}
|
2016-12-22 04:33:17 +08:00
|
|
|
|
|
|
|
assert(regind < arena_bin_info[binind].nregs);
|
2016-05-26 07:21:37 +08:00
|
|
|
|
2017-01-20 10:15:45 +08:00
|
|
|
return regind;
|
2016-05-26 07:21:37 +08:00
|
|
|
}
|
|
|
|
|
2014-10-31 07:38:08 +08:00
|
|
|
JEMALLOC_INLINE_C void
|
2016-05-30 09:34:50 +08:00
|
|
|
arena_slab_reg_dalloc(tsdn_t *tsdn, extent_t *slab,
|
2017-01-16 08:56:30 +08:00
|
|
|
arena_slab_data_t *slab_data, void *ptr) {
|
2016-05-30 09:34:50 +08:00
|
|
|
szind_t binind = slab_data->binind;
|
2016-04-07 20:04:12 +08:00
|
|
|
const arena_bin_info_t *bin_info = &arena_bin_info[binind];
|
2016-12-22 04:33:17 +08:00
|
|
|
size_t regind = arena_slab_regind(slab, binind, ptr);
|
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
|
|
|
assert(slab_data->nfree < bin_info->nregs);
|
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
|
|
|
/* Freeing an unallocated pointer can cause assertion failure. */
|
2016-05-30 09:34:50 +08:00
|
|
|
assert(bitmap_get(slab_data->bitmap, &bin_info->bitmap_info, regind));
|
2013-01-22 12:04:42 +08:00
|
|
|
|
2016-05-30 09:34:50 +08:00
|
|
|
bitmap_unset(slab_data->bitmap, &bin_info->bitmap_info, regind);
|
|
|
|
slab_data->nfree++;
|
2010-10-19 08:45:40 +08:00
|
|
|
}
|
|
|
|
|
2010-01-17 01:53:50 +08:00
|
|
|
static void
|
2017-01-16 08:56:30 +08:00
|
|
|
arena_nactive_add(arena_t *arena, size_t add_pages) {
|
2017-01-30 13:57:14 +08:00
|
|
|
atomic_add_zu(&arena->nactive, add_pages);
|
2016-02-27 09:29:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2017-01-16 08:56:30 +08:00
|
|
|
arena_nactive_sub(arena_t *arena, size_t sub_pages) {
|
2017-01-30 13:57:14 +08:00
|
|
|
assert(atomic_read_zu(&arena->nactive) >= sub_pages);
|
|
|
|
atomic_sub_zu(&arena->nactive, sub_pages);
|
2014-01-15 08:23:03 +08:00
|
|
|
}
|
|
|
|
|
2014-10-15 13:20:00 +08:00
|
|
|
static void
|
2017-02-13 09:43:33 +08:00
|
|
|
arena_large_malloc_stats_update(tsdn_t *tsdn, arena_t *arena, size_t usize) {
|
2017-01-07 10:56:02 +08:00
|
|
|
szind_t index, hindex;
|
2014-10-15 13:20:00 +08:00
|
|
|
|
|
|
|
cassert(config_stats);
|
|
|
|
|
2017-01-16 08:56:30 +08:00
|
|
|
if (usize < LARGE_MINCLASS) {
|
2017-01-07 10:56:02 +08:00
|
|
|
usize = LARGE_MINCLASS;
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2017-01-07 10:56:02 +08:00
|
|
|
index = size2index(usize);
|
|
|
|
hindex = (index >= NBINS) ? index - NBINS : 0;
|
|
|
|
|
2017-02-13 09:43:33 +08:00
|
|
|
arena_stats_add_u64(tsdn, &arena->stats,
|
|
|
|
&arena->stats.lstats[hindex].nmalloc, 1);
|
|
|
|
arena_stats_add_u64(tsdn, &arena->stats,
|
|
|
|
&arena->stats.lstats[hindex].nrequests, 1);
|
|
|
|
arena_stats_add_zu(tsdn, &arena->stats,
|
|
|
|
&arena->stats.lstats[hindex].curlextents, 1);
|
2014-10-15 13:20:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2017-02-13 09:43:33 +08:00
|
|
|
arena_large_dalloc_stats_update(tsdn_t *tsdn, arena_t *arena, size_t usize) {
|
2017-01-07 10:56:02 +08:00
|
|
|
szind_t index, hindex;
|
2014-10-15 13:20:00 +08:00
|
|
|
|
|
|
|
cassert(config_stats);
|
|
|
|
|
2017-01-16 08:56:30 +08:00
|
|
|
if (usize < LARGE_MINCLASS) {
|
2017-01-07 10:56:02 +08:00
|
|
|
usize = LARGE_MINCLASS;
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2017-01-07 10:56:02 +08:00
|
|
|
index = size2index(usize);
|
|
|
|
hindex = (index >= NBINS) ? index - NBINS : 0;
|
|
|
|
|
2017-02-13 09:43:33 +08:00
|
|
|
arena_stats_add_u64(tsdn, &arena->stats,
|
|
|
|
&arena->stats.lstats[hindex].ndalloc, 1);
|
|
|
|
arena_stats_sub_zu(tsdn, &arena->stats,
|
|
|
|
&arena->stats.lstats[hindex].curlextents, 1);
|
2014-10-15 13:20:00 +08:00
|
|
|
}
|
|
|
|
|
2016-04-26 04:26:54 +08:00
|
|
|
static void
|
2017-02-13 09:43:33 +08:00
|
|
|
arena_large_reset_stats_cancel(tsdn_t *tsdn, arena_t *arena, size_t usize) {
|
2016-05-28 15:17:28 +08:00
|
|
|
szind_t index = size2index(usize);
|
|
|
|
szind_t hindex = (index >= NBINS) ? index - NBINS : 0;
|
2016-04-26 04:26:54 +08:00
|
|
|
|
|
|
|
cassert(config_stats);
|
|
|
|
|
2017-02-13 09:43:33 +08:00
|
|
|
arena_stats_lock(tsdn, &arena->stats);
|
|
|
|
arena_stats_sub_u64(tsdn, &arena->stats,
|
|
|
|
&arena->stats.lstats[hindex].ndalloc, 1);
|
|
|
|
arena_stats_unlock(tsdn, &arena->stats);
|
2016-04-26 04:26:54 +08:00
|
|
|
}
|
|
|
|
|
2014-10-15 13:20:00 +08:00
|
|
|
static void
|
2017-02-13 09:43:33 +08:00
|
|
|
arena_large_ralloc_stats_update(tsdn_t *tsdn, arena_t *arena, size_t oldusize,
|
|
|
|
size_t usize) {
|
|
|
|
arena_large_dalloc_stats_update(tsdn, arena, oldusize);
|
|
|
|
arena_large_malloc_stats_update(tsdn, arena, usize);
|
2015-02-19 08:40:53 +08:00
|
|
|
}
|
|
|
|
|
2016-05-19 12:02:46 +08:00
|
|
|
extent_t *
|
2016-06-02 03:59:02 +08:00
|
|
|
arena_extent_alloc_large(tsdn_t *tsdn, arena_t *arena, size_t usize,
|
2017-01-16 08:56:30 +08:00
|
|
|
size_t alignment, bool *zero) {
|
2016-05-19 12:02:46 +08:00
|
|
|
extent_t *extent;
|
2016-06-04 03:05:53 +08:00
|
|
|
extent_hooks_t *extent_hooks = EXTENT_HOOKS_INITIALIZER;
|
2014-05-16 13:22:27 +08:00
|
|
|
|
2017-01-30 13:57:14 +08:00
|
|
|
witness_assert_depth_to_rank(tsdn, WITNESS_RANK_CORE, 0);
|
|
|
|
|
|
|
|
bool commit = true;
|
|
|
|
extent = extent_alloc_cache(tsdn, arena, &extent_hooks, NULL, usize,
|
|
|
|
large_pad, alignment, zero, &commit, false);
|
2016-05-19 12:02:46 +08:00
|
|
|
if (extent == NULL) {
|
2017-02-13 09:43:33 +08:00
|
|
|
extent = extent_alloc_wrapper(tsdn, arena, &extent_hooks, NULL,
|
|
|
|
usize, large_pad, alignment, zero, &commit, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (config_stats && extent != NULL) {
|
|
|
|
arena_stats_lock(tsdn, &arena->stats);
|
|
|
|
arena_large_malloc_stats_update(tsdn, arena, usize);
|
|
|
|
arena_stats_add_zu(tsdn, &arena->stats, &arena->stats.mapped,
|
|
|
|
usize);
|
|
|
|
arena_stats_unlock(tsdn, &arena->stats);
|
2014-10-15 13:20:00 +08:00
|
|
|
}
|
2017-02-13 09:43:33 +08:00
|
|
|
arena_nactive_add(arena, (usize + large_pad) >> LG_PAGE);
|
2014-10-15 13:20:00 +08:00
|
|
|
|
2017-01-20 10:15:45 +08:00
|
|
|
return extent;
|
2014-05-16 13:22:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2017-02-13 09:43:33 +08:00
|
|
|
arena_extent_dalloc_large_prep(tsdn_t *tsdn, arena_t *arena, extent_t *extent) {
|
2014-05-16 13:22:27 +08:00
|
|
|
if (config_stats) {
|
2017-02-13 09:43:33 +08:00
|
|
|
arena_stats_lock(tsdn, &arena->stats);
|
|
|
|
arena_large_dalloc_stats_update(tsdn, arena,
|
2016-06-01 05:50:21 +08:00
|
|
|
extent_usize_get(extent));
|
2017-02-13 09:43:33 +08:00
|
|
|
arena_stats_sub_zu(tsdn, &arena->stats, &arena->stats.mapped,
|
|
|
|
extent_size_get(extent));
|
|
|
|
arena_stats_unlock(tsdn, &arena->stats);
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2017-01-30 13:57:14 +08:00
|
|
|
arena_nactive_sub(arena, extent_size_get(extent) >> LG_PAGE);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
arena_extent_dalloc_large_finish(tsdn_t *tsdn, arena_t *arena,
|
|
|
|
extent_t *extent) {
|
|
|
|
extent_hooks_t *extent_hooks = EXTENT_HOOKS_INITIALIZER;
|
|
|
|
extent_dalloc_cache(tsdn, arena, &extent_hooks, extent);
|
2014-05-16 13:22:27 +08:00
|
|
|
}
|
|
|
|
|
2014-10-15 13:20:00 +08:00
|
|
|
void
|
2016-06-02 03:59:02 +08:00
|
|
|
arena_extent_ralloc_large_shrink(tsdn_t *tsdn, arena_t *arena, extent_t *extent,
|
2017-01-16 08:56:30 +08:00
|
|
|
size_t oldusize) {
|
2016-05-28 15:17:28 +08:00
|
|
|
size_t usize = extent_usize_get(extent);
|
|
|
|
size_t udiff = oldusize - usize;
|
2010-03-15 10:43:56 +08:00
|
|
|
|
2014-10-15 13:20:00 +08:00
|
|
|
if (config_stats) {
|
2017-02-13 09:43:33 +08:00
|
|
|
arena_stats_lock(tsdn, &arena->stats);
|
|
|
|
arena_large_ralloc_stats_update(tsdn, arena, oldusize, usize);
|
|
|
|
arena_stats_sub_zu(tsdn, &arena->stats, &arena->stats.mapped,
|
|
|
|
udiff);
|
|
|
|
arena_stats_unlock(tsdn, &arena->stats);
|
2014-10-15 13:20:00 +08:00
|
|
|
}
|
2016-02-28 04:34:50 +08:00
|
|
|
arena_nactive_sub(arena, udiff >> LG_PAGE);
|
2015-02-19 08:40:53 +08:00
|
|
|
}
|
|
|
|
|
2016-05-19 12:02:46 +08:00
|
|
|
void
|
2016-06-02 03:59:02 +08:00
|
|
|
arena_extent_ralloc_large_expand(tsdn_t *tsdn, arena_t *arena, extent_t *extent,
|
2017-01-16 08:56:30 +08:00
|
|
|
size_t oldusize) {
|
2016-05-28 15:17:28 +08:00
|
|
|
size_t usize = extent_usize_get(extent);
|
|
|
|
size_t udiff = usize - oldusize;
|
2014-10-15 13:20:00 +08:00
|
|
|
|
|
|
|
if (config_stats) {
|
2017-02-13 09:43:33 +08:00
|
|
|
arena_stats_lock(tsdn, &arena->stats);
|
|
|
|
arena_large_ralloc_stats_update(tsdn, arena, oldusize, usize);
|
|
|
|
arena_stats_add_zu(tsdn, &arena->stats, &arena->stats.mapped,
|
|
|
|
udiff);
|
|
|
|
arena_stats_unlock(tsdn, &arena->stats);
|
2014-10-15 13:20:00 +08:00
|
|
|
}
|
2016-02-28 04:34:50 +08:00
|
|
|
arena_nactive_add(arena, udiff >> LG_PAGE);
|
2010-01-17 01:53:50 +08:00
|
|
|
}
|
|
|
|
|
2016-02-20 12:09:31 +08:00
|
|
|
static void
|
2017-01-16 08:56:30 +08:00
|
|
|
arena_decay_deadline_init(arena_t *arena) {
|
2016-02-20 12:09:31 +08:00
|
|
|
/*
|
|
|
|
* Generate a new deadline that is uniformly random within the next
|
|
|
|
* epoch after the current one.
|
|
|
|
*/
|
2016-10-11 11:32:19 +08:00
|
|
|
nstime_copy(&arena->decay.deadline, &arena->decay.epoch);
|
|
|
|
nstime_add(&arena->decay.deadline, &arena->decay.interval);
|
|
|
|
if (arena->decay.time > 0) {
|
2016-02-22 03:25:02 +08:00
|
|
|
nstime_t jitter;
|
|
|
|
|
2016-11-08 02:52:44 +08:00
|
|
|
nstime_init(&jitter, prng_range_u64(&arena->decay.jitter_state,
|
|
|
|
nstime_ns(&arena->decay.interval)));
|
2016-10-11 11:32:19 +08:00
|
|
|
nstime_add(&arena->decay.deadline, &jitter);
|
2016-02-20 12:09:31 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
2017-01-16 08:56:30 +08:00
|
|
|
arena_decay_deadline_reached(const arena_t *arena, const nstime_t *time) {
|
2016-10-11 11:32:19 +08:00
|
|
|
return (nstime_compare(&arena->decay.deadline, time) <= 0);
|
2016-02-20 12:09:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static size_t
|
2017-01-16 08:56:30 +08:00
|
|
|
arena_decay_backlog_npages_limit(const arena_t *arena) {
|
2016-02-20 12:09:31 +08:00
|
|
|
static const uint64_t h_steps[] = {
|
2017-01-20 13:41:41 +08:00
|
|
|
#define STEP(step, h, x, y) \
|
2016-02-20 12:09:31 +08:00
|
|
|
h,
|
|
|
|
SMOOTHSTEP
|
|
|
|
#undef STEP
|
|
|
|
};
|
|
|
|
uint64_t sum;
|
|
|
|
size_t npages_limit_backlog;
|
|
|
|
unsigned i;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* For each element of decay_backlog, multiply by the corresponding
|
|
|
|
* fixed-point smoothstep decay factor. Sum the products, then divide
|
|
|
|
* to round down to the nearest whole number of pages.
|
|
|
|
*/
|
|
|
|
sum = 0;
|
2017-01-16 08:56:30 +08:00
|
|
|
for (i = 0; i < SMOOTHSTEP_NSTEPS; i++) {
|
2016-10-11 11:32:19 +08:00
|
|
|
sum += arena->decay.backlog[i] * h_steps[i];
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2016-04-12 15:50:54 +08:00
|
|
|
npages_limit_backlog = (size_t)(sum >> SMOOTHSTEP_BFP);
|
2016-02-20 12:09:31 +08:00
|
|
|
|
2017-01-20 10:15:45 +08:00
|
|
|
return npages_limit_backlog;
|
2016-02-20 12:09:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2017-01-16 08:56:30 +08:00
|
|
|
arena_decay_backlog_update_last(arena_t *arena) {
|
2017-01-30 13:57:14 +08:00
|
|
|
size_t ndirty = extents_npages_get(&arena->extents_cached);
|
|
|
|
size_t ndirty_delta = (ndirty > arena->decay.nunpurged) ? ndirty -
|
|
|
|
arena->decay.nunpurged : 0;
|
2016-10-12 06:30:01 +08:00
|
|
|
arena->decay.backlog[SMOOTHSTEP_NSTEPS-1] = ndirty_delta;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2017-01-16 08:56:30 +08:00
|
|
|
arena_decay_backlog_update(arena_t *arena, uint64_t nadvance_u64) {
|
2016-10-12 06:30:01 +08:00
|
|
|
if (nadvance_u64 >= SMOOTHSTEP_NSTEPS) {
|
|
|
|
memset(arena->decay.backlog, 0, (SMOOTHSTEP_NSTEPS-1) *
|
|
|
|
sizeof(size_t));
|
|
|
|
} else {
|
|
|
|
size_t nadvance_z = (size_t)nadvance_u64;
|
|
|
|
|
|
|
|
assert((uint64_t)nadvance_z == nadvance_u64);
|
|
|
|
|
|
|
|
memmove(arena->decay.backlog, &arena->decay.backlog[nadvance_z],
|
|
|
|
(SMOOTHSTEP_NSTEPS - nadvance_z) * sizeof(size_t));
|
|
|
|
if (nadvance_z > 1) {
|
|
|
|
memset(&arena->decay.backlog[SMOOTHSTEP_NSTEPS -
|
|
|
|
nadvance_z], 0, (nadvance_z-1) * sizeof(size_t));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
arena_decay_backlog_update_last(arena);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2017-01-16 08:56:30 +08:00
|
|
|
arena_decay_epoch_advance_helper(arena_t *arena, const nstime_t *time) {
|
2016-04-12 15:50:54 +08:00
|
|
|
uint64_t nadvance_u64;
|
2016-02-22 03:25:02 +08:00
|
|
|
nstime_t delta;
|
2016-02-20 12:09:31 +08:00
|
|
|
|
|
|
|
assert(arena_decay_deadline_reached(arena, time));
|
|
|
|
|
2016-02-22 03:25:02 +08:00
|
|
|
nstime_copy(&delta, time);
|
2016-10-11 11:32:19 +08:00
|
|
|
nstime_subtract(&delta, &arena->decay.epoch);
|
|
|
|
nadvance_u64 = nstime_divide(&delta, &arena->decay.interval);
|
2016-04-12 15:50:54 +08:00
|
|
|
assert(nadvance_u64 > 0);
|
2016-02-20 12:09:31 +08:00
|
|
|
|
2016-04-12 15:50:54 +08:00
|
|
|
/* Add nadvance_u64 decay intervals to epoch. */
|
2016-10-11 11:32:19 +08:00
|
|
|
nstime_copy(&delta, &arena->decay.interval);
|
2016-04-12 15:50:54 +08:00
|
|
|
nstime_imultiply(&delta, nadvance_u64);
|
2016-10-11 11:32:19 +08:00
|
|
|
nstime_add(&arena->decay.epoch, &delta);
|
2016-02-20 12:09:31 +08:00
|
|
|
|
|
|
|
/* Set a new deadline. */
|
|
|
|
arena_decay_deadline_init(arena);
|
|
|
|
|
|
|
|
/* Update the backlog. */
|
2016-10-12 06:30:01 +08:00
|
|
|
arena_decay_backlog_update(arena, nadvance_u64);
|
|
|
|
}
|
2016-04-12 15:50:54 +08:00
|
|
|
|
2016-10-12 06:30:01 +08:00
|
|
|
static void
|
2017-01-16 08:56:30 +08:00
|
|
|
arena_decay_epoch_advance_purge(tsdn_t *tsdn, arena_t *arena) {
|
2016-10-12 06:30:01 +08:00
|
|
|
size_t ndirty_limit = arena_decay_backlog_npages_limit(arena);
|
2016-04-12 15:50:54 +08:00
|
|
|
|
2017-01-30 13:57:14 +08:00
|
|
|
if (extents_npages_get(&arena->extents_cached) > ndirty_limit) {
|
2016-10-12 06:30:01 +08:00
|
|
|
arena_purge_to_limit(tsdn, arena, ndirty_limit);
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2017-01-30 13:57:14 +08:00
|
|
|
/*
|
|
|
|
* There may be concurrent ndirty fluctuation between the purge above
|
|
|
|
* and the nunpurged update below, but this is inconsequential to decay
|
|
|
|
* machinery correctness.
|
|
|
|
*/
|
|
|
|
arena->decay.nunpurged = extents_npages_get(&arena->extents_cached);
|
2016-02-20 12:09:31 +08:00
|
|
|
}
|
|
|
|
|
2016-10-12 06:30:01 +08:00
|
|
|
static void
|
2017-01-16 08:56:30 +08:00
|
|
|
arena_decay_epoch_advance(tsdn_t *tsdn, arena_t *arena, const nstime_t *time) {
|
2016-10-12 06:30:01 +08:00
|
|
|
arena_decay_epoch_advance_helper(arena, time);
|
|
|
|
arena_decay_epoch_advance_purge(tsdn, arena);
|
2016-02-20 12:09:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2017-01-16 08:56:30 +08:00
|
|
|
arena_decay_init(arena_t *arena, ssize_t decay_time) {
|
2016-10-11 11:32:19 +08:00
|
|
|
arena->decay.time = decay_time;
|
2016-02-20 12:09:31 +08:00
|
|
|
if (decay_time > 0) {
|
2016-10-11 11:32:19 +08:00
|
|
|
nstime_init2(&arena->decay.interval, decay_time, 0);
|
|
|
|
nstime_idivide(&arena->decay.interval, SMOOTHSTEP_NSTEPS);
|
2016-02-20 12:09:31 +08:00
|
|
|
}
|
|
|
|
|
2016-10-11 11:32:19 +08:00
|
|
|
nstime_init(&arena->decay.epoch, 0);
|
|
|
|
nstime_update(&arena->decay.epoch);
|
|
|
|
arena->decay.jitter_state = (uint64_t)(uintptr_t)arena;
|
2016-02-20 12:09:31 +08:00
|
|
|
arena_decay_deadline_init(arena);
|
2017-01-30 13:57:14 +08:00
|
|
|
arena->decay.nunpurged = extents_npages_get(&arena->extents_cached);
|
2016-10-11 11:32:19 +08:00
|
|
|
memset(arena->decay.backlog, 0, SMOOTHSTEP_NSTEPS * sizeof(size_t));
|
2016-02-20 12:09:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
2017-01-16 08:56:30 +08:00
|
|
|
arena_decay_time_valid(ssize_t decay_time) {
|
|
|
|
if (decay_time < -1) {
|
2017-01-20 10:15:45 +08:00
|
|
|
return false;
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
|
|
|
if (decay_time == -1 || (uint64_t)decay_time <= NSTIME_SEC_MAX) {
|
2017-01-20 10:15:45 +08:00
|
|
|
return true;
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2017-01-20 10:15:45 +08:00
|
|
|
return false;
|
2016-02-20 12:09:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
ssize_t
|
2017-01-16 08:56:30 +08:00
|
|
|
arena_decay_time_get(tsdn_t *tsdn, arena_t *arena) {
|
2016-02-20 12:09:31 +08:00
|
|
|
ssize_t decay_time;
|
|
|
|
|
2016-05-11 13:21:10 +08:00
|
|
|
malloc_mutex_lock(tsdn, &arena->lock);
|
2016-10-11 11:32:19 +08:00
|
|
|
decay_time = arena->decay.time;
|
2016-05-11 13:21:10 +08:00
|
|
|
malloc_mutex_unlock(tsdn, &arena->lock);
|
2016-02-20 12:09:31 +08:00
|
|
|
|
2017-01-20 10:15:45 +08:00
|
|
|
return decay_time;
|
2016-02-20 12:09:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2017-01-16 08:56:30 +08:00
|
|
|
arena_decay_time_set(tsdn_t *tsdn, arena_t *arena, ssize_t decay_time) {
|
|
|
|
if (!arena_decay_time_valid(decay_time)) {
|
2017-01-20 10:15:45 +08:00
|
|
|
return true;
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2016-02-20 12:09:31 +08:00
|
|
|
|
2016-05-11 13:21:10 +08:00
|
|
|
malloc_mutex_lock(tsdn, &arena->lock);
|
2016-02-20 12:09:31 +08:00
|
|
|
/*
|
|
|
|
* Restart decay backlog from scratch, which may cause many dirty pages
|
|
|
|
* to be immediately purged. It would conceptually be possible to map
|
|
|
|
* the old backlog onto the new backlog, but there is no justification
|
|
|
|
* for such complexity since decay_time changes are intended to be
|
|
|
|
* infrequent, either between the {-1, 0, >0} states, or a one-time
|
|
|
|
* arbitrary change during initial arena configuration.
|
|
|
|
*/
|
|
|
|
arena_decay_init(arena, decay_time);
|
2016-05-11 13:21:10 +08:00
|
|
|
arena_maybe_purge(tsdn, arena);
|
|
|
|
malloc_mutex_unlock(tsdn, &arena->lock);
|
2016-02-20 12:09:31 +08:00
|
|
|
|
2017-01-20 10:15:45 +08:00
|
|
|
return false;
|
2016-02-20 12:09:31 +08:00
|
|
|
}
|
|
|
|
|
2017-01-30 13:57:14 +08:00
|
|
|
void
|
|
|
|
arena_maybe_purge(tsdn_t *tsdn, arena_t *arena) {
|
|
|
|
malloc_mutex_assert_owner(tsdn, &arena->lock);
|
2016-02-20 12:09:31 +08:00
|
|
|
|
|
|
|
/* Purge all or nothing if the option is disabled. */
|
2016-10-11 11:32:19 +08:00
|
|
|
if (arena->decay.time <= 0) {
|
2017-01-16 08:56:30 +08:00
|
|
|
if (arena->decay.time == 0) {
|
2016-05-11 13:21:10 +08:00
|
|
|
arena_purge_to_limit(tsdn, arena, 0);
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2016-02-20 12:09:31 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-01-30 13:57:14 +08:00
|
|
|
nstime_t time;
|
2016-10-11 13:15:10 +08:00
|
|
|
nstime_init(&time, 0);
|
|
|
|
nstime_update(&time);
|
|
|
|
if (unlikely(!nstime_monotonic() && nstime_compare(&arena->decay.epoch,
|
|
|
|
&time) > 0)) {
|
|
|
|
/*
|
2016-10-12 06:30:01 +08:00
|
|
|
* Time went backwards. Move the epoch back in time and
|
|
|
|
* generate a new deadline, with the expectation that time
|
|
|
|
* typically flows forward for long enough periods of time that
|
|
|
|
* epochs complete. Unfortunately, this strategy is susceptible
|
|
|
|
* to clock jitter triggering premature epoch advances, but
|
|
|
|
* clock jitter estimation and compensation isn't feasible here
|
|
|
|
* because calls into this code are event-driven.
|
2016-10-11 13:15:10 +08:00
|
|
|
*/
|
|
|
|
nstime_copy(&arena->decay.epoch, &time);
|
2016-10-12 06:30:01 +08:00
|
|
|
arena_decay_deadline_init(arena);
|
2016-10-11 13:15:10 +08:00
|
|
|
} else {
|
|
|
|
/* Verify that time does not go backwards. */
|
|
|
|
assert(nstime_compare(&arena->decay.epoch, &time) <= 0);
|
2016-02-20 12:09:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2016-10-12 06:30:01 +08:00
|
|
|
* If the deadline has been reached, advance to the current epoch and
|
|
|
|
* purge to the new limit if necessary. Note that dirty pages created
|
|
|
|
* during the current epoch are not subject to purge until a future
|
|
|
|
* epoch, so as a result purging only happens during epoch advances.
|
2016-02-20 12:09:31 +08:00
|
|
|
*/
|
2017-01-16 08:56:30 +08:00
|
|
|
if (arena_decay_deadline_reached(arena, &time)) {
|
2016-10-12 06:30:01 +08:00
|
|
|
arena_decay_epoch_advance(tsdn, arena, &time);
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2016-02-20 12:09:31 +08:00
|
|
|
}
|
|
|
|
|
2014-01-15 08:23:03 +08:00
|
|
|
static size_t
|
2016-06-04 03:05:53 +08:00
|
|
|
arena_stash_dirty(tsdn_t *tsdn, arena_t *arena, extent_hooks_t **r_extent_hooks,
|
2017-01-30 13:57:14 +08:00
|
|
|
size_t ndirty_limit, extent_list_t *purge_extents) {
|
|
|
|
witness_assert_depth_to_rank(tsdn, WITNESS_RANK_CORE, 0);
|
2016-09-23 02:57:28 +08:00
|
|
|
|
2016-05-30 09:34:50 +08:00
|
|
|
/* Stash extents according to ndirty_limit. */
|
2017-01-30 13:57:14 +08:00
|
|
|
size_t nstashed = 0;
|
|
|
|
for (extent_t *extent = extents_evict(tsdn, &arena->extents_cached,
|
|
|
|
ndirty_limit); extent != NULL; extent = extents_evict(tsdn,
|
|
|
|
&arena->extents_cached, ndirty_limit)) {
|
|
|
|
extent_list_append(purge_extents, extent);
|
|
|
|
nstashed += extent_size_get(extent) >> LG_PAGE;
|
2010-03-15 08:36:10 +08:00
|
|
|
}
|
2017-01-20 10:15:45 +08:00
|
|
|
return nstashed;
|
2014-01-15 08:23:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static size_t
|
2016-06-04 03:05:53 +08:00
|
|
|
arena_purge_stashed(tsdn_t *tsdn, arena_t *arena,
|
2017-01-30 13:57:14 +08:00
|
|
|
extent_hooks_t **r_extent_hooks, extent_list_t *purge_extents) {
|
2016-05-30 09:34:50 +08:00
|
|
|
UNUSED size_t nmadvise;
|
|
|
|
size_t npurged;
|
2010-03-15 08:36:10 +08:00
|
|
|
|
2017-01-16 08:56:30 +08:00
|
|
|
if (config_stats) {
|
2012-02-11 12:22:09 +08:00
|
|
|
nmadvise = 0;
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2012-10-31 06:42:37 +08:00
|
|
|
npurged = 0;
|
2014-07-22 09:09:04 +08:00
|
|
|
|
2017-01-30 13:57:14 +08:00
|
|
|
for (extent_t *extent = extent_list_first(purge_extents); extent !=
|
|
|
|
NULL; extent = extent_list_first(purge_extents)) {
|
2017-01-16 08:56:30 +08:00
|
|
|
if (config_stats) {
|
2012-02-11 12:22:09 +08:00
|
|
|
nmadvise++;
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2016-05-30 09:34:50 +08:00
|
|
|
npurged += extent_size_get(extent) >> LG_PAGE;
|
2017-01-30 13:57:14 +08:00
|
|
|
extent_list_remove(purge_extents, extent);
|
2016-06-04 03:05:53 +08:00
|
|
|
extent_dalloc_wrapper(tsdn, arena, r_extent_hooks, extent);
|
2010-03-15 08:36:10 +08:00
|
|
|
}
|
2014-07-22 09:09:04 +08:00
|
|
|
|
|
|
|
if (config_stats) {
|
2017-02-13 09:43:33 +08:00
|
|
|
arena_stats_lock(tsdn, &arena->stats);
|
|
|
|
arena_stats_add_u64(tsdn, &arena->stats, &arena->stats.nmadvise,
|
|
|
|
nmadvise);
|
|
|
|
arena_stats_add_u64(tsdn, &arena->stats, &arena->stats.purged,
|
|
|
|
npurged);
|
|
|
|
arena_stats_unlock(tsdn, &arena->stats);
|
2014-07-22 09:09:04 +08:00
|
|
|
}
|
2010-03-15 08:36:10 +08:00
|
|
|
|
2017-01-20 10:15:45 +08:00
|
|
|
return npurged;
|
2014-01-15 08:23:03 +08:00
|
|
|
}
|
|
|
|
|
2016-02-20 12:09:31 +08:00
|
|
|
/*
|
2017-01-30 13:57:14 +08:00
|
|
|
* ndirty_limit: Purge as many dirty extents as possible without violating the
|
|
|
|
* invariant: (extents_npages_get(&arena->extents_cached) >= ndirty_limit)
|
2016-02-20 12:09:31 +08:00
|
|
|
*/
|
2015-03-19 09:55:33 +08:00
|
|
|
static void
|
2017-01-16 08:56:30 +08:00
|
|
|
arena_purge_to_limit(tsdn_t *tsdn, arena_t *arena, size_t ndirty_limit) {
|
2017-01-30 13:57:14 +08:00
|
|
|
witness_assert_depth_to_rank(tsdn, WITNESS_RANK_CORE, 1);
|
|
|
|
malloc_mutex_assert_owner(tsdn, &arena->lock);
|
|
|
|
|
|
|
|
if (atomic_cas_u(&arena->purging, 0, 1)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-06-04 03:05:53 +08:00
|
|
|
extent_hooks_t *extent_hooks = extent_hooks_get(arena);
|
2016-02-20 11:51:23 +08:00
|
|
|
size_t npurge, npurged;
|
2017-01-30 13:57:14 +08:00
|
|
|
extent_list_t purge_extents;
|
2014-07-22 09:09:04 +08:00
|
|
|
|
2017-01-30 13:57:14 +08:00
|
|
|
extent_list_init(&purge_extents);
|
2015-06-23 09:50:32 +08:00
|
|
|
|
2017-01-30 13:57:14 +08:00
|
|
|
malloc_mutex_unlock(tsdn, &arena->lock);
|
2015-02-16 10:04:46 +08:00
|
|
|
|
2016-06-01 06:03:51 +08:00
|
|
|
npurge = arena_stash_dirty(tsdn, arena, &extent_hooks, ndirty_limit,
|
2017-01-30 13:57:14 +08:00
|
|
|
&purge_extents);
|
2017-01-16 08:56:30 +08:00
|
|
|
if (npurge == 0) {
|
2017-01-30 13:57:14 +08:00
|
|
|
malloc_mutex_lock(tsdn, &arena->lock);
|
2016-02-20 11:51:23 +08:00
|
|
|
goto label_return;
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2016-06-01 06:03:51 +08:00
|
|
|
npurged = arena_purge_stashed(tsdn, arena, &extent_hooks,
|
2017-01-30 13:57:14 +08:00
|
|
|
&purge_extents);
|
2016-02-20 11:51:23 +08:00
|
|
|
assert(npurged == npurge);
|
2015-06-23 09:50:32 +08:00
|
|
|
|
2017-01-30 13:57:14 +08:00
|
|
|
malloc_mutex_lock(tsdn, &arena->lock);
|
|
|
|
|
2017-01-16 08:56:30 +08:00
|
|
|
if (config_stats) {
|
2017-02-13 09:43:33 +08:00
|
|
|
arena_stats_lock(tsdn, &arena->stats);
|
|
|
|
arena_stats_add_u64(tsdn, &arena->stats, &arena->stats.npurge,
|
|
|
|
1);
|
|
|
|
arena_stats_unlock(tsdn, &arena->stats);
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2016-02-20 11:51:23 +08:00
|
|
|
|
|
|
|
label_return:
|
2017-01-30 13:57:14 +08:00
|
|
|
atomic_write_u(&arena->purging, 0);
|
2010-01-17 01:53:50 +08:00
|
|
|
}
|
|
|
|
|
2010-10-01 07:55:08 +08:00
|
|
|
void
|
2017-01-16 08:56:30 +08:00
|
|
|
arena_purge(tsdn_t *tsdn, arena_t *arena, bool all) {
|
2016-05-11 13:21:10 +08:00
|
|
|
malloc_mutex_lock(tsdn, &arena->lock);
|
2017-01-16 08:56:30 +08:00
|
|
|
if (all) {
|
2016-05-11 13:21:10 +08:00
|
|
|
arena_purge_to_limit(tsdn, arena, 0);
|
2017-01-16 08:56:30 +08:00
|
|
|
} else {
|
2016-05-11 13:21:10 +08:00
|
|
|
arena_maybe_purge(tsdn, arena);
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2016-05-11 13:21:10 +08:00
|
|
|
malloc_mutex_unlock(tsdn, &arena->lock);
|
2010-10-01 07:55:08 +08:00
|
|
|
}
|
|
|
|
|
2016-05-30 09:34:50 +08:00
|
|
|
static void
|
2017-01-16 08:56:30 +08:00
|
|
|
arena_slab_dalloc(tsdn_t *tsdn, arena_t *arena, extent_t *slab) {
|
2016-06-04 03:05:53 +08:00
|
|
|
extent_hooks_t *extent_hooks = EXTENT_HOOKS_INITIALIZER;
|
2017-01-30 13:57:14 +08:00
|
|
|
size_t npages = extent_size_get(slab) >> LG_PAGE;
|
|
|
|
|
|
|
|
extent_dalloc_cache(tsdn, arena, &extent_hooks, slab);
|
2016-05-30 09:34:50 +08:00
|
|
|
|
2017-01-30 13:57:14 +08:00
|
|
|
arena_nactive_sub(arena, npages);
|
|
|
|
malloc_mutex_lock(tsdn, &arena->lock);
|
|
|
|
arena_maybe_purge(tsdn, arena);
|
|
|
|
malloc_mutex_unlock(tsdn, &arena->lock);
|
2016-05-30 09:34:50 +08:00
|
|
|
}
|
|
|
|
|
2016-11-16 02:31:06 +08:00
|
|
|
static void
|
2017-01-16 08:56:30 +08:00
|
|
|
arena_bin_slabs_nonfull_insert(arena_bin_t *bin, extent_t *slab) {
|
2016-11-16 02:31:06 +08:00
|
|
|
assert(extent_slab_data_get(slab)->nfree > 0);
|
|
|
|
extent_heap_insert(&bin->slabs_nonfull, slab);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2017-01-16 08:56:30 +08:00
|
|
|
arena_bin_slabs_nonfull_remove(arena_bin_t *bin, extent_t *slab) {
|
2016-11-16 02:31:06 +08:00
|
|
|
extent_heap_remove(&bin->slabs_nonfull, slab);
|
|
|
|
}
|
|
|
|
|
|
|
|
static extent_t *
|
2017-01-16 08:56:30 +08:00
|
|
|
arena_bin_slabs_nonfull_tryget(arena_bin_t *bin) {
|
2016-11-16 02:31:06 +08:00
|
|
|
extent_t *slab = extent_heap_remove_first(&bin->slabs_nonfull);
|
2017-01-16 08:56:30 +08:00
|
|
|
if (slab == NULL) {
|
2017-01-20 10:15:45 +08:00
|
|
|
return NULL;
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
|
|
|
if (config_stats) {
|
2016-11-16 02:31:06 +08:00
|
|
|
bin->stats.reslabs++;
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2017-01-20 10:15:45 +08:00
|
|
|
return slab;
|
2016-11-16 02:31:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2017-01-16 08:56:30 +08:00
|
|
|
arena_bin_slabs_full_insert(arena_bin_t *bin, extent_t *slab) {
|
2016-11-16 02:31:06 +08:00
|
|
|
assert(extent_slab_data_get(slab)->nfree == 0);
|
2017-01-30 13:57:14 +08:00
|
|
|
extent_list_append(&bin->slabs_full, slab);
|
2016-11-16 02:31:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2017-01-30 13:57:14 +08:00
|
|
|
arena_bin_slabs_full_remove(arena_bin_t *bin, extent_t *slab) {
|
|
|
|
extent_list_remove(&bin->slabs_full, slab);
|
2016-11-16 02:31:06 +08:00
|
|
|
}
|
|
|
|
|
2016-04-23 05:37:17 +08:00
|
|
|
void
|
2017-01-16 08:56:30 +08:00
|
|
|
arena_reset(tsd_t *tsd, arena_t *arena) {
|
2016-04-23 05:37:17 +08:00
|
|
|
/*
|
|
|
|
* Locking in this function is unintuitive. The caller guarantees that
|
|
|
|
* no concurrent operations are happening in this arena, but there are
|
|
|
|
* still reasons that some locking is necessary:
|
|
|
|
*
|
|
|
|
* - Some of the functions in the transitive closure of calls assume
|
|
|
|
* appropriate locks are held, and in some cases these locks are
|
|
|
|
* temporarily dropped to avoid lock order reversal or deadlock due to
|
|
|
|
* reentry.
|
|
|
|
* - mallctl("epoch", ...) may concurrently refresh stats. While
|
|
|
|
* strictly speaking this is a "concurrent operation", disallowing
|
|
|
|
* stats refreshes would impose an inconvenient burden.
|
|
|
|
*/
|
|
|
|
|
2016-06-01 05:50:21 +08:00
|
|
|
/* Large allocations. */
|
|
|
|
malloc_mutex_lock(tsd_tsdn(tsd), &arena->large_mtx);
|
2017-01-30 13:57:14 +08:00
|
|
|
|
|
|
|
for (extent_t *extent = extent_list_first(&arena->large); extent !=
|
|
|
|
NULL; extent = extent_list_first(&arena->large)) {
|
2016-05-28 09:57:15 +08:00
|
|
|
void *ptr = extent_base_get(extent);
|
2016-04-26 04:26:54 +08:00
|
|
|
size_t usize;
|
2016-04-23 05:37:17 +08:00
|
|
|
|
2016-06-01 05:50:21 +08:00
|
|
|
malloc_mutex_unlock(tsd_tsdn(tsd), &arena->large_mtx);
|
2017-01-16 08:56:30 +08:00
|
|
|
if (config_stats || (config_prof && opt_prof)) {
|
2016-05-28 15:17:28 +08:00
|
|
|
usize = isalloc(tsd_tsdn(tsd), extent, ptr);
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2016-06-01 05:50:21 +08:00
|
|
|
/* Remove large allocation from prof sample set. */
|
2017-01-16 08:56:30 +08:00
|
|
|
if (config_prof && opt_prof) {
|
2016-03-24 11:29:33 +08:00
|
|
|
prof_free(tsd, extent, ptr, usize);
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2016-06-01 05:50:21 +08:00
|
|
|
large_dalloc(tsd_tsdn(tsd), extent);
|
|
|
|
malloc_mutex_lock(tsd_tsdn(tsd), &arena->large_mtx);
|
2016-04-26 04:26:54 +08:00
|
|
|
/* Cancel out unwanted effects on stats. */
|
2017-01-16 08:56:30 +08:00
|
|
|
if (config_stats) {
|
2017-02-13 09:43:33 +08:00
|
|
|
arena_large_reset_stats_cancel(tsd_tsdn(tsd), arena,
|
|
|
|
usize);
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2016-04-23 05:37:17 +08:00
|
|
|
}
|
2016-06-01 05:50:21 +08:00
|
|
|
malloc_mutex_unlock(tsd_tsdn(tsd), &arena->large_mtx);
|
2016-04-23 05:37:17 +08:00
|
|
|
|
|
|
|
/* Bins. */
|
2017-01-30 13:57:14 +08:00
|
|
|
for (unsigned i = 0; i < NBINS; i++) {
|
2016-06-04 10:25:13 +08:00
|
|
|
extent_t *slab;
|
2016-04-23 05:37:17 +08:00
|
|
|
arena_bin_t *bin = &arena->bins[i];
|
2016-05-11 13:21:10 +08:00
|
|
|
malloc_mutex_lock(tsd_tsdn(tsd), &bin->lock);
|
2016-05-30 09:34:50 +08:00
|
|
|
if (bin->slabcur != NULL) {
|
2016-06-04 10:25:13 +08:00
|
|
|
slab = bin->slabcur;
|
2016-05-30 09:34:50 +08:00
|
|
|
bin->slabcur = NULL;
|
2016-06-04 10:25:13 +08:00
|
|
|
malloc_mutex_unlock(tsd_tsdn(tsd), &bin->lock);
|
|
|
|
arena_slab_dalloc(tsd_tsdn(tsd), arena, slab);
|
|
|
|
malloc_mutex_lock(tsd_tsdn(tsd), &bin->lock);
|
2016-05-30 09:34:50 +08:00
|
|
|
}
|
|
|
|
while ((slab = extent_heap_remove_first(&bin->slabs_nonfull)) !=
|
2016-06-04 10:25:13 +08:00
|
|
|
NULL) {
|
|
|
|
malloc_mutex_unlock(tsd_tsdn(tsd), &bin->lock);
|
2016-05-30 09:34:50 +08:00
|
|
|
arena_slab_dalloc(tsd_tsdn(tsd), arena, slab);
|
2016-06-04 10:25:13 +08:00
|
|
|
malloc_mutex_lock(tsd_tsdn(tsd), &bin->lock);
|
|
|
|
}
|
2017-01-30 13:57:14 +08:00
|
|
|
for (slab = extent_list_first(&bin->slabs_full); slab != NULL;
|
|
|
|
slab = extent_list_first(&bin->slabs_full)) {
|
|
|
|
arena_bin_slabs_full_remove(bin, slab);
|
2016-06-04 10:25:13 +08:00
|
|
|
malloc_mutex_unlock(tsd_tsdn(tsd), &bin->lock);
|
2016-05-30 09:34:50 +08:00
|
|
|
arena_slab_dalloc(tsd_tsdn(tsd), arena, slab);
|
2016-06-04 10:25:13 +08:00
|
|
|
malloc_mutex_lock(tsd_tsdn(tsd), &bin->lock);
|
2016-05-30 09:34:50 +08:00
|
|
|
}
|
2016-04-23 05:37:17 +08:00
|
|
|
if (config_stats) {
|
|
|
|
bin->stats.curregs = 0;
|
2016-05-30 09:34:50 +08:00
|
|
|
bin->stats.curslabs = 0;
|
2016-04-23 05:37:17 +08:00
|
|
|
}
|
2016-05-11 13:21:10 +08:00
|
|
|
malloc_mutex_unlock(tsd_tsdn(tsd), &bin->lock);
|
2016-04-23 05:37:17 +08:00
|
|
|
}
|
|
|
|
|
2017-01-30 13:57:14 +08:00
|
|
|
assert(atomic_read_u(&arena->purging) == 0);
|
|
|
|
atomic_write_zu(&arena->nactive, 0);
|
2016-04-23 05:37:17 +08:00
|
|
|
}
|
|
|
|
|
2017-01-04 09:21:59 +08:00
|
|
|
static void
|
2017-01-16 08:56:30 +08:00
|
|
|
arena_destroy_retained(tsdn_t *tsdn, arena_t *arena) {
|
2017-01-04 09:21:59 +08:00
|
|
|
/*
|
|
|
|
* Iterate over the retained extents and blindly attempt to deallocate
|
|
|
|
* them. This gives the extent allocator underlying the extent hooks an
|
|
|
|
* opportunity to unmap all retained memory without having to keep its
|
|
|
|
* own metadata structures, but if deallocation fails, that is the
|
|
|
|
* application's decision/problem. In practice, retained extents are
|
|
|
|
* leaked here if !config_munmap unless the application provided custom
|
2017-01-17 23:19:17 +08:00
|
|
|
* extent hooks, so best practice is to either enable munmap (and avoid
|
|
|
|
* dss for arenas to be destroyed), or provide custom extent hooks that
|
2017-01-04 09:21:59 +08:00
|
|
|
* either unmap retained extents or track them for later use.
|
|
|
|
*/
|
2017-01-30 13:57:14 +08:00
|
|
|
extent_hooks_t *extent_hooks = extent_hooks_get(arena);
|
|
|
|
for (extent_t *extent = extents_evict(tsdn, &arena->extents_retained,
|
|
|
|
0); extent != NULL; extent = extents_evict(tsdn,
|
|
|
|
&arena->extents_retained, 0)) {
|
|
|
|
extent_dalloc_wrapper_try(tsdn, arena, &extent_hooks, extent);
|
2017-01-04 09:21:59 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2017-01-16 08:56:30 +08:00
|
|
|
arena_destroy(tsd_t *tsd, arena_t *arena) {
|
2017-01-04 09:21:59 +08:00
|
|
|
assert(base_ind_get(arena->base) >= narenas_auto);
|
|
|
|
assert(arena_nthreads_get(arena, false) == 0);
|
|
|
|
assert(arena_nthreads_get(arena, true) == 0);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* No allocations have occurred since arena_reset() was called.
|
|
|
|
* Furthermore, the caller (arena_i_destroy_ctl()) purged all cached
|
|
|
|
* extents, so only retained extents may remain.
|
|
|
|
*/
|
2017-01-30 13:57:14 +08:00
|
|
|
assert(extents_npages_get(&arena->extents_cached) == 0);
|
2017-01-04 09:21:59 +08:00
|
|
|
|
|
|
|
/* Attempt to deallocate retained memory. */
|
|
|
|
arena_destroy_retained(tsd_tsdn(tsd), arena);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Remove the arena pointer from the arenas array. We rely on the fact
|
|
|
|
* that there is no way for the application to get a dirty read from the
|
|
|
|
* arenas array unless there is an inherent race in the application
|
|
|
|
* involving access of an arena being concurrently destroyed. The
|
|
|
|
* application must synchronize knowledge of the arena's validity, so as
|
|
|
|
* long as we use an atomic write to update the arenas array, the
|
|
|
|
* application will get a clean read any time after it synchronizes
|
|
|
|
* knowledge that the arena is no longer valid.
|
|
|
|
*/
|
|
|
|
arena_set(base_ind_get(arena->base), NULL);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Destroy the base allocator, which manages all metadata ever mapped by
|
|
|
|
* this arena.
|
|
|
|
*/
|
|
|
|
base_delete(arena->base);
|
|
|
|
}
|
|
|
|
|
2016-05-30 09:34:50 +08:00
|
|
|
static extent_t *
|
2016-06-01 06:03:51 +08:00
|
|
|
arena_slab_alloc_hard(tsdn_t *tsdn, arena_t *arena,
|
2017-01-16 08:56:30 +08:00
|
|
|
extent_hooks_t **r_extent_hooks, const arena_bin_info_t *bin_info) {
|
2016-05-30 09:34:50 +08:00
|
|
|
extent_t *slab;
|
|
|
|
bool zero, commit;
|
|
|
|
|
2017-01-30 13:57:14 +08:00
|
|
|
witness_assert_depth_to_rank(tsdn, WITNESS_RANK_CORE, 0);
|
|
|
|
|
2016-05-30 09:34:50 +08:00
|
|
|
zero = false;
|
|
|
|
commit = true;
|
2016-06-04 03:05:53 +08:00
|
|
|
slab = extent_alloc_wrapper(tsdn, arena, r_extent_hooks, NULL,
|
2016-05-30 09:34:50 +08:00
|
|
|
bin_info->slab_size, 0, PAGE, &zero, &commit, true);
|
2012-02-14 09:36:52 +08:00
|
|
|
|
2017-01-20 10:15:45 +08:00
|
|
|
return slab;
|
2012-02-14 09:36:52 +08:00
|
|
|
}
|
|
|
|
|
2016-05-30 09:34:50 +08:00
|
|
|
static extent_t *
|
|
|
|
arena_slab_alloc(tsdn_t *tsdn, arena_t *arena, szind_t binind,
|
2017-01-16 08:56:30 +08:00
|
|
|
const arena_bin_info_t *bin_info) {
|
2017-01-30 13:57:14 +08:00
|
|
|
witness_assert_depth_to_rank(tsdn, WITNESS_RANK_CORE, 0);
|
|
|
|
|
2016-06-04 03:05:53 +08:00
|
|
|
extent_hooks_t *extent_hooks = EXTENT_HOOKS_INITIALIZER;
|
2016-11-04 08:25:54 +08:00
|
|
|
bool zero = false;
|
2017-01-30 13:57:14 +08:00
|
|
|
bool commit = true;
|
|
|
|
extent_t *slab = extent_alloc_cache(tsdn, arena, &extent_hooks, NULL,
|
|
|
|
bin_info->slab_size, 0, PAGE, &zero, &commit, true);
|
2016-05-30 09:34:50 +08:00
|
|
|
if (slab == NULL) {
|
2016-06-01 06:03:51 +08:00
|
|
|
slab = arena_slab_alloc_hard(tsdn, arena, &extent_hooks,
|
2016-05-30 09:34:50 +08:00
|
|
|
bin_info);
|
2017-01-16 08:56:30 +08:00
|
|
|
if (slab == NULL) {
|
2017-01-20 10:15:45 +08:00
|
|
|
return NULL;
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2016-05-30 09:34:50 +08:00
|
|
|
}
|
|
|
|
assert(extent_slab_get(slab));
|
|
|
|
|
|
|
|
arena_nactive_add(arena, extent_size_get(slab) >> LG_PAGE);
|
|
|
|
|
|
|
|
/* Initialize slab internals. */
|
2017-01-30 13:57:14 +08:00
|
|
|
arena_slab_data_t *slab_data = extent_slab_data_get(slab);
|
2016-05-30 09:34:50 +08:00
|
|
|
slab_data->binind = binind;
|
|
|
|
slab_data->nfree = bin_info->nregs;
|
|
|
|
bitmap_init(slab_data->bitmap, &bin_info->bitmap_info);
|
2016-03-27 08:30:37 +08:00
|
|
|
|
2017-01-16 08:56:30 +08:00
|
|
|
if (config_stats) {
|
2017-02-13 09:43:33 +08:00
|
|
|
arena_stats_lock(tsdn, &arena->stats);
|
|
|
|
arena_stats_add_zu(tsdn, &arena->stats, &arena->stats.mapped,
|
|
|
|
extent_size_get(slab));
|
|
|
|
arena_stats_unlock(tsdn, &arena->stats);
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2016-03-27 08:30:37 +08:00
|
|
|
|
2017-01-20 10:15:45 +08:00
|
|
|
return slab;
|
2012-02-14 09:36:52 +08:00
|
|
|
}
|
|
|
|
|
2016-05-30 09:34:50 +08:00
|
|
|
static extent_t *
|
|
|
|
arena_bin_nonfull_slab_get(tsdn_t *tsdn, arena_t *arena, arena_bin_t *bin,
|
2017-01-16 08:56:30 +08:00
|
|
|
szind_t binind) {
|
2016-05-30 09:34:50 +08:00
|
|
|
extent_t *slab;
|
2016-04-07 20:04:12 +08:00
|
|
|
const arena_bin_info_t *bin_info;
|
2012-02-14 09:36:52 +08:00
|
|
|
|
2016-05-30 09:34:50 +08:00
|
|
|
/* Look for a usable slab. */
|
|
|
|
slab = arena_bin_slabs_nonfull_tryget(bin);
|
2017-01-16 08:56:30 +08:00
|
|
|
if (slab != NULL) {
|
2017-01-20 10:15:45 +08:00
|
|
|
return slab;
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2016-05-30 09:34:50 +08:00
|
|
|
/* No existing slabs have any space available. */
|
2010-01-17 01:53:50 +08:00
|
|
|
|
2011-03-16 04:59:15 +08:00
|
|
|
bin_info = &arena_bin_info[binind];
|
|
|
|
|
2016-05-30 09:34:50 +08:00
|
|
|
/* Allocate a new slab. */
|
2016-05-11 13:21:10 +08:00
|
|
|
malloc_mutex_unlock(tsdn, &bin->lock);
|
2010-03-16 13:25:23 +08:00
|
|
|
/******************************/
|
2016-05-30 09:34:50 +08:00
|
|
|
slab = arena_slab_alloc(tsdn, arena, binind, bin_info);
|
2010-03-16 13:25:23 +08:00
|
|
|
/********************************/
|
2016-05-11 13:21:10 +08:00
|
|
|
malloc_mutex_lock(tsdn, &bin->lock);
|
2016-05-30 09:34:50 +08:00
|
|
|
if (slab != NULL) {
|
2012-02-11 12:22:09 +08:00
|
|
|
if (config_stats) {
|
2016-05-30 09:34:50 +08:00
|
|
|
bin->stats.nslabs++;
|
|
|
|
bin->stats.curslabs++;
|
2012-02-11 12:22:09 +08:00
|
|
|
}
|
2017-01-20 10:15:45 +08:00
|
|
|
return slab;
|
2010-03-15 10:43:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2016-05-30 09:34:50 +08:00
|
|
|
* arena_slab_alloc() failed, but another thread may have made
|
Fix numerous arena bugs.
In arena_ralloc_large_grow(), update the map element for the end of the
newly grown run, rather than the interior map element that was the
beginning of the appended run. This is a long-standing bug, and it had
the potential to cause massive corruption, but triggering it required
roughly the following sequence of events:
1) Large in-place growing realloc(), with left-over space in the run
that followed the large object.
2) Allocation of the remainder run left over from (1).
3) Deallocation of the remainder run *before* deallocation of the
large run, with unfortunate interior map state left over from
previous run allocation/deallocation activity, such that one or
more pages of allocated memory would be treated as part of the
remainder run during run coalescing.
In summary, this was a bad bug, but it was difficult to trigger.
In arena_bin_malloc_hard(), if another thread wins the race to allocate
a bin run, dispose of the spare run via arena_bin_lower_run() rather
than arena_run_dalloc(), since the run has already been prepared for use
as a bin run. This bug has existed since March 14, 2010:
e00572b384c81bd2aba57fac32f7077a34388915
mmap()/munmap() without arena->lock or bin->lock.
Fix bugs in arena_dalloc_bin_run(), arena_trim_head(),
arena_trim_tail(), and arena_ralloc_large_grow() that could cause the
CHUNK_MAP_UNZEROED map bit to become corrupted. These are all
long-standing bugs, but the chances of them actually causing problems
was much lower before the CHUNK_MAP_ZEROED --> CHUNK_MAP_UNZEROED
conversion.
Fix a large run statistics regression in arena_ralloc_large_grow() that
was introduced on September 17, 2010:
8e3c3c61b5bb676a705450708e7e79698cdc9e0c
Add {,r,s,d}allocm().
Add debug code to validate that supposedly pre-zeroed memory really is.
2010-10-18 08:51:37 +08:00
|
|
|
* sufficient memory available while this one dropped bin->lock above,
|
2010-03-15 10:43:56 +08:00
|
|
|
* so search one more time.
|
|
|
|
*/
|
2016-05-30 09:34:50 +08:00
|
|
|
slab = arena_bin_slabs_nonfull_tryget(bin);
|
2017-01-16 08:56:30 +08:00
|
|
|
if (slab != NULL) {
|
2017-01-20 10:15:45 +08:00
|
|
|
return slab;
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2010-03-15 10:43:56 +08:00
|
|
|
|
2017-01-20 10:15:45 +08:00
|
|
|
return NULL;
|
2010-01-17 01:53:50 +08:00
|
|
|
}
|
|
|
|
|
2016-05-30 09:34:50 +08:00
|
|
|
/* Re-fill bin->slabcur, then call arena_slab_reg_alloc(). */
|
2010-01-17 01:53:50 +08:00
|
|
|
static void *
|
2016-05-30 09:34:50 +08:00
|
|
|
arena_bin_malloc_hard(tsdn_t *tsdn, arena_t *arena, arena_bin_t *bin,
|
2017-01-16 08:56:30 +08:00
|
|
|
szind_t binind) {
|
2016-04-07 20:04:12 +08:00
|
|
|
const arena_bin_info_t *bin_info;
|
2016-05-30 09:34:50 +08:00
|
|
|
extent_t *slab;
|
|
|
|
|
2011-03-16 04:59:15 +08:00
|
|
|
bin_info = &arena_bin_info[binind];
|
2016-05-30 09:34:50 +08:00
|
|
|
if (bin->slabcur != NULL) {
|
|
|
|
arena_bin_slabs_full_insert(bin, bin->slabcur);
|
|
|
|
bin->slabcur = NULL;
|
|
|
|
}
|
|
|
|
slab = arena_bin_nonfull_slab_get(tsdn, arena, bin, binind);
|
|
|
|
if (bin->slabcur != NULL) {
|
2010-03-15 10:43:56 +08:00
|
|
|
/*
|
2016-05-30 09:34:50 +08:00
|
|
|
* Another thread updated slabcur while this one ran without the
|
|
|
|
* bin lock in arena_bin_nonfull_slab_get().
|
2010-03-15 10:43:56 +08:00
|
|
|
*/
|
2016-05-30 09:34:50 +08:00
|
|
|
if (extent_slab_data_get(bin->slabcur)->nfree > 0) {
|
|
|
|
void *ret = arena_slab_reg_alloc(tsdn, bin->slabcur,
|
|
|
|
bin_info);
|
|
|
|
if (slab != NULL) {
|
|
|
|
/*
|
|
|
|
* arena_slab_alloc() may have allocated slab,
|
|
|
|
* or it may have been pulled from
|
|
|
|
* slabs_nonfull. Therefore it is unsafe to
|
|
|
|
* make any assumptions about how slab has
|
|
|
|
* previously been used, and
|
|
|
|
* arena_bin_lower_slab() must be called, as if
|
|
|
|
* a region were just deallocated from the slab.
|
|
|
|
*/
|
|
|
|
if (extent_slab_data_get(slab)->nfree ==
|
|
|
|
bin_info->nregs) {
|
|
|
|
arena_dalloc_bin_slab(tsdn, arena, slab,
|
|
|
|
bin);
|
|
|
|
} else {
|
|
|
|
arena_bin_lower_slab(tsdn, arena, slab,
|
|
|
|
bin);
|
|
|
|
}
|
2016-05-26 07:21:37 +08:00
|
|
|
}
|
2017-01-20 10:15:45 +08:00
|
|
|
return ret;
|
2010-03-15 10:43:56 +08:00
|
|
|
}
|
2016-05-30 09:34:50 +08:00
|
|
|
|
|
|
|
arena_bin_slabs_full_insert(bin, bin->slabcur);
|
|
|
|
bin->slabcur = NULL;
|
2010-03-15 10:43:56 +08:00
|
|
|
}
|
|
|
|
|
2017-01-16 08:56:30 +08:00
|
|
|
if (slab == NULL) {
|
2017-01-20 10:15:45 +08:00
|
|
|
return NULL;
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2016-05-30 09:34:50 +08:00
|
|
|
bin->slabcur = slab;
|
2010-03-15 10:43:56 +08:00
|
|
|
|
2016-05-30 09:34:50 +08:00
|
|
|
assert(extent_slab_data_get(bin->slabcur)->nfree > 0);
|
2010-01-17 01:53:50 +08:00
|
|
|
|
2017-01-20 10:15:45 +08:00
|
|
|
return arena_slab_reg_alloc(tsdn, slab, bin_info);
|
2010-01-17 01:53:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2016-05-11 13:21:10 +08:00
|
|
|
arena_tcache_fill_small(tsdn_t *tsdn, arena_t *arena, tcache_bin_t *tbin,
|
2017-01-16 08:56:30 +08:00
|
|
|
szind_t binind, uint64_t prof_accumbytes) {
|
2010-01-17 01:53:50 +08:00
|
|
|
unsigned i, nfill;
|
|
|
|
arena_bin_t *bin;
|
|
|
|
|
|
|
|
assert(tbin->ncached == 0);
|
|
|
|
|
2017-01-16 08:56:30 +08:00
|
|
|
if (config_prof && arena_prof_accum(tsdn, arena, prof_accumbytes)) {
|
2016-05-11 13:21:10 +08:00
|
|
|
prof_idump(tsdn);
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2010-03-16 13:25:23 +08:00
|
|
|
bin = &arena->bins[binind];
|
2016-05-11 13:21:10 +08:00
|
|
|
malloc_mutex_lock(tsdn, &bin->lock);
|
2011-03-21 15:18:17 +08:00
|
|
|
for (i = 0, nfill = (tcache_bin_info[binind].ncached_max >>
|
|
|
|
tbin->lg_fill_div); i < nfill; i++) {
|
2016-05-30 09:34:50 +08:00
|
|
|
extent_t *slab;
|
2015-09-04 18:15:28 +08:00
|
|
|
void *ptr;
|
2016-05-30 09:34:50 +08:00
|
|
|
if ((slab = bin->slabcur) != NULL &&
|
|
|
|
extent_slab_data_get(slab)->nfree > 0) {
|
|
|
|
ptr = arena_slab_reg_alloc(tsdn, slab,
|
2016-05-26 07:21:37 +08:00
|
|
|
&arena_bin_info[binind]);
|
2017-01-16 08:56:30 +08:00
|
|
|
} else {
|
2016-05-30 09:34:50 +08:00
|
|
|
ptr = arena_bin_malloc_hard(tsdn, arena, bin, binind);
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2014-10-06 04:05:10 +08:00
|
|
|
if (ptr == NULL) {
|
|
|
|
/*
|
|
|
|
* OOM. tbin->avail isn't yet filled down to its first
|
|
|
|
* element, so the successful allocations (if any) must
|
2015-10-28 06:12:10 +08:00
|
|
|
* be moved just before tbin->avail before bailing out.
|
2014-10-06 04:05:10 +08:00
|
|
|
*/
|
|
|
|
if (i > 0) {
|
2015-10-28 06:12:10 +08:00
|
|
|
memmove(tbin->avail - i, tbin->avail - nfill,
|
2014-10-06 04:05:10 +08:00
|
|
|
i * sizeof(void *));
|
|
|
|
}
|
2010-01-17 01:53:50 +08:00
|
|
|
break;
|
2014-10-06 04:05:10 +08:00
|
|
|
}
|
2014-12-09 05:12:41 +08:00
|
|
|
if (config_fill && unlikely(opt_junk_alloc)) {
|
2012-04-06 15:35:09 +08:00
|
|
|
arena_alloc_junk_small(ptr, &arena_bin_info[binind],
|
|
|
|
true);
|
|
|
|
}
|
2011-03-19 01:53:15 +08:00
|
|
|
/* Insert such that low regions get used first. */
|
2015-10-28 06:12:10 +08:00
|
|
|
*(tbin->avail - nfill + i) = ptr;
|
2010-01-17 01:53:50 +08:00
|
|
|
}
|
2012-02-11 12:22:09 +08:00
|
|
|
if (config_stats) {
|
|
|
|
bin->stats.nmalloc += i;
|
|
|
|
bin->stats.nrequests += tbin->tstats.nrequests;
|
2014-10-13 13:53:59 +08:00
|
|
|
bin->stats.curregs += i;
|
2012-02-11 12:22:09 +08:00
|
|
|
bin->stats.nfills++;
|
|
|
|
tbin->tstats.nrequests = 0;
|
|
|
|
}
|
2016-05-11 13:21:10 +08:00
|
|
|
malloc_mutex_unlock(tsdn, &bin->lock);
|
2010-01-17 01:53:50 +08:00
|
|
|
tbin->ncached = i;
|
2016-05-11 13:21:10 +08:00
|
|
|
arena_decay_tick(tsdn, arena);
|
2010-01-17 01:53:50 +08:00
|
|
|
}
|
|
|
|
|
2012-04-06 15:35:09 +08:00
|
|
|
void
|
2017-01-16 08:56:30 +08:00
|
|
|
arena_alloc_junk_small(void *ptr, const arena_bin_info_t *bin_info, bool zero) {
|
|
|
|
if (!zero) {
|
2016-04-06 09:18:15 +08:00
|
|
|
memset(ptr, JEMALLOC_ALLOC_JUNK, bin_info->reg_size);
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2013-12-18 07:14:36 +08:00
|
|
|
}
|
|
|
|
|
2014-01-08 08:47:56 +08:00
|
|
|
#ifdef JEMALLOC_JET
|
|
|
|
#undef arena_dalloc_junk_small
|
2017-01-20 13:41:41 +08:00
|
|
|
#define arena_dalloc_junk_small JEMALLOC_N(n_arena_dalloc_junk_small)
|
2014-01-08 08:47:56 +08:00
|
|
|
#endif
|
2013-12-18 07:14:36 +08:00
|
|
|
void
|
2017-01-16 08:56:30 +08:00
|
|
|
arena_dalloc_junk_small(void *ptr, const arena_bin_info_t *bin_info) {
|
2016-04-06 09:18:15 +08:00
|
|
|
memset(ptr, JEMALLOC_FREE_JUNK, bin_info->reg_size);
|
2012-04-06 15:35:09 +08:00
|
|
|
}
|
2014-01-08 08:47:56 +08:00
|
|
|
#ifdef JEMALLOC_JET
|
|
|
|
#undef arena_dalloc_junk_small
|
2017-01-20 13:41:41 +08:00
|
|
|
#define arena_dalloc_junk_small JEMALLOC_N(arena_dalloc_junk_small)
|
2014-01-08 08:47:56 +08:00
|
|
|
arena_dalloc_junk_small_t *arena_dalloc_junk_small =
|
2016-04-19 06:11:20 +08:00
|
|
|
JEMALLOC_N(n_arena_dalloc_junk_small);
|
2014-01-08 08:47:56 +08:00
|
|
|
#endif
|
2012-04-06 15:35:09 +08:00
|
|
|
|
2016-02-20 10:40:03 +08:00
|
|
|
static void *
|
2017-01-16 08:56:30 +08:00
|
|
|
arena_malloc_small(tsdn_t *tsdn, arena_t *arena, szind_t binind, bool zero) {
|
2010-01-17 01:53:50 +08:00
|
|
|
void *ret;
|
|
|
|
arena_bin_t *bin;
|
2016-02-26 07:29:49 +08:00
|
|
|
size_t usize;
|
2016-05-30 09:34:50 +08:00
|
|
|
extent_t *slab;
|
2010-01-17 01:53:50 +08:00
|
|
|
|
2012-02-29 08:50:47 +08:00
|
|
|
assert(binind < NBINS);
|
2010-01-17 01:53:50 +08:00
|
|
|
bin = &arena->bins[binind];
|
2016-02-26 07:29:49 +08:00
|
|
|
usize = index2size(binind);
|
2010-01-17 01:53:50 +08:00
|
|
|
|
2016-05-11 13:21:10 +08:00
|
|
|
malloc_mutex_lock(tsdn, &bin->lock);
|
2016-05-30 09:34:50 +08:00
|
|
|
if ((slab = bin->slabcur) != NULL && extent_slab_data_get(slab)->nfree >
|
2017-01-16 08:56:30 +08:00
|
|
|
0) {
|
2016-05-30 09:34:50 +08:00
|
|
|
ret = arena_slab_reg_alloc(tsdn, slab, &arena_bin_info[binind]);
|
2017-01-16 08:56:30 +08:00
|
|
|
} else {
|
2016-05-30 09:34:50 +08:00
|
|
|
ret = arena_bin_malloc_hard(tsdn, arena, bin, binind);
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2010-01-17 01:53:50 +08:00
|
|
|
|
|
|
|
if (ret == NULL) {
|
2016-05-11 13:21:10 +08:00
|
|
|
malloc_mutex_unlock(tsdn, &bin->lock);
|
2017-01-20 10:15:45 +08:00
|
|
|
return NULL;
|
2010-01-17 01:53:50 +08:00
|
|
|
}
|
|
|
|
|
2012-02-11 12:22:09 +08:00
|
|
|
if (config_stats) {
|
|
|
|
bin->stats.nmalloc++;
|
|
|
|
bin->stats.nrequests++;
|
2014-10-13 13:53:59 +08:00
|
|
|
bin->stats.curregs++;
|
2012-02-11 12:22:09 +08:00
|
|
|
}
|
2016-05-11 13:21:10 +08:00
|
|
|
malloc_mutex_unlock(tsdn, &bin->lock);
|
2017-01-16 08:56:30 +08:00
|
|
|
if (config_prof && arena_prof_accum(tsdn, arena, usize)) {
|
2016-05-11 13:21:10 +08:00
|
|
|
prof_idump(tsdn);
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2010-01-17 01:53:50 +08:00
|
|
|
|
2014-10-04 01:16:09 +08:00
|
|
|
if (!zero) {
|
2012-02-11 12:22:09 +08:00
|
|
|
if (config_fill) {
|
2014-12-09 05:12:41 +08:00
|
|
|
if (unlikely(opt_junk_alloc)) {
|
2012-04-06 15:35:09 +08:00
|
|
|
arena_alloc_junk_small(ret,
|
|
|
|
&arena_bin_info[binind], false);
|
2017-01-16 08:56:30 +08:00
|
|
|
} else if (unlikely(opt_zero)) {
|
2016-02-26 07:29:49 +08:00
|
|
|
memset(ret, 0, usize);
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2012-02-11 12:22:09 +08:00
|
|
|
}
|
2012-04-06 15:35:09 +08:00
|
|
|
} else {
|
2014-12-09 05:12:41 +08:00
|
|
|
if (config_fill && unlikely(opt_junk_alloc)) {
|
2012-04-06 15:35:09 +08:00
|
|
|
arena_alloc_junk_small(ret, &arena_bin_info[binind],
|
|
|
|
true);
|
|
|
|
}
|
2016-02-26 07:29:49 +08:00
|
|
|
memset(ret, 0, usize);
|
2012-04-06 15:35:09 +08:00
|
|
|
}
|
2010-01-17 01:53:50 +08:00
|
|
|
|
2016-05-11 13:21:10 +08:00
|
|
|
arena_decay_tick(tsdn, arena);
|
2017-01-20 10:15:45 +08:00
|
|
|
return ret;
|
2010-01-17 01:53:50 +08:00
|
|
|
}
|
|
|
|
|
2016-02-20 10:40:03 +08:00
|
|
|
void *
|
2016-05-11 13:21:10 +08:00
|
|
|
arena_malloc_hard(tsdn_t *tsdn, arena_t *arena, size_t size, szind_t ind,
|
2017-01-16 08:56:30 +08:00
|
|
|
bool zero) {
|
2016-05-11 13:21:10 +08:00
|
|
|
assert(!tsdn_null(tsdn) || arena != NULL);
|
|
|
|
|
2017-01-16 08:56:30 +08:00
|
|
|
if (likely(!tsdn_null(tsdn))) {
|
2016-05-11 13:21:10 +08:00
|
|
|
arena = arena_choose(tsdn_tsd(tsdn), arena);
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
|
|
|
if (unlikely(arena == NULL)) {
|
2017-01-20 10:15:45 +08:00
|
|
|
return NULL;
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2016-02-20 10:40:03 +08:00
|
|
|
|
2017-01-16 08:56:30 +08:00
|
|
|
if (likely(size <= SMALL_MAXCLASS)) {
|
2017-01-20 10:15:45 +08:00
|
|
|
return arena_malloc_small(tsdn, arena, ind, zero);
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2017-01-20 10:15:45 +08:00
|
|
|
return large_malloc(tsdn, arena, index2size(ind), zero);
|
2016-02-20 10:40:03 +08:00
|
|
|
}
|
|
|
|
|
2015-02-13 06:06:37 +08:00
|
|
|
void *
|
2016-05-11 13:21:10 +08:00
|
|
|
arena_palloc(tsdn_t *tsdn, arena_t *arena, size_t usize, size_t alignment,
|
2017-01-16 08:56:30 +08:00
|
|
|
bool zero, tcache_t *tcache) {
|
2015-02-13 06:06:37 +08:00
|
|
|
void *ret;
|
|
|
|
|
2015-05-05 00:58:36 +08:00
|
|
|
if (usize <= SMALL_MAXCLASS && (alignment < PAGE || (alignment == PAGE
|
2015-05-20 08:42:31 +08:00
|
|
|
&& (usize & PAGE_MASK) == 0))) {
|
2016-05-30 09:34:50 +08:00
|
|
|
/* Small; alignment doesn't require special slab placement. */
|
2016-05-11 13:21:10 +08:00
|
|
|
ret = arena_malloc(tsdn, arena, usize, size2index(usize), zero,
|
2015-10-28 06:12:10 +08:00
|
|
|
tcache, true);
|
2015-05-20 08:42:31 +08:00
|
|
|
} else {
|
2017-01-16 08:56:30 +08:00
|
|
|
if (likely(alignment <= CACHELINE)) {
|
2016-06-01 05:50:21 +08:00
|
|
|
ret = large_malloc(tsdn, arena, usize, zero);
|
2017-01-16 08:56:30 +08:00
|
|
|
} else {
|
2016-06-01 05:50:21 +08:00
|
|
|
ret = large_palloc(tsdn, arena, usize, alignment, zero);
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2015-02-13 06:06:37 +08:00
|
|
|
}
|
2017-01-20 10:15:45 +08:00
|
|
|
return ret;
|
2015-02-13 06:06:37 +08:00
|
|
|
}
|
|
|
|
|
2010-04-01 07:45:04 +08:00
|
|
|
void
|
2016-05-28 15:17:28 +08:00
|
|
|
arena_prof_promote(tsdn_t *tsdn, extent_t *extent, const void *ptr,
|
2017-01-16 08:56:30 +08:00
|
|
|
size_t usize) {
|
2016-05-29 08:29:03 +08:00
|
|
|
arena_t *arena = extent_arena_get(extent);
|
2010-04-01 07:45:04 +08:00
|
|
|
|
2012-04-19 04:38:40 +08:00
|
|
|
cassert(config_prof);
|
2010-04-01 07:45:04 +08:00
|
|
|
assert(ptr != NULL);
|
2016-05-28 15:17:28 +08:00
|
|
|
assert(isalloc(tsdn, extent, ptr) == LARGE_MINCLASS);
|
|
|
|
assert(usize <= SMALL_MAXCLASS);
|
2010-04-01 07:45:04 +08:00
|
|
|
|
2016-05-28 15:17:28 +08:00
|
|
|
extent_usize_set(extent, usize);
|
2010-04-01 07:45:04 +08:00
|
|
|
|
2017-02-13 09:03:46 +08:00
|
|
|
prof_accum_cancel(tsdn, &arena->prof_accum, usize);
|
2016-05-29 08:29:03 +08:00
|
|
|
|
2016-05-28 15:17:28 +08:00
|
|
|
assert(isalloc(tsdn, extent, ptr) == usize);
|
|
|
|
}
|
|
|
|
|
|
|
|
static size_t
|
2017-01-16 08:56:30 +08:00
|
|
|
arena_prof_demote(tsdn_t *tsdn, extent_t *extent, const void *ptr) {
|
2016-05-28 15:17:28 +08:00
|
|
|
cassert(config_prof);
|
|
|
|
assert(ptr != NULL);
|
|
|
|
|
|
|
|
extent_usize_set(extent, LARGE_MINCLASS);
|
|
|
|
|
|
|
|
assert(isalloc(tsdn, extent, ptr) == LARGE_MINCLASS);
|
|
|
|
|
2017-01-20 10:15:45 +08:00
|
|
|
return LARGE_MINCLASS;
|
2016-05-28 15:17:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
arena_dalloc_promoted(tsdn_t *tsdn, extent_t *extent, void *ptr,
|
2017-01-16 08:56:30 +08:00
|
|
|
tcache_t *tcache, bool slow_path) {
|
2016-05-28 15:17:28 +08:00
|
|
|
size_t usize;
|
|
|
|
|
|
|
|
cassert(config_prof);
|
|
|
|
assert(opt_prof);
|
|
|
|
|
|
|
|
usize = arena_prof_demote(tsdn, extent, ptr);
|
|
|
|
if (usize <= tcache_maxclass) {
|
2016-06-01 05:50:21 +08:00
|
|
|
tcache_dalloc_large(tsdn_tsd(tsdn), tcache, ptr, usize,
|
2016-05-28 15:17:28 +08:00
|
|
|
slow_path);
|
2017-01-16 08:56:30 +08:00
|
|
|
} else {
|
2016-06-01 05:50:21 +08:00
|
|
|
large_dalloc(tsdn, extent);
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2010-04-01 07:45:04 +08:00
|
|
|
}
|
2010-02-11 02:37:56 +08:00
|
|
|
|
2010-01-17 01:53:50 +08:00
|
|
|
static void
|
2017-01-16 08:56:30 +08:00
|
|
|
arena_dissociate_bin_slab(extent_t *slab, arena_bin_t *bin) {
|
2016-05-30 09:34:50 +08:00
|
|
|
/* Dissociate slab from bin. */
|
2017-01-16 08:56:30 +08:00
|
|
|
if (slab == bin->slabcur) {
|
2016-05-30 09:34:50 +08:00
|
|
|
bin->slabcur = NULL;
|
2017-01-16 08:56:30 +08:00
|
|
|
} else {
|
2016-05-30 09:34:50 +08:00
|
|
|
szind_t binind = extent_slab_data_get(slab)->binind;
|
2016-04-07 20:04:12 +08:00
|
|
|
const arena_bin_info_t *bin_info = &arena_bin_info[binind];
|
2011-03-16 04:59:15 +08:00
|
|
|
|
2016-03-27 08:30:37 +08:00
|
|
|
/*
|
|
|
|
* The following block's conditional is necessary because if the
|
2016-05-30 09:34:50 +08:00
|
|
|
* slab only contains one region, then it never gets inserted
|
|
|
|
* into the non-full slabs heap.
|
2016-03-27 08:30:37 +08:00
|
|
|
*/
|
2017-01-16 08:56:30 +08:00
|
|
|
if (bin_info->nregs == 1) {
|
2017-01-30 13:57:14 +08:00
|
|
|
arena_bin_slabs_full_remove(bin, slab);
|
2017-01-16 08:56:30 +08:00
|
|
|
} else {
|
2016-05-30 09:34:50 +08:00
|
|
|
arena_bin_slabs_nonfull_remove(bin, slab);
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2010-01-17 01:53:50 +08:00
|
|
|
}
|
2010-10-18 15:04:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2016-05-30 09:34:50 +08:00
|
|
|
arena_dalloc_bin_slab(tsdn_t *tsdn, arena_t *arena, extent_t *slab,
|
2017-01-16 08:56:30 +08:00
|
|
|
arena_bin_t *bin) {
|
2016-05-30 09:34:50 +08:00
|
|
|
assert(slab != bin->slabcur);
|
2010-03-14 12:32:56 +08:00
|
|
|
|
2016-05-11 13:21:10 +08:00
|
|
|
malloc_mutex_unlock(tsdn, &bin->lock);
|
2010-03-15 10:43:56 +08:00
|
|
|
/******************************/
|
2016-05-30 09:34:50 +08:00
|
|
|
arena_slab_dalloc(tsdn, arena, slab);
|
2010-03-15 10:43:56 +08:00
|
|
|
/****************************/
|
2016-05-11 13:21:10 +08:00
|
|
|
malloc_mutex_lock(tsdn, &bin->lock);
|
2017-01-16 08:56:30 +08:00
|
|
|
if (config_stats) {
|
2016-05-30 09:34:50 +08:00
|
|
|
bin->stats.curslabs--;
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2010-01-17 01:53:50 +08:00
|
|
|
}
|
|
|
|
|
Fix numerous arena bugs.
In arena_ralloc_large_grow(), update the map element for the end of the
newly grown run, rather than the interior map element that was the
beginning of the appended run. This is a long-standing bug, and it had
the potential to cause massive corruption, but triggering it required
roughly the following sequence of events:
1) Large in-place growing realloc(), with left-over space in the run
that followed the large object.
2) Allocation of the remainder run left over from (1).
3) Deallocation of the remainder run *before* deallocation of the
large run, with unfortunate interior map state left over from
previous run allocation/deallocation activity, such that one or
more pages of allocated memory would be treated as part of the
remainder run during run coalescing.
In summary, this was a bad bug, but it was difficult to trigger.
In arena_bin_malloc_hard(), if another thread wins the race to allocate
a bin run, dispose of the spare run via arena_bin_lower_run() rather
than arena_run_dalloc(), since the run has already been prepared for use
as a bin run. This bug has existed since March 14, 2010:
e00572b384c81bd2aba57fac32f7077a34388915
mmap()/munmap() without arena->lock or bin->lock.
Fix bugs in arena_dalloc_bin_run(), arena_trim_head(),
arena_trim_tail(), and arena_ralloc_large_grow() that could cause the
CHUNK_MAP_UNZEROED map bit to become corrupted. These are all
long-standing bugs, but the chances of them actually causing problems
was much lower before the CHUNK_MAP_ZEROED --> CHUNK_MAP_UNZEROED
conversion.
Fix a large run statistics regression in arena_ralloc_large_grow() that
was introduced on September 17, 2010:
8e3c3c61b5bb676a705450708e7e79698cdc9e0c
Add {,r,s,d}allocm().
Add debug code to validate that supposedly pre-zeroed memory really is.
2010-10-18 08:51:37 +08:00
|
|
|
static void
|
2016-05-30 09:34:50 +08:00
|
|
|
arena_bin_lower_slab(tsdn_t *tsdn, arena_t *arena, extent_t *slab,
|
2017-01-16 08:56:30 +08:00
|
|
|
arena_bin_t *bin) {
|
2016-05-30 09:34:50 +08:00
|
|
|
assert(extent_slab_data_get(slab)->nfree > 0);
|
|
|
|
|
2010-10-18 11:57:30 +08:00
|
|
|
/*
|
2016-11-16 05:07:53 +08:00
|
|
|
* Make sure that if bin->slabcur is non-NULL, it refers to the
|
|
|
|
* oldest/lowest non-full slab. It is okay to NULL slabcur out rather
|
|
|
|
* than proactively keeping it pointing at the oldest/lowest non-full
|
|
|
|
* slab.
|
2010-10-18 11:57:30 +08:00
|
|
|
*/
|
2016-11-16 05:07:53 +08:00
|
|
|
if (bin->slabcur != NULL && extent_snad_comp(bin->slabcur, slab) > 0) {
|
2016-05-30 09:34:50 +08:00
|
|
|
/* Switch slabcur. */
|
2017-01-16 08:56:30 +08:00
|
|
|
if (extent_slab_data_get(bin->slabcur)->nfree > 0) {
|
2016-05-30 09:34:50 +08:00
|
|
|
arena_bin_slabs_nonfull_insert(bin, bin->slabcur);
|
2017-01-16 08:56:30 +08:00
|
|
|
} else {
|
2016-05-30 09:34:50 +08:00
|
|
|
arena_bin_slabs_full_insert(bin, bin->slabcur);
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2016-05-30 09:34:50 +08:00
|
|
|
bin->slabcur = slab;
|
2017-01-16 08:56:30 +08:00
|
|
|
if (config_stats) {
|
2016-05-30 09:34:50 +08:00
|
|
|
bin->stats.reslabs++;
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
|
|
|
} else {
|
2016-05-30 09:34:50 +08:00
|
|
|
arena_bin_slabs_nonfull_insert(bin, slab);
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
Fix numerous arena bugs.
In arena_ralloc_large_grow(), update the map element for the end of the
newly grown run, rather than the interior map element that was the
beginning of the appended run. This is a long-standing bug, and it had
the potential to cause massive corruption, but triggering it required
roughly the following sequence of events:
1) Large in-place growing realloc(), with left-over space in the run
that followed the large object.
2) Allocation of the remainder run left over from (1).
3) Deallocation of the remainder run *before* deallocation of the
large run, with unfortunate interior map state left over from
previous run allocation/deallocation activity, such that one or
more pages of allocated memory would be treated as part of the
remainder run during run coalescing.
In summary, this was a bad bug, but it was difficult to trigger.
In arena_bin_malloc_hard(), if another thread wins the race to allocate
a bin run, dispose of the spare run via arena_bin_lower_run() rather
than arena_run_dalloc(), since the run has already been prepared for use
as a bin run. This bug has existed since March 14, 2010:
e00572b384c81bd2aba57fac32f7077a34388915
mmap()/munmap() without arena->lock or bin->lock.
Fix bugs in arena_dalloc_bin_run(), arena_trim_head(),
arena_trim_tail(), and arena_ralloc_large_grow() that could cause the
CHUNK_MAP_UNZEROED map bit to become corrupted. These are all
long-standing bugs, but the chances of them actually causing problems
was much lower before the CHUNK_MAP_ZEROED --> CHUNK_MAP_UNZEROED
conversion.
Fix a large run statistics regression in arena_ralloc_large_grow() that
was introduced on September 17, 2010:
8e3c3c61b5bb676a705450708e7e79698cdc9e0c
Add {,r,s,d}allocm().
Add debug code to validate that supposedly pre-zeroed memory really is.
2010-10-18 08:51:37 +08:00
|
|
|
}
|
|
|
|
|
2014-10-10 08:54:06 +08:00
|
|
|
static void
|
2016-05-30 09:34:50 +08:00
|
|
|
arena_dalloc_bin_locked_impl(tsdn_t *tsdn, arena_t *arena, extent_t *slab,
|
2017-01-16 08:56:30 +08:00
|
|
|
void *ptr, bool junked) {
|
2016-05-30 09:34:50 +08:00
|
|
|
arena_slab_data_t *slab_data = extent_slab_data_get(slab);
|
|
|
|
szind_t binind = slab_data->binind;
|
|
|
|
arena_bin_t *bin = &arena->bins[binind];
|
|
|
|
const arena_bin_info_t *bin_info = &arena_bin_info[binind];
|
Fix numerous arena bugs.
In arena_ralloc_large_grow(), update the map element for the end of the
newly grown run, rather than the interior map element that was the
beginning of the appended run. This is a long-standing bug, and it had
the potential to cause massive corruption, but triggering it required
roughly the following sequence of events:
1) Large in-place growing realloc(), with left-over space in the run
that followed the large object.
2) Allocation of the remainder run left over from (1).
3) Deallocation of the remainder run *before* deallocation of the
large run, with unfortunate interior map state left over from
previous run allocation/deallocation activity, such that one or
more pages of allocated memory would be treated as part of the
remainder run during run coalescing.
In summary, this was a bad bug, but it was difficult to trigger.
In arena_bin_malloc_hard(), if another thread wins the race to allocate
a bin run, dispose of the spare run via arena_bin_lower_run() rather
than arena_run_dalloc(), since the run has already been prepared for use
as a bin run. This bug has existed since March 14, 2010:
e00572b384c81bd2aba57fac32f7077a34388915
mmap()/munmap() without arena->lock or bin->lock.
Fix bugs in arena_dalloc_bin_run(), arena_trim_head(),
arena_trim_tail(), and arena_ralloc_large_grow() that could cause the
CHUNK_MAP_UNZEROED map bit to become corrupted. These are all
long-standing bugs, but the chances of them actually causing problems
was much lower before the CHUNK_MAP_ZEROED --> CHUNK_MAP_UNZEROED
conversion.
Fix a large run statistics regression in arena_ralloc_large_grow() that
was introduced on September 17, 2010:
8e3c3c61b5bb676a705450708e7e79698cdc9e0c
Add {,r,s,d}allocm().
Add debug code to validate that supposedly pre-zeroed memory really is.
2010-10-18 08:51:37 +08:00
|
|
|
|
2017-01-16 08:56:30 +08:00
|
|
|
if (!junked && config_fill && unlikely(opt_junk_free)) {
|
2012-04-06 15:35:09 +08:00
|
|
|
arena_dalloc_junk_small(ptr, bin_info);
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
Fix numerous arena bugs.
In arena_ralloc_large_grow(), update the map element for the end of the
newly grown run, rather than the interior map element that was the
beginning of the appended run. This is a long-standing bug, and it had
the potential to cause massive corruption, but triggering it required
roughly the following sequence of events:
1) Large in-place growing realloc(), with left-over space in the run
that followed the large object.
2) Allocation of the remainder run left over from (1).
3) Deallocation of the remainder run *before* deallocation of the
large run, with unfortunate interior map state left over from
previous run allocation/deallocation activity, such that one or
more pages of allocated memory would be treated as part of the
remainder run during run coalescing.
In summary, this was a bad bug, but it was difficult to trigger.
In arena_bin_malloc_hard(), if another thread wins the race to allocate
a bin run, dispose of the spare run via arena_bin_lower_run() rather
than arena_run_dalloc(), since the run has already been prepared for use
as a bin run. This bug has existed since March 14, 2010:
e00572b384c81bd2aba57fac32f7077a34388915
mmap()/munmap() without arena->lock or bin->lock.
Fix bugs in arena_dalloc_bin_run(), arena_trim_head(),
arena_trim_tail(), and arena_ralloc_large_grow() that could cause the
CHUNK_MAP_UNZEROED map bit to become corrupted. These are all
long-standing bugs, but the chances of them actually causing problems
was much lower before the CHUNK_MAP_ZEROED --> CHUNK_MAP_UNZEROED
conversion.
Fix a large run statistics regression in arena_ralloc_large_grow() that
was introduced on September 17, 2010:
8e3c3c61b5bb676a705450708e7e79698cdc9e0c
Add {,r,s,d}allocm().
Add debug code to validate that supposedly pre-zeroed memory really is.
2010-10-18 08:51:37 +08:00
|
|
|
|
2016-05-30 09:34:50 +08:00
|
|
|
arena_slab_reg_dalloc(tsdn, slab, slab_data, ptr);
|
|
|
|
if (slab_data->nfree == bin_info->nregs) {
|
|
|
|
arena_dissociate_bin_slab(slab, bin);
|
|
|
|
arena_dalloc_bin_slab(tsdn, arena, slab, bin);
|
|
|
|
} else if (slab_data->nfree == 1 && slab != bin->slabcur) {
|
2017-01-30 13:57:14 +08:00
|
|
|
arena_bin_slabs_full_remove(bin, slab);
|
2016-05-30 09:34:50 +08:00
|
|
|
arena_bin_lower_slab(tsdn, arena, slab, bin);
|
|
|
|
}
|
2010-01-17 01:53:50 +08:00
|
|
|
|
2012-02-11 12:22:09 +08:00
|
|
|
if (config_stats) {
|
|
|
|
bin->stats.ndalloc++;
|
2014-10-13 13:53:59 +08:00
|
|
|
bin->stats.curregs--;
|
2012-02-11 12:22:09 +08:00
|
|
|
}
|
2010-01-17 01:53:50 +08:00
|
|
|
}
|
|
|
|
|
2014-10-10 08:54:06 +08:00
|
|
|
void
|
2016-05-30 09:34:50 +08:00
|
|
|
arena_dalloc_bin_junked_locked(tsdn_t *tsdn, arena_t *arena, extent_t *extent,
|
2017-01-16 08:56:30 +08:00
|
|
|
void *ptr) {
|
2016-05-30 09:34:50 +08:00
|
|
|
arena_dalloc_bin_locked_impl(tsdn, arena, extent, ptr, true);
|
2014-10-10 08:54:06 +08:00
|
|
|
}
|
|
|
|
|
2016-03-24 11:29:33 +08:00
|
|
|
static void
|
2017-01-16 08:56:30 +08:00
|
|
|
arena_dalloc_bin(tsdn_t *tsdn, arena_t *arena, extent_t *extent, void *ptr) {
|
2016-05-30 09:34:50 +08:00
|
|
|
arena_bin_t *bin = &arena->bins[extent_slab_data_get(extent)->binind];
|
2012-05-02 15:30:36 +08:00
|
|
|
|
2016-05-11 13:21:10 +08:00
|
|
|
malloc_mutex_lock(tsdn, &bin->lock);
|
2016-05-30 09:34:50 +08:00
|
|
|
arena_dalloc_bin_locked_impl(tsdn, arena, extent, ptr, false);
|
2016-05-11 13:21:10 +08:00
|
|
|
malloc_mutex_unlock(tsdn, &bin->lock);
|
2012-05-02 15:30:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2017-01-16 08:56:30 +08:00
|
|
|
arena_dalloc_small(tsdn_t *tsdn, arena_t *arena, extent_t *extent, void *ptr) {
|
2016-05-30 09:34:50 +08:00
|
|
|
arena_dalloc_bin(tsdn, arena, extent, ptr);
|
2016-05-11 13:21:10 +08:00
|
|
|
arena_decay_tick(tsdn, arena);
|
2012-05-02 15:30:36 +08:00
|
|
|
}
|
2010-01-17 01:53:50 +08:00
|
|
|
|
2014-01-13 07:05:44 +08:00
|
|
|
bool
|
2016-03-24 11:29:33 +08:00
|
|
|
arena_ralloc_no_move(tsdn_t *tsdn, extent_t *extent, void *ptr, size_t oldsize,
|
2017-01-16 08:56:30 +08:00
|
|
|
size_t size, size_t extra, bool zero) {
|
2015-09-12 07:18:53 +08:00
|
|
|
size_t usize_min, usize_max;
|
2010-01-17 01:53:50 +08:00
|
|
|
|
2016-02-26 07:29:49 +08:00
|
|
|
/* Calls with non-zero extra had to clamp extra. */
|
2016-06-01 05:50:21 +08:00
|
|
|
assert(extra == 0 || size + extra <= LARGE_MAXCLASS);
|
2016-02-26 07:29:49 +08:00
|
|
|
|
2017-01-16 08:56:30 +08:00
|
|
|
if (unlikely(size > LARGE_MAXCLASS)) {
|
2017-01-20 10:15:45 +08:00
|
|
|
return true;
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2016-02-26 07:29:49 +08:00
|
|
|
|
2015-09-12 07:18:53 +08:00
|
|
|
usize_min = s2u(size);
|
|
|
|
usize_max = s2u(size + extra);
|
2016-05-28 15:17:28 +08:00
|
|
|
if (likely(oldsize <= SMALL_MAXCLASS && usize_min <= SMALL_MAXCLASS)) {
|
2015-02-13 06:06:37 +08:00
|
|
|
/*
|
|
|
|
* Avoid moving the allocation if the size class can be left the
|
|
|
|
* same.
|
|
|
|
*/
|
2016-05-28 15:17:28 +08:00
|
|
|
assert(arena_bin_info[size2index(oldsize)].reg_size ==
|
|
|
|
oldsize);
|
|
|
|
if ((usize_max > SMALL_MAXCLASS || size2index(usize_max) !=
|
|
|
|
size2index(oldsize)) && (size > oldsize || usize_max <
|
2017-01-16 08:56:30 +08:00
|
|
|
oldsize)) {
|
2017-01-20 10:15:45 +08:00
|
|
|
return true;
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2010-01-17 01:53:50 +08:00
|
|
|
|
2016-03-24 11:29:33 +08:00
|
|
|
arena_decay_tick(tsdn, extent_arena_get(extent));
|
2017-01-20 10:15:45 +08:00
|
|
|
return false;
|
2016-05-28 15:17:28 +08:00
|
|
|
} else if (oldsize >= LARGE_MINCLASS && usize_max >= LARGE_MINCLASS) {
|
2017-01-20 10:15:45 +08:00
|
|
|
return large_ralloc_no_move(tsdn, extent, usize_min, usize_max,
|
|
|
|
zero);
|
2015-09-12 07:18:53 +08:00
|
|
|
}
|
2016-05-19 12:02:46 +08:00
|
|
|
|
2017-01-20 10:15:45 +08:00
|
|
|
return true;
|
2015-09-12 07:18:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void *
|
2016-05-11 13:21:10 +08:00
|
|
|
arena_ralloc_move_helper(tsdn_t *tsdn, arena_t *arena, size_t usize,
|
2017-01-16 08:56:30 +08:00
|
|
|
size_t alignment, bool zero, tcache_t *tcache) {
|
|
|
|
if (alignment == 0) {
|
2017-01-20 10:15:45 +08:00
|
|
|
return arena_malloc(tsdn, arena, usize, size2index(usize),
|
|
|
|
zero, tcache, true);
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2015-09-12 07:18:53 +08:00
|
|
|
usize = sa2u(usize, alignment);
|
2017-01-16 08:56:30 +08:00
|
|
|
if (unlikely(usize == 0 || usize > LARGE_MAXCLASS)) {
|
2017-01-20 10:15:45 +08:00
|
|
|
return NULL;
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2017-01-20 10:15:45 +08:00
|
|
|
return ipalloct(tsdn, usize, alignment, zero, tcache, arena);
|
Add {,r,s,d}allocm().
Add allocm(), rallocm(), sallocm(), and dallocm(), which are a
functional superset of malloc(), calloc(), posix_memalign(),
malloc_usable_size(), and free().
2010-09-18 06:46:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void *
|
2016-03-24 11:29:33 +08:00
|
|
|
arena_ralloc(tsdn_t *tsdn, arena_t *arena, extent_t *extent, void *ptr,
|
2017-01-16 08:56:30 +08:00
|
|
|
size_t oldsize, size_t size, size_t alignment, bool zero,
|
|
|
|
tcache_t *tcache) {
|
Add {,r,s,d}allocm().
Add allocm(), rallocm(), sallocm(), and dallocm(), which are a
functional superset of malloc(), calloc(), posix_memalign(),
malloc_usable_size(), and free().
2010-09-18 06:46:18 +08:00
|
|
|
void *ret;
|
2016-05-19 12:02:46 +08:00
|
|
|
size_t usize, copysize;
|
2015-09-12 07:18:53 +08:00
|
|
|
|
|
|
|
usize = s2u(size);
|
2017-01-16 08:56:30 +08:00
|
|
|
if (unlikely(usize == 0 || size > LARGE_MAXCLASS)) {
|
2017-01-20 10:15:45 +08:00
|
|
|
return NULL;
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
Add {,r,s,d}allocm().
Add allocm(), rallocm(), sallocm(), and dallocm(), which are a
functional superset of malloc(), calloc(), posix_memalign(),
malloc_usable_size(), and free().
2010-09-18 06:46:18 +08:00
|
|
|
|
2016-05-28 15:17:28 +08:00
|
|
|
if (likely(usize <= SMALL_MAXCLASS)) {
|
2015-02-13 06:06:37 +08:00
|
|
|
/* Try to avoid moving the allocation. */
|
2016-03-24 11:29:33 +08:00
|
|
|
if (!arena_ralloc_no_move(tsdn, extent, ptr, oldsize, usize, 0,
|
2017-01-16 08:56:30 +08:00
|
|
|
zero)) {
|
2017-01-20 10:15:45 +08:00
|
|
|
return ptr;
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2016-05-19 12:02:46 +08:00
|
|
|
}
|
2010-01-17 01:53:50 +08:00
|
|
|
|
2016-05-28 15:17:28 +08:00
|
|
|
if (oldsize >= LARGE_MINCLASS && usize >= LARGE_MINCLASS) {
|
2017-01-20 10:15:45 +08:00
|
|
|
return large_ralloc(tsdn, arena, extent, usize, alignment,
|
|
|
|
zero, tcache);
|
2016-05-19 12:02:46 +08:00
|
|
|
}
|
Add {,r,s,d}allocm().
Add allocm(), rallocm(), sallocm(), and dallocm(), which are a
functional superset of malloc(), calloc(), posix_memalign(),
malloc_usable_size(), and free().
2010-09-18 06:46:18 +08:00
|
|
|
|
2016-05-19 12:02:46 +08:00
|
|
|
/*
|
|
|
|
* size and oldsize are different enough that we need to move the
|
|
|
|
* object. In that case, fall back to allocating new space and copying.
|
|
|
|
*/
|
|
|
|
ret = arena_ralloc_move_helper(tsdn, arena, usize, alignment, zero,
|
|
|
|
tcache);
|
2017-01-16 08:56:30 +08:00
|
|
|
if (ret == NULL) {
|
2017-01-20 10:15:45 +08:00
|
|
|
return NULL;
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2015-02-13 06:06:37 +08:00
|
|
|
|
2016-05-19 12:02:46 +08:00
|
|
|
/*
|
|
|
|
* Junk/zero-filling were already done by
|
|
|
|
* ipalloc()/arena_malloc().
|
|
|
|
*/
|
|
|
|
|
|
|
|
copysize = (usize < oldsize) ? usize : oldsize;
|
|
|
|
memcpy(ret, ptr, copysize);
|
|
|
|
isdalloct(tsdn, extent, ptr, oldsize, tcache, true);
|
2017-01-20 10:15:45 +08:00
|
|
|
return ret;
|
2010-01-17 01:53:50 +08:00
|
|
|
}
|
|
|
|
|
2012-10-12 04:53:15 +08:00
|
|
|
dss_prec_t
|
2017-02-13 08:34:36 +08:00
|
|
|
arena_dss_prec_get(arena_t *arena) {
|
|
|
|
return (dss_prec_t)atomic_read_u((unsigned *)&arena->dss_prec);
|
2012-10-12 04:53:15 +08:00
|
|
|
}
|
|
|
|
|
2014-04-16 03:09:48 +08:00
|
|
|
bool
|
2017-02-13 08:34:36 +08:00
|
|
|
arena_dss_prec_set(arena_t *arena, dss_prec_t dss_prec) {
|
2017-01-16 08:56:30 +08:00
|
|
|
if (!have_dss) {
|
2014-04-16 03:09:48 +08:00
|
|
|
return (dss_prec != dss_prec_disabled);
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2017-02-13 08:34:36 +08:00
|
|
|
atomic_write_u((unsigned *)&arena->dss_prec, dss_prec);
|
2017-01-20 10:15:45 +08:00
|
|
|
return false;
|
2012-10-12 04:53:15 +08:00
|
|
|
}
|
|
|
|
|
2016-02-20 12:09:31 +08:00
|
|
|
ssize_t
|
2017-01-16 08:56:30 +08:00
|
|
|
arena_decay_time_default_get(void) {
|
2017-01-20 10:15:45 +08:00
|
|
|
return (ssize_t)atomic_read_zu((size_t *)&decay_time_default);
|
2016-02-20 12:09:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2017-01-16 08:56:30 +08:00
|
|
|
arena_decay_time_default_set(ssize_t decay_time) {
|
|
|
|
if (!arena_decay_time_valid(decay_time)) {
|
2017-01-20 10:15:45 +08:00
|
|
|
return true;
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2016-11-08 03:27:48 +08:00
|
|
|
atomic_write_zu((size_t *)&decay_time_default, (size_t)decay_time);
|
2017-01-20 10:15:45 +08:00
|
|
|
return false;
|
2016-02-20 12:09:31 +08:00
|
|
|
}
|
|
|
|
|
2016-02-25 15:58:10 +08:00
|
|
|
unsigned
|
2017-01-16 08:56:30 +08:00
|
|
|
arena_nthreads_get(arena_t *arena, bool internal) {
|
2017-01-20 10:15:45 +08:00
|
|
|
return atomic_read_u(&arena->nthreads[internal]);
|
2016-02-25 15:58:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2017-01-16 08:56:30 +08:00
|
|
|
arena_nthreads_inc(arena_t *arena, bool internal) {
|
2016-04-23 05:34:14 +08:00
|
|
|
atomic_add_u(&arena->nthreads[internal], 1);
|
2016-02-25 15:58:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2017-01-16 08:56:30 +08:00
|
|
|
arena_nthreads_dec(arena_t *arena, bool internal) {
|
2016-04-23 05:34:14 +08:00
|
|
|
atomic_sub_u(&arena->nthreads[internal], 1);
|
2016-02-25 15:58:10 +08:00
|
|
|
}
|
|
|
|
|
2016-11-16 05:07:53 +08:00
|
|
|
size_t
|
2017-01-16 08:56:30 +08:00
|
|
|
arena_extent_sn_next(arena_t *arena) {
|
2017-01-20 10:15:45 +08:00
|
|
|
return atomic_add_zu(&arena->extent_sn_next, 1) - 1;
|
2016-11-16 05:07:53 +08:00
|
|
|
}
|
|
|
|
|
Refactor/fix arenas manipulation.
Abstract arenas access to use arena_get() (or a0get() where appropriate)
rather than directly reading e.g. arenas[ind]. Prior to the addition of
the arenas.extend mallctl, the worst possible outcome of directly
accessing arenas was a stale read, but arenas.extend may allocate and
assign a new array to arenas.
Add a tsd-based arenas_cache, which amortizes arenas reads. This
introduces some subtle bootstrapping issues, with tsd_boot() now being
split into tsd_boot[01]() to support tsd wrapper allocation
bootstrapping, as well as an arenas_cache_bypass tsd variable which
dynamically terminates allocation of arenas_cache itself.
Promote a0malloc(), a0calloc(), and a0free() to be generally useful for
internal allocation, and use them in several places (more may be
appropriate).
Abstract arena->nthreads management and fix a missing decrement during
thread destruction (recent tsd refactoring left arenas_cleanup()
unused).
Change arena_choose() to propagate OOM, and handle OOM in all callers.
This is important for providing consistent allocation behavior when the
MALLOCX_ARENA() flag is being used. Prior to this fix, it was possible
for an OOM to result in allocation silently allocating from a different
arena than the one specified.
2014-10-08 14:14:57 +08:00
|
|
|
arena_t *
|
2017-01-16 08:56:30 +08:00
|
|
|
arena_new(tsdn_t *tsdn, unsigned ind, extent_hooks_t *extent_hooks) {
|
Refactor/fix arenas manipulation.
Abstract arenas access to use arena_get() (or a0get() where appropriate)
rather than directly reading e.g. arenas[ind]. Prior to the addition of
the arenas.extend mallctl, the worst possible outcome of directly
accessing arenas was a stale read, but arenas.extend may allocate and
assign a new array to arenas.
Add a tsd-based arenas_cache, which amortizes arenas reads. This
introduces some subtle bootstrapping issues, with tsd_boot() now being
split into tsd_boot[01]() to support tsd wrapper allocation
bootstrapping, as well as an arenas_cache_bypass tsd variable which
dynamically terminates allocation of arenas_cache itself.
Promote a0malloc(), a0calloc(), and a0free() to be generally useful for
internal allocation, and use them in several places (more may be
appropriate).
Abstract arena->nthreads management and fix a missing decrement during
thread destruction (recent tsd refactoring left arenas_cleanup()
unused).
Change arena_choose() to propagate OOM, and handle OOM in all callers.
This is important for providing consistent allocation behavior when the
MALLOCX_ARENA() flag is being used. Prior to this fix, it was possible
for an OOM to result in allocation silently allocating from a different
arena than the one specified.
2014-10-08 14:14:57 +08:00
|
|
|
arena_t *arena;
|
2016-12-23 06:39:10 +08:00
|
|
|
base_t *base;
|
2010-01-17 01:53:50 +08:00
|
|
|
unsigned i;
|
|
|
|
|
2017-01-16 08:56:30 +08:00
|
|
|
if (ind == 0) {
|
2016-12-23 06:39:10 +08:00
|
|
|
base = b0get();
|
2017-01-16 08:56:30 +08:00
|
|
|
} else {
|
2016-12-23 06:39:10 +08:00
|
|
|
base = base_new(tsdn, ind, extent_hooks);
|
2017-01-16 08:56:30 +08:00
|
|
|
if (base == NULL) {
|
2017-01-20 10:15:45 +08:00
|
|
|
return NULL;
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2016-12-23 06:39:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
arena = (arena_t *)base_alloc(tsdn, base, sizeof(arena_t), CACHELINE);
|
2017-01-16 08:56:30 +08:00
|
|
|
if (arena == NULL) {
|
2016-12-23 06:39:10 +08:00
|
|
|
goto label_error;
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
Refactor/fix arenas manipulation.
Abstract arenas access to use arena_get() (or a0get() where appropriate)
rather than directly reading e.g. arenas[ind]. Prior to the addition of
the arenas.extend mallctl, the worst possible outcome of directly
accessing arenas was a stale read, but arenas.extend may allocate and
assign a new array to arenas.
Add a tsd-based arenas_cache, which amortizes arenas reads. This
introduces some subtle bootstrapping issues, with tsd_boot() now being
split into tsd_boot[01]() to support tsd wrapper allocation
bootstrapping, as well as an arenas_cache_bypass tsd variable which
dynamically terminates allocation of arenas_cache itself.
Promote a0malloc(), a0calloc(), and a0free() to be generally useful for
internal allocation, and use them in several places (more may be
appropriate).
Abstract arena->nthreads management and fix a missing decrement during
thread destruction (recent tsd refactoring left arenas_cleanup()
unused).
Change arena_choose() to propagate OOM, and handle OOM in all callers.
This is important for providing consistent allocation behavior when the
MALLOCX_ARENA() flag is being used. Prior to this fix, it was possible
for an OOM to result in allocation silently allocating from a different
arena than the one specified.
2014-10-08 14:14:57 +08:00
|
|
|
|
2016-04-23 05:34:14 +08:00
|
|
|
arena->nthreads[0] = arena->nthreads[1] = 0;
|
2017-01-16 08:56:30 +08:00
|
|
|
if (malloc_mutex_init(&arena->lock, "arena", WITNESS_RANK_ARENA)) {
|
2016-12-23 06:39:10 +08:00
|
|
|
goto label_error;
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2010-01-17 01:53:50 +08:00
|
|
|
|
2017-02-13 09:43:33 +08:00
|
|
|
if (config_stats) {
|
|
|
|
if (arena_stats_init(tsdn, &arena->stats)) {
|
|
|
|
goto label_error;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-16 08:56:30 +08:00
|
|
|
if (config_stats && config_tcache) {
|
2016-05-28 15:17:28 +08:00
|
|
|
ql_new(&arena->tcache_ql);
|
2017-02-13 10:50:53 +08:00
|
|
|
if (malloc_mutex_init(&arena->tcache_ql_mtx, "tcache_ql",
|
|
|
|
WITNESS_RANK_TCACHE_QL)) {
|
|
|
|
goto label_error;
|
|
|
|
}
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2010-01-17 01:53:50 +08:00
|
|
|
|
2017-01-16 08:56:30 +08:00
|
|
|
if (config_prof) {
|
2017-02-13 09:03:46 +08:00
|
|
|
if (prof_accum_init(tsdn, &arena->prof_accum)) {
|
|
|
|
goto label_error;
|
|
|
|
}
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2010-02-12 05:19:21 +08:00
|
|
|
|
2015-05-05 00:58:36 +08:00
|
|
|
if (config_cache_oblivious) {
|
|
|
|
/*
|
|
|
|
* A nondeterministic seed based on the address of arena reduces
|
|
|
|
* the likelihood of lockstep non-uniform cache index
|
|
|
|
* utilization among identical concurrent processes, but at the
|
|
|
|
* cost of test repeatability. For debug builds, instead use a
|
|
|
|
* deterministic seed.
|
|
|
|
*/
|
|
|
|
arena->offset_state = config_debug ? ind :
|
2016-11-08 02:52:44 +08:00
|
|
|
(size_t)(uintptr_t)arena;
|
2015-05-05 00:58:36 +08:00
|
|
|
}
|
|
|
|
|
2016-11-16 05:07:53 +08:00
|
|
|
arena->extent_sn_next = 0;
|
|
|
|
|
2016-10-14 03:18:38 +08:00
|
|
|
arena->dss_prec = extent_dss_prec_get();
|
2012-10-12 04:53:15 +08:00
|
|
|
|
2017-01-30 13:57:14 +08:00
|
|
|
atomic_write_u(&arena->purging, 0);
|
|
|
|
atomic_write_zu(&arena->nactive, 0);
|
2010-01-17 01:53:50 +08:00
|
|
|
|
2016-10-13 01:40:27 +08:00
|
|
|
arena_decay_init(arena, arena_decay_time_default_get());
|
2016-02-20 12:09:31 +08:00
|
|
|
|
2017-01-30 13:57:14 +08:00
|
|
|
extent_list_init(&arena->large);
|
2016-06-01 05:50:21 +08:00
|
|
|
if (malloc_mutex_init(&arena->large_mtx, "arena_large",
|
2017-01-16 08:56:30 +08:00
|
|
|
WITNESS_RANK_ARENA_LARGE)) {
|
2016-12-23 06:39:10 +08:00
|
|
|
goto label_error;
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2015-02-16 10:04:46 +08:00
|
|
|
|
2017-01-30 13:57:14 +08:00
|
|
|
if (extents_init(tsdn, &arena->extents_cached, extent_state_dirty)) {
|
|
|
|
goto label_error;
|
2016-05-18 05:58:56 +08:00
|
|
|
}
|
2017-01-30 13:57:14 +08:00
|
|
|
if (extents_init(tsdn, &arena->extents_retained,
|
|
|
|
extent_state_retained)) {
|
2016-12-23 06:39:10 +08:00
|
|
|
goto label_error;
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2016-09-23 02:57:28 +08:00
|
|
|
|
2017-01-16 08:56:30 +08:00
|
|
|
if (!config_munmap) {
|
2016-11-22 15:23:03 +08:00
|
|
|
arena->extent_grow_next = psz2ind(HUGEPAGE);
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2016-11-22 15:23:03 +08:00
|
|
|
|
2017-01-30 13:57:14 +08:00
|
|
|
extent_list_init(&arena->extent_freelist);
|
|
|
|
if (malloc_mutex_init(&arena->extent_freelist_mtx, "extent_freelist",
|
|
|
|
WITNESS_RANK_EXTENT_FREELIST)) {
|
2016-12-23 06:39:10 +08:00
|
|
|
goto label_error;
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2015-02-16 10:04:46 +08:00
|
|
|
|
2010-01-17 01:53:50 +08:00
|
|
|
/* Initialize bins. */
|
2012-02-29 08:50:47 +08:00
|
|
|
for (i = 0; i < NBINS; i++) {
|
2016-04-23 05:36:48 +08:00
|
|
|
arena_bin_t *bin = &arena->bins[i];
|
2016-04-14 14:36:15 +08:00
|
|
|
if (malloc_mutex_init(&bin->lock, "arena_bin",
|
2017-01-16 08:56:30 +08:00
|
|
|
WITNESS_RANK_ARENA_BIN)) {
|
2016-12-23 06:39:10 +08:00
|
|
|
goto label_error;
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2016-05-30 09:34:50 +08:00
|
|
|
bin->slabcur = NULL;
|
|
|
|
extent_heap_new(&bin->slabs_nonfull);
|
2017-01-30 13:57:14 +08:00
|
|
|
extent_list_init(&bin->slabs_full);
|
2017-01-16 08:56:30 +08:00
|
|
|
if (config_stats) {
|
2012-02-11 12:22:09 +08:00
|
|
|
memset(&bin->stats, 0, sizeof(malloc_bin_stats_t));
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2010-01-17 01:53:50 +08:00
|
|
|
}
|
|
|
|
|
2016-12-23 06:39:10 +08:00
|
|
|
arena->base = base;
|
|
|
|
|
2017-01-20 10:15:45 +08:00
|
|
|
return arena;
|
2016-12-23 06:39:10 +08:00
|
|
|
label_error:
|
2017-01-16 08:56:30 +08:00
|
|
|
if (ind != 0) {
|
2016-12-23 06:39:10 +08:00
|
|
|
base_delete(base);
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2017-01-20 10:15:45 +08:00
|
|
|
return NULL;
|
2010-01-17 01:53:50 +08:00
|
|
|
}
|
|
|
|
|
2016-04-09 05:16:19 +08:00
|
|
|
void
|
2017-01-16 08:56:30 +08:00
|
|
|
arena_boot(void) {
|
2016-02-20 12:09:31 +08:00
|
|
|
arena_decay_time_default_set(opt_decay_time);
|
2010-01-17 01:53:50 +08:00
|
|
|
}
|
2012-03-14 07:31:41 +08:00
|
|
|
|
|
|
|
void
|
2017-01-16 08:56:30 +08:00
|
|
|
arena_prefork0(tsdn_t *tsdn, arena_t *arena) {
|
2016-05-11 13:21:10 +08:00
|
|
|
malloc_mutex_prefork(tsdn, &arena->lock);
|
2017-02-13 10:50:53 +08:00
|
|
|
if (config_stats && config_tcache) {
|
|
|
|
malloc_mutex_prefork(tsdn, &arena->tcache_ql_mtx);
|
|
|
|
}
|
2016-04-26 14:14:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2017-01-16 08:56:30 +08:00
|
|
|
arena_prefork1(tsdn_t *tsdn, arena_t *arena) {
|
2017-01-30 13:57:14 +08:00
|
|
|
extents_prefork(tsdn, &arena->extents_cached);
|
|
|
|
extents_prefork(tsdn, &arena->extents_retained);
|
2016-04-26 14:14:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2017-01-16 08:56:30 +08:00
|
|
|
arena_prefork2(tsdn_t *tsdn, arena_t *arena) {
|
2017-01-30 13:57:14 +08:00
|
|
|
malloc_mutex_prefork(tsdn, &arena->extent_freelist_mtx);
|
2016-04-26 14:14:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2017-01-16 08:56:30 +08:00
|
|
|
arena_prefork3(tsdn_t *tsdn, arena_t *arena) {
|
2016-04-26 14:14:40 +08:00
|
|
|
unsigned i;
|
|
|
|
|
2016-12-23 06:39:10 +08:00
|
|
|
base_prefork(tsdn, arena->base);
|
2017-02-13 09:43:33 +08:00
|
|
|
malloc_mutex_prefork(tsdn, &arena->large_mtx);
|
2017-01-16 08:56:30 +08:00
|
|
|
for (i = 0; i < NBINS; i++) {
|
2016-05-11 13:21:10 +08:00
|
|
|
malloc_mutex_prefork(tsdn, &arena->bins[i].lock);
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2012-03-14 07:31:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2017-01-16 08:56:30 +08:00
|
|
|
arena_postfork_parent(tsdn_t *tsdn, arena_t *arena) {
|
2012-03-14 07:31:41 +08:00
|
|
|
unsigned i;
|
|
|
|
|
2017-01-16 08:56:30 +08:00
|
|
|
for (i = 0; i < NBINS; i++) {
|
2016-05-11 13:21:10 +08:00
|
|
|
malloc_mutex_postfork_parent(tsdn, &arena->bins[i].lock);
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2017-02-13 09:43:33 +08:00
|
|
|
malloc_mutex_postfork_parent(tsdn, &arena->large_mtx);
|
2016-12-23 06:39:10 +08:00
|
|
|
base_postfork_parent(tsdn, arena->base);
|
2017-01-30 13:57:14 +08:00
|
|
|
malloc_mutex_postfork_parent(tsdn, &arena->extent_freelist_mtx);
|
|
|
|
extents_postfork_parent(tsdn, &arena->extents_cached);
|
|
|
|
extents_postfork_parent(tsdn, &arena->extents_retained);
|
2016-05-11 13:21:10 +08:00
|
|
|
malloc_mutex_postfork_parent(tsdn, &arena->lock);
|
2017-02-13 10:50:53 +08:00
|
|
|
if (config_stats && config_tcache) {
|
|
|
|
malloc_mutex_postfork_parent(tsdn, &arena->tcache_ql_mtx);
|
|
|
|
}
|
2012-03-14 07:31:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2017-01-16 08:56:30 +08:00
|
|
|
arena_postfork_child(tsdn_t *tsdn, arena_t *arena) {
|
2012-03-14 07:31:41 +08:00
|
|
|
unsigned i;
|
|
|
|
|
2017-01-16 08:56:30 +08:00
|
|
|
for (i = 0; i < NBINS; i++) {
|
2016-05-11 13:21:10 +08:00
|
|
|
malloc_mutex_postfork_child(tsdn, &arena->bins[i].lock);
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2017-02-13 09:43:33 +08:00
|
|
|
malloc_mutex_postfork_child(tsdn, &arena->large_mtx);
|
2016-12-23 06:39:10 +08:00
|
|
|
base_postfork_child(tsdn, arena->base);
|
2017-01-30 13:57:14 +08:00
|
|
|
malloc_mutex_postfork_child(tsdn, &arena->extent_freelist_mtx);
|
|
|
|
extents_postfork_child(tsdn, &arena->extents_cached);
|
|
|
|
extents_postfork_child(tsdn, &arena->extents_retained);
|
2016-05-11 13:21:10 +08:00
|
|
|
malloc_mutex_postfork_child(tsdn, &arena->lock);
|
2017-02-13 10:50:53 +08:00
|
|
|
if (config_stats && config_tcache) {
|
|
|
|
malloc_mutex_postfork_child(tsdn, &arena->tcache_ql_mtx);
|
|
|
|
}
|
2012-03-14 07:31:41 +08:00
|
|
|
}
|