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

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

Issue 850063002: Do not fire timers for finalizing objects. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: export Heap::hasBeenLazilySwept() Created 5 years, 11 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
Index: Source/platform/heap/ThreadState.h
diff --git a/Source/platform/heap/ThreadState.h b/Source/platform/heap/ThreadState.h
index 6f788b740f11bd48b416b604c8e468582770a94a..75db15418a6cf7fb593ffadcd8c9226082891ef0 100644
--- a/Source/platform/heap/ThreadState.h
+++ b/Source/platform/heap/ThreadState.h
@@ -260,6 +260,8 @@ public:
static void shutdownHeapIfNecessary();
bool isTerminating() { return m_isTerminating; }
+ bool lazySweepToken() { return m_lazySweepToggle; }
+
static void attachMainThread();
static void detachMainThread();
@@ -640,6 +642,13 @@ private:
Vector<OwnPtr<CleanupTask>> m_cleanupTasks;
bool m_isTerminating;
+ // Lazy sweeping will mark pages as having been swept as the
+ // operation progresses. This is done by encoding the current
+ // lazy sweep state of their ThreadState on the page. Just a
+ // single bit is required, which is toggled when a new sweep
+ // is initiated.
+ bool m_lazySweepToggle;
+
bool m_shouldFlushHeapDoesNotContainCache;
double m_collectionRate;
GCState m_gcState;

Powered by Google App Engine
This is Rietveld 408576698