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 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374
|
// 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.
#include "base/sampling_heap_profiler/sampling_heap_profiler.h"
#include <stdlib.h>
#include <cinttypes>
#include "base/allocator/dispatcher/dispatcher.h"
#include "base/allocator/partition_allocator/src/partition_alloc/shim/allocator_shim.h"
#include "base/debug/alias.h"
#include "base/memory/raw_ptr.h"
#include "base/rand_util.h"
#include "base/sampling_heap_profiler/poisson_allocation_sampler.h"
#include "base/synchronization/waitable_event.h"
#include "base/threading/simple_thread.h"
#include "build/build_config.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace base {
using ScopedSuppressRandomnessForTesting =
PoissonAllocationSampler::ScopedSuppressRandomnessForTesting;
using base::allocator::dispatcher::AllocationSubsystem;
class SamplingHeapProfilerTest : public ::testing::Test {
public:
void SetUp() override {
#if BUILDFLAG(IS_APPLE)
allocator_shim::InitializeAllocatorShim();
#endif
SamplingHeapProfiler::Init();
// Ensure the PoissonAllocationSampler starts in the default state.
ASSERT_FALSE(PoissonAllocationSampler::AreHookedSamplesMuted());
ASSERT_FALSE(PoissonAllocationSampler::ScopedMuteThreadSamples::IsMuted());
ASSERT_FALSE(ScopedSuppressRandomnessForTesting::IsSuppressed());
allocator::dispatcher::Dispatcher::GetInstance().InitializeForTesting(
PoissonAllocationSampler::Get());
}
void TearDown() override {
allocator::dispatcher::Dispatcher::GetInstance().ResetForTesting();
}
size_t GetNextSample(size_t mean_interval) {
return PoissonAllocationSampler::GetNextSampleInterval(mean_interval);
}
static int GetRunningSessionsCount() {
return SamplingHeapProfiler::Get()->running_sessions_;
}
static void RunStartStopLoop(SamplingHeapProfiler* profiler) {
for (int i = 0; i < 100000; ++i) {
profiler->Start();
EXPECT_LE(1, GetRunningSessionsCount());
profiler->Stop();
}
}
};
class SamplesCollector : public PoissonAllocationSampler::SamplesObserver {
public:
explicit SamplesCollector(size_t watch_size) : watch_size_(watch_size) {}
void SampleAdded(void* address,
size_t size,
size_t,
AllocationSubsystem,
const char*) override {
if (sample_added || size != watch_size_)
return;
sample_address_ = address;
sample_added = true;
}
void SampleRemoved(void* address) override {
if (address == sample_address_)
sample_removed = true;
}
bool sample_added = false;
bool sample_removed = false;
private:
size_t watch_size_;
raw_ptr<void, DanglingUntriaged> sample_address_ = nullptr;
};
TEST_F(SamplingHeapProfilerTest, SampleObserver) {
ScopedSuppressRandomnessForTesting suppress;
SamplesCollector collector(10000);
auto* sampler = PoissonAllocationSampler::Get();
sampler->SetSamplingInterval(1024);
sampler->AddSamplesObserver(&collector);
void* volatile p = malloc(10000);
free(p);
sampler->RemoveSamplesObserver(&collector);
EXPECT_TRUE(collector.sample_added);
EXPECT_TRUE(collector.sample_removed);
}
TEST_F(SamplingHeapProfilerTest, SampleObserverMuted) {
ScopedSuppressRandomnessForTesting suppress;
SamplesCollector collector(10000);
auto* sampler = PoissonAllocationSampler::Get();
sampler->SetSamplingInterval(1024);
sampler->AddSamplesObserver(&collector);
{
PoissonAllocationSampler::ScopedMuteThreadSamples muted_scope;
void* volatile p = malloc(10000);
free(p);
}
sampler->RemoveSamplesObserver(&collector);
EXPECT_FALSE(collector.sample_added);
EXPECT_FALSE(collector.sample_removed);
}
TEST_F(SamplingHeapProfilerTest, IntervalRandomizationSanity) {
ASSERT_FALSE(ScopedSuppressRandomnessForTesting::IsSuppressed());
constexpr int iterations = 50;
constexpr size_t target = 10000000;
int sum = 0;
for (int i = 0; i < iterations; ++i) {
int samples = 0;
for (size_t value = 0; value < target; value += GetNextSample(10000))
++samples;
// There are should be ~ target/10000 = 1000 samples.
sum += samples;
}
int mean_samples = sum / iterations;
EXPECT_NEAR(1000, mean_samples, 100); // 10% tolerance.
}
#if BUILDFLAG(IS_IOS)
// iOS devices generally have ~4GB of RAM with no swap and therefore need a
// lower allocation limit here.
const int kNumberOfAllocations = 1000;
#else
const int kNumberOfAllocations = 10000;
#endif
NOINLINE void Allocate1() {
void* p = malloc(400);
base::debug::Alias(&p);
}
NOINLINE void Allocate2() {
void* p = malloc(700);
base::debug::Alias(&p);
}
NOINLINE void Allocate3() {
void* p = malloc(20480);
base::debug::Alias(&p);
}
class MyThread1 : public SimpleThread {
public:
MyThread1() : SimpleThread("MyThread1") {}
void Run() override {
for (int i = 0; i < kNumberOfAllocations; ++i)
Allocate1();
}
};
class MyThread2 : public SimpleThread {
public:
MyThread2() : SimpleThread("MyThread2") {}
void Run() override {
for (int i = 0; i < kNumberOfAllocations; ++i)
Allocate2();
}
};
void CheckAllocationPattern(void (*allocate_callback)()) {
ASSERT_FALSE(ScopedSuppressRandomnessForTesting::IsSuppressed());
auto* profiler = SamplingHeapProfiler::Get();
profiler->SetSamplingInterval(10240);
base::TimeTicks t0 = base::TimeTicks::Now();
std::map<size_t, size_t> sums;
const int iterations = 40;
for (int i = 0; i < iterations; ++i) {
uint32_t id = profiler->Start();
allocate_callback();
std::vector<SamplingHeapProfiler::Sample> samples =
profiler->GetSamples(id);
profiler->Stop();
std::map<size_t, size_t> buckets;
for (auto& sample : samples) {
buckets[sample.size] += sample.total;
}
for (auto& it : buckets) {
if (it.first != 400 && it.first != 700 && it.first != 20480)
continue;
sums[it.first] += it.second;
printf("%zu,", it.second);
}
printf("\n");
}
printf("Time taken %" PRIu64 "ms\n",
(base::TimeTicks::Now() - t0).InMilliseconds());
for (auto sum : sums) {
intptr_t expected = sum.first * kNumberOfAllocations;
intptr_t actual = sum.second / iterations;
printf("%zu:\tmean: %zu\trelative error: %.2f%%\n", sum.first, actual,
100. * (actual - expected) / expected);
}
}
// Manual tests to check precision of the sampling profiler.
// Yes, they do leak lots of memory.
TEST_F(SamplingHeapProfilerTest, DISABLED_ParallelLargeSmallStats) {
CheckAllocationPattern([]() {
MyThread1 t1;
MyThread1 t2;
t1.Start();
t2.Start();
for (int i = 0; i < kNumberOfAllocations; ++i)
Allocate3();
t1.Join();
t2.Join();
});
}
TEST_F(SamplingHeapProfilerTest, DISABLED_SequentialLargeSmallStats) {
CheckAllocationPattern([]() {
for (int i = 0; i < kNumberOfAllocations; ++i) {
Allocate1();
Allocate2();
Allocate3();
}
});
}
// Platform TLS: alloc+free[ns]: 22.184 alloc[ns]: 8.910 free[ns]: 13.274
// thread_local: alloc+free[ns]: 18.353 alloc[ns]: 5.021 free[ns]: 13.331
// TODO(crbug.com/1117342) Disabled on Mac
#if BUILDFLAG(IS_MAC)
#define MAYBE_MANUAL_SamplerMicroBenchmark DISABLED_MANUAL_SamplerMicroBenchmark
#else
#define MAYBE_MANUAL_SamplerMicroBenchmark MANUAL_SamplerMicroBenchmark
#endif
TEST_F(SamplingHeapProfilerTest, MAYBE_MANUAL_SamplerMicroBenchmark) {
// With the sampling interval of 100KB it happens to record ~ every 450th
// allocation in the browser process. We model this pattern here.
constexpr size_t sampling_interval = 100000;
constexpr size_t allocation_size = sampling_interval / 450;
SamplesCollector collector(0);
auto* sampler = PoissonAllocationSampler::Get();
sampler->SetSamplingInterval(sampling_interval);
sampler->AddSamplesObserver(&collector);
int kNumAllocations = 50000000;
base::TimeTicks t0 = base::TimeTicks::Now();
for (int i = 1; i <= kNumAllocations; ++i) {
sampler->OnAllocation(reinterpret_cast<void*>(static_cast<intptr_t>(i)),
allocation_size, AllocationSubsystem::kAllocatorShim,
nullptr);
}
base::TimeTicks t1 = base::TimeTicks::Now();
for (int i = 1; i <= kNumAllocations; ++i)
sampler->OnFree(reinterpret_cast<void*>(static_cast<intptr_t>(i)));
base::TimeTicks t2 = base::TimeTicks::Now();
printf(
"alloc+free[ns]: %.3f alloc[ns]: %.3f free[ns]: %.3f "
"alloc+free[mln/s]: %.1f total[ms]: %.1f\n",
(t2 - t0).InNanoseconds() * 1. / kNumAllocations,
(t1 - t0).InNanoseconds() * 1. / kNumAllocations,
(t2 - t1).InNanoseconds() * 1. / kNumAllocations,
kNumAllocations / (t2 - t0).InMicrosecondsF(),
(t2 - t0).InMillisecondsF());
sampler->RemoveSamplesObserver(&collector);
}
class StartStopThread : public SimpleThread {
public:
StartStopThread(WaitableEvent* event)
: SimpleThread("MyThread2"), event_(event) {}
void Run() override {
auto* profiler = SamplingHeapProfiler::Get();
event_->Signal();
SamplingHeapProfilerTest::RunStartStopLoop(profiler);
}
private:
raw_ptr<WaitableEvent> event_;
};
TEST_F(SamplingHeapProfilerTest, StartStop) {
auto* profiler = SamplingHeapProfiler::Get();
EXPECT_EQ(0, GetRunningSessionsCount());
profiler->Start();
EXPECT_EQ(1, GetRunningSessionsCount());
profiler->Start();
EXPECT_EQ(2, GetRunningSessionsCount());
profiler->Stop();
EXPECT_EQ(1, GetRunningSessionsCount());
profiler->Stop();
EXPECT_EQ(0, GetRunningSessionsCount());
}
// TODO(crbug.com/1116543): Test is crashing on Mac.
#if BUILDFLAG(IS_MAC)
#define MAYBE_ConcurrentStartStop DISABLED_ConcurrentStartStop
#else
#define MAYBE_ConcurrentStartStop ConcurrentStartStop
#endif
TEST_F(SamplingHeapProfilerTest, MAYBE_ConcurrentStartStop) {
auto* profiler = SamplingHeapProfiler::Get();
WaitableEvent event;
StartStopThread thread(&event);
thread.Start();
event.Wait();
RunStartStopLoop(profiler);
thread.Join();
EXPECT_EQ(0, GetRunningSessionsCount());
}
TEST_F(SamplingHeapProfilerTest, HookedAllocatorMuted) {
ScopedSuppressRandomnessForTesting suppress;
EXPECT_FALSE(PoissonAllocationSampler::AreHookedSamplesMuted());
auto* sampler = PoissonAllocationSampler::Get();
sampler->SetSamplingInterval(1024);
{
PoissonAllocationSampler::ScopedMuteHookedSamplesForTesting mute_hooks;
EXPECT_TRUE(PoissonAllocationSampler::AreHookedSamplesMuted());
SamplesCollector collector(10000);
// A ScopedMuteHookedSamplesForTesting exists so hooked allocations should
// be ignored.
sampler->AddSamplesObserver(&collector);
void* volatile p = malloc(10000);
free(p);
sampler->RemoveSamplesObserver(&collector);
EXPECT_FALSE(collector.sample_added);
EXPECT_FALSE(collector.sample_removed);
// Manual allocations should be captured.
sampler->AddSamplesObserver(&collector);
void* const kAddress = reinterpret_cast<void*>(0x1234);
sampler->OnAllocation(kAddress, 10000,
AllocationSubsystem::kManualForTesting, nullptr);
sampler->OnFree(kAddress);
sampler->RemoveSamplesObserver(&collector);
EXPECT_TRUE(collector.sample_added);
EXPECT_TRUE(collector.sample_removed);
}
EXPECT_FALSE(PoissonAllocationSampler::AreHookedSamplesMuted());
// Hooked allocations should be captured again.
SamplesCollector collector(10000);
sampler->AddSamplesObserver(&collector);
void* volatile p = malloc(10000);
free(p);
sampler->RemoveSamplesObserver(&collector);
EXPECT_TRUE(collector.sample_added);
EXPECT_TRUE(collector.sample_removed);
}
} // namespace base
|