blob: b1c5ca473f0fe2c53994e71f36f4cc3138c13fbe [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 "platform/PlatformExport.h"
#include "platform/heap/BlinkGC.h"
#include "platform/wtf/Allocator.h"
#include "platform/wtf/ThreadingPrimitives.h"
#include "platform/wtf/text/WTFString.h"
namespace base {
namespace trace_event {
class AllocationRegister;
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();
Mutex allocation_register_mutex_;
std::unique_ptr<base::trace_event::AllocationRegister> allocation_register_;
std::unique_ptr<base::trace_event::ProcessMemoryDump>
current_process_memory_dump_;
bool is_heap_profiling_enabled_;
};
} // namespace blink
#endif