1 //===-- memprof_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 MemProfiler, a memory profiler.
11 // MemProf-private header for statistics.
12 //===----------------------------------------------------------------------===//
13 #ifndef MEMPROF_STATS_H
14 #define MEMPROF_STATS_H
16 #include "memprof_allocator.h"
17 #include "memprof_internal.h"
21 // MemprofStats struct is NOT thread-safe.
22 // Each MemprofThread has its own MemprofStats, which are sometimes flushed
23 // to the accumulated MemprofStats.
25 // MemprofStats must be a struct consisting of uptr fields only.
26 // When merging two MemprofStats structs, we treat them as arrays of uptr.
29 uptr malloced_overhead
;
41 uptr malloced_by_size
[kNumberOfSizeClasses
];
43 // Ctor for global MemprofStats (accumulated stats for dead threads).
44 explicit MemprofStats(LinkerInitialized
) {}
45 // Creates empty stats.
48 void Print(); // Prints formatted stats to stderr.
50 void MergeFrom(const MemprofStats
*stats
);
53 // Returns stats for GetCurrentThread(), or stats for fake "unknown thread"
54 // if GetCurrentThread() returns 0.
55 MemprofStats
&GetCurrentThreadStats();
56 // Flushes a given stats into accumulated stats of dead threads.
57 void FlushToDeadThreadStats(MemprofStats
*stats
);
59 } // namespace __memprof
61 #endif // MEMPROF_STATS_H