2017-01-11 10:06:31 +08:00
|
|
|
#ifndef JEMALLOC_INTERNAL_TSD_INLINES_H
|
|
|
|
#define JEMALLOC_INTERNAL_TSD_INLINES_H
|
|
|
|
|
|
|
|
malloc_tsd_externs(, tsd_t)
|
|
|
|
malloc_tsd_funcs(JEMALLOC_ALWAYS_INLINE, , tsd_t, tsd_initializer, tsd_cleanup)
|
|
|
|
|
2017-04-12 14:13:45 +08:00
|
|
|
#define MALLOC_TSD_getset_yes(n, t) \
|
|
|
|
JEMALLOC_ALWAYS_INLINE t \
|
|
|
|
tsd_##n##_get(tsd_t *tsd) { \
|
|
|
|
return *tsd_##n##p_get(tsd); \
|
|
|
|
} \
|
|
|
|
JEMALLOC_ALWAYS_INLINE void \
|
|
|
|
tsd_##n##_set(tsd_t *tsd, t n) { \
|
|
|
|
assert(tsd->state == tsd_state_nominal || \
|
|
|
|
tsd->state == tsd_state_nominal_slow || \
|
|
|
|
tsd->state == tsd_state_reincarnated); \
|
|
|
|
tsd->n = n; \
|
|
|
|
}
|
|
|
|
#define MALLOC_TSD_getset_no(n, t)
|
|
|
|
#define O(n, t, gs, i, c) \
|
|
|
|
JEMALLOC_ALWAYS_INLINE t * \
|
|
|
|
tsd_##n##p_get(tsd_t *tsd) { \
|
|
|
|
return &tsd->n; \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
MALLOC_TSD_getset_##gs(n, t)
|
|
|
|
MALLOC_TSD
|
|
|
|
#undef MALLOC_TSD_getset_yes
|
|
|
|
#undef MALLOC_TSD_getset_no
|
|
|
|
#undef O
|
|
|
|
|
2017-04-13 07:16:27 +08:00
|
|
|
JEMALLOC_ALWAYS_INLINE bool
|
2017-04-12 14:13:45 +08:00
|
|
|
tsd_assert_fast(tsd_t *tsd) {
|
2017-04-13 07:16:27 +08:00
|
|
|
assert(!malloc_slow && tsd_tcache_enabled_get(tsd) &&
|
|
|
|
tsd_reentrancy_level_get(tsd) == 0);
|
|
|
|
return true;
|
2017-04-12 14:13:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
JEMALLOC_ALWAYS_INLINE bool
|
|
|
|
tsd_fast(tsd_t *tsd) {
|
|
|
|
bool fast = (tsd->state == tsd_state_nominal);
|
|
|
|
if (fast) {
|
|
|
|
tsd_assert_fast(tsd);
|
|
|
|
}
|
|
|
|
|
|
|
|
return fast;
|
|
|
|
}
|
|
|
|
|
2017-01-11 10:06:31 +08:00
|
|
|
JEMALLOC_ALWAYS_INLINE tsd_t *
|
2017-01-16 08:56:30 +08:00
|
|
|
tsd_fetch_impl(bool init) {
|
2017-01-11 10:06:31 +08:00
|
|
|
tsd_t *tsd = tsd_get(init);
|
|
|
|
|
2017-01-16 08:56:30 +08:00
|
|
|
if (!init && tsd_get_allocates() && tsd == NULL) {
|
2017-01-20 10:15:45 +08:00
|
|
|
return NULL;
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2017-01-11 10:06:31 +08:00
|
|
|
assert(tsd != NULL);
|
|
|
|
|
|
|
|
if (unlikely(tsd->state != tsd_state_nominal)) {
|
2017-04-12 14:13:45 +08:00
|
|
|
return tsd_fetch_slow(tsd);
|
2017-01-11 10:06:31 +08:00
|
|
|
}
|
2017-04-12 14:13:45 +08:00
|
|
|
assert(tsd_fast(tsd));
|
|
|
|
tsd_assert_fast(tsd);
|
2017-01-11 10:06:31 +08:00
|
|
|
|
2017-01-20 10:15:45 +08:00
|
|
|
return tsd;
|
2017-01-11 10:06:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
JEMALLOC_ALWAYS_INLINE tsd_t *
|
2017-01-16 08:56:30 +08:00
|
|
|
tsd_fetch(void) {
|
2017-01-20 10:15:45 +08:00
|
|
|
return tsd_fetch_impl(true);
|
2017-01-11 10:06:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
JEMALLOC_ALWAYS_INLINE tsdn_t *
|
2017-01-16 08:56:30 +08:00
|
|
|
tsd_tsdn(tsd_t *tsd) {
|
2017-01-20 10:15:45 +08:00
|
|
|
return (tsdn_t *)tsd;
|
2017-01-11 10:06:31 +08:00
|
|
|
}
|
|
|
|
|
2017-04-22 00:37:34 +08:00
|
|
|
static inline bool
|
2017-01-16 08:56:30 +08:00
|
|
|
tsd_nominal(tsd_t *tsd) {
|
2017-04-12 14:13:45 +08:00
|
|
|
return (tsd->state <= tsd_state_nominal_max);
|
2017-01-11 10:06:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
JEMALLOC_ALWAYS_INLINE tsdn_t *
|
2017-01-16 08:56:30 +08:00
|
|
|
tsdn_fetch(void) {
|
|
|
|
if (!tsd_booted_get()) {
|
2017-01-20 10:15:45 +08:00
|
|
|
return NULL;
|
2017-01-16 08:56:30 +08:00
|
|
|
}
|
2017-01-11 10:06:31 +08:00
|
|
|
|
2017-01-20 10:15:45 +08:00
|
|
|
return tsd_tsdn(tsd_fetch_impl(false));
|
2017-01-11 10:06:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
JEMALLOC_ALWAYS_INLINE bool
|
2017-01-16 08:56:30 +08:00
|
|
|
tsdn_null(const tsdn_t *tsdn) {
|
2017-01-20 10:15:45 +08:00
|
|
|
return tsdn == NULL;
|
2017-01-11 10:06:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
JEMALLOC_ALWAYS_INLINE tsd_t *
|
2017-01-16 08:56:30 +08:00
|
|
|
tsdn_tsd(tsdn_t *tsdn) {
|
2017-01-11 10:06:31 +08:00
|
|
|
assert(!tsdn_null(tsdn));
|
|
|
|
|
2017-01-20 10:15:45 +08:00
|
|
|
return &tsdn->tsd;
|
2017-01-11 10:06:31 +08:00
|
|
|
}
|
|
|
|
|
2017-03-23 02:00:40 +08:00
|
|
|
JEMALLOC_ALWAYS_INLINE rtree_ctx_t *
|
|
|
|
tsd_rtree_ctx(tsd_t *tsd) {
|
|
|
|
return tsd_rtree_ctxp_get(tsd);
|
|
|
|
}
|
|
|
|
|
2017-01-11 10:06:31 +08:00
|
|
|
JEMALLOC_ALWAYS_INLINE rtree_ctx_t *
|
2017-01-16 08:56:30 +08:00
|
|
|
tsdn_rtree_ctx(tsdn_t *tsdn, rtree_ctx_t *fallback) {
|
2017-01-11 10:06:31 +08:00
|
|
|
/*
|
|
|
|
* If tsd cannot be accessed, initialize the fallback rtree_ctx and
|
|
|
|
* return a pointer to it.
|
|
|
|
*/
|
|
|
|
if (unlikely(tsdn_null(tsdn))) {
|
2017-03-30 04:18:02 +08:00
|
|
|
rtree_ctx_data_init(fallback);
|
2017-01-20 10:15:45 +08:00
|
|
|
return fallback;
|
2017-01-11 10:06:31 +08:00
|
|
|
}
|
2017-03-23 02:00:40 +08:00
|
|
|
return tsd_rtree_ctx(tsdn_tsd(tsdn));
|
2017-01-11 10:06:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* JEMALLOC_INTERNAL_TSD_INLINES_H */
|