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

Unified Diff: src/heap/heap.h

Issue 2735803005: [heap] Start concurrent marking simultaneously with incremental marking. (Closed)
Patch Set: tweak Created 3 years, 9 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: src/heap/heap.h
diff --git a/src/heap/heap.h b/src/heap/heap.h
index b50950e477ea93702649aec0d1b2f8caa4b503d8..64324a330b55db90e85c1a626bffaaa7ea3631bc 100644
--- a/src/heap/heap.h
+++ b/src/heap/heap.h
@@ -1239,6 +1239,12 @@ class Heap {
IncrementalMarking* incremental_marking() { return incremental_marking_; }
+ // ===========================================================================
+ // Concurrent marking API. ===================================================
+ // ===========================================================================
+
+ ConcurrentMarking* concurrent_marking() { return concurrent_marking_; }
+
// The runtime uses this function to notify potentially unsafe object layout
// changes that require special synchronization with the concurrent marker.
// A layout change is unsafe if

Powered by Google App Engine
This is Rietveld 408576698