| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "public/web/WebMemoryStatistics.h" |
| 6 |
| 7 #include "platform/heap/Heap.h" |
| 8 #include "wtf/allocator/Partitions.h" |
| 9 |
| 10 namespace blink { |
| 11 |
| 12 namespace { |
| 13 |
| 14 class LightPartitionStatsDumperImpl : public WTF::PartitionStatsDumper { |
| 15 public: |
| 16 LightPartitionStatsDumperImpl() : m_totalActiveBytes(0) {} |
| 17 |
| 18 void partitionDumpTotals( |
| 19 const char* partitionName, |
| 20 const WTF::PartitionMemoryStats* memoryStats) override { |
| 21 m_totalActiveBytes += memoryStats->totalActiveBytes; |
| 22 } |
| 23 |
| 24 void partitionsDumpBucketStats( |
| 25 const char* partitionName, |
| 26 const WTF::PartitionBucketMemoryStats*) override {} |
| 27 |
| 28 size_t totalActiveBytes() const { return m_totalActiveBytes; } |
| 29 |
| 30 private: |
| 31 size_t m_totalActiveBytes; |
| 32 }; |
| 33 |
| 34 } // namespace |
| 35 |
| 36 WebMemoryStatistics WebMemoryStatistics::Get() { |
| 37 LightPartitionStatsDumperImpl dumper; |
| 38 WebMemoryStatistics statistics; |
| 39 |
| 40 WTF::Partitions::dumpMemoryStats(true, &dumper); |
| 41 statistics.partitionAllocTotalAllocatedBytes = dumper.totalActiveBytes(); |
| 42 |
| 43 statistics.blinkGCTotalAllocatedBytes = |
| 44 ProcessHeap::totalAllocatedObjectSize() + |
| 45 ProcessHeap::totalMarkedObjectSize(); |
| 46 return statistics; |
| 47 } |
| 48 |
| 49 } // namespace blink |
| OLD | NEW |