* configure.ac: Change target-libasan to target-libsanitizer.
[official-gcc.git] / libsanitizer / asan / asan_stats.h
blobc2b3298266b9f62729ba6396e11353d55edbd9b0
1 //===-- asan_stats.h --------------------------------------------*- C++ -*-===//
2 //
3 // This file is distributed under the University of Illinois Open Source
4 // License. See LICENSE.TXT for details.
5 //
6 //===----------------------------------------------------------------------===//
7 //
8 // This file is a part of AddressSanitizer, an address sanity checker.
9 //
10 // ASan-private header for statistics.
11 //===----------------------------------------------------------------------===//
12 #ifndef ASAN_STATS_H
13 #define ASAN_STATS_H
15 #include "asan_allocator.h"
16 #include "asan_internal.h"
18 namespace __asan {
20 // AsanStats struct is NOT thread-safe.
21 // Each AsanThread has its own AsanStats, which are sometimes flushed
22 // to the accumulated AsanStats.
23 struct 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.
26 uptr mallocs;
27 uptr malloced;
28 uptr malloced_redzones;
29 uptr frees;
30 uptr freed;
31 uptr real_frees;
32 uptr really_freed;
33 uptr really_freed_redzones;
34 uptr reallocs;
35 uptr realloced;
36 uptr mmaps;
37 uptr mmaped;
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];
43 uptr malloc_large;
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.
49 AsanStats();
51 // Prints formatted stats to stderr.
52 void Print();
55 // A cross-platform equivalent of malloc_statistics_t on Mac OS.
56 struct AsanMallocStats {
57 uptr blocks_in_use;
58 uptr size_in_use;
59 uptr max_size_in_use;
60 uptr size_allocated;
63 } // namespace __asan
65 #endif // ASAN_STATS_H