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

Unified Diff: src/heap/gc-tracer.h

Issue 463453002: Measure incremental marking speed in bytes per millisecond based on pure incremental marking steps. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 4 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 | « no previous file | src/heap/gc-tracer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/heap/gc-tracer.h
diff --git a/src/heap/gc-tracer.h b/src/heap/gc-tracer.h
index 38843d1be77d62c6d15df634d1cc4114661c02ff..14281a4c8d90bcd7988ad58833db47381775b351 100644
--- a/src/heap/gc-tracer.h
+++ b/src/heap/gc-tracer.h
@@ -197,6 +197,15 @@ class GCTracer BASE_EMBEDDED {
// - last MARK_COMPACTOR event for MARK_COMPACTOR events
double incremental_marking_duration;
+ // Cumulative pure duration of incremental marking steps since creation of
+ // tracer. (value at start of event)
+ double cumulative_pure_incremental_marking_duration;
+
+ // Duration of pure incremental marking steps since
+ // - last event for SCAVENGER events
+ // - last MARK_COMPACTOR event for MARK_COMPACTOR events
+ double pure_incremental_marking_duration;
+
// Longest incremental marking step since start of marking.
// (value at start of event)
double longest_incremental_marking_step;
@@ -319,6 +328,10 @@ class GCTracer BASE_EMBEDDED {
// Cumulative duration of incremental marking steps since creation of tracer.
double cumulative_incremental_marking_duration_;
+ // Cumulative duration of pure incremental marking steps since creation of
+ // tracer.
+ double cumulative_pure_incremental_marking_duration_;
+
// Longest incremental marking step since start of marking.
double longest_incremental_marking_step_;
« no previous file with comments | « no previous file | src/heap/gc-tracer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698