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

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

Issue 1168683002: Oilpan: Introduce WeakProcessingVisitor (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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 | « Source/platform/heap/MarkingVisitorImpl.h ('k') | Source/platform/heap/TraceTraits.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/heap/ThreadState.cpp
diff --git a/Source/platform/heap/ThreadState.cpp b/Source/platform/heap/ThreadState.cpp
index 7ff14e450554012c0c258a1ee2d0fd7a14077f3a..b3f0aa7aef5d34aff5c7c8f16fcf1377c92ee7d5 100644
--- a/Source/platform/heap/ThreadState.cpp
+++ b/Source/platform/heap/ThreadState.cpp
@@ -36,6 +36,7 @@
#include "platform/heap/CallbackStack.h"
#include "platform/heap/Handle.h"
#include "platform/heap/Heap.h"
+#include "platform/heap/MarkingVisitor.h"
#include "platform/heap/SafePoint.h"
#include "public/platform/Platform.h"
#include "public/platform/WebScheduler.h"
@@ -901,18 +902,14 @@ void ThreadState::preSweep()
SweepForbiddenScope forbiddenScope(this);
{
+ MarkingVisitor<Visitor::WeakProcessing> weakProcessingVisitor;
+
// Disallow allocation during weak processing.
NoAllocationScope noAllocationScope(this);
{
// Perform thread-specific weak processing.
TRACE_EVENT0("blink_gc", "ThreadState::threadLocalWeakProcessing");
- // TODO(haraken): It is wrong to unconditionally use
- // s_markingVisitor, which is for GlobalMarking.
- // ThreadTerminationGC should use a visitor for
- // ThreadLocalMarking. However, a better fix is just to remove
- // the visitor parameter. The only user of the visitor parameter
- // is HashTable::process.
- while (popAndInvokeThreadLocalWeakCallback(Heap::s_markingVisitor)) { }
+ while (popAndInvokeThreadLocalWeakCallback(&weakProcessingVisitor)) { }
}
{
TRACE_EVENT0("blink_gc", "ThreadState::invokePreFinalizers");
« no previous file with comments | « Source/platform/heap/MarkingVisitorImpl.h ('k') | Source/platform/heap/TraceTraits.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698