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

Unified Diff: tools/tickprocessor-driver.js

Issue 1884493003: Dump C++ symbols and merge into v8 log. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 8 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
« tools/tickprocessor.js ('K') | « tools/tickprocessor.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/tickprocessor-driver.js
diff --git a/tools/tickprocessor-driver.js b/tools/tickprocessor-driver.js
index 3f2321fed19d639f3f943140574b04d8bda4e885..b64f7cdba1440d73ab1092b7d3670d8cd4ef2617 100644
--- a/tools/tickprocessor-driver.js
+++ b/tools/tickprocessor-driver.js
@@ -74,4 +74,8 @@ var tickProcessor = new TickProcessor(
params.pairwiseTimedRange,
params.onlySummary);
tickProcessor.processLogFile(params.logFileName);
-tickProcessor.printStatistics();
+if (params.dumpCppEntries) {
+ tickProcessor.dumpCppEntries();
+} else {
+ tickProcessor.printStatistics();
+}
« tools/tickprocessor.js ('K') | « tools/tickprocessor.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698