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

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

Issue 804303002: Implement Visitor::isGlobalMarkingVisitor (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years 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/HeapTest.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/heap/Visitor.h
diff --git a/Source/platform/heap/Visitor.h b/Source/platform/heap/Visitor.h
index f0b9ed70b31598dee872e40a39293c0055631ad8..c4fe24d4d405ab1584cace4edd7d812abcb4c107 100644
--- a/Source/platform/heap/Visitor.h
+++ b/Source/platform/heap/Visitor.h
@@ -264,6 +264,11 @@ struct ObjectAliveTrait {
// contained pointers and push them on the marking stack.
class PLATFORM_EXPORT Visitor {
public:
+ enum VisitorType {
+ GlobalMarkingVisitorType,
+ GenericVisitorType,
+ };
+
virtual ~Visitor() { }
// One-argument templated mark method. This uses the static type of
@@ -531,9 +536,12 @@ public:
inline void incrementTraceDepth() { m_traceDepth++; }
inline void decrementTraceDepth() { ASSERT(m_traceDepth > 0); m_traceDepth--; }
+ inline bool isGlobalMarkingVisitor() const { return m_isGlobalMarkingVisitor; }
+
protected:
- Visitor()
+ Visitor(VisitorType type)
haraken 2014/12/16 06:53:30 Add explicit
kouhei (in TOK) 2014/12/16 06:58:27 Done.
: m_traceDepth(0)
+ , m_isGlobalMarkingVisitor(type == GlobalMarkingVisitorType)
{
}
@@ -557,6 +565,7 @@ private:
const int kMaxEagerTraceDepth = 100;
int m_traceDepth;
+ bool m_isGlobalMarkingVisitor;
haraken 2014/12/16 06:53:29 Can we store m_visitorType, instead of m_isGlobalM
kouhei (in TOK) 2014/12/16 06:58:27 "type == GlobalMarkingVisitorType" is slower than
};
// We trace vectors by using the trace trait on each element, which means you
« no previous file with comments | « Source/platform/heap/HeapTest.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698