Home
last modified time | relevance | path

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

/llvm-project-15.0.7/compiler-rt/lib/memprof/
H A Dmemprof_allocator.cpp191 thread_stats.mmaps++; in OnMap()
192 thread_stats.mmaped += size; in OnMap()
200 thread_stats.munmaps++; in OnUnmap()
201 thread_stats.munmaped += size; in OnUnmap()
419 thread_stats.mallocs++; in Allocate()
420 thread_stats.malloced += size; in Allocate()
423 thread_stats.malloc_large++; in Allocate()
462 thread_stats.frees++; in Deallocate()
463 thread_stats.freed += user_requested_size; in Deallocate()
490 thread_stats.reallocs++; in Reallocate()
[all …]
/llvm-project-15.0.7/compiler-rt/lib/asan/
H A Dasan_allocator.cpp218 thread_stats.real_frees++; in Recycle()
248 thread_stats.mmaps++; in OnMap()
249 thread_stats.mmaped += size; in OnMap()
258 thread_stats.munmaps++; in OnUnmap()
259 thread_stats.munmaped += size; in OnUnmap()
577 thread_stats.mallocs++; in Allocate()
578 thread_stats.malloced += size; in Allocate()
581 thread_stats.malloc_large++; in Allocate()
647 thread_stats.frees++; in QuarantineChunk()
712 thread_stats.reallocs++; in Reallocate()
[all …]
/llvm-project-15.0.7/compiler-rt/lib/hwasan/
H A Dhwasan.cpp145 auto thread_stats = thread_list.GetThreadStats(); in HwasanFormatMemoryUsage() local
153 internal_getpid(), GetRSS(), thread_stats.n_live_threads, in HwasanFormatMemoryUsage()
154 thread_stats.total_stack_size, in HwasanFormatMemoryUsage()
155 thread_stats.n_live_threads * thread_list.MemoryUsedPerThread(), in HwasanFormatMemoryUsage()