-
Notifications
You must be signed in to change notification settings - Fork 0
/
memprof.h
27 lines (23 loc) · 790 Bytes
/
memprof.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//
// Copyright Aliaksei Levin ([email protected]), Arseny Smirnov ([email protected]) 2014-2023
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
#pragma once
#include <array>
#include <cstddef>
#include <functional>
constexpr std::size_t BACKTRACE_SHIFT = 2;
constexpr std::size_t BACKTRACE_HASHED_LENGTH = 6;
constexpr std::size_t BACKTRACE_LENGTH = 10;
using Backtrace = std::array<void *, BACKTRACE_LENGTH>;
struct AllocInfo {
Backtrace backtrace;
std::size_t size;
};
bool is_memprof_on();
std::size_t get_ht_size();
double get_fast_backtrace_success_rate();
void dump_alloc(const std::function<void(const AllocInfo &)> &func);
std::size_t get_used_memory_size();