| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "platform/heap/BlinkGCMemoryDumpProvider.h" | 5 #include "platform/heap/BlinkGCMemoryDumpProvider.h" |
| 6 | 6 |
| 7 #include "base/trace_event/heap_profiler_allocation_context_tracker.h" | 7 #include "base/trace_event/heap_profiler_allocation_context_tracker.h" |
| 8 #include "base/trace_event/heap_profiler_allocation_register.h" | 8 #include "base/trace_event/heap_profiler_allocation_register.h" |
| 9 #include "base/trace_event/memory_allocator_dump.h" | 9 #include "base/trace_event/memory_allocator_dump.h" |
| 10 #include "base/trace_event/process_memory_dump.h" | 10 #include "base/trace_event/process_memory_dump.h" |
| 11 #include "base/trace_event/trace_event_memory_overhead.h" | 11 #include "base/trace_event/trace_event_memory_overhead.h" |
| 12 #include "platform/heap/Handle.h" | 12 #include "platform/heap/Handle.h" |
| 13 #include "platform/web_memory_allocator_dump.h" | 13 #include "platform/tracing/web_memory_allocator_dump.h" |
| 14 #include "public/platform/Platform.h" | 14 #include "public/platform/Platform.h" |
| 15 #include "wtf/StdLibExtras.h" | 15 #include "wtf/StdLibExtras.h" |
| 16 #include "wtf/Threading.h" | 16 #include "wtf/Threading.h" |
| 17 | 17 |
| 18 namespace blink { | 18 namespace blink { |
| 19 namespace { | 19 namespace { |
| 20 | 20 |
| 21 void dumpMemoryTotals(base::trace_event::ProcessMemoryDump* memoryDump) { | 21 void dumpMemoryTotals(base::trace_event::ProcessMemoryDump* memoryDump) { |
| 22 base::trace_event::MemoryAllocatorDump* allocatorDump = | 22 base::trace_event::MemoryAllocatorDump* allocatorDump = |
| 23 memoryDump->CreateAllocatorDump("blink_gc"); | 23 memoryDump->CreateAllocatorDump("blink_gc"); |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 m_allocationRegister->Insert(address, size, context); | 136 m_allocationRegister->Insert(address, size, context); |
| 137 } | 137 } |
| 138 | 138 |
| 139 void BlinkGCMemoryDumpProvider::remove(Address address) { | 139 void BlinkGCMemoryDumpProvider::remove(Address address) { |
| 140 MutexLocker locker(m_allocationRegisterMutex); | 140 MutexLocker locker(m_allocationRegisterMutex); |
| 141 if (m_allocationRegister) | 141 if (m_allocationRegister) |
| 142 m_allocationRegister->Remove(address); | 142 m_allocationRegister->Remove(address); |
| 143 } | 143 } |
| 144 | 144 |
| 145 } // namespace blink | 145 } // namespace blink |
| OLD | NEW |