From 6c91641271e536ffaa88a1dff5127e42ee99a91e Mon Sep 17 00:00:00 2001 From: Allan Sandfeld Jensen Date: Mon, 25 Jan 2016 11:39:07 +0100 Subject: BASELINE: Update Chromium to 49.0.2623.23 Also adds missing printing sources. Change-Id: I3726b8f0c7d6751c9fc846096c571fadca7108cd Reviewed-by: Oswald Buddenhagen --- chromium/v8/src/heap/store-buffer.h | 19 ++++--------------- 1 file changed, 4 insertions(+), 15 deletions(-) (limited to 'chromium/v8/src/heap/store-buffer.h') diff --git a/chromium/v8/src/heap/store-buffer.h b/chromium/v8/src/heap/store-buffer.h index 37a78eb0752..9eeb00117b8 100644 --- a/chromium/v8/src/heap/store-buffer.h +++ b/chromium/v8/src/heap/store-buffer.h @@ -19,9 +19,6 @@ class StoreBuffer; typedef void (*ObjectSlotCallback)(HeapObject** from, HeapObject* to); -typedef void (StoreBuffer::*RegionCallback)(Address start, Address end, - ObjectSlotCallback slot_callback); - // Used to implement the write barrier by collecting addresses of pointers // between spaces. class StoreBuffer { @@ -147,23 +144,15 @@ class StoreBuffer { void FindPointersToNewSpaceInRegion(Address start, Address end, ObjectSlotCallback slot_callback); - // For each region of pointers on a page in use from an old space call - // visit_pointer_region callback. - // If either visit_pointer_region or callback can cause an allocation - // in old space and changes in allocation watermark then - // can_preallocate_during_iteration should be set to true. - void IteratePointersOnPage(PagedSpace* space, Page* page, - RegionCallback region_callback, - ObjectSlotCallback slot_callback); - void IteratePointersInStoreBuffer(ObjectSlotCallback slot_callback); #ifdef VERIFY_HEAP void VerifyPointers(LargeObjectSpace* space); #endif - friend class StoreBufferRebuildScope; friend class DontMoveStoreBufferEntriesScope; + friend class FindPointersToNewSpaceVisitor; + friend class StoreBufferRebuildScope; }; @@ -227,7 +216,7 @@ class DontMoveStoreBufferEntriesScope { StoreBuffer* store_buffer_; bool stored_state_; }; -} -} // namespace v8::internal +} // namespace internal +} // namespace v8 #endif // V8_STORE_BUFFER_H_ -- cgit v1.2.1