2019-09-21 10:59:55 +08:00
|
|
|
#ifndef JEMALLOC_INTERNAL_ESET_H
|
|
|
|
#define JEMALLOC_INTERNAL_ESET_H
|
|
|
|
|
|
|
|
#include "jemalloc/internal/atomic.h"
|
|
|
|
#include "jemalloc/internal/bitmap.h"
|
|
|
|
#include "jemalloc/internal/extent.h"
|
|
|
|
#include "jemalloc/internal/mutex.h"
|
|
|
|
|
2019-09-21 11:37:15 +08:00
|
|
|
/* This is a transitional declarion, while we move extent.c into eset.c. */
|
|
|
|
extern const bitmap_info_t eset_bitmap_info;
|
|
|
|
|
2019-09-21 10:59:55 +08:00
|
|
|
/*
|
|
|
|
* An eset ("extent set") is a quantized collection of extents, with built-in
|
|
|
|
* LRU queue.
|
|
|
|
*/
|
|
|
|
typedef struct eset_s eset_t;
|
|
|
|
struct eset_s {
|
|
|
|
malloc_mutex_t mtx;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Quantized per size class heaps of extents.
|
|
|
|
*
|
|
|
|
* Synchronization: mtx.
|
|
|
|
*/
|
|
|
|
extent_heap_t heaps[SC_NPSIZES + 1];
|
|
|
|
atomic_zu_t nextents[SC_NPSIZES + 1];
|
|
|
|
atomic_zu_t nbytes[SC_NPSIZES + 1];
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Bitmap for which set bits correspond to non-empty heaps.
|
|
|
|
*
|
|
|
|
* Synchronization: mtx.
|
|
|
|
*/
|
|
|
|
bitmap_t bitmap[BITMAP_GROUPS(SC_NPSIZES + 1)];
|
|
|
|
|
|
|
|
/*
|
|
|
|
* LRU of all extents in heaps.
|
|
|
|
*
|
|
|
|
* Synchronization: mtx.
|
|
|
|
*/
|
|
|
|
extent_list_t lru;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Page sum for all extents in heaps.
|
|
|
|
*
|
|
|
|
* The synchronization here is a little tricky. Modifications to npages
|
|
|
|
* must hold mtx, but reads need not (though, a reader who sees npages
|
|
|
|
* without holding the mutex can't assume anything about the rest of the
|
|
|
|
* state of the eset_t).
|
|
|
|
*/
|
|
|
|
atomic_zu_t npages;
|
|
|
|
|
|
|
|
/* All stored extents must be in the same state. */
|
|
|
|
extent_state_t state;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If true, delay coalescing until eviction; otherwise coalesce during
|
|
|
|
* deallocation.
|
|
|
|
*/
|
|
|
|
bool delay_coalesce;
|
|
|
|
};
|
|
|
|
|
2019-09-21 11:37:15 +08:00
|
|
|
bool eset_init(tsdn_t *tsdn, eset_t *eset, extent_state_t state,
|
|
|
|
bool delay_coalesce);
|
2019-09-21 11:45:16 +08:00
|
|
|
extent_state_t eset_state_get(const eset_t *eset);
|
2019-09-21 11:37:15 +08:00
|
|
|
|
2019-09-21 10:59:55 +08:00
|
|
|
#endif /* JEMALLOC_INTERNAL_ESET_H */
|