Home
last modified time | relevance | path

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

/src/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 …]
/src/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_allocator.cpp247 AsanStats &thread_stats = GetCurrentThreadStats(); in Recycle() local
248 thread_stats.real_frees++; in Recycle()
249 thread_stats.really_freed += m->UsedSize(); in Recycle()
285 AsanStats &thread_stats = GetCurrentThreadStats(); in OnMap() local
286 thread_stats.mmaps++; in OnMap()
287 thread_stats.mmaped += size; in OnMap()
300 AsanStats &thread_stats = GetCurrentThreadStats(); in OnMapSecondary() local
301 thread_stats.mmaps++; in OnMapSecondary()
302 thread_stats.mmaped += size; in OnMapSecondary()
311 AsanStats &thread_stats = GetCurrentThreadStats(); in OnUnmap() local
[all …]
/src/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()