1 //===-- asan_stats.h --------------------------------------------*- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This file is a part of AddressSanitizer, an address sanity checker.
11 // ASan-private header for statistics.
12 //===----------------------------------------------------------------------===//
16 #include "asan_allocator.h"
17 #include "asan_internal.h"
21 // AsanStats struct is NOT thread-safe.
22 // Each AsanThread has its own AsanStats, which are sometimes flushed
23 // to the accumulated AsanStats.
25 // AsanStats must be a struct consisting of uptr fields only.
26 // When merging two AsanStats structs, we treat them as arrays of uptr.
29 uptr malloced_redzones
;
41 uptr malloced_by_size
[kNumberOfSizeClasses
];
43 // Ctor for global AsanStats (accumulated stats for dead threads).
44 explicit AsanStats(LinkerInitialized
) { }
45 // Creates empty stats.
48 void Print(); // Prints formatted stats to stderr.
50 void MergeFrom(const AsanStats
*stats
);
53 // Returns stats for GetCurrentThread(), or stats for fake "unknown thread"
54 // if GetCurrentThread() returns 0.
55 AsanStats
&GetCurrentThreadStats();
56 // Flushes a given stats into accumulated stats of dead threads.
57 void FlushToDeadThreadStats(AsanStats
*stats
);
59 // A cross-platform equivalent of malloc_statistics_t on Mac OS.
60 struct AsanMallocStats
{
67 void FillMallocStatistics(AsanMallocStats
*malloc_stats
);
71 #endif // ASAN_STATS_H