61 lines
1.4 KiB
C
61 lines
1.4 KiB
C
|
#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"
|
||
|
|
||
|
/*
|
||
|
* 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;
|
||
|
};
|
||
|
|
||
|
#endif /* JEMALLOC_INTERNAL_ESET_H */
|