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