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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
|
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef BASE_SAMPLING_HEAP_PROFILER_SAMPLING_HEAP_PROFILER_H_
#define BASE_SAMPLING_HEAP_PROFILER_SAMPLING_HEAP_PROFILER_H_
#include <atomic>
#include <unordered_map>
#include <unordered_set>
#include <vector>
#include "base/base_export.h"
#include "base/no_destructor.h"
#include "base/sampling_heap_profiler/poisson_allocation_sampler.h"
#include "base/synchronization/lock.h"
#include "base/thread_annotations.h"
#include "base/threading/thread_id_name_manager.h"
namespace base {
// The class implements sampling profiling of native memory heap.
// It uses PoissonAllocationSampler to aggregate the heap allocations and
// record samples.
// The recorded samples can then be retrieved using GetSamples method.
class BASE_EXPORT SamplingHeapProfiler
: private PoissonAllocationSampler::SamplesObserver,
public base::ThreadIdNameManager::Observer {
public:
class BASE_EXPORT Sample {
public:
Sample(const Sample&);
~Sample();
// Allocation size.
size_t size;
// Total size attributed to the sample.
size_t total;
// Type of the allocator.
base::allocator::dispatcher::AllocationSubsystem allocator;
// Context as provided by the allocation hook.
const char* context = nullptr;
// Name of the thread that made the sampled allocation.
const char* thread_name = nullptr;
// Call stack of PC addresses responsible for the allocation.
std::vector<const void*> stack;
// Public for testing.
Sample(size_t size, size_t total, uint32_t ordinal);
private:
friend class SamplingHeapProfiler;
uint32_t ordinal;
};
enum class StackUnwinder {
// Use default unwind tables.
kDefault,
// No stack unwinder available - profiler will be disabled.
kUnavailable,
// Use frame pointers, which are faster if available.
kFramePointers,
};
// Starts collecting allocation samples. Returns the current profile_id.
// This value can then be passed to |GetSamples| to retrieve only samples
// recorded since the corresponding |Start| invocation.
uint32_t Start();
// Stops recording allocation samples.
void Stop();
// Sets sampling interval in bytes.
void SetSamplingInterval(size_t sampling_interval_bytes);
// Enables recording thread name that made the sampled allocation.
void EnableRecordThreadNames();
// Returns the current thread name.
static const char* CachedThreadName();
// Returns current samples recorded for the profile session.
// If |profile_id| is set to the value returned by the |Start| method,
// it returns only the samples recorded after the corresponding |Start|
// invocation. To retrieve all the collected samples |profile_id| must be
// set to 0.
std::vector<Sample> GetSamples(uint32_t profile_id);
// List of strings used in the profile call stacks.
std::vector<const char*> GetStrings();
// Captures stack `frames`, up to as many as the size of the `frames` span.
// Returns a subspan of `frames` holding the captured frames. The top-most
// frame is at the front of the returned span.
span<const void*> CaptureStackTrace(span<const void*> frames);
static void Init();
static SamplingHeapProfiler* Get();
SamplingHeapProfiler(const SamplingHeapProfiler&) = delete;
SamplingHeapProfiler& operator=(const SamplingHeapProfiler&) = delete;
// ThreadIdNameManager::Observer implementation:
void OnThreadNameChanged(const char* name) override;
// Deletes all samples recorded, to ensure the profiler is in a consistent
// state at the beginning of a test, and creates a
// ScopedMuteHookedSamplesForTesting so that new hooked samples don't arrive
// while it's running.
PoissonAllocationSampler::ScopedMuteHookedSamplesForTesting
MuteHookedSamplesForTesting();
private:
SamplingHeapProfiler();
~SamplingHeapProfiler() override;
// PoissonAllocationSampler::SamplesObserver
void SampleAdded(void* address,
size_t size,
size_t total,
base::allocator::dispatcher::AllocationSubsystem type,
const char* context) override;
void SampleRemoved(void* address) override;
void CaptureNativeStack(const char* context, Sample* sample);
const char* RecordString(const char* string) EXCLUSIVE_LOCKS_REQUIRED(mutex_);
// Mutex to access |samples_| and |strings_|.
Lock mutex_;
// Samples of the currently live allocations.
std::unordered_map<void*, Sample> samples_ GUARDED_BY(mutex_);
// Contains pointers to static sample context strings that are never deleted.
std::unordered_set<const char*> strings_ GUARDED_BY(mutex_);
// Mutex to guard |running_sessions_| and Add/Remove samples.
Lock start_stop_mutex_;
// Number of the running sessions.
int running_sessions_ GUARDED_BY(start_stop_mutex_) = 0;
// Last sample ordinal used to mark samples recorded during single session.
std::atomic<uint32_t> last_sample_ordinal_{1};
// Whether it should record thread names.
std::atomic<bool> record_thread_names_{false};
// Which unwinder to use.
std::atomic<StackUnwinder> unwinder_{StackUnwinder::kDefault};
friend class NoDestructor<SamplingHeapProfiler>;
friend class SamplingHeapProfilerTest;
};
} // namespace base
#endif // BASE_SAMPLING_HEAP_PROFILER_SAMPLING_HEAP_PROFILER_H_
|