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

Side by Side Diff: src/flag-definitions.h

Issue 70013002: Support for the Linux 'perf report' and 'perf annotate' tools. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Rebase Created 7 years 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | src/isolate.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 767 matching lines...) Expand 10 before | Expand all | Expand 10 after
778 "log positions of (de)serialized objects in the snapshot.") 778 "log positions of (de)serialized objects in the snapshot.")
779 DEFINE_bool(log_suspect, false, "Log suspect operations.") 779 DEFINE_bool(log_suspect, false, "Log suspect operations.")
780 DEFINE_bool(prof, false, 780 DEFINE_bool(prof, false,
781 "Log statistical profiling information (implies --log-code).") 781 "Log statistical profiling information (implies --log-code).")
782 DEFINE_bool(prof_browser_mode, true, 782 DEFINE_bool(prof_browser_mode, true,
783 "Used with --prof, turns on browser-compatible mode for profiling.") 783 "Used with --prof, turns on browser-compatible mode for profiling.")
784 DEFINE_bool(log_regexp, false, "Log regular expression execution.") 784 DEFINE_bool(log_regexp, false, "Log regular expression execution.")
785 DEFINE_string(logfile, "v8.log", "Specify the name of the log file.") 785 DEFINE_string(logfile, "v8.log", "Specify the name of the log file.")
786 DEFINE_bool(logfile_per_isolate, true, "Separate log files for each isolate.") 786 DEFINE_bool(logfile_per_isolate, true, "Separate log files for each isolate.")
787 DEFINE_bool(ll_prof, false, "Enable low-level linux profiler.") 787 DEFINE_bool(ll_prof, false, "Enable low-level linux profiler.")
788 DEFINE_bool(perf_basic_prof, false,
789 "Enable perf linux profiler (basic support).")
790 DEFINE_bool(perf_jit_prof, false,
791 "Enable perf linux profiler (experimental annotate support).")
788 DEFINE_string(gc_fake_mmap, "/tmp/__v8_gc__", 792 DEFINE_string(gc_fake_mmap, "/tmp/__v8_gc__",
789 "Specify the name of the file for fake gc mmap used in ll_prof") 793 "Specify the name of the file for fake gc mmap used in ll_prof")
790 DEFINE_bool(log_internal_timer_events, false, "Time internal events.") 794 DEFINE_bool(log_internal_timer_events, false, "Time internal events.")
791 DEFINE_bool(log_timer_events, false, 795 DEFINE_bool(log_timer_events, false,
792 "Time events including external callbacks.") 796 "Time events including external callbacks.")
793 DEFINE_implication(log_timer_events, log_internal_timer_events) 797 DEFINE_implication(log_timer_events, log_internal_timer_events)
794 DEFINE_implication(log_internal_timer_events, prof) 798 DEFINE_implication(log_internal_timer_events, prof)
795 799
796 DEFINE_bool(redirect_code_traces, false, 800 DEFINE_bool(redirect_code_traces, false,
797 "output deopt information and disassembly into file " 801 "output deopt information and disassembly into file "
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
886 #undef DEFINE_ALIAS_float 890 #undef DEFINE_ALIAS_float
887 #undef DEFINE_ALIAS_args 891 #undef DEFINE_ALIAS_args
888 892
889 #undef FLAG_MODE_DECLARE 893 #undef FLAG_MODE_DECLARE
890 #undef FLAG_MODE_DEFINE 894 #undef FLAG_MODE_DEFINE
891 #undef FLAG_MODE_DEFINE_DEFAULTS 895 #undef FLAG_MODE_DEFINE_DEFAULTS
892 #undef FLAG_MODE_META 896 #undef FLAG_MODE_META
893 #undef FLAG_MODE_DEFINE_IMPLICATIONS 897 #undef FLAG_MODE_DEFINE_IMPLICATIONS
894 898
895 #undef COMMA 899 #undef COMMA
OLDNEW
« no previous file with comments | « no previous file | src/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698