blob: 8c20a8f6b214b1a05332b42ec213a304c233acb5 [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,
Andi Kleen475eeab2013-09-20 07:40:43 -070052 HISTC_TRANSACTION,
Andi Kleen0e332f02015-07-18 08:24:46 -070053 HISTC_CYCLES,
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030054 HISTC_NR_COLS, /* Last entry */
55};
56
Arnaldo Carvalho de Melod7b76f02011-10-18 19:07:34 -020057struct thread;
58struct dso;
59
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -030060struct hists {
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -030061 struct rb_root entries_in_array[2];
62 struct rb_root *entries_in;
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -030063 struct rb_root entries;
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -030064 struct rb_root entries_collapsed;
Arnaldo Carvalho de Melofefb0b92010-05-10 13:57:51 -030065 u64 nr_entries;
Namhyung Kim1ab1fa52013-12-26 15:11:52 +090066 u64 nr_non_filtered_entries;
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -030067 struct thread *thread_filter;
Arnaldo Carvalho de Melod7b76f02011-10-18 19:07:34 -020068 const struct dso *dso_filter;
Arnaldo Carvalho de Melo0d37aa32012-01-19 14:08:15 -020069 const char *uid_filter_str;
Namhyung Kime94d53e2012-03-16 17:50:51 +090070 const char *symbol_filter_str;
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -030071 pthread_mutex_t lock;
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -030072 struct events_stats stats;
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -030073 u64 event_stream;
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030074 u16 col_len[HISTC_NR_COLS];
Kan Liang21394d92015-09-04 10:45:44 -040075 int socket_filter;
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -030076};
77
Namhyung Kim69bcb012013-10-30 09:40:34 +090078struct hist_entry_iter;
79
80struct hist_iter_ops {
81 int (*prepare_entry)(struct hist_entry_iter *, struct addr_location *);
82 int (*add_single_entry)(struct hist_entry_iter *, struct addr_location *);
83 int (*next_entry)(struct hist_entry_iter *, struct addr_location *);
84 int (*add_next_entry)(struct hist_entry_iter *, struct addr_location *);
85 int (*finish_entry)(struct hist_entry_iter *, struct addr_location *);
86};
87
88struct hist_entry_iter {
89 int total;
90 int curr;
91
92 bool hide_unresolved;
Adrian Hunter96b40f32015-09-25 16:15:47 +030093 int max_stack;
Namhyung Kim69bcb012013-10-30 09:40:34 +090094
95 struct perf_evsel *evsel;
96 struct perf_sample *sample;
97 struct hist_entry *he;
98 struct symbol *parent;
99 void *priv;
100
101 const struct hist_iter_ops *ops;
Namhyung Kim9d3c02d2014-01-07 17:02:25 +0900102 /* user-defined callback function (optional) */
103 int (*add_entry_cb)(struct hist_entry_iter *iter,
104 struct addr_location *al, bool single, void *arg);
Namhyung Kim69bcb012013-10-30 09:40:34 +0900105};
106
107extern const struct hist_iter_ops hist_iter_normal;
108extern const struct hist_iter_ops hist_iter_branch;
109extern const struct hist_iter_ops hist_iter_mem;
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900110extern const struct hist_iter_ops hist_iter_cumulative;
Namhyung Kim69bcb012013-10-30 09:40:34 +0900111
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300112struct hist_entry *__hists__add_entry(struct hists *hists,
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -0300113 struct addr_location *al,
Namhyung Kim41a4e6e2013-10-31 15:56:03 +0900114 struct symbol *parent,
115 struct branch_info *bi,
116 struct mem_info *mi, u64 period,
Namhyung Kima0b51af2012-09-11 13:34:27 +0900117 u64 weight, u64 transaction,
118 bool sample_self);
Namhyung Kim69bcb012013-10-30 09:40:34 +0900119int hist_entry_iter__add(struct hist_entry_iter *iter, struct addr_location *al,
Namhyung Kim9d3c02d2014-01-07 17:02:25 +0900120 int max_stack_depth, void *arg);
Namhyung Kim69bcb012013-10-30 09:40:34 +0900121
Arnaldo Carvalho de Melo12c14272012-01-04 12:27:03 -0200122int64_t hist_entry__cmp(struct hist_entry *left, struct hist_entry *right);
123int64_t hist_entry__collapse(struct hist_entry *left, struct hist_entry *right);
Andi Kleen475eeab2013-09-20 07:40:43 -0700124int hist_entry__transaction_len(void);
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300125int hist_entry__sort_snprintf(struct hist_entry *he, char *bf, size_t size,
Namhyung Kim000078b2012-08-20 13:52:06 +0900126 struct hists *hists);
Arnaldo Carvalho de Melo6733d1b2014-12-19 12:31:40 -0300127void hist_entry__delete(struct hist_entry *he);
Arnaldo Carvalho de Melo4e4f06e2009-12-14 13:10:39 -0200128
Namhyung Kim740b97f2014-12-22 13:44:10 +0900129void hists__output_resort(struct hists *hists, struct ui_progress *prog);
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300130void hists__collapse_resort(struct hists *hists, struct ui_progress *prog);
Arnaldo Carvalho de Meloc8446b92010-05-14 10:36:42 -0300131
Arnaldo Carvalho de Melob079d4e2011-10-17 09:05:04 -0200132void hists__decay_entries(struct hists *hists, bool zap_user, bool zap_kernel);
Namhyung Kim701937b2014-08-12 17:16:05 +0900133void hists__delete_entries(struct hists *hists);
Arnaldo Carvalho de Meloab81f3fd2011-10-05 19:16:15 -0300134void hists__output_recalc_col_len(struct hists *hists, int max_rows);
135
Namhyung Kimf2148332014-01-14 11:52:48 +0900136u64 hists__total_period(struct hists *hists);
Namhyung Kim9283ba92014-04-24 16:37:26 +0900137void hists__reset_stats(struct hists *hists);
Namhyung Kim62638352014-04-24 16:21:46 +0900138void hists__inc_stats(struct hists *hists, struct hist_entry *h);
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300139void hists__inc_nr_events(struct hists *hists, u32 type);
Namhyung Kim1844dbc2014-05-28 14:12:18 +0900140void hists__inc_nr_samples(struct hists *hists, bool filtered);
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -0300141void events_stats__inc(struct events_stats *stats, u32 type);
Arnaldo Carvalho de Melo52168ee2012-12-18 16:02:17 -0300142size_t events_stats__fprintf(struct events_stats *stats, FILE *fp);
Arnaldo Carvalho de Meloc8446b92010-05-14 10:36:42 -0300143
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300144size_t hists__fprintf(struct hists *hists, bool show_header, int max_rows,
Namhyung Kim064f1982013-05-14 11:09:04 +0900145 int max_cols, float min_pcnt, FILE *fp);
Arnaldo Carvalho de Melo2a1731f2014-10-10 15:49:21 -0300146size_t perf_evlist__fprintf_nr_events(struct perf_evlist *evlist, FILE *fp);
Arnaldo Carvalho de Melob09e0192010-05-11 11:10:15 -0300147
Arnaldo Carvalho de Melod7b76f02011-10-18 19:07:34 -0200148void hists__filter_by_dso(struct hists *hists);
149void hists__filter_by_thread(struct hists *hists);
Namhyung Kime94d53e2012-03-16 17:50:51 +0900150void hists__filter_by_symbol(struct hists *hists);
Kan Liang84734b02015-09-04 10:45:45 -0400151void hists__filter_by_socket(struct hists *hists);
Arnaldo Carvalho de Melob09e0192010-05-11 11:10:15 -0300152
Namhyung Kim268397c2014-04-22 14:49:31 +0900153static inline bool hists__has_filter(struct hists *hists)
154{
155 return hists->thread_filter || hists->dso_filter ||
Kan Liang21394d92015-09-04 10:45:44 -0400156 hists->symbol_filter_str || (hists->socket_filter > -1);
Namhyung Kim268397c2014-04-22 14:49:31 +0900157}
158
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300159u16 hists__col_len(struct hists *hists, enum hist_column col);
160void hists__set_col_len(struct hists *hists, enum hist_column col, u16 len);
161bool hists__new_col_len(struct hists *hists, enum hist_column col, u16 len);
Namhyung Kim7ccf4f92012-08-20 13:52:05 +0900162void hists__reset_col_len(struct hists *hists);
163void hists__calc_col_len(struct hists *hists, struct hist_entry *he);
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -0300164
Arnaldo Carvalho de Melo95529be2012-11-08 17:54:33 -0300165void hists__match(struct hists *leader, struct hists *other);
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -0300166int hists__link(struct hists *leader, struct hists *other);
Arnaldo Carvalho de Melo95529be2012-11-08 17:54:33 -0300167
Arnaldo Carvalho de Meloa635fc52014-10-09 16:16:00 -0300168struct hists_evsel {
169 struct perf_evsel evsel;
170 struct hists hists;
171};
172
173static inline struct perf_evsel *hists_to_evsel(struct hists *hists)
174{
175 struct hists_evsel *hevsel = container_of(hists, struct hists_evsel, hists);
176 return &hevsel->evsel;
177}
178
179static inline struct hists *evsel__hists(struct perf_evsel *evsel)
180{
181 struct hists_evsel *hevsel = (struct hists_evsel *)evsel;
182 return &hevsel->hists;
183}
184
185int hists__init(void);
186
Namhyung Kimea251d52012-09-03 11:53:06 +0900187struct perf_hpp {
188 char *buf;
189 size_t size;
Namhyung Kimea251d52012-09-03 11:53:06 +0900190 const char *sep;
Namhyung Kimea251d52012-09-03 11:53:06 +0900191 void *ptr;
192};
193
194struct perf_hpp_fmt {
Namhyung Kim1ecd4452014-07-31 14:47:40 +0900195 const char *name;
Namhyung Kim94a07932014-03-10 16:43:52 +0900196 int (*header)(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
197 struct perf_evsel *evsel);
198 int (*width)(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
199 struct perf_evsel *evsel);
Jiri Olsa2c5d4b42013-01-31 23:31:11 +0100200 int (*color)(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
201 struct hist_entry *he);
202 int (*entry)(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
203 struct hist_entry *he);
Namhyung Kim87bbdf72015-01-08 09:45:46 +0900204 int64_t (*cmp)(struct perf_hpp_fmt *fmt,
205 struct hist_entry *a, struct hist_entry *b);
206 int64_t (*collapse)(struct perf_hpp_fmt *fmt,
207 struct hist_entry *a, struct hist_entry *b);
208 int64_t (*sort)(struct perf_hpp_fmt *fmt,
209 struct hist_entry *a, struct hist_entry *b);
Jiri Olsa12400052012-10-13 00:06:16 +0200210
211 struct list_head list;
Namhyung Kim8b536992014-03-03 11:46:55 +0900212 struct list_head sort_list;
Jiri Olsaf2998422014-05-23 17:15:47 +0200213 bool elide;
Namhyung Kime0d66c72014-07-31 14:47:37 +0900214 int len;
Namhyung Kim5b591662014-07-31 14:47:38 +0900215 int user_len;
Namhyung Kimea251d52012-09-03 11:53:06 +0900216};
217
Jiri Olsa12400052012-10-13 00:06:16 +0200218extern struct list_head perf_hpp__list;
Namhyung Kim8b536992014-03-03 11:46:55 +0900219extern struct list_head perf_hpp__sort_list;
Jiri Olsa12400052012-10-13 00:06:16 +0200220
221#define perf_hpp__for_each_format(format) \
222 list_for_each_entry(format, &perf_hpp__list, list)
223
Namhyung Kim1c89fe92014-05-07 18:42:24 +0900224#define perf_hpp__for_each_format_safe(format, tmp) \
225 list_for_each_entry_safe(format, tmp, &perf_hpp__list, list)
226
Namhyung Kim8b536992014-03-03 11:46:55 +0900227#define perf_hpp__for_each_sort_list(format) \
228 list_for_each_entry(format, &perf_hpp__sort_list, sort_list)
229
Namhyung Kim1c89fe92014-05-07 18:42:24 +0900230#define perf_hpp__for_each_sort_list_safe(format, tmp) \
231 list_for_each_entry_safe(format, tmp, &perf_hpp__sort_list, sort_list)
232
Namhyung Kimea251d52012-09-03 11:53:06 +0900233extern struct perf_hpp_fmt perf_hpp__format[];
234
235enum {
Jiri Olsa345dc0b2013-02-03 20:08:34 +0100236 /* Matches perf_hpp__format array. */
Namhyung Kimea251d52012-09-03 11:53:06 +0900237 PERF_HPP__OVERHEAD,
238 PERF_HPP__OVERHEAD_SYS,
239 PERF_HPP__OVERHEAD_US,
240 PERF_HPP__OVERHEAD_GUEST_SYS,
241 PERF_HPP__OVERHEAD_GUEST_US,
Namhyung Kim594dcbf2013-10-30 16:06:59 +0900242 PERF_HPP__OVERHEAD_ACC,
Namhyung Kimea251d52012-09-03 11:53:06 +0900243 PERF_HPP__SAMPLES,
244 PERF_HPP__PERIOD,
Namhyung Kimea251d52012-09-03 11:53:06 +0900245
246 PERF_HPP__MAX_INDEX
247};
248
Jiri Olsa1d778222012-10-04 21:49:39 +0900249void perf_hpp__init(void);
Jiri Olsa12400052012-10-13 00:06:16 +0200250void perf_hpp__column_register(struct perf_hpp_fmt *format);
Namhyung Kim77284de2013-12-16 16:55:13 +0900251void perf_hpp__column_unregister(struct perf_hpp_fmt *format);
Jiri Olsa12400052012-10-13 00:06:16 +0200252void perf_hpp__column_enable(unsigned col);
Namhyung Kim77284de2013-12-16 16:55:13 +0900253void perf_hpp__column_disable(unsigned col);
254void perf_hpp__cancel_cumulate(void);
255
Namhyung Kim8b536992014-03-03 11:46:55 +0900256void perf_hpp__register_sort_field(struct perf_hpp_fmt *format);
Namhyung Kim26d8b332014-03-03 16:16:20 +0900257void perf_hpp__setup_output_field(void);
Namhyung Kim1c89fe92014-05-07 18:42:24 +0900258void perf_hpp__reset_output_field(void);
Namhyung Kima7d945b2014-03-04 10:46:34 +0900259void perf_hpp__append_sort_keys(void);
260
261bool perf_hpp__is_sort_entry(struct perf_hpp_fmt *format);
262bool perf_hpp__same_sort_entry(struct perf_hpp_fmt *a, struct perf_hpp_fmt *b);
Jiri Olsaf2998422014-05-23 17:15:47 +0200263
264static inline bool perf_hpp__should_skip(struct perf_hpp_fmt *format)
265{
266 return format->elide;
267}
268
Namhyung Kim678a5002014-03-20 11:18:54 +0900269void perf_hpp__reset_width(struct perf_hpp_fmt *fmt, struct hists *hists);
Namhyung Kime0d66c72014-07-31 14:47:37 +0900270void perf_hpp__reset_sort_width(struct perf_hpp_fmt *fmt, struct hists *hists);
Namhyung Kim5b591662014-07-31 14:47:38 +0900271void perf_hpp__set_user_width(const char *width_list_str);
Namhyung Kimea251d52012-09-03 11:53:06 +0900272
Namhyung Kim2f6d9002014-03-03 10:14:05 +0900273typedef u64 (*hpp_field_fn)(struct hist_entry *he);
274typedef int (*hpp_callback_fn)(struct perf_hpp *hpp, bool front);
Namhyung Kima0088ad2014-03-03 10:14:04 +0900275typedef int (*hpp_snprint_fn)(struct perf_hpp *hpp, const char *fmt, ...);
Namhyung Kim4a621092014-03-03 10:14:03 +0900276
Namhyung Kim5b591662014-07-31 14:47:38 +0900277int hpp__fmt(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
278 struct hist_entry *he, hpp_field_fn get_field,
279 const char *fmtstr, hpp_snprint_fn print_fn, bool fmt_percent);
280int hpp__fmt_acc(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
281 struct hist_entry *he, hpp_field_fn get_field,
282 const char *fmtstr, hpp_snprint_fn print_fn, bool fmt_percent);
Namhyung Kim4a621092014-03-03 10:14:03 +0900283
Namhyung Kima0088ad2014-03-03 10:14:04 +0900284static inline void advance_hpp(struct perf_hpp *hpp, int inc)
285{
286 hpp->buf += inc;
287 hpp->size -= inc;
288}
289
Jiri Olsa9754c4f2013-10-25 13:24:53 +0200290static inline size_t perf_hpp__use_color(void)
291{
292 return !symbol_conf.field_sep;
293}
294
295static inline size_t perf_hpp__color_overhead(void)
296{
297 return perf_hpp__use_color() ?
298 (COLOR_MAXLEN + sizeof(PERF_COLOR_RESET)) * PERF_HPP__MAX_INDEX
299 : 0;
300}
301
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -0300302struct perf_evlist;
303
Namhyung Kim9783adf2012-11-02 14:50:05 +0900304struct hist_browser_timer {
305 void (*timer)(void *arg);
306 void *arg;
307 int refresh;
308};
309
Ingo Molnar89fe8082013-09-30 12:07:11 +0200310#ifdef HAVE_SLANG_SUPPORT
Namhyung Kim1254b51e2012-09-28 18:32:02 +0900311#include "../ui/keysyms.h"
Arnaldo Carvalho de Melod5dbc512015-03-17 18:27:28 -0300312int map_symbol__tui_annotate(struct map_symbol *ms, struct perf_evsel *evsel,
313 struct hist_browser_timer *hbt);
314
Namhyung Kimdb8fd072013-03-05 14:53:21 +0900315int hist_entry__tui_annotate(struct hist_entry *he, struct perf_evsel *evsel,
Namhyung Kim9783adf2012-11-02 14:50:05 +0900316 struct hist_browser_timer *hbt);
Namhyung Kim1254b51e2012-09-28 18:32:02 +0900317
318int perf_evlist__tui_browse_hists(struct perf_evlist *evlist, const char *help,
Namhyung Kim68d80752012-11-02 14:50:06 +0900319 struct hist_browser_timer *hbt,
Namhyung Kim064f1982013-05-14 11:09:04 +0900320 float min_pcnt,
Kan Liangce80d3b2015-08-28 05:48:04 -0400321 struct perf_env *env);
Feng Tang66517822012-10-30 11:56:04 +0800322int script_browse(const char *script_opt);
Namhyung Kim1254b51e2012-09-28 18:32:02 +0900323#else
Arnaldo Carvalho de Melo7f0030b2011-03-06 13:07:30 -0300324static inline
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300325int perf_evlist__tui_browse_hists(struct perf_evlist *evlist __maybe_unused,
326 const char *help __maybe_unused,
Namhyung Kim68d80752012-11-02 14:50:06 +0900327 struct hist_browser_timer *hbt __maybe_unused,
Namhyung Kim064f1982013-05-14 11:09:04 +0900328 float min_pcnt __maybe_unused,
Kan Liangce80d3b2015-08-28 05:48:04 -0400329 struct perf_env *env __maybe_unused)
Arnaldo Carvalho de Melod67f0882010-05-23 22:36:51 -0300330{
331 return 0;
332}
Arnaldo Carvalho de Melod5dbc512015-03-17 18:27:28 -0300333static inline int map_symbol__tui_annotate(struct map_symbol *ms __maybe_unused,
334 struct perf_evsel *evsel __maybe_unused,
335 struct hist_browser_timer *hbt __maybe_unused)
336{
337 return 0;
338}
Arnaldo Carvalho de Melod67f0882010-05-23 22:36:51 -0300339
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300340static inline int hist_entry__tui_annotate(struct hist_entry *he __maybe_unused,
341 struct perf_evsel *evsel __maybe_unused,
342 struct hist_browser_timer *hbt __maybe_unused)
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300343{
344 return 0;
345}
Feng Tang66517822012-10-30 11:56:04 +0800346
Namhyung Kim4f746c92012-11-12 14:14:00 +0900347static inline int script_browse(const char *script_opt __maybe_unused)
Feng Tang66517822012-10-30 11:56:04 +0800348{
349 return 0;
350}
351
Michael Ellerman1e825ef2013-02-26 16:02:02 +1100352#define K_LEFT -1000
353#define K_RIGHT -2000
Michael Ellerman5f7439e2013-02-26 16:02:03 +1100354#define K_SWITCH_INPUT_DATA -3000
Arnaldo Carvalho de Melob09e0192010-05-11 11:10:15 -0300355#endif
Arnaldo Carvalho de Melo06daaab2010-07-21 17:58:25 -0300356
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300357unsigned int hists__sort_list_width(struct hists *hists);
Namhyung Kim33db4562014-02-07 12:06:07 +0900358
Andi Kleen578499982015-07-18 08:24:49 -0700359void hist__account_cycles(struct branch_stack *bs, struct addr_location *al,
360 struct perf_sample *sample, bool nonany_branch_mode);
361
Namhyung Kim33db4562014-02-07 12:06:07 +0900362struct option;
363int parse_filter_percentage(const struct option *opt __maybe_unused,
364 const char *arg, int unset __maybe_unused);
Namhyung Kim0b93da12014-01-14 12:02:15 +0900365int perf_hist_config(const char *var, const char *value);
Namhyung Kim33db4562014-02-07 12:06:07 +0900366
John Kacur3d1d07e2009-09-28 15:32:55 +0200367#endif /* __PERF_HIST_H */