blob: f8e699acd3d5506dfce30801d193f1beb182f30a [file] [log] [blame]
// Copyright 2015 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.
#ifndef BlinkGCMemoryDumpProvider_h
#define BlinkGCMemoryDumpProvider_h
#include "base/trace_event/memory_dump_provider.h"
#include "base/trace_event/sharded_allocation_register.h"
#include "platform/PlatformExport.h"
#include "platform/heap/BlinkGC.h"
#include "platform/wtf/Allocator.h"
#include "platform/wtf/text/WTFString.h"
namespace base {
namespace trace_event {
class MemoryAllocatorDump;
} // namespace trace_event
} // namespace base
namespace blink {
class WebMemoryAllocatorDump;
class PLATFORM_EXPORT BlinkGCMemoryDumpProvider final
: public base::trace_event::MemoryDumpProvider {
USING_FAST_MALLOC(BlinkGCMemoryDumpProvider);
public:
static BlinkGCMemoryDumpProvider* Instance();
~BlinkGCMemoryDumpProvider() override;
// MemoryDumpProvider implementation.
bool OnMemoryDump(const base::trace_event::MemoryDumpArgs&,
base::trace_event::ProcessMemoryDump*) override;
void OnHeapProfilingEnabled(bool) override;
// The returned WebMemoryAllocatorDump is owned by
// BlinkGCMemoryDumpProvider, and should not be retained (just used to
// dump in the current call stack).
base::trace_event::MemoryAllocatorDump* CreateMemoryAllocatorDumpForCurrentGC(
const String& absolute_name);
// This must be called before taking a new process-wide GC snapshot, to
// clear the previous dumps.
void ClearProcessDumpForCurrentGC();
base::trace_event::ProcessMemoryDump* CurrentProcessMemoryDump() {
return current_process_memory_dump_.get();
}
void insert(Address, size_t, const char*);
void Remove(Address);
private:
BlinkGCMemoryDumpProvider();
base::trace_event::ShardedAllocationRegister allocation_register_;
std::unique_ptr<base::trace_event::ProcessMemoryDump>
current_process_memory_dump_;
};
} // namespace blink
#endif