2017-05-31 01:45:37 +08:00
|
|
|
#ifndef JEMALLOC_INTERNAL_SIZE_H
|
|
|
|
#define JEMALLOC_INTERNAL_SIZE_H
|
|
|
|
|
|
|
|
#include "jemalloc/internal/bit_util.h"
|
|
|
|
#include "jemalloc/internal/pages.h"
|
2017-12-15 04:46:39 +08:00
|
|
|
#include "jemalloc/internal/sc.h"
|
2017-05-31 01:45:37 +08:00
|
|
|
#include "jemalloc/internal/util.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* sz module: Size computations.
|
|
|
|
*
|
|
|
|
* Some abbreviations used here:
|
|
|
|
* p: Page
|
|
|
|
* ind: Index
|
|
|
|
* s, sz: Size
|
|
|
|
* u: Usable size
|
|
|
|
* a: Aligned
|
|
|
|
*
|
|
|
|
* These are not always used completely consistently, but should be enough to
|
|
|
|
* interpret function names. E.g. sz_psz2ind converts page size to page size
|
|
|
|
* index; sz_sa2u converts a (size, alignment) allocation request to the usable
|
|
|
|
* size that would result from such an allocation.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* sz_pind2sz_tab encodes the same information as could be computed by
|
|
|
|
* sz_pind2sz_compute().
|
|
|
|
*/
|
2018-07-20 08:08:10 +08:00
|
|
|
extern size_t sz_pind2sz_tab[SC_NPSIZES + 1];
|
2017-05-31 01:45:37 +08:00
|
|
|
/*
|
|
|
|
* sz_index2size_tab encodes the same information as could be computed (at
|
|
|
|
* unacceptable cost in some code paths) by sz_index2size_compute().
|
|
|
|
*/
|
2017-12-15 04:46:39 +08:00
|
|
|
extern size_t sz_index2size_tab[SC_NSIZES];
|
2017-05-31 01:45:37 +08:00
|
|
|
/*
|
|
|
|
* sz_size2index_tab is a compact lookup table that rounds request sizes up to
|
|
|
|
* size classes. In order to reduce cache footprint, the table is compressed,
|
|
|
|
* and all accesses are via sz_size2index().
|
|
|
|
*/
|
2017-12-15 04:46:39 +08:00
|
|
|
extern uint8_t sz_size2index_tab[];
|
2017-05-31 01:45:37 +08:00
|
|
|
|
|
|
|
static const size_t sz_large_pad =
|
|
|
|
#ifdef JEMALLOC_CACHE_OBLIVIOUS
|
|
|
|
PAGE
|
|
|
|
#else
|
|
|
|
0
|
|
|
|
#endif
|
|
|
|
;
|
|
|
|
|
2017-12-15 04:46:39 +08:00
|
|
|
extern void sz_boot(const sc_data_t *sc_data);
|
|
|
|
|
2017-05-31 01:45:37 +08:00
|
|
|
JEMALLOC_ALWAYS_INLINE pszind_t
|
|
|
|
sz_psz2ind(size_t psz) {
|
2018-07-12 07:05:58 +08:00
|
|
|
if (unlikely(psz > SC_LARGE_MAXCLASS)) {
|
2018-07-20 08:08:10 +08:00
|
|
|
return SC_NPSIZES;
|
2017-05-31 01:45:37 +08:00
|
|
|
}
|
2017-12-15 04:46:39 +08:00
|
|
|
pszind_t x = lg_floor((psz<<1)-1);
|
|
|
|
pszind_t shift = (x < SC_LG_NGROUP + LG_PAGE) ?
|
|
|
|
0 : x - (SC_LG_NGROUP + LG_PAGE);
|
|
|
|
pszind_t grp = shift << SC_LG_NGROUP;
|
2017-05-31 01:45:37 +08:00
|
|
|
|
2017-12-15 04:46:39 +08:00
|
|
|
pszind_t lg_delta = (x < SC_LG_NGROUP + LG_PAGE + 1) ?
|
|
|
|
LG_PAGE : x - SC_LG_NGROUP - 1;
|
2017-05-31 01:45:37 +08:00
|
|
|
|
2017-12-15 04:46:39 +08:00
|
|
|
size_t delta_inverse_mask = ZU(-1) << lg_delta;
|
|
|
|
pszind_t mod = ((((psz-1) & delta_inverse_mask) >> lg_delta)) &
|
|
|
|
((ZU(1) << SC_LG_NGROUP) - 1);
|
2017-05-31 01:45:37 +08:00
|
|
|
|
2017-12-15 04:46:39 +08:00
|
|
|
pszind_t ind = grp + mod;
|
|
|
|
return ind;
|
2017-05-31 01:45:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline size_t
|
|
|
|
sz_pind2sz_compute(pszind_t pind) {
|
2018-07-20 08:08:10 +08:00
|
|
|
if (unlikely(pind == SC_NPSIZES)) {
|
2018-07-12 07:05:58 +08:00
|
|
|
return SC_LARGE_MAXCLASS + PAGE;
|
2017-05-31 01:45:37 +08:00
|
|
|
}
|
2017-12-15 04:46:39 +08:00
|
|
|
size_t grp = pind >> SC_LG_NGROUP;
|
|
|
|
size_t mod = pind & ((ZU(1) << SC_LG_NGROUP) - 1);
|
2017-05-31 01:45:37 +08:00
|
|
|
|
2017-12-15 04:46:39 +08:00
|
|
|
size_t grp_size_mask = ~((!!grp)-1);
|
|
|
|
size_t grp_size = ((ZU(1) << (LG_PAGE + (SC_LG_NGROUP-1))) << grp)
|
|
|
|
& grp_size_mask;
|
2017-05-31 01:45:37 +08:00
|
|
|
|
2017-12-15 04:46:39 +08:00
|
|
|
size_t shift = (grp == 0) ? 1 : grp;
|
|
|
|
size_t lg_delta = shift + (LG_PAGE-1);
|
|
|
|
size_t mod_size = (mod+1) << lg_delta;
|
2017-05-31 01:45:37 +08:00
|
|
|
|
2017-12-15 04:46:39 +08:00
|
|
|
size_t sz = grp_size + mod_size;
|
|
|
|
return sz;
|
2017-05-31 01:45:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline size_t
|
|
|
|
sz_pind2sz_lookup(pszind_t pind) {
|
|
|
|
size_t ret = (size_t)sz_pind2sz_tab[pind];
|
|
|
|
assert(ret == sz_pind2sz_compute(pind));
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline size_t
|
|
|
|
sz_pind2sz(pszind_t pind) {
|
2018-07-20 08:08:10 +08:00
|
|
|
assert(pind < SC_NPSIZES + 1);
|
2017-05-31 01:45:37 +08:00
|
|
|
return sz_pind2sz_lookup(pind);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline size_t
|
|
|
|
sz_psz2u(size_t psz) {
|
2018-07-12 07:05:58 +08:00
|
|
|
if (unlikely(psz > SC_LARGE_MAXCLASS)) {
|
|
|
|
return SC_LARGE_MAXCLASS + PAGE;
|
2017-05-31 01:45:37 +08:00
|
|
|
}
|
2017-12-15 04:46:39 +08:00
|
|
|
size_t x = lg_floor((psz<<1)-1);
|
|
|
|
size_t lg_delta = (x < SC_LG_NGROUP + LG_PAGE + 1) ?
|
|
|
|
LG_PAGE : x - SC_LG_NGROUP - 1;
|
|
|
|
size_t delta = ZU(1) << lg_delta;
|
|
|
|
size_t delta_mask = delta - 1;
|
|
|
|
size_t usize = (psz + delta_mask) & ~delta_mask;
|
|
|
|
return usize;
|
2017-05-31 01:45:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline szind_t
|
|
|
|
sz_size2index_compute(size_t size) {
|
2018-07-12 07:05:58 +08:00
|
|
|
if (unlikely(size > SC_LARGE_MAXCLASS)) {
|
2017-12-15 04:46:39 +08:00
|
|
|
return SC_NSIZES;
|
2017-05-31 01:45:37 +08:00
|
|
|
}
|
2018-10-09 01:11:04 +08:00
|
|
|
|
|
|
|
if (size == 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
2017-12-15 04:46:39 +08:00
|
|
|
#if (SC_NTINY != 0)
|
2018-07-20 08:08:10 +08:00
|
|
|
if (size <= (ZU(1) << SC_LG_TINY_MAXCLASS)) {
|
|
|
|
szind_t lg_tmin = SC_LG_TINY_MAXCLASS - SC_NTINY + 1;
|
2017-05-31 01:45:37 +08:00
|
|
|
szind_t lg_ceil = lg_floor(pow2_ceil_zu(size));
|
|
|
|
return (lg_ceil < lg_tmin ? 0 : lg_ceil - lg_tmin);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
szind_t x = lg_floor((size<<1)-1);
|
2017-12-15 04:46:39 +08:00
|
|
|
szind_t shift = (x < SC_LG_NGROUP + LG_QUANTUM) ? 0 :
|
|
|
|
x - (SC_LG_NGROUP + LG_QUANTUM);
|
|
|
|
szind_t grp = shift << SC_LG_NGROUP;
|
2017-05-31 01:45:37 +08:00
|
|
|
|
2017-12-15 04:46:39 +08:00
|
|
|
szind_t lg_delta = (x < SC_LG_NGROUP + LG_QUANTUM + 1)
|
|
|
|
? LG_QUANTUM : x - SC_LG_NGROUP - 1;
|
2017-05-31 01:45:37 +08:00
|
|
|
|
2017-09-23 06:35:29 +08:00
|
|
|
size_t delta_inverse_mask = ZU(-1) << lg_delta;
|
2017-05-31 01:45:37 +08:00
|
|
|
szind_t mod = ((((size-1) & delta_inverse_mask) >> lg_delta)) &
|
2017-12-15 04:46:39 +08:00
|
|
|
((ZU(1) << SC_LG_NGROUP) - 1);
|
2017-05-31 01:45:37 +08:00
|
|
|
|
2018-07-20 08:08:10 +08:00
|
|
|
szind_t index = SC_NTINY + grp + mod;
|
2017-05-31 01:45:37 +08:00
|
|
|
return index;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
JEMALLOC_ALWAYS_INLINE szind_t
|
2020-01-14 15:28:09 +08:00
|
|
|
sz_size2index_lookup_impl(size_t size) {
|
2017-12-15 04:46:39 +08:00
|
|
|
assert(size <= SC_LOOKUP_MAXCLASS);
|
2020-01-14 15:28:09 +08:00
|
|
|
return sz_size2index_tab[(size + (ZU(1) << SC_LG_TINY_MIN) - 1)
|
|
|
|
>> SC_LG_TINY_MIN];
|
|
|
|
}
|
|
|
|
|
|
|
|
JEMALLOC_ALWAYS_INLINE szind_t
|
|
|
|
sz_size2index_lookup(size_t size) {
|
|
|
|
szind_t ret = sz_size2index_lookup_impl(size);
|
2017-12-15 04:46:39 +08:00
|
|
|
assert(ret == sz_size2index_compute(size));
|
|
|
|
return ret;
|
2017-05-31 01:45:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
JEMALLOC_ALWAYS_INLINE szind_t
|
|
|
|
sz_size2index(size_t size) {
|
2017-12-15 04:46:39 +08:00
|
|
|
if (likely(size <= SC_LOOKUP_MAXCLASS)) {
|
2017-05-31 01:45:37 +08:00
|
|
|
return sz_size2index_lookup(size);
|
|
|
|
}
|
|
|
|
return sz_size2index_compute(size);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline size_t
|
|
|
|
sz_index2size_compute(szind_t index) {
|
2017-12-15 04:46:39 +08:00
|
|
|
#if (SC_NTINY > 0)
|
2018-07-20 08:08:10 +08:00
|
|
|
if (index < SC_NTINY) {
|
|
|
|
return (ZU(1) << (SC_LG_TINY_MAXCLASS - SC_NTINY + 1 + index));
|
2017-05-31 01:45:37 +08:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
{
|
2018-07-20 08:08:10 +08:00
|
|
|
size_t reduced_index = index - SC_NTINY;
|
2017-12-15 04:46:39 +08:00
|
|
|
size_t grp = reduced_index >> SC_LG_NGROUP;
|
|
|
|
size_t mod = reduced_index & ((ZU(1) << SC_LG_NGROUP) -
|
2017-05-31 01:45:37 +08:00
|
|
|
1);
|
|
|
|
|
|
|
|
size_t grp_size_mask = ~((!!grp)-1);
|
|
|
|
size_t grp_size = ((ZU(1) << (LG_QUANTUM +
|
2017-12-15 04:46:39 +08:00
|
|
|
(SC_LG_NGROUP-1))) << grp) & grp_size_mask;
|
2017-05-31 01:45:37 +08:00
|
|
|
|
|
|
|
size_t shift = (grp == 0) ? 1 : grp;
|
|
|
|
size_t lg_delta = shift + (LG_QUANTUM-1);
|
|
|
|
size_t mod_size = (mod+1) << lg_delta;
|
|
|
|
|
|
|
|
size_t usize = grp_size + mod_size;
|
|
|
|
return usize;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-14 15:28:09 +08:00
|
|
|
JEMALLOC_ALWAYS_INLINE size_t
|
|
|
|
sz_index2size_lookup_impl(szind_t index) {
|
|
|
|
return sz_index2size_tab[index];
|
|
|
|
}
|
|
|
|
|
2017-05-31 01:45:37 +08:00
|
|
|
JEMALLOC_ALWAYS_INLINE size_t
|
|
|
|
sz_index2size_lookup(szind_t index) {
|
2020-01-14 15:28:09 +08:00
|
|
|
size_t ret = sz_index2size_lookup_impl(index);
|
2017-05-31 01:45:37 +08:00
|
|
|
assert(ret == sz_index2size_compute(index));
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
JEMALLOC_ALWAYS_INLINE size_t
|
|
|
|
sz_index2size(szind_t index) {
|
2017-12-15 04:46:39 +08:00
|
|
|
assert(index < SC_NSIZES);
|
2017-05-31 01:45:37 +08:00
|
|
|
return sz_index2size_lookup(index);
|
|
|
|
}
|
|
|
|
|
2020-01-14 15:28:09 +08:00
|
|
|
JEMALLOC_ALWAYS_INLINE void
|
|
|
|
sz_size2index_usize_fastpath(size_t size, szind_t *ind, size_t *usize) {
|
|
|
|
*ind = sz_size2index_lookup_impl(size);
|
|
|
|
*usize = sz_index2size_lookup_impl(*ind);
|
|
|
|
}
|
|
|
|
|
2017-05-31 01:45:37 +08:00
|
|
|
JEMALLOC_ALWAYS_INLINE size_t
|
|
|
|
sz_s2u_compute(size_t size) {
|
2018-07-12 07:05:58 +08:00
|
|
|
if (unlikely(size > SC_LARGE_MAXCLASS)) {
|
2017-05-31 01:45:37 +08:00
|
|
|
return 0;
|
|
|
|
}
|
2018-10-09 01:11:04 +08:00
|
|
|
|
|
|
|
if (size == 0) {
|
|
|
|
size++;
|
|
|
|
}
|
2017-12-15 04:46:39 +08:00
|
|
|
#if (SC_NTINY > 0)
|
2018-07-20 08:08:10 +08:00
|
|
|
if (size <= (ZU(1) << SC_LG_TINY_MAXCLASS)) {
|
|
|
|
size_t lg_tmin = SC_LG_TINY_MAXCLASS - SC_NTINY + 1;
|
2017-05-31 01:45:37 +08:00
|
|
|
size_t lg_ceil = lg_floor(pow2_ceil_zu(size));
|
|
|
|
return (lg_ceil < lg_tmin ? (ZU(1) << lg_tmin) :
|
|
|
|
(ZU(1) << lg_ceil));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
size_t x = lg_floor((size<<1)-1);
|
2017-12-15 04:46:39 +08:00
|
|
|
size_t lg_delta = (x < SC_LG_NGROUP + LG_QUANTUM + 1)
|
|
|
|
? LG_QUANTUM : x - SC_LG_NGROUP - 1;
|
2017-05-31 01:45:37 +08:00
|
|
|
size_t delta = ZU(1) << lg_delta;
|
|
|
|
size_t delta_mask = delta - 1;
|
|
|
|
size_t usize = (size + delta_mask) & ~delta_mask;
|
|
|
|
return usize;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
JEMALLOC_ALWAYS_INLINE size_t
|
|
|
|
sz_s2u_lookup(size_t size) {
|
|
|
|
size_t ret = sz_index2size_lookup(sz_size2index_lookup(size));
|
|
|
|
|
|
|
|
assert(ret == sz_s2u_compute(size));
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Compute usable size that would result from allocating an object with the
|
|
|
|
* specified size.
|
|
|
|
*/
|
|
|
|
JEMALLOC_ALWAYS_INLINE size_t
|
|
|
|
sz_s2u(size_t size) {
|
2017-12-15 04:46:39 +08:00
|
|
|
if (likely(size <= SC_LOOKUP_MAXCLASS)) {
|
2017-05-31 01:45:37 +08:00
|
|
|
return sz_s2u_lookup(size);
|
|
|
|
}
|
|
|
|
return sz_s2u_compute(size);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Compute usable size that would result from allocating an object with the
|
|
|
|
* specified size and alignment.
|
|
|
|
*/
|
|
|
|
JEMALLOC_ALWAYS_INLINE size_t
|
|
|
|
sz_sa2u(size_t size, size_t alignment) {
|
|
|
|
size_t usize;
|
|
|
|
|
|
|
|
assert(alignment != 0 && ((alignment - 1) & alignment) == 0);
|
|
|
|
|
|
|
|
/* Try for a small size class. */
|
2018-07-12 07:05:58 +08:00
|
|
|
if (size <= SC_SMALL_MAXCLASS && alignment < PAGE) {
|
2017-05-31 01:45:37 +08:00
|
|
|
/*
|
|
|
|
* Round size up to the nearest multiple of alignment.
|
|
|
|
*
|
|
|
|
* This done, we can take advantage of the fact that for each
|
|
|
|
* small size class, every object is aligned at the smallest
|
|
|
|
* power of two that is non-zero in the base two representation
|
|
|
|
* of the size. For example:
|
|
|
|
*
|
|
|
|
* Size | Base 2 | Minimum alignment
|
|
|
|
* -----+----------+------------------
|
|
|
|
* 96 | 1100000 | 32
|
|
|
|
* 144 | 10100000 | 32
|
|
|
|
* 192 | 11000000 | 64
|
|
|
|
*/
|
|
|
|
usize = sz_s2u(ALIGNMENT_CEILING(size, alignment));
|
2018-07-12 07:05:58 +08:00
|
|
|
if (usize < SC_LARGE_MINCLASS) {
|
2017-05-31 01:45:37 +08:00
|
|
|
return usize;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Large size class. Beware of overflow. */
|
|
|
|
|
2018-07-12 07:05:58 +08:00
|
|
|
if (unlikely(alignment > SC_LARGE_MAXCLASS)) {
|
2017-05-31 01:45:37 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Make sure result is a large size class. */
|
2018-07-12 07:05:58 +08:00
|
|
|
if (size <= SC_LARGE_MINCLASS) {
|
|
|
|
usize = SC_LARGE_MINCLASS;
|
2017-05-31 01:45:37 +08:00
|
|
|
} else {
|
|
|
|
usize = sz_s2u(size);
|
|
|
|
if (usize < size) {
|
|
|
|
/* size_t overflow. */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Calculate the multi-page mapping that large_palloc() would need in
|
|
|
|
* order to guarantee the alignment.
|
|
|
|
*/
|
|
|
|
if (usize + sz_large_pad + PAGE_CEILING(alignment) - PAGE < usize) {
|
|
|
|
/* size_t overflow. */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return usize;
|
|
|
|
}
|
|
|
|
|
2019-09-21 14:54:57 +08:00
|
|
|
size_t sz_psz_quantize_floor(size_t size);
|
|
|
|
size_t sz_psz_quantize_ceil(size_t size);
|
|
|
|
|
2017-05-31 01:45:37 +08:00
|
|
|
#endif /* JEMALLOC_INTERNAL_SIZE_H */
|