blob: fa469139468a9b85300813c2ffdbcc0cf3556454 [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/memory/shared_memory_tracker.h"
#include "base/memory/shared_memory.h"
#include "base/strings/string_number_conversions.h"
#include "base/trace_event/memory_allocator_dump_guid.h"
#include "base/trace_event/memory_dump_manager.h"
#include "base/trace_event/process_memory_dump.h"
namespace base {
namespace {
std::string GetDumpNameForTracing(const UnguessableToken& id) {
DCHECK(!id.is_empty());
return "shared_memory/" + id.ToString();
}
} // namespace
// static
SharedMemoryTracker* SharedMemoryTracker::GetInstance() {
static SharedMemoryTracker* instance = new SharedMemoryTracker;
return instance;
}
// static
trace_event::MemoryAllocatorDumpGuid SharedMemoryTracker::GetDumpIdForTracing(
const UnguessableToken& id) {
std::string dump_name = GetDumpNameForTracing(id);
return trace_event::MemoryAllocatorDump::GetDumpIdFromName(
std::move(dump_name));
}
// static
trace_event::MemoryAllocatorDumpGuid
SharedMemoryTracker::GetGlobalDumpIdForTracing(const UnguessableToken& id) {
std::string dump_name = GetDumpNameForTracing(id);
return trace_event::MemoryAllocatorDumpGuid(dump_name);
}
void SharedMemoryTracker::IncrementMemoryUsage(
const SharedMemory& shared_memory) {
AutoLock hold(usages_lock_);
DCHECK(usages_.find(&shared_memory) == usages_.end());
usages_[&shared_memory] = shared_memory.mapped_size();
}
void SharedMemoryTracker::DecrementMemoryUsage(
const SharedMemory& shared_memory) {
AutoLock hold(usages_lock_);
DCHECK(usages_.find(&shared_memory) != usages_.end());
usages_.erase(&shared_memory);
}
bool SharedMemoryTracker::OnMemoryDump(const trace_event::MemoryDumpArgs& args,
trace_event::ProcessMemoryDump* pmd) {
std::vector<std::tuple<UnguessableToken, size_t>> usages;
{
AutoLock hold(usages_lock_);
usages.reserve(usages_.size());
for (const auto& usage : usages_) {
usages.emplace_back(usage.first->mapped_id(), usage.second);
}
}
for (const auto& usage : usages) {
const UnguessableToken& memory_guid = std::get<0>(usage);
size_t size = std::get<1>(usage);
std::string dump_name = GetDumpNameForTracing(memory_guid);
// Discard duplicates that might be seen in single-process mode.
if (pmd->GetAllocatorDump(dump_name))
continue;
trace_event::MemoryAllocatorDump* local_dump =
pmd->CreateAllocatorDump(dump_name);
// TODO(hajimehoshi): The size is not resident size but virtual size so far.
// Fix this to record resident size.
local_dump->AddScalar(trace_event::MemoryAllocatorDump::kNameSize,
trace_event::MemoryAllocatorDump::kUnitsBytes, size);
auto global_dump_guid = GetGlobalDumpIdForTracing(memory_guid);
trace_event::MemoryAllocatorDump* global_dump =
pmd->CreateSharedGlobalAllocatorDump(global_dump_guid);
global_dump->AddScalar(trace_event::MemoryAllocatorDump::kNameSize,
trace_event::MemoryAllocatorDump::kUnitsBytes, size);
// The edges will be overriden by the clients with correct importance.
pmd->AddOverridableOwnershipEdge(local_dump->guid(), global_dump->guid(),
0 /* importance */);
}
return true;
}
SharedMemoryTracker::SharedMemoryTracker() {
trace_event::MemoryDumpManager::GetInstance()->RegisterDumpProvider(
this, "SharedMemoryTracker", nullptr);
}
SharedMemoryTracker::~SharedMemoryTracker() = default;
} // namespace