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

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

Issue 1179763005: Oilpan: Fix compile of GC_PROFILING build, and remove object graph dumper. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add EagerSweepHeap. Created 5 years, 6 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/MarkingVisitorImpl.h ('k') | Source/platform/heap/Visitor.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/heap/ThreadState.cpp
diff --git a/Source/platform/heap/ThreadState.cpp b/Source/platform/heap/ThreadState.cpp
index 566a5d870169535154565190a55428a0391e09f5..881f55862ee97e8d7981928be3e8b61179f1d1bd 100644
--- a/Source/platform/heap/ThreadState.cpp
+++ b/Source/platform/heap/ThreadState.cpp
@@ -415,7 +415,11 @@ void ThreadState::snapshot()
json->endDictionary(); \
}
json->beginArray("heaps");
- SNAPSHOT_HEAP(NormalPage);
+ SNAPSHOT_HEAP(EagerSweep);
+ SNAPSHOT_HEAP(NormalPage1);
+ SNAPSHOT_HEAP(NormalPage2);
+ SNAPSHOT_HEAP(NormalPage3);
+ SNAPSHOT_HEAP(NormalPage4);
SNAPSHOT_HEAP(Vector1);
SNAPSHOT_HEAP(Vector2);
SNAPSHOT_HEAP(Vector3);
@@ -1371,8 +1375,15 @@ void ThreadState::snapshotFreeList()
}
json->beginArray("heaps");
- SNAPSHOT_FREE_LIST(NormalPage);
- SNAPSHOT_FREE_LIST(Vector);
+ SNAPSHOT_FREE_LIST(EagerSweep);
+ SNAPSHOT_FREE_LIST(NormalPage1);
+ SNAPSHOT_FREE_LIST(NormalPage2);
+ SNAPSHOT_FREE_LIST(NormalPage3);
+ SNAPSHOT_FREE_LIST(NormalPage4);
+ SNAPSHOT_FREE_LIST(Vector1);
+ SNAPSHOT_FREE_LIST(Vector2);
+ SNAPSHOT_FREE_LIST(Vector3);
+ SNAPSHOT_FREE_LIST(Vector4);
SNAPSHOT_FREE_LIST(InlineVector);
SNAPSHOT_FREE_LIST(HashTable);
SNAPSHOT_FREE_LIST(LargeObject);
« no previous file with comments | « Source/platform/heap/MarkingVisitorImpl.h ('k') | Source/platform/heap/Visitor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698