Home
last modified time | relevance | path

Searched refs:opt_prof (Results 1 – 14 of 14) sorted by relevance

/src/contrib/jemalloc/src/
H A Dprof.c26 bool opt_prof = false; variable
335 if (!opt_prof || !prof_booted) { in prof_mdump()
571 if (opt_prof_leak && !opt_prof) { in prof_boot1()
576 opt_prof = true; in prof_boot1()
578 } else if (opt_prof) { in prof_boot1()
633 if (opt_prof) { in prof_boot2()
703 if (config_prof && opt_prof) { in prof_prefork0()
722 if (config_prof && opt_prof) { in prof_prefork1()
736 if (config_prof && opt_prof) { in prof_postfork_parent()
764 if (config_prof && opt_prof) { in prof_postfork_child()
H A Dctl.c140 CTL_PROTO(opt_prof)
466 {NAME("prof"), CTL(opt_prof)},
1352 if (config_prof && opt_prof) { in ctl_refresh()
2198 CTL_RO_NL_CGEN(config_prof, opt_prof, opt_prof, bool) in CTL_RO_CONFIG_GEN()
2366 if (!config_prof || !opt_prof) { in thread_prof_name_ctl()
2403 oldval = opt_prof ? prof_thread_active_get(tsd) : false; in thread_prof_active_ctl()
2405 if (!opt_prof) { in thread_prof_active_ctl()
3187 if (!opt_prof) { in prof_thread_active_init_ctl()
3198 oldval = opt_prof ? prof_thread_active_init_get(tsd_tsdn(tsd)) : in prof_thread_active_init_ctl()
3225 if (!opt_prof) { in prof_active_ctl()
[all …]
H A Dprof_stats.c13 assert(opt_prof && opt_prof_stats); in prof_stats_enter()
H A Djemalloc.c1573 CONF_HANDLE_BOOL(opt_prof, "prof") in malloc_conf_init_helper()
2551 if (config_prof && opt_prof) { in imalloc_body()
2576 assert(!opt_prof); in imalloc_body()
2886 if (config_prof && opt_prof) { in ifree()
2951 } else if (opt_prof) { in isfree()
2982 if (config_prof && opt_prof) { in isfree()
3534 if (config_prof && opt_prof) { in do_rallocx()
3807 if (config_prof && opt_prof) { in je_xallocx()
4127 assert(config_prof && opt_prof); in batch_alloc_prof_sample_assert()
4176 bool prof_sample_event = config_prof && opt_prof in batch_alloc()
[all …]
H A Dprof_log.c427 if (!opt_prof) { in prof_log_start()
616 if (!opt_prof || !prof_booted) { in prof_log_stop()
H A Darena.c689 if (config_stats || (config_prof && opt_prof)) { in arena_reset()
694 if (config_prof && opt_prof) { in arena_reset()
1273 assert(opt_prof); in arena_dalloc_promoted()
H A Dextent.c291 if (opt_prof && edata_state_get(edata) == extent_state_active) { in extent_gdump_add()
314 if (opt_prof && edata_state_get(edata) == extent_state_active) { in extent_gdump_sub()
H A Dprof_recent.c67 assert(opt_prof && prof_booted); in prof_recent_alloc_prepare()
H A Dstats.c319 bool prof_stats_on = config_prof && opt_prof && opt_prof_stats in stats_arena_bins_print()
573 bool prof_stats_on = config_prof && opt_prof && opt_prof_stats in stats_arena_lextents_print()
/src/contrib/jemalloc/include/jemalloc/internal/
H A Darena_inlines_b.h345 if (!config_prof || !opt_prof) { in arena_sdalloc_no_tcache()
354 if ((config_prof && opt_prof) || config_debug) { in arena_sdalloc_no_tcache()
359 assert((config_prof && opt_prof) in arena_sdalloc_no_tcache()
391 if (config_prof && opt_prof) { in arena_sdalloc()
H A Dprof_inlines.h15 assert(opt_prof || !prof_active_state); in prof_active_assert()
225 assert(opt_prof); in prof_sample_align()
H A Dprof_externs.h7 extern bool opt_prof;
H A Dthread_event.h57 E(prof_sample, (config_prof && opt_prof), true) \
/src/lib/libc/stdlib/malloc/jemalloc/include/jemalloc/internal/
H A Dprivate_namespace.h477 #define opt_prof JEMALLOC_N(opt_prof) macro