diff options
author | Stephane Eranian <eranian@google.com> | 2011-07-29 19:20:40 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2011-08-18 06:40:34 -0400 |
commit | e71a059832753a8834a5a5080366879954ccdc4d (patch) | |
tree | 83268a902907320f839057ad2202d33d375c7df1 /tools/perf | |
parent | 3e6a2a7f3b9d0e521bb3284573b696d0cbe1952c (diff) |
perf annotate: Add --symfs option
If you have --symfs in perf report, then you also need it for perf
annotate. This allows off-box assembly level analysis of perf.data
samples.
This patch complements:
commit ec5761eab318e50e69fcf8e63e9edaef5949c067
Author: David Ahern <daahern@cisco.com>
Date: Thu Dec 9 13:27:07 2010 -0700
perf symbols: Add symfs option for off-box analysis using specified tree
Acked-by: David Ahern <daahern@cisco.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: David Ahern <daahern@cisco.com>
Link: http://lkml.kernel.org/r/20110729232040.GA21838@quad
Signed-off-by: Stephane Eranian <eranian@google.com>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf')
-rw-r--r-- | tools/perf/Documentation/perf-annotate.txt | 3 | ||||
-rw-r--r-- | tools/perf/builtin-annotate.c | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/tools/perf/Documentation/perf-annotate.txt b/tools/perf/Documentation/perf-annotate.txt index 5bc06001557f..98a31e3181a5 100644 --- a/tools/perf/Documentation/perf-annotate.txt +++ b/tools/perf/Documentation/perf-annotate.txt | |||
@@ -80,6 +80,9 @@ OPTIONS | |||
80 | Interleave source code with assembly code. Enabled by default, | 80 | Interleave source code with assembly code. Enabled by default, |
81 | disable with --no-source. | 81 | disable with --no-source. |
82 | 82 | ||
83 | --symfs=<directory>:: | ||
84 | Look for files with symbols relative to this directory. | ||
85 | |||
83 | SEE ALSO | 86 | SEE ALSO |
84 | -------- | 87 | -------- |
85 | linkperf:perf-record[1], linkperf:perf-report[1] | 88 | linkperf:perf-record[1], linkperf:perf-report[1] |
diff --git a/tools/perf/builtin-annotate.c b/tools/perf/builtin-annotate.c index 5015e04b8214..c5be28851f01 100644 --- a/tools/perf/builtin-annotate.c +++ b/tools/perf/builtin-annotate.c | |||
@@ -267,6 +267,8 @@ static const struct option options[] = { | |||
267 | OPT_BOOLEAN('P', "full-paths", &full_paths, | 267 | OPT_BOOLEAN('P', "full-paths", &full_paths, |
268 | "Don't shorten the displayed pathnames"), | 268 | "Don't shorten the displayed pathnames"), |
269 | OPT_STRING('c', "cpu", &cpu_list, "cpu", "list of cpus to profile"), | 269 | OPT_STRING('c', "cpu", &cpu_list, "cpu", "list of cpus to profile"), |
270 | OPT_STRING(0, "symfs", &symbol_conf.symfs, "directory", | ||
271 | "Look for files with symbols relative to this directory"), | ||
270 | OPT_BOOLEAN('0', "source", &symbol_conf.annotate_src, | 272 | OPT_BOOLEAN('0', "source", &symbol_conf.annotate_src, |
271 | "Interleave source code with assembly code (default)"), | 273 | "Interleave source code with assembly code (default)"), |
272 | OPT_BOOLEAN('0', "asm-raw", &symbol_conf.annotate_asm_raw, | 274 | OPT_BOOLEAN('0', "asm-raw", &symbol_conf.annotate_asm_raw, |