Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/compiler-rt/lib/memprof/
H A Dmemprof_allocator.cpp188 MemprofStats &thread_stats = GetCurrentThreadStats(); in OnMap() local
189 thread_stats.mmaps++; in OnMap()
190 thread_stats.mmaped += size; in OnMap()
197 MemprofStats &thread_stats = GetCurrentThreadStats(); in OnUnmap() local
198 thread_stats.munmaps++; in OnUnmap()
199 thread_stats.munmaped += size; in OnUnmap()
416 MemprofStats &thread_stats = GetCurrentThreadStats(); in Allocate() local
417 thread_stats.mallocs++; in Allocate()
418 thread_stats.malloced += size; in Allocate()
419 thread_stats.malloced_overhead += needed_size - size; in Allocate()
[all …]
/openbsd-src/gnu/llvm/compiler-rt/lib/asan/
H A Dasan_allocator.cpp217 AsanStats &thread_stats = GetCurrentThreadStats(); in Recycle() local
218 thread_stats.real_frees++; in Recycle()
219 thread_stats.really_freed += m->UsedSize(); in Recycle()
247 AsanStats &thread_stats = GetCurrentThreadStats(); in OnMap() local
248 thread_stats.mmaps++; in OnMap()
249 thread_stats.mmaped += size; in OnMap()
257 AsanStats &thread_stats = GetCurrentThreadStats(); in OnUnmap() local
258 thread_stats.munmaps++; in OnUnmap()
259 thread_stats.munmaped += size; in OnUnmap()
576 AsanStats &thread_stats = GetCurrentThreadStats(); in Allocate() local
[all …]
/openbsd-src/gnu/gcc/gcc/
H A Dtree-ssa-threadupdate.c163 struct thread_stats_d thread_stats; variable
608 thread_stats.num_threaded_edges++; in redirect_edges()
874 memset (&thread_stats, 0, sizeof (thread_stats)); in thread_through_all_blocks()
888 thread_stats.num_threaded_edges); in thread_through_all_blocks()
/openbsd-src/gnu/llvm/compiler-rt/lib/hwasan/
H A Dhwasan.cpp165 auto thread_stats = thread_list.GetThreadStats(); in HwasanFormatMemoryUsage() local
173 internal_getpid(), GetRSS(), thread_stats.n_live_threads, in HwasanFormatMemoryUsage()
174 thread_stats.total_stack_size, in HwasanFormatMemoryUsage()
175 thread_stats.n_live_threads * thread_list.MemoryUsedPerThread(), in HwasanFormatMemoryUsage()