2017-01-11 10:06:31 +08:00
|
|
|
#ifndef JEMALLOC_INTERNAL_RTREE_STRUCTS_H
|
|
|
|
#define JEMALLOC_INTERNAL_RTREE_STRUCTS_H
|
|
|
|
|
2017-04-11 10:04:40 +08:00
|
|
|
#include "jemalloc/internal/atomic.h"
|
2017-05-16 05:23:51 +08:00
|
|
|
#include "jemalloc/internal/mutex_pool_structs.h"
|
2017-04-11 10:04:40 +08:00
|
|
|
|
2017-03-17 00:46:42 +08:00
|
|
|
struct rtree_node_elm_s {
|
2017-03-17 08:57:52 +08:00
|
|
|
atomic_p_t child; /* (rtree_{node,leaf}_elm_t *) */
|
2017-01-11 10:06:31 +08:00
|
|
|
};
|
|
|
|
|
2017-03-17 00:46:42 +08:00
|
|
|
struct rtree_leaf_elm_s {
|
2017-03-21 07:38:21 +08:00
|
|
|
#ifdef RTREE_LEAF_COMPACT
|
|
|
|
/*
|
|
|
|
* Single pointer-width field containing all three leaf element fields.
|
|
|
|
* For example, on a 64-bit x64 system with 48 significant virtual
|
|
|
|
* memory address bits, the index, extent, and slab fields are packed as
|
|
|
|
* such:
|
|
|
|
*
|
|
|
|
* x: index
|
|
|
|
* e: extent
|
|
|
|
* b: slab
|
|
|
|
*
|
2017-05-16 05:23:51 +08:00
|
|
|
* 00000000 xxxxxxxx eeeeeeee [...] eeeeeeee eeee000b
|
2017-03-21 07:38:21 +08:00
|
|
|
*/
|
|
|
|
atomic_p_t le_bits;
|
|
|
|
#else
|
2017-05-16 05:23:51 +08:00
|
|
|
atomic_p_t le_extent; /* (extent_t *) */
|
2017-03-17 08:57:52 +08:00
|
|
|
atomic_u_t le_szind; /* (szind_t) */
|
|
|
|
atomic_b_t le_slab; /* (bool) */
|
2017-03-21 07:38:21 +08:00
|
|
|
#endif
|
2017-03-17 00:46:42 +08:00
|
|
|
};
|
|
|
|
|
2017-01-11 10:06:31 +08:00
|
|
|
struct rtree_level_s {
|
|
|
|
/* Number of key bits distinguished by this level. */
|
|
|
|
unsigned bits;
|
|
|
|
/*
|
|
|
|
* Cumulative number of key bits distinguished by traversing to
|
|
|
|
* corresponding tree level.
|
|
|
|
*/
|
|
|
|
unsigned cumbits;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct rtree_s {
|
2017-03-23 07:38:03 +08:00
|
|
|
malloc_mutex_t init_lock;
|
|
|
|
/* Number of elements based on rtree_levels[0].bits. */
|
|
|
|
#if RTREE_HEIGHT > 1
|
|
|
|
rtree_node_elm_t root[1U << (RTREE_NSB/RTREE_HEIGHT)];
|
|
|
|
#else
|
|
|
|
rtree_leaf_elm_t root[1U << (RTREE_NSB/RTREE_HEIGHT)];
|
|
|
|
#endif
|
2017-01-11 10:06:31 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* JEMALLOC_INTERNAL_RTREE_STRUCTS_H */
|