| 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 "base/trace_event/winheap_dump_provider_win.h" | 5 #include "base/trace_event/winheap_dump_provider_win.h" |
| 6 | 6 |
| 7 #include <windows.h> | 7 #include <windows.h> |
| 8 | 8 |
| 9 #include "base/trace_event/process_memory_dump.h" | 9 #include "base/trace_event/process_memory_dump.h" |
| 10 | 10 |
| 11 namespace base { | 11 namespace base { |
| 12 namespace trace_event { | 12 namespace trace_event { |
| 13 | 13 |
| 14 namespace { | 14 namespace { |
| 15 | 15 |
| 16 const char kDumperFriendlyName[] = "winheap"; | |
| 17 | |
| 18 // Report a heap dump to a process memory dump. The |heap_info| structure | 16 // Report a heap dump to a process memory dump. The |heap_info| structure |
| 19 // contains the information about this heap, and |heap_name| will be used to | 17 // contains the information about this heap, and |heap_name| will be used to |
| 20 // represent it in the report. | 18 // represent it in the report. |
| 21 bool ReportHeapDump(ProcessMemoryDump* pmd, | 19 bool ReportHeapDump(ProcessMemoryDump* pmd, |
| 22 const WinHeapInfo& heap_info, | 20 const WinHeapInfo& heap_info, |
| 23 const std::string& heap_name) { | 21 const std::string& heap_name) { |
| 24 MemoryAllocatorDump* dump = | 22 MemoryAllocatorDump* dump = pmd->CreateAllocatorDump("winheap"); |
| 25 pmd->CreateAllocatorDump(kDumperFriendlyName, heap_name); | |
| 26 if (!dump) | 23 if (!dump) |
| 27 return false; | 24 return false; |
| 28 dump->set_physical_size_in_bytes(heap_info.committed_size); | 25 dump->AddScalar(MemoryAllocatorDump::kNameOuterSize, |
| 29 dump->set_allocated_objects_count(heap_info.block_count); | 26 MemoryAllocatorDump::kUnitsBytes, heap_info.committed_size); |
| 30 dump->set_allocated_objects_size_in_bytes(heap_info.allocated_size); | 27 dump->AddScalar(MemoryAllocatorDump::kNameInnerSize, |
| 28 MemoryAllocatorDump::kUnitsBytes, heap_info.allocated_size); |
| 29 dump->AddScalar(MemoryAllocatorDump::kNameObjectsCount, |
| 30 MemoryAllocatorDump::kUnitsObjects, heap_info.block_count); |
| 31 return true; | 31 return true; |
| 32 } | 32 } |
| 33 | 33 |
| 34 } // namespace | 34 } // namespace |
| 35 | 35 |
| 36 WinHeapDumpProvider* WinHeapDumpProvider::GetInstance() { | 36 WinHeapDumpProvider* WinHeapDumpProvider::GetInstance() { |
| 37 return Singleton<WinHeapDumpProvider, | 37 return Singleton<WinHeapDumpProvider, |
| 38 LeakySingletonTraits<WinHeapDumpProvider>>::get(); | 38 LeakySingletonTraits<WinHeapDumpProvider>>::get(); |
| 39 } | 39 } |
| 40 | 40 |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 } else if ((heap_entry.wFlags & PROCESS_HEAP_REGION) != 0) { | 90 } else if ((heap_entry.wFlags & PROCESS_HEAP_REGION) != 0) { |
| 91 heap_info->committed_size += heap_entry.Region.dwCommittedSize; | 91 heap_info->committed_size += heap_entry.Region.dwCommittedSize; |
| 92 } | 92 } |
| 93 } | 93 } |
| 94 CHECK(::HeapUnlock(heap_info->heap_id) == TRUE); | 94 CHECK(::HeapUnlock(heap_info->heap_id) == TRUE); |
| 95 return true; | 95 return true; |
| 96 } | 96 } |
| 97 | 97 |
| 98 } // namespace trace_event | 98 } // namespace trace_event |
| 99 } // namespace base | 99 } // namespace base |
| OLD | NEW |