Merge tag 'block-6.1-2022-10-20' of git://git.kernel.dk/linux
[linux-block.git] / tools / perf / util / hist.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
3d1d07ec
JK
2#ifndef __PERF_HIST_H
3#define __PERF_HIST_H
3d1d07ec 4
71551288 5#include <linux/rbtree.h>
4e4f06e4 6#include <linux/types.h>
a635fc51 7#include "evsel.h"
9754c4f9 8#include "color.h"
47729258 9#include "events_stats.h"
8e03bb88 10#include "mutex.h"
3d1d07ec 11
4e4f06e4 12struct hist_entry;
a5051979 13struct hist_entry_ops;
4e4f06e4 14struct addr_location;
71551288 15struct map_symbol;
7cadca8e
ACM
16struct mem_info;
17struct branch_info;
3793d4de 18struct branch_stack;
fe96245c 19struct block_info;
4e4f06e4 20struct symbol;
171f7474 21struct ui_progress;
ef7b93a1 22
b3cef7f6
NK
23enum hist_filter {
24 HIST_FILTER__DSO,
25 HIST_FILTER__THREAD,
26 HIST_FILTER__PARENT,
27 HIST_FILTER__SYMBOL,
28 HIST_FILTER__GUEST,
29 HIST_FILTER__HOST,
21394d94 30 HIST_FILTER__SOCKET,
9857b717 31 HIST_FILTER__C2C,
b3cef7f6
NK
32};
33
8a6c5b26
ACM
34enum hist_column {
35 HISTC_SYMBOL,
3723908d 36 HISTC_TIME,
8a6c5b26
ACM
37 HISTC_DSO,
38 HISTC_THREAD,
39 HISTC_COMM,
d890a98c 40 HISTC_CGROUP_ID,
b629f3e9 41 HISTC_CGROUP,
8a6c5b26
ACM
42 HISTC_PARENT,
43 HISTC_CPU,
2e7ea3ab 44 HISTC_SOCKET,
dfd3b2fd 45 HISTC_SRCLINE,
31191a85 46 HISTC_SRCFILE,
b5387528 47 HISTC_MISPREDICT,
f5d05bce
AK
48 HISTC_IN_TX,
49 HISTC_ABORT,
b5387528
RAV
50 HISTC_SYMBOL_FROM,
51 HISTC_SYMBOL_TO,
52 HISTC_DSO_FROM,
53 HISTC_DSO_TO,
05484298
AK
54 HISTC_LOCAL_WEIGHT,
55 HISTC_GLOBAL_WEIGHT,
9fd74f20 56 HISTC_CODE_PAGE_SIZE,
98a3b32c
SE
57 HISTC_MEM_DADDR_SYMBOL,
58 HISTC_MEM_DADDR_DSO,
8780fb25 59 HISTC_MEM_PHYS_DADDR,
a50d03e3 60 HISTC_MEM_DATA_PAGE_SIZE,
98a3b32c
SE
61 HISTC_MEM_LOCKED,
62 HISTC_MEM_TLB,
63 HISTC_MEM_LVL,
64 HISTC_MEM_SNOOP,
9b32ba71 65 HISTC_MEM_DCACHELINE,
28e6db20 66 HISTC_MEM_IADDR_SYMBOL,
475eeab9 67 HISTC_TRANSACTION,
0e332f03 68 HISTC_CYCLES,
508be0df
AK
69 HISTC_SRCLINE_FROM,
70 HISTC_SRCLINE_TO,
a34bb6a0 71 HISTC_TRACE,
7768f8da 72 HISTC_SYM_SIZE,
b74d12d5 73 HISTC_DSO_SIZE,
ec6ae74f 74 HISTC_SYMBOL_IPC,
a054c298 75 HISTC_MEM_BLOCKED,
590db42d
KL
76 HISTC_LOCAL_INS_LAT,
77 HISTC_GLOBAL_INS_LAT,
e3304c21
AR
78 HISTC_LOCAL_P_STAGE_CYC,
79 HISTC_GLOBAL_P_STAGE_CYC,
05274770
SE
80 HISTC_ADDR_FROM,
81 HISTC_ADDR_TO,
762461f1 82 HISTC_ADDR,
8a6c5b26
ACM
83 HISTC_NR_COLS, /* Last entry */
84};
85
d7b76f09
ACM
86struct thread;
87struct dso;
88
1c02c4d2 89struct hists {
2eb3d689
DB
90 struct rb_root_cached entries_in_array[2];
91 struct rb_root_cached *entries_in;
92 struct rb_root_cached entries;
93 struct rb_root_cached entries_collapsed;
fefb0b94 94 u64 nr_entries;
1ab1fa5d 95 u64 nr_non_filtered_entries;
467ef10c
NK
96 u64 callchain_period;
97 u64 callchain_non_filtered_period;
f3b623b8 98 struct thread *thread_filter;
d7b76f09 99 const struct dso *dso_filter;
0d37aa34 100 const char *uid_filter_str;
e94d53eb 101 const char *symbol_filter_str;
8e03bb88 102 struct mutex lock;
0f0abbac 103 struct hists_stats stats;
1c02c4d2 104 u64 event_stream;
8a6c5b26 105 u16 col_len[HISTC_NR_COLS];
c9d36628 106 bool has_callchains;
21394d94 107 int socket_filter;
5b65855e 108 struct perf_hpp_list *hpp_list;
c3bc0c43 109 struct list_head hpp_formats;
2dbbe9f2 110 int nr_hpp_node;
1c02c4d2
ACM
111};
112
52225036
JO
113#define hists__has(__h, __f) (__h)->hpp_list->__f
114
69bcb019
NK
115struct hist_entry_iter;
116
117struct hist_iter_ops {
118 int (*prepare_entry)(struct hist_entry_iter *, struct addr_location *);
119 int (*add_single_entry)(struct hist_entry_iter *, struct addr_location *);
120 int (*next_entry)(struct hist_entry_iter *, struct addr_location *);
121 int (*add_next_entry)(struct hist_entry_iter *, struct addr_location *);
122 int (*finish_entry)(struct hist_entry_iter *, struct addr_location *);
123};
124
125struct hist_entry_iter {
126 int total;
127 int curr;
128
129 bool hide_unresolved;
130
32dcd021 131 struct evsel *evsel;
69bcb019
NK
132 struct perf_sample *sample;
133 struct hist_entry *he;
134 struct symbol *parent;
135 void *priv;
136
137 const struct hist_iter_ops *ops;
9d3c02d7
NK
138 /* user-defined callback function (optional) */
139 int (*add_entry_cb)(struct hist_entry_iter *iter,
140 struct addr_location *al, bool single, void *arg);
69bcb019
NK
141};
142
143extern const struct hist_iter_ops hist_iter_normal;
144extern const struct hist_iter_ops hist_iter_branch;
145extern const struct hist_iter_ops hist_iter_mem;
7a13aa28 146extern const struct hist_iter_ops hist_iter_cumulative;
69bcb019 147
0102ef3e
JO
148struct hist_entry *hists__add_entry(struct hists *hists,
149 struct addr_location *al,
150 struct symbol *parent,
151 struct branch_info *bi,
152 struct mem_info *mi,
153 struct perf_sample *sample,
154 bool sample_self);
a5051979
JO
155
156struct hist_entry *hists__add_entry_ops(struct hists *hists,
157 struct hist_entry_ops *ops,
158 struct addr_location *al,
159 struct symbol *sym_parent,
160 struct branch_info *bi,
161 struct mem_info *mi,
162 struct perf_sample *sample,
163 bool sample_self);
164
fe96245c
JY
165struct hist_entry *hists__add_entry_block(struct hists *hists,
166 struct addr_location *al,
167 struct block_info *bi);
168
69bcb019 169int hist_entry_iter__add(struct hist_entry_iter *iter, struct addr_location *al,
9d3c02d7 170 int max_stack_depth, void *arg);
69bcb019 171
89fee709
ACM
172struct perf_hpp;
173struct perf_hpp_fmt;
174
12c14278
ACM
175int64_t hist_entry__cmp(struct hist_entry *left, struct hist_entry *right);
176int64_t hist_entry__collapse(struct hist_entry *left, struct hist_entry *right);
475eeab9 177int hist_entry__transaction_len(void);
316c7136 178int hist_entry__sort_snprintf(struct hist_entry *he, char *bf, size_t size,
000078bc 179 struct hists *hists);
89fee709
ACM
180int hist_entry__snprintf_alignment(struct hist_entry *he, struct perf_hpp *hpp,
181 struct perf_hpp_fmt *fmt, int printed);
6733d1bf 182void hist_entry__delete(struct hist_entry *he);
4e4f06e4 183
e4c38fd4 184typedef int (*hists__resort_cb_t)(struct hist_entry *he, void *arg);
52c5cc36 185
10c513f7
ACM
186void evsel__output_resort_cb(struct evsel *evsel, struct ui_progress *prog,
187 hists__resort_cb_t cb, void *cb_arg);
188void evsel__output_resort(struct evsel *evsel, struct ui_progress *prog);
740b97f9 189void hists__output_resort(struct hists *hists, struct ui_progress *prog);
52c5cc36
JO
190void hists__output_resort_cb(struct hists *hists, struct ui_progress *prog,
191 hists__resort_cb_t cb);
bba58cdf 192int hists__collapse_resort(struct hists *hists, struct ui_progress *prog);
c8446b9b 193
b079d4e9 194void hists__decay_entries(struct hists *hists, bool zap_user, bool zap_kernel);
701937bd 195void hists__delete_entries(struct hists *hists);
ab81f3fd
ACM
196void hists__output_recalc_col_len(struct hists *hists, int max_rows);
197
b10c78c5
JY
198struct hist_entry *hists__get_entry(struct hists *hists, int idx);
199
f2148330 200u64 hists__total_period(struct hists *hists);
9283ba9b 201void hists__reset_stats(struct hists *hists);
6263835a 202void hists__inc_stats(struct hists *hists, struct hist_entry *h);
0f0abbac 203void hists__inc_nr_events(struct hists *hists);
1844dbcb 204void hists__inc_nr_samples(struct hists *hists, bool filtered);
75b37db0 205void hists__inc_nr_lost_samples(struct hists *hists, u32 lost);
c8446b9b 206
316c7136 207size_t hists__fprintf(struct hists *hists, bool show_header, int max_rows,
d05e3aae 208 int max_cols, float min_pcnt, FILE *fp,
e9de7e2f 209 bool ignore_callchains);
2775de0b
NK
210size_t evlist__fprintf_nr_events(struct evlist *evlist, FILE *fp,
211 bool skip_empty);
b09e0190 212
d7b76f09
ACM
213void hists__filter_by_dso(struct hists *hists);
214void hists__filter_by_thread(struct hists *hists);
e94d53eb 215void hists__filter_by_symbol(struct hists *hists);
84734b06 216void hists__filter_by_socket(struct hists *hists);
b09e0190 217
268397cb
NK
218static inline bool hists__has_filter(struct hists *hists)
219{
220 return hists->thread_filter || hists->dso_filter ||
21394d94 221 hists->symbol_filter_str || (hists->socket_filter > -1);
268397cb
NK
222}
223
316c7136
ACM
224u16 hists__col_len(struct hists *hists, enum hist_column col);
225void hists__set_col_len(struct hists *hists, enum hist_column col, u16 len);
226bool hists__new_col_len(struct hists *hists, enum hist_column col, u16 len);
7ccf4f90
NK
227void hists__reset_col_len(struct hists *hists);
228void hists__calc_col_len(struct hists *hists, struct hist_entry *he);
8a6c5b26 229
95529be4 230void hists__match(struct hists *leader, struct hists *other);
494d70a1 231int hists__link(struct hists *leader, struct hists *other);
be5863b7 232int hists__unlink(struct hists *hists);
95529be4 233
a635fc51 234struct hists_evsel {
32dcd021 235 struct evsel evsel;
a635fc51
ACM
236 struct hists hists;
237};
238
32dcd021 239static inline struct evsel *hists_to_evsel(struct hists *hists)
a635fc51
ACM
240{
241 struct hists_evsel *hevsel = container_of(hists, struct hists_evsel, hists);
242 return &hevsel->evsel;
243}
244
32dcd021 245static inline struct hists *evsel__hists(struct evsel *evsel)
a635fc51
ACM
246{
247 struct hists_evsel *hevsel = (struct hists_evsel *)evsel;
248 return &hevsel->hists;
249}
250
fabd37b8
ACM
251static __pure inline bool hists__has_callchains(struct hists *hists)
252{
c9d36628 253 return hists->has_callchains;
fabd37b8
ACM
254}
255
a635fc51 256int hists__init(void);
5b65855e 257int __hists__init(struct hists *hists, struct perf_hpp_list *hpp_list);
fc284be9 258
2eb3d689 259struct rb_root_cached *hists__get_rotate_entries_in(struct hists *hists);
a635fc51 260
ea251d51
NK
261struct perf_hpp {
262 char *buf;
263 size_t size;
ea251d51 264 const char *sep;
ea251d51 265 void *ptr;
b10c78c5 266 bool skip;
ea251d51
NK
267};
268
269struct perf_hpp_fmt {
1ecd4453 270 const char *name;
94a0793d 271 int (*header)(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
29659ab4 272 struct hists *hists, int line, int *span);
94a0793d 273 int (*width)(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
da1b0407 274 struct hists *hists);
2c5d4b4a
JO
275 int (*color)(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
276 struct hist_entry *he);
277 int (*entry)(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
278 struct hist_entry *he);
87bbdf76
NK
279 int64_t (*cmp)(struct perf_hpp_fmt *fmt,
280 struct hist_entry *a, struct hist_entry *b);
281 int64_t (*collapse)(struct perf_hpp_fmt *fmt,
282 struct hist_entry *a, struct hist_entry *b);
283 int64_t (*sort)(struct perf_hpp_fmt *fmt,
284 struct hist_entry *a, struct hist_entry *b);
97358084 285 bool (*equal)(struct perf_hpp_fmt *a, struct perf_hpp_fmt *b);
564132f3 286 void (*free)(struct perf_hpp_fmt *fmt);
1240005e
JO
287
288 struct list_head list;
8b536999 289 struct list_head sort_list;
f2998422 290 bool elide;
e0d66c74 291 int len;
5b591669 292 int user_len;
b21a763e 293 int idx;
4b633eba 294 int level;
ea251d51
NK
295};
296
7c31e102
JO
297struct perf_hpp_list {
298 struct list_head fields;
299 struct list_head sorts;
52225036 300
f8e6710d 301 int nr_header_lines;
52225036 302 int need_collapse;
de7e6a7c 303 int parent;
2e0453af 304 int sym;
69849fc5 305 int dso;
35a634f7 306 int socket;
fa82911a 307 int thread;
7cecb7fe 308 int comm;
7c31e102
JO
309};
310
311extern struct perf_hpp_list perf_hpp_list;
1240005e 312
c3bc0c43
NK
313struct perf_hpp_list_node {
314 struct list_head list;
315 struct perf_hpp_list hpp;
316 int level;
1b2dbbf4 317 bool skip;
c3bc0c43
NK
318};
319
ebdd98e0
JO
320void perf_hpp_list__column_register(struct perf_hpp_list *list,
321 struct perf_hpp_fmt *format);
322void perf_hpp_list__register_sort_field(struct perf_hpp_list *list,
323 struct perf_hpp_fmt *format);
a1c9f97f
NK
324void perf_hpp_list__prepend_sort_field(struct perf_hpp_list *list,
325 struct perf_hpp_fmt *format);
ebdd98e0
JO
326
327static inline void perf_hpp__column_register(struct perf_hpp_fmt *format)
328{
329 perf_hpp_list__column_register(&perf_hpp_list, format);
330}
331
332static inline void perf_hpp__register_sort_field(struct perf_hpp_fmt *format)
333{
334 perf_hpp_list__register_sort_field(&perf_hpp_list, format);
335}
336
a1c9f97f
NK
337static inline void perf_hpp__prepend_sort_field(struct perf_hpp_fmt *format)
338{
339 perf_hpp_list__prepend_sort_field(&perf_hpp_list, format);
340}
341
cf094045
JO
342#define perf_hpp_list__for_each_format(_list, format) \
343 list_for_each_entry(format, &(_list)->fields, list)
1240005e 344
7a1799e0
JO
345#define perf_hpp_list__for_each_format_safe(_list, format, tmp) \
346 list_for_each_entry_safe(format, tmp, &(_list)->fields, list)
1c89fe9b 347
d29a4970
JO
348#define perf_hpp_list__for_each_sort_list(_list, format) \
349 list_for_each_entry(format, &(_list)->sorts, sort_list)
8b536999 350
1a8ebd24
JO
351#define perf_hpp_list__for_each_sort_list_safe(_list, format, tmp) \
352 list_for_each_entry_safe(format, tmp, &(_list)->sorts, sort_list)
1c89fe9b 353
f0786af5 354#define hists__for_each_format(hists, format) \
55347ec3 355 perf_hpp_list__for_each_format((hists)->hpp_list, format)
f0786af5 356
aa6f50af 357#define hists__for_each_sort_list(hists, format) \
55347ec3 358 perf_hpp_list__for_each_sort_list((hists)->hpp_list, format)
aa6f50af 359
ea251d51
NK
360extern struct perf_hpp_fmt perf_hpp__format[];
361
362enum {
345dc0b4 363 /* Matches perf_hpp__format array. */
ea251d51
NK
364 PERF_HPP__OVERHEAD,
365 PERF_HPP__OVERHEAD_SYS,
366 PERF_HPP__OVERHEAD_US,
367 PERF_HPP__OVERHEAD_GUEST_SYS,
368 PERF_HPP__OVERHEAD_GUEST_US,
594dcbf3 369 PERF_HPP__OVERHEAD_ACC,
ea251d51
NK
370 PERF_HPP__SAMPLES,
371 PERF_HPP__PERIOD,
ea251d51
NK
372
373 PERF_HPP__MAX_INDEX
374};
375
1d77822e 376void perf_hpp__init(void);
77284de3 377void perf_hpp__cancel_cumulate(void);
43e0a68f
JO
378void perf_hpp__setup_output_field(struct perf_hpp_list *list);
379void perf_hpp__reset_output_field(struct perf_hpp_list *list);
380void perf_hpp__append_sort_keys(struct perf_hpp_list *list);
c3bc0c43 381int perf_hpp__setup_hists_formats(struct perf_hpp_list *list,
63503dba 382 struct evlist *evlist);
43e0a68f 383
a7d945bc
NK
384
385bool perf_hpp__is_sort_entry(struct perf_hpp_fmt *format);
361459f1
NK
386bool perf_hpp__is_dynamic_entry(struct perf_hpp_fmt *format);
387bool perf_hpp__defined_dynamic_entry(struct perf_hpp_fmt *fmt, struct hists *hists);
a9c6e46c
NK
388bool perf_hpp__is_trace_entry(struct perf_hpp_fmt *fmt);
389bool perf_hpp__is_srcline_entry(struct perf_hpp_fmt *fmt);
390bool perf_hpp__is_srcfile_entry(struct perf_hpp_fmt *fmt);
4945cf2a
NK
391bool perf_hpp__is_thread_entry(struct perf_hpp_fmt *fmt);
392bool perf_hpp__is_comm_entry(struct perf_hpp_fmt *fmt);
393bool perf_hpp__is_dso_entry(struct perf_hpp_fmt *fmt);
394bool perf_hpp__is_sym_entry(struct perf_hpp_fmt *fmt);
f2998422 395
c3bc0c43
NK
396struct perf_hpp_fmt *perf_hpp_fmt__dup(struct perf_hpp_fmt *fmt);
397
54430101
NK
398int hist_entry__filter(struct hist_entry *he, int type, const void *arg);
399
361459f1
NK
400static inline bool perf_hpp__should_skip(struct perf_hpp_fmt *format,
401 struct hists *hists)
f2998422 402{
361459f1
NK
403 if (format->elide)
404 return true;
405
406 if (perf_hpp__is_dynamic_entry(format) &&
407 !perf_hpp__defined_dynamic_entry(format, hists))
408 return true;
409
410 return false;
f2998422
JO
411}
412
678a500d 413void perf_hpp__reset_width(struct perf_hpp_fmt *fmt, struct hists *hists);
e0d66c74 414void perf_hpp__reset_sort_width(struct perf_hpp_fmt *fmt, struct hists *hists);
5b591669 415void perf_hpp__set_user_width(const char *width_list_str);
e3b60bc9 416void hists__reset_column_width(struct hists *hists);
ea251d51 417
2f6d9009
NK
418typedef u64 (*hpp_field_fn)(struct hist_entry *he);
419typedef int (*hpp_callback_fn)(struct perf_hpp *hpp, bool front);
a0088adc 420typedef int (*hpp_snprint_fn)(struct perf_hpp *hpp, const char *fmt, ...);
4a62109f 421
5b591669
NK
422int hpp__fmt(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
423 struct hist_entry *he, hpp_field_fn get_field,
424 const char *fmtstr, hpp_snprint_fn print_fn, bool fmt_percent);
425int hpp__fmt_acc(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
426 struct hist_entry *he, hpp_field_fn get_field,
427 const char *fmtstr, hpp_snprint_fn print_fn, bool fmt_percent);
4a62109f 428
a0088adc
NK
429static inline void advance_hpp(struct perf_hpp *hpp, int inc)
430{
431 hpp->buf += inc;
432 hpp->size -= inc;
433}
434
9754c4f9
JO
435static inline size_t perf_hpp__use_color(void)
436{
437 return !symbol_conf.field_sep;
438}
439
440static inline size_t perf_hpp__color_overhead(void)
441{
442 return perf_hpp__use_color() ?
443 (COLOR_MAXLEN + sizeof(PERF_COLOR_RESET)) * PERF_HPP__MAX_INDEX
444 : 0;
445}
446
63503dba 447struct evlist;
e248de33 448
9783adf7
NK
449struct hist_browser_timer {
450 void (*timer)(void *arg);
451 void *arg;
452 int refresh;
453};
454
cd0cccba 455struct annotation_options;
4968ac8f
AK
456struct res_sample;
457
458enum rstype {
459 A_NORMAL,
460 A_ASM,
461 A_SOURCE
462};
cd0cccba 463
5cb456af
JY
464struct block_hist;
465
89fe808a 466#ifdef HAVE_SLANG_SUPPORT
1254b51e 467#include "../ui/keysyms.h"
6f3da20e
AK
468void attr_to_script(char *buf, struct perf_event_attr *attr);
469
32dcd021 470int map_symbol__tui_annotate(struct map_symbol *ms, struct evsel *evsel,
cd0cccba
ACM
471 struct hist_browser_timer *hbt,
472 struct annotation_options *annotation_opts);
d5dbc518 473
32dcd021 474int hist_entry__tui_annotate(struct hist_entry *he, struct evsel *evsel,
cd0cccba
ACM
475 struct hist_browser_timer *hbt,
476 struct annotation_options *annotation_opts);
1254b51e 477
f4bd0b4a
ACM
478int evlist__tui_browse_hists(struct evlist *evlist, const char *help, struct hist_browser_timer *hbt,
479 float min_pcnt, struct perf_env *env, bool warn_lost_event,
480 struct annotation_options *annotation_options);
6f3da20e 481
32dcd021 482int script_browse(const char *script_opt, struct evsel *evsel);
4968ac8f
AK
483
484void run_script(char *cmd);
485int res_sample_browse(struct res_sample *res_samples, int num_res,
32dcd021 486 struct evsel *evsel, enum rstype rstype);
4968ac8f 487void res_sample_init(void);
5cb456af
JY
488
489int block_hists_tui_browse(struct block_hist *bh, struct evsel *evsel,
848a5e50
JY
490 float min_percent, struct perf_env *env,
491 struct annotation_options *annotation_opts);
1254b51e 492#else
7f0030b2 493static inline
f4bd0b4a
ACM
494int evlist__tui_browse_hists(struct evlist *evlist __maybe_unused,
495 const char *help __maybe_unused,
496 struct hist_browser_timer *hbt __maybe_unused,
497 float min_pcnt __maybe_unused,
498 struct perf_env *env __maybe_unused,
499 bool warn_lost_event __maybe_unused,
500 struct annotation_options *annotation_options __maybe_unused)
d67f088e
ACM
501{
502 return 0;
503}
d5dbc518 504static inline int map_symbol__tui_annotate(struct map_symbol *ms __maybe_unused,
32dcd021 505 struct evsel *evsel __maybe_unused,
cd0cccba
ACM
506 struct hist_browser_timer *hbt __maybe_unused,
507 struct annotation_options *annotation_options __maybe_unused)
d5dbc518
ACM
508{
509 return 0;
510}
d67f088e 511
316c7136 512static inline int hist_entry__tui_annotate(struct hist_entry *he __maybe_unused,
32dcd021 513 struct evsel *evsel __maybe_unused,
cd0cccba
ACM
514 struct hist_browser_timer *hbt __maybe_unused,
515 struct annotation_options *annotation_opts __maybe_unused)
46e3e055
ACM
516{
517 return 0;
518}
66517826 519
6f3da20e 520static inline int script_browse(const char *script_opt __maybe_unused,
32dcd021 521 struct evsel *evsel __maybe_unused)
66517826
FT
522{
523 return 0;
524}
525
4968ac8f
AK
526static inline int res_sample_browse(struct res_sample *res_samples __maybe_unused,
527 int num_res __maybe_unused,
32dcd021 528 struct evsel *evsel __maybe_unused,
4968ac8f
AK
529 enum rstype rstype __maybe_unused)
530{
531 return 0;
532}
533
534static inline void res_sample_init(void) {}
535
5cb456af
JY
536static inline int block_hists_tui_browse(struct block_hist *bh __maybe_unused,
537 struct evsel *evsel __maybe_unused,
848a5e50
JY
538 float min_percent __maybe_unused,
539 struct perf_env *env __maybe_unused,
540 struct annotation_options *annotation_opts __maybe_unused)
5cb456af
JY
541{
542 return 0;
543}
544
1e825efb
ME
545#define K_LEFT -1000
546#define K_RIGHT -2000
5f7439e0 547#define K_SWITCH_INPUT_DATA -3000
5e3b810a 548#define K_RELOAD -4000
b09e0190 549#endif
06daaaba 550
316c7136 551unsigned int hists__sort_list_width(struct hists *hists);
a7b5895b 552unsigned int hists__overhead_width(struct hists *hists);
33db4568 553
57849998 554void hist__account_cycles(struct branch_stack *bs, struct addr_location *al,
7841f40a
JY
555 struct perf_sample *sample, bool nonany_branch_mode,
556 u64 *total_cycles);
57849998 557
33db4568 558struct option;
b8f8eb84 559int parse_filter_percentage(const struct option *opt, const char *arg, int unset);
0b93da17 560int perf_hist_config(const char *var, const char *value);
33db4568 561
94b3dc38
JO
562void perf_hpp_list__init(struct perf_hpp_list *list);
563
8c01872f
NK
564enum hierarchy_move_dir {
565 HMD_NORMAL,
566 HMD_FORCE_SIBLING,
567 HMD_FORCE_CHILD,
568};
569
570struct rb_node *rb_hierarchy_last(struct rb_node *node);
571struct rb_node *__rb_hierarchy_next(struct rb_node *node,
572 enum hierarchy_move_dir hmd);
573struct rb_node *rb_hierarchy_prev(struct rb_node *node);
574
575static inline struct rb_node *rb_hierarchy_next(struct rb_node *node)
576{
577 return __rb_hierarchy_next(node, HMD_NORMAL);
578}
579
ef86d68a
NK
580#define HIERARCHY_INDENT 3
581
a7b5895b 582bool hist_entry__has_hierarchy_children(struct hist_entry *he, float limit);
98ba1609
JO
583int hpp_color_scnprintf(struct perf_hpp *hpp, const char *fmt, ...);
584int __hpp__slsmg_color_printf(struct perf_hpp *hpp, const char *fmt, ...);
bd28d0c5
JO
585int __hist_entry__snprintf(struct hist_entry *he, struct perf_hpp *hpp,
586 struct perf_hpp_list *hpp_list);
2d831454 587int hists__fprintf_headers(struct hists *hists, FILE *fp);
967a464a
ACM
588int __hists__scnprintf_title(struct hists *hists, char *bf, size_t size, bool show_freq);
589
590static inline int hists__scnprintf_title(struct hists *hists, char *bf, size_t size)
591{
592 return __hists__scnprintf_title(hists, bf, size, true);
593}
a7b5895b 594
3d1d07ec 595#endif /* __PERF_HIST_H */