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

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

Issue 818253005: Oilpan: Query stack frame register instead of manual bookkeeping (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: need more depth to cause non-eager trace for arm32 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/InlinedGlobalMarkingVisitor.h
diff --git a/Source/platform/heap/InlinedGlobalMarkingVisitor.h b/Source/platform/heap/InlinedGlobalMarkingVisitor.h
index b3708e87f2c4b39023405ffd227ee9099c8af0d8..106be4571f40d8e4fc55b7dceff41e32101d2061 100644
--- a/Source/platform/heap/InlinedGlobalMarkingVisitor.h
+++ b/Source/platform/heap/InlinedGlobalMarkingVisitor.h
@@ -52,9 +52,7 @@ public:
using Impl::ensureMarked;
- inline bool canTraceEagerly() const { return m_visitor->canTraceEagerly(); }
- inline void incrementTraceDepth() { m_visitor->incrementTraceDepth(); }
- inline void decrementTraceDepth() { m_visitor->decrementTraceDepth(); }
+ inline bool canTraceEagerly() { return Visitor::canTraceEagerly(); }
Visitor* getUninlined() { return m_visitor; }

Powered by Google App Engine
This is Rietveld 408576698