Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(414)

Unified Diff: Source/platform/heap/Heap.h

Issue 1159773004: Oilpan: Implement a GC to take a heap snapshot (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | Source/platform/heap/Heap.cpp » ('j') | Source/platform/heap/Heap.cpp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/heap/Heap.h
diff --git a/Source/platform/heap/Heap.h b/Source/platform/heap/Heap.h
index fdf24de7de2a5a962ffc337dedc6b423320e5e84..ca261e1bea17f00fb51c58cd6082f502b2e9d6ff 100644
--- a/Source/platform/heap/Heap.h
+++ b/Source/platform/heap/Heap.h
@@ -386,6 +386,7 @@ public:
virtual void removeFromHeap() = 0;
virtual void sweep() = 0;
virtual void makeConsistentForGC() = 0;
+ virtual void makeConsistentForMutator() = 0;
#if defined(ADDRESS_SANITIZER)
virtual void poisonUnmarkedObjects() = 0;
#endif
@@ -473,6 +474,7 @@ public:
virtual void removeFromHeap() override;
virtual void sweep() override;
virtual void makeConsistentForGC() override;
+ virtual void makeConsistentForMutator() override;
#if defined(ADDRESS_SANITIZER)
virtual void poisonUnmarkedObjects() override;
#endif
@@ -535,6 +537,7 @@ public:
virtual void removeFromHeap() override;
virtual void sweep() override;
virtual void makeConsistentForGC() override;
+ virtual void makeConsistentForMutator() override;
#if defined(ADDRESS_SANITIZER)
virtual void poisonUnmarkedObjects() override;
#endif
@@ -693,6 +696,7 @@ public:
virtual void clearFreeLists() { }
void makeConsistentForGC();
+ void makeConsistentForMutator();
#if ENABLE(ASSERT)
virtual bool isConsistentForGC() = 0;
#endif
« no previous file with comments | « no previous file | Source/platform/heap/Heap.cpp » ('j') | Source/platform/heap/Heap.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698