Ingo Molnar | bf9e187 | 2009-06-02 23:37:05 +0200 | [diff] [blame] | 1 | /* |
| 2 | * builtin-report.c |
| 3 | * |
| 4 | * Builtin report command: Analyze the perf.data input file, |
| 5 | * look up and read DSOs and symbol information and display |
| 6 | * a histogram of results, along various sorting keys. |
| 7 | */ |
Ingo Molnar | 16f762a | 2009-05-27 09:10:38 +0200 | [diff] [blame] | 8 | #include "builtin.h" |
Ingo Molnar | 53cb8bc | 2009-05-26 09:17:18 +0200 | [diff] [blame] | 9 | |
Ingo Molnar | bf9e187 | 2009-06-02 23:37:05 +0200 | [diff] [blame] | 10 | #include "util/util.h" |
| 11 | |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 12 | #include "util/annotate.h" |
Ingo Molnar | 8fc0321 | 2009-06-04 15:19:47 +0200 | [diff] [blame] | 13 | #include "util/color.h" |
Arnaldo Carvalho de Melo | 5da5025 | 2009-07-01 14:46:08 -0300 | [diff] [blame] | 14 | #include <linux/list.h> |
Ingo Molnar | a930d2c | 2009-05-27 09:50:13 +0200 | [diff] [blame] | 15 | #include "util/cache.h" |
Arnaldo Carvalho de Melo | 43cbcd8 | 2009-07-01 12:28:37 -0300 | [diff] [blame] | 16 | #include <linux/rbtree.h> |
Arnaldo Carvalho de Melo | a2928c4 | 2009-05-28 14:55:04 -0300 | [diff] [blame] | 17 | #include "util/symbol.h" |
Frederic Weisbecker | f55c555 | 2009-06-26 16:28:01 +0200 | [diff] [blame] | 18 | #include "util/callchain.h" |
Arnaldo Carvalho de Melo | 2590340 | 2009-06-30 19:01:20 -0300 | [diff] [blame] | 19 | #include "util/strlist.h" |
Brice Goglin | 8d51327 | 2009-08-07 13:55:24 +0200 | [diff] [blame] | 20 | #include "util/values.h" |
Arnaldo Carvalho de Melo | 8fa66bd | 2009-05-18 12:45:42 -0300 | [diff] [blame] | 21 | |
Ingo Molnar | 53cb8bc | 2009-05-26 09:17:18 +0200 | [diff] [blame] | 22 | #include "perf.h" |
Frederic Weisbecker | 8f28827 | 2009-08-16 22:05:48 +0200 | [diff] [blame] | 23 | #include "util/debug.h" |
Peter Zijlstra | 7c6a1c6 | 2009-06-25 17:05:54 +0200 | [diff] [blame] | 24 | #include "util/header.h" |
Arnaldo Carvalho de Melo | 94c744b | 2009-12-11 21:24:02 -0200 | [diff] [blame] | 25 | #include "util/session.h" |
Ingo Molnar | 53cb8bc | 2009-05-26 09:17:18 +0200 | [diff] [blame] | 26 | |
| 27 | #include "util/parse-options.h" |
| 28 | #include "util/parse-events.h" |
| 29 | |
Frederic Weisbecker | 6baa0a5 | 2009-08-14 12:21:53 +0200 | [diff] [blame] | 30 | #include "util/thread.h" |
John Kacur | dd68ada | 2009-09-24 18:02:49 +0200 | [diff] [blame] | 31 | #include "util/sort.h" |
John Kacur | 3d1d07e | 2009-09-28 15:32:55 +0200 | [diff] [blame] | 32 | #include "util/hist.h" |
Frederic Weisbecker | 6baa0a5 | 2009-08-14 12:21:53 +0200 | [diff] [blame] | 33 | |
Ingo Molnar | 23ac9cb | 2009-05-27 09:33:18 +0200 | [diff] [blame] | 34 | static char const *input_name = "perf.data"; |
Ingo Molnar | bd74137 | 2009-06-04 14:13:04 +0200 | [diff] [blame] | 35 | |
Arnaldo Carvalho de Melo | 8b9e74e | 2010-08-21 10:38:16 -0300 | [diff] [blame] | 36 | static bool force, use_tui, use_stdio; |
Arnaldo Carvalho de Melo | 71289be | 2009-12-28 22:48:34 -0200 | [diff] [blame] | 37 | static bool hide_unresolved; |
Arnaldo Carvalho de Melo | b9a63b9 | 2010-01-05 11:54:45 -0200 | [diff] [blame] | 38 | static bool dont_use_callchains; |
Ingo Molnar | 97b07b6 | 2009-05-26 18:48:58 +0200 | [diff] [blame] | 39 | |
Ian Munsie | c055564 | 2010-04-13 18:37:33 +1000 | [diff] [blame] | 40 | static bool show_threads; |
Brice Goglin | 8d51327 | 2009-08-07 13:55:24 +0200 | [diff] [blame] | 41 | static struct perf_read_values show_threads_values; |
| 42 | |
Arnaldo Carvalho de Melo | edb7c60 | 2010-05-17 16:22:41 -0300 | [diff] [blame] | 43 | static const char default_pretty_printing_style[] = "normal"; |
| 44 | static const char *pretty_printing_style = default_pretty_printing_style; |
Brice Goglin | 9f86669 | 2009-08-10 15:26:32 +0200 | [diff] [blame] | 45 | |
Frederic Weisbecker | 805d127 | 2009-07-05 07:39:21 +0200 | [diff] [blame] | 46 | static char callchain_default_opt[] = "fractal,0.5"; |
Arnaldo Carvalho de Melo | 0849327 | 2011-02-11 12:09:54 -0200 | [diff] [blame^] | 47 | static symbol_filter_t annotate_init; |
Frederic Weisbecker | 805d127 | 2009-07-05 07:39:21 +0200 | [diff] [blame] | 48 | |
Arnaldo Carvalho de Melo | 1c02c4d | 2010-05-10 13:04:11 -0300 | [diff] [blame] | 49 | static struct hists *perf_session__hists_findnew(struct perf_session *self, |
| 50 | u64 event_stream, u32 type, |
| 51 | u64 config) |
Eric B Munson | cbbc79a5 | 2010-03-05 12:51:09 -0300 | [diff] [blame] | 52 | { |
Arnaldo Carvalho de Melo | 1c02c4d | 2010-05-10 13:04:11 -0300 | [diff] [blame] | 53 | struct rb_node **p = &self->hists_tree.rb_node; |
Eric B Munson | cbbc79a5 | 2010-03-05 12:51:09 -0300 | [diff] [blame] | 54 | struct rb_node *parent = NULL; |
Arnaldo Carvalho de Melo | 1c02c4d | 2010-05-10 13:04:11 -0300 | [diff] [blame] | 55 | struct hists *iter, *new; |
Eric B Munson | cbbc79a5 | 2010-03-05 12:51:09 -0300 | [diff] [blame] | 56 | |
| 57 | while (*p != NULL) { |
| 58 | parent = *p; |
Arnaldo Carvalho de Melo | 1c02c4d | 2010-05-10 13:04:11 -0300 | [diff] [blame] | 59 | iter = rb_entry(parent, struct hists, rb_node); |
Eric B Munson | cbbc79a5 | 2010-03-05 12:51:09 -0300 | [diff] [blame] | 60 | if (iter->config == config) |
| 61 | return iter; |
| 62 | |
| 63 | |
| 64 | if (config > iter->config) |
| 65 | p = &(*p)->rb_right; |
| 66 | else |
| 67 | p = &(*p)->rb_left; |
| 68 | } |
| 69 | |
Arnaldo Carvalho de Melo | 1c02c4d | 2010-05-10 13:04:11 -0300 | [diff] [blame] | 70 | new = malloc(sizeof(struct hists)); |
Eric B Munson | cbbc79a5 | 2010-03-05 12:51:09 -0300 | [diff] [blame] | 71 | if (new == NULL) |
| 72 | return NULL; |
Arnaldo Carvalho de Melo | 1c02c4d | 2010-05-10 13:04:11 -0300 | [diff] [blame] | 73 | memset(new, 0, sizeof(struct hists)); |
Eric B Munson | cbbc79a5 | 2010-03-05 12:51:09 -0300 | [diff] [blame] | 74 | new->event_stream = event_stream; |
| 75 | new->config = config; |
| 76 | new->type = type; |
| 77 | rb_link_node(&new->rb_node, parent, p); |
Arnaldo Carvalho de Melo | 1c02c4d | 2010-05-10 13:04:11 -0300 | [diff] [blame] | 78 | rb_insert_color(&new->rb_node, &self->hists_tree); |
Eric B Munson | cbbc79a5 | 2010-03-05 12:51:09 -0300 | [diff] [blame] | 79 | return new; |
| 80 | } |
| 81 | |
Arnaldo Carvalho de Melo | 8d50e5b | 2011-01-29 13:02:00 -0200 | [diff] [blame] | 82 | static int perf_session__add_hist_entry(struct perf_session *session, |
Arnaldo Carvalho de Melo | 4e4f06e | 2009-12-14 13:10:39 -0200 | [diff] [blame] | 83 | struct addr_location *al, |
Arnaldo Carvalho de Melo | 8d50e5b | 2011-01-29 13:02:00 -0200 | [diff] [blame] | 84 | struct perf_sample *sample) |
Arnaldo Carvalho de Melo | 3a4b8cc | 2009-05-26 16:19:04 -0300 | [diff] [blame] | 85 | { |
Arnaldo Carvalho de Melo | b3c9ac0 | 2010-03-24 16:40:18 -0300 | [diff] [blame] | 86 | struct symbol *parent = NULL; |
Frederic Weisbecker | 1b3a0e9 | 2011-01-14 04:51:58 +0100 | [diff] [blame] | 87 | int err = 0; |
Peter Zijlstra | e7fb08b | 2009-05-27 20:20:24 +0200 | [diff] [blame] | 88 | struct hist_entry *he; |
Arnaldo Carvalho de Melo | 1c02c4d | 2010-05-10 13:04:11 -0300 | [diff] [blame] | 89 | struct hists *hists; |
Eric B Munson | cbbc79a5 | 2010-03-05 12:51:09 -0300 | [diff] [blame] | 90 | struct perf_event_attr *attr; |
Arnaldo Carvalho de Melo | 3a4b8cc | 2009-05-26 16:19:04 -0300 | [diff] [blame] | 91 | |
Arnaldo Carvalho de Melo | 8d50e5b | 2011-01-29 13:02:00 -0200 | [diff] [blame] | 92 | if ((sort__has_parent || symbol_conf.use_callchain) && sample->callchain) { |
| 93 | err = perf_session__resolve_callchain(session, al->thread, |
| 94 | sample->callchain, &parent); |
Frederic Weisbecker | 1b3a0e9 | 2011-01-14 04:51:58 +0100 | [diff] [blame] | 95 | if (err) |
| 96 | return err; |
Arnaldo Carvalho de Melo | ad5b217 | 2010-04-02 10:04:18 -0300 | [diff] [blame] | 97 | } |
Eric B Munson | cbbc79a5 | 2010-03-05 12:51:09 -0300 | [diff] [blame] | 98 | |
Arnaldo Carvalho de Melo | 8d50e5b | 2011-01-29 13:02:00 -0200 | [diff] [blame] | 99 | attr = perf_header__find_attr(sample->id, &session->header); |
Eric B Munson | cbbc79a5 | 2010-03-05 12:51:09 -0300 | [diff] [blame] | 100 | if (attr) |
Arnaldo Carvalho de Melo | 8d50e5b | 2011-01-29 13:02:00 -0200 | [diff] [blame] | 101 | hists = perf_session__hists_findnew(session, sample->id, attr->type, attr->config); |
Eric B Munson | cbbc79a5 | 2010-03-05 12:51:09 -0300 | [diff] [blame] | 102 | else |
Arnaldo Carvalho de Melo | 8d50e5b | 2011-01-29 13:02:00 -0200 | [diff] [blame] | 103 | hists = perf_session__hists_findnew(session, sample->id, 0, 0); |
Arnaldo Carvalho de Melo | 1c02c4d | 2010-05-10 13:04:11 -0300 | [diff] [blame] | 104 | if (hists == NULL) |
Frederic Weisbecker | 1b3a0e9 | 2011-01-14 04:51:58 +0100 | [diff] [blame] | 105 | return -ENOMEM; |
| 106 | |
Arnaldo Carvalho de Melo | 8d50e5b | 2011-01-29 13:02:00 -0200 | [diff] [blame] | 107 | he = __hists__add_entry(hists, al, parent, sample->period); |
Arnaldo Carvalho de Melo | 9735abf | 2009-10-03 10:42:45 -0300 | [diff] [blame] | 108 | if (he == NULL) |
Frederic Weisbecker | 1b3a0e9 | 2011-01-14 04:51:58 +0100 | [diff] [blame] | 109 | return -ENOMEM; |
| 110 | |
Arnaldo Carvalho de Melo | ef7b93a | 2010-05-11 23:18:06 -0300 | [diff] [blame] | 111 | if (symbol_conf.use_callchain) { |
Arnaldo Carvalho de Melo | 8d50e5b | 2011-01-29 13:02:00 -0200 | [diff] [blame] | 112 | err = callchain_append(he->callchain, &session->callchain_cursor, |
| 113 | sample->period); |
Arnaldo Carvalho de Melo | ef7b93a | 2010-05-11 23:18:06 -0300 | [diff] [blame] | 114 | if (err) |
Frederic Weisbecker | 1b3a0e9 | 2011-01-14 04:51:58 +0100 | [diff] [blame] | 115 | return err; |
Arnaldo Carvalho de Melo | ef7b93a | 2010-05-11 23:18:06 -0300 | [diff] [blame] | 116 | } |
| 117 | /* |
| 118 | * Only in the newt browser we are doing integrated annotation, |
| 119 | * so we don't allocated the extra space needed because the stdio |
| 120 | * code will not use it. |
| 121 | */ |
Arnaldo Carvalho de Melo | 2f525d0 | 2011-02-04 13:43:24 -0200 | [diff] [blame] | 122 | if (al->sym != NULL && use_browser > 0) { |
| 123 | /* |
| 124 | * All aggregated on the first sym_hist. |
| 125 | */ |
| 126 | struct annotation *notes = symbol__annotation(he->ms.sym); |
Arnaldo Carvalho de Melo | ce6f4fa | 2011-02-08 13:27:39 -0200 | [diff] [blame] | 127 | if (notes->src == NULL && |
Arnaldo Carvalho de Melo | 2f525d0 | 2011-02-04 13:43:24 -0200 | [diff] [blame] | 128 | symbol__alloc_hist(he->ms.sym, 1) < 0) |
| 129 | err = -ENOMEM; |
| 130 | else |
| 131 | err = hist_entry__inc_addr_samples(he, 0, al->addr); |
| 132 | } |
Frederic Weisbecker | 1b3a0e9 | 2011-01-14 04:51:58 +0100 | [diff] [blame] | 133 | |
Arnaldo Carvalho de Melo | 39d1e1b | 2010-05-09 12:01:05 -0300 | [diff] [blame] | 134 | return err; |
Arnaldo Carvalho de Melo | 3a4b8cc | 2009-05-26 16:19:04 -0300 | [diff] [blame] | 135 | } |
| 136 | |
Eric B Munson | cbbc79a5 | 2010-03-05 12:51:09 -0300 | [diff] [blame] | 137 | static int add_event_total(struct perf_session *session, |
Arnaldo Carvalho de Melo | 8d50e5b | 2011-01-29 13:02:00 -0200 | [diff] [blame] | 138 | struct perf_sample *sample, |
Eric B Munson | cbbc79a5 | 2010-03-05 12:51:09 -0300 | [diff] [blame] | 139 | struct perf_event_attr *attr) |
| 140 | { |
Arnaldo Carvalho de Melo | 1c02c4d | 2010-05-10 13:04:11 -0300 | [diff] [blame] | 141 | struct hists *hists; |
Eric B Munson | cbbc79a5 | 2010-03-05 12:51:09 -0300 | [diff] [blame] | 142 | |
| 143 | if (attr) |
Arnaldo Carvalho de Melo | 8d50e5b | 2011-01-29 13:02:00 -0200 | [diff] [blame] | 144 | hists = perf_session__hists_findnew(session, sample->id, |
Arnaldo Carvalho de Melo | 1c02c4d | 2010-05-10 13:04:11 -0300 | [diff] [blame] | 145 | attr->type, attr->config); |
Eric B Munson | cbbc79a5 | 2010-03-05 12:51:09 -0300 | [diff] [blame] | 146 | else |
Arnaldo Carvalho de Melo | 8d50e5b | 2011-01-29 13:02:00 -0200 | [diff] [blame] | 147 | hists = perf_session__hists_findnew(session, sample->id, 0, 0); |
Eric B Munson | cbbc79a5 | 2010-03-05 12:51:09 -0300 | [diff] [blame] | 148 | |
Arnaldo Carvalho de Melo | 1c02c4d | 2010-05-10 13:04:11 -0300 | [diff] [blame] | 149 | if (!hists) |
Eric B Munson | cbbc79a5 | 2010-03-05 12:51:09 -0300 | [diff] [blame] | 150 | return -ENOMEM; |
| 151 | |
Arnaldo Carvalho de Melo | 8d50e5b | 2011-01-29 13:02:00 -0200 | [diff] [blame] | 152 | hists->stats.total_period += sample->period; |
Arnaldo Carvalho de Melo | c8446b9 | 2010-05-14 10:36:42 -0300 | [diff] [blame] | 153 | /* |
| 154 | * FIXME: add_event_total should be moved from here to |
| 155 | * perf_session__process_event so that the proper hist is passed to |
| 156 | * the event_op methods. |
| 157 | */ |
| 158 | hists__inc_nr_events(hists, PERF_RECORD_SAMPLE); |
Arnaldo Carvalho de Melo | 8d50e5b | 2011-01-29 13:02:00 -0200 | [diff] [blame] | 159 | session->hists.stats.total_period += sample->period; |
Eric B Munson | cbbc79a5 | 2010-03-05 12:51:09 -0300 | [diff] [blame] | 160 | return 0; |
| 161 | } |
| 162 | |
Arnaldo Carvalho de Melo | 8115d60 | 2011-01-29 14:01:45 -0200 | [diff] [blame] | 163 | static int process_sample_event(union perf_event *event, |
| 164 | struct perf_sample *sample, |
Arnaldo Carvalho de Melo | 640c03c | 2010-12-02 14:10:21 -0200 | [diff] [blame] | 165 | struct perf_session *session) |
Ingo Molnar | 7505172 | 2009-06-03 23:14:49 +0200 | [diff] [blame] | 166 | { |
Arnaldo Carvalho de Melo | 1ed091c | 2009-11-27 16:29:23 -0200 | [diff] [blame] | 167 | struct addr_location al; |
Eric B Munson | cbbc79a5 | 2010-03-05 12:51:09 -0300 | [diff] [blame] | 168 | struct perf_event_attr *attr; |
OGAWA Hirofumi | 180f95e | 2009-12-06 20:08:24 +0900 | [diff] [blame] | 169 | |
Arnaldo Carvalho de Melo | ce6f4fa | 2011-02-08 13:27:39 -0200 | [diff] [blame] | 170 | if (perf_event__preprocess_sample(event, session, &al, sample, |
Arnaldo Carvalho de Melo | 0849327 | 2011-02-11 12:09:54 -0200 | [diff] [blame^] | 171 | annotate_init) < 0) { |
Arnaldo Carvalho de Melo | c410a33 | 2009-12-15 20:04:41 -0200 | [diff] [blame] | 172 | fprintf(stderr, "problem processing %d event, skipping it.\n", |
Ingo Molnar | 7505172 | 2009-06-03 23:14:49 +0200 | [diff] [blame] | 173 | event->header.type); |
| 174 | return -1; |
| 175 | } |
| 176 | |
Arnaldo Carvalho de Melo | 71289be | 2009-12-28 22:48:34 -0200 | [diff] [blame] | 177 | if (al.filtered || (hide_unresolved && al.sym == NULL)) |
Arnaldo Carvalho de Melo | ec218fc | 2009-10-03 20:30:48 -0300 | [diff] [blame] | 178 | return 0; |
Arnaldo Carvalho de Melo | 7bec7a9 | 2009-06-30 19:01:22 -0300 | [diff] [blame] | 179 | |
Arnaldo Carvalho de Melo | 640c03c | 2010-12-02 14:10:21 -0200 | [diff] [blame] | 180 | if (perf_session__add_hist_entry(session, &al, sample)) { |
Arnaldo Carvalho de Melo | c82ee82 | 2010-05-14 14:19:35 -0300 | [diff] [blame] | 181 | pr_debug("problem incrementing symbol period, skipping event\n"); |
Arnaldo Carvalho de Melo | ec218fc | 2009-10-03 20:30:48 -0300 | [diff] [blame] | 182 | return -1; |
Ingo Molnar | 7505172 | 2009-06-03 23:14:49 +0200 | [diff] [blame] | 183 | } |
Arnaldo Carvalho de Melo | ec218fc | 2009-10-03 20:30:48 -0300 | [diff] [blame] | 184 | |
Arnaldo Carvalho de Melo | 640c03c | 2010-12-02 14:10:21 -0200 | [diff] [blame] | 185 | attr = perf_header__find_attr(sample->id, &session->header); |
Eric B Munson | cbbc79a5 | 2010-03-05 12:51:09 -0300 | [diff] [blame] | 186 | |
Arnaldo Carvalho de Melo | 640c03c | 2010-12-02 14:10:21 -0200 | [diff] [blame] | 187 | if (add_event_total(session, sample, attr)) { |
Arnaldo Carvalho de Melo | c82ee82 | 2010-05-14 14:19:35 -0300 | [diff] [blame] | 188 | pr_debug("problem adding event period\n"); |
Eric B Munson | cbbc79a5 | 2010-03-05 12:51:09 -0300 | [diff] [blame] | 189 | return -1; |
| 190 | } |
| 191 | |
Ingo Molnar | 7505172 | 2009-06-03 23:14:49 +0200 | [diff] [blame] | 192 | return 0; |
| 193 | } |
| 194 | |
Arnaldo Carvalho de Melo | 8115d60 | 2011-01-29 14:01:45 -0200 | [diff] [blame] | 195 | static int process_read_event(union perf_event *event, |
| 196 | struct perf_sample *sample __used, |
Arnaldo Carvalho de Melo | 640c03c | 2010-12-02 14:10:21 -0200 | [diff] [blame] | 197 | struct perf_session *session __used) |
Peter Zijlstra | e9ea2fd | 2009-06-24 22:46:04 +0200 | [diff] [blame] | 198 | { |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 199 | struct perf_event_attr *attr; |
Frederic Weisbecker | 0d3a5c8 | 2009-08-16 20:56:37 +0200 | [diff] [blame] | 200 | |
Arnaldo Carvalho de Melo | 94c744b | 2009-12-11 21:24:02 -0200 | [diff] [blame] | 201 | attr = perf_header__find_attr(event->read.id, &session->header); |
Peter Zijlstra | 8f18aec | 2009-08-06 19:40:28 +0200 | [diff] [blame] | 202 | |
Brice Goglin | 8d51327 | 2009-08-07 13:55:24 +0200 | [diff] [blame] | 203 | if (show_threads) { |
Ingo Molnar | 83a0944 | 2009-08-15 12:26:57 +0200 | [diff] [blame] | 204 | const char *name = attr ? __event_name(attr->type, attr->config) |
Brice Goglin | 8d51327 | 2009-08-07 13:55:24 +0200 | [diff] [blame] | 205 | : "unknown"; |
| 206 | perf_read_values_add_value(&show_threads_values, |
| 207 | event->read.pid, event->read.tid, |
| 208 | event->read.id, |
| 209 | name, |
| 210 | event->read.value); |
| 211 | } |
| 212 | |
Arnaldo Carvalho de Melo | 9486aa3 | 2011-01-22 20:37:02 -0200 | [diff] [blame] | 213 | dump_printf(": %d %d %s %" PRIu64 "\n", event->read.pid, event->read.tid, |
Arnaldo Carvalho de Melo | 62daacb | 2009-11-27 16:29:22 -0200 | [diff] [blame] | 214 | attr ? __event_name(attr->type, attr->config) : "FAIL", |
| 215 | event->read.value); |
Peter Zijlstra | e9ea2fd | 2009-06-24 22:46:04 +0200 | [diff] [blame] | 216 | |
| 217 | return 0; |
| 218 | } |
| 219 | |
Arnaldo Carvalho de Melo | d549c769 | 2009-12-27 21:37:02 -0200 | [diff] [blame] | 220 | static int perf_session__setup_sample_type(struct perf_session *self) |
Arnaldo Carvalho de Melo | 8fa66bd | 2009-05-18 12:45:42 -0300 | [diff] [blame] | 221 | { |
Arnaldo Carvalho de Melo | d549c769 | 2009-12-27 21:37:02 -0200 | [diff] [blame] | 222 | if (!(self->sample_type & PERF_SAMPLE_CALLCHAIN)) { |
Frederic Weisbecker | 016e92f | 2009-10-07 12:47:31 +0200 | [diff] [blame] | 223 | if (sort__has_parent) { |
| 224 | fprintf(stderr, "selected --sort parent, but no" |
| 225 | " callchain data. Did you call" |
| 226 | " perf record without -g?\n"); |
Arnaldo Carvalho de Melo | d549c769 | 2009-12-27 21:37:02 -0200 | [diff] [blame] | 227 | return -EINVAL; |
Frederic Weisbecker | 016e92f | 2009-10-07 12:47:31 +0200 | [diff] [blame] | 228 | } |
Arnaldo Carvalho de Melo | d599db3 | 2009-12-15 20:04:42 -0200 | [diff] [blame] | 229 | if (symbol_conf.use_callchain) { |
Frederic Weisbecker | 016e92f | 2009-10-07 12:47:31 +0200 | [diff] [blame] | 230 | fprintf(stderr, "selected -g but no callchain data." |
| 231 | " Did you call perf record without" |
| 232 | " -g?\n"); |
| 233 | return -1; |
| 234 | } |
Arnaldo Carvalho de Melo | b9a63b9 | 2010-01-05 11:54:45 -0200 | [diff] [blame] | 235 | } else if (!dont_use_callchains && callchain_param.mode != CHAIN_NONE && |
| 236 | !symbol_conf.use_callchain) { |
Arnaldo Carvalho de Melo | d599db3 | 2009-12-15 20:04:42 -0200 | [diff] [blame] | 237 | symbol_conf.use_callchain = true; |
Frederic Weisbecker | 16537f1 | 2011-01-14 04:52:00 +0100 | [diff] [blame] | 238 | if (callchain_register_param(&callchain_param) < 0) { |
Frederic Weisbecker | 016e92f | 2009-10-07 12:47:31 +0200 | [diff] [blame] | 239 | fprintf(stderr, "Can't register callchain" |
| 240 | " params\n"); |
Arnaldo Carvalho de Melo | d549c769 | 2009-12-27 21:37:02 -0200 | [diff] [blame] | 241 | return -EINVAL; |
Frederic Weisbecker | 016e92f | 2009-10-07 12:47:31 +0200 | [diff] [blame] | 242 | } |
Ingo Molnar | d80d338 | 2009-06-03 23:14:49 +0200 | [diff] [blame] | 243 | } |
| 244 | |
| 245 | return 0; |
| 246 | } |
| 247 | |
Arnaldo Carvalho de Melo | 301a0b0 | 2009-12-13 19:50:25 -0200 | [diff] [blame] | 248 | static struct perf_event_ops event_ops = { |
Arnaldo Carvalho de Melo | 8115d60 | 2011-01-29 14:01:45 -0200 | [diff] [blame] | 249 | .sample = process_sample_event, |
| 250 | .mmap = perf_event__process_mmap, |
| 251 | .comm = perf_event__process_comm, |
| 252 | .exit = perf_event__process_task, |
| 253 | .fork = perf_event__process_task, |
| 254 | .lost = perf_event__process_lost, |
| 255 | .read = process_read_event, |
| 256 | .attr = perf_event__process_attr, |
| 257 | .event_type = perf_event__process_event_type, |
| 258 | .tracing_data = perf_event__process_tracing_data, |
| 259 | .build_id = perf_event__process_build_id, |
Ian Munsie | eac23d1 | 2010-12-09 16:33:53 +1100 | [diff] [blame] | 260 | .ordered_samples = true, |
| 261 | .ordering_requires_timestamps = true, |
Frederic Weisbecker | 016e92f | 2009-10-07 12:47:31 +0200 | [diff] [blame] | 262 | }; |
| 263 | |
Tom Zanussi | 46656ac | 2010-04-01 23:59:17 -0500 | [diff] [blame] | 264 | extern volatile int session_done; |
| 265 | |
Arnaldo Carvalho de Melo | c82ee82 | 2010-05-14 14:19:35 -0300 | [diff] [blame] | 266 | static void sig_handler(int sig __used) |
Tom Zanussi | 46656ac | 2010-04-01 23:59:17 -0500 | [diff] [blame] | 267 | { |
| 268 | session_done = 1; |
| 269 | } |
| 270 | |
Arnaldo Carvalho de Melo | c82ee82 | 2010-05-14 14:19:35 -0300 | [diff] [blame] | 271 | static size_t hists__fprintf_nr_sample_events(struct hists *self, |
| 272 | const char *evname, FILE *fp) |
| 273 | { |
| 274 | size_t ret; |
| 275 | char unit; |
| 276 | unsigned long nr_events = self->stats.nr_events[PERF_RECORD_SAMPLE]; |
| 277 | |
| 278 | nr_events = convert_unit(nr_events, &unit); |
| 279 | ret = fprintf(fp, "# Events: %lu%c", nr_events, unit); |
| 280 | if (evname != NULL) |
| 281 | ret += fprintf(fp, " %s", evname); |
| 282 | return ret + fprintf(fp, "\n#\n"); |
| 283 | } |
| 284 | |
Arnaldo Carvalho de Melo | d67f088 | 2010-05-23 22:36:51 -0300 | [diff] [blame] | 285 | static int hists__tty_browse_tree(struct rb_root *tree, const char *help) |
| 286 | { |
| 287 | struct rb_node *next = rb_first(tree); |
| 288 | |
| 289 | while (next) { |
| 290 | struct hists *hists = rb_entry(next, struct hists, rb_node); |
| 291 | const char *evname = NULL; |
| 292 | |
| 293 | if (rb_first(&hists->entries) != rb_last(&hists->entries)) |
| 294 | evname = __event_name(hists->type, hists->config); |
| 295 | |
| 296 | hists__fprintf_nr_sample_events(hists, evname, stdout); |
| 297 | hists__fprintf(hists, NULL, false, stdout); |
| 298 | fprintf(stdout, "\n\n"); |
| 299 | next = rb_next(&hists->rb_node); |
| 300 | } |
| 301 | |
| 302 | if (sort_order == default_sort_order && |
| 303 | parent_pattern == default_parent_pattern) { |
| 304 | fprintf(stdout, "#\n# (%s)\n#\n", help); |
| 305 | |
| 306 | if (show_threads) { |
| 307 | bool style = !strcmp(pretty_printing_style, "raw"); |
| 308 | perf_read_values_display(stdout, &show_threads_values, |
| 309 | style); |
| 310 | perf_read_values_destroy(&show_threads_values); |
| 311 | } |
| 312 | } |
| 313 | |
| 314 | return 0; |
| 315 | } |
| 316 | |
Ingo Molnar | d80d338 | 2009-06-03 23:14:49 +0200 | [diff] [blame] | 317 | static int __cmd_report(void) |
| 318 | { |
Arnaldo Carvalho de Melo | d549c769 | 2009-12-27 21:37:02 -0200 | [diff] [blame] | 319 | int ret = -EINVAL; |
Arnaldo Carvalho de Melo | d8f6624 | 2009-12-13 19:50:24 -0200 | [diff] [blame] | 320 | struct perf_session *session; |
Eric B Munson | cbbc79a5 | 2010-03-05 12:51:09 -0300 | [diff] [blame] | 321 | struct rb_node *next; |
Arnaldo Carvalho de Melo | f9224c5 | 2010-03-11 20:12:44 -0300 | [diff] [blame] | 322 | const char *help = "For a higher level overview, try: perf report --sort comm,dso"; |
Ingo Molnar | d80d338 | 2009-06-03 23:14:49 +0200 | [diff] [blame] | 323 | |
Tom Zanussi | 46656ac | 2010-04-01 23:59:17 -0500 | [diff] [blame] | 324 | signal(SIGINT, sig_handler); |
| 325 | |
Ian Munsie | 21ef97f | 2010-12-10 14:09:16 +1100 | [diff] [blame] | 326 | session = perf_session__new(input_name, O_RDONLY, force, false, &event_ops); |
Arnaldo Carvalho de Melo | 94c744b | 2009-12-11 21:24:02 -0200 | [diff] [blame] | 327 | if (session == NULL) |
| 328 | return -ENOMEM; |
| 329 | |
Brice Goglin | 8d51327 | 2009-08-07 13:55:24 +0200 | [diff] [blame] | 330 | if (show_threads) |
| 331 | perf_read_values_init(&show_threads_values); |
| 332 | |
Arnaldo Carvalho de Melo | d549c769 | 2009-12-27 21:37:02 -0200 | [diff] [blame] | 333 | ret = perf_session__setup_sample_type(session); |
| 334 | if (ret) |
| 335 | goto out_delete; |
| 336 | |
Arnaldo Carvalho de Melo | ec91336 | 2009-12-13 19:50:27 -0200 | [diff] [blame] | 337 | ret = perf_session__process_events(session, &event_ops); |
Frederic Weisbecker | 016e92f | 2009-10-07 12:47:31 +0200 | [diff] [blame] | 338 | if (ret) |
Arnaldo Carvalho de Melo | 94c744b | 2009-12-11 21:24:02 -0200 | [diff] [blame] | 339 | goto out_delete; |
Ingo Molnar | 97b07b6 | 2009-05-26 18:48:58 +0200 | [diff] [blame] | 340 | |
Arnaldo Carvalho de Melo | 62daacb | 2009-11-27 16:29:22 -0200 | [diff] [blame] | 341 | if (dump_trace) { |
Arnaldo Carvalho de Melo | c8446b9 | 2010-05-14 10:36:42 -0300 | [diff] [blame] | 342 | perf_session__fprintf_nr_events(session, stdout); |
Arnaldo Carvalho de Melo | 94c744b | 2009-12-11 21:24:02 -0200 | [diff] [blame] | 343 | goto out_delete; |
Arnaldo Carvalho de Melo | 62daacb | 2009-11-27 16:29:22 -0200 | [diff] [blame] | 344 | } |
Ingo Molnar | 97b07b6 | 2009-05-26 18:48:58 +0200 | [diff] [blame] | 345 | |
Arnaldo Carvalho de Melo | da21d1b | 2009-10-07 10:49:00 -0300 | [diff] [blame] | 346 | if (verbose > 3) |
Arnaldo Carvalho de Melo | b3165f4 | 2009-12-13 19:50:28 -0200 | [diff] [blame] | 347 | perf_session__fprintf(session, stdout); |
Arnaldo Carvalho de Melo | 9ac9954 | 2009-06-04 13:54:00 -0300 | [diff] [blame] | 348 | |
Arnaldo Carvalho de Melo | da21d1b | 2009-10-07 10:49:00 -0300 | [diff] [blame] | 349 | if (verbose > 2) |
Arnaldo Carvalho de Melo | cbf6968 | 2010-04-27 21:22:44 -0300 | [diff] [blame] | 350 | perf_session__fprintf_dsos(session, stdout); |
Ingo Molnar | 16f762a | 2009-05-27 09:10:38 +0200 | [diff] [blame] | 351 | |
Arnaldo Carvalho de Melo | 1c02c4d | 2010-05-10 13:04:11 -0300 | [diff] [blame] | 352 | next = rb_first(&session->hists_tree); |
Eric B Munson | cbbc79a5 | 2010-03-05 12:51:09 -0300 | [diff] [blame] | 353 | while (next) { |
Arnaldo Carvalho de Melo | 1c02c4d | 2010-05-10 13:04:11 -0300 | [diff] [blame] | 354 | struct hists *hists; |
Eric B Munson | cbbc79a5 | 2010-03-05 12:51:09 -0300 | [diff] [blame] | 355 | |
Arnaldo Carvalho de Melo | 1c02c4d | 2010-05-10 13:04:11 -0300 | [diff] [blame] | 356 | hists = rb_entry(next, struct hists, rb_node); |
| 357 | hists__collapse_resort(hists); |
Arnaldo Carvalho de Melo | fefb0b9 | 2010-05-10 13:57:51 -0300 | [diff] [blame] | 358 | hists__output_resort(hists); |
Arnaldo Carvalho de Melo | 1c02c4d | 2010-05-10 13:04:11 -0300 | [diff] [blame] | 359 | next = rb_next(&hists->rb_node); |
Eric B Munson | cbbc79a5 | 2010-03-05 12:51:09 -0300 | [diff] [blame] | 360 | } |
| 361 | |
Arnaldo Carvalho de Melo | d67f088 | 2010-05-23 22:36:51 -0300 | [diff] [blame] | 362 | if (use_browser > 0) |
Arnaldo Carvalho de Melo | 2f525d0 | 2011-02-04 13:43:24 -0200 | [diff] [blame] | 363 | hists__tui_browse_tree(&session->hists_tree, help, 0); |
Arnaldo Carvalho de Melo | d67f088 | 2010-05-23 22:36:51 -0300 | [diff] [blame] | 364 | else |
| 365 | hists__tty_browse_tree(&session->hists_tree, help); |
Arnaldo Carvalho de Melo | 3e6055a | 2009-12-16 12:27:10 -0200 | [diff] [blame] | 366 | |
Arnaldo Carvalho de Melo | 94c744b | 2009-12-11 21:24:02 -0200 | [diff] [blame] | 367 | out_delete: |
Arnaldo Carvalho de Melo | 71e7cf3 | 2010-08-05 19:41:44 -0300 | [diff] [blame] | 368 | /* |
| 369 | * Speed up the exit process, for large files this can |
| 370 | * take quite a while. |
| 371 | * |
| 372 | * XXX Enable this when using valgrind or if we ever |
| 373 | * librarize this command. |
| 374 | * |
| 375 | * Also experiment with obstacks to see how much speed |
| 376 | * up we'll get here. |
| 377 | * |
| 378 | * perf_session__delete(session); |
| 379 | */ |
Frederic Weisbecker | 016e92f | 2009-10-07 12:47:31 +0200 | [diff] [blame] | 380 | return ret; |
Arnaldo Carvalho de Melo | 8fa66bd | 2009-05-18 12:45:42 -0300 | [diff] [blame] | 381 | } |
| 382 | |
Frederic Weisbecker | 4eb3e47 | 2009-07-02 17:58:21 +0200 | [diff] [blame] | 383 | static int |
| 384 | parse_callchain_opt(const struct option *opt __used, const char *arg, |
Arnaldo Carvalho de Melo | b9a63b9 | 2010-01-05 11:54:45 -0200 | [diff] [blame] | 385 | int unset) |
Frederic Weisbecker | 4eb3e47 | 2009-07-02 17:58:21 +0200 | [diff] [blame] | 386 | { |
Arnaldo Carvalho de Melo | 232a5c9 | 2010-05-09 20:28:10 -0300 | [diff] [blame] | 387 | char *tok, *tok2; |
Frederic Weisbecker | c20ab37 | 2009-07-02 20:14:33 +0200 | [diff] [blame] | 388 | char *endptr; |
| 389 | |
Arnaldo Carvalho de Melo | b9a63b9 | 2010-01-05 11:54:45 -0200 | [diff] [blame] | 390 | /* |
| 391 | * --no-call-graph |
| 392 | */ |
| 393 | if (unset) { |
| 394 | dont_use_callchains = true; |
| 395 | return 0; |
| 396 | } |
| 397 | |
Arnaldo Carvalho de Melo | d599db3 | 2009-12-15 20:04:42 -0200 | [diff] [blame] | 398 | symbol_conf.use_callchain = true; |
Frederic Weisbecker | 4eb3e47 | 2009-07-02 17:58:21 +0200 | [diff] [blame] | 399 | |
| 400 | if (!arg) |
| 401 | return 0; |
| 402 | |
Frederic Weisbecker | c20ab37 | 2009-07-02 20:14:33 +0200 | [diff] [blame] | 403 | tok = strtok((char *)arg, ","); |
| 404 | if (!tok) |
| 405 | return -1; |
| 406 | |
| 407 | /* get the output mode */ |
| 408 | if (!strncmp(tok, "graph", strlen(arg))) |
Frederic Weisbecker | 805d127 | 2009-07-05 07:39:21 +0200 | [diff] [blame] | 409 | callchain_param.mode = CHAIN_GRAPH_ABS; |
Frederic Weisbecker | 4eb3e47 | 2009-07-02 17:58:21 +0200 | [diff] [blame] | 410 | |
Frederic Weisbecker | c20ab37 | 2009-07-02 20:14:33 +0200 | [diff] [blame] | 411 | else if (!strncmp(tok, "flat", strlen(arg))) |
Frederic Weisbecker | 805d127 | 2009-07-05 07:39:21 +0200 | [diff] [blame] | 412 | callchain_param.mode = CHAIN_FLAT; |
| 413 | |
| 414 | else if (!strncmp(tok, "fractal", strlen(arg))) |
| 415 | callchain_param.mode = CHAIN_GRAPH_REL; |
| 416 | |
Frederic Weisbecker | b1a8834 | 2009-08-08 02:16:24 +0200 | [diff] [blame] | 417 | else if (!strncmp(tok, "none", strlen(arg))) { |
| 418 | callchain_param.mode = CHAIN_NONE; |
Yong Wang | b7ae11b | 2010-01-22 09:47:50 +0800 | [diff] [blame] | 419 | symbol_conf.use_callchain = false; |
Frederic Weisbecker | b1a8834 | 2009-08-08 02:16:24 +0200 | [diff] [blame] | 420 | |
| 421 | return 0; |
| 422 | } |
| 423 | |
Frederic Weisbecker | 4eb3e47 | 2009-07-02 17:58:21 +0200 | [diff] [blame] | 424 | else |
| 425 | return -1; |
| 426 | |
Frederic Weisbecker | c20ab37 | 2009-07-02 20:14:33 +0200 | [diff] [blame] | 427 | /* get the min percentage */ |
| 428 | tok = strtok(NULL, ","); |
| 429 | if (!tok) |
Frederic Weisbecker | 805d127 | 2009-07-05 07:39:21 +0200 | [diff] [blame] | 430 | goto setup; |
Frederic Weisbecker | c20ab37 | 2009-07-02 20:14:33 +0200 | [diff] [blame] | 431 | |
Arnaldo Carvalho de Melo | 232a5c9 | 2010-05-09 20:28:10 -0300 | [diff] [blame] | 432 | tok2 = strtok(NULL, ","); |
Frederic Weisbecker | 805d127 | 2009-07-05 07:39:21 +0200 | [diff] [blame] | 433 | callchain_param.min_percent = strtod(tok, &endptr); |
Frederic Weisbecker | c20ab37 | 2009-07-02 20:14:33 +0200 | [diff] [blame] | 434 | if (tok == endptr) |
| 435 | return -1; |
| 436 | |
Arnaldo Carvalho de Melo | 232a5c9 | 2010-05-09 20:28:10 -0300 | [diff] [blame] | 437 | if (tok2) |
| 438 | callchain_param.print_limit = strtod(tok2, &endptr); |
Frederic Weisbecker | 805d127 | 2009-07-05 07:39:21 +0200 | [diff] [blame] | 439 | setup: |
Frederic Weisbecker | 16537f1 | 2011-01-14 04:52:00 +0100 | [diff] [blame] | 440 | if (callchain_register_param(&callchain_param) < 0) { |
Frederic Weisbecker | 805d127 | 2009-07-05 07:39:21 +0200 | [diff] [blame] | 441 | fprintf(stderr, "Can't register callchain params\n"); |
| 442 | return -1; |
| 443 | } |
Frederic Weisbecker | 4eb3e47 | 2009-07-02 17:58:21 +0200 | [diff] [blame] | 444 | return 0; |
| 445 | } |
| 446 | |
Arnaldo Carvalho de Melo | 0422a4f | 2009-12-18 16:35:58 -0200 | [diff] [blame] | 447 | static const char * const report_usage[] = { |
Ingo Molnar | 53cb8bc | 2009-05-26 09:17:18 +0200 | [diff] [blame] | 448 | "perf report [<options>] <command>", |
| 449 | NULL |
| 450 | }; |
| 451 | |
| 452 | static const struct option options[] = { |
| 453 | OPT_STRING('i', "input", &input_name, "file", |
| 454 | "input file name"), |
Ian Munsie | c055564 | 2010-04-13 18:37:33 +1000 | [diff] [blame] | 455 | OPT_INCR('v', "verbose", &verbose, |
Arnaldo Carvalho de Melo | 815e777 | 2009-05-26 19:46:14 -0300 | [diff] [blame] | 456 | "be more verbose (show symbol address, etc)"), |
Ingo Molnar | 97b07b6 | 2009-05-26 18:48:58 +0200 | [diff] [blame] | 457 | OPT_BOOLEAN('D', "dump-raw-trace", &dump_trace, |
| 458 | "dump raw trace in ASCII"), |
Arnaldo Carvalho de Melo | b32d133 | 2009-11-24 12:05:15 -0200 | [diff] [blame] | 459 | OPT_STRING('k', "vmlinux", &symbol_conf.vmlinux_name, |
| 460 | "file", "vmlinux pathname"), |
David Ahern | b226a5a7 | 2010-12-07 19:39:46 -0700 | [diff] [blame] | 461 | OPT_STRING(0, "kallsyms", &symbol_conf.kallsyms_name, |
| 462 | "file", "kallsyms pathname"), |
Peter Zijlstra | fa6963b | 2009-08-19 11:18:26 +0200 | [diff] [blame] | 463 | OPT_BOOLEAN('f', "force", &force, "don't complain, do it"), |
Arnaldo Carvalho de Melo | b32d133 | 2009-11-24 12:05:15 -0200 | [diff] [blame] | 464 | OPT_BOOLEAN('m', "modules", &symbol_conf.use_modules, |
Mike Galbraith | 4297648 | 2009-07-02 08:09:46 +0200 | [diff] [blame] | 465 | "load module symbols - WARNING: use only with -k and LIVE kernel"), |
Arnaldo Carvalho de Melo | d599db3 | 2009-12-15 20:04:42 -0200 | [diff] [blame] | 466 | OPT_BOOLEAN('n', "show-nr-samples", &symbol_conf.show_nr_samples, |
Arnaldo Carvalho de Melo | e3d7e18 | 2009-07-11 12:18:37 -0300 | [diff] [blame] | 467 | "Show a column with the number of samples"), |
Brice Goglin | 8d51327 | 2009-08-07 13:55:24 +0200 | [diff] [blame] | 468 | OPT_BOOLEAN('T', "threads", &show_threads, |
| 469 | "Show per-thread event counters"), |
Brice Goglin | 9f86669 | 2009-08-10 15:26:32 +0200 | [diff] [blame] | 470 | OPT_STRING(0, "pretty", &pretty_printing_style, "key", |
| 471 | "pretty printing style key: normal raw"), |
Arnaldo Carvalho de Melo | 8b9e74e | 2010-08-21 10:38:16 -0300 | [diff] [blame] | 472 | OPT_BOOLEAN(0, "tui", &use_tui, "Use the TUI interface"), |
| 473 | OPT_BOOLEAN(0, "stdio", &use_stdio, "Use the stdio interface"), |
Ingo Molnar | 63299f0 | 2009-05-28 10:52:00 +0200 | [diff] [blame] | 474 | OPT_STRING('s', "sort", &sort_order, "key[,key2...]", |
Ingo Molnar | b25bcf2 | 2009-06-18 07:01:03 +0200 | [diff] [blame] | 475 | "sort by key(s): pid, comm, dso, symbol, parent"), |
Zhang, Yanmin | a1645ce | 2010-04-19 13:32:50 +0800 | [diff] [blame] | 476 | OPT_BOOLEAN(0, "showcpuutilization", &symbol_conf.show_cpu_utilization, |
| 477 | "Show sample percentage for different cpu modes"), |
Ingo Molnar | b25bcf2 | 2009-06-18 07:01:03 +0200 | [diff] [blame] | 478 | OPT_STRING('p', "parent", &parent_pattern, "regex", |
| 479 | "regex filter to identify parent, see: '--sort parent'"), |
Arnaldo Carvalho de Melo | d599db3 | 2009-12-15 20:04:42 -0200 | [diff] [blame] | 480 | OPT_BOOLEAN('x', "exclude-other", &symbol_conf.exclude_other, |
Ingo Molnar | b8e6d82 | 2009-06-18 14:32:19 +0200 | [diff] [blame] | 481 | "Only display entries with parent-match"), |
Anton Blanchard | 1483b19f | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 482 | OPT_CALLBACK_DEFAULT('g', "call-graph", NULL, "output_type,min_percent", |
Pekka Enberg | e157eb8 | 2010-05-08 18:33:03 +0300 | [diff] [blame] | 483 | "Display callchains using output_type (graph, flat, fractal, or none) and min percent threshold. " |
Anton Blanchard | 1483b19f | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 484 | "Default: fractal,0.5", &parse_callchain_opt, callchain_default_opt), |
Arnaldo Carvalho de Melo | 655000e | 2009-12-15 20:04:40 -0200 | [diff] [blame] | 485 | OPT_STRING('d', "dsos", &symbol_conf.dso_list_str, "dso[,dso...]", |
Arnaldo Carvalho de Melo | 2590340 | 2009-06-30 19:01:20 -0300 | [diff] [blame] | 486 | "only consider symbols in these dsos"), |
Arnaldo Carvalho de Melo | 655000e | 2009-12-15 20:04:40 -0200 | [diff] [blame] | 487 | OPT_STRING('C', "comms", &symbol_conf.comm_list_str, "comm[,comm...]", |
Arnaldo Carvalho de Melo | cc8b88b | 2009-06-30 19:01:21 -0300 | [diff] [blame] | 488 | "only consider symbols in these comms"), |
Arnaldo Carvalho de Melo | 655000e | 2009-12-15 20:04:40 -0200 | [diff] [blame] | 489 | OPT_STRING('S', "symbols", &symbol_conf.sym_list_str, "symbol[,symbol...]", |
Arnaldo Carvalho de Melo | 7bec7a9 | 2009-06-30 19:01:22 -0300 | [diff] [blame] | 490 | "only consider these symbols"), |
Arnaldo Carvalho de Melo | 655000e | 2009-12-15 20:04:40 -0200 | [diff] [blame] | 491 | OPT_STRING('w', "column-widths", &symbol_conf.col_width_list_str, |
Arnaldo Carvalho de Melo | 52d422d | 2009-07-10 22:47:28 -0300 | [diff] [blame] | 492 | "width[,width...]", |
| 493 | "don't try to adjust column width, use these fixed values"), |
Arnaldo Carvalho de Melo | c410a33 | 2009-12-15 20:04:41 -0200 | [diff] [blame] | 494 | OPT_STRING('t', "field-separator", &symbol_conf.field_sep, "separator", |
Arnaldo Carvalho de Melo | 52d422d | 2009-07-10 22:47:28 -0300 | [diff] [blame] | 495 | "separator for columns, no spaces will be added between " |
| 496 | "columns '.' is reserved."), |
Arnaldo Carvalho de Melo | 71289be | 2009-12-28 22:48:34 -0200 | [diff] [blame] | 497 | OPT_BOOLEAN('U', "hide-unresolved", &hide_unresolved, |
| 498 | "Only display entries resolved to a symbol"), |
David Ahern | ec5761e | 2010-12-09 13:27:07 -0700 | [diff] [blame] | 499 | OPT_STRING(0, "symfs", &symbol_conf.symfs, "directory", |
| 500 | "Look for files with symbols relative to this directory"), |
Ingo Molnar | 53cb8bc | 2009-05-26 09:17:18 +0200 | [diff] [blame] | 501 | OPT_END() |
| 502 | }; |
| 503 | |
Ingo Molnar | f37a291 | 2009-07-01 12:37:06 +0200 | [diff] [blame] | 504 | int cmd_report(int argc, const char **argv, const char *prefix __used) |
Ingo Molnar | 53cb8bc | 2009-05-26 09:17:18 +0200 | [diff] [blame] | 505 | { |
Arnaldo Carvalho de Melo | 655000e | 2009-12-15 20:04:40 -0200 | [diff] [blame] | 506 | argc = parse_options(argc, argv, options, report_usage, 0); |
| 507 | |
Arnaldo Carvalho de Melo | 8b9e74e | 2010-08-21 10:38:16 -0300 | [diff] [blame] | 508 | if (use_stdio) |
| 509 | use_browser = 0; |
| 510 | else if (use_tui) |
| 511 | use_browser = 1; |
| 512 | |
Tom Zanussi | 46656ac | 2010-04-01 23:59:17 -0500 | [diff] [blame] | 513 | if (strcmp(input_name, "-") != 0) |
Arnaldo Carvalho de Melo | 229ade9 | 2011-01-31 18:08:39 -0200 | [diff] [blame] | 514 | setup_browser(true); |
Arnaldo Carvalho de Melo | 8b9e74e | 2010-08-21 10:38:16 -0300 | [diff] [blame] | 515 | else |
| 516 | use_browser = 0; |
Arnaldo Carvalho de Melo | ef7b93a | 2010-05-11 23:18:06 -0300 | [diff] [blame] | 517 | /* |
| 518 | * Only in the newt browser we are doing integrated annotation, |
| 519 | * so don't allocate extra space that won't be used in the stdio |
| 520 | * implementation. |
| 521 | */ |
Arnaldo Carvalho de Melo | 80d50ca | 2010-08-05 19:28:27 -0300 | [diff] [blame] | 522 | if (use_browser > 0) { |
Arnaldo Carvalho de Melo | 78f7def | 2011-02-04 09:45:46 -0200 | [diff] [blame] | 523 | symbol_conf.priv_size = sizeof(struct annotation); |
Arnaldo Carvalho de Melo | 0849327 | 2011-02-11 12:09:54 -0200 | [diff] [blame^] | 524 | annotate_init = symbol__annotate_init; |
Arnaldo Carvalho de Melo | 80d50ca | 2010-08-05 19:28:27 -0300 | [diff] [blame] | 525 | /* |
| 526 | * For searching by name on the "Browse map details". |
| 527 | * providing it only in verbose mode not to bloat too |
| 528 | * much struct symbol. |
| 529 | */ |
| 530 | if (verbose) { |
| 531 | /* |
| 532 | * XXX: Need to provide a less kludgy way to ask for |
| 533 | * more space per symbol, the u32 is for the index on |
| 534 | * the ui browser. |
| 535 | * See symbol__browser_index. |
| 536 | */ |
| 537 | symbol_conf.priv_size += sizeof(u32); |
| 538 | symbol_conf.sort_by_name = true; |
| 539 | } |
| 540 | } |
Arnaldo Carvalho de Melo | 655000e | 2009-12-15 20:04:40 -0200 | [diff] [blame] | 541 | |
Arnaldo Carvalho de Melo | 75be6cf | 2009-12-15 20:04:39 -0200 | [diff] [blame] | 542 | if (symbol__init() < 0) |
Arnaldo Carvalho de Melo | b32d133 | 2009-11-24 12:05:15 -0200 | [diff] [blame] | 543 | return -1; |
Ingo Molnar | 53cb8bc | 2009-05-26 09:17:18 +0200 | [diff] [blame] | 544 | |
Arnaldo Carvalho de Melo | c8829c7 | 2009-12-14 20:09:29 -0200 | [diff] [blame] | 545 | setup_sorting(report_usage, options); |
Peter Zijlstra | 1aa1673 | 2009-05-27 20:20:25 +0200 | [diff] [blame] | 546 | |
Arnaldo Carvalho de Melo | 021191b | 2009-07-11 12:18:35 -0300 | [diff] [blame] | 547 | if (parent_pattern != default_parent_pattern) { |
Arnaldo Carvalho de Melo | 2aefa4f | 2010-04-02 12:30:57 -0300 | [diff] [blame] | 548 | if (sort_dimension__add("parent") < 0) |
| 549 | return -1; |
Arnaldo Carvalho de Melo | 021191b | 2009-07-11 12:18:35 -0300 | [diff] [blame] | 550 | sort_parent.elide = 1; |
| 551 | } else |
Arnaldo Carvalho de Melo | d599db3 | 2009-12-15 20:04:42 -0200 | [diff] [blame] | 552 | symbol_conf.exclude_other = false; |
Ingo Molnar | b8e6d82 | 2009-06-18 14:32:19 +0200 | [diff] [blame] | 553 | |
Ingo Molnar | edc52de | 2009-06-04 16:24:37 +0200 | [diff] [blame] | 554 | /* |
| 555 | * Any (unrecognized) arguments left? |
| 556 | */ |
| 557 | if (argc) |
| 558 | usage_with_options(report_usage, options); |
| 559 | |
Arnaldo Carvalho de Melo | 655000e | 2009-12-15 20:04:40 -0200 | [diff] [blame] | 560 | sort_entry__setup_elide(&sort_dso, symbol_conf.dso_list, "dso", stdout); |
| 561 | sort_entry__setup_elide(&sort_comm, symbol_conf.comm_list, "comm", stdout); |
| 562 | sort_entry__setup_elide(&sort_sym, symbol_conf.sym_list, "symbol", stdout); |
Arnaldo Carvalho de Melo | 2590340 | 2009-06-30 19:01:20 -0300 | [diff] [blame] | 563 | |
Ingo Molnar | 53cb8bc | 2009-05-26 09:17:18 +0200 | [diff] [blame] | 564 | return __cmd_report(); |
| 565 | } |