1 //===-- asan_stats.h --------------------------------------------*- C++ -*-===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 // 10 // This file is a part of AddressSanitizer, an address sanity checker. 11 // 12 // ASan-private header for statistics. 13 //===----------------------------------------------------------------------===// 14 #ifndef ASAN_STATS_H 15 #define ASAN_STATS_H 16 17 #include "asan_allocator.h" 18 #include "asan_internal.h" 19 20 namespace __asan { 21 22 // AsanStats struct is NOT thread-safe. 23 // Each AsanThread has its own AsanStats, which are sometimes flushed 24 // to the accumulated AsanStats. 25 struct AsanStats { 26 // AsanStats must be a struct consisting of uptr fields only. 27 // When merging two AsanStats structs, we treat them as arrays of uptr. 28 uptr mallocs; 29 uptr malloced; 30 uptr malloced_redzones; 31 uptr frees; 32 uptr freed; 33 uptr real_frees; 34 uptr really_freed; 35 uptr really_freed_redzones; 36 uptr reallocs; 37 uptr realloced; 38 uptr mmaps; 39 uptr mmaped; 40 uptr munmaps; 41 uptr munmaped; 42 uptr mmaped_by_size[kNumberOfSizeClasses]; 43 uptr malloced_by_size[kNumberOfSizeClasses]; 44 uptr freed_by_size[kNumberOfSizeClasses]; 45 uptr really_freed_by_size[kNumberOfSizeClasses]; 46 47 uptr malloc_large; 48 uptr malloc_small_slow; 49 50 // Ctor for global AsanStats (accumulated stats and main thread stats). AsanStatsAsanStats51 explicit AsanStats(LinkerInitialized) { } 52 // Default ctor for thread-local stats. 53 AsanStats(); 54 55 // Prints formatted stats to stderr. 56 void Print(); 57 }; 58 59 // Returns stats for GetCurrentThread(), or stats for fake "unknown thread" 60 // if GetCurrentThread() returns 0. 61 AsanStats &GetCurrentThreadStats(); 62 // Flushes all thread-local stats to accumulated stats, and makes 63 // a copy of accumulated stats. 64 void GetAccumulatedStats(AsanStats *stats); 65 // Flushes a given stats into accumulated stats. 66 void FlushToAccumulatedStats(AsanStats *stats); 67 68 // A cross-platform equivalent of malloc_statistics_t on Mac OS. 69 struct AsanMallocStats { 70 uptr blocks_in_use; 71 uptr size_in_use; 72 uptr max_size_in_use; 73 uptr size_allocated; 74 }; 75 76 void FillMallocStatistics(AsanMallocStats *malloc_stats); 77 78 } // namespace __asan 79 80 #endif // ASAN_STATS_H 81