blob: 0b24cd6d38a4bff1536792355479a3e5471e49eb [file] [log] [blame]
Namhyung Kim0da41ce92012-12-21 17:20:13 +09001#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 Kima0088ad2014-03-03 10:14:04 +090011static int __percent_color_snprintf(struct perf_hpp *hpp, const char *fmt, ...)
Namhyung Kim843985e2013-01-22 18:09:36 +090012{
13 int ret = 0;
Namhyung Kimd6751072014-07-31 14:47:36 +090014 int len;
Namhyung Kim4a621092014-03-03 10:14:03 +090015 va_list args;
16 double percent;
Namhyung Kim843985e2013-01-22 18:09:36 +090017 const char *markup;
Namhyung Kima0088ad2014-03-03 10:14:04 +090018 char *buf = hpp->buf;
19 size_t size = hpp->size;
Namhyung Kim843985e2013-01-22 18:09:36 +090020
Namhyung Kim4a621092014-03-03 10:14:03 +090021 va_start(args, fmt);
Namhyung Kimd6751072014-07-31 14:47:36 +090022 len = va_arg(args, int);
Namhyung Kim4a621092014-03-03 10:14:03 +090023 percent = va_arg(args, double);
24 va_end(args);
25
Namhyung Kim843985e2013-01-22 18:09:36 +090026 markup = perf_gtk__get_percent_color(percent);
27 if (markup)
28 ret += scnprintf(buf, size, markup);
29
Namhyung Kimd6751072014-07-31 14:47:36 +090030 ret += scnprintf(buf + ret, size - ret, fmt, len, percent);
Namhyung Kim843985e2013-01-22 18:09:36 +090031
32 if (markup)
33 ret += scnprintf(buf + ret, size - ret, "</span>");
34
35 return ret;
Namhyung Kim0da41ce92012-12-21 17:20:13 +090036}
37
Namhyung Kim843985e2013-01-22 18:09:36 +090038#define __HPP_COLOR_PERCENT_FN(_type, _field) \
39static u64 he_get_##_field(struct hist_entry *he) \
40{ \
41 return he->stat._field; \
42} \
43 \
Namhyung Kim5b591662014-07-31 14:47:38 +090044static int perf_gtk__hpp_color_##_type(struct perf_hpp_fmt *fmt, \
Jiri Olsa2c5d4b42013-01-31 23:31:11 +010045 struct perf_hpp *hpp, \
Namhyung Kim843985e2013-01-22 18:09:36 +090046 struct hist_entry *he) \
47{ \
Namhyung Kim5b591662014-07-31 14:47:38 +090048 return hpp__fmt(fmt, hpp, he, he_get_##_field, " %*.2f%%", \
49 __percent_color_snprintf, true); \
Namhyung Kim843985e2013-01-22 18:09:36 +090050}
51
Namhyung Kimb09955b2013-10-30 16:15:23 +090052#define __HPP_COLOR_ACC_PERCENT_FN(_type, _field) \
53static u64 he_get_acc_##_field(struct hist_entry *he) \
54{ \
55 return he->stat_acc->_field; \
56} \
57 \
58static int perf_gtk__hpp_color_##_type(struct perf_hpp_fmt *fmt __maybe_unused, \
59 struct perf_hpp *hpp, \
60 struct hist_entry *he) \
61{ \
Namhyung Kim5b591662014-07-31 14:47:38 +090062 return hpp__fmt_acc(fmt, hpp, he, he_get_acc_##_field, " %*.2f%%", \
63 __percent_color_snprintf, true); \
Namhyung Kimb09955b2013-10-30 16:15:23 +090064}
65
Namhyung Kim843985e2013-01-22 18:09:36 +090066__HPP_COLOR_PERCENT_FN(overhead, period)
67__HPP_COLOR_PERCENT_FN(overhead_sys, period_sys)
68__HPP_COLOR_PERCENT_FN(overhead_us, period_us)
69__HPP_COLOR_PERCENT_FN(overhead_guest_sys, period_guest_sys)
70__HPP_COLOR_PERCENT_FN(overhead_guest_us, period_guest_us)
Namhyung Kimb09955b2013-10-30 16:15:23 +090071__HPP_COLOR_ACC_PERCENT_FN(overhead_acc, period)
Namhyung Kim843985e2013-01-22 18:09:36 +090072
73#undef __HPP_COLOR_PERCENT_FN
Namhyung Kim0da41ce92012-12-21 17:20:13 +090074
75
76void perf_gtk__init_hpp(void)
77{
Namhyung Kim0da41ce92012-12-21 17:20:13 +090078 perf_hpp__format[PERF_HPP__OVERHEAD].color =
79 perf_gtk__hpp_color_overhead;
80 perf_hpp__format[PERF_HPP__OVERHEAD_SYS].color =
81 perf_gtk__hpp_color_overhead_sys;
82 perf_hpp__format[PERF_HPP__OVERHEAD_US].color =
83 perf_gtk__hpp_color_overhead_us;
84 perf_hpp__format[PERF_HPP__OVERHEAD_GUEST_SYS].color =
85 perf_gtk__hpp_color_overhead_guest_sys;
86 perf_hpp__format[PERF_HPP__OVERHEAD_GUEST_US].color =
87 perf_gtk__hpp_color_overhead_guest_us;
Namhyung Kimb09955b2013-10-30 16:15:23 +090088 perf_hpp__format[PERF_HPP__OVERHEAD_ACC].color =
89 perf_gtk__hpp_color_overhead_acc;
Namhyung Kim0da41ce92012-12-21 17:20:13 +090090}
91
Namhyung Kim3cd99df2015-11-09 14:45:45 +090092static void perf_gtk__add_callchain_flat(struct rb_root *root, GtkTreeStore *store,
93 GtkTreeIter *parent, int col, u64 total)
94{
95 struct rb_node *nd;
96 bool has_single_node = (rb_first(root) == rb_last(root));
97
98 for (nd = rb_first(root); nd; nd = rb_next(nd)) {
99 struct callchain_node *node;
100 struct callchain_list *chain;
101 GtkTreeIter iter, new_parent;
102 bool need_new_parent;
103
104 node = rb_entry(nd, struct callchain_node, rb_node);
105
106 new_parent = *parent;
107 need_new_parent = !has_single_node;
108
109 callchain_node__make_parent_list(node);
110
111 list_for_each_entry(chain, &node->parent_val, list) {
112 char buf[128];
113
114 gtk_tree_store_append(store, &iter, &new_parent);
115
116 callchain_node__scnprintf_value(node, buf, sizeof(buf), total);
117 gtk_tree_store_set(store, &iter, 0, buf, -1);
118
119 callchain_list__sym_name(chain, buf, sizeof(buf), false);
120 gtk_tree_store_set(store, &iter, col, buf, -1);
121
122 if (need_new_parent) {
123 /*
124 * Only show the top-most symbol in a callchain
125 * if it's not the only callchain.
126 */
127 new_parent = iter;
128 need_new_parent = false;
129 }
130 }
131
132 list_for_each_entry(chain, &node->val, list) {
133 char buf[128];
134
135 gtk_tree_store_append(store, &iter, &new_parent);
136
137 callchain_node__scnprintf_value(node, buf, sizeof(buf), total);
138 gtk_tree_store_set(store, &iter, 0, buf, -1);
139
140 callchain_list__sym_name(chain, buf, sizeof(buf), false);
141 gtk_tree_store_set(store, &iter, col, buf, -1);
142
143 if (need_new_parent) {
144 /*
145 * Only show the top-most symbol in a callchain
146 * if it's not the only callchain.
147 */
148 new_parent = iter;
149 need_new_parent = false;
150 }
151 }
152 }
153}
154
155static void perf_gtk__add_callchain_graph(struct rb_root *root, GtkTreeStore *store,
156 GtkTreeIter *parent, int col, u64 total)
Namhyung Kim2bbc5872013-06-04 18:22:13 +0900157{
158 struct rb_node *nd;
159 bool has_single_node = (rb_first(root) == rb_last(root));
160
161 for (nd = rb_first(root); nd; nd = rb_next(nd)) {
162 struct callchain_node *node;
163 struct callchain_list *chain;
164 GtkTreeIter iter, new_parent;
165 bool need_new_parent;
Namhyung Kim5ab250c2015-11-09 14:45:39 +0900166 u64 child_total;
Namhyung Kim2bbc5872013-06-04 18:22:13 +0900167
168 node = rb_entry(nd, struct callchain_node, rb_node);
169
170 new_parent = *parent;
171 need_new_parent = !has_single_node && (node->val_nr > 1);
172
173 list_for_each_entry(chain, &node->val, list) {
174 char buf[128];
175
176 gtk_tree_store_append(store, &iter, &new_parent);
177
Namhyung Kim5ab250c2015-11-09 14:45:39 +0900178 callchain_node__scnprintf_value(node, buf, sizeof(buf), total);
Namhyung Kimcc60f242013-06-04 18:22:14 +0900179 gtk_tree_store_set(store, &iter, 0, buf, -1);
180
Andi Kleen2989cca2014-11-12 18:05:23 -0800181 callchain_list__sym_name(chain, buf, sizeof(buf), false);
Namhyung Kim2bbc5872013-06-04 18:22:13 +0900182 gtk_tree_store_set(store, &iter, col, buf, -1);
183
184 if (need_new_parent) {
185 /*
186 * Only show the top-most symbol in a callchain
187 * if it's not the only callchain.
188 */
189 new_parent = iter;
190 need_new_parent = false;
191 }
192 }
193
Namhyung Kimcc60f242013-06-04 18:22:14 +0900194 if (callchain_param.mode == CHAIN_GRAPH_REL)
195 child_total = node->children_hit;
196 else
197 child_total = total;
198
Namhyung Kim2bbc5872013-06-04 18:22:13 +0900199 /* Now 'iter' contains info of the last callchain_list */
Namhyung Kim3cd99df2015-11-09 14:45:45 +0900200 perf_gtk__add_callchain_graph(&node->rb_root, store, &iter, col,
201 child_total);
Namhyung Kim2bbc5872013-06-04 18:22:13 +0900202 }
203}
204
Namhyung Kim3cd99df2015-11-09 14:45:45 +0900205static void perf_gtk__add_callchain(struct rb_root *root, GtkTreeStore *store,
206 GtkTreeIter *parent, int col, u64 total)
207{
208 if (callchain_param.mode == CHAIN_FLAT)
209 perf_gtk__add_callchain_flat(root, store, parent, col, total);
210 else
211 perf_gtk__add_callchain_graph(root, store, parent, col, total);
212}
213
Namhyung Kim450f3902013-06-04 18:22:16 +0900214static void on_row_activated(GtkTreeView *view, GtkTreePath *path,
215 GtkTreeViewColumn *col __maybe_unused,
216 gpointer user_data __maybe_unused)
217{
218 bool expanded = gtk_tree_view_row_expanded(view, path);
219
220 if (expanded)
221 gtk_tree_view_collapse_row(view, path);
222 else
223 gtk_tree_view_expand_row(view, path, FALSE);
224}
225
Namhyung Kim064f1982013-05-14 11:09:04 +0900226static void perf_gtk__show_hists(GtkWidget *window, struct hists *hists,
227 float min_pcnt)
Namhyung Kim0da41ce92012-12-21 17:20:13 +0900228{
229 struct perf_hpp_fmt *fmt;
230 GType col_types[MAX_COLUMNS];
231 GtkCellRenderer *renderer;
Namhyung Kimf1d9a532013-06-04 18:22:12 +0900232 GtkTreeStore *store;
Namhyung Kim0da41ce92012-12-21 17:20:13 +0900233 struct rb_node *nd;
234 GtkWidget *view;
235 int col_idx;
Namhyung Kim2bbc5872013-06-04 18:22:13 +0900236 int sym_col = -1;
Namhyung Kim0da41ce92012-12-21 17:20:13 +0900237 int nr_cols;
238 char s[512];
239
240 struct perf_hpp hpp = {
241 .buf = s,
242 .size = sizeof(s),
243 };
244
245 nr_cols = 0;
246
247 perf_hpp__for_each_format(fmt)
248 col_types[nr_cols++] = G_TYPE_STRING;
249
Namhyung Kimf1d9a532013-06-04 18:22:12 +0900250 store = gtk_tree_store_newv(nr_cols, col_types);
Namhyung Kim0da41ce92012-12-21 17:20:13 +0900251
252 view = gtk_tree_view_new();
253
254 renderer = gtk_cell_renderer_text_new();
255
256 col_idx = 0;
257
258 perf_hpp__for_each_format(fmt) {
Namhyung Kime67d49a2014-03-18 13:00:59 +0900259 if (perf_hpp__should_skip(fmt))
260 continue;
261
Namhyung Kime4cf6f82014-05-23 18:49:33 +0900262 /*
263 * XXX no way to determine where symcol column is..
264 * Just use last column for now.
265 */
266 if (perf_hpp__is_sort_entry(fmt))
267 sym_col = col_idx;
268
Namhyung Kim0da41ce92012-12-21 17:20:13 +0900269 gtk_tree_view_insert_column_with_attributes(GTK_TREE_VIEW(view),
Namhyung Kim1ecd4452014-07-31 14:47:40 +0900270 -1, fmt->name,
Namhyung Kim0da41ce92012-12-21 17:20:13 +0900271 renderer, "markup",
272 col_idx++, NULL);
273 }
274
Namhyung Kim1a309422013-06-04 18:22:15 +0900275 for (col_idx = 0; col_idx < nr_cols; col_idx++) {
Namhyung Kim2bbc5872013-06-04 18:22:13 +0900276 GtkTreeViewColumn *column;
277
Namhyung Kim1a309422013-06-04 18:22:15 +0900278 column = gtk_tree_view_get_column(GTK_TREE_VIEW(view), col_idx);
279 gtk_tree_view_column_set_resizable(column, TRUE);
280
281 if (col_idx == sym_col) {
282 gtk_tree_view_set_expander_column(GTK_TREE_VIEW(view),
283 column);
284 }
Namhyung Kim2bbc5872013-06-04 18:22:13 +0900285 }
286
Namhyung Kim0da41ce92012-12-21 17:20:13 +0900287 gtk_tree_view_set_model(GTK_TREE_VIEW(view), GTK_TREE_MODEL(store));
288
289 g_object_unref(GTK_TREE_MODEL(store));
290
291 for (nd = rb_first(&hists->entries); nd; nd = rb_next(nd)) {
292 struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node);
293 GtkTreeIter iter;
Namhyung Kimf2148332014-01-14 11:52:48 +0900294 u64 total = hists__total_period(h->hists);
Namhyung Kim14135662013-10-31 10:17:39 +0900295 float percent;
Namhyung Kim0da41ce92012-12-21 17:20:13 +0900296
297 if (h->filtered)
298 continue;
299
Namhyung Kim14135662013-10-31 10:17:39 +0900300 percent = hist_entry__get_percent_limit(h);
Namhyung Kim064f1982013-05-14 11:09:04 +0900301 if (percent < min_pcnt)
302 continue;
303
Namhyung Kimf1d9a532013-06-04 18:22:12 +0900304 gtk_tree_store_append(store, &iter, NULL);
Namhyung Kim0da41ce92012-12-21 17:20:13 +0900305
306 col_idx = 0;
307
308 perf_hpp__for_each_format(fmt) {
Namhyung Kime67d49a2014-03-18 13:00:59 +0900309 if (perf_hpp__should_skip(fmt))
310 continue;
311
Namhyung Kim0da41ce92012-12-21 17:20:13 +0900312 if (fmt->color)
Jiri Olsa2c5d4b42013-01-31 23:31:11 +0100313 fmt->color(fmt, &hpp, h);
Namhyung Kim0da41ce92012-12-21 17:20:13 +0900314 else
Jiri Olsa2c5d4b42013-01-31 23:31:11 +0100315 fmt->entry(fmt, &hpp, h);
Namhyung Kim0da41ce92012-12-21 17:20:13 +0900316
Namhyung Kimf1d9a532013-06-04 18:22:12 +0900317 gtk_tree_store_set(store, &iter, col_idx++, s, -1);
Namhyung Kim0da41ce92012-12-21 17:20:13 +0900318 }
319
Namhyung Kim2bbc5872013-06-04 18:22:13 +0900320 if (symbol_conf.use_callchain && sort__has_sym) {
Namhyung Kimcc60f242013-06-04 18:22:14 +0900321 if (callchain_param.mode == CHAIN_GRAPH_REL)
Namhyung Kime4cf6f82014-05-23 18:49:33 +0900322 total = symbol_conf.cumulate_callchain ?
323 h->stat_acc->period : h->stat.period;
Namhyung Kimcc60f242013-06-04 18:22:14 +0900324
Namhyung Kim2bbc5872013-06-04 18:22:13 +0900325 perf_gtk__add_callchain(&h->sorted_chain, store, &iter,
Namhyung Kimcc60f242013-06-04 18:22:14 +0900326 sym_col, total);
Namhyung Kim2bbc5872013-06-04 18:22:13 +0900327 }
Namhyung Kim0da41ce92012-12-21 17:20:13 +0900328 }
329
Namhyung Kim9d58d2f2013-06-04 18:22:17 +0900330 gtk_tree_view_set_rules_hint(GTK_TREE_VIEW(view), TRUE);
331
Namhyung Kim450f3902013-06-04 18:22:16 +0900332 g_signal_connect(view, "row-activated",
333 G_CALLBACK(on_row_activated), NULL);
Namhyung Kim0da41ce92012-12-21 17:20:13 +0900334 gtk_container_add(GTK_CONTAINER(window), view);
335}
336
337int perf_evlist__gtk_browse_hists(struct perf_evlist *evlist,
338 const char *help,
Namhyung Kim064f1982013-05-14 11:09:04 +0900339 struct hist_browser_timer *hbt __maybe_unused,
340 float min_pcnt)
Namhyung Kim0da41ce92012-12-21 17:20:13 +0900341{
342 struct perf_evsel *pos;
343 GtkWidget *vbox;
344 GtkWidget *notebook;
345 GtkWidget *info_bar;
346 GtkWidget *statbar;
347 GtkWidget *window;
348
349 signal(SIGSEGV, perf_gtk__signal);
350 signal(SIGFPE, perf_gtk__signal);
351 signal(SIGINT, perf_gtk__signal);
352 signal(SIGQUIT, perf_gtk__signal);
353 signal(SIGTERM, perf_gtk__signal);
354
355 window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
356
357 gtk_window_set_title(GTK_WINDOW(window), "perf report");
358
359 g_signal_connect(window, "delete_event", gtk_main_quit, NULL);
360
361 pgctx = perf_gtk__activate_context(window);
362 if (!pgctx)
363 return -1;
364
365 vbox = gtk_vbox_new(FALSE, 0);
366
367 notebook = gtk_notebook_new();
368
Namhyung Kim6bf1a292012-12-21 17:20:14 +0900369 gtk_box_pack_start(GTK_BOX(vbox), notebook, TRUE, TRUE, 0);
370
371 info_bar = perf_gtk__setup_info_bar();
372 if (info_bar)
373 gtk_box_pack_start(GTK_BOX(vbox), info_bar, FALSE, FALSE, 0);
374
375 statbar = perf_gtk__setup_statusbar();
376 gtk_box_pack_start(GTK_BOX(vbox), statbar, FALSE, FALSE, 0);
377
378 gtk_container_add(GTK_CONTAINER(window), vbox);
379
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300380 evlist__for_each(evlist, pos) {
Arnaldo Carvalho de Melo4ea062ed2014-10-09 13:13:41 -0300381 struct hists *hists = evsel__hists(pos);
Namhyung Kim0da41ce92012-12-21 17:20:13 +0900382 const char *evname = perf_evsel__name(pos);
383 GtkWidget *scrolled_window;
384 GtkWidget *tab_label;
Namhyung Kim717e2632013-01-22 18:09:44 +0900385 char buf[512];
386 size_t size = sizeof(buf);
Namhyung Kim0da41ce92012-12-21 17:20:13 +0900387
Namhyung Kim717e2632013-01-22 18:09:44 +0900388 if (symbol_conf.event_group) {
389 if (!perf_evsel__is_group_leader(pos))
390 continue;
391
392 if (pos->nr_members > 1) {
393 perf_evsel__group_desc(pos, buf, size);
394 evname = buf;
395 }
396 }
Namhyung Kimfc24d7c2013-01-22 18:09:43 +0900397
Namhyung Kim0da41ce92012-12-21 17:20:13 +0900398 scrolled_window = gtk_scrolled_window_new(NULL, NULL);
399
400 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolled_window),
401 GTK_POLICY_AUTOMATIC,
402 GTK_POLICY_AUTOMATIC);
403
Namhyung Kim064f1982013-05-14 11:09:04 +0900404 perf_gtk__show_hists(scrolled_window, hists, min_pcnt);
Namhyung Kim0da41ce92012-12-21 17:20:13 +0900405
406 tab_label = gtk_label_new(evname);
407
408 gtk_notebook_append_page(GTK_NOTEBOOK(notebook), scrolled_window, tab_label);
409 }
410
Namhyung Kim0da41ce92012-12-21 17:20:13 +0900411 gtk_widget_show_all(window);
412
413 perf_gtk__resize_window(window);
414
415 gtk_window_set_position(GTK_WINDOW(window), GTK_WIN_POS_CENTER);
416
417 ui_helpline__push(help);
418
419 gtk_main();
420
421 perf_gtk__deactivate_context(&pgctx);
422
423 return 0;
424}