| Index: src/heap/heap.cc
|
| diff --git a/src/heap/heap.cc b/src/heap/heap.cc
|
| index 455b01e3f763b2979333363587ac01059c2d3319..f19e52156d83ab8538bf7283ae5b01f2a00acabe 100644
|
| --- a/src/heap/heap.cc
|
| +++ b/src/heap/heap.cc
|
| @@ -5685,6 +5685,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
|
|
|