[heap] Preallocate ArrayBufferTracker for new space pages

BUG=chromium:619491
LOG=N

Review-Url: https://codereview.chromium.org/2076093002
Cr-Commit-Position: refs/heads/master@{#37063}
This commit is contained in:
mlippautz 2016-06-17 03:26:18 -07:00 committed by Commit bot
parent eaafd900e9
commit 849d6b45ef

View File

@ -260,6 +260,7 @@ Page* Page::Initialize(Heap* heap, MemoryChunk* chunk, Executability executable,
: MemoryChunk::IN_TO_SPACE));
Page* page = static_cast<Page*>(chunk);
heap->incremental_marking()->SetNewSpacePageFlags(page);
page->AllocateLocalTracker();
return page;
}