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

Unified Diff: tools/profviz/composer.js

Issue 1771293002: Fix histogram timer to generate ProfViz compatible log. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix ProfViz to recognize 'MicroSeconds' postfix and its corresponding mjsunit test material. Created 4 years, 9 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.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 85729b6d577f0c484bc92c59200bf9063d0a7c39..d56bcb944bde36af183be0d002de96e06d76cb44 100644
--- a/tools/profviz/composer.js
+++ b/tools/profviz/composer.js
@@ -104,15 +104,15 @@ function PlotScriptComposer(kResX, kResY, error_output) {
new TimerEvent("recompile sync", "#CC0044", true, 0),
'V8.RecompileConcurrent':
new TimerEvent("recompile async", "#CC4499", false, 1),
- 'V8.CompileEval':
+ 'V8.CompileEvalMicroSeconds':
new TimerEvent("compile eval", "#CC4400", true, 0),
'V8.IcMiss':
new TimerEvent("ic miss", "#CC9900", false, 0),
- 'V8.Parse':
+ 'V8.ParseMicroSeconds':
new TimerEvent("parse", "#00CC00", true, 0),
- 'V8.PreParse':
+ 'V8.PreParseMicroSeconds':
new TimerEvent("preparse", "#44CC00", true, 0),
- 'V8.ParseLazy':
+ 'V8.ParseLazyMicroSeconds':
new TimerEvent("lazy parse", "#00CC44", true, 0),
'V8.GCScavenger':
new TimerEvent("gc scavenge", "#0044CC", true, 0),
« no previous file with comments | « test/mjsunit/tools/profviz-test.log ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698