Reviewers: Jakob,
Description:
Do not merge adjourning ranges when calculating percentages in plot.
[email protected]
Please review this at https://codereview.chromium.org/319703009/
SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge
Affected files (+0, -1 lines):
M tools/profviz/composer.js
Index: tools/profviz/composer.js
diff --git a/tools/profviz/composer.js b/tools/profviz/composer.js
index
f9b3f2e916c8756e9c78fae9375d99b130e17e27..50db4de27e3b56d0f5b468de3d209c57c9eb81f7
100644
--- a/tools/profviz/composer.js
+++ b/tools/profviz/composer.js
@@ -411,7 +411,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);
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.