| 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);
|
|
|