Namhyung Kim | 0da41ce9 | 2012-12-21 17:20:13 +0900 | [diff] [blame] | 1 | #include "../evlist.h" |
| 2 | #include "../cache.h" |
| 3 | #include "../evsel.h" |
| 4 | #include "../sort.h" |
| 5 | #include "../hist.h" |
| 6 | #include "../helpline.h" |
| 7 | #include "gtk.h" |
| 8 | |
| 9 | #define MAX_COLUMNS 32 |
| 10 | |
Namhyung Kim | cb16008 | 2013-01-22 18:09:40 +0900 | [diff] [blame] | 11 | static int __percent_color_snprintf(char *buf, size_t size, double percent) |
Namhyung Kim | 843985e | 2013-01-22 18:09:36 +0900 | [diff] [blame] | 12 | { |
| 13 | int ret = 0; |
| 14 | const char *markup; |
| 15 | |
| 16 | markup = perf_gtk__get_percent_color(percent); |
| 17 | if (markup) |
| 18 | ret += scnprintf(buf, size, markup); |
| 19 | |
Namhyung Kim | cb16008 | 2013-01-22 18:09:40 +0900 | [diff] [blame] | 20 | ret += scnprintf(buf + ret, size - ret, " %6.2f%%", percent); |
Namhyung Kim | 843985e | 2013-01-22 18:09:36 +0900 | [diff] [blame] | 21 | |
| 22 | if (markup) |
| 23 | ret += scnprintf(buf + ret, size - ret, "</span>"); |
| 24 | |
| 25 | return ret; |
Namhyung Kim | 0da41ce9 | 2012-12-21 17:20:13 +0900 | [diff] [blame] | 26 | } |
| 27 | |
Namhyung Kim | 0da41ce9 | 2012-12-21 17:20:13 +0900 | [diff] [blame] | 28 | |
Namhyung Kim | 843985e | 2013-01-22 18:09:36 +0900 | [diff] [blame] | 29 | static int __hpp__color_fmt(struct perf_hpp *hpp, struct hist_entry *he, |
| 30 | u64 (*get_field)(struct hist_entry *)) |
| 31 | { |
| 32 | int ret; |
| 33 | double percent = 0.0; |
| 34 | struct hists *hists = he->hists; |
Namhyung Kim | 759ff49 | 2013-03-05 14:53:26 +0900 | [diff] [blame] | 35 | struct perf_evsel *evsel = hists_to_evsel(hists); |
Namhyung Kim | 843985e | 2013-01-22 18:09:36 +0900 | [diff] [blame] | 36 | |
| 37 | if (hists->stats.total_period) |
| 38 | percent = 100.0 * get_field(he) / hists->stats.total_period; |
| 39 | |
Namhyung Kim | cb16008 | 2013-01-22 18:09:40 +0900 | [diff] [blame] | 40 | ret = __percent_color_snprintf(hpp->buf, hpp->size, percent); |
| 41 | |
Namhyung Kim | 759ff49 | 2013-03-05 14:53:26 +0900 | [diff] [blame] | 42 | if (perf_evsel__is_group_event(evsel)) { |
Namhyung Kim | cb16008 | 2013-01-22 18:09:40 +0900 | [diff] [blame] | 43 | int prev_idx, idx_delta; |
Namhyung Kim | cb16008 | 2013-01-22 18:09:40 +0900 | [diff] [blame] | 44 | struct hist_entry *pair; |
| 45 | int nr_members = evsel->nr_members; |
| 46 | |
Namhyung Kim | cb16008 | 2013-01-22 18:09:40 +0900 | [diff] [blame] | 47 | prev_idx = perf_evsel__group_idx(evsel); |
| 48 | |
| 49 | list_for_each_entry(pair, &he->pairs.head, pairs.node) { |
| 50 | u64 period = get_field(pair); |
| 51 | u64 total = pair->hists->stats.total_period; |
| 52 | |
| 53 | evsel = hists_to_evsel(pair->hists); |
| 54 | idx_delta = perf_evsel__group_idx(evsel) - prev_idx - 1; |
| 55 | |
| 56 | while (idx_delta--) { |
| 57 | /* |
| 58 | * zero-fill group members in the middle which |
| 59 | * have no sample |
| 60 | */ |
| 61 | ret += __percent_color_snprintf(hpp->buf + ret, |
| 62 | hpp->size - ret, |
| 63 | 0.0); |
| 64 | } |
| 65 | |
| 66 | percent = 100.0 * period / total; |
| 67 | ret += __percent_color_snprintf(hpp->buf + ret, |
| 68 | hpp->size - ret, |
| 69 | percent); |
| 70 | |
| 71 | prev_idx = perf_evsel__group_idx(evsel); |
| 72 | } |
| 73 | |
| 74 | idx_delta = nr_members - prev_idx - 1; |
| 75 | |
| 76 | while (idx_delta--) { |
| 77 | /* |
| 78 | * zero-fill group members at last which have no sample |
| 79 | */ |
| 80 | ret += __percent_color_snprintf(hpp->buf + ret, |
| 81 | hpp->size - ret, |
| 82 | 0.0); |
| 83 | } |
| 84 | } |
Namhyung Kim | 843985e | 2013-01-22 18:09:36 +0900 | [diff] [blame] | 85 | return ret; |
| 86 | } |
| 87 | |
| 88 | #define __HPP_COLOR_PERCENT_FN(_type, _field) \ |
| 89 | static u64 he_get_##_field(struct hist_entry *he) \ |
| 90 | { \ |
| 91 | return he->stat._field; \ |
| 92 | } \ |
| 93 | \ |
| 94 | static int perf_gtk__hpp_color_##_type(struct perf_hpp *hpp, \ |
| 95 | struct hist_entry *he) \ |
| 96 | { \ |
| 97 | return __hpp__color_fmt(hpp, he, he_get_##_field); \ |
| 98 | } |
| 99 | |
| 100 | __HPP_COLOR_PERCENT_FN(overhead, period) |
| 101 | __HPP_COLOR_PERCENT_FN(overhead_sys, period_sys) |
| 102 | __HPP_COLOR_PERCENT_FN(overhead_us, period_us) |
| 103 | __HPP_COLOR_PERCENT_FN(overhead_guest_sys, period_guest_sys) |
| 104 | __HPP_COLOR_PERCENT_FN(overhead_guest_us, period_guest_us) |
| 105 | |
| 106 | #undef __HPP_COLOR_PERCENT_FN |
Namhyung Kim | 0da41ce9 | 2012-12-21 17:20:13 +0900 | [diff] [blame] | 107 | |
| 108 | |
| 109 | void perf_gtk__init_hpp(void) |
| 110 | { |
| 111 | perf_hpp__column_enable(PERF_HPP__OVERHEAD); |
| 112 | |
| 113 | perf_hpp__init(); |
| 114 | |
| 115 | perf_hpp__format[PERF_HPP__OVERHEAD].color = |
| 116 | perf_gtk__hpp_color_overhead; |
| 117 | perf_hpp__format[PERF_HPP__OVERHEAD_SYS].color = |
| 118 | perf_gtk__hpp_color_overhead_sys; |
| 119 | perf_hpp__format[PERF_HPP__OVERHEAD_US].color = |
| 120 | perf_gtk__hpp_color_overhead_us; |
| 121 | perf_hpp__format[PERF_HPP__OVERHEAD_GUEST_SYS].color = |
| 122 | perf_gtk__hpp_color_overhead_guest_sys; |
| 123 | perf_hpp__format[PERF_HPP__OVERHEAD_GUEST_US].color = |
| 124 | perf_gtk__hpp_color_overhead_guest_us; |
| 125 | } |
| 126 | |
Namhyung Kim | 2bbc587 | 2013-06-04 18:22:13 +0900 | [diff] [blame] | 127 | static void callchain_list__sym_name(struct callchain_list *cl, |
| 128 | char *bf, size_t bfsize) |
| 129 | { |
| 130 | if (cl->ms.sym) |
| 131 | scnprintf(bf, bfsize, "%s", cl->ms.sym->name); |
| 132 | else |
| 133 | scnprintf(bf, bfsize, "%#" PRIx64, cl->ip); |
| 134 | } |
| 135 | |
| 136 | static void perf_gtk__add_callchain(struct rb_root *root, GtkTreeStore *store, |
Namhyung Kim | cc60f24 | 2013-06-04 18:22:14 +0900 | [diff] [blame] | 137 | GtkTreeIter *parent, int col, u64 total) |
Namhyung Kim | 2bbc587 | 2013-06-04 18:22:13 +0900 | [diff] [blame] | 138 | { |
| 139 | struct rb_node *nd; |
| 140 | bool has_single_node = (rb_first(root) == rb_last(root)); |
| 141 | |
| 142 | for (nd = rb_first(root); nd; nd = rb_next(nd)) { |
| 143 | struct callchain_node *node; |
| 144 | struct callchain_list *chain; |
| 145 | GtkTreeIter iter, new_parent; |
| 146 | bool need_new_parent; |
Namhyung Kim | cc60f24 | 2013-06-04 18:22:14 +0900 | [diff] [blame] | 147 | double percent; |
| 148 | u64 hits, child_total; |
Namhyung Kim | 2bbc587 | 2013-06-04 18:22:13 +0900 | [diff] [blame] | 149 | |
| 150 | node = rb_entry(nd, struct callchain_node, rb_node); |
| 151 | |
Namhyung Kim | cc60f24 | 2013-06-04 18:22:14 +0900 | [diff] [blame] | 152 | hits = callchain_cumul_hits(node); |
| 153 | percent = 100.0 * hits / total; |
| 154 | |
Namhyung Kim | 2bbc587 | 2013-06-04 18:22:13 +0900 | [diff] [blame] | 155 | new_parent = *parent; |
| 156 | need_new_parent = !has_single_node && (node->val_nr > 1); |
| 157 | |
| 158 | list_for_each_entry(chain, &node->val, list) { |
| 159 | char buf[128]; |
| 160 | |
| 161 | gtk_tree_store_append(store, &iter, &new_parent); |
| 162 | |
Namhyung Kim | cc60f24 | 2013-06-04 18:22:14 +0900 | [diff] [blame] | 163 | scnprintf(buf, sizeof(buf), "%5.2f%%", percent); |
| 164 | gtk_tree_store_set(store, &iter, 0, buf, -1); |
| 165 | |
Namhyung Kim | 2bbc587 | 2013-06-04 18:22:13 +0900 | [diff] [blame] | 166 | callchain_list__sym_name(chain, buf, sizeof(buf)); |
| 167 | gtk_tree_store_set(store, &iter, col, buf, -1); |
| 168 | |
| 169 | if (need_new_parent) { |
| 170 | /* |
| 171 | * Only show the top-most symbol in a callchain |
| 172 | * if it's not the only callchain. |
| 173 | */ |
| 174 | new_parent = iter; |
| 175 | need_new_parent = false; |
| 176 | } |
| 177 | } |
| 178 | |
Namhyung Kim | cc60f24 | 2013-06-04 18:22:14 +0900 | [diff] [blame] | 179 | if (callchain_param.mode == CHAIN_GRAPH_REL) |
| 180 | child_total = node->children_hit; |
| 181 | else |
| 182 | child_total = total; |
| 183 | |
Namhyung Kim | 2bbc587 | 2013-06-04 18:22:13 +0900 | [diff] [blame] | 184 | /* Now 'iter' contains info of the last callchain_list */ |
Namhyung Kim | cc60f24 | 2013-06-04 18:22:14 +0900 | [diff] [blame] | 185 | perf_gtk__add_callchain(&node->rb_root, store, &iter, col, |
| 186 | child_total); |
Namhyung Kim | 2bbc587 | 2013-06-04 18:22:13 +0900 | [diff] [blame] | 187 | } |
| 188 | } |
| 189 | |
Namhyung Kim | 450f390 | 2013-06-04 18:22:16 +0900 | [diff] [blame^] | 190 | static void on_row_activated(GtkTreeView *view, GtkTreePath *path, |
| 191 | GtkTreeViewColumn *col __maybe_unused, |
| 192 | gpointer user_data __maybe_unused) |
| 193 | { |
| 194 | bool expanded = gtk_tree_view_row_expanded(view, path); |
| 195 | |
| 196 | if (expanded) |
| 197 | gtk_tree_view_collapse_row(view, path); |
| 198 | else |
| 199 | gtk_tree_view_expand_row(view, path, FALSE); |
| 200 | } |
| 201 | |
Namhyung Kim | 064f198 | 2013-05-14 11:09:04 +0900 | [diff] [blame] | 202 | static void perf_gtk__show_hists(GtkWidget *window, struct hists *hists, |
| 203 | float min_pcnt) |
Namhyung Kim | 0da41ce9 | 2012-12-21 17:20:13 +0900 | [diff] [blame] | 204 | { |
| 205 | struct perf_hpp_fmt *fmt; |
| 206 | GType col_types[MAX_COLUMNS]; |
| 207 | GtkCellRenderer *renderer; |
| 208 | struct sort_entry *se; |
Namhyung Kim | f1d9a53 | 2013-06-04 18:22:12 +0900 | [diff] [blame] | 209 | GtkTreeStore *store; |
Namhyung Kim | 0da41ce9 | 2012-12-21 17:20:13 +0900 | [diff] [blame] | 210 | struct rb_node *nd; |
| 211 | GtkWidget *view; |
| 212 | int col_idx; |
Namhyung Kim | 2bbc587 | 2013-06-04 18:22:13 +0900 | [diff] [blame] | 213 | int sym_col = -1; |
Namhyung Kim | 0da41ce9 | 2012-12-21 17:20:13 +0900 | [diff] [blame] | 214 | int nr_cols; |
| 215 | char s[512]; |
| 216 | |
| 217 | struct perf_hpp hpp = { |
| 218 | .buf = s, |
| 219 | .size = sizeof(s), |
Namhyung Kim | cb16008 | 2013-01-22 18:09:40 +0900 | [diff] [blame] | 220 | .ptr = hists_to_evsel(hists), |
Namhyung Kim | 0da41ce9 | 2012-12-21 17:20:13 +0900 | [diff] [blame] | 221 | }; |
| 222 | |
| 223 | nr_cols = 0; |
| 224 | |
| 225 | perf_hpp__for_each_format(fmt) |
| 226 | col_types[nr_cols++] = G_TYPE_STRING; |
| 227 | |
| 228 | list_for_each_entry(se, &hist_entry__sort_list, list) { |
| 229 | if (se->elide) |
| 230 | continue; |
| 231 | |
Namhyung Kim | 2bbc587 | 2013-06-04 18:22:13 +0900 | [diff] [blame] | 232 | if (se == &sort_sym) |
| 233 | sym_col = nr_cols; |
| 234 | |
Namhyung Kim | 0da41ce9 | 2012-12-21 17:20:13 +0900 | [diff] [blame] | 235 | col_types[nr_cols++] = G_TYPE_STRING; |
| 236 | } |
| 237 | |
Namhyung Kim | f1d9a53 | 2013-06-04 18:22:12 +0900 | [diff] [blame] | 238 | store = gtk_tree_store_newv(nr_cols, col_types); |
Namhyung Kim | 0da41ce9 | 2012-12-21 17:20:13 +0900 | [diff] [blame] | 239 | |
| 240 | view = gtk_tree_view_new(); |
| 241 | |
| 242 | renderer = gtk_cell_renderer_text_new(); |
| 243 | |
| 244 | col_idx = 0; |
| 245 | |
| 246 | perf_hpp__for_each_format(fmt) { |
| 247 | fmt->header(&hpp); |
| 248 | |
| 249 | gtk_tree_view_insert_column_with_attributes(GTK_TREE_VIEW(view), |
Namhyung Kim | 34b9564 | 2013-01-22 18:09:42 +0900 | [diff] [blame] | 250 | -1, ltrim(s), |
Namhyung Kim | 0da41ce9 | 2012-12-21 17:20:13 +0900 | [diff] [blame] | 251 | renderer, "markup", |
| 252 | col_idx++, NULL); |
| 253 | } |
| 254 | |
| 255 | list_for_each_entry(se, &hist_entry__sort_list, list) { |
| 256 | if (se->elide) |
| 257 | continue; |
| 258 | |
| 259 | gtk_tree_view_insert_column_with_attributes(GTK_TREE_VIEW(view), |
| 260 | -1, se->se_header, |
| 261 | renderer, "text", |
| 262 | col_idx++, NULL); |
| 263 | } |
| 264 | |
Namhyung Kim | 1a30942 | 2013-06-04 18:22:15 +0900 | [diff] [blame] | 265 | for (col_idx = 0; col_idx < nr_cols; col_idx++) { |
Namhyung Kim | 2bbc587 | 2013-06-04 18:22:13 +0900 | [diff] [blame] | 266 | GtkTreeViewColumn *column; |
| 267 | |
Namhyung Kim | 1a30942 | 2013-06-04 18:22:15 +0900 | [diff] [blame] | 268 | column = gtk_tree_view_get_column(GTK_TREE_VIEW(view), col_idx); |
| 269 | gtk_tree_view_column_set_resizable(column, TRUE); |
| 270 | |
| 271 | if (col_idx == sym_col) { |
| 272 | gtk_tree_view_set_expander_column(GTK_TREE_VIEW(view), |
| 273 | column); |
| 274 | } |
Namhyung Kim | 2bbc587 | 2013-06-04 18:22:13 +0900 | [diff] [blame] | 275 | } |
| 276 | |
Namhyung Kim | 0da41ce9 | 2012-12-21 17:20:13 +0900 | [diff] [blame] | 277 | gtk_tree_view_set_model(GTK_TREE_VIEW(view), GTK_TREE_MODEL(store)); |
| 278 | |
| 279 | g_object_unref(GTK_TREE_MODEL(store)); |
| 280 | |
| 281 | for (nd = rb_first(&hists->entries); nd; nd = rb_next(nd)) { |
| 282 | struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node); |
| 283 | GtkTreeIter iter; |
Namhyung Kim | 064f198 | 2013-05-14 11:09:04 +0900 | [diff] [blame] | 284 | float percent = h->stat.period * 100.0 / |
| 285 | hists->stats.total_period; |
Namhyung Kim | 0da41ce9 | 2012-12-21 17:20:13 +0900 | [diff] [blame] | 286 | |
| 287 | if (h->filtered) |
| 288 | continue; |
| 289 | |
Namhyung Kim | 064f198 | 2013-05-14 11:09:04 +0900 | [diff] [blame] | 290 | if (percent < min_pcnt) |
| 291 | continue; |
| 292 | |
Namhyung Kim | f1d9a53 | 2013-06-04 18:22:12 +0900 | [diff] [blame] | 293 | gtk_tree_store_append(store, &iter, NULL); |
Namhyung Kim | 0da41ce9 | 2012-12-21 17:20:13 +0900 | [diff] [blame] | 294 | |
| 295 | col_idx = 0; |
| 296 | |
| 297 | perf_hpp__for_each_format(fmt) { |
| 298 | if (fmt->color) |
| 299 | fmt->color(&hpp, h); |
| 300 | else |
| 301 | fmt->entry(&hpp, h); |
| 302 | |
Namhyung Kim | f1d9a53 | 2013-06-04 18:22:12 +0900 | [diff] [blame] | 303 | gtk_tree_store_set(store, &iter, col_idx++, s, -1); |
Namhyung Kim | 0da41ce9 | 2012-12-21 17:20:13 +0900 | [diff] [blame] | 304 | } |
| 305 | |
| 306 | list_for_each_entry(se, &hist_entry__sort_list, list) { |
| 307 | if (se->elide) |
| 308 | continue; |
| 309 | |
| 310 | se->se_snprintf(h, s, ARRAY_SIZE(s), |
| 311 | hists__col_len(hists, se->se_width_idx)); |
| 312 | |
Namhyung Kim | f1d9a53 | 2013-06-04 18:22:12 +0900 | [diff] [blame] | 313 | gtk_tree_store_set(store, &iter, col_idx++, s, -1); |
Namhyung Kim | 0da41ce9 | 2012-12-21 17:20:13 +0900 | [diff] [blame] | 314 | } |
Namhyung Kim | 2bbc587 | 2013-06-04 18:22:13 +0900 | [diff] [blame] | 315 | |
| 316 | if (symbol_conf.use_callchain && sort__has_sym) { |
Namhyung Kim | cc60f24 | 2013-06-04 18:22:14 +0900 | [diff] [blame] | 317 | u64 total; |
| 318 | |
| 319 | if (callchain_param.mode == CHAIN_GRAPH_REL) |
| 320 | total = h->stat.period; |
| 321 | else |
| 322 | total = hists->stats.total_period; |
| 323 | |
Namhyung Kim | 2bbc587 | 2013-06-04 18:22:13 +0900 | [diff] [blame] | 324 | perf_gtk__add_callchain(&h->sorted_chain, store, &iter, |
Namhyung Kim | cc60f24 | 2013-06-04 18:22:14 +0900 | [diff] [blame] | 325 | sym_col, total); |
Namhyung Kim | 2bbc587 | 2013-06-04 18:22:13 +0900 | [diff] [blame] | 326 | } |
Namhyung Kim | 0da41ce9 | 2012-12-21 17:20:13 +0900 | [diff] [blame] | 327 | } |
| 328 | |
Namhyung Kim | 450f390 | 2013-06-04 18:22:16 +0900 | [diff] [blame^] | 329 | g_signal_connect(view, "row-activated", |
| 330 | G_CALLBACK(on_row_activated), NULL); |
Namhyung Kim | 0da41ce9 | 2012-12-21 17:20:13 +0900 | [diff] [blame] | 331 | gtk_container_add(GTK_CONTAINER(window), view); |
| 332 | } |
| 333 | |
| 334 | int perf_evlist__gtk_browse_hists(struct perf_evlist *evlist, |
| 335 | const char *help, |
Namhyung Kim | 064f198 | 2013-05-14 11:09:04 +0900 | [diff] [blame] | 336 | struct hist_browser_timer *hbt __maybe_unused, |
| 337 | float min_pcnt) |
Namhyung Kim | 0da41ce9 | 2012-12-21 17:20:13 +0900 | [diff] [blame] | 338 | { |
| 339 | struct perf_evsel *pos; |
| 340 | GtkWidget *vbox; |
| 341 | GtkWidget *notebook; |
| 342 | GtkWidget *info_bar; |
| 343 | GtkWidget *statbar; |
| 344 | GtkWidget *window; |
| 345 | |
| 346 | signal(SIGSEGV, perf_gtk__signal); |
| 347 | signal(SIGFPE, perf_gtk__signal); |
| 348 | signal(SIGINT, perf_gtk__signal); |
| 349 | signal(SIGQUIT, perf_gtk__signal); |
| 350 | signal(SIGTERM, perf_gtk__signal); |
| 351 | |
| 352 | window = gtk_window_new(GTK_WINDOW_TOPLEVEL); |
| 353 | |
| 354 | gtk_window_set_title(GTK_WINDOW(window), "perf report"); |
| 355 | |
| 356 | g_signal_connect(window, "delete_event", gtk_main_quit, NULL); |
| 357 | |
| 358 | pgctx = perf_gtk__activate_context(window); |
| 359 | if (!pgctx) |
| 360 | return -1; |
| 361 | |
| 362 | vbox = gtk_vbox_new(FALSE, 0); |
| 363 | |
| 364 | notebook = gtk_notebook_new(); |
| 365 | |
Namhyung Kim | 6bf1a29 | 2012-12-21 17:20:14 +0900 | [diff] [blame] | 366 | gtk_box_pack_start(GTK_BOX(vbox), notebook, TRUE, TRUE, 0); |
| 367 | |
| 368 | info_bar = perf_gtk__setup_info_bar(); |
| 369 | if (info_bar) |
| 370 | gtk_box_pack_start(GTK_BOX(vbox), info_bar, FALSE, FALSE, 0); |
| 371 | |
| 372 | statbar = perf_gtk__setup_statusbar(); |
| 373 | gtk_box_pack_start(GTK_BOX(vbox), statbar, FALSE, FALSE, 0); |
| 374 | |
| 375 | gtk_container_add(GTK_CONTAINER(window), vbox); |
| 376 | |
Namhyung Kim | 0da41ce9 | 2012-12-21 17:20:13 +0900 | [diff] [blame] | 377 | list_for_each_entry(pos, &evlist->entries, node) { |
| 378 | struct hists *hists = &pos->hists; |
| 379 | const char *evname = perf_evsel__name(pos); |
| 380 | GtkWidget *scrolled_window; |
| 381 | GtkWidget *tab_label; |
Namhyung Kim | 717e263 | 2013-01-22 18:09:44 +0900 | [diff] [blame] | 382 | char buf[512]; |
| 383 | size_t size = sizeof(buf); |
Namhyung Kim | 0da41ce9 | 2012-12-21 17:20:13 +0900 | [diff] [blame] | 384 | |
Namhyung Kim | 717e263 | 2013-01-22 18:09:44 +0900 | [diff] [blame] | 385 | if (symbol_conf.event_group) { |
| 386 | if (!perf_evsel__is_group_leader(pos)) |
| 387 | continue; |
| 388 | |
| 389 | if (pos->nr_members > 1) { |
| 390 | perf_evsel__group_desc(pos, buf, size); |
| 391 | evname = buf; |
| 392 | } |
| 393 | } |
Namhyung Kim | fc24d7c | 2013-01-22 18:09:43 +0900 | [diff] [blame] | 394 | |
Namhyung Kim | 0da41ce9 | 2012-12-21 17:20:13 +0900 | [diff] [blame] | 395 | scrolled_window = gtk_scrolled_window_new(NULL, NULL); |
| 396 | |
| 397 | gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolled_window), |
| 398 | GTK_POLICY_AUTOMATIC, |
| 399 | GTK_POLICY_AUTOMATIC); |
| 400 | |
Namhyung Kim | 064f198 | 2013-05-14 11:09:04 +0900 | [diff] [blame] | 401 | perf_gtk__show_hists(scrolled_window, hists, min_pcnt); |
Namhyung Kim | 0da41ce9 | 2012-12-21 17:20:13 +0900 | [diff] [blame] | 402 | |
| 403 | tab_label = gtk_label_new(evname); |
| 404 | |
| 405 | gtk_notebook_append_page(GTK_NOTEBOOK(notebook), scrolled_window, tab_label); |
| 406 | } |
| 407 | |
Namhyung Kim | 0da41ce9 | 2012-12-21 17:20:13 +0900 | [diff] [blame] | 408 | gtk_widget_show_all(window); |
| 409 | |
| 410 | perf_gtk__resize_window(window); |
| 411 | |
| 412 | gtk_window_set_position(GTK_WINDOW(window), GTK_WIN_POS_CENTER); |
| 413 | |
| 414 | ui_helpline__push(help); |
| 415 | |
| 416 | gtk_main(); |
| 417 | |
| 418 | perf_gtk__deactivate_context(&pgctx); |
| 419 | |
| 420 | return 0; |
| 421 | } |