Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 350117
b: refs/heads/master
c: 18c9e5c
h: refs/heads/master
i:
  350115: c768889
v: v3
  • Loading branch information
Namhyung Kim authored and Arnaldo Carvalho de Melo committed Feb 14, 2013
1 parent 49f4d31 commit 9ba60d6
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c0e79be74907b4654b622601692e1a27fd1dbeb3
refs/heads/master: 18c9e5c567e1bc475edc67dca3680ecd2562dc5c
3 changes: 3 additions & 0 deletions trunk/tools/perf/Documentation/perf-annotate.txt
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,9 @@ OPTIONS
--objdump=<path>::
Path to objdump binary.

--skip-missing::
Skip symbols that cannot be annotated.

SEE ALSO
--------
linkperf:perf-record[1], linkperf:perf-report[1]
17 changes: 15 additions & 2 deletions trunk/tools/perf/builtin-annotate.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ struct perf_annotate {
bool force, use_tui, use_stdio, use_gtk;
bool full_paths;
bool print_line;
bool skip_missing;
const char *sym_hist_filter;
const char *cpu_list;
DECLARE_BITMAP(cpu_bitmap, MAX_NR_CPUS);
Expand Down Expand Up @@ -139,11 +140,21 @@ static void hists__find_annotations(struct hists *self, int evidx,
}

if (use_browser == 2) {
hist_entry__gtk_annotate(he, evidx, NULL);
return;
int ret;

ret = hist_entry__gtk_annotate(he, evidx, NULL);
if (!ret || !ann->skip_missing)
return;

/* skip missing symbols */
nd = rb_next(nd);
} else if (use_browser == 1) {
key = hist_entry__tui_annotate(he, evidx, NULL);
switch (key) {
case -1:
if (!ann->skip_missing)
return;
/* fall through */
case K_RIGHT:
next = rb_next(nd);
break;
Expand Down Expand Up @@ -288,6 +299,8 @@ int cmd_annotate(int argc, const char **argv, const char *prefix __maybe_unused)
"print matching source lines (may be slow)"),
OPT_BOOLEAN('P', "full-paths", &annotate.full_paths,
"Don't shorten the displayed pathnames"),
OPT_BOOLEAN(0, "skip-missing", &annotate.skip_missing,
"Skip symbols that cannot be annotated"),
OPT_STRING('C', "cpu", &annotate.cpu_list, "cpu", "list of cpus to profile"),
OPT_STRING(0, "symfs", &symbol_conf.symfs, "directory",
"Look for files with symbols relative to this directory"),
Expand Down

0 comments on commit 9ba60d6

Please sign in to comment.