1 //===-- asan_stats.h --------------------------------------------*- C++ -*-===//
3 // This file is distributed under the University of Illinois Open Source
4 // License. See LICENSE.TXT for details.
6 //===----------------------------------------------------------------------===//
8 // This file is a part of AddressSanitizer, an address sanity checker.
10 // ASan-private header for statistics.
11 //===----------------------------------------------------------------------===//
15 #include "asan_allocator.h"
16 #include "asan_internal.h"
20 // AsanStats struct is NOT thread-safe.
21 // Each AsanThread has its own AsanStats, which are sometimes flushed
22 // to the accumulated AsanStats.
24 // AsanStats must be a struct consisting of uptr fields only.
25 // When merging two AsanStats structs, we treat them as arrays of uptr.
28 uptr malloced_redzones
;
33 uptr really_freed_redzones
;
38 uptr mmaped_by_size
[kNumberOfSizeClasses
];
39 uptr malloced_by_size
[kNumberOfSizeClasses
];
40 uptr freed_by_size
[kNumberOfSizeClasses
];
41 uptr really_freed_by_size
[kNumberOfSizeClasses
];
44 uptr malloc_small_slow
;
46 // Ctor for global AsanStats (accumulated stats and main thread stats).
47 explicit AsanStats(LinkerInitialized
) { }
48 // Default ctor for thread-local stats.
51 // Prints formatted stats to stderr.
55 // A cross-platform equivalent of malloc_statistics_t on Mac OS.
56 struct AsanMallocStats
{
65 #endif // ASAN_STATS_H