Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1 | #include <stdio.h> |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 2 | #include <stdlib.h> |
| 3 | #include <string.h> |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 4 | #include <linux/rbtree.h> |
| 5 | |
Namhyung Kim | aca7a94 | 2012-04-04 00:14:26 -0700 | [diff] [blame] | 6 | #include "../../util/evsel.h" |
| 7 | #include "../../util/evlist.h" |
| 8 | #include "../../util/hist.h" |
| 9 | #include "../../util/pstack.h" |
| 10 | #include "../../util/sort.h" |
| 11 | #include "../../util/util.h" |
Namhyung Kim | 42337a2 | 2014-08-12 17:16:06 +0900 | [diff] [blame] | 12 | #include "../../util/top.h" |
Namhyung Kim | 68d8075 | 2012-11-02 14:50:06 +0900 | [diff] [blame] | 13 | #include "../../arch/common.h" |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 14 | |
| 15 | #include "../browser.h" |
| 16 | #include "../helpline.h" |
| 17 | #include "../util.h" |
Arnaldo Carvalho de Melo | 4610e41 | 2011-10-26 12:04:37 -0200 | [diff] [blame] | 18 | #include "../ui.h" |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 19 | #include "map.h" |
Jiri Olsa | d755330 | 2014-06-15 10:22:15 +0200 | [diff] [blame] | 20 | #include "annotate.h" |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 21 | |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 22 | struct hist_browser { |
| 23 | struct ui_browser b; |
| 24 | struct hists *hists; |
| 25 | struct hist_entry *he_selection; |
| 26 | struct map_symbol *selection; |
Namhyung Kim | c2a51ab | 2015-04-22 16:18:15 +0900 | [diff] [blame] | 27 | struct hist_browser_timer *hbt; |
Namhyung Kim | 01f00a1 | 2015-04-22 16:18:16 +0900 | [diff] [blame] | 28 | struct pstack *pstack; |
Kan Liang | ce80d3b | 2015-08-28 05:48:04 -0400 | [diff] [blame] | 29 | struct perf_env *env; |
Arnaldo Carvalho de Melo | aff3f3f | 2012-06-07 19:31:28 -0300 | [diff] [blame] | 30 | int print_seq; |
Arnaldo Carvalho de Melo | a7cb886 | 2012-08-03 13:53:40 -0300 | [diff] [blame] | 31 | bool show_dso; |
Arnaldo Carvalho de Melo | 025bf7e | 2014-06-14 15:44:52 +0200 | [diff] [blame] | 32 | bool show_headers; |
Namhyung Kim | 064f198 | 2013-05-14 11:09:04 +0900 | [diff] [blame] | 33 | float min_pcnt; |
Namhyung Kim | 112f761 | 2014-04-22 14:05:35 +0900 | [diff] [blame] | 34 | u64 nr_non_filtered_entries; |
Namhyung Kim | c3b7895 | 2014-04-22 15:56:17 +0900 | [diff] [blame] | 35 | u64 nr_callchain_rows; |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 36 | }; |
| 37 | |
Namhyung Kim | f5951d5 | 2012-09-03 11:53:09 +0900 | [diff] [blame] | 38 | extern void hist_browser__init_hpp(void); |
| 39 | |
Taeung Song | 1e378eb | 2014-10-07 16:13:15 +0900 | [diff] [blame] | 40 | static int hists__browser_title(struct hists *hists, |
| 41 | struct hist_browser_timer *hbt, |
| 42 | char *bf, size_t size); |
Namhyung Kim | 112f761 | 2014-04-22 14:05:35 +0900 | [diff] [blame] | 43 | static void hist_browser__update_nr_entries(struct hist_browser *hb); |
Arnaldo Carvalho de Melo | 81cce8d | 2011-10-05 19:11:32 -0300 | [diff] [blame] | 44 | |
Namhyung Kim | c3b7895 | 2014-04-22 15:56:17 +0900 | [diff] [blame] | 45 | static struct rb_node *hists__filter_entries(struct rb_node *nd, |
Namhyung Kim | c3b7895 | 2014-04-22 15:56:17 +0900 | [diff] [blame] | 46 | float min_pcnt); |
| 47 | |
Namhyung Kim | 268397c | 2014-04-22 14:49:31 +0900 | [diff] [blame] | 48 | static bool hist_browser__has_filter(struct hist_browser *hb) |
| 49 | { |
Arnaldo Carvalho de Melo | 9c0fa8d | 2015-07-13 08:26:35 -0300 | [diff] [blame] | 50 | return hists__has_filter(hb->hists) || hb->min_pcnt || symbol_conf.has_filter; |
Namhyung Kim | 268397c | 2014-04-22 14:49:31 +0900 | [diff] [blame] | 51 | } |
| 52 | |
He Kuang | 4fabf3d | 2015-03-12 15:21:49 +0800 | [diff] [blame] | 53 | static int hist_browser__get_folding(struct hist_browser *browser) |
| 54 | { |
| 55 | struct rb_node *nd; |
| 56 | struct hists *hists = browser->hists; |
| 57 | int unfolded_rows = 0; |
| 58 | |
| 59 | for (nd = rb_first(&hists->entries); |
| 60 | (nd = hists__filter_entries(nd, browser->min_pcnt)) != NULL; |
| 61 | nd = rb_next(nd)) { |
| 62 | struct hist_entry *he = |
| 63 | rb_entry(nd, struct hist_entry, rb_node); |
| 64 | |
Namhyung Kim | 3698dab | 2015-05-05 23:55:46 +0900 | [diff] [blame] | 65 | if (he->unfolded) |
He Kuang | 4fabf3d | 2015-03-12 15:21:49 +0800 | [diff] [blame] | 66 | unfolded_rows += he->nr_rows; |
| 67 | } |
| 68 | return unfolded_rows; |
| 69 | } |
| 70 | |
Namhyung Kim | c3b7895 | 2014-04-22 15:56:17 +0900 | [diff] [blame] | 71 | static u32 hist_browser__nr_entries(struct hist_browser *hb) |
| 72 | { |
| 73 | u32 nr_entries; |
| 74 | |
| 75 | if (hist_browser__has_filter(hb)) |
| 76 | nr_entries = hb->nr_non_filtered_entries; |
| 77 | else |
| 78 | nr_entries = hb->hists->nr_entries; |
| 79 | |
He Kuang | 4fabf3d | 2015-03-12 15:21:49 +0800 | [diff] [blame] | 80 | hb->nr_callchain_rows = hist_browser__get_folding(hb); |
Namhyung Kim | c3b7895 | 2014-04-22 15:56:17 +0900 | [diff] [blame] | 81 | return nr_entries + hb->nr_callchain_rows; |
| 82 | } |
| 83 | |
Arnaldo Carvalho de Melo | 025bf7e | 2014-06-14 15:44:52 +0200 | [diff] [blame] | 84 | static void hist_browser__update_rows(struct hist_browser *hb) |
| 85 | { |
| 86 | struct ui_browser *browser = &hb->b; |
| 87 | u16 header_offset = hb->show_headers ? 1 : 0, index_row; |
| 88 | |
| 89 | browser->rows = browser->height - header_offset; |
| 90 | /* |
| 91 | * Verify if we were at the last line and that line isn't |
| 92 | * visibe because we now show the header line(s). |
| 93 | */ |
| 94 | index_row = browser->index - browser->top_idx; |
| 95 | if (index_row >= browser->rows) |
| 96 | browser->index -= index_row - browser->rows + 1; |
| 97 | } |
| 98 | |
Arnaldo Carvalho de Melo | 357cfff | 2014-07-01 17:01:01 -0300 | [diff] [blame] | 99 | static void hist_browser__refresh_dimensions(struct ui_browser *browser) |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 100 | { |
Arnaldo Carvalho de Melo | 357cfff | 2014-07-01 17:01:01 -0300 | [diff] [blame] | 101 | struct hist_browser *hb = container_of(browser, struct hist_browser, b); |
| 102 | |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 103 | /* 3 == +/- toggle symbol before actual hist_entry rendering */ |
Arnaldo Carvalho de Melo | 357cfff | 2014-07-01 17:01:01 -0300 | [diff] [blame] | 104 | browser->width = 3 + (hists__sort_list_width(hb->hists) + sizeof("[k]")); |
| 105 | /* |
| 106 | * FIXME: Just keeping existing behaviour, but this really should be |
| 107 | * before updating browser->width, as it will invalidate the |
| 108 | * calculation above. Fix this and the fallout in another |
| 109 | * changeset. |
| 110 | */ |
| 111 | ui_browser__refresh_dimensions(browser); |
Arnaldo Carvalho de Melo | 025bf7e | 2014-06-14 15:44:52 +0200 | [diff] [blame] | 112 | hist_browser__update_rows(hb); |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 113 | } |
| 114 | |
Arnaldo Carvalho de Melo | ca3ff33 | 2014-07-01 16:42:24 -0300 | [diff] [blame] | 115 | static void hist_browser__gotorc(struct hist_browser *browser, int row, int column) |
| 116 | { |
Arnaldo Carvalho de Melo | 025bf7e | 2014-06-14 15:44:52 +0200 | [diff] [blame] | 117 | u16 header_offset = browser->show_headers ? 1 : 0; |
| 118 | |
| 119 | ui_browser__gotorc(&browser->b, row + header_offset, column); |
Arnaldo Carvalho de Melo | ca3ff33 | 2014-07-01 16:42:24 -0300 | [diff] [blame] | 120 | } |
| 121 | |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 122 | static void hist_browser__reset(struct hist_browser *browser) |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 123 | { |
Namhyung Kim | c3b7895 | 2014-04-22 15:56:17 +0900 | [diff] [blame] | 124 | /* |
| 125 | * The hists__remove_entry_filter() already folds non-filtered |
| 126 | * entries so we can assume it has 0 callchain rows. |
| 127 | */ |
| 128 | browser->nr_callchain_rows = 0; |
| 129 | |
Namhyung Kim | 268397c | 2014-04-22 14:49:31 +0900 | [diff] [blame] | 130 | hist_browser__update_nr_entries(browser); |
Namhyung Kim | c3b7895 | 2014-04-22 15:56:17 +0900 | [diff] [blame] | 131 | browser->b.nr_entries = hist_browser__nr_entries(browser); |
Arnaldo Carvalho de Melo | 357cfff | 2014-07-01 17:01:01 -0300 | [diff] [blame] | 132 | hist_browser__refresh_dimensions(&browser->b); |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 133 | ui_browser__reset_index(&browser->b); |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 134 | } |
| 135 | |
| 136 | static char tree__folded_sign(bool unfolded) |
| 137 | { |
| 138 | return unfolded ? '-' : '+'; |
| 139 | } |
| 140 | |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 141 | static char hist_entry__folded(const struct hist_entry *he) |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 142 | { |
Namhyung Kim | 3698dab | 2015-05-05 23:55:46 +0900 | [diff] [blame] | 143 | return he->has_children ? tree__folded_sign(he->unfolded) : ' '; |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 144 | } |
| 145 | |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 146 | static char callchain_list__folded(const struct callchain_list *cl) |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 147 | { |
Namhyung Kim | 3698dab | 2015-05-05 23:55:46 +0900 | [diff] [blame] | 148 | return cl->has_children ? tree__folded_sign(cl->unfolded) : ' '; |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 149 | } |
| 150 | |
Namhyung Kim | 3698dab | 2015-05-05 23:55:46 +0900 | [diff] [blame] | 151 | static void callchain_list__set_folding(struct callchain_list *cl, bool unfold) |
Arnaldo Carvalho de Melo | 3c916cc | 2010-08-25 17:18:35 -0300 | [diff] [blame] | 152 | { |
Namhyung Kim | 3698dab | 2015-05-05 23:55:46 +0900 | [diff] [blame] | 153 | cl->unfolded = unfold ? cl->has_children : false; |
Arnaldo Carvalho de Melo | 3c916cc | 2010-08-25 17:18:35 -0300 | [diff] [blame] | 154 | } |
| 155 | |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 156 | static int callchain_node__count_rows_rb_tree(struct callchain_node *node) |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 157 | { |
| 158 | int n = 0; |
| 159 | struct rb_node *nd; |
| 160 | |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 161 | for (nd = rb_first(&node->rb_root); nd; nd = rb_next(nd)) { |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 162 | struct callchain_node *child = rb_entry(nd, struct callchain_node, rb_node); |
| 163 | struct callchain_list *chain; |
| 164 | char folded_sign = ' '; /* No children */ |
| 165 | |
| 166 | list_for_each_entry(chain, &child->val, list) { |
| 167 | ++n; |
| 168 | /* We need this because we may not have children */ |
| 169 | folded_sign = callchain_list__folded(chain); |
| 170 | if (folded_sign == '+') |
| 171 | break; |
| 172 | } |
| 173 | |
| 174 | if (folded_sign == '-') /* Have children and they're unfolded */ |
| 175 | n += callchain_node__count_rows_rb_tree(child); |
| 176 | } |
| 177 | |
| 178 | return n; |
| 179 | } |
| 180 | |
Namhyung Kim | 4b3a321 | 2015-11-09 14:45:43 +0900 | [diff] [blame] | 181 | static int callchain_node__count_flat_rows(struct callchain_node *node) |
| 182 | { |
| 183 | struct callchain_list *chain; |
| 184 | char folded_sign = 0; |
| 185 | int n = 0; |
| 186 | |
| 187 | list_for_each_entry(chain, &node->parent_val, list) { |
| 188 | if (!folded_sign) { |
| 189 | /* only check first chain list entry */ |
| 190 | folded_sign = callchain_list__folded(chain); |
| 191 | if (folded_sign == '+') |
| 192 | return 1; |
| 193 | } |
| 194 | n++; |
| 195 | } |
| 196 | |
| 197 | list_for_each_entry(chain, &node->val, list) { |
| 198 | if (!folded_sign) { |
| 199 | /* node->parent_val list might be empty */ |
| 200 | folded_sign = callchain_list__folded(chain); |
| 201 | if (folded_sign == '+') |
| 202 | return 1; |
| 203 | } |
| 204 | n++; |
| 205 | } |
| 206 | |
| 207 | return n; |
| 208 | } |
| 209 | |
Namhyung Kim | 8c430a3 | 2015-11-09 14:45:44 +0900 | [diff] [blame] | 210 | static int callchain_node__count_folded_rows(struct callchain_node *node __maybe_unused) |
| 211 | { |
| 212 | return 1; |
| 213 | } |
| 214 | |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 215 | static int callchain_node__count_rows(struct callchain_node *node) |
| 216 | { |
| 217 | struct callchain_list *chain; |
| 218 | bool unfolded = false; |
| 219 | int n = 0; |
| 220 | |
Namhyung Kim | 4b3a321 | 2015-11-09 14:45:43 +0900 | [diff] [blame] | 221 | if (callchain_param.mode == CHAIN_FLAT) |
| 222 | return callchain_node__count_flat_rows(node); |
Namhyung Kim | 8c430a3 | 2015-11-09 14:45:44 +0900 | [diff] [blame] | 223 | else if (callchain_param.mode == CHAIN_FOLDED) |
| 224 | return callchain_node__count_folded_rows(node); |
Namhyung Kim | 4b3a321 | 2015-11-09 14:45:43 +0900 | [diff] [blame] | 225 | |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 226 | list_for_each_entry(chain, &node->val, list) { |
| 227 | ++n; |
Namhyung Kim | 3698dab | 2015-05-05 23:55:46 +0900 | [diff] [blame] | 228 | unfolded = chain->unfolded; |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 229 | } |
| 230 | |
| 231 | if (unfolded) |
| 232 | n += callchain_node__count_rows_rb_tree(node); |
| 233 | |
| 234 | return n; |
| 235 | } |
| 236 | |
| 237 | static int callchain__count_rows(struct rb_root *chain) |
| 238 | { |
| 239 | struct rb_node *nd; |
| 240 | int n = 0; |
| 241 | |
| 242 | for (nd = rb_first(chain); nd; nd = rb_next(nd)) { |
| 243 | struct callchain_node *node = rb_entry(nd, struct callchain_node, rb_node); |
| 244 | n += callchain_node__count_rows(node); |
| 245 | } |
| 246 | |
| 247 | return n; |
| 248 | } |
| 249 | |
Namhyung Kim | 3698dab | 2015-05-05 23:55:46 +0900 | [diff] [blame] | 250 | static bool hist_entry__toggle_fold(struct hist_entry *he) |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 251 | { |
Namhyung Kim | 3698dab | 2015-05-05 23:55:46 +0900 | [diff] [blame] | 252 | if (!he) |
Jiri Olsa | 8493fe1 | 2012-04-04 22:21:31 +0200 | [diff] [blame] | 253 | return false; |
| 254 | |
Namhyung Kim | 3698dab | 2015-05-05 23:55:46 +0900 | [diff] [blame] | 255 | if (!he->has_children) |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 256 | return false; |
| 257 | |
Namhyung Kim | 3698dab | 2015-05-05 23:55:46 +0900 | [diff] [blame] | 258 | he->unfolded = !he->unfolded; |
| 259 | return true; |
| 260 | } |
| 261 | |
| 262 | static bool callchain_list__toggle_fold(struct callchain_list *cl) |
| 263 | { |
| 264 | if (!cl) |
| 265 | return false; |
| 266 | |
| 267 | if (!cl->has_children) |
| 268 | return false; |
| 269 | |
| 270 | cl->unfolded = !cl->unfolded; |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 271 | return true; |
| 272 | } |
| 273 | |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 274 | static void callchain_node__init_have_children_rb_tree(struct callchain_node *node) |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 275 | { |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 276 | struct rb_node *nd = rb_first(&node->rb_root); |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 277 | |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 278 | for (nd = rb_first(&node->rb_root); nd; nd = rb_next(nd)) { |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 279 | struct callchain_node *child = rb_entry(nd, struct callchain_node, rb_node); |
| 280 | struct callchain_list *chain; |
Arnaldo Carvalho de Melo | 293db47 | 2010-08-25 16:05:36 -0300 | [diff] [blame] | 281 | bool first = true; |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 282 | |
| 283 | list_for_each_entry(chain, &child->val, list) { |
| 284 | if (first) { |
| 285 | first = false; |
Namhyung Kim | 3698dab | 2015-05-05 23:55:46 +0900 | [diff] [blame] | 286 | chain->has_children = chain->list.next != &child->val || |
Arnaldo Carvalho de Melo | 293db47 | 2010-08-25 16:05:36 -0300 | [diff] [blame] | 287 | !RB_EMPTY_ROOT(&child->rb_root); |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 288 | } else |
Namhyung Kim | 3698dab | 2015-05-05 23:55:46 +0900 | [diff] [blame] | 289 | chain->has_children = chain->list.next == &child->val && |
Arnaldo Carvalho de Melo | 293db47 | 2010-08-25 16:05:36 -0300 | [diff] [blame] | 290 | !RB_EMPTY_ROOT(&child->rb_root); |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 291 | } |
| 292 | |
| 293 | callchain_node__init_have_children_rb_tree(child); |
| 294 | } |
| 295 | } |
| 296 | |
Namhyung Kim | a7444af | 2014-11-24 17:13:27 +0900 | [diff] [blame] | 297 | static void callchain_node__init_have_children(struct callchain_node *node, |
| 298 | bool has_sibling) |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 299 | { |
| 300 | struct callchain_list *chain; |
| 301 | |
Namhyung Kim | a7444af | 2014-11-24 17:13:27 +0900 | [diff] [blame] | 302 | chain = list_entry(node->val.next, struct callchain_list, list); |
Namhyung Kim | 3698dab | 2015-05-05 23:55:46 +0900 | [diff] [blame] | 303 | chain->has_children = has_sibling; |
Namhyung Kim | a7444af | 2014-11-24 17:13:27 +0900 | [diff] [blame] | 304 | |
Namhyung Kim | 4b3a321 | 2015-11-09 14:45:43 +0900 | [diff] [blame] | 305 | if (node->val.next != node->val.prev) { |
Namhyung Kim | 82162b5 | 2014-08-13 15:02:41 +0900 | [diff] [blame] | 306 | chain = list_entry(node->val.prev, struct callchain_list, list); |
Namhyung Kim | 3698dab | 2015-05-05 23:55:46 +0900 | [diff] [blame] | 307 | chain->has_children = !RB_EMPTY_ROOT(&node->rb_root); |
Namhyung Kim | 82162b5 | 2014-08-13 15:02:41 +0900 | [diff] [blame] | 308 | } |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 309 | |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 310 | callchain_node__init_have_children_rb_tree(node); |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 311 | } |
| 312 | |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 313 | static void callchain__init_have_children(struct rb_root *root) |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 314 | { |
Namhyung Kim | a7444af | 2014-11-24 17:13:27 +0900 | [diff] [blame] | 315 | struct rb_node *nd = rb_first(root); |
| 316 | bool has_sibling = nd && rb_next(nd); |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 317 | |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 318 | for (nd = rb_first(root); nd; nd = rb_next(nd)) { |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 319 | struct callchain_node *node = rb_entry(nd, struct callchain_node, rb_node); |
Namhyung Kim | a7444af | 2014-11-24 17:13:27 +0900 | [diff] [blame] | 320 | callchain_node__init_have_children(node, has_sibling); |
Namhyung Kim | 8c430a3 | 2015-11-09 14:45:44 +0900 | [diff] [blame] | 321 | if (callchain_param.mode == CHAIN_FLAT || |
| 322 | callchain_param.mode == CHAIN_FOLDED) |
Namhyung Kim | 4b3a321 | 2015-11-09 14:45:43 +0900 | [diff] [blame] | 323 | callchain_node__make_parent_list(node); |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 324 | } |
| 325 | } |
| 326 | |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 327 | static void hist_entry__init_have_children(struct hist_entry *he) |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 328 | { |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 329 | if (!he->init_have_children) { |
Namhyung Kim | 3698dab | 2015-05-05 23:55:46 +0900 | [diff] [blame] | 330 | he->has_children = !RB_EMPTY_ROOT(&he->sorted_chain); |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 331 | callchain__init_have_children(&he->sorted_chain); |
| 332 | he->init_have_children = true; |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 333 | } |
| 334 | } |
| 335 | |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 336 | static bool hist_browser__toggle_fold(struct hist_browser *browser) |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 337 | { |
Namhyung Kim | 3698dab | 2015-05-05 23:55:46 +0900 | [diff] [blame] | 338 | struct hist_entry *he = browser->he_selection; |
| 339 | struct map_symbol *ms = browser->selection; |
| 340 | struct callchain_list *cl = container_of(ms, struct callchain_list, ms); |
| 341 | bool has_children; |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 342 | |
Wang Nan | 4938cf0 | 2015-12-07 02:35:44 +0000 | [diff] [blame] | 343 | if (!he || !ms) |
| 344 | return false; |
| 345 | |
Namhyung Kim | 3698dab | 2015-05-05 23:55:46 +0900 | [diff] [blame] | 346 | if (ms == &he->ms) |
| 347 | has_children = hist_entry__toggle_fold(he); |
| 348 | else |
| 349 | has_children = callchain_list__toggle_fold(cl); |
| 350 | |
| 351 | if (has_children) { |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 352 | hist_entry__init_have_children(he); |
Namhyung Kim | c3b7895 | 2014-04-22 15:56:17 +0900 | [diff] [blame] | 353 | browser->b.nr_entries -= he->nr_rows; |
| 354 | browser->nr_callchain_rows -= he->nr_rows; |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 355 | |
Namhyung Kim | 3698dab | 2015-05-05 23:55:46 +0900 | [diff] [blame] | 356 | if (he->unfolded) |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 357 | he->nr_rows = callchain__count_rows(&he->sorted_chain); |
| 358 | else |
| 359 | he->nr_rows = 0; |
Namhyung Kim | c3b7895 | 2014-04-22 15:56:17 +0900 | [diff] [blame] | 360 | |
| 361 | browser->b.nr_entries += he->nr_rows; |
| 362 | browser->nr_callchain_rows += he->nr_rows; |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 363 | |
| 364 | return true; |
| 365 | } |
| 366 | |
| 367 | /* If it doesn't have children, no toggling performed */ |
| 368 | return false; |
| 369 | } |
| 370 | |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 371 | static int callchain_node__set_folding_rb_tree(struct callchain_node *node, bool unfold) |
Arnaldo Carvalho de Melo | 3c916cc | 2010-08-25 17:18:35 -0300 | [diff] [blame] | 372 | { |
| 373 | int n = 0; |
| 374 | struct rb_node *nd; |
| 375 | |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 376 | for (nd = rb_first(&node->rb_root); nd; nd = rb_next(nd)) { |
Arnaldo Carvalho de Melo | 3c916cc | 2010-08-25 17:18:35 -0300 | [diff] [blame] | 377 | struct callchain_node *child = rb_entry(nd, struct callchain_node, rb_node); |
| 378 | struct callchain_list *chain; |
| 379 | bool has_children = false; |
| 380 | |
| 381 | list_for_each_entry(chain, &child->val, list) { |
| 382 | ++n; |
Namhyung Kim | 3698dab | 2015-05-05 23:55:46 +0900 | [diff] [blame] | 383 | callchain_list__set_folding(chain, unfold); |
| 384 | has_children = chain->has_children; |
Arnaldo Carvalho de Melo | 3c916cc | 2010-08-25 17:18:35 -0300 | [diff] [blame] | 385 | } |
| 386 | |
| 387 | if (has_children) |
| 388 | n += callchain_node__set_folding_rb_tree(child, unfold); |
| 389 | } |
| 390 | |
| 391 | return n; |
| 392 | } |
| 393 | |
| 394 | static int callchain_node__set_folding(struct callchain_node *node, bool unfold) |
| 395 | { |
| 396 | struct callchain_list *chain; |
| 397 | bool has_children = false; |
| 398 | int n = 0; |
| 399 | |
| 400 | list_for_each_entry(chain, &node->val, list) { |
| 401 | ++n; |
Namhyung Kim | 3698dab | 2015-05-05 23:55:46 +0900 | [diff] [blame] | 402 | callchain_list__set_folding(chain, unfold); |
| 403 | has_children = chain->has_children; |
Arnaldo Carvalho de Melo | 3c916cc | 2010-08-25 17:18:35 -0300 | [diff] [blame] | 404 | } |
| 405 | |
| 406 | if (has_children) |
| 407 | n += callchain_node__set_folding_rb_tree(node, unfold); |
| 408 | |
| 409 | return n; |
| 410 | } |
| 411 | |
| 412 | static int callchain__set_folding(struct rb_root *chain, bool unfold) |
| 413 | { |
| 414 | struct rb_node *nd; |
| 415 | int n = 0; |
| 416 | |
| 417 | for (nd = rb_first(chain); nd; nd = rb_next(nd)) { |
| 418 | struct callchain_node *node = rb_entry(nd, struct callchain_node, rb_node); |
| 419 | n += callchain_node__set_folding(node, unfold); |
| 420 | } |
| 421 | |
| 422 | return n; |
| 423 | } |
| 424 | |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 425 | static void hist_entry__set_folding(struct hist_entry *he, bool unfold) |
Arnaldo Carvalho de Melo | 3c916cc | 2010-08-25 17:18:35 -0300 | [diff] [blame] | 426 | { |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 427 | hist_entry__init_have_children(he); |
Namhyung Kim | 3698dab | 2015-05-05 23:55:46 +0900 | [diff] [blame] | 428 | he->unfolded = unfold ? he->has_children : false; |
Arnaldo Carvalho de Melo | 3c916cc | 2010-08-25 17:18:35 -0300 | [diff] [blame] | 429 | |
Namhyung Kim | 3698dab | 2015-05-05 23:55:46 +0900 | [diff] [blame] | 430 | if (he->has_children) { |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 431 | int n = callchain__set_folding(&he->sorted_chain, unfold); |
| 432 | he->nr_rows = unfold ? n : 0; |
Arnaldo Carvalho de Melo | 3c916cc | 2010-08-25 17:18:35 -0300 | [diff] [blame] | 433 | } else |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 434 | he->nr_rows = 0; |
Arnaldo Carvalho de Melo | 3c916cc | 2010-08-25 17:18:35 -0300 | [diff] [blame] | 435 | } |
| 436 | |
Namhyung Kim | c3b7895 | 2014-04-22 15:56:17 +0900 | [diff] [blame] | 437 | static void |
| 438 | __hist_browser__set_folding(struct hist_browser *browser, bool unfold) |
Arnaldo Carvalho de Melo | 3c916cc | 2010-08-25 17:18:35 -0300 | [diff] [blame] | 439 | { |
| 440 | struct rb_node *nd; |
Namhyung Kim | c3b7895 | 2014-04-22 15:56:17 +0900 | [diff] [blame] | 441 | struct hists *hists = browser->hists; |
Arnaldo Carvalho de Melo | 3c916cc | 2010-08-25 17:18:35 -0300 | [diff] [blame] | 442 | |
Namhyung Kim | c3b7895 | 2014-04-22 15:56:17 +0900 | [diff] [blame] | 443 | for (nd = rb_first(&hists->entries); |
Namhyung Kim | 1413566 | 2013-10-31 10:17:39 +0900 | [diff] [blame] | 444 | (nd = hists__filter_entries(nd, browser->min_pcnt)) != NULL; |
Namhyung Kim | c3b7895 | 2014-04-22 15:56:17 +0900 | [diff] [blame] | 445 | nd = rb_next(nd)) { |
Arnaldo Carvalho de Melo | 3c916cc | 2010-08-25 17:18:35 -0300 | [diff] [blame] | 446 | struct hist_entry *he = rb_entry(nd, struct hist_entry, rb_node); |
| 447 | hist_entry__set_folding(he, unfold); |
Namhyung Kim | c3b7895 | 2014-04-22 15:56:17 +0900 | [diff] [blame] | 448 | browser->nr_callchain_rows += he->nr_rows; |
Arnaldo Carvalho de Melo | 3c916cc | 2010-08-25 17:18:35 -0300 | [diff] [blame] | 449 | } |
| 450 | } |
| 451 | |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 452 | static void hist_browser__set_folding(struct hist_browser *browser, bool unfold) |
Arnaldo Carvalho de Melo | 3c916cc | 2010-08-25 17:18:35 -0300 | [diff] [blame] | 453 | { |
Namhyung Kim | c3b7895 | 2014-04-22 15:56:17 +0900 | [diff] [blame] | 454 | browser->nr_callchain_rows = 0; |
| 455 | __hist_browser__set_folding(browser, unfold); |
| 456 | |
| 457 | browser->b.nr_entries = hist_browser__nr_entries(browser); |
Arnaldo Carvalho de Melo | 3c916cc | 2010-08-25 17:18:35 -0300 | [diff] [blame] | 458 | /* Go to the start, we may be way after valid entries after a collapse */ |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 459 | ui_browser__reset_index(&browser->b); |
Arnaldo Carvalho de Melo | 3c916cc | 2010-08-25 17:18:35 -0300 | [diff] [blame] | 460 | } |
| 461 | |
Arnaldo Carvalho de Melo | 7b27509 | 2011-10-29 12:15:04 -0200 | [diff] [blame] | 462 | static void ui_browser__warn_lost_events(struct ui_browser *browser) |
| 463 | { |
| 464 | ui_browser__warning(browser, 4, |
| 465 | "Events are being lost, check IO/CPU overload!\n\n" |
| 466 | "You may want to run 'perf' using a RT scheduler policy:\n\n" |
| 467 | " perf top -r 80\n\n" |
| 468 | "Or reduce the sampling frequency."); |
| 469 | } |
| 470 | |
Arnaldo Carvalho de Melo | 5f00b0f | 2015-06-19 17:30:20 -0300 | [diff] [blame] | 471 | static int hist_browser__run(struct hist_browser *browser, const char *help) |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 472 | { |
Arnaldo Carvalho de Melo | b50e003 | 2010-08-11 10:07:43 -0300 | [diff] [blame] | 473 | int key; |
Arnaldo Carvalho de Melo | 81cce8d | 2011-10-05 19:11:32 -0300 | [diff] [blame] | 474 | char title[160]; |
Namhyung Kim | c2a51ab | 2015-04-22 16:18:15 +0900 | [diff] [blame] | 475 | struct hist_browser_timer *hbt = browser->hbt; |
Namhyung Kim | 9783adf | 2012-11-02 14:50:05 +0900 | [diff] [blame] | 476 | int delay_secs = hbt ? hbt->refresh : 0; |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 477 | |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 478 | browser->b.entries = &browser->hists->entries; |
Namhyung Kim | c3b7895 | 2014-04-22 15:56:17 +0900 | [diff] [blame] | 479 | browser->b.nr_entries = hist_browser__nr_entries(browser); |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 480 | |
Taeung Song | 1e378eb | 2014-10-07 16:13:15 +0900 | [diff] [blame] | 481 | hists__browser_title(browser->hists, hbt, title, sizeof(title)); |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 482 | |
Namhyung Kim | 090cff3 | 2016-01-11 19:53:14 +0900 | [diff] [blame] | 483 | if (ui_browser__show(&browser->b, title, "%s", help) < 0) |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 484 | return -1; |
| 485 | |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 486 | while (1) { |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 487 | key = ui_browser__run(&browser->b, delay_secs); |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 488 | |
Arnaldo Carvalho de Melo | b50e003 | 2010-08-11 10:07:43 -0300 | [diff] [blame] | 489 | switch (key) { |
Namhyung Kim | fa5df94 | 2013-05-14 11:09:05 +0900 | [diff] [blame] | 490 | case K_TIMER: { |
| 491 | u64 nr_entries; |
Namhyung Kim | 9783adf | 2012-11-02 14:50:05 +0900 | [diff] [blame] | 492 | hbt->timer(hbt->arg); |
Namhyung Kim | fa5df94 | 2013-05-14 11:09:05 +0900 | [diff] [blame] | 493 | |
Namhyung Kim | c3b7895 | 2014-04-22 15:56:17 +0900 | [diff] [blame] | 494 | if (hist_browser__has_filter(browser)) |
Namhyung Kim | 112f761 | 2014-04-22 14:05:35 +0900 | [diff] [blame] | 495 | hist_browser__update_nr_entries(browser); |
Namhyung Kim | fa5df94 | 2013-05-14 11:09:05 +0900 | [diff] [blame] | 496 | |
Namhyung Kim | c3b7895 | 2014-04-22 15:56:17 +0900 | [diff] [blame] | 497 | nr_entries = hist_browser__nr_entries(browser); |
Namhyung Kim | fa5df94 | 2013-05-14 11:09:05 +0900 | [diff] [blame] | 498 | ui_browser__update_nr_entries(&browser->b, nr_entries); |
Arnaldo Carvalho de Melo | 7b27509 | 2011-10-29 12:15:04 -0200 | [diff] [blame] | 499 | |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 500 | if (browser->hists->stats.nr_lost_warned != |
| 501 | browser->hists->stats.nr_events[PERF_RECORD_LOST]) { |
| 502 | browser->hists->stats.nr_lost_warned = |
| 503 | browser->hists->stats.nr_events[PERF_RECORD_LOST]; |
| 504 | ui_browser__warn_lost_events(&browser->b); |
Arnaldo Carvalho de Melo | 7b27509 | 2011-10-29 12:15:04 -0200 | [diff] [blame] | 505 | } |
| 506 | |
Taeung Song | 1e378eb | 2014-10-07 16:13:15 +0900 | [diff] [blame] | 507 | hists__browser_title(browser->hists, |
| 508 | hbt, title, sizeof(title)); |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 509 | ui_browser__show_title(&browser->b, title); |
Arnaldo Carvalho de Melo | 81cce8d | 2011-10-05 19:11:32 -0300 | [diff] [blame] | 510 | continue; |
Namhyung Kim | fa5df94 | 2013-05-14 11:09:05 +0900 | [diff] [blame] | 511 | } |
Arnaldo Carvalho de Melo | 4694153 | 2010-08-10 15:50:07 -0300 | [diff] [blame] | 512 | case 'D': { /* Debug */ |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 513 | static int seq; |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 514 | struct hist_entry *h = rb_entry(browser->b.top, |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 515 | struct hist_entry, rb_node); |
| 516 | ui_helpline__pop(); |
Arnaldo Carvalho de Melo | 62c95ae | 2014-07-01 11:07:54 -0300 | [diff] [blame] | 517 | ui_helpline__fpush("%d: nr_ent=(%d,%d), rows=%d, idx=%d, fve: idx=%d, row_off=%d, nrows=%d", |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 518 | seq++, browser->b.nr_entries, |
| 519 | browser->hists->nr_entries, |
Arnaldo Carvalho de Melo | 62c95ae | 2014-07-01 11:07:54 -0300 | [diff] [blame] | 520 | browser->b.rows, |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 521 | browser->b.index, |
| 522 | browser->b.top_idx, |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 523 | h->row_offset, h->nr_rows); |
| 524 | } |
Arnaldo Carvalho de Melo | 3c916cc | 2010-08-25 17:18:35 -0300 | [diff] [blame] | 525 | break; |
| 526 | case 'C': |
| 527 | /* Collapse the whole world. */ |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 528 | hist_browser__set_folding(browser, false); |
Arnaldo Carvalho de Melo | 3c916cc | 2010-08-25 17:18:35 -0300 | [diff] [blame] | 529 | break; |
| 530 | case 'E': |
| 531 | /* Expand the whole world. */ |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 532 | hist_browser__set_folding(browser, true); |
Arnaldo Carvalho de Melo | 3c916cc | 2010-08-25 17:18:35 -0300 | [diff] [blame] | 533 | break; |
Arnaldo Carvalho de Melo | 025bf7e | 2014-06-14 15:44:52 +0200 | [diff] [blame] | 534 | case 'H': |
| 535 | browser->show_headers = !browser->show_headers; |
| 536 | hist_browser__update_rows(browser); |
| 537 | break; |
Arnaldo Carvalho de Melo | cf95800 | 2011-10-20 16:59:15 -0200 | [diff] [blame] | 538 | case K_ENTER: |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 539 | if (hist_browser__toggle_fold(browser)) |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 540 | break; |
| 541 | /* fall thru */ |
| 542 | default: |
Arnaldo Carvalho de Melo | b50e003 | 2010-08-11 10:07:43 -0300 | [diff] [blame] | 543 | goto out; |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 544 | } |
| 545 | } |
Arnaldo Carvalho de Melo | b50e003 | 2010-08-11 10:07:43 -0300 | [diff] [blame] | 546 | out: |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 547 | ui_browser__hide(&browser->b); |
Arnaldo Carvalho de Melo | b50e003 | 2010-08-11 10:07:43 -0300 | [diff] [blame] | 548 | return key; |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 549 | } |
| 550 | |
Namhyung Kim | 39ee533 | 2014-08-22 09:13:21 +0900 | [diff] [blame] | 551 | struct callchain_print_arg { |
| 552 | /* for hists browser */ |
| 553 | off_t row_offset; |
| 554 | bool is_current_entry; |
| 555 | |
| 556 | /* for file dump */ |
| 557 | FILE *fp; |
| 558 | int printed; |
| 559 | }; |
| 560 | |
| 561 | typedef void (*print_callchain_entry_fn)(struct hist_browser *browser, |
| 562 | struct callchain_list *chain, |
| 563 | const char *str, int offset, |
| 564 | unsigned short row, |
| 565 | struct callchain_print_arg *arg); |
| 566 | |
Namhyung Kim | f4536dd | 2014-08-20 17:07:57 +0900 | [diff] [blame] | 567 | static void hist_browser__show_callchain_entry(struct hist_browser *browser, |
| 568 | struct callchain_list *chain, |
Namhyung Kim | 39ee533 | 2014-08-22 09:13:21 +0900 | [diff] [blame] | 569 | const char *str, int offset, |
| 570 | unsigned short row, |
| 571 | struct callchain_print_arg *arg) |
Namhyung Kim | f4536dd | 2014-08-20 17:07:57 +0900 | [diff] [blame] | 572 | { |
| 573 | int color, width; |
Namhyung Kim | 39ee533 | 2014-08-22 09:13:21 +0900 | [diff] [blame] | 574 | char folded_sign = callchain_list__folded(chain); |
Arnaldo Carvalho de Melo | 70e9727 | 2015-03-19 16:07:21 -0300 | [diff] [blame] | 575 | bool show_annotated = browser->show_dso && chain->ms.sym && symbol__annotation(chain->ms.sym)->src; |
Namhyung Kim | f4536dd | 2014-08-20 17:07:57 +0900 | [diff] [blame] | 576 | |
| 577 | color = HE_COLORSET_NORMAL; |
| 578 | width = browser->b.width - (offset + 2); |
| 579 | if (ui_browser__is_current_entry(&browser->b, row)) { |
| 580 | browser->selection = &chain->ms; |
| 581 | color = HE_COLORSET_SELECTED; |
Namhyung Kim | 39ee533 | 2014-08-22 09:13:21 +0900 | [diff] [blame] | 582 | arg->is_current_entry = true; |
Namhyung Kim | f4536dd | 2014-08-20 17:07:57 +0900 | [diff] [blame] | 583 | } |
| 584 | |
| 585 | ui_browser__set_color(&browser->b, color); |
| 586 | hist_browser__gotorc(browser, row, 0); |
Arnaldo Carvalho de Melo | 26270a0 | 2015-08-11 12:24:27 -0300 | [diff] [blame] | 587 | ui_browser__write_nstring(&browser->b, " ", offset); |
Arnaldo Carvalho de Melo | 517dfdb | 2015-08-11 12:50:55 -0300 | [diff] [blame] | 588 | ui_browser__printf(&browser->b, "%c", folded_sign); |
Arnaldo Carvalho de Melo | 70e9727 | 2015-03-19 16:07:21 -0300 | [diff] [blame] | 589 | ui_browser__write_graph(&browser->b, show_annotated ? SLSMG_RARROW_CHAR : ' '); |
Arnaldo Carvalho de Melo | 26270a0 | 2015-08-11 12:24:27 -0300 | [diff] [blame] | 590 | ui_browser__write_nstring(&browser->b, str, width); |
Namhyung Kim | f4536dd | 2014-08-20 17:07:57 +0900 | [diff] [blame] | 591 | } |
| 592 | |
Namhyung Kim | 39ee533 | 2014-08-22 09:13:21 +0900 | [diff] [blame] | 593 | static void hist_browser__fprintf_callchain_entry(struct hist_browser *b __maybe_unused, |
| 594 | struct callchain_list *chain, |
| 595 | const char *str, int offset, |
| 596 | unsigned short row __maybe_unused, |
| 597 | struct callchain_print_arg *arg) |
| 598 | { |
| 599 | char folded_sign = callchain_list__folded(chain); |
| 600 | |
| 601 | arg->printed += fprintf(arg->fp, "%*s%c %s\n", offset, " ", |
| 602 | folded_sign, str); |
| 603 | } |
| 604 | |
| 605 | typedef bool (*check_output_full_fn)(struct hist_browser *browser, |
| 606 | unsigned short row); |
| 607 | |
| 608 | static bool hist_browser__check_output_full(struct hist_browser *browser, |
| 609 | unsigned short row) |
| 610 | { |
| 611 | return browser->b.rows == row; |
| 612 | } |
| 613 | |
| 614 | static bool hist_browser__check_dump_full(struct hist_browser *browser __maybe_unused, |
| 615 | unsigned short row __maybe_unused) |
| 616 | { |
| 617 | return false; |
| 618 | } |
| 619 | |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 620 | #define LEVEL_OFFSET_STEP 3 |
| 621 | |
Namhyung Kim | 18bb838 | 2015-11-09 14:45:42 +0900 | [diff] [blame] | 622 | static int hist_browser__show_callchain_list(struct hist_browser *browser, |
| 623 | struct callchain_node *node, |
| 624 | struct callchain_list *chain, |
| 625 | unsigned short row, u64 total, |
| 626 | bool need_percent, int offset, |
| 627 | print_callchain_entry_fn print, |
| 628 | struct callchain_print_arg *arg) |
| 629 | { |
| 630 | char bf[1024], *alloc_str; |
| 631 | const char *str; |
| 632 | |
| 633 | if (arg->row_offset != 0) { |
| 634 | arg->row_offset--; |
| 635 | return 0; |
| 636 | } |
| 637 | |
| 638 | alloc_str = NULL; |
| 639 | str = callchain_list__sym_name(chain, bf, sizeof(bf), |
| 640 | browser->show_dso); |
| 641 | |
| 642 | if (need_percent) { |
| 643 | char buf[64]; |
| 644 | |
| 645 | callchain_node__scnprintf_value(node, buf, sizeof(buf), |
| 646 | total); |
| 647 | |
| 648 | if (asprintf(&alloc_str, "%s %s", buf, str) < 0) |
| 649 | str = "Not enough memory!"; |
| 650 | else |
| 651 | str = alloc_str; |
| 652 | } |
| 653 | |
| 654 | print(browser, chain, str, offset, row, arg); |
| 655 | |
| 656 | free(alloc_str); |
| 657 | return 1; |
| 658 | } |
| 659 | |
Namhyung Kim | 59c624e | 2016-01-28 00:40:56 +0900 | [diff] [blame] | 660 | static bool check_percent_display(struct rb_node *node, u64 parent_total) |
| 661 | { |
| 662 | struct callchain_node *child; |
| 663 | |
| 664 | if (node == NULL) |
| 665 | return false; |
| 666 | |
| 667 | if (rb_next(node)) |
| 668 | return true; |
| 669 | |
| 670 | child = rb_entry(node, struct callchain_node, rb_node); |
| 671 | return callchain_cumul_hits(child) != parent_total; |
| 672 | } |
| 673 | |
Namhyung Kim | 4b3a321 | 2015-11-09 14:45:43 +0900 | [diff] [blame] | 674 | static int hist_browser__show_callchain_flat(struct hist_browser *browser, |
| 675 | struct rb_root *root, |
| 676 | unsigned short row, u64 total, |
Namhyung Kim | 59c624e | 2016-01-28 00:40:56 +0900 | [diff] [blame] | 677 | u64 parent_total, |
Namhyung Kim | 4b3a321 | 2015-11-09 14:45:43 +0900 | [diff] [blame] | 678 | print_callchain_entry_fn print, |
| 679 | struct callchain_print_arg *arg, |
| 680 | check_output_full_fn is_output_full) |
| 681 | { |
| 682 | struct rb_node *node; |
| 683 | int first_row = row, offset = LEVEL_OFFSET_STEP; |
| 684 | bool need_percent; |
| 685 | |
| 686 | node = rb_first(root); |
Namhyung Kim | 59c624e | 2016-01-28 00:40:56 +0900 | [diff] [blame] | 687 | need_percent = check_percent_display(node, parent_total); |
Namhyung Kim | 4b3a321 | 2015-11-09 14:45:43 +0900 | [diff] [blame] | 688 | |
| 689 | while (node) { |
| 690 | struct callchain_node *child = rb_entry(node, struct callchain_node, rb_node); |
| 691 | struct rb_node *next = rb_next(node); |
| 692 | struct callchain_list *chain; |
| 693 | char folded_sign = ' '; |
| 694 | int first = true; |
| 695 | int extra_offset = 0; |
| 696 | |
| 697 | list_for_each_entry(chain, &child->parent_val, list) { |
| 698 | bool was_first = first; |
| 699 | |
| 700 | if (first) |
| 701 | first = false; |
| 702 | else if (need_percent) |
| 703 | extra_offset = LEVEL_OFFSET_STEP; |
| 704 | |
| 705 | folded_sign = callchain_list__folded(chain); |
| 706 | |
| 707 | row += hist_browser__show_callchain_list(browser, child, |
| 708 | chain, row, total, |
| 709 | was_first && need_percent, |
| 710 | offset + extra_offset, |
| 711 | print, arg); |
| 712 | |
| 713 | if (is_output_full(browser, row)) |
| 714 | goto out; |
| 715 | |
| 716 | if (folded_sign == '+') |
| 717 | goto next; |
| 718 | } |
| 719 | |
| 720 | list_for_each_entry(chain, &child->val, list) { |
| 721 | bool was_first = first; |
| 722 | |
| 723 | if (first) |
| 724 | first = false; |
| 725 | else if (need_percent) |
| 726 | extra_offset = LEVEL_OFFSET_STEP; |
| 727 | |
| 728 | folded_sign = callchain_list__folded(chain); |
| 729 | |
| 730 | row += hist_browser__show_callchain_list(browser, child, |
| 731 | chain, row, total, |
| 732 | was_first && need_percent, |
| 733 | offset + extra_offset, |
| 734 | print, arg); |
| 735 | |
| 736 | if (is_output_full(browser, row)) |
| 737 | goto out; |
| 738 | |
| 739 | if (folded_sign == '+') |
| 740 | break; |
| 741 | } |
| 742 | |
| 743 | next: |
| 744 | if (is_output_full(browser, row)) |
| 745 | break; |
| 746 | node = next; |
| 747 | } |
| 748 | out: |
| 749 | return row - first_row; |
| 750 | } |
| 751 | |
Namhyung Kim | 8c430a3 | 2015-11-09 14:45:44 +0900 | [diff] [blame] | 752 | static char *hist_browser__folded_callchain_str(struct hist_browser *browser, |
| 753 | struct callchain_list *chain, |
| 754 | char *value_str, char *old_str) |
| 755 | { |
| 756 | char bf[1024]; |
| 757 | const char *str; |
| 758 | char *new; |
| 759 | |
| 760 | str = callchain_list__sym_name(chain, bf, sizeof(bf), |
| 761 | browser->show_dso); |
| 762 | if (old_str) { |
| 763 | if (asprintf(&new, "%s%s%s", old_str, |
| 764 | symbol_conf.field_sep ?: ";", str) < 0) |
| 765 | new = NULL; |
| 766 | } else { |
| 767 | if (value_str) { |
| 768 | if (asprintf(&new, "%s %s", value_str, str) < 0) |
| 769 | new = NULL; |
| 770 | } else { |
| 771 | if (asprintf(&new, "%s", str) < 0) |
| 772 | new = NULL; |
| 773 | } |
| 774 | } |
| 775 | return new; |
| 776 | } |
| 777 | |
| 778 | static int hist_browser__show_callchain_folded(struct hist_browser *browser, |
| 779 | struct rb_root *root, |
| 780 | unsigned short row, u64 total, |
Namhyung Kim | 59c624e | 2016-01-28 00:40:56 +0900 | [diff] [blame] | 781 | u64 parent_total, |
Namhyung Kim | 8c430a3 | 2015-11-09 14:45:44 +0900 | [diff] [blame] | 782 | print_callchain_entry_fn print, |
| 783 | struct callchain_print_arg *arg, |
| 784 | check_output_full_fn is_output_full) |
| 785 | { |
| 786 | struct rb_node *node; |
| 787 | int first_row = row, offset = LEVEL_OFFSET_STEP; |
| 788 | bool need_percent; |
| 789 | |
| 790 | node = rb_first(root); |
Namhyung Kim | 59c624e | 2016-01-28 00:40:56 +0900 | [diff] [blame] | 791 | need_percent = check_percent_display(node, parent_total); |
Namhyung Kim | 8c430a3 | 2015-11-09 14:45:44 +0900 | [diff] [blame] | 792 | |
| 793 | while (node) { |
| 794 | struct callchain_node *child = rb_entry(node, struct callchain_node, rb_node); |
| 795 | struct rb_node *next = rb_next(node); |
| 796 | struct callchain_list *chain, *first_chain = NULL; |
| 797 | int first = true; |
| 798 | char *value_str = NULL, *value_str_alloc = NULL; |
| 799 | char *chain_str = NULL, *chain_str_alloc = NULL; |
| 800 | |
| 801 | if (arg->row_offset != 0) { |
| 802 | arg->row_offset--; |
| 803 | goto next; |
| 804 | } |
| 805 | |
| 806 | if (need_percent) { |
| 807 | char buf[64]; |
| 808 | |
| 809 | callchain_node__scnprintf_value(child, buf, sizeof(buf), total); |
| 810 | if (asprintf(&value_str, "%s", buf) < 0) { |
| 811 | value_str = (char *)"<...>"; |
| 812 | goto do_print; |
| 813 | } |
| 814 | value_str_alloc = value_str; |
| 815 | } |
| 816 | |
| 817 | list_for_each_entry(chain, &child->parent_val, list) { |
| 818 | chain_str = hist_browser__folded_callchain_str(browser, |
| 819 | chain, value_str, chain_str); |
| 820 | if (first) { |
| 821 | first = false; |
| 822 | first_chain = chain; |
| 823 | } |
| 824 | |
| 825 | if (chain_str == NULL) { |
| 826 | chain_str = (char *)"Not enough memory!"; |
| 827 | goto do_print; |
| 828 | } |
| 829 | |
| 830 | chain_str_alloc = chain_str; |
| 831 | } |
| 832 | |
| 833 | list_for_each_entry(chain, &child->val, list) { |
| 834 | chain_str = hist_browser__folded_callchain_str(browser, |
| 835 | chain, value_str, chain_str); |
| 836 | if (first) { |
| 837 | first = false; |
| 838 | first_chain = chain; |
| 839 | } |
| 840 | |
| 841 | if (chain_str == NULL) { |
| 842 | chain_str = (char *)"Not enough memory!"; |
| 843 | goto do_print; |
| 844 | } |
| 845 | |
| 846 | chain_str_alloc = chain_str; |
| 847 | } |
| 848 | |
| 849 | do_print: |
| 850 | print(browser, first_chain, chain_str, offset, row++, arg); |
| 851 | free(value_str_alloc); |
| 852 | free(chain_str_alloc); |
| 853 | |
| 854 | next: |
| 855 | if (is_output_full(browser, row)) |
| 856 | break; |
| 857 | node = next; |
| 858 | } |
| 859 | |
| 860 | return row - first_row; |
| 861 | } |
| 862 | |
Namhyung Kim | 0c841c6 | 2016-01-28 00:40:54 +0900 | [diff] [blame] | 863 | static int hist_browser__show_callchain_graph(struct hist_browser *browser, |
Namhyung Kim | c09a7e7 | 2014-08-21 10:15:45 +0900 | [diff] [blame] | 864 | struct rb_root *root, int level, |
Namhyung Kim | 39ee533 | 2014-08-22 09:13:21 +0900 | [diff] [blame] | 865 | unsigned short row, u64 total, |
Namhyung Kim | 5eca104 | 2016-01-28 00:40:55 +0900 | [diff] [blame] | 866 | u64 parent_total, |
Namhyung Kim | 39ee533 | 2014-08-22 09:13:21 +0900 | [diff] [blame] | 867 | print_callchain_entry_fn print, |
| 868 | struct callchain_print_arg *arg, |
| 869 | check_output_full_fn is_output_full) |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 870 | { |
| 871 | struct rb_node *node; |
Namhyung Kim | f4536dd | 2014-08-20 17:07:57 +0900 | [diff] [blame] | 872 | int first_row = row, offset = level * LEVEL_OFFSET_STEP; |
Namhyung Kim | 4087d11 | 2014-11-24 17:13:26 +0900 | [diff] [blame] | 873 | bool need_percent; |
Namhyung Kim | 5eca104 | 2016-01-28 00:40:55 +0900 | [diff] [blame] | 874 | u64 percent_total = total; |
| 875 | |
| 876 | if (callchain_param.mode == CHAIN_GRAPH_REL) |
| 877 | percent_total = parent_total; |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 878 | |
Namhyung Kim | c09a7e7 | 2014-08-21 10:15:45 +0900 | [diff] [blame] | 879 | node = rb_first(root); |
Namhyung Kim | 59c624e | 2016-01-28 00:40:56 +0900 | [diff] [blame] | 880 | need_percent = check_percent_display(node, parent_total); |
Namhyung Kim | 4087d11 | 2014-11-24 17:13:26 +0900 | [diff] [blame] | 881 | |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 882 | while (node) { |
| 883 | struct callchain_node *child = rb_entry(node, struct callchain_node, rb_node); |
| 884 | struct rb_node *next = rb_next(node); |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 885 | struct callchain_list *chain; |
| 886 | char folded_sign = ' '; |
| 887 | int first = true; |
| 888 | int extra_offset = 0; |
| 889 | |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 890 | list_for_each_entry(chain, &child->val, list) { |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 891 | bool was_first = first; |
| 892 | |
Arnaldo Carvalho de Melo | 163caed | 2010-08-25 16:30:03 -0300 | [diff] [blame] | 893 | if (first) |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 894 | first = false; |
Namhyung Kim | 4087d11 | 2014-11-24 17:13:26 +0900 | [diff] [blame] | 895 | else if (need_percent) |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 896 | extra_offset = LEVEL_OFFSET_STEP; |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 897 | |
| 898 | folded_sign = callchain_list__folded(chain); |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 899 | |
Namhyung Kim | 18bb838 | 2015-11-09 14:45:42 +0900 | [diff] [blame] | 900 | row += hist_browser__show_callchain_list(browser, child, |
Namhyung Kim | 5eca104 | 2016-01-28 00:40:55 +0900 | [diff] [blame] | 901 | chain, row, percent_total, |
Namhyung Kim | 18bb838 | 2015-11-09 14:45:42 +0900 | [diff] [blame] | 902 | was_first && need_percent, |
| 903 | offset + extra_offset, |
| 904 | print, arg); |
Namhyung Kim | c09a7e7 | 2014-08-21 10:15:45 +0900 | [diff] [blame] | 905 | |
Namhyung Kim | 18bb838 | 2015-11-09 14:45:42 +0900 | [diff] [blame] | 906 | if (is_output_full(browser, row)) |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 907 | goto out; |
Namhyung Kim | 18bb838 | 2015-11-09 14:45:42 +0900 | [diff] [blame] | 908 | |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 909 | if (folded_sign == '+') |
| 910 | break; |
| 911 | } |
| 912 | |
| 913 | if (folded_sign == '-') { |
| 914 | const int new_level = level + (extra_offset ? 2 : 1); |
Namhyung Kim | c09a7e7 | 2014-08-21 10:15:45 +0900 | [diff] [blame] | 915 | |
Namhyung Kim | 0c841c6 | 2016-01-28 00:40:54 +0900 | [diff] [blame] | 916 | row += hist_browser__show_callchain_graph(browser, &child->rb_root, |
Namhyung Kim | 5eca104 | 2016-01-28 00:40:55 +0900 | [diff] [blame] | 917 | new_level, row, total, |
| 918 | child->children_hit, |
Namhyung Kim | 39ee533 | 2014-08-22 09:13:21 +0900 | [diff] [blame] | 919 | print, arg, is_output_full); |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 920 | } |
Namhyung Kim | 39ee533 | 2014-08-22 09:13:21 +0900 | [diff] [blame] | 921 | if (is_output_full(browser, row)) |
Namhyung Kim | c09a7e7 | 2014-08-21 10:15:45 +0900 | [diff] [blame] | 922 | break; |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 923 | node = next; |
| 924 | } |
| 925 | out: |
| 926 | return row - first_row; |
| 927 | } |
| 928 | |
Namhyung Kim | 0c841c6 | 2016-01-28 00:40:54 +0900 | [diff] [blame] | 929 | static int hist_browser__show_callchain(struct hist_browser *browser, |
| 930 | struct hist_entry *entry, int level, |
| 931 | unsigned short row, |
| 932 | print_callchain_entry_fn print, |
| 933 | struct callchain_print_arg *arg, |
| 934 | check_output_full_fn is_output_full) |
| 935 | { |
| 936 | u64 total = hists__total_period(entry->hists); |
Namhyung Kim | 5eca104 | 2016-01-28 00:40:55 +0900 | [diff] [blame] | 937 | u64 parent_total; |
Namhyung Kim | 0c841c6 | 2016-01-28 00:40:54 +0900 | [diff] [blame] | 938 | int printed; |
| 939 | |
Namhyung Kim | 5eca104 | 2016-01-28 00:40:55 +0900 | [diff] [blame] | 940 | if (symbol_conf.cumulate_callchain) |
| 941 | parent_total = entry->stat_acc->period; |
| 942 | else |
| 943 | parent_total = entry->stat.period; |
Namhyung Kim | 0c841c6 | 2016-01-28 00:40:54 +0900 | [diff] [blame] | 944 | |
| 945 | if (callchain_param.mode == CHAIN_FLAT) { |
| 946 | printed = hist_browser__show_callchain_flat(browser, |
Namhyung Kim | 5eca104 | 2016-01-28 00:40:55 +0900 | [diff] [blame] | 947 | &entry->sorted_chain, row, |
| 948 | total, parent_total, print, arg, |
| 949 | is_output_full); |
Namhyung Kim | 0c841c6 | 2016-01-28 00:40:54 +0900 | [diff] [blame] | 950 | } else if (callchain_param.mode == CHAIN_FOLDED) { |
| 951 | printed = hist_browser__show_callchain_folded(browser, |
Namhyung Kim | 5eca104 | 2016-01-28 00:40:55 +0900 | [diff] [blame] | 952 | &entry->sorted_chain, row, |
| 953 | total, parent_total, print, arg, |
| 954 | is_output_full); |
Namhyung Kim | 0c841c6 | 2016-01-28 00:40:54 +0900 | [diff] [blame] | 955 | } else { |
| 956 | printed = hist_browser__show_callchain_graph(browser, |
Namhyung Kim | 5eca104 | 2016-01-28 00:40:55 +0900 | [diff] [blame] | 957 | &entry->sorted_chain, level, row, |
| 958 | total, parent_total, print, arg, |
| 959 | is_output_full); |
Namhyung Kim | 0c841c6 | 2016-01-28 00:40:54 +0900 | [diff] [blame] | 960 | } |
| 961 | |
| 962 | if (arg->is_current_entry) |
| 963 | browser->he_selection = entry; |
| 964 | |
| 965 | return printed; |
| 966 | } |
| 967 | |
Namhyung Kim | 8970146 | 2013-01-22 18:09:38 +0900 | [diff] [blame] | 968 | struct hpp_arg { |
| 969 | struct ui_browser *b; |
| 970 | char folded_sign; |
| 971 | bool current_entry; |
| 972 | }; |
| 973 | |
Namhyung Kim | 2f6d900 | 2014-03-03 10:14:05 +0900 | [diff] [blame] | 974 | static int __hpp__slsmg_color_printf(struct perf_hpp *hpp, const char *fmt, ...) |
| 975 | { |
| 976 | struct hpp_arg *arg = hpp->ptr; |
Namhyung Kim | d675107 | 2014-07-31 14:47:36 +0900 | [diff] [blame] | 977 | int ret, len; |
Namhyung Kim | 2f6d900 | 2014-03-03 10:14:05 +0900 | [diff] [blame] | 978 | va_list args; |
| 979 | double percent; |
| 980 | |
| 981 | va_start(args, fmt); |
Namhyung Kim | d675107 | 2014-07-31 14:47:36 +0900 | [diff] [blame] | 982 | len = va_arg(args, int); |
Namhyung Kim | 2f6d900 | 2014-03-03 10:14:05 +0900 | [diff] [blame] | 983 | percent = va_arg(args, double); |
| 984 | va_end(args); |
Namhyung Kim | 5aed9d2 | 2013-01-22 18:09:35 +0900 | [diff] [blame] | 985 | |
Namhyung Kim | 8970146 | 2013-01-22 18:09:38 +0900 | [diff] [blame] | 986 | ui_browser__set_percent_color(arg->b, percent, arg->current_entry); |
Namhyung Kim | 5aed9d2 | 2013-01-22 18:09:35 +0900 | [diff] [blame] | 987 | |
Namhyung Kim | d675107 | 2014-07-31 14:47:36 +0900 | [diff] [blame] | 988 | ret = scnprintf(hpp->buf, hpp->size, fmt, len, percent); |
Arnaldo Carvalho de Melo | 517dfdb | 2015-08-11 12:50:55 -0300 | [diff] [blame] | 989 | ui_browser__printf(arg->b, "%s", hpp->buf); |
Namhyung Kim | 8970146 | 2013-01-22 18:09:38 +0900 | [diff] [blame] | 990 | |
Namhyung Kim | 2f6d900 | 2014-03-03 10:14:05 +0900 | [diff] [blame] | 991 | advance_hpp(hpp, ret); |
Namhyung Kim | 5aed9d2 | 2013-01-22 18:09:35 +0900 | [diff] [blame] | 992 | return ret; |
Namhyung Kim | f5951d5 | 2012-09-03 11:53:09 +0900 | [diff] [blame] | 993 | } |
| 994 | |
Namhyung Kim | fb821c9e | 2014-03-03 17:05:19 +0900 | [diff] [blame] | 995 | #define __HPP_COLOR_PERCENT_FN(_type, _field) \ |
Namhyung Kim | 5aed9d2 | 2013-01-22 18:09:35 +0900 | [diff] [blame] | 996 | static u64 __hpp_get_##_field(struct hist_entry *he) \ |
| 997 | { \ |
| 998 | return he->stat._field; \ |
| 999 | } \ |
| 1000 | \ |
Jiri Olsa | 2c5d4b4 | 2013-01-31 23:31:11 +0100 | [diff] [blame] | 1001 | static int \ |
Namhyung Kim | 5b59166 | 2014-07-31 14:47:38 +0900 | [diff] [blame] | 1002 | hist_browser__hpp_color_##_type(struct perf_hpp_fmt *fmt, \ |
Jiri Olsa | 2c5d4b4 | 2013-01-31 23:31:11 +0100 | [diff] [blame] | 1003 | struct perf_hpp *hpp, \ |
| 1004 | struct hist_entry *he) \ |
Namhyung Kim | 5aed9d2 | 2013-01-22 18:09:35 +0900 | [diff] [blame] | 1005 | { \ |
Namhyung Kim | 5b59166 | 2014-07-31 14:47:38 +0900 | [diff] [blame] | 1006 | return hpp__fmt(fmt, hpp, he, __hpp_get_##_field, " %*.2f%%", \ |
| 1007 | __hpp__slsmg_color_printf, true); \ |
Namhyung Kim | 5aed9d2 | 2013-01-22 18:09:35 +0900 | [diff] [blame] | 1008 | } |
Namhyung Kim | f5951d5 | 2012-09-03 11:53:09 +0900 | [diff] [blame] | 1009 | |
Namhyung Kim | 0434ddd | 2013-10-30 16:12:59 +0900 | [diff] [blame] | 1010 | #define __HPP_COLOR_ACC_PERCENT_FN(_type, _field) \ |
| 1011 | static u64 __hpp_get_acc_##_field(struct hist_entry *he) \ |
| 1012 | { \ |
| 1013 | return he->stat_acc->_field; \ |
| 1014 | } \ |
| 1015 | \ |
| 1016 | static int \ |
Namhyung Kim | 5b59166 | 2014-07-31 14:47:38 +0900 | [diff] [blame] | 1017 | hist_browser__hpp_color_##_type(struct perf_hpp_fmt *fmt, \ |
Namhyung Kim | 0434ddd | 2013-10-30 16:12:59 +0900 | [diff] [blame] | 1018 | struct perf_hpp *hpp, \ |
| 1019 | struct hist_entry *he) \ |
| 1020 | { \ |
| 1021 | if (!symbol_conf.cumulate_callchain) { \ |
Arnaldo Carvalho de Melo | 517dfdb | 2015-08-11 12:50:55 -0300 | [diff] [blame] | 1022 | struct hpp_arg *arg = hpp->ptr; \ |
Namhyung Kim | 5b59166 | 2014-07-31 14:47:38 +0900 | [diff] [blame] | 1023 | int len = fmt->user_len ?: fmt->len; \ |
Namhyung Kim | d675107 | 2014-07-31 14:47:36 +0900 | [diff] [blame] | 1024 | int ret = scnprintf(hpp->buf, hpp->size, \ |
Namhyung Kim | 5b59166 | 2014-07-31 14:47:38 +0900 | [diff] [blame] | 1025 | "%*s", len, "N/A"); \ |
Arnaldo Carvalho de Melo | 517dfdb | 2015-08-11 12:50:55 -0300 | [diff] [blame] | 1026 | ui_browser__printf(arg->b, "%s", hpp->buf); \ |
Namhyung Kim | 0434ddd | 2013-10-30 16:12:59 +0900 | [diff] [blame] | 1027 | \ |
| 1028 | return ret; \ |
| 1029 | } \ |
Namhyung Kim | 5b59166 | 2014-07-31 14:47:38 +0900 | [diff] [blame] | 1030 | return hpp__fmt(fmt, hpp, he, __hpp_get_acc_##_field, \ |
| 1031 | " %*.2f%%", __hpp__slsmg_color_printf, true); \ |
Namhyung Kim | 0434ddd | 2013-10-30 16:12:59 +0900 | [diff] [blame] | 1032 | } |
| 1033 | |
Namhyung Kim | fb821c9e | 2014-03-03 17:05:19 +0900 | [diff] [blame] | 1034 | __HPP_COLOR_PERCENT_FN(overhead, period) |
| 1035 | __HPP_COLOR_PERCENT_FN(overhead_sys, period_sys) |
| 1036 | __HPP_COLOR_PERCENT_FN(overhead_us, period_us) |
| 1037 | __HPP_COLOR_PERCENT_FN(overhead_guest_sys, period_guest_sys) |
| 1038 | __HPP_COLOR_PERCENT_FN(overhead_guest_us, period_guest_us) |
Namhyung Kim | 0434ddd | 2013-10-30 16:12:59 +0900 | [diff] [blame] | 1039 | __HPP_COLOR_ACC_PERCENT_FN(overhead_acc, period) |
Namhyung Kim | 5aed9d2 | 2013-01-22 18:09:35 +0900 | [diff] [blame] | 1040 | |
| 1041 | #undef __HPP_COLOR_PERCENT_FN |
Namhyung Kim | 0434ddd | 2013-10-30 16:12:59 +0900 | [diff] [blame] | 1042 | #undef __HPP_COLOR_ACC_PERCENT_FN |
Namhyung Kim | f5951d5 | 2012-09-03 11:53:09 +0900 | [diff] [blame] | 1043 | |
| 1044 | void hist_browser__init_hpp(void) |
| 1045 | { |
Namhyung Kim | f5951d5 | 2012-09-03 11:53:09 +0900 | [diff] [blame] | 1046 | perf_hpp__format[PERF_HPP__OVERHEAD].color = |
| 1047 | hist_browser__hpp_color_overhead; |
| 1048 | perf_hpp__format[PERF_HPP__OVERHEAD_SYS].color = |
| 1049 | hist_browser__hpp_color_overhead_sys; |
| 1050 | perf_hpp__format[PERF_HPP__OVERHEAD_US].color = |
| 1051 | hist_browser__hpp_color_overhead_us; |
| 1052 | perf_hpp__format[PERF_HPP__OVERHEAD_GUEST_SYS].color = |
| 1053 | hist_browser__hpp_color_overhead_guest_sys; |
| 1054 | perf_hpp__format[PERF_HPP__OVERHEAD_GUEST_US].color = |
| 1055 | hist_browser__hpp_color_overhead_guest_us; |
Namhyung Kim | 0434ddd | 2013-10-30 16:12:59 +0900 | [diff] [blame] | 1056 | perf_hpp__format[PERF_HPP__OVERHEAD_ACC].color = |
| 1057 | hist_browser__hpp_color_overhead_acc; |
Namhyung Kim | f5951d5 | 2012-09-03 11:53:09 +0900 | [diff] [blame] | 1058 | } |
| 1059 | |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 1060 | static int hist_browser__show_entry(struct hist_browser *browser, |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1061 | struct hist_entry *entry, |
| 1062 | unsigned short row) |
| 1063 | { |
| 1064 | char s[256]; |
Jiri Olsa | 1240005 | 2012-10-13 00:06:16 +0200 | [diff] [blame] | 1065 | int printed = 0; |
Namhyung Kim | 67d2591 | 2012-09-12 15:35:06 +0900 | [diff] [blame] | 1066 | int width = browser->b.width; |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1067 | char folded_sign = ' '; |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 1068 | bool current_entry = ui_browser__is_current_entry(&browser->b, row); |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1069 | off_t row_offset = entry->row_offset; |
Namhyung Kim | 63a1a3d | 2012-10-15 18:14:35 -0300 | [diff] [blame] | 1070 | bool first = true; |
Jiri Olsa | 1240005 | 2012-10-13 00:06:16 +0200 | [diff] [blame] | 1071 | struct perf_hpp_fmt *fmt; |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1072 | |
| 1073 | if (current_entry) { |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 1074 | browser->he_selection = entry; |
| 1075 | browser->selection = &entry->ms; |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1076 | } |
| 1077 | |
| 1078 | if (symbol_conf.use_callchain) { |
Arnaldo Carvalho de Melo | 163caed | 2010-08-25 16:30:03 -0300 | [diff] [blame] | 1079 | hist_entry__init_have_children(entry); |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1080 | folded_sign = hist_entry__folded(entry); |
| 1081 | } |
| 1082 | |
| 1083 | if (row_offset == 0) { |
Namhyung Kim | 8970146 | 2013-01-22 18:09:38 +0900 | [diff] [blame] | 1084 | struct hpp_arg arg = { |
Namhyung Kim | fb821c9e | 2014-03-03 17:05:19 +0900 | [diff] [blame] | 1085 | .b = &browser->b, |
Namhyung Kim | 8970146 | 2013-01-22 18:09:38 +0900 | [diff] [blame] | 1086 | .folded_sign = folded_sign, |
| 1087 | .current_entry = current_entry, |
| 1088 | }; |
Namhyung Kim | f5951d5 | 2012-09-03 11:53:09 +0900 | [diff] [blame] | 1089 | struct perf_hpp hpp = { |
| 1090 | .buf = s, |
| 1091 | .size = sizeof(s), |
Namhyung Kim | 8970146 | 2013-01-22 18:09:38 +0900 | [diff] [blame] | 1092 | .ptr = &arg, |
Namhyung Kim | f5951d5 | 2012-09-03 11:53:09 +0900 | [diff] [blame] | 1093 | }; |
Arnaldo Carvalho de Melo | c6c3c02 | 2015-08-11 17:22:43 -0300 | [diff] [blame] | 1094 | int column = 0; |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1095 | |
Arnaldo Carvalho de Melo | ca3ff33 | 2014-07-01 16:42:24 -0300 | [diff] [blame] | 1096 | hist_browser__gotorc(browser, row, 0); |
Namhyung Kim | f5951d5 | 2012-09-03 11:53:09 +0900 | [diff] [blame] | 1097 | |
Jiri Olsa | f0786af | 2016-01-18 10:24:23 +0100 | [diff] [blame] | 1098 | hists__for_each_format(browser->hists, fmt) { |
Namhyung Kim | 361459f | 2015-12-23 02:07:08 +0900 | [diff] [blame] | 1099 | if (perf_hpp__should_skip(fmt, entry->hists) || |
| 1100 | column++ < browser->b.horiz_scroll) |
Namhyung Kim | e67d49a | 2014-03-18 13:00:59 +0900 | [diff] [blame] | 1101 | continue; |
| 1102 | |
Namhyung Kim | fb821c9e | 2014-03-03 17:05:19 +0900 | [diff] [blame] | 1103 | if (current_entry && browser->b.navkeypressed) { |
| 1104 | ui_browser__set_color(&browser->b, |
| 1105 | HE_COLORSET_SELECTED); |
| 1106 | } else { |
| 1107 | ui_browser__set_color(&browser->b, |
| 1108 | HE_COLORSET_NORMAL); |
| 1109 | } |
| 1110 | |
| 1111 | if (first) { |
| 1112 | if (symbol_conf.use_callchain) { |
Arnaldo Carvalho de Melo | 517dfdb | 2015-08-11 12:50:55 -0300 | [diff] [blame] | 1113 | ui_browser__printf(&browser->b, "%c ", folded_sign); |
Namhyung Kim | fb821c9e | 2014-03-03 17:05:19 +0900 | [diff] [blame] | 1114 | width -= 2; |
| 1115 | } |
| 1116 | first = false; |
| 1117 | } else { |
Arnaldo Carvalho de Melo | 517dfdb | 2015-08-11 12:50:55 -0300 | [diff] [blame] | 1118 | ui_browser__printf(&browser->b, " "); |
Namhyung Kim | f5951d5 | 2012-09-03 11:53:09 +0900 | [diff] [blame] | 1119 | width -= 2; |
| 1120 | } |
| 1121 | |
Jiri Olsa | 1240005 | 2012-10-13 00:06:16 +0200 | [diff] [blame] | 1122 | if (fmt->color) { |
Jiri Olsa | 2c5d4b4 | 2013-01-31 23:31:11 +0100 | [diff] [blame] | 1123 | width -= fmt->color(fmt, &hpp, entry); |
Namhyung Kim | f5951d5 | 2012-09-03 11:53:09 +0900 | [diff] [blame] | 1124 | } else { |
Jiri Olsa | 2c5d4b4 | 2013-01-31 23:31:11 +0100 | [diff] [blame] | 1125 | width -= fmt->entry(fmt, &hpp, entry); |
Arnaldo Carvalho de Melo | 517dfdb | 2015-08-11 12:50:55 -0300 | [diff] [blame] | 1126 | ui_browser__printf(&browser->b, "%s", s); |
Namhyung Kim | f5951d5 | 2012-09-03 11:53:09 +0900 | [diff] [blame] | 1127 | } |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1128 | } |
Arnaldo Carvalho de Melo | c172f74 | 2011-10-18 14:31:35 -0200 | [diff] [blame] | 1129 | |
| 1130 | /* The scroll bar isn't being used */ |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 1131 | if (!browser->b.navkeypressed) |
Arnaldo Carvalho de Melo | c172f74 | 2011-10-18 14:31:35 -0200 | [diff] [blame] | 1132 | width += 1; |
| 1133 | |
Arnaldo Carvalho de Melo | 26270a0 | 2015-08-11 12:24:27 -0300 | [diff] [blame] | 1134 | ui_browser__write_nstring(&browser->b, "", width); |
Namhyung Kim | 26d8b33 | 2014-03-03 16:16:20 +0900 | [diff] [blame] | 1135 | |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1136 | ++row; |
| 1137 | ++printed; |
| 1138 | } else |
| 1139 | --row_offset; |
| 1140 | |
Arnaldo Carvalho de Melo | 62c95ae | 2014-07-01 11:07:54 -0300 | [diff] [blame] | 1141 | if (folded_sign == '-' && row != browser->b.rows) { |
Namhyung Kim | 39ee533 | 2014-08-22 09:13:21 +0900 | [diff] [blame] | 1142 | struct callchain_print_arg arg = { |
| 1143 | .row_offset = row_offset, |
| 1144 | .is_current_entry = current_entry, |
| 1145 | }; |
Namhyung Kim | c09a7e7 | 2014-08-21 10:15:45 +0900 | [diff] [blame] | 1146 | |
Namhyung Kim | 0c841c6 | 2016-01-28 00:40:54 +0900 | [diff] [blame] | 1147 | printed += hist_browser__show_callchain(browser, entry, 1, row, |
Namhyung Kim | 4b3a321 | 2015-11-09 14:45:43 +0900 | [diff] [blame] | 1148 | hist_browser__show_callchain_entry, &arg, |
| 1149 | hist_browser__check_output_full); |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1150 | } |
| 1151 | |
| 1152 | return printed; |
| 1153 | } |
| 1154 | |
Jiri Olsa | 81a888f | 2014-06-14 15:44:52 +0200 | [diff] [blame] | 1155 | static int advance_hpp_check(struct perf_hpp *hpp, int inc) |
| 1156 | { |
| 1157 | advance_hpp(hpp, inc); |
| 1158 | return hpp->size <= 0; |
| 1159 | } |
| 1160 | |
Arnaldo Carvalho de Melo | c6c3c02 | 2015-08-11 17:22:43 -0300 | [diff] [blame] | 1161 | static int hists_browser__scnprintf_headers(struct hist_browser *browser, char *buf, size_t size) |
Jiri Olsa | 81a888f | 2014-06-14 15:44:52 +0200 | [diff] [blame] | 1162 | { |
Arnaldo Carvalho de Melo | c6c3c02 | 2015-08-11 17:22:43 -0300 | [diff] [blame] | 1163 | struct hists *hists = browser->hists; |
Jiri Olsa | 81a888f | 2014-06-14 15:44:52 +0200 | [diff] [blame] | 1164 | struct perf_hpp dummy_hpp = { |
| 1165 | .buf = buf, |
| 1166 | .size = size, |
| 1167 | }; |
| 1168 | struct perf_hpp_fmt *fmt; |
| 1169 | size_t ret = 0; |
Arnaldo Carvalho de Melo | c6c3c02 | 2015-08-11 17:22:43 -0300 | [diff] [blame] | 1170 | int column = 0; |
Jiri Olsa | 81a888f | 2014-06-14 15:44:52 +0200 | [diff] [blame] | 1171 | |
| 1172 | if (symbol_conf.use_callchain) { |
| 1173 | ret = scnprintf(buf, size, " "); |
| 1174 | if (advance_hpp_check(&dummy_hpp, ret)) |
| 1175 | return ret; |
| 1176 | } |
| 1177 | |
Jiri Olsa | f0786af | 2016-01-18 10:24:23 +0100 | [diff] [blame] | 1178 | hists__for_each_format(browser->hists, fmt) { |
Namhyung Kim | 361459f | 2015-12-23 02:07:08 +0900 | [diff] [blame] | 1179 | if (perf_hpp__should_skip(fmt, hists) || column++ < browser->b.horiz_scroll) |
Jiri Olsa | 81a888f | 2014-06-14 15:44:52 +0200 | [diff] [blame] | 1180 | continue; |
| 1181 | |
Jiri Olsa | 81a888f | 2014-06-14 15:44:52 +0200 | [diff] [blame] | 1182 | ret = fmt->header(fmt, &dummy_hpp, hists_to_evsel(hists)); |
| 1183 | if (advance_hpp_check(&dummy_hpp, ret)) |
| 1184 | break; |
| 1185 | |
| 1186 | ret = scnprintf(dummy_hpp.buf, dummy_hpp.size, " "); |
| 1187 | if (advance_hpp_check(&dummy_hpp, ret)) |
| 1188 | break; |
| 1189 | } |
| 1190 | |
| 1191 | return ret; |
| 1192 | } |
| 1193 | |
Arnaldo Carvalho de Melo | 025bf7e | 2014-06-14 15:44:52 +0200 | [diff] [blame] | 1194 | static void hist_browser__show_headers(struct hist_browser *browser) |
| 1195 | { |
Jiri Olsa | 81a888f | 2014-06-14 15:44:52 +0200 | [diff] [blame] | 1196 | char headers[1024]; |
| 1197 | |
Arnaldo Carvalho de Melo | c6c3c02 | 2015-08-11 17:22:43 -0300 | [diff] [blame] | 1198 | hists_browser__scnprintf_headers(browser, headers, sizeof(headers)); |
Arnaldo Carvalho de Melo | 025bf7e | 2014-06-14 15:44:52 +0200 | [diff] [blame] | 1199 | ui_browser__gotorc(&browser->b, 0, 0); |
| 1200 | ui_browser__set_color(&browser->b, HE_COLORSET_ROOT); |
Arnaldo Carvalho de Melo | 26270a0 | 2015-08-11 12:24:27 -0300 | [diff] [blame] | 1201 | ui_browser__write_nstring(&browser->b, headers, browser->b.width + 1); |
Arnaldo Carvalho de Melo | 025bf7e | 2014-06-14 15:44:52 +0200 | [diff] [blame] | 1202 | } |
| 1203 | |
Arnaldo Carvalho de Melo | 437cfe7 | 2011-10-14 09:31:53 -0300 | [diff] [blame] | 1204 | static void ui_browser__hists_init_top(struct ui_browser *browser) |
| 1205 | { |
| 1206 | if (browser->top == NULL) { |
| 1207 | struct hist_browser *hb; |
| 1208 | |
| 1209 | hb = container_of(browser, struct hist_browser, b); |
| 1210 | browser->top = rb_first(&hb->hists->entries); |
| 1211 | } |
| 1212 | } |
| 1213 | |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 1214 | static unsigned int hist_browser__refresh(struct ui_browser *browser) |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1215 | { |
| 1216 | unsigned row = 0; |
Arnaldo Carvalho de Melo | 025bf7e | 2014-06-14 15:44:52 +0200 | [diff] [blame] | 1217 | u16 header_offset = 0; |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1218 | struct rb_node *nd; |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 1219 | struct hist_browser *hb = container_of(browser, struct hist_browser, b); |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1220 | |
Arnaldo Carvalho de Melo | 025bf7e | 2014-06-14 15:44:52 +0200 | [diff] [blame] | 1221 | if (hb->show_headers) { |
| 1222 | hist_browser__show_headers(hb); |
| 1223 | header_offset = 1; |
| 1224 | } |
| 1225 | |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 1226 | ui_browser__hists_init_top(browser); |
Wang Nan | 979d2ca | 2015-12-07 02:35:46 +0000 | [diff] [blame] | 1227 | hb->he_selection = NULL; |
| 1228 | hb->selection = NULL; |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1229 | |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 1230 | for (nd = browser->top; nd; nd = rb_next(nd)) { |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1231 | struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node); |
Namhyung Kim | 1413566 | 2013-10-31 10:17:39 +0900 | [diff] [blame] | 1232 | float percent; |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1233 | |
| 1234 | if (h->filtered) |
| 1235 | continue; |
| 1236 | |
Namhyung Kim | 1413566 | 2013-10-31 10:17:39 +0900 | [diff] [blame] | 1237 | percent = hist_entry__get_percent_limit(h); |
Namhyung Kim | 064f198 | 2013-05-14 11:09:04 +0900 | [diff] [blame] | 1238 | if (percent < hb->min_pcnt) |
| 1239 | continue; |
| 1240 | |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1241 | row += hist_browser__show_entry(hb, h, row); |
Arnaldo Carvalho de Melo | 62c95ae | 2014-07-01 11:07:54 -0300 | [diff] [blame] | 1242 | if (row == browser->rows) |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1243 | break; |
| 1244 | } |
| 1245 | |
Arnaldo Carvalho de Melo | 025bf7e | 2014-06-14 15:44:52 +0200 | [diff] [blame] | 1246 | return row + header_offset; |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1247 | } |
| 1248 | |
Namhyung Kim | 064f198 | 2013-05-14 11:09:04 +0900 | [diff] [blame] | 1249 | static struct rb_node *hists__filter_entries(struct rb_node *nd, |
Namhyung Kim | 064f198 | 2013-05-14 11:09:04 +0900 | [diff] [blame] | 1250 | float min_pcnt) |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1251 | { |
| 1252 | while (nd != NULL) { |
| 1253 | struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node); |
Namhyung Kim | 1413566 | 2013-10-31 10:17:39 +0900 | [diff] [blame] | 1254 | float percent = hist_entry__get_percent_limit(h); |
Namhyung Kim | 064f198 | 2013-05-14 11:09:04 +0900 | [diff] [blame] | 1255 | |
Namhyung Kim | c0f1527 | 2014-04-16 11:16:33 +0900 | [diff] [blame] | 1256 | if (!h->filtered && percent >= min_pcnt) |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1257 | return nd; |
| 1258 | |
| 1259 | nd = rb_next(nd); |
| 1260 | } |
| 1261 | |
| 1262 | return NULL; |
| 1263 | } |
| 1264 | |
Namhyung Kim | 064f198 | 2013-05-14 11:09:04 +0900 | [diff] [blame] | 1265 | static struct rb_node *hists__filter_prev_entries(struct rb_node *nd, |
Namhyung Kim | 064f198 | 2013-05-14 11:09:04 +0900 | [diff] [blame] | 1266 | float min_pcnt) |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1267 | { |
| 1268 | while (nd != NULL) { |
| 1269 | struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node); |
Namhyung Kim | 1413566 | 2013-10-31 10:17:39 +0900 | [diff] [blame] | 1270 | float percent = hist_entry__get_percent_limit(h); |
Namhyung Kim | 064f198 | 2013-05-14 11:09:04 +0900 | [diff] [blame] | 1271 | |
| 1272 | if (!h->filtered && percent >= min_pcnt) |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1273 | return nd; |
| 1274 | |
| 1275 | nd = rb_prev(nd); |
| 1276 | } |
| 1277 | |
| 1278 | return NULL; |
| 1279 | } |
| 1280 | |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 1281 | static void ui_browser__hists_seek(struct ui_browser *browser, |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1282 | off_t offset, int whence) |
| 1283 | { |
| 1284 | struct hist_entry *h; |
| 1285 | struct rb_node *nd; |
| 1286 | bool first = true; |
Namhyung Kim | 064f198 | 2013-05-14 11:09:04 +0900 | [diff] [blame] | 1287 | struct hist_browser *hb; |
| 1288 | |
| 1289 | hb = container_of(browser, struct hist_browser, b); |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1290 | |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 1291 | if (browser->nr_entries == 0) |
Arnaldo Carvalho de Melo | 6009891 | 2011-03-04 21:19:21 -0300 | [diff] [blame] | 1292 | return; |
| 1293 | |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 1294 | ui_browser__hists_init_top(browser); |
Arnaldo Carvalho de Melo | 437cfe7 | 2011-10-14 09:31:53 -0300 | [diff] [blame] | 1295 | |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1296 | switch (whence) { |
| 1297 | case SEEK_SET: |
Namhyung Kim | 064f198 | 2013-05-14 11:09:04 +0900 | [diff] [blame] | 1298 | nd = hists__filter_entries(rb_first(browser->entries), |
Namhyung Kim | 1413566 | 2013-10-31 10:17:39 +0900 | [diff] [blame] | 1299 | hb->min_pcnt); |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1300 | break; |
| 1301 | case SEEK_CUR: |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 1302 | nd = browser->top; |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1303 | goto do_offset; |
| 1304 | case SEEK_END: |
Namhyung Kim | 064f198 | 2013-05-14 11:09:04 +0900 | [diff] [blame] | 1305 | nd = hists__filter_prev_entries(rb_last(browser->entries), |
Namhyung Kim | 1413566 | 2013-10-31 10:17:39 +0900 | [diff] [blame] | 1306 | hb->min_pcnt); |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1307 | first = false; |
| 1308 | break; |
| 1309 | default: |
| 1310 | return; |
| 1311 | } |
| 1312 | |
| 1313 | /* |
| 1314 | * Moves not relative to the first visible entry invalidates its |
| 1315 | * row_offset: |
| 1316 | */ |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 1317 | h = rb_entry(browser->top, struct hist_entry, rb_node); |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1318 | h->row_offset = 0; |
| 1319 | |
| 1320 | /* |
| 1321 | * Here we have to check if nd is expanded (+), if it is we can't go |
| 1322 | * the next top level hist_entry, instead we must compute an offset of |
| 1323 | * what _not_ to show and not change the first visible entry. |
| 1324 | * |
| 1325 | * This offset increments when we are going from top to bottom and |
| 1326 | * decreases when we're going from bottom to top. |
| 1327 | * |
| 1328 | * As we don't have backpointers to the top level in the callchains |
| 1329 | * structure, we need to always print the whole hist_entry callchain, |
| 1330 | * skipping the first ones that are before the first visible entry |
| 1331 | * and stop when we printed enough lines to fill the screen. |
| 1332 | */ |
| 1333 | do_offset: |
Wang Nan | 837eeb7 | 2015-12-07 02:35:45 +0000 | [diff] [blame] | 1334 | if (!nd) |
| 1335 | return; |
| 1336 | |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1337 | if (offset > 0) { |
| 1338 | do { |
| 1339 | h = rb_entry(nd, struct hist_entry, rb_node); |
Namhyung Kim | 3698dab | 2015-05-05 23:55:46 +0900 | [diff] [blame] | 1340 | if (h->unfolded) { |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1341 | u16 remaining = h->nr_rows - h->row_offset; |
| 1342 | if (offset > remaining) { |
| 1343 | offset -= remaining; |
| 1344 | h->row_offset = 0; |
| 1345 | } else { |
| 1346 | h->row_offset += offset; |
| 1347 | offset = 0; |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 1348 | browser->top = nd; |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1349 | break; |
| 1350 | } |
| 1351 | } |
Namhyung Kim | 1413566 | 2013-10-31 10:17:39 +0900 | [diff] [blame] | 1352 | nd = hists__filter_entries(rb_next(nd), hb->min_pcnt); |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1353 | if (nd == NULL) |
| 1354 | break; |
| 1355 | --offset; |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 1356 | browser->top = nd; |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1357 | } while (offset != 0); |
| 1358 | } else if (offset < 0) { |
| 1359 | while (1) { |
| 1360 | h = rb_entry(nd, struct hist_entry, rb_node); |
Namhyung Kim | 3698dab | 2015-05-05 23:55:46 +0900 | [diff] [blame] | 1361 | if (h->unfolded) { |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1362 | if (first) { |
| 1363 | if (-offset > h->row_offset) { |
| 1364 | offset += h->row_offset; |
| 1365 | h->row_offset = 0; |
| 1366 | } else { |
| 1367 | h->row_offset += offset; |
| 1368 | offset = 0; |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 1369 | browser->top = nd; |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1370 | break; |
| 1371 | } |
| 1372 | } else { |
| 1373 | if (-offset > h->nr_rows) { |
| 1374 | offset += h->nr_rows; |
| 1375 | h->row_offset = 0; |
| 1376 | } else { |
| 1377 | h->row_offset = h->nr_rows + offset; |
| 1378 | offset = 0; |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 1379 | browser->top = nd; |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1380 | break; |
| 1381 | } |
| 1382 | } |
| 1383 | } |
| 1384 | |
Namhyung Kim | 1413566 | 2013-10-31 10:17:39 +0900 | [diff] [blame] | 1385 | nd = hists__filter_prev_entries(rb_prev(nd), |
Namhyung Kim | 064f198 | 2013-05-14 11:09:04 +0900 | [diff] [blame] | 1386 | hb->min_pcnt); |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1387 | if (nd == NULL) |
| 1388 | break; |
| 1389 | ++offset; |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 1390 | browser->top = nd; |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1391 | if (offset == 0) { |
| 1392 | /* |
| 1393 | * Last unfiltered hist_entry, check if it is |
| 1394 | * unfolded, if it is then we should have |
| 1395 | * row_offset at its last entry. |
| 1396 | */ |
| 1397 | h = rb_entry(nd, struct hist_entry, rb_node); |
Namhyung Kim | 3698dab | 2015-05-05 23:55:46 +0900 | [diff] [blame] | 1398 | if (h->unfolded) |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1399 | h->row_offset = h->nr_rows; |
| 1400 | break; |
| 1401 | } |
| 1402 | first = false; |
| 1403 | } |
| 1404 | } else { |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 1405 | browser->top = nd; |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1406 | h = rb_entry(nd, struct hist_entry, rb_node); |
| 1407 | h->row_offset = 0; |
| 1408 | } |
| 1409 | } |
| 1410 | |
Arnaldo Carvalho de Melo | aff3f3f | 2012-06-07 19:31:28 -0300 | [diff] [blame] | 1411 | static int hist_browser__fprintf_callchain(struct hist_browser *browser, |
Namhyung Kim | 39ee533 | 2014-08-22 09:13:21 +0900 | [diff] [blame] | 1412 | struct hist_entry *he, FILE *fp) |
Arnaldo Carvalho de Melo | aff3f3f | 2012-06-07 19:31:28 -0300 | [diff] [blame] | 1413 | { |
Namhyung Kim | 39ee533 | 2014-08-22 09:13:21 +0900 | [diff] [blame] | 1414 | struct callchain_print_arg arg = { |
| 1415 | .fp = fp, |
| 1416 | }; |
Arnaldo Carvalho de Melo | aff3f3f | 2012-06-07 19:31:28 -0300 | [diff] [blame] | 1417 | |
Namhyung Kim | 0c841c6 | 2016-01-28 00:40:54 +0900 | [diff] [blame] | 1418 | hist_browser__show_callchain(browser, he, 1, 0, |
Namhyung Kim | 39ee533 | 2014-08-22 09:13:21 +0900 | [diff] [blame] | 1419 | hist_browser__fprintf_callchain_entry, &arg, |
| 1420 | hist_browser__check_dump_full); |
| 1421 | return arg.printed; |
Arnaldo Carvalho de Melo | aff3f3f | 2012-06-07 19:31:28 -0300 | [diff] [blame] | 1422 | } |
| 1423 | |
| 1424 | static int hist_browser__fprintf_entry(struct hist_browser *browser, |
| 1425 | struct hist_entry *he, FILE *fp) |
| 1426 | { |
| 1427 | char s[8192]; |
Arnaldo Carvalho de Melo | aff3f3f | 2012-06-07 19:31:28 -0300 | [diff] [blame] | 1428 | int printed = 0; |
| 1429 | char folded_sign = ' '; |
Namhyung Kim | 26d8b33 | 2014-03-03 16:16:20 +0900 | [diff] [blame] | 1430 | struct perf_hpp hpp = { |
| 1431 | .buf = s, |
| 1432 | .size = sizeof(s), |
| 1433 | }; |
| 1434 | struct perf_hpp_fmt *fmt; |
| 1435 | bool first = true; |
| 1436 | int ret; |
Arnaldo Carvalho de Melo | aff3f3f | 2012-06-07 19:31:28 -0300 | [diff] [blame] | 1437 | |
| 1438 | if (symbol_conf.use_callchain) |
| 1439 | folded_sign = hist_entry__folded(he); |
| 1440 | |
Arnaldo Carvalho de Melo | aff3f3f | 2012-06-07 19:31:28 -0300 | [diff] [blame] | 1441 | if (symbol_conf.use_callchain) |
| 1442 | printed += fprintf(fp, "%c ", folded_sign); |
| 1443 | |
Jiri Olsa | f0786af | 2016-01-18 10:24:23 +0100 | [diff] [blame] | 1444 | hists__for_each_format(browser->hists, fmt) { |
Namhyung Kim | 361459f | 2015-12-23 02:07:08 +0900 | [diff] [blame] | 1445 | if (perf_hpp__should_skip(fmt, he->hists)) |
Namhyung Kim | e67d49a | 2014-03-18 13:00:59 +0900 | [diff] [blame] | 1446 | continue; |
| 1447 | |
Namhyung Kim | 26d8b33 | 2014-03-03 16:16:20 +0900 | [diff] [blame] | 1448 | if (!first) { |
| 1449 | ret = scnprintf(hpp.buf, hpp.size, " "); |
| 1450 | advance_hpp(&hpp, ret); |
| 1451 | } else |
| 1452 | first = false; |
Arnaldo Carvalho de Melo | aff3f3f | 2012-06-07 19:31:28 -0300 | [diff] [blame] | 1453 | |
Namhyung Kim | 26d8b33 | 2014-03-03 16:16:20 +0900 | [diff] [blame] | 1454 | ret = fmt->entry(fmt, &hpp, he); |
| 1455 | advance_hpp(&hpp, ret); |
| 1456 | } |
Arnaldo Carvalho de Melo | aff3f3f | 2012-06-07 19:31:28 -0300 | [diff] [blame] | 1457 | printed += fprintf(fp, "%s\n", rtrim(s)); |
| 1458 | |
| 1459 | if (folded_sign == '-') |
Namhyung Kim | 39ee533 | 2014-08-22 09:13:21 +0900 | [diff] [blame] | 1460 | printed += hist_browser__fprintf_callchain(browser, he, fp); |
Arnaldo Carvalho de Melo | aff3f3f | 2012-06-07 19:31:28 -0300 | [diff] [blame] | 1461 | |
| 1462 | return printed; |
| 1463 | } |
| 1464 | |
| 1465 | static int hist_browser__fprintf(struct hist_browser *browser, FILE *fp) |
| 1466 | { |
Namhyung Kim | 064f198 | 2013-05-14 11:09:04 +0900 | [diff] [blame] | 1467 | struct rb_node *nd = hists__filter_entries(rb_first(browser->b.entries), |
Namhyung Kim | 064f198 | 2013-05-14 11:09:04 +0900 | [diff] [blame] | 1468 | browser->min_pcnt); |
Arnaldo Carvalho de Melo | aff3f3f | 2012-06-07 19:31:28 -0300 | [diff] [blame] | 1469 | int printed = 0; |
| 1470 | |
| 1471 | while (nd) { |
| 1472 | struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node); |
| 1473 | |
| 1474 | printed += hist_browser__fprintf_entry(browser, h, fp); |
Namhyung Kim | 1413566 | 2013-10-31 10:17:39 +0900 | [diff] [blame] | 1475 | nd = hists__filter_entries(rb_next(nd), browser->min_pcnt); |
Arnaldo Carvalho de Melo | aff3f3f | 2012-06-07 19:31:28 -0300 | [diff] [blame] | 1476 | } |
| 1477 | |
| 1478 | return printed; |
| 1479 | } |
| 1480 | |
| 1481 | static int hist_browser__dump(struct hist_browser *browser) |
| 1482 | { |
| 1483 | char filename[64]; |
| 1484 | FILE *fp; |
| 1485 | |
| 1486 | while (1) { |
| 1487 | scnprintf(filename, sizeof(filename), "perf.hist.%d", browser->print_seq); |
| 1488 | if (access(filename, F_OK)) |
| 1489 | break; |
| 1490 | /* |
| 1491 | * XXX: Just an arbitrary lazy upper limit |
| 1492 | */ |
| 1493 | if (++browser->print_seq == 8192) { |
| 1494 | ui_helpline__fpush("Too many perf.hist.N files, nothing written!"); |
| 1495 | return -1; |
| 1496 | } |
| 1497 | } |
| 1498 | |
| 1499 | fp = fopen(filename, "w"); |
| 1500 | if (fp == NULL) { |
| 1501 | char bf[64]; |
Kirill A. Shutemov | 4cc49d4 | 2012-07-24 00:06:54 +0300 | [diff] [blame] | 1502 | const char *err = strerror_r(errno, bf, sizeof(bf)); |
| 1503 | ui_helpline__fpush("Couldn't write to %s: %s", filename, err); |
Arnaldo Carvalho de Melo | aff3f3f | 2012-06-07 19:31:28 -0300 | [diff] [blame] | 1504 | return -1; |
| 1505 | } |
| 1506 | |
| 1507 | ++browser->print_seq; |
| 1508 | hist_browser__fprintf(browser, fp); |
| 1509 | fclose(fp); |
| 1510 | ui_helpline__fpush("%s written!", filename); |
| 1511 | |
| 1512 | return 0; |
| 1513 | } |
| 1514 | |
Namhyung Kim | c2a51ab | 2015-04-22 16:18:15 +0900 | [diff] [blame] | 1515 | static struct hist_browser *hist_browser__new(struct hists *hists, |
Namhyung Kim | b1a9cee | 2015-04-22 16:18:17 +0900 | [diff] [blame] | 1516 | struct hist_browser_timer *hbt, |
Kan Liang | ce80d3b | 2015-08-28 05:48:04 -0400 | [diff] [blame] | 1517 | struct perf_env *env) |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1518 | { |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 1519 | struct hist_browser *browser = zalloc(sizeof(*browser)); |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1520 | |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 1521 | if (browser) { |
| 1522 | browser->hists = hists; |
| 1523 | browser->b.refresh = hist_browser__refresh; |
Arnaldo Carvalho de Melo | 357cfff | 2014-07-01 17:01:01 -0300 | [diff] [blame] | 1524 | browser->b.refresh_dimensions = hist_browser__refresh_dimensions; |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 1525 | browser->b.seek = ui_browser__hists_seek; |
| 1526 | browser->b.use_navkeypressed = true; |
Jiri Olsa | c830236 | 2014-06-27 18:26:58 +0200 | [diff] [blame] | 1527 | browser->show_headers = symbol_conf.show_hist_headers; |
Namhyung Kim | c2a51ab | 2015-04-22 16:18:15 +0900 | [diff] [blame] | 1528 | browser->hbt = hbt; |
Namhyung Kim | b1a9cee | 2015-04-22 16:18:17 +0900 | [diff] [blame] | 1529 | browser->env = env; |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1530 | } |
| 1531 | |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 1532 | return browser; |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1533 | } |
| 1534 | |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 1535 | static void hist_browser__delete(struct hist_browser *browser) |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1536 | { |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 1537 | free(browser); |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1538 | } |
| 1539 | |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 1540 | static struct hist_entry *hist_browser__selected_entry(struct hist_browser *browser) |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1541 | { |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 1542 | return browser->he_selection; |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1543 | } |
| 1544 | |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 1545 | static struct thread *hist_browser__selected_thread(struct hist_browser *browser) |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1546 | { |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 1547 | return browser->he_selection->thread; |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1548 | } |
| 1549 | |
Taeung Song | 1e378eb | 2014-10-07 16:13:15 +0900 | [diff] [blame] | 1550 | /* Check whether the browser is for 'top' or 'report' */ |
| 1551 | static inline bool is_report_browser(void *timer) |
| 1552 | { |
| 1553 | return timer == NULL; |
| 1554 | } |
| 1555 | |
| 1556 | static int hists__browser_title(struct hists *hists, |
| 1557 | struct hist_browser_timer *hbt, |
| 1558 | char *bf, size_t size) |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1559 | { |
Arnaldo Carvalho de Melo | 469917c | 2010-09-13 10:25:04 -0300 | [diff] [blame] | 1560 | char unit; |
| 1561 | int printed; |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 1562 | const struct dso *dso = hists->dso_filter; |
| 1563 | const struct thread *thread = hists->thread_filter; |
Kan Liang | 84734b0 | 2015-09-04 10:45:45 -0400 | [diff] [blame] | 1564 | int socket_id = hists->socket_filter; |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 1565 | unsigned long nr_samples = hists->stats.nr_events[PERF_RECORD_SAMPLE]; |
| 1566 | u64 nr_events = hists->stats.total_period; |
Namhyung Kim | 717e263 | 2013-01-22 18:09:44 +0900 | [diff] [blame] | 1567 | struct perf_evsel *evsel = hists_to_evsel(hists); |
Jiri Olsa | dd00d48 | 2014-06-19 13:41:13 +0200 | [diff] [blame] | 1568 | const char *ev_name = perf_evsel__name(evsel); |
Namhyung Kim | 717e263 | 2013-01-22 18:09:44 +0900 | [diff] [blame] | 1569 | char buf[512]; |
| 1570 | size_t buflen = sizeof(buf); |
Kan Liang | 9e207dd | 2015-08-11 06:30:49 -0400 | [diff] [blame] | 1571 | char ref[30] = " show reference callgraph, "; |
| 1572 | bool enable_ref = false; |
Namhyung Kim | 717e263 | 2013-01-22 18:09:44 +0900 | [diff] [blame] | 1573 | |
Namhyung Kim | f214833 | 2014-01-14 11:52:48 +0900 | [diff] [blame] | 1574 | if (symbol_conf.filter_relative) { |
| 1575 | nr_samples = hists->stats.nr_non_filtered_samples; |
| 1576 | nr_events = hists->stats.total_non_filtered_period; |
| 1577 | } |
| 1578 | |
Namhyung Kim | 759ff49 | 2013-03-05 14:53:26 +0900 | [diff] [blame] | 1579 | if (perf_evsel__is_group_event(evsel)) { |
Namhyung Kim | 717e263 | 2013-01-22 18:09:44 +0900 | [diff] [blame] | 1580 | struct perf_evsel *pos; |
| 1581 | |
| 1582 | perf_evsel__group_desc(evsel, buf, buflen); |
| 1583 | ev_name = buf; |
| 1584 | |
| 1585 | for_each_group_member(pos, evsel) { |
Arnaldo Carvalho de Melo | 4ea062ed | 2014-10-09 13:13:41 -0300 | [diff] [blame] | 1586 | struct hists *pos_hists = evsel__hists(pos); |
| 1587 | |
Namhyung Kim | f214833 | 2014-01-14 11:52:48 +0900 | [diff] [blame] | 1588 | if (symbol_conf.filter_relative) { |
Arnaldo Carvalho de Melo | 4ea062ed | 2014-10-09 13:13:41 -0300 | [diff] [blame] | 1589 | nr_samples += pos_hists->stats.nr_non_filtered_samples; |
| 1590 | nr_events += pos_hists->stats.total_non_filtered_period; |
Namhyung Kim | f214833 | 2014-01-14 11:52:48 +0900 | [diff] [blame] | 1591 | } else { |
Arnaldo Carvalho de Melo | 4ea062ed | 2014-10-09 13:13:41 -0300 | [diff] [blame] | 1592 | nr_samples += pos_hists->stats.nr_events[PERF_RECORD_SAMPLE]; |
| 1593 | nr_events += pos_hists->stats.total_period; |
Namhyung Kim | f214833 | 2014-01-14 11:52:48 +0900 | [diff] [blame] | 1594 | } |
Namhyung Kim | 717e263 | 2013-01-22 18:09:44 +0900 | [diff] [blame] | 1595 | } |
| 1596 | } |
Arnaldo Carvalho de Melo | 469917c | 2010-09-13 10:25:04 -0300 | [diff] [blame] | 1597 | |
Kan Liang | 9e207dd | 2015-08-11 06:30:49 -0400 | [diff] [blame] | 1598 | if (symbol_conf.show_ref_callgraph && |
| 1599 | strstr(ev_name, "call-graph=no")) |
| 1600 | enable_ref = true; |
Ashay Rane | cc686280 | 2012-04-05 21:01:01 -0500 | [diff] [blame] | 1601 | nr_samples = convert_unit(nr_samples, &unit); |
| 1602 | printed = scnprintf(bf, size, |
Kan Liang | 9e207dd | 2015-08-11 06:30:49 -0400 | [diff] [blame] | 1603 | "Samples: %lu%c of event '%s',%sEvent count (approx.): %" PRIu64, |
| 1604 | nr_samples, unit, ev_name, enable_ref ? ref : " ", nr_events); |
Ashay Rane | cc686280 | 2012-04-05 21:01:01 -0500 | [diff] [blame] | 1605 | |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1606 | |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 1607 | if (hists->uid_filter_str) |
Arnaldo Carvalho de Melo | 0d37aa3 | 2012-01-19 14:08:15 -0200 | [diff] [blame] | 1608 | printed += snprintf(bf + printed, size - printed, |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 1609 | ", UID: %s", hists->uid_filter_str); |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1610 | if (thread) |
Arnaldo Carvalho de Melo | e7f01d1 | 2012-03-14 12:29:29 -0300 | [diff] [blame] | 1611 | printed += scnprintf(bf + printed, size - printed, |
Arnaldo Carvalho de Melo | 469917c | 2010-09-13 10:25:04 -0300 | [diff] [blame] | 1612 | ", Thread: %s(%d)", |
Frederic Weisbecker | b9c5143 | 2013-09-11 14:46:56 +0200 | [diff] [blame] | 1613 | (thread->comm_set ? thread__comm_str(thread) : ""), |
Adrian Hunter | 3805123 | 2013-07-04 16:20:31 +0300 | [diff] [blame] | 1614 | thread->tid); |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1615 | if (dso) |
Arnaldo Carvalho de Melo | e7f01d1 | 2012-03-14 12:29:29 -0300 | [diff] [blame] | 1616 | printed += scnprintf(bf + printed, size - printed, |
Arnaldo Carvalho de Melo | 469917c | 2010-09-13 10:25:04 -0300 | [diff] [blame] | 1617 | ", DSO: %s", dso->short_name); |
Kan Liang | 84734b0 | 2015-09-04 10:45:45 -0400 | [diff] [blame] | 1618 | if (socket_id > -1) |
Kan Liang | 21394d9 | 2015-09-04 10:45:44 -0400 | [diff] [blame] | 1619 | printed += scnprintf(bf + printed, size - printed, |
Kan Liang | 84734b0 | 2015-09-04 10:45:45 -0400 | [diff] [blame] | 1620 | ", Processor Socket: %d", socket_id); |
Taeung Song | 1e378eb | 2014-10-07 16:13:15 +0900 | [diff] [blame] | 1621 | if (!is_report_browser(hbt)) { |
| 1622 | struct perf_top *top = hbt->arg; |
| 1623 | |
| 1624 | if (top->zero) |
| 1625 | printed += scnprintf(bf + printed, size - printed, " [z]"); |
| 1626 | } |
| 1627 | |
Arnaldo Carvalho de Melo | 469917c | 2010-09-13 10:25:04 -0300 | [diff] [blame] | 1628 | return printed; |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 1629 | } |
| 1630 | |
Stephane Eranian | 24bff2d | 2012-03-12 16:13:30 +0100 | [diff] [blame] | 1631 | static inline void free_popup_options(char **options, int n) |
| 1632 | { |
| 1633 | int i; |
| 1634 | |
Arnaldo Carvalho de Melo | 0466252 | 2013-12-26 17:41:15 -0300 | [diff] [blame] | 1635 | for (i = 0; i < n; ++i) |
| 1636 | zfree(&options[i]); |
Stephane Eranian | 24bff2d | 2012-03-12 16:13:30 +0100 | [diff] [blame] | 1637 | } |
| 1638 | |
Feng Tang | 341487ab | 2013-02-03 14:38:20 +0800 | [diff] [blame] | 1639 | /* |
| 1640 | * Only runtime switching of perf data file will make "input_name" point |
| 1641 | * to a malloced buffer. So add "is_input_name_malloced" flag to decide |
| 1642 | * whether we need to call free() for current "input_name" during the switch. |
| 1643 | */ |
| 1644 | static bool is_input_name_malloced = false; |
| 1645 | |
| 1646 | static int switch_data_file(void) |
| 1647 | { |
| 1648 | char *pwd, *options[32], *abs_path[32], *tmp; |
| 1649 | DIR *pwd_dir; |
| 1650 | int nr_options = 0, choice = -1, ret = -1; |
| 1651 | struct dirent *dent; |
| 1652 | |
| 1653 | pwd = getenv("PWD"); |
| 1654 | if (!pwd) |
| 1655 | return ret; |
| 1656 | |
| 1657 | pwd_dir = opendir(pwd); |
| 1658 | if (!pwd_dir) |
| 1659 | return ret; |
| 1660 | |
| 1661 | memset(options, 0, sizeof(options)); |
| 1662 | memset(options, 0, sizeof(abs_path)); |
| 1663 | |
| 1664 | while ((dent = readdir(pwd_dir))) { |
| 1665 | char path[PATH_MAX]; |
| 1666 | u64 magic; |
| 1667 | char *name = dent->d_name; |
| 1668 | FILE *file; |
| 1669 | |
| 1670 | if (!(dent->d_type == DT_REG)) |
| 1671 | continue; |
| 1672 | |
| 1673 | snprintf(path, sizeof(path), "%s/%s", pwd, name); |
| 1674 | |
| 1675 | file = fopen(path, "r"); |
| 1676 | if (!file) |
| 1677 | continue; |
| 1678 | |
| 1679 | if (fread(&magic, 1, 8, file) < 8) |
| 1680 | goto close_file_and_continue; |
| 1681 | |
| 1682 | if (is_perf_magic(magic)) { |
| 1683 | options[nr_options] = strdup(name); |
| 1684 | if (!options[nr_options]) |
| 1685 | goto close_file_and_continue; |
| 1686 | |
| 1687 | abs_path[nr_options] = strdup(path); |
| 1688 | if (!abs_path[nr_options]) { |
Arnaldo Carvalho de Melo | 74cf249 | 2013-12-27 16:55:14 -0300 | [diff] [blame] | 1689 | zfree(&options[nr_options]); |
Feng Tang | 341487ab | 2013-02-03 14:38:20 +0800 | [diff] [blame] | 1690 | ui__warning("Can't search all data files due to memory shortage.\n"); |
| 1691 | fclose(file); |
| 1692 | break; |
| 1693 | } |
| 1694 | |
| 1695 | nr_options++; |
| 1696 | } |
| 1697 | |
| 1698 | close_file_and_continue: |
| 1699 | fclose(file); |
| 1700 | if (nr_options >= 32) { |
| 1701 | ui__warning("Too many perf data files in PWD!\n" |
| 1702 | "Only the first 32 files will be listed.\n"); |
| 1703 | break; |
| 1704 | } |
| 1705 | } |
| 1706 | closedir(pwd_dir); |
| 1707 | |
| 1708 | if (nr_options) { |
| 1709 | choice = ui__popup_menu(nr_options, options); |
| 1710 | if (choice < nr_options && choice >= 0) { |
| 1711 | tmp = strdup(abs_path[choice]); |
| 1712 | if (tmp) { |
| 1713 | if (is_input_name_malloced) |
| 1714 | free((void *)input_name); |
| 1715 | input_name = tmp; |
| 1716 | is_input_name_malloced = true; |
| 1717 | ret = 0; |
| 1718 | } else |
| 1719 | ui__warning("Data switch failed due to memory shortage!\n"); |
| 1720 | } |
| 1721 | } |
| 1722 | |
| 1723 | free_popup_options(options, nr_options); |
| 1724 | free_popup_options(abs_path, nr_options); |
| 1725 | return ret; |
| 1726 | } |
| 1727 | |
Namhyung Kim | ea7cd59 | 2015-04-22 16:18:19 +0900 | [diff] [blame] | 1728 | struct popup_action { |
| 1729 | struct thread *thread; |
Namhyung Kim | ea7cd59 | 2015-04-22 16:18:19 +0900 | [diff] [blame] | 1730 | struct map_symbol ms; |
Kan Liang | 84734b0 | 2015-09-04 10:45:45 -0400 | [diff] [blame] | 1731 | int socket; |
Namhyung Kim | ea7cd59 | 2015-04-22 16:18:19 +0900 | [diff] [blame] | 1732 | |
| 1733 | int (*fn)(struct hist_browser *browser, struct popup_action *act); |
| 1734 | }; |
| 1735 | |
Namhyung Kim | bc7cad4 | 2015-04-22 16:18:18 +0900 | [diff] [blame] | 1736 | static int |
Namhyung Kim | ea7cd59 | 2015-04-22 16:18:19 +0900 | [diff] [blame] | 1737 | do_annotate(struct hist_browser *browser, struct popup_action *act) |
Namhyung Kim | bc7cad4 | 2015-04-22 16:18:18 +0900 | [diff] [blame] | 1738 | { |
| 1739 | struct perf_evsel *evsel; |
| 1740 | struct annotation *notes; |
| 1741 | struct hist_entry *he; |
| 1742 | int err; |
| 1743 | |
Arnaldo Carvalho de Melo | eebd0bf | 2015-09-08 15:52:20 -0300 | [diff] [blame] | 1744 | if (!objdump_path && perf_env__lookup_objdump(browser->env)) |
Namhyung Kim | bc7cad4 | 2015-04-22 16:18:18 +0900 | [diff] [blame] | 1745 | return 0; |
| 1746 | |
Namhyung Kim | ea7cd59 | 2015-04-22 16:18:19 +0900 | [diff] [blame] | 1747 | notes = symbol__annotation(act->ms.sym); |
Namhyung Kim | bc7cad4 | 2015-04-22 16:18:18 +0900 | [diff] [blame] | 1748 | if (!notes->src) |
| 1749 | return 0; |
| 1750 | |
| 1751 | evsel = hists_to_evsel(browser->hists); |
Namhyung Kim | ea7cd59 | 2015-04-22 16:18:19 +0900 | [diff] [blame] | 1752 | err = map_symbol__tui_annotate(&act->ms, evsel, browser->hbt); |
Namhyung Kim | bc7cad4 | 2015-04-22 16:18:18 +0900 | [diff] [blame] | 1753 | he = hist_browser__selected_entry(browser); |
| 1754 | /* |
| 1755 | * offer option to annotate the other branch source or target |
| 1756 | * (if they exists) when returning from annotate |
| 1757 | */ |
| 1758 | if ((err == 'q' || err == CTRL('c')) && he->branch_info) |
| 1759 | return 1; |
| 1760 | |
| 1761 | ui_browser__update_nr_entries(&browser->b, browser->hists->nr_entries); |
| 1762 | if (err) |
| 1763 | ui_browser__handle_resize(&browser->b); |
| 1764 | return 0; |
| 1765 | } |
| 1766 | |
| 1767 | static int |
Namhyung Kim | ea7cd59 | 2015-04-22 16:18:19 +0900 | [diff] [blame] | 1768 | add_annotate_opt(struct hist_browser *browser __maybe_unused, |
| 1769 | struct popup_action *act, char **optstr, |
| 1770 | struct map *map, struct symbol *sym) |
Namhyung Kim | bc7cad4 | 2015-04-22 16:18:18 +0900 | [diff] [blame] | 1771 | { |
Namhyung Kim | ea7cd59 | 2015-04-22 16:18:19 +0900 | [diff] [blame] | 1772 | if (sym == NULL || map->dso->annotate_warned) |
| 1773 | return 0; |
| 1774 | |
| 1775 | if (asprintf(optstr, "Annotate %s", sym->name) < 0) |
| 1776 | return 0; |
| 1777 | |
| 1778 | act->ms.map = map; |
| 1779 | act->ms.sym = sym; |
| 1780 | act->fn = do_annotate; |
| 1781 | return 1; |
| 1782 | } |
| 1783 | |
| 1784 | static int |
| 1785 | do_zoom_thread(struct hist_browser *browser, struct popup_action *act) |
| 1786 | { |
| 1787 | struct thread *thread = act->thread; |
| 1788 | |
Namhyung Kim | bc7cad4 | 2015-04-22 16:18:18 +0900 | [diff] [blame] | 1789 | if (browser->hists->thread_filter) { |
| 1790 | pstack__remove(browser->pstack, &browser->hists->thread_filter); |
| 1791 | perf_hpp__set_elide(HISTC_THREAD, false); |
| 1792 | thread__zput(browser->hists->thread_filter); |
| 1793 | ui_helpline__pop(); |
| 1794 | } else { |
Arnaldo Carvalho de Melo | 7727a92 | 2015-10-12 13:56:50 -0300 | [diff] [blame] | 1795 | ui_helpline__fpush("To zoom out press ESC or ENTER + \"Zoom out of %s(%d) thread\"", |
Namhyung Kim | bc7cad4 | 2015-04-22 16:18:18 +0900 | [diff] [blame] | 1796 | thread->comm_set ? thread__comm_str(thread) : "", |
| 1797 | thread->tid); |
| 1798 | browser->hists->thread_filter = thread__get(thread); |
| 1799 | perf_hpp__set_elide(HISTC_THREAD, false); |
| 1800 | pstack__push(browser->pstack, &browser->hists->thread_filter); |
| 1801 | } |
| 1802 | |
| 1803 | hists__filter_by_thread(browser->hists); |
| 1804 | hist_browser__reset(browser); |
| 1805 | return 0; |
| 1806 | } |
| 1807 | |
| 1808 | static int |
Namhyung Kim | ea7cd59 | 2015-04-22 16:18:19 +0900 | [diff] [blame] | 1809 | add_thread_opt(struct hist_browser *browser, struct popup_action *act, |
| 1810 | char **optstr, struct thread *thread) |
Namhyung Kim | bc7cad4 | 2015-04-22 16:18:18 +0900 | [diff] [blame] | 1811 | { |
Namhyung Kim | 2eafd41 | 2016-01-21 19:13:24 -0300 | [diff] [blame] | 1812 | if (!sort__has_thread || thread == NULL) |
Namhyung Kim | ea7cd59 | 2015-04-22 16:18:19 +0900 | [diff] [blame] | 1813 | return 0; |
| 1814 | |
| 1815 | if (asprintf(optstr, "Zoom %s %s(%d) thread", |
| 1816 | browser->hists->thread_filter ? "out of" : "into", |
| 1817 | thread->comm_set ? thread__comm_str(thread) : "", |
| 1818 | thread->tid) < 0) |
| 1819 | return 0; |
| 1820 | |
| 1821 | act->thread = thread; |
| 1822 | act->fn = do_zoom_thread; |
| 1823 | return 1; |
| 1824 | } |
| 1825 | |
| 1826 | static int |
| 1827 | do_zoom_dso(struct hist_browser *browser, struct popup_action *act) |
| 1828 | { |
Arnaldo Carvalho de Melo | 045b80d | 2015-09-23 15:38:55 -0300 | [diff] [blame] | 1829 | struct map *map = act->ms.map; |
Namhyung Kim | ea7cd59 | 2015-04-22 16:18:19 +0900 | [diff] [blame] | 1830 | |
Namhyung Kim | bc7cad4 | 2015-04-22 16:18:18 +0900 | [diff] [blame] | 1831 | if (browser->hists->dso_filter) { |
| 1832 | pstack__remove(browser->pstack, &browser->hists->dso_filter); |
| 1833 | perf_hpp__set_elide(HISTC_DSO, false); |
| 1834 | browser->hists->dso_filter = NULL; |
| 1835 | ui_helpline__pop(); |
| 1836 | } else { |
Arnaldo Carvalho de Melo | 045b80d | 2015-09-23 15:38:55 -0300 | [diff] [blame] | 1837 | if (map == NULL) |
Namhyung Kim | bc7cad4 | 2015-04-22 16:18:18 +0900 | [diff] [blame] | 1838 | return 0; |
Arnaldo Carvalho de Melo | 7727a92 | 2015-10-12 13:56:50 -0300 | [diff] [blame] | 1839 | ui_helpline__fpush("To zoom out press ESC or ENTER + \"Zoom out of %s DSO\"", |
Arnaldo Carvalho de Melo | 045b80d | 2015-09-23 15:38:55 -0300 | [diff] [blame] | 1840 | __map__is_kernel(map) ? "the Kernel" : map->dso->short_name); |
| 1841 | browser->hists->dso_filter = map->dso; |
Namhyung Kim | bc7cad4 | 2015-04-22 16:18:18 +0900 | [diff] [blame] | 1842 | perf_hpp__set_elide(HISTC_DSO, true); |
| 1843 | pstack__push(browser->pstack, &browser->hists->dso_filter); |
| 1844 | } |
| 1845 | |
| 1846 | hists__filter_by_dso(browser->hists); |
| 1847 | hist_browser__reset(browser); |
| 1848 | return 0; |
| 1849 | } |
| 1850 | |
| 1851 | static int |
Namhyung Kim | ea7cd59 | 2015-04-22 16:18:19 +0900 | [diff] [blame] | 1852 | add_dso_opt(struct hist_browser *browser, struct popup_action *act, |
Arnaldo Carvalho de Melo | 045b80d | 2015-09-23 15:38:55 -0300 | [diff] [blame] | 1853 | char **optstr, struct map *map) |
Namhyung Kim | bc7cad4 | 2015-04-22 16:18:18 +0900 | [diff] [blame] | 1854 | { |
Namhyung Kim | b1447a54 | 2016-01-22 11:22:41 -0300 | [diff] [blame] | 1855 | if (!sort__has_dso || map == NULL) |
Namhyung Kim | ea7cd59 | 2015-04-22 16:18:19 +0900 | [diff] [blame] | 1856 | return 0; |
| 1857 | |
| 1858 | if (asprintf(optstr, "Zoom %s %s DSO", |
| 1859 | browser->hists->dso_filter ? "out of" : "into", |
Arnaldo Carvalho de Melo | 045b80d | 2015-09-23 15:38:55 -0300 | [diff] [blame] | 1860 | __map__is_kernel(map) ? "the Kernel" : map->dso->short_name) < 0) |
Namhyung Kim | ea7cd59 | 2015-04-22 16:18:19 +0900 | [diff] [blame] | 1861 | return 0; |
| 1862 | |
Arnaldo Carvalho de Melo | 045b80d | 2015-09-23 15:38:55 -0300 | [diff] [blame] | 1863 | act->ms.map = map; |
Namhyung Kim | ea7cd59 | 2015-04-22 16:18:19 +0900 | [diff] [blame] | 1864 | act->fn = do_zoom_dso; |
| 1865 | return 1; |
| 1866 | } |
| 1867 | |
| 1868 | static int |
| 1869 | do_browse_map(struct hist_browser *browser __maybe_unused, |
| 1870 | struct popup_action *act) |
| 1871 | { |
| 1872 | map__browse(act->ms.map); |
Namhyung Kim | bc7cad4 | 2015-04-22 16:18:18 +0900 | [diff] [blame] | 1873 | return 0; |
| 1874 | } |
| 1875 | |
| 1876 | static int |
Namhyung Kim | ea7cd59 | 2015-04-22 16:18:19 +0900 | [diff] [blame] | 1877 | add_map_opt(struct hist_browser *browser __maybe_unused, |
| 1878 | struct popup_action *act, char **optstr, struct map *map) |
| 1879 | { |
Namhyung Kim | b1447a54 | 2016-01-22 11:22:41 -0300 | [diff] [blame] | 1880 | if (!sort__has_dso || map == NULL) |
Namhyung Kim | ea7cd59 | 2015-04-22 16:18:19 +0900 | [diff] [blame] | 1881 | return 0; |
| 1882 | |
| 1883 | if (asprintf(optstr, "Browse map details") < 0) |
| 1884 | return 0; |
| 1885 | |
| 1886 | act->ms.map = map; |
| 1887 | act->fn = do_browse_map; |
| 1888 | return 1; |
| 1889 | } |
| 1890 | |
| 1891 | static int |
Namhyung Kim | bc7cad4 | 2015-04-22 16:18:18 +0900 | [diff] [blame] | 1892 | do_run_script(struct hist_browser *browser __maybe_unused, |
Namhyung Kim | ea7cd59 | 2015-04-22 16:18:19 +0900 | [diff] [blame] | 1893 | struct popup_action *act) |
Namhyung Kim | bc7cad4 | 2015-04-22 16:18:18 +0900 | [diff] [blame] | 1894 | { |
| 1895 | char script_opt[64]; |
| 1896 | memset(script_opt, 0, sizeof(script_opt)); |
| 1897 | |
Namhyung Kim | ea7cd59 | 2015-04-22 16:18:19 +0900 | [diff] [blame] | 1898 | if (act->thread) { |
Namhyung Kim | bc7cad4 | 2015-04-22 16:18:18 +0900 | [diff] [blame] | 1899 | scnprintf(script_opt, sizeof(script_opt), " -c %s ", |
Namhyung Kim | ea7cd59 | 2015-04-22 16:18:19 +0900 | [diff] [blame] | 1900 | thread__comm_str(act->thread)); |
| 1901 | } else if (act->ms.sym) { |
Namhyung Kim | bc7cad4 | 2015-04-22 16:18:18 +0900 | [diff] [blame] | 1902 | scnprintf(script_opt, sizeof(script_opt), " -S %s ", |
Namhyung Kim | ea7cd59 | 2015-04-22 16:18:19 +0900 | [diff] [blame] | 1903 | act->ms.sym->name); |
Namhyung Kim | bc7cad4 | 2015-04-22 16:18:18 +0900 | [diff] [blame] | 1904 | } |
| 1905 | |
| 1906 | script_browse(script_opt); |
| 1907 | return 0; |
| 1908 | } |
| 1909 | |
| 1910 | static int |
Namhyung Kim | ea7cd59 | 2015-04-22 16:18:19 +0900 | [diff] [blame] | 1911 | add_script_opt(struct hist_browser *browser __maybe_unused, |
| 1912 | struct popup_action *act, char **optstr, |
| 1913 | struct thread *thread, struct symbol *sym) |
| 1914 | { |
| 1915 | if (thread) { |
| 1916 | if (asprintf(optstr, "Run scripts for samples of thread [%s]", |
| 1917 | thread__comm_str(thread)) < 0) |
| 1918 | return 0; |
| 1919 | } else if (sym) { |
| 1920 | if (asprintf(optstr, "Run scripts for samples of symbol [%s]", |
| 1921 | sym->name) < 0) |
| 1922 | return 0; |
| 1923 | } else { |
| 1924 | if (asprintf(optstr, "Run scripts for all samples") < 0) |
| 1925 | return 0; |
| 1926 | } |
| 1927 | |
| 1928 | act->thread = thread; |
| 1929 | act->ms.sym = sym; |
| 1930 | act->fn = do_run_script; |
| 1931 | return 1; |
| 1932 | } |
| 1933 | |
| 1934 | static int |
| 1935 | do_switch_data(struct hist_browser *browser __maybe_unused, |
| 1936 | struct popup_action *act __maybe_unused) |
Namhyung Kim | bc7cad4 | 2015-04-22 16:18:18 +0900 | [diff] [blame] | 1937 | { |
| 1938 | if (switch_data_file()) { |
| 1939 | ui__warning("Won't switch the data files due to\n" |
| 1940 | "no valid data file get selected!\n"); |
Namhyung Kim | ea7cd59 | 2015-04-22 16:18:19 +0900 | [diff] [blame] | 1941 | return 0; |
Namhyung Kim | bc7cad4 | 2015-04-22 16:18:18 +0900 | [diff] [blame] | 1942 | } |
| 1943 | |
| 1944 | return K_SWITCH_INPUT_DATA; |
| 1945 | } |
| 1946 | |
Namhyung Kim | ea7cd59 | 2015-04-22 16:18:19 +0900 | [diff] [blame] | 1947 | static int |
| 1948 | add_switch_opt(struct hist_browser *browser, |
| 1949 | struct popup_action *act, char **optstr) |
| 1950 | { |
| 1951 | if (!is_report_browser(browser->hbt)) |
| 1952 | return 0; |
| 1953 | |
| 1954 | if (asprintf(optstr, "Switch to another data file in PWD") < 0) |
| 1955 | return 0; |
| 1956 | |
| 1957 | act->fn = do_switch_data; |
| 1958 | return 1; |
| 1959 | } |
| 1960 | |
| 1961 | static int |
| 1962 | do_exit_browser(struct hist_browser *browser __maybe_unused, |
| 1963 | struct popup_action *act __maybe_unused) |
| 1964 | { |
| 1965 | return 0; |
| 1966 | } |
| 1967 | |
| 1968 | static int |
| 1969 | add_exit_opt(struct hist_browser *browser __maybe_unused, |
| 1970 | struct popup_action *act, char **optstr) |
| 1971 | { |
| 1972 | if (asprintf(optstr, "Exit") < 0) |
| 1973 | return 0; |
| 1974 | |
| 1975 | act->fn = do_exit_browser; |
| 1976 | return 1; |
| 1977 | } |
| 1978 | |
Kan Liang | 84734b0 | 2015-09-04 10:45:45 -0400 | [diff] [blame] | 1979 | static int |
| 1980 | do_zoom_socket(struct hist_browser *browser, struct popup_action *act) |
| 1981 | { |
| 1982 | if (browser->hists->socket_filter > -1) { |
| 1983 | pstack__remove(browser->pstack, &browser->hists->socket_filter); |
| 1984 | browser->hists->socket_filter = -1; |
| 1985 | perf_hpp__set_elide(HISTC_SOCKET, false); |
| 1986 | } else { |
| 1987 | browser->hists->socket_filter = act->socket; |
| 1988 | perf_hpp__set_elide(HISTC_SOCKET, true); |
| 1989 | pstack__push(browser->pstack, &browser->hists->socket_filter); |
| 1990 | } |
| 1991 | |
| 1992 | hists__filter_by_socket(browser->hists); |
| 1993 | hist_browser__reset(browser); |
| 1994 | return 0; |
| 1995 | } |
| 1996 | |
| 1997 | static int |
| 1998 | add_socket_opt(struct hist_browser *browser, struct popup_action *act, |
| 1999 | char **optstr, int socket_id) |
| 2000 | { |
Namhyung Kim | d9695d9 | 2016-01-22 12:20:18 -0300 | [diff] [blame] | 2001 | if (!sort__has_socket || socket_id < 0) |
Kan Liang | 84734b0 | 2015-09-04 10:45:45 -0400 | [diff] [blame] | 2002 | return 0; |
| 2003 | |
| 2004 | if (asprintf(optstr, "Zoom %s Processor Socket %d", |
| 2005 | (browser->hists->socket_filter > -1) ? "out of" : "into", |
| 2006 | socket_id) < 0) |
| 2007 | return 0; |
| 2008 | |
| 2009 | act->socket = socket_id; |
| 2010 | act->fn = do_zoom_socket; |
| 2011 | return 1; |
| 2012 | } |
| 2013 | |
Namhyung Kim | 112f761 | 2014-04-22 14:05:35 +0900 | [diff] [blame] | 2014 | static void hist_browser__update_nr_entries(struct hist_browser *hb) |
Namhyung Kim | 064f198 | 2013-05-14 11:09:04 +0900 | [diff] [blame] | 2015 | { |
| 2016 | u64 nr_entries = 0; |
| 2017 | struct rb_node *nd = rb_first(&hb->hists->entries); |
| 2018 | |
Namhyung Kim | 268397c | 2014-04-22 14:49:31 +0900 | [diff] [blame] | 2019 | if (hb->min_pcnt == 0) { |
| 2020 | hb->nr_non_filtered_entries = hb->hists->nr_non_filtered_entries; |
| 2021 | return; |
| 2022 | } |
| 2023 | |
Namhyung Kim | 1413566 | 2013-10-31 10:17:39 +0900 | [diff] [blame] | 2024 | while ((nd = hists__filter_entries(nd, hb->min_pcnt)) != NULL) { |
Namhyung Kim | 064f198 | 2013-05-14 11:09:04 +0900 | [diff] [blame] | 2025 | nr_entries++; |
Namhyung Kim | c481f93 | 2014-04-22 13:56:11 +0900 | [diff] [blame] | 2026 | nd = rb_next(nd); |
Namhyung Kim | 064f198 | 2013-05-14 11:09:04 +0900 | [diff] [blame] | 2027 | } |
| 2028 | |
Namhyung Kim | 112f761 | 2014-04-22 14:05:35 +0900 | [diff] [blame] | 2029 | hb->nr_non_filtered_entries = nr_entries; |
Namhyung Kim | 064f198 | 2013-05-14 11:09:04 +0900 | [diff] [blame] | 2030 | } |
Feng Tang | 341487ab | 2013-02-03 14:38:20 +0800 | [diff] [blame] | 2031 | |
Namhyung Kim | b62e8df | 2016-02-03 23:11:23 +0900 | [diff] [blame^] | 2032 | static void hist_browser__update_percent_limit(struct hist_browser *hb, |
| 2033 | double percent) |
| 2034 | { |
| 2035 | struct hist_entry *he; |
| 2036 | struct rb_node *nd = rb_first(&hb->hists->entries); |
| 2037 | u64 total = hists__total_period(hb->hists); |
| 2038 | u64 min_callchain_hits = total * (percent / 100); |
| 2039 | |
| 2040 | hb->min_pcnt = callchain_param.min_percent = percent; |
| 2041 | |
| 2042 | if (!symbol_conf.use_callchain) |
| 2043 | return; |
| 2044 | |
| 2045 | while ((nd = hists__filter_entries(nd, hb->min_pcnt)) != NULL) { |
| 2046 | he = rb_entry(nd, struct hist_entry, rb_node); |
| 2047 | |
| 2048 | if (callchain_param.mode == CHAIN_GRAPH_REL) { |
| 2049 | total = he->stat.period; |
| 2050 | |
| 2051 | if (symbol_conf.cumulate_callchain) |
| 2052 | total = he->stat_acc->period; |
| 2053 | |
| 2054 | min_callchain_hits = total * (percent / 100); |
| 2055 | } |
| 2056 | |
| 2057 | callchain_param.sort(&he->sorted_chain, he->callchain, |
| 2058 | min_callchain_hits, &callchain_param); |
| 2059 | |
| 2060 | /* force to re-evaluate folding state of callchains */ |
| 2061 | he->init_have_children = false; |
| 2062 | hist_entry__set_folding(he, false); |
| 2063 | |
| 2064 | nd = rb_next(nd); |
| 2065 | } |
| 2066 | } |
| 2067 | |
Arnaldo Carvalho de Melo | 3495854 | 2011-10-05 19:35:54 -0300 | [diff] [blame] | 2068 | static int perf_evsel__hists_browse(struct perf_evsel *evsel, int nr_events, |
Jiri Olsa | dd00d48 | 2014-06-19 13:41:13 +0200 | [diff] [blame] | 2069 | const char *helpline, |
Arnaldo Carvalho de Melo | 81cce8d | 2011-10-05 19:11:32 -0300 | [diff] [blame] | 2070 | bool left_exits, |
Namhyung Kim | 68d8075 | 2012-11-02 14:50:06 +0900 | [diff] [blame] | 2071 | struct hist_browser_timer *hbt, |
Namhyung Kim | 064f198 | 2013-05-14 11:09:04 +0900 | [diff] [blame] | 2072 | float min_pcnt, |
Kan Liang | ce80d3b | 2015-08-28 05:48:04 -0400 | [diff] [blame] | 2073 | struct perf_env *env) |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 2074 | { |
Arnaldo Carvalho de Melo | 4ea062ed | 2014-10-09 13:13:41 -0300 | [diff] [blame] | 2075 | struct hists *hists = evsel__hists(evsel); |
Namhyung Kim | b1a9cee | 2015-04-22 16:18:17 +0900 | [diff] [blame] | 2076 | struct hist_browser *browser = hist_browser__new(hists, hbt, env); |
Stephane Eranian | a68c2c5 | 2012-03-08 23:47:48 +0100 | [diff] [blame] | 2077 | struct branch_info *bi; |
Namhyung Kim | f2b487d | 2015-04-22 16:18:14 +0900 | [diff] [blame] | 2078 | #define MAX_OPTIONS 16 |
| 2079 | char *options[MAX_OPTIONS]; |
Namhyung Kim | ea7cd59 | 2015-04-22 16:18:19 +0900 | [diff] [blame] | 2080 | struct popup_action actions[MAX_OPTIONS]; |
Stephane Eranian | 24bff2d | 2012-03-12 16:13:30 +0100 | [diff] [blame] | 2081 | int nr_options = 0; |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 2082 | int key = -1; |
Namhyung Kim | 938a23a | 2012-03-16 17:50:53 +0900 | [diff] [blame] | 2083 | char buf[64]; |
Namhyung Kim | 9783adf | 2012-11-02 14:50:05 +0900 | [diff] [blame] | 2084 | int delay_secs = hbt ? hbt->refresh : 0; |
Namhyung Kim | 59dc9f2 | 2014-07-31 14:47:41 +0900 | [diff] [blame] | 2085 | struct perf_hpp_fmt *fmt; |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 2086 | |
Namhyung Kim | e8e684a | 2013-12-26 14:37:58 +0900 | [diff] [blame] | 2087 | #define HIST_BROWSER_HELP_COMMON \ |
| 2088 | "h/?/F1 Show this window\n" \ |
| 2089 | "UP/DOWN/PGUP\n" \ |
| 2090 | "PGDN/SPACE Navigate\n" \ |
| 2091 | "q/ESC/CTRL+C Exit browser\n\n" \ |
| 2092 | "For multiple event sessions:\n\n" \ |
| 2093 | "TAB/UNTAB Switch events\n\n" \ |
| 2094 | "For symbolic views (--sort has sym):\n\n" \ |
Arnaldo Carvalho de Melo | 7727a92 | 2015-10-12 13:56:50 -0300 | [diff] [blame] | 2095 | "ENTER Zoom into DSO/Threads & Annotate current symbol\n" \ |
| 2096 | "ESC Zoom out\n" \ |
Namhyung Kim | e8e684a | 2013-12-26 14:37:58 +0900 | [diff] [blame] | 2097 | "a Annotate current symbol\n" \ |
| 2098 | "C Collapse all callchains\n" \ |
| 2099 | "d Zoom into current DSO\n" \ |
| 2100 | "E Expand all callchains\n" \ |
Namhyung Kim | 105eb30 | 2014-02-10 11:20:10 +0900 | [diff] [blame] | 2101 | "F Toggle percentage of filtered entries\n" \ |
Arnaldo Carvalho de Melo | 025bf7e | 2014-06-14 15:44:52 +0200 | [diff] [blame] | 2102 | "H Display column headers\n" \ |
Namhyung Kim | b62e8df | 2016-02-03 23:11:23 +0900 | [diff] [blame^] | 2103 | "L Change percent limit\n" \ |
Namhyung Kim | 31eb436 | 2015-10-13 09:02:01 +0900 | [diff] [blame] | 2104 | "m Display context menu\n" \ |
Kan Liang | 84734b0 | 2015-09-04 10:45:45 -0400 | [diff] [blame] | 2105 | "S Zoom into current Processor Socket\n" \ |
Namhyung Kim | e8e684a | 2013-12-26 14:37:58 +0900 | [diff] [blame] | 2106 | |
| 2107 | /* help messages are sorted by lexical order of the hotkey */ |
| 2108 | const char report_help[] = HIST_BROWSER_HELP_COMMON |
Namhyung Kim | 6dd6013 | 2013-12-26 14:37:59 +0900 | [diff] [blame] | 2109 | "i Show header information\n" |
Namhyung Kim | e8e684a | 2013-12-26 14:37:58 +0900 | [diff] [blame] | 2110 | "P Print histograms to perf.hist.N\n" |
| 2111 | "r Run available scripts\n" |
| 2112 | "s Switch to another data file in PWD\n" |
| 2113 | "t Zoom into current Thread\n" |
| 2114 | "V Verbose (DSO names in callchains, etc)\n" |
| 2115 | "/ Filter symbol by name"; |
| 2116 | const char top_help[] = HIST_BROWSER_HELP_COMMON |
| 2117 | "P Print histograms to perf.hist.N\n" |
| 2118 | "t Zoom into current Thread\n" |
| 2119 | "V Verbose (DSO names in callchains, etc)\n" |
Namhyung Kim | 42337a2 | 2014-08-12 17:16:06 +0900 | [diff] [blame] | 2120 | "z Toggle zeroing of samples\n" |
Arnaldo Carvalho de Melo | fbb7997 | 2015-06-19 16:56:04 -0300 | [diff] [blame] | 2121 | "f Enable/Disable events\n" |
Namhyung Kim | e8e684a | 2013-12-26 14:37:58 +0900 | [diff] [blame] | 2122 | "/ Filter symbol by name"; |
| 2123 | |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 2124 | if (browser == NULL) |
| 2125 | return -1; |
| 2126 | |
Namhyung Kim | ed42691 | 2015-05-29 21:53:44 +0900 | [diff] [blame] | 2127 | /* reset abort key so that it can get Ctrl-C as a key */ |
| 2128 | SLang_reset_tty(); |
| 2129 | SLang_init_tty(0, 0, 0); |
| 2130 | |
Namhyung Kim | 0390504 | 2015-11-28 02:32:39 +0900 | [diff] [blame] | 2131 | if (min_pcnt) |
Namhyung Kim | 064f198 | 2013-05-14 11:09:04 +0900 | [diff] [blame] | 2132 | browser->min_pcnt = min_pcnt; |
Namhyung Kim | 0390504 | 2015-11-28 02:32:39 +0900 | [diff] [blame] | 2133 | hist_browser__update_nr_entries(browser); |
Namhyung Kim | 064f198 | 2013-05-14 11:09:04 +0900 | [diff] [blame] | 2134 | |
Kan Liang | 84734b0 | 2015-09-04 10:45:45 -0400 | [diff] [blame] | 2135 | browser->pstack = pstack__new(3); |
Namhyung Kim | 01f00a1 | 2015-04-22 16:18:16 +0900 | [diff] [blame] | 2136 | if (browser->pstack == NULL) |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 2137 | goto out; |
| 2138 | |
| 2139 | ui_helpline__push(helpline); |
| 2140 | |
Stephane Eranian | 24bff2d | 2012-03-12 16:13:30 +0100 | [diff] [blame] | 2141 | memset(options, 0, sizeof(options)); |
Namhyung Kim | ea7cd59 | 2015-04-22 16:18:19 +0900 | [diff] [blame] | 2142 | memset(actions, 0, sizeof(actions)); |
Stephane Eranian | 24bff2d | 2012-03-12 16:13:30 +0100 | [diff] [blame] | 2143 | |
Jiri Olsa | f0786af | 2016-01-18 10:24:23 +0100 | [diff] [blame] | 2144 | hists__for_each_format(browser->hists, fmt) { |
Namhyung Kim | 59dc9f2 | 2014-07-31 14:47:41 +0900 | [diff] [blame] | 2145 | perf_hpp__reset_width(fmt, hists); |
Arnaldo Carvalho de Melo | c6c3c02 | 2015-08-11 17:22:43 -0300 | [diff] [blame] | 2146 | /* |
| 2147 | * This is done just once, and activates the horizontal scrolling |
| 2148 | * code in the ui_browser code, it would be better to have a the |
| 2149 | * counter in the perf_hpp code, but I couldn't find doing it here |
| 2150 | * works, FIXME by setting this in hist_browser__new, for now, be |
| 2151 | * clever 8-) |
| 2152 | */ |
| 2153 | ++browser->b.columns; |
| 2154 | } |
Namhyung Kim | 59dc9f2 | 2014-07-31 14:47:41 +0900 | [diff] [blame] | 2155 | |
Namhyung Kim | 5b59166 | 2014-07-31 14:47:38 +0900 | [diff] [blame] | 2156 | if (symbol_conf.col_width_list_str) |
| 2157 | perf_hpp__set_user_width(symbol_conf.col_width_list_str); |
| 2158 | |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 2159 | while (1) { |
Arnaldo Carvalho de Melo | f3b623b | 2015-03-02 22:21:35 -0300 | [diff] [blame] | 2160 | struct thread *thread = NULL; |
Arnaldo Carvalho de Melo | 045b80d | 2015-09-23 15:38:55 -0300 | [diff] [blame] | 2161 | struct map *map = NULL; |
Namhyung Kim | ea7cd59 | 2015-04-22 16:18:19 +0900 | [diff] [blame] | 2162 | int choice = 0; |
Kan Liang | 84734b0 | 2015-09-04 10:45:45 -0400 | [diff] [blame] | 2163 | int socked_id = -1; |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 2164 | |
Stephane Eranian | 24bff2d | 2012-03-12 16:13:30 +0100 | [diff] [blame] | 2165 | nr_options = 0; |
| 2166 | |
Arnaldo Carvalho de Melo | 5f00b0f | 2015-06-19 17:30:20 -0300 | [diff] [blame] | 2167 | key = hist_browser__run(browser, helpline); |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 2168 | |
Arnaldo Carvalho de Melo | 6009891 | 2011-03-04 21:19:21 -0300 | [diff] [blame] | 2169 | if (browser->he_selection != NULL) { |
| 2170 | thread = hist_browser__selected_thread(browser); |
Arnaldo Carvalho de Melo | 045b80d | 2015-09-23 15:38:55 -0300 | [diff] [blame] | 2171 | map = browser->selection->map; |
Kan Liang | 84734b0 | 2015-09-04 10:45:45 -0400 | [diff] [blame] | 2172 | socked_id = browser->he_selection->socket; |
Arnaldo Carvalho de Melo | 6009891 | 2011-03-04 21:19:21 -0300 | [diff] [blame] | 2173 | } |
Arnaldo Carvalho de Melo | b50e003 | 2010-08-11 10:07:43 -0300 | [diff] [blame] | 2174 | switch (key) { |
Arnaldo Carvalho de Melo | cf95800 | 2011-10-20 16:59:15 -0200 | [diff] [blame] | 2175 | case K_TAB: |
| 2176 | case K_UNTAB: |
David Ahern | e4419b8 | 2011-10-19 11:37:47 -0600 | [diff] [blame] | 2177 | if (nr_events == 1) |
| 2178 | continue; |
Arnaldo Carvalho de Melo | b50e003 | 2010-08-11 10:07:43 -0300 | [diff] [blame] | 2179 | /* |
| 2180 | * Exit the browser, let hists__browser_tree |
| 2181 | * go to the next or previous |
| 2182 | */ |
| 2183 | goto out_free_stack; |
| 2184 | case 'a': |
Arnaldo Carvalho de Melo | 9c796ec | 2013-04-26 14:28:46 -0300 | [diff] [blame] | 2185 | if (!sort__has_sym) { |
Arnaldo Carvalho de Melo | 7b27509 | 2011-10-29 12:15:04 -0200 | [diff] [blame] | 2186 | ui_browser__warning(&browser->b, delay_secs * 2, |
Arnaldo Carvalho de Melo | a6e51f9 | 2011-10-21 10:58:24 -0200 | [diff] [blame] | 2187 | "Annotation is only available for symbolic views, " |
Stephane Eranian | a68c2c5 | 2012-03-08 23:47:48 +0100 | [diff] [blame] | 2188 | "include \"sym*\" in --sort to use it."); |
Arnaldo Carvalho de Melo | a6e51f9 | 2011-10-21 10:58:24 -0200 | [diff] [blame] | 2189 | continue; |
| 2190 | } |
| 2191 | |
Arnaldo Carvalho de Melo | 6009891 | 2011-03-04 21:19:21 -0300 | [diff] [blame] | 2192 | if (browser->selection == NULL || |
Lin Ming | db9a9cbc | 2011-04-08 14:31:26 +0800 | [diff] [blame] | 2193 | browser->selection->sym == NULL || |
Arnaldo Carvalho de Melo | b50e003 | 2010-08-11 10:07:43 -0300 | [diff] [blame] | 2194 | browser->selection->map->dso->annotate_warned) |
| 2195 | continue; |
Namhyung Kim | bc7cad4 | 2015-04-22 16:18:18 +0900 | [diff] [blame] | 2196 | |
Namhyung Kim | ea7cd59 | 2015-04-22 16:18:19 +0900 | [diff] [blame] | 2197 | actions->ms.map = browser->selection->map; |
| 2198 | actions->ms.sym = browser->selection->sym; |
| 2199 | do_annotate(browser, actions); |
Namhyung Kim | bc7cad4 | 2015-04-22 16:18:18 +0900 | [diff] [blame] | 2200 | continue; |
Arnaldo Carvalho de Melo | aff3f3f | 2012-06-07 19:31:28 -0300 | [diff] [blame] | 2201 | case 'P': |
| 2202 | hist_browser__dump(browser); |
| 2203 | continue; |
Arnaldo Carvalho de Melo | b50e003 | 2010-08-11 10:07:43 -0300 | [diff] [blame] | 2204 | case 'd': |
Arnaldo Carvalho de Melo | fae0065 | 2015-11-12 15:59:26 -0300 | [diff] [blame] | 2205 | actions->ms.map = map; |
Namhyung Kim | ea7cd59 | 2015-04-22 16:18:19 +0900 | [diff] [blame] | 2206 | do_zoom_dso(browser, actions); |
Namhyung Kim | bc7cad4 | 2015-04-22 16:18:18 +0900 | [diff] [blame] | 2207 | continue; |
Arnaldo Carvalho de Melo | a7cb886 | 2012-08-03 13:53:40 -0300 | [diff] [blame] | 2208 | case 'V': |
| 2209 | browser->show_dso = !browser->show_dso; |
| 2210 | continue; |
Arnaldo Carvalho de Melo | b50e003 | 2010-08-11 10:07:43 -0300 | [diff] [blame] | 2211 | case 't': |
Namhyung Kim | ea7cd59 | 2015-04-22 16:18:19 +0900 | [diff] [blame] | 2212 | actions->thread = thread; |
| 2213 | do_zoom_thread(browser, actions); |
Namhyung Kim | bc7cad4 | 2015-04-22 16:18:18 +0900 | [diff] [blame] | 2214 | continue; |
Kan Liang | 84734b0 | 2015-09-04 10:45:45 -0400 | [diff] [blame] | 2215 | case 'S': |
| 2216 | actions->socket = socked_id; |
| 2217 | do_zoom_socket(browser, actions); |
| 2218 | continue; |
Arnaldo Carvalho de Melo | 5a5626b | 2012-05-09 12:21:22 -0300 | [diff] [blame] | 2219 | case '/': |
Namhyung Kim | 938a23a | 2012-03-16 17:50:53 +0900 | [diff] [blame] | 2220 | if (ui_browser__input_window("Symbol to show", |
Arnaldo Carvalho de Melo | 4aa8e454 | 2015-10-12 14:02:29 -0300 | [diff] [blame] | 2221 | "Please enter the name of symbol you want to see.\n" |
| 2222 | "To remove the filter later, press / + ENTER.", |
Namhyung Kim | 938a23a | 2012-03-16 17:50:53 +0900 | [diff] [blame] | 2223 | buf, "ENTER: OK, ESC: Cancel", |
| 2224 | delay_secs * 2) == K_ENTER) { |
Arnaldo Carvalho de Melo | 05e8b08 | 2012-05-29 22:42:18 -0300 | [diff] [blame] | 2225 | hists->symbol_filter_str = *buf ? buf : NULL; |
| 2226 | hists__filter_by_symbol(hists); |
Namhyung Kim | 938a23a | 2012-03-16 17:50:53 +0900 | [diff] [blame] | 2227 | hist_browser__reset(browser); |
| 2228 | } |
| 2229 | continue; |
Feng Tang | cdbab7c | 2012-10-30 11:56:06 +0800 | [diff] [blame] | 2230 | case 'r': |
Namhyung Kim | ea7cd59 | 2015-04-22 16:18:19 +0900 | [diff] [blame] | 2231 | if (is_report_browser(hbt)) { |
| 2232 | actions->thread = NULL; |
| 2233 | actions->ms.sym = NULL; |
| 2234 | do_run_script(browser, actions); |
| 2235 | } |
Feng Tang | c77d8d7 | 2012-11-01 00:00:55 +0800 | [diff] [blame] | 2236 | continue; |
Feng Tang | 341487ab | 2013-02-03 14:38:20 +0800 | [diff] [blame] | 2237 | case 's': |
Namhyung Kim | bc7cad4 | 2015-04-22 16:18:18 +0900 | [diff] [blame] | 2238 | if (is_report_browser(hbt)) { |
Namhyung Kim | ea7cd59 | 2015-04-22 16:18:19 +0900 | [diff] [blame] | 2239 | key = do_switch_data(browser, actions); |
Namhyung Kim | bc7cad4 | 2015-04-22 16:18:18 +0900 | [diff] [blame] | 2240 | if (key == K_SWITCH_INPUT_DATA) |
| 2241 | goto out_free_stack; |
| 2242 | } |
Feng Tang | 341487ab | 2013-02-03 14:38:20 +0800 | [diff] [blame] | 2243 | continue; |
Namhyung Kim | 6dd6013 | 2013-12-26 14:37:59 +0900 | [diff] [blame] | 2244 | case 'i': |
| 2245 | /* env->arch is NULL for live-mode (i.e. perf top) */ |
| 2246 | if (env->arch) |
| 2247 | tui__header_window(env); |
| 2248 | continue; |
Namhyung Kim | 105eb30 | 2014-02-10 11:20:10 +0900 | [diff] [blame] | 2249 | case 'F': |
| 2250 | symbol_conf.filter_relative ^= 1; |
| 2251 | continue; |
Namhyung Kim | 42337a2 | 2014-08-12 17:16:06 +0900 | [diff] [blame] | 2252 | case 'z': |
| 2253 | if (!is_report_browser(hbt)) { |
| 2254 | struct perf_top *top = hbt->arg; |
| 2255 | |
| 2256 | top->zero = !top->zero; |
| 2257 | } |
| 2258 | continue; |
Namhyung Kim | b62e8df | 2016-02-03 23:11:23 +0900 | [diff] [blame^] | 2259 | case 'L': |
| 2260 | if (ui_browser__input_window("Percent Limit", |
| 2261 | "Please enter the value you want to hide entries under that percent.", |
| 2262 | buf, "ENTER: OK, ESC: Cancel", |
| 2263 | delay_secs * 2) == K_ENTER) { |
| 2264 | char *end; |
| 2265 | double new_percent = strtod(buf, &end); |
| 2266 | |
| 2267 | if (new_percent < 0 || new_percent > 100) { |
| 2268 | ui_browser__warning(&browser->b, delay_secs * 2, |
| 2269 | "Invalid percent: %.2f", new_percent); |
| 2270 | continue; |
| 2271 | } |
| 2272 | |
| 2273 | hist_browser__update_percent_limit(browser, new_percent); |
| 2274 | hist_browser__reset(browser); |
| 2275 | } |
| 2276 | continue; |
Arnaldo Carvalho de Melo | cf95800 | 2011-10-20 16:59:15 -0200 | [diff] [blame] | 2277 | case K_F1: |
Arnaldo Carvalho de Melo | b50e003 | 2010-08-11 10:07:43 -0300 | [diff] [blame] | 2278 | case 'h': |
| 2279 | case '?': |
Arnaldo Carvalho de Melo | 4610e41 | 2011-10-26 12:04:37 -0200 | [diff] [blame] | 2280 | ui_browser__help_window(&browser->b, |
Namhyung Kim | e8e684a | 2013-12-26 14:37:58 +0900 | [diff] [blame] | 2281 | is_report_browser(hbt) ? report_help : top_help); |
Arnaldo Carvalho de Melo | b50e003 | 2010-08-11 10:07:43 -0300 | [diff] [blame] | 2282 | continue; |
Arnaldo Carvalho de Melo | cf95800 | 2011-10-20 16:59:15 -0200 | [diff] [blame] | 2283 | case K_ENTER: |
| 2284 | case K_RIGHT: |
Namhyung Kim | 31eb436 | 2015-10-13 09:02:01 +0900 | [diff] [blame] | 2285 | case 'm': |
Arnaldo Carvalho de Melo | b50e003 | 2010-08-11 10:07:43 -0300 | [diff] [blame] | 2286 | /* menu */ |
| 2287 | break; |
Arnaldo Carvalho de Melo | 63ab174 | 2015-08-12 12:42:58 -0300 | [diff] [blame] | 2288 | case K_ESC: |
Arnaldo Carvalho de Melo | cf95800 | 2011-10-20 16:59:15 -0200 | [diff] [blame] | 2289 | case K_LEFT: { |
Arnaldo Carvalho de Melo | b50e003 | 2010-08-11 10:07:43 -0300 | [diff] [blame] | 2290 | const void *top; |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 2291 | |
Namhyung Kim | 01f00a1 | 2015-04-22 16:18:16 +0900 | [diff] [blame] | 2292 | if (pstack__empty(browser->pstack)) { |
Arnaldo Carvalho de Melo | 7f0030b | 2011-03-06 13:07:30 -0300 | [diff] [blame] | 2293 | /* |
| 2294 | * Go back to the perf_evsel_menu__run or other user |
| 2295 | */ |
| 2296 | if (left_exits) |
| 2297 | goto out_free_stack; |
Arnaldo Carvalho de Melo | 63ab174 | 2015-08-12 12:42:58 -0300 | [diff] [blame] | 2298 | |
| 2299 | if (key == K_ESC && |
| 2300 | ui_browser__dialog_yesno(&browser->b, |
| 2301 | "Do you really want to exit?")) |
| 2302 | goto out_free_stack; |
| 2303 | |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 2304 | continue; |
Arnaldo Carvalho de Melo | 7f0030b | 2011-03-06 13:07:30 -0300 | [diff] [blame] | 2305 | } |
Namhyung Kim | 6422184 | 2015-04-24 10:15:33 +0900 | [diff] [blame] | 2306 | top = pstack__peek(browser->pstack); |
Namhyung Kim | bc7cad4 | 2015-04-22 16:18:18 +0900 | [diff] [blame] | 2307 | if (top == &browser->hists->dso_filter) { |
Namhyung Kim | 6422184 | 2015-04-24 10:15:33 +0900 | [diff] [blame] | 2308 | /* |
| 2309 | * No need to set actions->dso here since |
| 2310 | * it's just to remove the current filter. |
| 2311 | * Ditto for thread below. |
| 2312 | */ |
| 2313 | do_zoom_dso(browser, actions); |
Kan Liang | 84734b0 | 2015-09-04 10:45:45 -0400 | [diff] [blame] | 2314 | } else if (top == &browser->hists->thread_filter) { |
Namhyung Kim | 6422184 | 2015-04-24 10:15:33 +0900 | [diff] [blame] | 2315 | do_zoom_thread(browser, actions); |
Kan Liang | 84734b0 | 2015-09-04 10:45:45 -0400 | [diff] [blame] | 2316 | } else if (top == &browser->hists->socket_filter) { |
| 2317 | do_zoom_socket(browser, actions); |
| 2318 | } |
Arnaldo Carvalho de Melo | b50e003 | 2010-08-11 10:07:43 -0300 | [diff] [blame] | 2319 | continue; |
| 2320 | } |
Arnaldo Carvalho de Melo | ed7e566 | 2011-10-13 08:31:22 -0300 | [diff] [blame] | 2321 | case 'q': |
| 2322 | case CTRL('c'): |
Arnaldo Carvalho de Melo | 516e536 | 2015-06-19 16:59:43 -0300 | [diff] [blame] | 2323 | goto out_free_stack; |
Arnaldo Carvalho de Melo | fbb7997 | 2015-06-19 16:56:04 -0300 | [diff] [blame] | 2324 | case 'f': |
Namhyung Kim | 13d1e53 | 2015-06-21 12:41:16 +0900 | [diff] [blame] | 2325 | if (!is_report_browser(hbt)) { |
| 2326 | struct perf_top *top = hbt->arg; |
| 2327 | |
| 2328 | perf_evlist__toggle_enable(top->evlist); |
| 2329 | /* |
| 2330 | * No need to refresh, resort/decay histogram |
| 2331 | * entries if we are not collecting samples: |
| 2332 | */ |
| 2333 | if (top->evlist->enabled) { |
| 2334 | helpline = "Press 'f' to disable the events or 'h' to see other hotkeys"; |
| 2335 | hbt->refresh = delay_secs; |
| 2336 | } else { |
| 2337 | helpline = "Press 'f' again to re-enable the events"; |
| 2338 | hbt->refresh = 0; |
| 2339 | } |
| 2340 | continue; |
| 2341 | } |
Arnaldo Carvalho de Melo | 3e323dc | 2015-06-19 17:49:29 -0300 | [diff] [blame] | 2342 | /* Fall thru */ |
Arnaldo Carvalho de Melo | ed7e566 | 2011-10-13 08:31:22 -0300 | [diff] [blame] | 2343 | default: |
Arnaldo Carvalho de Melo | 3e323dc | 2015-06-19 17:49:29 -0300 | [diff] [blame] | 2344 | helpline = "Press '?' for help on key bindings"; |
Arnaldo Carvalho de Melo | ed7e566 | 2011-10-13 08:31:22 -0300 | [diff] [blame] | 2345 | continue; |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 2346 | } |
| 2347 | |
Namhyung Kim | 4056132 | 2016-01-22 12:26:06 -0300 | [diff] [blame] | 2348 | if (!sort__has_sym || browser->selection == NULL) |
Arnaldo Carvalho de Melo | 0ba332f | 2015-03-16 17:41:52 -0300 | [diff] [blame] | 2349 | goto skip_annotation; |
| 2350 | |
Namhyung Kim | 55369fc | 2013-04-01 20:35:20 +0900 | [diff] [blame] | 2351 | if (sort__mode == SORT_MODE__BRANCH) { |
Stephane Eranian | a68c2c5 | 2012-03-08 23:47:48 +0100 | [diff] [blame] | 2352 | bi = browser->he_selection->branch_info; |
Arnaldo Carvalho de Melo | 0ba332f | 2015-03-16 17:41:52 -0300 | [diff] [blame] | 2353 | |
| 2354 | if (bi == NULL) |
| 2355 | goto skip_annotation; |
| 2356 | |
Namhyung Kim | ea7cd59 | 2015-04-22 16:18:19 +0900 | [diff] [blame] | 2357 | nr_options += add_annotate_opt(browser, |
| 2358 | &actions[nr_options], |
| 2359 | &options[nr_options], |
| 2360 | bi->from.map, |
| 2361 | bi->from.sym); |
| 2362 | if (bi->to.sym != bi->from.sym) |
| 2363 | nr_options += add_annotate_opt(browser, |
| 2364 | &actions[nr_options], |
| 2365 | &options[nr_options], |
| 2366 | bi->to.map, |
| 2367 | bi->to.sym); |
Stephane Eranian | a68c2c5 | 2012-03-08 23:47:48 +0100 | [diff] [blame] | 2368 | } else { |
Namhyung Kim | ea7cd59 | 2015-04-22 16:18:19 +0900 | [diff] [blame] | 2369 | nr_options += add_annotate_opt(browser, |
| 2370 | &actions[nr_options], |
| 2371 | &options[nr_options], |
| 2372 | browser->selection->map, |
| 2373 | browser->selection->sym); |
Stephane Eranian | a68c2c5 | 2012-03-08 23:47:48 +0100 | [diff] [blame] | 2374 | } |
Arnaldo Carvalho de Melo | 0ba332f | 2015-03-16 17:41:52 -0300 | [diff] [blame] | 2375 | skip_annotation: |
Namhyung Kim | ea7cd59 | 2015-04-22 16:18:19 +0900 | [diff] [blame] | 2376 | nr_options += add_thread_opt(browser, &actions[nr_options], |
| 2377 | &options[nr_options], thread); |
| 2378 | nr_options += add_dso_opt(browser, &actions[nr_options], |
Arnaldo Carvalho de Melo | 045b80d | 2015-09-23 15:38:55 -0300 | [diff] [blame] | 2379 | &options[nr_options], map); |
Namhyung Kim | ea7cd59 | 2015-04-22 16:18:19 +0900 | [diff] [blame] | 2380 | nr_options += add_map_opt(browser, &actions[nr_options], |
| 2381 | &options[nr_options], |
Wang Nan | bd315aa | 2015-09-14 10:23:55 +0000 | [diff] [blame] | 2382 | browser->selection ? |
| 2383 | browser->selection->map : NULL); |
Kan Liang | 84734b0 | 2015-09-04 10:45:45 -0400 | [diff] [blame] | 2384 | nr_options += add_socket_opt(browser, &actions[nr_options], |
| 2385 | &options[nr_options], |
| 2386 | socked_id); |
Feng Tang | cdbab7c | 2012-10-30 11:56:06 +0800 | [diff] [blame] | 2387 | /* perf script support */ |
Namhyung Kim | b1baae8 | 2016-01-26 15:37:30 -0300 | [diff] [blame] | 2388 | if (!is_report_browser(hbt)) |
| 2389 | goto skip_scripting; |
| 2390 | |
Feng Tang | cdbab7c | 2012-10-30 11:56:06 +0800 | [diff] [blame] | 2391 | if (browser->he_selection) { |
Namhyung Kim | 2eafd41 | 2016-01-21 19:13:24 -0300 | [diff] [blame] | 2392 | if (sort__has_thread && thread) { |
| 2393 | nr_options += add_script_opt(browser, |
| 2394 | &actions[nr_options], |
| 2395 | &options[nr_options], |
| 2396 | thread, NULL); |
| 2397 | } |
Wang Nan | bd315aa | 2015-09-14 10:23:55 +0000 | [diff] [blame] | 2398 | /* |
| 2399 | * Note that browser->selection != NULL |
| 2400 | * when browser->he_selection is not NULL, |
| 2401 | * so we don't need to check browser->selection |
| 2402 | * before fetching browser->selection->sym like what |
| 2403 | * we do before fetching browser->selection->map. |
| 2404 | * |
| 2405 | * See hist_browser__show_entry. |
| 2406 | */ |
Namhyung Kim | c221acb | 2016-01-21 19:50:09 -0300 | [diff] [blame] | 2407 | if (sort__has_sym && browser->selection->sym) { |
| 2408 | nr_options += add_script_opt(browser, |
| 2409 | &actions[nr_options], |
| 2410 | &options[nr_options], |
| 2411 | NULL, browser->selection->sym); |
| 2412 | } |
Feng Tang | cdbab7c | 2012-10-30 11:56:06 +0800 | [diff] [blame] | 2413 | } |
Namhyung Kim | ea7cd59 | 2015-04-22 16:18:19 +0900 | [diff] [blame] | 2414 | nr_options += add_script_opt(browser, &actions[nr_options], |
| 2415 | &options[nr_options], NULL, NULL); |
| 2416 | nr_options += add_switch_opt(browser, &actions[nr_options], |
| 2417 | &options[nr_options]); |
Namhyung Kim | b1baae8 | 2016-01-26 15:37:30 -0300 | [diff] [blame] | 2418 | skip_scripting: |
Namhyung Kim | ea7cd59 | 2015-04-22 16:18:19 +0900 | [diff] [blame] | 2419 | nr_options += add_exit_opt(browser, &actions[nr_options], |
| 2420 | &options[nr_options]); |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 2421 | |
Namhyung Kim | ea7cd59 | 2015-04-22 16:18:19 +0900 | [diff] [blame] | 2422 | do { |
| 2423 | struct popup_action *act; |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 2424 | |
Namhyung Kim | ea7cd59 | 2015-04-22 16:18:19 +0900 | [diff] [blame] | 2425 | choice = ui__popup_menu(nr_options, options); |
| 2426 | if (choice == -1 || choice >= nr_options) |
Feng Tang | 341487ab | 2013-02-03 14:38:20 +0800 | [diff] [blame] | 2427 | break; |
Namhyung Kim | ea7cd59 | 2015-04-22 16:18:19 +0900 | [diff] [blame] | 2428 | |
| 2429 | act = &actions[choice]; |
| 2430 | key = act->fn(browser, act); |
| 2431 | } while (key == 1); |
| 2432 | |
| 2433 | if (key == K_SWITCH_INPUT_DATA) |
| 2434 | break; |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 2435 | } |
| 2436 | out_free_stack: |
Namhyung Kim | 01f00a1 | 2015-04-22 16:18:16 +0900 | [diff] [blame] | 2437 | pstack__delete(browser->pstack); |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 2438 | out: |
| 2439 | hist_browser__delete(browser); |
Namhyung Kim | f2b487d | 2015-04-22 16:18:14 +0900 | [diff] [blame] | 2440 | free_popup_options(options, MAX_OPTIONS); |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 2441 | return key; |
| 2442 | } |
| 2443 | |
Arnaldo Carvalho de Melo | 7f0030b | 2011-03-06 13:07:30 -0300 | [diff] [blame] | 2444 | struct perf_evsel_menu { |
| 2445 | struct ui_browser b; |
| 2446 | struct perf_evsel *selection; |
Arnaldo Carvalho de Melo | 7b27509 | 2011-10-29 12:15:04 -0200 | [diff] [blame] | 2447 | bool lost_events, lost_events_warned; |
Namhyung Kim | 064f198 | 2013-05-14 11:09:04 +0900 | [diff] [blame] | 2448 | float min_pcnt; |
Kan Liang | ce80d3b | 2015-08-28 05:48:04 -0400 | [diff] [blame] | 2449 | struct perf_env *env; |
Arnaldo Carvalho de Melo | 7f0030b | 2011-03-06 13:07:30 -0300 | [diff] [blame] | 2450 | }; |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 2451 | |
Arnaldo Carvalho de Melo | 7f0030b | 2011-03-06 13:07:30 -0300 | [diff] [blame] | 2452 | static void perf_evsel_menu__write(struct ui_browser *browser, |
| 2453 | void *entry, int row) |
| 2454 | { |
| 2455 | struct perf_evsel_menu *menu = container_of(browser, |
| 2456 | struct perf_evsel_menu, b); |
| 2457 | struct perf_evsel *evsel = list_entry(entry, struct perf_evsel, node); |
Arnaldo Carvalho de Melo | 4ea062ed | 2014-10-09 13:13:41 -0300 | [diff] [blame] | 2458 | struct hists *hists = evsel__hists(evsel); |
Arnaldo Carvalho de Melo | 7f0030b | 2011-03-06 13:07:30 -0300 | [diff] [blame] | 2459 | bool current_entry = ui_browser__is_current_entry(browser, row); |
Arnaldo Carvalho de Melo | 4ea062ed | 2014-10-09 13:13:41 -0300 | [diff] [blame] | 2460 | unsigned long nr_events = hists->stats.nr_events[PERF_RECORD_SAMPLE]; |
Arnaldo Carvalho de Melo | 7289f83 | 2012-06-12 12:34:58 -0300 | [diff] [blame] | 2461 | const char *ev_name = perf_evsel__name(evsel); |
Arnaldo Carvalho de Melo | 7f0030b | 2011-03-06 13:07:30 -0300 | [diff] [blame] | 2462 | char bf[256], unit; |
Arnaldo Carvalho de Melo | 7b27509 | 2011-10-29 12:15:04 -0200 | [diff] [blame] | 2463 | const char *warn = " "; |
| 2464 | size_t printed; |
Arnaldo Carvalho de Melo | 7f0030b | 2011-03-06 13:07:30 -0300 | [diff] [blame] | 2465 | |
| 2466 | ui_browser__set_color(browser, current_entry ? HE_COLORSET_SELECTED : |
| 2467 | HE_COLORSET_NORMAL); |
| 2468 | |
Namhyung Kim | 759ff49 | 2013-03-05 14:53:26 +0900 | [diff] [blame] | 2469 | if (perf_evsel__is_group_event(evsel)) { |
Namhyung Kim | 717e263 | 2013-01-22 18:09:44 +0900 | [diff] [blame] | 2470 | struct perf_evsel *pos; |
| 2471 | |
| 2472 | ev_name = perf_evsel__group_name(evsel); |
| 2473 | |
| 2474 | for_each_group_member(pos, evsel) { |
Arnaldo Carvalho de Melo | 4ea062ed | 2014-10-09 13:13:41 -0300 | [diff] [blame] | 2475 | struct hists *pos_hists = evsel__hists(pos); |
| 2476 | nr_events += pos_hists->stats.nr_events[PERF_RECORD_SAMPLE]; |
Namhyung Kim | 717e263 | 2013-01-22 18:09:44 +0900 | [diff] [blame] | 2477 | } |
| 2478 | } |
| 2479 | |
Arnaldo Carvalho de Melo | 7f0030b | 2011-03-06 13:07:30 -0300 | [diff] [blame] | 2480 | nr_events = convert_unit(nr_events, &unit); |
Arnaldo Carvalho de Melo | e7f01d1 | 2012-03-14 12:29:29 -0300 | [diff] [blame] | 2481 | printed = scnprintf(bf, sizeof(bf), "%lu%c%s%s", nr_events, |
Arnaldo Carvalho de Melo | 7b27509 | 2011-10-29 12:15:04 -0200 | [diff] [blame] | 2482 | unit, unit == ' ' ? "" : " ", ev_name); |
Arnaldo Carvalho de Melo | 517dfdb | 2015-08-11 12:50:55 -0300 | [diff] [blame] | 2483 | ui_browser__printf(browser, "%s", bf); |
Arnaldo Carvalho de Melo | 7b27509 | 2011-10-29 12:15:04 -0200 | [diff] [blame] | 2484 | |
Arnaldo Carvalho de Melo | 4ea062ed | 2014-10-09 13:13:41 -0300 | [diff] [blame] | 2485 | nr_events = hists->stats.nr_events[PERF_RECORD_LOST]; |
Arnaldo Carvalho de Melo | 7b27509 | 2011-10-29 12:15:04 -0200 | [diff] [blame] | 2486 | if (nr_events != 0) { |
| 2487 | menu->lost_events = true; |
| 2488 | if (!current_entry) |
| 2489 | ui_browser__set_color(browser, HE_COLORSET_TOP); |
| 2490 | nr_events = convert_unit(nr_events, &unit); |
Arnaldo Carvalho de Melo | e7f01d1 | 2012-03-14 12:29:29 -0300 | [diff] [blame] | 2491 | printed += scnprintf(bf, sizeof(bf), ": %ld%c%schunks LOST!", |
| 2492 | nr_events, unit, unit == ' ' ? "" : " "); |
Arnaldo Carvalho de Melo | 7b27509 | 2011-10-29 12:15:04 -0200 | [diff] [blame] | 2493 | warn = bf; |
| 2494 | } |
| 2495 | |
Arnaldo Carvalho de Melo | 26270a0 | 2015-08-11 12:24:27 -0300 | [diff] [blame] | 2496 | ui_browser__write_nstring(browser, warn, browser->width - printed); |
Arnaldo Carvalho de Melo | 7f0030b | 2011-03-06 13:07:30 -0300 | [diff] [blame] | 2497 | |
| 2498 | if (current_entry) |
| 2499 | menu->selection = evsel; |
| 2500 | } |
| 2501 | |
Arnaldo Carvalho de Melo | 3495854 | 2011-10-05 19:35:54 -0300 | [diff] [blame] | 2502 | static int perf_evsel_menu__run(struct perf_evsel_menu *menu, |
| 2503 | int nr_events, const char *help, |
Namhyung Kim | 9783adf | 2012-11-02 14:50:05 +0900 | [diff] [blame] | 2504 | struct hist_browser_timer *hbt) |
Arnaldo Carvalho de Melo | 7f0030b | 2011-03-06 13:07:30 -0300 | [diff] [blame] | 2505 | { |
Arnaldo Carvalho de Melo | 7f0030b | 2011-03-06 13:07:30 -0300 | [diff] [blame] | 2506 | struct perf_evlist *evlist = menu->b.priv; |
| 2507 | struct perf_evsel *pos; |
Jiri Olsa | dd00d48 | 2014-06-19 13:41:13 +0200 | [diff] [blame] | 2508 | const char *title = "Available samples"; |
Namhyung Kim | 9783adf | 2012-11-02 14:50:05 +0900 | [diff] [blame] | 2509 | int delay_secs = hbt ? hbt->refresh : 0; |
Arnaldo Carvalho de Melo | 7f0030b | 2011-03-06 13:07:30 -0300 | [diff] [blame] | 2510 | int key; |
| 2511 | |
| 2512 | if (ui_browser__show(&menu->b, title, |
| 2513 | "ESC: exit, ENTER|->: Browse histograms") < 0) |
| 2514 | return -1; |
| 2515 | |
Arnaldo Carvalho de Melo | 7f0030b | 2011-03-06 13:07:30 -0300 | [diff] [blame] | 2516 | while (1) { |
Arnaldo Carvalho de Melo | 3af6e33 | 2011-10-13 08:52:46 -0300 | [diff] [blame] | 2517 | key = ui_browser__run(&menu->b, delay_secs); |
Arnaldo Carvalho de Melo | 7f0030b | 2011-03-06 13:07:30 -0300 | [diff] [blame] | 2518 | |
| 2519 | switch (key) { |
Arnaldo Carvalho de Melo | cf95800 | 2011-10-20 16:59:15 -0200 | [diff] [blame] | 2520 | case K_TIMER: |
Namhyung Kim | 9783adf | 2012-11-02 14:50:05 +0900 | [diff] [blame] | 2521 | hbt->timer(hbt->arg); |
Arnaldo Carvalho de Melo | 7b27509 | 2011-10-29 12:15:04 -0200 | [diff] [blame] | 2522 | |
| 2523 | if (!menu->lost_events_warned && menu->lost_events) { |
| 2524 | ui_browser__warn_lost_events(&menu->b); |
| 2525 | menu->lost_events_warned = true; |
| 2526 | } |
Arnaldo Carvalho de Melo | 81cce8d | 2011-10-05 19:11:32 -0300 | [diff] [blame] | 2527 | continue; |
Arnaldo Carvalho de Melo | cf95800 | 2011-10-20 16:59:15 -0200 | [diff] [blame] | 2528 | case K_RIGHT: |
| 2529 | case K_ENTER: |
Arnaldo Carvalho de Melo | 7f0030b | 2011-03-06 13:07:30 -0300 | [diff] [blame] | 2530 | if (!menu->selection) |
| 2531 | continue; |
| 2532 | pos = menu->selection; |
| 2533 | browse_hists: |
Arnaldo Carvalho de Melo | 18eaf0b | 2011-10-13 12:22:28 -0300 | [diff] [blame] | 2534 | perf_evlist__set_selected(evlist, pos); |
| 2535 | /* |
| 2536 | * Give the calling tool a chance to populate the non |
| 2537 | * default evsel resorted hists tree. |
| 2538 | */ |
Namhyung Kim | 9783adf | 2012-11-02 14:50:05 +0900 | [diff] [blame] | 2539 | if (hbt) |
| 2540 | hbt->timer(hbt->arg); |
Arnaldo Carvalho de Melo | 3495854 | 2011-10-05 19:35:54 -0300 | [diff] [blame] | 2541 | key = perf_evsel__hists_browse(pos, nr_events, help, |
Jiri Olsa | dd00d48 | 2014-06-19 13:41:13 +0200 | [diff] [blame] | 2542 | true, hbt, |
Namhyung Kim | 064f198 | 2013-05-14 11:09:04 +0900 | [diff] [blame] | 2543 | menu->min_pcnt, |
Namhyung Kim | 68d8075 | 2012-11-02 14:50:06 +0900 | [diff] [blame] | 2544 | menu->env); |
Arnaldo Carvalho de Melo | 7f0030b | 2011-03-06 13:07:30 -0300 | [diff] [blame] | 2545 | ui_browser__show_title(&menu->b, title); |
Arnaldo Carvalho de Melo | 18eaf0b | 2011-10-13 12:22:28 -0300 | [diff] [blame] | 2546 | switch (key) { |
Arnaldo Carvalho de Melo | cf95800 | 2011-10-20 16:59:15 -0200 | [diff] [blame] | 2547 | case K_TAB: |
Arnaldo Carvalho de Melo | 18eaf0b | 2011-10-13 12:22:28 -0300 | [diff] [blame] | 2548 | if (pos->node.next == &evlist->entries) |
Arnaldo Carvalho de Melo | 9a354cd | 2013-11-13 15:54:30 -0300 | [diff] [blame] | 2549 | pos = perf_evlist__first(evlist); |
Arnaldo Carvalho de Melo | 18eaf0b | 2011-10-13 12:22:28 -0300 | [diff] [blame] | 2550 | else |
Arnaldo Carvalho de Melo | 9a354cd | 2013-11-13 15:54:30 -0300 | [diff] [blame] | 2551 | pos = perf_evsel__next(pos); |
Arnaldo Carvalho de Melo | 18eaf0b | 2011-10-13 12:22:28 -0300 | [diff] [blame] | 2552 | goto browse_hists; |
Arnaldo Carvalho de Melo | cf95800 | 2011-10-20 16:59:15 -0200 | [diff] [blame] | 2553 | case K_UNTAB: |
Arnaldo Carvalho de Melo | 18eaf0b | 2011-10-13 12:22:28 -0300 | [diff] [blame] | 2554 | if (pos->node.prev == &evlist->entries) |
Arnaldo Carvalho de Melo | 9a354cd | 2013-11-13 15:54:30 -0300 | [diff] [blame] | 2555 | pos = perf_evlist__last(evlist); |
Arnaldo Carvalho de Melo | 18eaf0b | 2011-10-13 12:22:28 -0300 | [diff] [blame] | 2556 | else |
Arnaldo Carvalho de Melo | d87fcb4 | 2013-11-13 15:56:40 -0300 | [diff] [blame] | 2557 | pos = perf_evsel__prev(pos); |
Arnaldo Carvalho de Melo | 18eaf0b | 2011-10-13 12:22:28 -0300 | [diff] [blame] | 2558 | goto browse_hists; |
Feng Tang | 341487ab | 2013-02-03 14:38:20 +0800 | [diff] [blame] | 2559 | case K_SWITCH_INPUT_DATA: |
Arnaldo Carvalho de Melo | 18eaf0b | 2011-10-13 12:22:28 -0300 | [diff] [blame] | 2560 | case 'q': |
| 2561 | case CTRL('c'): |
| 2562 | goto out; |
Arnaldo Carvalho de Melo | 63ab174 | 2015-08-12 12:42:58 -0300 | [diff] [blame] | 2563 | case K_ESC: |
Arnaldo Carvalho de Melo | 18eaf0b | 2011-10-13 12:22:28 -0300 | [diff] [blame] | 2564 | default: |
| 2565 | continue; |
| 2566 | } |
Arnaldo Carvalho de Melo | cf95800 | 2011-10-20 16:59:15 -0200 | [diff] [blame] | 2567 | case K_LEFT: |
Arnaldo Carvalho de Melo | 7f0030b | 2011-03-06 13:07:30 -0300 | [diff] [blame] | 2568 | continue; |
Arnaldo Carvalho de Melo | cf95800 | 2011-10-20 16:59:15 -0200 | [diff] [blame] | 2569 | case K_ESC: |
Arnaldo Carvalho de Melo | 4610e41 | 2011-10-26 12:04:37 -0200 | [diff] [blame] | 2570 | if (!ui_browser__dialog_yesno(&menu->b, |
| 2571 | "Do you really want to exit?")) |
Arnaldo Carvalho de Melo | ed7e566 | 2011-10-13 08:31:22 -0300 | [diff] [blame] | 2572 | continue; |
| 2573 | /* Fall thru */ |
Arnaldo Carvalho de Melo | 7f0030b | 2011-03-06 13:07:30 -0300 | [diff] [blame] | 2574 | case 'q': |
| 2575 | case CTRL('c'): |
| 2576 | goto out; |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 2577 | default: |
Arnaldo Carvalho de Melo | 18eaf0b | 2011-10-13 12:22:28 -0300 | [diff] [blame] | 2578 | continue; |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 2579 | } |
| 2580 | } |
| 2581 | |
Arnaldo Carvalho de Melo | 7f0030b | 2011-03-06 13:07:30 -0300 | [diff] [blame] | 2582 | out: |
| 2583 | ui_browser__hide(&menu->b); |
| 2584 | return key; |
| 2585 | } |
| 2586 | |
Arnaldo Carvalho de Melo | 316c713 | 2013-11-05 15:32:36 -0300 | [diff] [blame] | 2587 | static bool filter_group_entries(struct ui_browser *browser __maybe_unused, |
Namhyung Kim | fc24d7c | 2013-01-22 18:09:43 +0900 | [diff] [blame] | 2588 | void *entry) |
| 2589 | { |
| 2590 | struct perf_evsel *evsel = list_entry(entry, struct perf_evsel, node); |
| 2591 | |
| 2592 | if (symbol_conf.event_group && !perf_evsel__is_group_leader(evsel)) |
| 2593 | return true; |
| 2594 | |
| 2595 | return false; |
| 2596 | } |
| 2597 | |
Arnaldo Carvalho de Melo | 7f0030b | 2011-03-06 13:07:30 -0300 | [diff] [blame] | 2598 | static int __perf_evlist__tui_browse_hists(struct perf_evlist *evlist, |
Namhyung Kim | fc24d7c | 2013-01-22 18:09:43 +0900 | [diff] [blame] | 2599 | int nr_entries, const char *help, |
Namhyung Kim | 68d8075 | 2012-11-02 14:50:06 +0900 | [diff] [blame] | 2600 | struct hist_browser_timer *hbt, |
Namhyung Kim | 064f198 | 2013-05-14 11:09:04 +0900 | [diff] [blame] | 2601 | float min_pcnt, |
Kan Liang | ce80d3b | 2015-08-28 05:48:04 -0400 | [diff] [blame] | 2602 | struct perf_env *env) |
Arnaldo Carvalho de Melo | 7f0030b | 2011-03-06 13:07:30 -0300 | [diff] [blame] | 2603 | { |
| 2604 | struct perf_evsel *pos; |
| 2605 | struct perf_evsel_menu menu = { |
| 2606 | .b = { |
| 2607 | .entries = &evlist->entries, |
| 2608 | .refresh = ui_browser__list_head_refresh, |
| 2609 | .seek = ui_browser__list_head_seek, |
| 2610 | .write = perf_evsel_menu__write, |
Namhyung Kim | fc24d7c | 2013-01-22 18:09:43 +0900 | [diff] [blame] | 2611 | .filter = filter_group_entries, |
| 2612 | .nr_entries = nr_entries, |
Arnaldo Carvalho de Melo | 7f0030b | 2011-03-06 13:07:30 -0300 | [diff] [blame] | 2613 | .priv = evlist, |
| 2614 | }, |
Namhyung Kim | 064f198 | 2013-05-14 11:09:04 +0900 | [diff] [blame] | 2615 | .min_pcnt = min_pcnt, |
Namhyung Kim | 68d8075 | 2012-11-02 14:50:06 +0900 | [diff] [blame] | 2616 | .env = env, |
Arnaldo Carvalho de Melo | 7f0030b | 2011-03-06 13:07:30 -0300 | [diff] [blame] | 2617 | }; |
| 2618 | |
| 2619 | ui_helpline__push("Press ESC to exit"); |
| 2620 | |
Arnaldo Carvalho de Melo | 0050f7a | 2014-01-10 10:37:27 -0300 | [diff] [blame] | 2621 | evlist__for_each(evlist, pos) { |
Arnaldo Carvalho de Melo | 7289f83 | 2012-06-12 12:34:58 -0300 | [diff] [blame] | 2622 | const char *ev_name = perf_evsel__name(pos); |
Arnaldo Carvalho de Melo | 7f0030b | 2011-03-06 13:07:30 -0300 | [diff] [blame] | 2623 | size_t line_len = strlen(ev_name) + 7; |
| 2624 | |
| 2625 | if (menu.b.width < line_len) |
| 2626 | menu.b.width = line_len; |
Arnaldo Carvalho de Melo | 7f0030b | 2011-03-06 13:07:30 -0300 | [diff] [blame] | 2627 | } |
| 2628 | |
Namhyung Kim | fc24d7c | 2013-01-22 18:09:43 +0900 | [diff] [blame] | 2629 | return perf_evsel_menu__run(&menu, nr_entries, help, hbt); |
Arnaldo Carvalho de Melo | 7f0030b | 2011-03-06 13:07:30 -0300 | [diff] [blame] | 2630 | } |
| 2631 | |
Arnaldo Carvalho de Melo | 81cce8d | 2011-10-05 19:11:32 -0300 | [diff] [blame] | 2632 | int perf_evlist__tui_browse_hists(struct perf_evlist *evlist, const char *help, |
Namhyung Kim | 68d8075 | 2012-11-02 14:50:06 +0900 | [diff] [blame] | 2633 | struct hist_browser_timer *hbt, |
Namhyung Kim | 064f198 | 2013-05-14 11:09:04 +0900 | [diff] [blame] | 2634 | float min_pcnt, |
Kan Liang | ce80d3b | 2015-08-28 05:48:04 -0400 | [diff] [blame] | 2635 | struct perf_env *env) |
Arnaldo Carvalho de Melo | 7f0030b | 2011-03-06 13:07:30 -0300 | [diff] [blame] | 2636 | { |
Namhyung Kim | fc24d7c | 2013-01-22 18:09:43 +0900 | [diff] [blame] | 2637 | int nr_entries = evlist->nr_entries; |
| 2638 | |
| 2639 | single_entry: |
| 2640 | if (nr_entries == 1) { |
Arnaldo Carvalho de Melo | 9a354cd | 2013-11-13 15:54:30 -0300 | [diff] [blame] | 2641 | struct perf_evsel *first = perf_evlist__first(evlist); |
Namhyung Kim | fc24d7c | 2013-01-22 18:09:43 +0900 | [diff] [blame] | 2642 | |
| 2643 | return perf_evsel__hists_browse(first, nr_entries, help, |
Jiri Olsa | dd00d48 | 2014-06-19 13:41:13 +0200 | [diff] [blame] | 2644 | false, hbt, min_pcnt, |
Namhyung Kim | 064f198 | 2013-05-14 11:09:04 +0900 | [diff] [blame] | 2645 | env); |
Arnaldo Carvalho de Melo | 7f0030b | 2011-03-06 13:07:30 -0300 | [diff] [blame] | 2646 | } |
| 2647 | |
Namhyung Kim | fc24d7c | 2013-01-22 18:09:43 +0900 | [diff] [blame] | 2648 | if (symbol_conf.event_group) { |
| 2649 | struct perf_evsel *pos; |
| 2650 | |
| 2651 | nr_entries = 0; |
Arnaldo Carvalho de Melo | 0050f7a | 2014-01-10 10:37:27 -0300 | [diff] [blame] | 2652 | evlist__for_each(evlist, pos) { |
Namhyung Kim | fc24d7c | 2013-01-22 18:09:43 +0900 | [diff] [blame] | 2653 | if (perf_evsel__is_group_leader(pos)) |
| 2654 | nr_entries++; |
Arnaldo Carvalho de Melo | 0050f7a | 2014-01-10 10:37:27 -0300 | [diff] [blame] | 2655 | } |
Namhyung Kim | fc24d7c | 2013-01-22 18:09:43 +0900 | [diff] [blame] | 2656 | |
| 2657 | if (nr_entries == 1) |
| 2658 | goto single_entry; |
| 2659 | } |
| 2660 | |
| 2661 | return __perf_evlist__tui_browse_hists(evlist, nr_entries, help, |
Namhyung Kim | 064f198 | 2013-05-14 11:09:04 +0900 | [diff] [blame] | 2662 | hbt, min_pcnt, env); |
Arnaldo Carvalho de Melo | d1b4f24 | 2010-08-10 15:49:07 -0300 | [diff] [blame] | 2663 | } |