Revision: 16991
Author: yang...@chromium.org
Date: Fri Sep 27 13:45:17 2013 UTC
Log: Restrict recorded execution pauses to the required range.
R=jkumme...@chromium.org
BUG=
Review URL: https://codereview.chromium.org/24997003
http://code.google.com/p/v8/source/detail?r=16991
Modified:
/branches/bleeding_edge/tools/profviz/composer.js
=======================================
--- /branches/bleeding_edge/tools/profviz/composer.js Wed Sep 4 15:19:21
2013 UTC
+++ /branches/bleeding_edge/tools/profviz/composer.js Fri Sep 27 13:45:17
2013 UTC
@@ -497,6 +497,8 @@
}
// Label the longest pauses.
+ execution_pauses =
+ RestrictRangesTo(execution_pauses, range_start, range_end);
execution_pauses.sort(
function(a, b) { return b.duration() - a.duration(); });
--
--
v8-dev mailing list
v8-dev@googlegroups.com
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 v8-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.