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

Unified Diff: tools/profviz/composer.js

Issue 319703009: Do not merge adjourning ranges when calculating percentages in plot. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: rebaseline test Created 6 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 | « test/mjsunit/tools/profviz-test.default ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/profviz/composer.js
diff --git a/tools/profviz/composer.js b/tools/profviz/composer.js
index bd9fc18a233ce6229ad9df3b4d7abec722ae3327..8c187e58cb122949d5d2234be651f73f333ecc2d 100644
--- a/tools/profviz/composer.js
+++ b/tools/profviz/composer.js
@@ -413,7 +413,6 @@ function PlotScriptComposer(kResX, kResY, error_output) {
for (var name in TimerEvents) {
var event = TimerEvents[name];
var ranges = RestrictRangesTo(event.ranges, range_start, range_end);
- ranges = MergeRanges(ranges);
var sum =
ranges.map(function(range) { return range.duration(); })
.reduce(function(a, b) { return a + b; }, 0);
« no previous file with comments | « test/mjsunit/tools/profviz-test.default ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698