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

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

Issue 1162533003: Oilpan: Rename makeConsistentForSweeping to makeConsistentForGC (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') | no next file with comments »
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 2365632741e4b20576cf2db71237d027adc48395..93404e4af16bc130da2f48f3fa2dd1636e82edc5 100644
--- a/Source/platform/heap/Heap.h
+++ b/Source/platform/heap/Heap.h
@@ -385,7 +385,7 @@ public:
virtual bool isEmpty() = 0;
virtual void removeFromHeap() = 0;
virtual void sweep() = 0;
- virtual void markUnmarkedObjectsDead() = 0;
+ virtual void makeConsistentForGC() = 0;
#if defined(ADDRESS_SANITIZER)
virtual void poisonUnmarkedObjects() = 0;
#endif
@@ -472,7 +472,7 @@ public:
virtual bool isEmpty() override;
virtual void removeFromHeap() override;
virtual void sweep() override;
- virtual void markUnmarkedObjectsDead() override;
+ virtual void makeConsistentForGC() override;
#if defined(ADDRESS_SANITIZER)
virtual void poisonUnmarkedObjects() override;
#endif
@@ -534,7 +534,7 @@ public:
virtual bool isEmpty() override;
virtual void removeFromHeap() override;
virtual void sweep() override;
- virtual void markUnmarkedObjectsDead() override;
+ virtual void makeConsistentForGC() override;
#if defined(ADDRESS_SANITIZER)
virtual void poisonUnmarkedObjects() override;
#endif
@@ -692,9 +692,9 @@ public:
#endif
virtual void clearFreeLists() { }
- void makeConsistentForSweeping();
+ void makeConsistentForGC();
#if ENABLE(ASSERT)
- virtual bool isConsistentForSweeping() = 0;
+ virtual bool isConsistentForGC() = 0;
#endif
size_t objectPayloadSizeForTesting();
void prepareHeapForTermination();
@@ -737,7 +737,7 @@ public:
}
virtual void clearFreeLists() override;
#if ENABLE(ASSERT)
- virtual bool isConsistentForSweeping() override;
+ virtual bool isConsistentForGC() override;
bool pagesToBeSweptContains(Address);
#endif
#if ENABLE(GC_PROFILING)
@@ -786,7 +786,7 @@ public:
Address allocateLargeObjectPage(size_t, size_t gcInfoIndex);
void freeLargeObjectPage(LargeObjectPage*);
#if ENABLE(ASSERT)
- virtual bool isConsistentForSweeping() override { return true; }
+ virtual bool isConsistentForGC() override { return true; }
#endif
private:
Address doAllocateLargeObjectPage(size_t, size_t gcInfoIndex);
« no previous file with comments | « no previous file | Source/platform/heap/Heap.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698