diff options
author | Namhyung Kim <namhyung.kim@lge.com> | 2013-03-25 05:18:18 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2013-03-26 15:38:21 -0400 |
commit | 328ccdace8855289ad114b70ee1464ba5e3f6436 (patch) | |
tree | 66c2f0abe8ab330b3e2213046bf8f4eb454c20e4 /tools/perf/builtin-report.c | |
parent | 12c08a9f591aeda57fb3b05897169e7da5439a79 (diff) |
perf report: Add --no-demangle option
It's sometimes useful to see undemangled raw symbol name for example
other tools using the perf output to do manipulation of binaries.
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Suggested-by: William Cohen <wcohen@redhat.com>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: William Cohen <wcohen@redhat.com>
BugLink: https://bugzilla.kernel.org/show_bug.cgi?id=55571
Link: http://lkml.kernel.org/r/1364203098-17741-1-git-send-email-namhyung@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/builtin-report.c')
-rw-r--r-- | tools/perf/builtin-report.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/perf/builtin-report.c b/tools/perf/builtin-report.c index 296bd219977a..b5ea26cc7eb1 100644 --- a/tools/perf/builtin-report.c +++ b/tools/perf/builtin-report.c | |||
@@ -692,6 +692,8 @@ int cmd_report(int argc, const char **argv, const char *prefix __maybe_unused) | |||
692 | "use branch records for histogram filling", parse_branch_mode), | 692 | "use branch records for histogram filling", parse_branch_mode), |
693 | OPT_STRING(0, "objdump", &objdump_path, "path", | 693 | OPT_STRING(0, "objdump", &objdump_path, "path", |
694 | "objdump binary to use for disassembly and annotations"), | 694 | "objdump binary to use for disassembly and annotations"), |
695 | OPT_BOOLEAN(0, "demangle", &symbol_conf.demangle, | ||
696 | "Disable symbol demangling"), | ||
695 | OPT_END() | 697 | OPT_END() |
696 | }; | 698 | }; |
697 | 699 | ||