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

Unified Diff: tools/tickprocessor.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/dump-cpp.py ('K') | « tools/dump-cpp.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/tickprocessor.js
diff --git a/tools/tickprocessor.js b/tools/tickprocessor.js
index ba7401a2236dd3ec25a0ae1ad89cf456f1e51970..d9bf0dd370252b63083a59759cbc53933d47de4a 100644
--- a/tools/tickprocessor.js
+++ b/tools/tickprocessor.js
@@ -782,6 +782,8 @@ function ArgumentsProcessor(args) {
'Show only ticks from EXTERNAL VM state'],
'--call-graph-size': ['callGraphSize', TickProcessor.CALL_GRAPH_SIZE,
'Set the call graph size'],
+ '--dump-cpp-symbols': ['dumpCppSymbols', true,
fmeawad 2016/04/19 12:52:25 I think you should remove that flag.
lpy 2016/04/19 21:02:20 Done.
+ 'Dump C++ symbols'],
'--ignore-unknown': ['ignoreUnknown', true,
'Exclude ticks of unknown code entries from processing'],
'--separate-ic': ['separateIc', true,
@@ -823,6 +825,7 @@ ArgumentsProcessor.DEFAULTS = {
platform: 'unix',
stateFilter: null,
callGraphSize: 5,
+ dumpCppSymbols: false,
fmeawad 2016/04/19 12:52:25 ditto
lpy 2016/04/19 21:02:20 Done.
ignoreUnknown: false,
separateIc: false,
targetRootFS: '',
« tools/dump-cpp.py ('K') | « tools/dump-cpp.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698