Home
last modified time | relevance | path

Searched refs:stack_depot_stats (Results 1 – 3 of 3) sorted by relevance

/freebsd-12.1/contrib/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_libcdep.cc52 StackDepotStats *stack_depot_stats = StackDepotGetStats(); in BackgroundThread() local
53 if (stack_depot_stats) { in BackgroundThread()
55 stack_depot_stats->allocated) { in BackgroundThread()
58 stack_depot_stats->n_uniq_ids, in BackgroundThread()
59 stack_depot_stats->allocated >> 20); in BackgroundThread()
60 prev_reported_stack_depot_size = stack_depot_stats->allocated; in BackgroundThread()
/freebsd-12.1/contrib/compiler-rt/lib/asan/
H A Dasan_stats.cc128 StackDepotStats *stack_depot_stats = StackDepotGetStats(); in PrintAccumulatedStats() local
130 stack_depot_stats->n_uniq_ids, stack_depot_stats->allocated >> 20); in PrintAccumulatedStats()
/freebsd-12.1/contrib/compiler-rt/lib/msan/
H A Dmsan_report.cc126 StackDepotStats *stack_depot_stats = StackDepotGetStats(); in ReportStats() local
129 Printf("Unique heap origins: %zu\n", stack_depot_stats->n_uniq_ids); in ReportStats()
130 Printf("Stack depot allocated bytes: %zu\n", stack_depot_stats->allocated); in ReportStats()