blob: 0a03e08be5036bd394f9dd99e837ef1224cd7303 [file] [log] [blame]
John Kacur3d1d07e2009-09-28 15:32:55 +02001#ifndef __PERF_HIST_H
2#define __PERF_HIST_H
John Kacur3d1d07e2009-09-28 15:32:55 +02003
Arnaldo Carvalho de Melo4e4f06e2009-12-14 13:10:39 -02004#include <linux/types.h>
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03005#include <pthread.h>
John Kacur3d1d07e2009-09-28 15:32:55 +02006#include "callchain.h"
Arnaldo Carvalho de Meloa635fc52014-10-09 16:16:00 -03007#include "evsel.h"
Namhyung Kim68d80752012-11-02 14:50:06 +09008#include "header.h"
Jiri Olsa9754c4f2013-10-25 13:24:53 +02009#include "color.h"
Namhyung Kimc1fb5652013-10-11 14:15:38 +090010#include "ui/progress.h"
John Kacur3d1d07e2009-09-28 15:32:55 +020011
Arnaldo Carvalho de Melo4e4f06e2009-12-14 13:10:39 -020012struct hist_entry;
13struct addr_location;
14struct symbol;
Arnaldo Carvalho de Meloef7b93a2010-05-11 23:18:06 -030015
Namhyung Kimb3cef7f2014-03-17 16:59:21 -030016enum hist_filter {
17 HIST_FILTER__DSO,
18 HIST_FILTER__THREAD,
19 HIST_FILTER__PARENT,
20 HIST_FILTER__SYMBOL,
21 HIST_FILTER__GUEST,
22 HIST_FILTER__HOST,
Kan Liang21394d92015-09-04 10:45:44 -040023 HIST_FILTER__SOCKET,
Namhyung Kimb3cef7f2014-03-17 16:59:21 -030024};
25
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030026enum hist_column {
27 HISTC_SYMBOL,
28 HISTC_DSO,
29 HISTC_THREAD,
30 HISTC_COMM,
31 HISTC_PARENT,
32 HISTC_CPU,
Kan Liang2e7ea3a2015-09-04 10:45:43 -040033 HISTC_SOCKET,
Namhyung Kimdfd3b2f2013-04-05 10:26:31 +090034 HISTC_SRCLINE,
Andi Kleen31191a82015-08-07 15:54:24 -070035 HISTC_SRCFILE,
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +010036 HISTC_MISPREDICT,
Andi Kleenf5d05bc2013-09-20 07:40:41 -070037 HISTC_IN_TX,
38 HISTC_ABORT,
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +010039 HISTC_SYMBOL_FROM,
40 HISTC_SYMBOL_TO,
41 HISTC_DSO_FROM,
42 HISTC_DSO_TO,
Andi Kleen05484292013-01-24 16:10:29 +010043 HISTC_LOCAL_WEIGHT,
44 HISTC_GLOBAL_WEIGHT,
Stephane Eranian98a3b322013-01-24 16:10:35 +010045 HISTC_MEM_DADDR_SYMBOL,
46 HISTC_MEM_DADDR_DSO,
47 HISTC_MEM_LOCKED,
48 HISTC_MEM_TLB,
49 HISTC_MEM_LVL,
50 HISTC_MEM_SNOOP,
Don Zickus9b32ba72014-06-01 15:38:29 +020051 HISTC_MEM_DCACHELINE,
Don Zickus28e6db22015-10-05 20:06:07 +020052 HISTC_MEM_IADDR_SYMBOL,
Andi Kleen475eeab2013-09-20 07:40:43 -070053 HISTC_TRANSACTION,
Andi Kleen0e332f02015-07-18 08:24:46 -070054 HISTC_CYCLES,
Andi Kleen508be0d2016-05-20 13:15:08 -070055 HISTC_SRCLINE_FROM,
56 HISTC_SRCLINE_TO,
Namhyung Kima34bb6a2015-12-23 02:07:04 +090057 HISTC_TRACE,
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030058 HISTC_NR_COLS, /* Last entry */
59};
60
Arnaldo Carvalho de Melod7b76f02011-10-18 19:07:34 -020061struct thread;
62struct dso;
63
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -030064struct hists {
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -030065 struct rb_root entries_in_array[2];
66 struct rb_root *entries_in;
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -030067 struct rb_root entries;
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -030068 struct rb_root entries_collapsed;
Arnaldo Carvalho de Melofefb0b92010-05-10 13:57:51 -030069 u64 nr_entries;
Namhyung Kim1ab1fa52013-12-26 15:11:52 +090070 u64 nr_non_filtered_entries;
Namhyung Kim467ef102016-02-16 23:08:19 +090071 u64 callchain_period;
72 u64 callchain_non_filtered_period;
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -030073 struct thread *thread_filter;
Arnaldo Carvalho de Melod7b76f02011-10-18 19:07:34 -020074 const struct dso *dso_filter;
Arnaldo Carvalho de Melo0d37aa32012-01-19 14:08:15 -020075 const char *uid_filter_str;
Namhyung Kime94d53e2012-03-16 17:50:51 +090076 const char *symbol_filter_str;
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -030077 pthread_mutex_t lock;
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -030078 struct events_stats stats;
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -030079 u64 event_stream;
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030080 u16 col_len[HISTC_NR_COLS];
Kan Liang21394d92015-09-04 10:45:44 -040081 int socket_filter;
Jiri Olsa5b658552016-01-18 10:24:22 +010082 struct perf_hpp_list *hpp_list;
Namhyung Kimc3bc0c42016-03-07 16:44:45 -030083 struct list_head hpp_formats;
Namhyung Kim2dbbe9f2016-03-07 16:44:48 -030084 int nr_hpp_node;
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -030085};
86
Jiri Olsa52225032016-05-03 13:54:42 +020087#define hists__has(__h, __f) (__h)->hpp_list->__f
88
Namhyung Kim69bcb012013-10-30 09:40:34 +090089struct hist_entry_iter;
90
91struct hist_iter_ops {
92 int (*prepare_entry)(struct hist_entry_iter *, struct addr_location *);
93 int (*add_single_entry)(struct hist_entry_iter *, struct addr_location *);
94 int (*next_entry)(struct hist_entry_iter *, struct addr_location *);
95 int (*add_next_entry)(struct hist_entry_iter *, struct addr_location *);
96 int (*finish_entry)(struct hist_entry_iter *, struct addr_location *);
97};
98
99struct hist_entry_iter {
100 int total;
101 int curr;
102
103 bool hide_unresolved;
Adrian Hunter96b40f32015-09-25 16:15:47 +0300104 int max_stack;
Namhyung Kim69bcb012013-10-30 09:40:34 +0900105
106 struct perf_evsel *evsel;
107 struct perf_sample *sample;
108 struct hist_entry *he;
109 struct symbol *parent;
110 void *priv;
111
112 const struct hist_iter_ops *ops;
Namhyung Kim9d3c02d2014-01-07 17:02:25 +0900113 /* user-defined callback function (optional) */
114 int (*add_entry_cb)(struct hist_entry_iter *iter,
115 struct addr_location *al, bool single, void *arg);
Namhyung Kim69bcb012013-10-30 09:40:34 +0900116};
117
118extern const struct hist_iter_ops hist_iter_normal;
119extern const struct hist_iter_ops hist_iter_branch;
120extern const struct hist_iter_ops hist_iter_mem;
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900121extern const struct hist_iter_ops hist_iter_cumulative;
Namhyung Kim69bcb012013-10-30 09:40:34 +0900122
Jiri Olsa0102ef32016-06-14 20:19:21 +0200123struct hist_entry *hists__add_entry(struct hists *hists,
124 struct addr_location *al,
125 struct symbol *parent,
126 struct branch_info *bi,
127 struct mem_info *mi,
128 struct perf_sample *sample,
129 bool sample_self);
Namhyung Kim69bcb012013-10-30 09:40:34 +0900130int hist_entry_iter__add(struct hist_entry_iter *iter, struct addr_location *al,
Namhyung Kim9d3c02d2014-01-07 17:02:25 +0900131 int max_stack_depth, void *arg);
Namhyung Kim69bcb012013-10-30 09:40:34 +0900132
Arnaldo Carvalho de Melo89fee702016-02-11 17:14:13 -0300133struct perf_hpp;
134struct perf_hpp_fmt;
135
Arnaldo Carvalho de Melo12c14272012-01-04 12:27:03 -0200136int64_t hist_entry__cmp(struct hist_entry *left, struct hist_entry *right);
137int64_t hist_entry__collapse(struct hist_entry *left, struct hist_entry *right);
Andi Kleen475eeab2013-09-20 07:40:43 -0700138int hist_entry__transaction_len(void);
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300139int hist_entry__sort_snprintf(struct hist_entry *he, char *bf, size_t size,
Namhyung Kim000078b2012-08-20 13:52:06 +0900140 struct hists *hists);
Arnaldo Carvalho de Melo89fee702016-02-11 17:14:13 -0300141int hist_entry__snprintf_alignment(struct hist_entry *he, struct perf_hpp *hpp,
142 struct perf_hpp_fmt *fmt, int printed);
Arnaldo Carvalho de Melo6733d1b2014-12-19 12:31:40 -0300143void hist_entry__delete(struct hist_entry *he);
Arnaldo Carvalho de Melo4e4f06e2009-12-14 13:10:39 -0200144
Jiri Olsa452ce032016-01-18 10:24:00 +0100145void perf_evsel__output_resort(struct perf_evsel *evsel, struct ui_progress *prog);
Namhyung Kim740b97f2014-12-22 13:44:10 +0900146void hists__output_resort(struct hists *hists, struct ui_progress *prog);
Namhyung Kimbba58cd2016-02-16 23:08:25 +0900147int hists__collapse_resort(struct hists *hists, struct ui_progress *prog);
Arnaldo Carvalho de Meloc8446b92010-05-14 10:36:42 -0300148
Arnaldo Carvalho de Melob079d4e2011-10-17 09:05:04 -0200149void hists__decay_entries(struct hists *hists, bool zap_user, bool zap_kernel);
Namhyung Kim701937b2014-08-12 17:16:05 +0900150void hists__delete_entries(struct hists *hists);
Arnaldo Carvalho de Meloab81f3f2011-10-05 19:16:15 -0300151void hists__output_recalc_col_len(struct hists *hists, int max_rows);
152
Namhyung Kimf2148332014-01-14 11:52:48 +0900153u64 hists__total_period(struct hists *hists);
Namhyung Kim9283ba92014-04-24 16:37:26 +0900154void hists__reset_stats(struct hists *hists);
Namhyung Kim62638352014-04-24 16:21:46 +0900155void hists__inc_stats(struct hists *hists, struct hist_entry *h);
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300156void hists__inc_nr_events(struct hists *hists, u32 type);
Namhyung Kim1844dbc2014-05-28 14:12:18 +0900157void hists__inc_nr_samples(struct hists *hists, bool filtered);
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -0300158void events_stats__inc(struct events_stats *stats, u32 type);
Arnaldo Carvalho de Melo52168ee2012-12-18 16:02:17 -0300159size_t events_stats__fprintf(struct events_stats *stats, FILE *fp);
Arnaldo Carvalho de Meloc8446b92010-05-14 10:36:42 -0300160
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300161size_t hists__fprintf(struct hists *hists, bool show_header, int max_rows,
Jiri Olsad05e3aa2016-06-14 20:19:18 +0200162 int max_cols, float min_pcnt, FILE *fp,
163 bool use_callchain);
Arnaldo Carvalho de Melo2a1731f2014-10-10 15:49:21 -0300164size_t perf_evlist__fprintf_nr_events(struct perf_evlist *evlist, FILE *fp);
Arnaldo Carvalho de Melob09e0192010-05-11 11:10:15 -0300165
Arnaldo Carvalho de Melod7b76f02011-10-18 19:07:34 -0200166void hists__filter_by_dso(struct hists *hists);
167void hists__filter_by_thread(struct hists *hists);
Namhyung Kime94d53e2012-03-16 17:50:51 +0900168void hists__filter_by_symbol(struct hists *hists);
Kan Liang84734b02015-09-04 10:45:45 -0400169void hists__filter_by_socket(struct hists *hists);
Arnaldo Carvalho de Melob09e0192010-05-11 11:10:15 -0300170
Namhyung Kim268397c2014-04-22 14:49:31 +0900171static inline bool hists__has_filter(struct hists *hists)
172{
173 return hists->thread_filter || hists->dso_filter ||
Kan Liang21394d92015-09-04 10:45:44 -0400174 hists->symbol_filter_str || (hists->socket_filter > -1);
Namhyung Kim268397c2014-04-22 14:49:31 +0900175}
176
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300177u16 hists__col_len(struct hists *hists, enum hist_column col);
178void hists__set_col_len(struct hists *hists, enum hist_column col, u16 len);
179bool hists__new_col_len(struct hists *hists, enum hist_column col, u16 len);
Namhyung Kim7ccf4f92012-08-20 13:52:05 +0900180void hists__reset_col_len(struct hists *hists);
181void hists__calc_col_len(struct hists *hists, struct hist_entry *he);
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -0300182
Arnaldo Carvalho de Melo95529be2012-11-08 17:54:33 -0300183void hists__match(struct hists *leader, struct hists *other);
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -0300184int hists__link(struct hists *leader, struct hists *other);
Arnaldo Carvalho de Melo95529be2012-11-08 17:54:33 -0300185
Arnaldo Carvalho de Meloa635fc52014-10-09 16:16:00 -0300186struct hists_evsel {
187 struct perf_evsel evsel;
188 struct hists hists;
189};
190
191static inline struct perf_evsel *hists_to_evsel(struct hists *hists)
192{
193 struct hists_evsel *hevsel = container_of(hists, struct hists_evsel, hists);
194 return &hevsel->evsel;
195}
196
197static inline struct hists *evsel__hists(struct perf_evsel *evsel)
198{
199 struct hists_evsel *hevsel = (struct hists_evsel *)evsel;
200 return &hevsel->hists;
201}
202
203int hists__init(void);
Jiri Olsa5b658552016-01-18 10:24:22 +0100204int __hists__init(struct hists *hists, struct perf_hpp_list *hpp_list);
Namhyung Kimfc284be2016-01-07 10:14:10 +0100205
206struct rb_root *hists__get_rotate_entries_in(struct hists *hists);
Arnaldo Carvalho de Meloa635fc52014-10-09 16:16:00 -0300207
Namhyung Kimea251d52012-09-03 11:53:06 +0900208struct perf_hpp {
209 char *buf;
210 size_t size;
Namhyung Kimea251d52012-09-03 11:53:06 +0900211 const char *sep;
Namhyung Kimea251d52012-09-03 11:53:06 +0900212 void *ptr;
213};
214
215struct perf_hpp_fmt {
Namhyung Kim1ecd4452014-07-31 14:47:40 +0900216 const char *name;
Namhyung Kim94a07932014-03-10 16:43:52 +0900217 int (*header)(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
Jiri Olsa05372172016-06-14 20:19:19 +0200218 struct hists *hists);
Namhyung Kim94a07932014-03-10 16:43:52 +0900219 int (*width)(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
Jiri Olsada1b0402016-06-14 20:19:20 +0200220 struct hists *hists);
Jiri Olsa2c5d4b42013-01-31 23:31:11 +0100221 int (*color)(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
222 struct hist_entry *he);
223 int (*entry)(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
224 struct hist_entry *he);
Namhyung Kim87bbdf72015-01-08 09:45:46 +0900225 int64_t (*cmp)(struct perf_hpp_fmt *fmt,
226 struct hist_entry *a, struct hist_entry *b);
227 int64_t (*collapse)(struct perf_hpp_fmt *fmt,
228 struct hist_entry *a, struct hist_entry *b);
229 int64_t (*sort)(struct perf_hpp_fmt *fmt,
230 struct hist_entry *a, struct hist_entry *b);
Jiri Olsa97358082016-01-18 10:24:03 +0100231 bool (*equal)(struct perf_hpp_fmt *a, struct perf_hpp_fmt *b);
Jiri Olsa564132f2016-01-18 10:24:09 +0100232 void (*free)(struct perf_hpp_fmt *fmt);
Jiri Olsa12400052012-10-13 00:06:16 +0200233
234 struct list_head list;
Namhyung Kim8b536992014-03-03 11:46:55 +0900235 struct list_head sort_list;
Jiri Olsaf2998422014-05-23 17:15:47 +0200236 bool elide;
Namhyung Kime0d66c72014-07-31 14:47:37 +0900237 int len;
Namhyung Kim5b591662014-07-31 14:47:38 +0900238 int user_len;
Jiri Olsab21a7632016-01-18 10:24:01 +0100239 int idx;
Namhyung Kim4b633eb2016-03-07 16:44:43 -0300240 int level;
Namhyung Kimea251d52012-09-03 11:53:06 +0900241};
242
Jiri Olsa7c31e102016-01-18 10:24:12 +0100243struct perf_hpp_list {
244 struct list_head fields;
245 struct list_head sorts;
Jiri Olsa52225032016-05-03 13:54:42 +0200246
247 int need_collapse;
Jiri Olsade7e6a72016-05-03 13:54:43 +0200248 int parent;
Jiri Olsa2e0453a2016-05-03 13:54:44 +0200249 int sym;
Jiri Olsa69849fc2016-05-03 13:54:45 +0200250 int dso;
Jiri Olsa35a634f2016-05-03 13:54:46 +0200251 int socket;
Jiri Olsafa829112016-05-03 13:54:47 +0200252 int thread;
Jiri Olsa7cecb7f2016-05-03 13:54:48 +0200253 int comm;
Jiri Olsa7c31e102016-01-18 10:24:12 +0100254};
255
256extern struct perf_hpp_list perf_hpp_list;
Jiri Olsa12400052012-10-13 00:06:16 +0200257
Namhyung Kimc3bc0c42016-03-07 16:44:45 -0300258struct perf_hpp_list_node {
259 struct list_head list;
260 struct perf_hpp_list hpp;
261 int level;
Namhyung Kim1b2dbbf2016-03-07 16:44:46 -0300262 bool skip;
Namhyung Kimc3bc0c42016-03-07 16:44:45 -0300263};
264
Jiri Olsaebdd98e2016-01-18 10:24:14 +0100265void perf_hpp_list__column_register(struct perf_hpp_list *list,
266 struct perf_hpp_fmt *format);
267void perf_hpp_list__register_sort_field(struct perf_hpp_list *list,
268 struct perf_hpp_fmt *format);
269
270static inline void perf_hpp__column_register(struct perf_hpp_fmt *format)
271{
272 perf_hpp_list__column_register(&perf_hpp_list, format);
273}
274
275static inline void perf_hpp__register_sort_field(struct perf_hpp_fmt *format)
276{
277 perf_hpp_list__register_sort_field(&perf_hpp_list, format);
278}
279
Jiri Olsacf094042016-01-18 10:24:17 +0100280#define perf_hpp_list__for_each_format(_list, format) \
281 list_for_each_entry(format, &(_list)->fields, list)
Jiri Olsa12400052012-10-13 00:06:16 +0200282
Jiri Olsa7a1799e2016-01-18 10:24:18 +0100283#define perf_hpp_list__for_each_format_safe(_list, format, tmp) \
284 list_for_each_entry_safe(format, tmp, &(_list)->fields, list)
Namhyung Kim1c89fe92014-05-07 18:42:24 +0900285
Jiri Olsad29a4972016-01-18 10:24:19 +0100286#define perf_hpp_list__for_each_sort_list(_list, format) \
287 list_for_each_entry(format, &(_list)->sorts, sort_list)
Namhyung Kim8b536992014-03-03 11:46:55 +0900288
Jiri Olsa1a8ebd22016-01-18 10:24:20 +0100289#define perf_hpp_list__for_each_sort_list_safe(_list, format, tmp) \
290 list_for_each_entry_safe(format, tmp, &(_list)->sorts, sort_list)
Namhyung Kim1c89fe92014-05-07 18:42:24 +0900291
Jiri Olsaf0786af2016-01-18 10:24:23 +0100292#define hists__for_each_format(hists, format) \
293 perf_hpp_list__for_each_format((hists)->hpp_list, fmt)
294
Jiri Olsaaa6f50a2016-01-18 10:24:24 +0100295#define hists__for_each_sort_list(hists, format) \
296 perf_hpp_list__for_each_sort_list((hists)->hpp_list, fmt)
297
Namhyung Kimea251d52012-09-03 11:53:06 +0900298extern struct perf_hpp_fmt perf_hpp__format[];
299
300enum {
Jiri Olsa345dc0b2013-02-03 20:08:34 +0100301 /* Matches perf_hpp__format array. */
Namhyung Kimea251d52012-09-03 11:53:06 +0900302 PERF_HPP__OVERHEAD,
303 PERF_HPP__OVERHEAD_SYS,
304 PERF_HPP__OVERHEAD_US,
305 PERF_HPP__OVERHEAD_GUEST_SYS,
306 PERF_HPP__OVERHEAD_GUEST_US,
Namhyung Kim594dcbf2013-10-30 16:06:59 +0900307 PERF_HPP__OVERHEAD_ACC,
Namhyung Kimea251d52012-09-03 11:53:06 +0900308 PERF_HPP__SAMPLES,
309 PERF_HPP__PERIOD,
Namhyung Kimea251d52012-09-03 11:53:06 +0900310
311 PERF_HPP__MAX_INDEX
312};
313
Jiri Olsa1d778222012-10-04 21:49:39 +0900314void perf_hpp__init(void);
Namhyung Kim77284de2013-12-16 16:55:13 +0900315void perf_hpp__column_unregister(struct perf_hpp_fmt *format);
Namhyung Kim77284de2013-12-16 16:55:13 +0900316void perf_hpp__cancel_cumulate(void);
Jiri Olsa43e0a682016-01-18 10:24:21 +0100317void perf_hpp__setup_output_field(struct perf_hpp_list *list);
318void perf_hpp__reset_output_field(struct perf_hpp_list *list);
319void perf_hpp__append_sort_keys(struct perf_hpp_list *list);
Namhyung Kimc3bc0c42016-03-07 16:44:45 -0300320int perf_hpp__setup_hists_formats(struct perf_hpp_list *list,
321 struct perf_evlist *evlist);
Jiri Olsa43e0a682016-01-18 10:24:21 +0100322
Namhyung Kima7d945b2014-03-04 10:46:34 +0900323
324bool perf_hpp__is_sort_entry(struct perf_hpp_fmt *format);
Namhyung Kim361459f2015-12-23 02:07:08 +0900325bool perf_hpp__is_dynamic_entry(struct perf_hpp_fmt *format);
326bool perf_hpp__defined_dynamic_entry(struct perf_hpp_fmt *fmt, struct hists *hists);
Namhyung Kima9c6e462016-02-25 00:13:33 +0900327bool perf_hpp__is_trace_entry(struct perf_hpp_fmt *fmt);
328bool perf_hpp__is_srcline_entry(struct perf_hpp_fmt *fmt);
329bool perf_hpp__is_srcfile_entry(struct perf_hpp_fmt *fmt);
Namhyung Kim4945cf22016-03-09 22:46:57 +0900330bool perf_hpp__is_thread_entry(struct perf_hpp_fmt *fmt);
331bool perf_hpp__is_comm_entry(struct perf_hpp_fmt *fmt);
332bool perf_hpp__is_dso_entry(struct perf_hpp_fmt *fmt);
333bool perf_hpp__is_sym_entry(struct perf_hpp_fmt *fmt);
Jiri Olsaf2998422014-05-23 17:15:47 +0200334
Namhyung Kimc3bc0c42016-03-07 16:44:45 -0300335struct perf_hpp_fmt *perf_hpp_fmt__dup(struct perf_hpp_fmt *fmt);
336
Namhyung Kim54430102016-02-25 00:13:37 +0900337int hist_entry__filter(struct hist_entry *he, int type, const void *arg);
338
Namhyung Kim361459f2015-12-23 02:07:08 +0900339static inline bool perf_hpp__should_skip(struct perf_hpp_fmt *format,
340 struct hists *hists)
Jiri Olsaf2998422014-05-23 17:15:47 +0200341{
Namhyung Kim361459f2015-12-23 02:07:08 +0900342 if (format->elide)
343 return true;
344
345 if (perf_hpp__is_dynamic_entry(format) &&
346 !perf_hpp__defined_dynamic_entry(format, hists))
347 return true;
348
349 return false;
Jiri Olsaf2998422014-05-23 17:15:47 +0200350}
351
Namhyung Kim678a5002014-03-20 11:18:54 +0900352void perf_hpp__reset_width(struct perf_hpp_fmt *fmt, struct hists *hists);
Namhyung Kime0d66c72014-07-31 14:47:37 +0900353void perf_hpp__reset_sort_width(struct perf_hpp_fmt *fmt, struct hists *hists);
Namhyung Kim5b591662014-07-31 14:47:38 +0900354void perf_hpp__set_user_width(const char *width_list_str);
Namhyung Kimea251d52012-09-03 11:53:06 +0900355
Namhyung Kim2f6d9002014-03-03 10:14:05 +0900356typedef u64 (*hpp_field_fn)(struct hist_entry *he);
357typedef int (*hpp_callback_fn)(struct perf_hpp *hpp, bool front);
Namhyung Kima0088ad2014-03-03 10:14:04 +0900358typedef int (*hpp_snprint_fn)(struct perf_hpp *hpp, const char *fmt, ...);
Namhyung Kim4a621092014-03-03 10:14:03 +0900359
Namhyung Kim5b591662014-07-31 14:47:38 +0900360int hpp__fmt(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
361 struct hist_entry *he, hpp_field_fn get_field,
362 const char *fmtstr, hpp_snprint_fn print_fn, bool fmt_percent);
363int hpp__fmt_acc(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
364 struct hist_entry *he, hpp_field_fn get_field,
365 const char *fmtstr, hpp_snprint_fn print_fn, bool fmt_percent);
Namhyung Kim4a621092014-03-03 10:14:03 +0900366
Namhyung Kima0088ad2014-03-03 10:14:04 +0900367static inline void advance_hpp(struct perf_hpp *hpp, int inc)
368{
369 hpp->buf += inc;
370 hpp->size -= inc;
371}
372
Jiri Olsa9754c4f2013-10-25 13:24:53 +0200373static inline size_t perf_hpp__use_color(void)
374{
375 return !symbol_conf.field_sep;
376}
377
378static inline size_t perf_hpp__color_overhead(void)
379{
380 return perf_hpp__use_color() ?
381 (COLOR_MAXLEN + sizeof(PERF_COLOR_RESET)) * PERF_HPP__MAX_INDEX
382 : 0;
383}
384
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -0300385struct perf_evlist;
386
Namhyung Kim9783adf2012-11-02 14:50:05 +0900387struct hist_browser_timer {
388 void (*timer)(void *arg);
389 void *arg;
390 int refresh;
391};
392
Ingo Molnar89fe8082013-09-30 12:07:11 +0200393#ifdef HAVE_SLANG_SUPPORT
Namhyung Kim1254b51e2012-09-28 18:32:02 +0900394#include "../ui/keysyms.h"
Arnaldo Carvalho de Melod5dbc512015-03-17 18:27:28 -0300395int map_symbol__tui_annotate(struct map_symbol *ms, struct perf_evsel *evsel,
396 struct hist_browser_timer *hbt);
397
Namhyung Kimdb8fd072013-03-05 14:53:21 +0900398int hist_entry__tui_annotate(struct hist_entry *he, struct perf_evsel *evsel,
Namhyung Kim9783adf2012-11-02 14:50:05 +0900399 struct hist_browser_timer *hbt);
Namhyung Kim1254b51e2012-09-28 18:32:02 +0900400
401int perf_evlist__tui_browse_hists(struct perf_evlist *evlist, const char *help,
Namhyung Kim68d80752012-11-02 14:50:06 +0900402 struct hist_browser_timer *hbt,
Namhyung Kim064f1982013-05-14 11:09:04 +0900403 float min_pcnt,
Kan Liangce80d3b2015-08-28 05:48:04 -0400404 struct perf_env *env);
Feng Tang66517822012-10-30 11:56:04 +0800405int script_browse(const char *script_opt);
Namhyung Kim1254b51e2012-09-28 18:32:02 +0900406#else
Arnaldo Carvalho de Melo7f0030b2011-03-06 13:07:30 -0300407static inline
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300408int perf_evlist__tui_browse_hists(struct perf_evlist *evlist __maybe_unused,
409 const char *help __maybe_unused,
Namhyung Kim68d80752012-11-02 14:50:06 +0900410 struct hist_browser_timer *hbt __maybe_unused,
Namhyung Kim064f1982013-05-14 11:09:04 +0900411 float min_pcnt __maybe_unused,
Kan Liangce80d3b2015-08-28 05:48:04 -0400412 struct perf_env *env __maybe_unused)
Arnaldo Carvalho de Melod67f0882010-05-23 22:36:51 -0300413{
414 return 0;
415}
Arnaldo Carvalho de Melod5dbc512015-03-17 18:27:28 -0300416static inline int map_symbol__tui_annotate(struct map_symbol *ms __maybe_unused,
417 struct perf_evsel *evsel __maybe_unused,
418 struct hist_browser_timer *hbt __maybe_unused)
419{
420 return 0;
421}
Arnaldo Carvalho de Melod67f0882010-05-23 22:36:51 -0300422
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300423static inline int hist_entry__tui_annotate(struct hist_entry *he __maybe_unused,
424 struct perf_evsel *evsel __maybe_unused,
425 struct hist_browser_timer *hbt __maybe_unused)
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300426{
427 return 0;
428}
Feng Tang66517822012-10-30 11:56:04 +0800429
Namhyung Kim4f746c92012-11-12 14:14:00 +0900430static inline int script_browse(const char *script_opt __maybe_unused)
Feng Tang66517822012-10-30 11:56:04 +0800431{
432 return 0;
433}
434
Michael Ellerman1e825ef2013-02-26 16:02:02 +1100435#define K_LEFT -1000
436#define K_RIGHT -2000
Michael Ellerman5f7439e2013-02-26 16:02:03 +1100437#define K_SWITCH_INPUT_DATA -3000
Arnaldo Carvalho de Melob09e0192010-05-11 11:10:15 -0300438#endif
Arnaldo Carvalho de Melo06daaab2010-07-21 17:58:25 -0300439
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300440unsigned int hists__sort_list_width(struct hists *hists);
Namhyung Kima7b58952016-02-26 21:13:16 +0900441unsigned int hists__overhead_width(struct hists *hists);
Namhyung Kim33db4562014-02-07 12:06:07 +0900442
Andi Kleen578499982015-07-18 08:24:49 -0700443void hist__account_cycles(struct branch_stack *bs, struct addr_location *al,
444 struct perf_sample *sample, bool nonany_branch_mode);
445
Namhyung Kim33db4562014-02-07 12:06:07 +0900446struct option;
Arnaldo Carvalho de Melob8f8eb82016-03-22 13:09:37 -0300447int parse_filter_percentage(const struct option *opt, const char *arg, int unset);
Namhyung Kim0b93da12014-01-14 12:02:15 +0900448int perf_hist_config(const char *var, const char *value);
Namhyung Kim33db4562014-02-07 12:06:07 +0900449
Jiri Olsa94b3dc32016-01-18 10:24:13 +0100450void perf_hpp_list__init(struct perf_hpp_list *list);
451
Namhyung Kim8c018722016-02-25 00:13:36 +0900452enum hierarchy_move_dir {
453 HMD_NORMAL,
454 HMD_FORCE_SIBLING,
455 HMD_FORCE_CHILD,
456};
457
458struct rb_node *rb_hierarchy_last(struct rb_node *node);
459struct rb_node *__rb_hierarchy_next(struct rb_node *node,
460 enum hierarchy_move_dir hmd);
461struct rb_node *rb_hierarchy_prev(struct rb_node *node);
462
463static inline struct rb_node *rb_hierarchy_next(struct rb_node *node)
464{
465 return __rb_hierarchy_next(node, HMD_NORMAL);
466}
467
Namhyung Kimef86d682016-02-25 00:13:41 +0900468#define HIERARCHY_INDENT 3
469
Namhyung Kima7b58952016-02-26 21:13:16 +0900470bool hist_entry__has_hierarchy_children(struct hist_entry *he, float limit);
471
John Kacur3d1d07e2009-09-28 15:32:55 +0200472#endif /* __PERF_HIST_H */