diff options
Diffstat (limited to 'deps/v8/src/heap/heap-allocator.cc')
-rw-r--r-- | deps/v8/src/heap/heap-allocator.cc | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/deps/v8/src/heap/heap-allocator.cc b/deps/v8/src/heap/heap-allocator.cc index 580f56c9e0..2915977011 100644 --- a/deps/v8/src/heap/heap-allocator.cc +++ b/deps/v8/src/heap/heap-allocator.cc @@ -22,8 +22,15 @@ void HeapAllocator::Setup() { for (int i = FIRST_SPACE; i <= LAST_SPACE; ++i) { spaces_[i] = heap_->space(i); } + + space_for_maps_ = spaces_[MAP_SPACE] + ? static_cast<PagedSpace*>(spaces_[MAP_SPACE]) + : static_cast<PagedSpace*>(spaces_[OLD_SPACE]); + shared_old_allocator_ = heap_->shared_old_allocator_.get(); - shared_map_allocator_ = heap_->shared_map_allocator_.get(); + shared_map_allocator_ = heap_->shared_map_allocator_ + ? heap_->shared_map_allocator_.get() + : shared_old_allocator_; } void HeapAllocator::SetReadOnlySpace(ReadOnlySpace* read_only_space) { |