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

Unified Diff: tools/profviz/composer.js

Issue 18826008: Fix plot script. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 5 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
« test/mjsunit/tools/profviz.js ('K') | « test/mjsunit/tools/profviz-test.log ('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 bcc17b2ac89632a15bc0aac854ca417fcd9117aa..cdfc0b7b39aa855332ddc89d89d0bb33f3901e35 100644
--- a/tools/profviz/composer.js
+++ b/tools/profviz/composer.js
@@ -337,7 +337,7 @@ function PlotScriptComposer(kResX, kResY) {
};
var processTickEvent = function(
- pc, sp, timer, unused_x, unused_y, vmstate, stack) {
+ pc, timer, unused_x, unused_y, vmstate, stack) {
var tick = new Tick(timer);
var entry = code_map.findEntry(pc);
@@ -365,7 +365,7 @@ function PlotScriptComposer(kResX, kResY) {
processor: processCodeDeleteEvent },
'code-deopt': { parsers: [parseTimeStamp, parseInt],
processor: processCodeDeoptEvent },
- 'tick': { parsers: [parseInt, parseInt, parseTimeStamp,
+ 'tick': { parsers: [parseInt, parseTimeStamp,
null, null, parseInt, 'var-args'],
processor: processTickEvent }
});
« test/mjsunit/tools/profviz.js ('K') | « test/mjsunit/tools/profviz-test.log ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698