Index: src/isolate.cc |
diff --git a/src/isolate.cc b/src/isolate.cc |
index 20ff7ff899e317ae3f62f84099117d0165e16677..9b8bddad3d269d6223d614f96d95688276e2978a 100644 |
--- a/src/isolate.cc |
+++ b/src/isolate.cc |
@@ -1934,8 +1934,8 @@ class VerboseAccountingAllocator : public AccountingAllocator { |
VerboseAccountingAllocator(Heap* heap, size_t sample_bytes) |
: heap_(heap), last_memory_usage_(0), sample_bytes_(sample_bytes) {} |
- v8::internal::Segment* AllocateSegment(size_t size) override { |
- v8::internal::Segment* memory = AccountingAllocator::AllocateSegment(size); |
+ v8::internal::Segment* GetSegment(size_t size) override { |
+ v8::internal::Segment* memory = AccountingAllocator::GetSegment(size); |
if (memory) { |
size_t current = GetCurrentMemoryUsage(); |
if (last_memory_usage_.Value() + sample_bytes_ < current) { |
@@ -1946,8 +1946,8 @@ class VerboseAccountingAllocator : public AccountingAllocator { |
return memory; |
} |
- void FreeSegment(v8::internal::Segment* memory) override { |
- AccountingAllocator::FreeSegment(memory); |
+ void ReturnSegment(v8::internal::Segment* memory) override { |
+ AccountingAllocator::ReturnSegment(memory); |
size_t current = GetCurrentMemoryUsage(); |
if (current + sample_bytes_ < last_memory_usage_.Value()) { |
PrintJSON(current); |