Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1775)

Unified Diff: Source/platform/heap/Heap.cpp

Issue 1149703002: Adding heap-page statistics to blink-gc memory dump provider. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@oilpan_v1
Patch Set: Fixing error. Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/platform/heap/Heap.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/heap/Heap.cpp
diff --git a/Source/platform/heap/Heap.cpp b/Source/platform/heap/Heap.cpp
index 9d49bed23645c37e19ce7b5ce5f9afb478d95035..9ca71a0338fe103b443067b92cecc000478d802e 100644
--- a/Source/platform/heap/Heap.cpp
+++ b/Source/platform/heap/Heap.cpp
@@ -217,11 +217,12 @@ void BaseHeap::cleanupPages()
void BaseHeap::takeSnapshot(const String& dumpBaseName)
{
+ WebMemoryAllocatorDump* allocatorDump = BlinkGCMemoryDumpProvider::instance()->createMemoryAllocatorDumpForCurrentGC(dumpBaseName);
haraken 2015/05/29 02:11:30 I'm just curious but does the place we create the
Primiano Tucci (use gerrit) 2015/05/29 08:32:50 Do you mean the order or the call site? The order
ssid 2015/05/29 10:57:19 Just had a chat with primiano@. It is not necessar
size_t pageCount = 0;
for (BasePage* page = m_firstUnsweptPage; page; page = page->next()) {
+ page->takeSnapshot(dumpBaseName, pageCount);
haraken 2015/05/29 02:11:30 pageCount => pageIndex
ssid 2015/05/29 10:57:19 Done.
ssid 2015/05/29 10:57:19 Done.
pageCount++;
}
- WebMemoryAllocatorDump* allocatorDump = BlinkGCMemoryDumpProvider::instance()->createMemoryAllocatorDumpForCurrentGC(dumpBaseName);
allocatorDump->AddScalar("blink_page_count", "objects", pageCount);
}
@@ -1394,6 +1395,44 @@ void NormalPage::markOrphaned()
BasePage::markOrphaned();
}
+void NormalPage::takeSnapshot(const String& dumpBaseName, size_t pageIndex)
+{
+ String pageName = dumpBaseName.isolatedCopy();
haraken 2015/05/29 02:11:30 Instead of passing const String& and calling isola
Primiano Tucci (use gerrit) 2015/05/29 08:32:50 +1
+ pageName.append(String::format("/page_%zu", pageIndex));
+ WebMemoryAllocatorDump* pageDump = BlinkGCMemoryDumpProvider::instance()->createMemoryAllocatorDumpForCurrentGC(pageName);
+
+ HeapObjectHeader* header = nullptr;
+ size_t objectCount = 0;
+ size_t liveCount = 0;
+ size_t deadCount = 0;
+ size_t freeCount = 0;
+ size_t liveSize = 0;
+ size_t deadSize = 0;
+ size_t freeSize = 0;
+ for (Address addr = payload(); addr < payloadEnd(); addr += header->size()) {
haraken 2015/05/29 02:11:30 addr => headerAddress
ssid 2015/05/29 10:57:19 Done.
+ header = reinterpret_cast<HeapObjectHeader*>(addr);
+ objectCount++;
+ if (header->isFree()) {
+ freeCount++;
+ freeSize += header->size();
+ } else if (header->isMarked()) {
+ liveCount++;
+ liveSize += header->size();
+ } else {
+ deadCount++;
+ deadSize += header->size();
+ }
+ }
+
+ pageDump->AddScalar("object_count", "objects", objectCount);
haraken 2015/05/29 02:11:30 Remove objectCount. The freed area is not an objec
ssid 2015/05/29 10:57:19 Done, thanks.
+ pageDump->AddScalar("live_count", "objects", liveCount);
+ pageDump->AddScalar("dead_count", "objects", deadCount);
+ pageDump->AddScalar("free_count", "objects", freeCount);
+ pageDump->AddScalar("live_size", "bytes", liveSize);
+ pageDump->AddScalar("dead_size", "bytes", deadSize);
+ pageDump->AddScalar("free_size", "bytes", freeSize);
+}
+
#if ENABLE(GC_PROFILING)
const GCInfo* NormalPage::findGCInfo(Address address)
{
@@ -1570,6 +1609,32 @@ void LargeObjectPage::markOrphaned()
BasePage::markOrphaned();
}
+void LargeObjectPage::takeSnapshot(const String& dumpBaseName, size_t pageIndex)
+{
+ String pageName = dumpBaseName.isolatedCopy();
+ pageName.append(String::format("/page_%zu", pageIndex));
+ WebMemoryAllocatorDump* pageDump = BlinkGCMemoryDumpProvider::instance()->createMemoryAllocatorDumpForCurrentGC(pageName);
+
+ size_t liveSize = 0;
+ size_t deadSize = 0;
+ size_t liveCount = 0;
+ size_t deadCount = 0;
+ HeapObjectHeader* header = heapObjectHeader();
+ if (header->isMarked()) {
+ liveCount = 1;
+ liveSize += header->size();
+ } else {
+ deadCount = 1;
+ deadSize += header->size();
+ }
+
+ pageDump->AddScalar("object_count", "objects", 1u);
haraken 2015/05/29 02:11:30 Remove this.
ssid 2015/05/29 10:57:19 Done.
+ pageDump->AddScalar("live_count", "objects", liveCount);
+ pageDump->AddScalar("dead_count", "objects", deadCount);
+ pageDump->AddScalar("live_size", "bytes", liveSize);
+ pageDump->AddScalar("dead_size", "bytes", deadSize);
+}
+
#if ENABLE(GC_PROFILING)
const GCInfo* LargeObjectPage::findGCInfo(Address address)
{
« no previous file with comments | « Source/platform/heap/Heap.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698