Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/memprof/
H A Dmemprof_allocator.cpp201 MemprofStats &thread_stats = GetCurrentThreadStats(); in OnMap() local
202 thread_stats.mmaps++; in OnMap()
203 thread_stats.mmaped += size; in OnMap()
211 MemprofStats &thread_stats = GetCurrentThreadStats(); in OnUnmap() local
212 thread_stats.munmaps++; in OnUnmap()
213 thread_stats.munmaped += size; in OnUnmap()
486 MemprofStats &thread_stats = GetCurrentThreadStats(); in Allocate() local
487 thread_stats.mallocs++; in Allocate()
488 thread_stats.malloced += size; in Allocate()
489 thread_stats.malloced_overhead += needed_size - size; in Allocate()
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_allocator.cpp248 AsanStats &thread_stats = GetCurrentThreadStats(); in Recycle() local
249 thread_stats.real_frees++; in Recycle()
250 thread_stats.really_freed += m->UsedSize(); in Recycle()
286 AsanStats &thread_stats = GetCurrentThreadStats(); in OnMap() local
287 thread_stats.mmaps++; in OnMap()
288 thread_stats.mmaped += size; in OnMap()
301 AsanStats &thread_stats = GetCurrentThreadStats(); in OnMapSecondary() local
302 thread_stats.mmaps++; in OnMapSecondary()
303 thread_stats.mmaped += size; in OnMapSecondary()
312 AsanStats &thread_stats = GetCurrentThreadStats(); in OnUnmap() local
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan.cpp171 auto thread_stats = thread_list.GetThreadStats(); in HwasanFormatMemoryUsage() local
179 internal_getpid(), GetRSS(), thread_stats.n_live_threads, in HwasanFormatMemoryUsage()
180 thread_stats.total_stack_size, in HwasanFormatMemoryUsage()
181 thread_stats.n_live_threads * thread_list.MemoryUsedPerThread(), in HwasanFormatMemoryUsage()