| Index: src/heap/heap.cc
|
| diff --git a/src/heap/heap.cc b/src/heap/heap.cc
|
| index 51d2918f8eb1a02894606e1e4ab230529311134c..c52d4d257c6b369ec0660c32416857f8249a2059 100644
|
| --- a/src/heap/heap.cc
|
| +++ b/src/heap/heap.cc
|
| @@ -5697,6 +5697,12 @@ void Heap::SetStackLimits() {
|
| }
|
|
|
|
|
| +void Heap::PrintAlloctionsHash() {
|
| + uint32_t hash = StringHasher::GetHashCore(raw_allocations_hash_);
|
| + PrintF("\n### Allocations = %u, hash = 0x%08x\n", allocations_count(), hash);
|
| +}
|
| +
|
| +
|
| void Heap::NotifyDeserializationComplete() {
|
| deserialization_complete_ = true;
|
| #ifdef DEBUG
|
|
|