/freebsd/contrib/jemalloc/include/jemalloc/internal/ |
H A D | prof_inlines_b.h | 21 cassert(config_prof); in prof_tdata_get() 42 cassert(config_prof); in prof_tctx_get() 51 cassert(config_prof); in prof_tctx_set() 59 cassert(config_prof); in prof_tctx_reset() 67 cassert(config_prof); in prof_alloc_time_get() 76 cassert(config_prof); in prof_alloc_time_set() 105 cassert(config_prof); in prof_sample_accum_update() 168 cassert(config_prof); in prof_malloc() 186 cassert(config_prof); in prof_realloc() 242 cassert(config_prof); in prof_free()
|
H A D | arena_inlines_b.h | 39 cassert(config_prof); in arena_prof_tctx_get() 59 cassert(config_prof); in arena_prof_tctx_set() 77 cassert(config_prof); in arena_prof_tctx_reset() 89 cassert(config_prof); in arena_prof_alloc_time_get() 104 cassert(config_prof); in arena_prof_alloc_time_set() 233 if (config_prof && unlikely(szind < SC_NBINS)) { in arena_dalloc_large_no_tcache() 273 if (config_prof && unlikely(szind < SC_NBINS)) { in arena_dalloc_large() 334 if (!config_prof || !opt_prof) { in arena_sdalloc_no_tcache() 343 if ((config_prof && opt_prof) || config_debug) { in arena_sdalloc_no_tcache() 352 assert((config_prof && opt_prof) || slab == (szind < SC_NBINS)); in arena_sdalloc_no_tcache() [all …]
|
H A D | tcache_inlines.h | 72 if (config_prof || (slow_path && config_fill) || unlikely(zero)) { in tcache_alloc_small() 96 if (config_prof) { in tcache_alloc_small() 132 if (config_prof || (slow_path && config_fill) || in tcache_alloc_large() 154 if (config_prof) { in tcache_alloc_large()
|
H A D | prof_inlines_a.h | 9 cassert(config_prof); in prof_accum_add() 48 cassert(config_prof); in prof_accum_cancel()
|
H A D | arena_inlines_a.h | 26 cassert(config_prof); in arena_prof_accum()
|
H A D | extent_inlines.h | 387 if (config_prof) { in extent_init()
|
/freebsd/contrib/jemalloc/src/ |
H A D | prof.c | 316 cassert(config_prof); in rb_gen() 541 cassert(config_prof); in bt_init() 549 cassert(config_prof); in prof_enter() 562 cassert(config_prof); in prof_leave() 591 cassert(config_prof); in prof_backtrace() 604 cassert(config_prof); in prof_unwind_init_callback() 614 cassert(config_prof); in prof_unwind_callback() 633 cassert(config_prof); in prof_backtrace() 656 cassert(config_prof); in prof_backtrace() 803 cassert(config_prof); in prof_backtrace() [all …]
|
H A D | tcache.c | 95 config_prof ? tcache->prof_accumbytes : 0); in tcache_alloc_small_hard() 96 if (config_prof) { in tcache_alloc_small_hard() 166 if (config_prof && bin_arena == arena) { in tcache_bin_flush_small() 259 if (config_prof) { in tcache_bin_flush_large() 276 if ((config_prof || config_stats) && in tcache_bin_flush_large() 278 if (config_prof) { in tcache_bin_flush_large() 315 if (config_prof && idump) { in tcache_bin_flush_large() 532 if (config_prof && tcache->prof_accumbytes > 0 && in tcache_flush_cache() 781 if (!config_prof && opt_tcache) { in tcache_prefork() 788 if (!config_prof && opt_tcache) { in tcache_postfork_parent() [all …]
|
H A D | ctl.c | 76 CTL_PROTO(config_prof) 300 {NAME("prof"), CTL(config_prof)}, 1095 if (config_prof && opt_prof) { in ctl_refresh() 1753 CTL_RO_CONFIG_GEN(config_prof, bool) in CTL_RO_CONFIG_GEN() 1788 CTL_RO_NL_CGEN(config_prof, opt_prof, opt_prof, bool) in CTL_RO_CONFIG_GEN() 1789 CTL_RO_NL_CGEN(config_prof, opt_prof_prefix, opt_prof_prefix, const char *) in CTL_RO_CONFIG_GEN() 1790 CTL_RO_NL_CGEN(config_prof, opt_prof_active, opt_prof_active, bool) in CTL_RO_CONFIG_GEN() 1791 CTL_RO_NL_CGEN(config_prof, opt_prof_thread_active_init, in CTL_RO_CONFIG_GEN() 1793 CTL_RO_NL_CGEN(config_prof, opt_lg_prof_sample, opt_lg_prof_sample, size_t) in CTL_RO_CONFIG_GEN() 1794 CTL_RO_NL_CGEN(config_prof, opt_prof_accum, opt_prof_accum, bool) in CTL_RO_CONFIG_GEN() [all …]
|
H A D | jemalloc.c | 1367 if (config_prof) { in malloc_conf_init_helper() 1506 if (config_prof) { in malloc_init_hard_a0_locked() 1534 if (config_prof) { in malloc_init_hard_a0_locked() 1775 if (config_prof && prof_boot2(tsd)) { in malloc_init_hard() 2070 if (config_stats || (config_prof && opt_prof) || sopts->usize) { in imalloc_body() 2115 if (config_prof && opt_prof) { in imalloc_body() 2347 if (config_stats || config_prof) { in JEMALLOC_ATTR() 2354 if (config_prof) { in JEMALLOC_ATTR() 2382 if (config_prof) { in JEMALLOC_ATTR() 2579 if (config_prof && opt_prof) { in ifree() [all …]
|
H A D | arena.c | 1126 if (config_stats || (config_prof && opt_prof)) { in arena_reset() 1131 if (config_prof && opt_prof) { in arena_reset() 1387 if (config_prof && arena_prof_accum(tsdn, arena, prof_accumbytes)) { in arena_tcache_fill_small() 1488 if (config_prof && arena_prof_accum(tsdn, arena, usize)) { in arena_malloc_small() 1554 cassert(config_prof); in arena_prof_promote() 1582 cassert(config_prof); in arena_prof_demote() 1599 cassert(config_prof); in arena_dalloc_promoted() 1983 if (config_prof) { in arena_new()
|
H A D | extent.c | 745 cassert(config_prof); in extent_gdump_add() 771 cassert(config_prof); in extent_gdump_sub() 807 if (config_prof && gdump_add) { in extent_register_impl() 872 if (config_prof && gdump) { in extent_deregister_impl() 1393 if (config_prof) { in extent_grow_retained() 1432 if (config_prof) { in extent_grow_retained() 1476 if (config_prof) { in extent_alloc_retained() 1859 if (config_prof) { in extent_dalloc_wrapper()
|
H A D | large.c | 59 if (config_prof && arena_prof_accum(tsdn, arena, usize)) { in large_palloc()
|
H A D | stats.c | 1113 if (config_prof) { in stats_general_print()
|
/freebsd/lib/libc/stdlib/malloc/jemalloc/include/jemalloc/internal/ |
H A D | jemalloc_preamble.h | 87 static const bool config_prof = variable
|
/freebsd/contrib/jemalloc/ |
H A D | FREEBSD-diffs | 104 static const bool config_prof =
|