Chromium Code Reviews| Index: Source/platform/heap/ThreadState.cpp |
| diff --git a/Source/platform/heap/ThreadState.cpp b/Source/platform/heap/ThreadState.cpp |
| index 566a5d870169535154565190a55428a0391e09f5..9a9171e15d0e7023e62c674b7bc12bf011cc6e54 100644 |
| --- a/Source/platform/heap/ThreadState.cpp |
| +++ b/Source/platform/heap/ThreadState.cpp |
| @@ -415,7 +415,10 @@ void ThreadState::snapshot() |
| json->endDictionary(); \ |
| } |
| json->beginArray("heaps"); |
| - SNAPSHOT_HEAP(NormalPage); |
| + SNAPSHOT_HEAP(NormalPage1); |
|
haraken
2015/06/11 10:55:32
You need to add EagerSweepHeap! :)
Yuta Kitamura
2015/06/12 02:43:29
Done.
|
| + SNAPSHOT_HEAP(NormalPage2); |
| + SNAPSHOT_HEAP(NormalPage3); |
| + SNAPSHOT_HEAP(NormalPage4); |
| SNAPSHOT_HEAP(Vector1); |
| SNAPSHOT_HEAP(Vector2); |
| SNAPSHOT_HEAP(Vector3); |
| @@ -1371,8 +1374,14 @@ void ThreadState::snapshotFreeList() |
| } |
| json->beginArray("heaps"); |
| - SNAPSHOT_FREE_LIST(NormalPage); |
| - SNAPSHOT_FREE_LIST(Vector); |
| + SNAPSHOT_FREE_LIST(NormalPage1); |
|
haraken
2015/06/11 10:55:32
Ditto.
Yuta Kitamura
2015/06/12 02:43:29
Done.
|
| + 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); |