2020-03-08 12:14:49 +08:00
|
|
|
#ifndef JEMALLOC_INTERNAL_PA_H
|
|
|
|
#define JEMALLOC_INTERNAL_PA_H
|
|
|
|
|
2020-03-11 03:04:16 +08:00
|
|
|
#include "jemalloc/internal/base.h"
|
2020-03-10 04:11:35 +08:00
|
|
|
#include "jemalloc/internal/decay.h"
|
2020-03-09 04:08:15 +08:00
|
|
|
#include "jemalloc/internal/ecache.h"
|
|
|
|
#include "jemalloc/internal/edata_cache.h"
|
2020-03-15 01:49:34 +08:00
|
|
|
#include "jemalloc/internal/emap.h"
|
2020-03-10 01:40:37 +08:00
|
|
|
#include "jemalloc/internal/lockedint.h"
|
2020-05-30 07:57:31 +08:00
|
|
|
#include "jemalloc/internal/pac.h"
|
2020-05-30 06:02:19 +08:00
|
|
|
#include "jemalloc/internal/pai.h"
|
2020-03-09 04:08:15 +08:00
|
|
|
|
2020-05-30 07:57:31 +08:00
|
|
|
/*
|
|
|
|
* The page allocator; responsible for acquiring pages of memory for
|
|
|
|
* allocations. It picks the implementation of the page allocator interface
|
|
|
|
* (i.e. a pai_t) to handle a given page-level allocation request. For now, the
|
|
|
|
* only such implementation is the PAC code ("page allocator classic"), but
|
|
|
|
* others will be coming soon.
|
|
|
|
*/
|
|
|
|
|
2020-03-10 02:26:15 +08:00
|
|
|
/*
|
|
|
|
* The stats for a particular pa_shard. Because of the way the ctl module
|
|
|
|
* handles stats epoch data collection (it has its own arena_stats, and merges
|
|
|
|
* the stats from each arena into it), this needs to live in the arena_stats_t;
|
|
|
|
* hence we define it here and let the pa_shard have a pointer (rather than the
|
|
|
|
* more natural approach of just embedding it in the pa_shard itself).
|
|
|
|
*
|
|
|
|
* We follow the arena_stats_t approach of marking the derived fields. These
|
|
|
|
* are the ones that are not maintained on their own; instead, their values are
|
|
|
|
* derived during those stats merges.
|
|
|
|
*/
|
2020-03-09 04:08:15 +08:00
|
|
|
typedef struct pa_shard_stats_s pa_shard_stats_t;
|
|
|
|
struct pa_shard_stats_s {
|
2020-03-12 09:14:53 +08:00
|
|
|
/* Number of edata_t structs allocated by base, but not being used. */
|
|
|
|
size_t edata_avail; /* Derived. */
|
2020-06-02 08:42:27 +08:00
|
|
|
/*
|
|
|
|
* Stats specific to the PAC. For now, these are the only stats that
|
|
|
|
* exist, but there will eventually be other page allocators. Things
|
|
|
|
* like edata_avail make sense in a cross-PA sense, but things like
|
|
|
|
* npurges don't.
|
|
|
|
*/
|
|
|
|
pac_stats_t pac_stats;
|
2020-03-09 04:08:15 +08:00
|
|
|
};
|
|
|
|
|
2020-03-12 07:13:36 +08:00
|
|
|
/*
|
|
|
|
* The local allocator handle. Keeps the state necessary to satisfy page-sized
|
|
|
|
* allocations.
|
|
|
|
*
|
|
|
|
* The contents are mostly internal to the PA module. The key exception is that
|
|
|
|
* arena decay code is allowed to grab pointers to the dirty and muzzy ecaches
|
|
|
|
* decay_ts, for a couple of queries, passing them back to a PA function, or
|
|
|
|
* acquiring decay.mtx and looking at decay.purging. The reasoning is that,
|
|
|
|
* while PA decides what and how to purge, the arena code decides when and where
|
|
|
|
* (e.g. on what thread). It's allowed to use the presence of another purger to
|
|
|
|
* decide.
|
|
|
|
* (The background thread code also touches some other decay internals, but
|
|
|
|
* that's not fundamental; its' just an artifact of a partial refactoring, and
|
|
|
|
* its accesses could be straightforwardly moved inside the decay module).
|
|
|
|
*/
|
2020-03-09 01:35:56 +08:00
|
|
|
typedef struct pa_shard_s pa_shard_t;
|
|
|
|
struct pa_shard_s {
|
2020-03-12 08:40:17 +08:00
|
|
|
/*
|
|
|
|
* Number of pages in active extents.
|
|
|
|
*
|
|
|
|
* Synchronization: atomic.
|
|
|
|
*/
|
|
|
|
atomic_zu_t nactive;
|
|
|
|
|
2020-05-30 06:02:19 +08:00
|
|
|
/*
|
|
|
|
* An interface for page allocation from the ecache framework (i.e. a
|
|
|
|
* cascade of ecache_dirty, ecache_muzzy, ecache_retained). Right now
|
|
|
|
* this is the *only* pai, but we'll soon grow another.
|
|
|
|
*/
|
|
|
|
pai_t ecache_pai;
|
2020-05-30 07:57:31 +08:00
|
|
|
pac_t pac;
|
2020-03-09 02:41:19 +08:00
|
|
|
|
|
|
|
/* The source of edata_t objects. */
|
|
|
|
edata_cache_t edata_cache;
|
2020-03-09 04:08:15 +08:00
|
|
|
|
2020-03-10 03:06:19 +08:00
|
|
|
malloc_mutex_t *stats_mtx;
|
2020-03-09 04:08:15 +08:00
|
|
|
pa_shard_stats_t *stats;
|
2020-03-10 04:11:35 +08:00
|
|
|
|
2020-03-15 01:49:34 +08:00
|
|
|
/* The emap this shard is tied to. */
|
|
|
|
emap_t *emap;
|
|
|
|
|
2020-03-11 03:04:16 +08:00
|
|
|
/* The base from which we get the ehooks and allocate metadat. */
|
|
|
|
base_t *base;
|
2020-03-09 01:35:56 +08:00
|
|
|
};
|
|
|
|
|
2020-03-13 02:21:22 +08:00
|
|
|
static inline bool
|
|
|
|
pa_shard_dont_decay_muzzy(pa_shard_t *shard) {
|
2020-05-30 07:57:31 +08:00
|
|
|
return ecache_npages_get(&shard->pac.ecache_muzzy) == 0 &&
|
2020-06-02 07:35:17 +08:00
|
|
|
pac_muzzy_decay_ms_get(&shard->pac) <= 0;
|
2020-03-13 02:21:22 +08:00
|
|
|
}
|
|
|
|
|
2020-03-11 03:04:16 +08:00
|
|
|
static inline ehooks_t *
|
|
|
|
pa_shard_ehooks_get(pa_shard_t *shard) {
|
|
|
|
return base_ehooks_get(shard->base);
|
|
|
|
}
|
|
|
|
|
2020-03-09 02:19:41 +08:00
|
|
|
/* Returns true on error. */
|
2020-03-15 01:49:34 +08:00
|
|
|
bool pa_shard_init(tsdn_t *tsdn, pa_shard_t *shard, emap_t *emap, base_t *base,
|
|
|
|
unsigned ind, pa_shard_stats_t *stats, malloc_mutex_t *stats_mtx,
|
|
|
|
nstime_t *cur_time, ssize_t dirty_decay_ms, ssize_t muzzy_decay_ms);
|
|
|
|
|
2020-03-13 02:21:22 +08:00
|
|
|
/*
|
|
|
|
* This does the PA-specific parts of arena reset (i.e. freeing all active
|
|
|
|
* allocations).
|
|
|
|
*/
|
|
|
|
void pa_shard_reset(pa_shard_t *shard);
|
|
|
|
/*
|
|
|
|
* Destroy all the remaining retained extents. Should only be called after
|
|
|
|
* decaying all active, dirty, and muzzy extents to the retained state, as the
|
|
|
|
* last step in destroying the shard.
|
|
|
|
*/
|
|
|
|
void pa_shard_destroy_retained(tsdn_t *tsdn, pa_shard_t *shard);
|
|
|
|
|
2020-03-12 02:36:38 +08:00
|
|
|
/* Gets an edata for the given allocation. */
|
2020-03-11 05:38:55 +08:00
|
|
|
edata_t *pa_alloc(tsdn_t *tsdn, pa_shard_t *shard, size_t size,
|
2020-03-15 09:10:29 +08:00
|
|
|
size_t alignment, bool slab, szind_t szind, bool zero);
|
2020-03-11 05:38:55 +08:00
|
|
|
/* Returns true on error, in which case nothing changed. */
|
2020-03-11 08:27:31 +08:00
|
|
|
bool pa_expand(tsdn_t *tsdn, pa_shard_t *shard, edata_t *edata, size_t old_size,
|
2020-03-16 09:55:43 +08:00
|
|
|
size_t new_size, szind_t szind, bool zero);
|
2020-03-12 02:36:38 +08:00
|
|
|
/*
|
|
|
|
* The same. Sets *generated_dirty to true if we produced new dirty pages, and
|
|
|
|
* false otherwise.
|
|
|
|
*/
|
|
|
|
bool pa_shrink(tsdn_t *tsdn, pa_shard_t *shard, edata_t *edata, size_t old_size,
|
2020-03-16 09:55:43 +08:00
|
|
|
size_t new_size, szind_t szind, bool *generated_dirty);
|
2020-03-12 02:36:38 +08:00
|
|
|
/*
|
|
|
|
* Frees the given edata back to the pa. Sets *generated_dirty if we produced
|
|
|
|
* new dirty pages (well, we alwyas set it for now; but this need not be the
|
|
|
|
* case).
|
|
|
|
* (We could make generated_dirty the return value of course, but this is more
|
|
|
|
* consistent with the shrink pathway and our error codes here).
|
|
|
|
*/
|
|
|
|
void pa_dalloc(tsdn_t *tsdn, pa_shard_t *shard, edata_t *edata,
|
|
|
|
bool *generated_dirty);
|
2020-03-11 05:38:55 +08:00
|
|
|
|
2020-03-13 00:20:37 +08:00
|
|
|
/******************************************************************************/
|
|
|
|
/*
|
|
|
|
* Various bits of "boring" functionality that are still part of this module,
|
|
|
|
* but that we relegate to pa_extra.c, to keep the core logic in pa.c as
|
|
|
|
* readable as possible.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* These fork phases are synchronized with the arena fork phase numbering to
|
|
|
|
* make it easy to keep straight. That's why there's no prefork1.
|
|
|
|
*/
|
|
|
|
void pa_shard_prefork0(tsdn_t *tsdn, pa_shard_t *shard);
|
|
|
|
void pa_shard_prefork2(tsdn_t *tsdn, pa_shard_t *shard);
|
|
|
|
void pa_shard_prefork3(tsdn_t *tsdn, pa_shard_t *shard);
|
|
|
|
void pa_shard_prefork4(tsdn_t *tsdn, pa_shard_t *shard);
|
|
|
|
void pa_shard_postfork_parent(tsdn_t *tsdn, pa_shard_t *shard);
|
|
|
|
void pa_shard_postfork_child(tsdn_t *tsdn, pa_shard_t *shard);
|
|
|
|
|
2020-03-13 00:28:13 +08:00
|
|
|
void pa_shard_basic_stats_merge(pa_shard_t *shard, size_t *nactive,
|
|
|
|
size_t *ndirty, size_t *nmuzzy);
|
|
|
|
|
2020-03-13 01:28:18 +08:00
|
|
|
void pa_shard_stats_merge(tsdn_t *tsdn, pa_shard_t *shard,
|
2020-06-02 08:42:27 +08:00
|
|
|
pa_shard_stats_t *pa_shard_stats_out, pac_estats_t *estats_out,
|
2020-03-13 01:28:18 +08:00
|
|
|
size_t *resident);
|
|
|
|
|
2020-03-13 06:26:50 +08:00
|
|
|
/*
|
|
|
|
* Reads the PA-owned mutex stats into the output stats array, at the
|
|
|
|
* appropriate positions. Morally, these stats should really live in
|
|
|
|
* pa_shard_stats_t, but the indices are sort of baked into the various mutex
|
|
|
|
* prof macros. This would be a good thing to do at some point.
|
|
|
|
*/
|
|
|
|
void pa_shard_mtx_stats_read(tsdn_t *tsdn, pa_shard_t *shard,
|
|
|
|
mutex_prof_data_t mutex_prof_data[mutex_prof_num_arena_mutexes]);
|
|
|
|
|
2020-03-08 12:14:49 +08:00
|
|
|
#endif /* JEMALLOC_INTERNAL_PA_H */
|