Linux Perf
hist.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __PERF_HIST_H
3 #define __PERF_HIST_H
4 
5 #include <linux/types.h>
6 #include <pthread.h>
7 #include "callchain.h"
8 #include "evsel.h"
9 #include "header.h"
10 #include "color.h"
11 #include "ui/progress.h"
12 
13 struct hist_entry;
14 struct hist_entry_ops;
15 struct addr_location;
16 struct symbol;
17 
27 };
28 
65  HISTC_NR_COLS, /* Last entry */
66 };
67 
68 struct thread;
69 struct dso;
70 
71 struct hists {
72  struct rb_root entries_in_array[2];
73  struct rb_root *entries_in;
74  struct rb_root entries;
75  struct rb_root entries_collapsed;
81  const struct dso *dso_filter;
82  const char *uid_filter_str;
83  const char *symbol_filter_str;
84  pthread_mutex_t lock;
90  struct list_head hpp_formats;
92 };
93 
94 #define hists__has(__h, __f) (__h)->hpp_list->__f
95 
96 struct hist_entry_iter;
97 
98 struct hist_iter_ops {
99  int (*prepare_entry)(struct hist_entry_iter *, struct addr_location *);
100  int (*add_single_entry)(struct hist_entry_iter *, struct addr_location *);
101  int (*next_entry)(struct hist_entry_iter *, struct addr_location *);
102  int (*add_next_entry)(struct hist_entry_iter *, struct addr_location *);
103  int (*finish_entry)(struct hist_entry_iter *, struct addr_location *);
104 };
105 
107  int total;
108  int curr;
109 
111 
112  struct perf_evsel *evsel;
114  struct hist_entry *he;
115  struct symbol *parent;
116  void *priv;
117 
118  const struct hist_iter_ops *ops;
119  /* user-defined callback function (optional) */
120  int (*add_entry_cb)(struct hist_entry_iter *iter,
121  struct addr_location *al, bool single, void *arg);
122 };
123 
124 extern const struct hist_iter_ops hist_iter_normal;
125 extern const struct hist_iter_ops hist_iter_branch;
126 extern const struct hist_iter_ops hist_iter_mem;
127 extern const struct hist_iter_ops hist_iter_cumulative;
128 
129 struct hist_entry *hists__add_entry(struct hists *hists,
130  struct addr_location *al,
131  struct symbol *parent,
132  struct branch_info *bi,
133  struct mem_info *mi,
134  struct perf_sample *sample,
135  bool sample_self);
136 
138  struct hist_entry_ops *ops,
139  struct addr_location *al,
140  struct symbol *sym_parent,
141  struct branch_info *bi,
142  struct mem_info *mi,
143  struct perf_sample *sample,
144  bool sample_self);
145 
146 int hist_entry_iter__add(struct hist_entry_iter *iter, struct addr_location *al,
147  int max_stack_depth, void *arg);
148 
149 struct perf_hpp;
150 struct perf_hpp_fmt;
151 
152 int64_t hist_entry__cmp(struct hist_entry *left, struct hist_entry *right);
153 int64_t hist_entry__collapse(struct hist_entry *left, struct hist_entry *right);
155 int hist_entry__sort_snprintf(struct hist_entry *he, char *bf, size_t size,
156  struct hists *hists);
157 int hist_entry__snprintf_alignment(struct hist_entry *he, struct perf_hpp *hpp,
158  struct perf_hpp_fmt *fmt, int printed);
159 void hist_entry__delete(struct hist_entry *he);
160 
161 typedef int (*hists__resort_cb_t)(struct hist_entry *he);
162 
163 void perf_evsel__output_resort(struct perf_evsel *evsel, struct ui_progress *prog);
164 void hists__output_resort(struct hists *hists, struct ui_progress *prog);
165 void hists__output_resort_cb(struct hists *hists, struct ui_progress *prog,
166  hists__resort_cb_t cb);
167 int hists__collapse_resort(struct hists *hists, struct ui_progress *prog);
168 
169 void hists__decay_entries(struct hists *hists, bool zap_user, bool zap_kernel);
170 void hists__delete_entries(struct hists *hists);
171 void hists__output_recalc_col_len(struct hists *hists, int max_rows);
172 
173 u64 hists__total_period(struct hists *hists);
174 void hists__reset_stats(struct hists *hists);
175 void hists__inc_stats(struct hists *hists, struct hist_entry *h);
176 void hists__inc_nr_events(struct hists *hists, u32 type);
177 void hists__inc_nr_samples(struct hists *hists, bool filtered);
178 void events_stats__inc(struct events_stats *stats, u32 type);
179 size_t events_stats__fprintf(struct events_stats *stats, FILE *fp);
180 
181 size_t hists__fprintf(struct hists *hists, bool show_header, int max_rows,
182  int max_cols, float min_pcnt, FILE *fp,
183  bool use_callchain);
184 size_t perf_evlist__fprintf_nr_events(struct perf_evlist *evlist, FILE *fp);
185 
186 void hists__filter_by_dso(struct hists *hists);
187 void hists__filter_by_thread(struct hists *hists);
188 void hists__filter_by_symbol(struct hists *hists);
189 void hists__filter_by_socket(struct hists *hists);
190 
191 static inline bool hists__has_filter(struct hists *hists)
192 {
193  return hists->thread_filter || hists->dso_filter ||
194  hists->symbol_filter_str || (hists->socket_filter > -1);
195 }
196 
197 u16 hists__col_len(struct hists *hists, enum hist_column col);
198 void hists__set_col_len(struct hists *hists, enum hist_column col, u16 len);
199 bool hists__new_col_len(struct hists *hists, enum hist_column col, u16 len);
200 void hists__reset_col_len(struct hists *hists);
201 void hists__calc_col_len(struct hists *hists, struct hist_entry *he);
202 
203 void hists__match(struct hists *leader, struct hists *other);
204 int hists__link(struct hists *leader, struct hists *other);
205 
206 struct hists_evsel {
207  struct perf_evsel evsel;
208  struct hists hists;
209 };
210 
211 static inline struct perf_evsel *hists_to_evsel(struct hists *hists)
212 {
213  struct hists_evsel *hevsel = container_of(hists, struct hists_evsel, hists);
214  return &hevsel->evsel;
215 }
216 
217 static inline struct hists *evsel__hists(struct perf_evsel *evsel)
218 {
219  struct hists_evsel *hevsel = (struct hists_evsel *)evsel;
220  return &hevsel->hists;
221 }
222 
223 static __pure inline bool hists__has_callchains(struct hists *hists)
224 {
225  const struct perf_evsel *evsel = hists_to_evsel(hists);
226  return evsel__has_callchain(evsel);
227 }
228 
229 int hists__init(void);
230 int __hists__init(struct hists *hists, struct perf_hpp_list *hpp_list);
231 
232 struct rb_root *hists__get_rotate_entries_in(struct hists *hists);
233 
234 struct perf_hpp {
235  char *buf;
236  size_t size;
237  const char *sep;
238  void *ptr;
239 };
240 
241 struct perf_hpp_fmt {
242  const char *name;
243  int (*header)(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
244  struct hists *hists, int line, int *span);
245  int (*width)(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
246  struct hists *hists);
247  int (*color)(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
248  struct hist_entry *he);
249  int (*entry)(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
250  struct hist_entry *he);
251  int64_t (*cmp)(struct perf_hpp_fmt *fmt,
252  struct hist_entry *a, struct hist_entry *b);
253  int64_t (*collapse)(struct perf_hpp_fmt *fmt,
254  struct hist_entry *a, struct hist_entry *b);
255  int64_t (*sort)(struct perf_hpp_fmt *fmt,
256  struct hist_entry *a, struct hist_entry *b);
257  bool (*equal)(struct perf_hpp_fmt *a, struct perf_hpp_fmt *b);
258  void (*free)(struct perf_hpp_fmt *fmt);
259 
260  struct list_head list;
261  struct list_head sort_list;
262  bool elide;
263  int len;
264  int user_len;
265  int idx;
266  int level;
267 };
268 
270  struct list_head fields;
271  struct list_head sorts;
272 
275  int parent;
276  int sym;
277  int dso;
278  int socket;
279  int thread;
280  int comm;
281 };
282 
283 extern struct perf_hpp_list perf_hpp_list;
284 
286  struct list_head list;
287  struct perf_hpp_list hpp;
288  int level;
289  bool skip;
290 };
291 
293  struct perf_hpp_fmt *format);
295  struct perf_hpp_fmt *format);
297  struct perf_hpp_fmt *format);
298 
299 static inline void perf_hpp__column_register(struct perf_hpp_fmt *format)
300 {
302 }
303 
304 static inline void perf_hpp__register_sort_field(struct perf_hpp_fmt *format)
305 {
307 }
308 
309 static inline void perf_hpp__prepend_sort_field(struct perf_hpp_fmt *format)
310 {
312 }
313 
314 #define perf_hpp_list__for_each_format(_list, format) \
315  list_for_each_entry(format, &(_list)->fields, list)
316 
317 #define perf_hpp_list__for_each_format_safe(_list, format, tmp) \
318  list_for_each_entry_safe(format, tmp, &(_list)->fields, list)
319 
320 #define perf_hpp_list__for_each_sort_list(_list, format) \
321  list_for_each_entry(format, &(_list)->sorts, sort_list)
322 
323 #define perf_hpp_list__for_each_sort_list_safe(_list, format, tmp) \
324  list_for_each_entry_safe(format, tmp, &(_list)->sorts, sort_list)
325 
326 #define hists__for_each_format(hists, format) \
327  perf_hpp_list__for_each_format((hists)->hpp_list, fmt)
328 
329 #define hists__for_each_sort_list(hists, format) \
330  perf_hpp_list__for_each_sort_list((hists)->hpp_list, fmt)
331 
332 extern struct perf_hpp_fmt perf_hpp__format[];
333 
334 enum {
335  /* Matches perf_hpp__format array. */
344 
346 };
347 
348 void perf_hpp__init(void);
349 void perf_hpp__column_unregister(struct perf_hpp_fmt *format);
350 void perf_hpp__cancel_cumulate(void);
355  struct perf_evlist *evlist);
356 
357 
358 bool perf_hpp__is_sort_entry(struct perf_hpp_fmt *format);
359 bool perf_hpp__is_dynamic_entry(struct perf_hpp_fmt *format);
360 bool perf_hpp__defined_dynamic_entry(struct perf_hpp_fmt *fmt, struct hists *hists);
368 
370 
371 int hist_entry__filter(struct hist_entry *he, int type, const void *arg);
372 
373 static inline bool perf_hpp__should_skip(struct perf_hpp_fmt *format,
374  struct hists *hists)
375 {
376  if (format->elide)
377  return true;
378 
379  if (perf_hpp__is_dynamic_entry(format) &&
380  !perf_hpp__defined_dynamic_entry(format, hists))
381  return true;
382 
383  return false;
384 }
385 
386 void perf_hpp__reset_width(struct perf_hpp_fmt *fmt, struct hists *hists);
387 void perf_hpp__reset_sort_width(struct perf_hpp_fmt *fmt, struct hists *hists);
388 void perf_hpp__set_user_width(const char *width_list_str);
389 void hists__reset_column_width(struct hists *hists);
390 
391 typedef u64 (*hpp_field_fn)(struct hist_entry *he);
392 typedef int (*hpp_callback_fn)(struct perf_hpp *hpp, bool front);
393 typedef int (*hpp_snprint_fn)(struct perf_hpp *hpp, const char *fmt, ...);
394 
395 int hpp__fmt(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
396  struct hist_entry *he, hpp_field_fn get_field,
397  const char *fmtstr, hpp_snprint_fn print_fn, bool fmt_percent);
398 int hpp__fmt_acc(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
399  struct hist_entry *he, hpp_field_fn get_field,
400  const char *fmtstr, hpp_snprint_fn print_fn, bool fmt_percent);
401 
402 static inline void advance_hpp(struct perf_hpp *hpp, int inc)
403 {
404  hpp->buf += inc;
405  hpp->size -= inc;
406 }
407 
408 static inline size_t perf_hpp__use_color(void)
409 {
410  return !symbol_conf.field_sep;
411 }
412 
413 static inline size_t perf_hpp__color_overhead(void)
414 {
415  return perf_hpp__use_color() ?
417  : 0;
418 }
419 
420 struct perf_evlist;
421 
423  void (*timer)(void *arg);
424  void *arg;
425  int refresh;
426 };
427 
428 struct annotation_options;
429 
430 #ifdef HAVE_SLANG_SUPPORT
431 #include "../ui/keysyms.h"
432 int map_symbol__tui_annotate(struct map_symbol *ms, struct perf_evsel *evsel,
433  struct hist_browser_timer *hbt,
434  struct annotation_options *annotation_opts);
435 
436 int hist_entry__tui_annotate(struct hist_entry *he, struct perf_evsel *evsel,
437  struct hist_browser_timer *hbt,
438  struct annotation_options *annotation_opts);
439 
440 int perf_evlist__tui_browse_hists(struct perf_evlist *evlist, const char *help,
441  struct hist_browser_timer *hbt,
442  float min_pcnt,
443  struct perf_env *env,
444  bool warn_lost_event,
446 int script_browse(const char *script_opt);
447 #else
448 static inline
449 int perf_evlist__tui_browse_hists(struct perf_evlist *evlist __maybe_unused,
450  const char *help __maybe_unused,
451  struct hist_browser_timer *hbt __maybe_unused,
452  float min_pcnt __maybe_unused,
453  struct perf_env *env __maybe_unused,
454  bool warn_lost_event __maybe_unused,
455  struct annotation_options *annotation_options __maybe_unused)
456 {
457  return 0;
458 }
459 static inline int map_symbol__tui_annotate(struct map_symbol *ms __maybe_unused,
460  struct perf_evsel *evsel __maybe_unused,
461  struct hist_browser_timer *hbt __maybe_unused,
462  struct annotation_options *annotation_options __maybe_unused)
463 {
464  return 0;
465 }
466 
467 static inline int hist_entry__tui_annotate(struct hist_entry *he __maybe_unused,
468  struct perf_evsel *evsel __maybe_unused,
469  struct hist_browser_timer *hbt __maybe_unused,
470  struct annotation_options *annotation_opts __maybe_unused)
471 {
472  return 0;
473 }
474 
475 static inline int script_browse(const char *script_opt __maybe_unused)
476 {
477  return 0;
478 }
479 
480 #define K_LEFT -1000
481 #define K_RIGHT -2000
482 #define K_SWITCH_INPUT_DATA -3000
483 #endif
484 
485 unsigned int hists__sort_list_width(struct hists *hists);
486 unsigned int hists__overhead_width(struct hists *hists);
487 
488 void hist__account_cycles(struct branch_stack *bs, struct addr_location *al,
489  struct perf_sample *sample, bool nonany_branch_mode);
490 
491 struct option;
492 int parse_filter_percentage(const struct option *opt, const char *arg, int unset);
493 int perf_hist_config(const char *var, const char *value);
494 
495 void perf_hpp_list__init(struct perf_hpp_list *list);
496 
501 };
502 
503 struct rb_node *rb_hierarchy_last(struct rb_node *node);
504 struct rb_node *__rb_hierarchy_next(struct rb_node *node,
505  enum hierarchy_move_dir hmd);
506 struct rb_node *rb_hierarchy_prev(struct rb_node *node);
507 
508 static inline struct rb_node *rb_hierarchy_next(struct rb_node *node)
509 {
510  return __rb_hierarchy_next(node, HMD_NORMAL);
511 }
512 
513 #define HIERARCHY_INDENT 3
514 
515 bool hist_entry__has_hierarchy_children(struct hist_entry *he, float limit);
516 int hpp_color_scnprintf(struct perf_hpp *hpp, const char *fmt, ...);
517 int __hpp__slsmg_color_printf(struct perf_hpp *hpp, const char *fmt, ...);
518 int __hist_entry__snprintf(struct hist_entry *he, struct perf_hpp *hpp,
519  struct perf_hpp_list *hpp_list);
520 int hists__fprintf_headers(struct hists *hists, FILE *fp);
521 int __hists__scnprintf_title(struct hists *hists, char *bf, size_t size, bool show_freq);
522 
523 static inline int hists__scnprintf_title(struct hists *hists, char *bf, size_t size)
524 {
525  return __hists__scnprintf_title(hists, bf, size, true);
526 }
527 
528 #endif /* __PERF_HIST_H */
struct rb_root * entries_in
Definition: hist.h:73
struct perf_evsel evsel
Definition: hist.h:207
void perf_hpp_list__prepend_sort_field(struct perf_hpp_list *list, struct perf_hpp_fmt *format)
Definition: hist.c:528
struct perf_sample * sample
Definition: hist.h:113
Definition: mem2node.c:7
int value
Definition: python.c:1143
bool perf_hpp__is_dynamic_entry(struct perf_hpp_fmt *format)
Definition: sort.c:2092
void perf_hpp__reset_output_field(struct perf_hpp_list *list)
Definition: hist.c:621
Definition: env.h:36
const char * name
Definition: hist.h:242
u64(* hpp_field_fn)(struct hist_entry *he)
Definition: hist.h:391
int __hists__init(struct hists *hists, struct perf_hpp_list *hpp_list)
Definition: hist.c:2562
int __hpp__slsmg_color_printf(struct perf_hpp *hpp, const char *fmt,...)
Definition: hists.c:1141
void hists__filter_by_dso(struct hists *hists)
Definition: hist.c:2088
int hpp__fmt_acc(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp, struct hist_entry *he, hpp_field_fn get_field, const char *fmtstr, hpp_snprint_fn print_fn, bool fmt_percent)
Definition: hist.c:129
struct rb_node * rb_hierarchy_prev(struct rb_node *node)
Definition: hist.c:1822
size_t size
Definition: evsel.c:60
bool elide
Definition: hist.h:262
void hists__filter_by_socket(struct hists *hists)
Definition: hist.c:2108
int hpp__fmt(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp, struct hist_entry *he, hpp_field_fn get_field, const char *fmtstr, hpp_snprint_fn print_fn, bool fmt_percent)
Definition: hist.c:110
static bool perf_hpp__should_skip(struct perf_hpp_fmt *format, struct hists *hists)
Definition: hist.h:373
int total
Definition: hist.h:107
u64 callchain_non_filtered_period
Definition: hist.h:79
const struct hist_iter_ops hist_iter_cumulative
Definition: hist.c:1028
u64 callchain_period
Definition: hist.h:78
void perf_hpp__init(void)
Definition: hist.c:472
struct rb_node * rb_hierarchy_last(struct rb_node *node)
Definition: hist.c:1792
void perf_hpp__reset_sort_width(struct perf_hpp_fmt *fmt, struct hists *hists)
Definition: sort.c:1640
Definition: hist.h:106
void hists__calc_col_len(struct hists *hists, struct hist_entry *he)
Definition: hist.c:67
int hist_entry__transaction_len(void)
Definition: sort.c:1428
int64_t hist_entry__cmp(struct hist_entry *left, struct hist_entry *right)
Definition: hist.c:1087
void hists__reset_column_width(struct hists *hists)
Definition: hist.c:723
const char * sep
Definition: hist.h:237
const struct hist_iter_ops hist_iter_mem
Definition: hist.c:1004
void hist__account_cycles(struct branch_stack *bs, struct addr_location *al, struct perf_sample *sample, bool nonany_branch_mode)
Definition: hist.c:2406
int hists__fprintf_headers(struct hists *hists, FILE *fp)
Definition: hist.c:739
u64 nr_non_filtered_entries
Definition: hist.h:77
int idx
Definition: hist.h:265
Definition: hist.h:234
struct hist_entry_ops * ops
Definition: sort.h:142
int socket
Definition: hist.h:278
Definition: hist.h:31
pthread_mutex_t lock
Definition: hist.h:84
const char * uid_filter_str
Definition: hist.h:82
bool perf_hpp__is_sort_entry(struct perf_hpp_fmt *format)
Definition: sort.c:1726
static struct hists * evsel__hists(struct perf_evsel *evsel)
Definition: hist.h:217
struct rb_root * hists__get_rotate_entries_in(struct hists *hists)
Definition: hist.c:1441
int thread
Definition: hist.h:279
static bool hists__has_filter(struct hists *hists)
Definition: hist.h:191
hist_filter
Definition: hist.h:18
static void perf_hpp__column_register(struct perf_hpp_fmt *format)
Definition: hist.h:299
bool hist_entry__has_hierarchy_children(struct hist_entry *he, float limit)
Definition: hist.c:1837
Definition: sort.h:78
unsigned int hists__sort_list_width(struct hists *hists)
Definition: hist.c:643
void hists__inc_stats(struct hists *hists, struct hist_entry *h)
Definition: hist.c:1543
struct hist_entry * hists__add_entry(struct hists *hists, struct addr_location *al, struct symbol *parent, struct branch_info *bi, struct mem_info *mi, struct perf_sample *sample, bool sample_self)
Definition: hist.c:627
struct hist_entry * he
Definition: hist.h:114
struct list_head hpp_formats
Definition: hist.h:90
int hist_entry__snprintf_alignment(struct hist_entry *he, struct perf_hpp *hpp, struct perf_hpp_fmt *fmt, int printed)
Definition: hist.c:1164
void hists__reset_stats(struct hists *hists)
Definition: hist.c:1529
size_t perf_evlist__fprintf_nr_events(struct perf_evlist *evlist, FILE *fp)
Definition: hist.c:2440
Definition: sort.h:89
struct hists hists
Definition: hist.h:208
int dso
Definition: hist.h:277
const struct hist_iter_ops hist_iter_normal
Definition: hist.c:1020
int comm
Definition: hist.h:280
int nr_header_lines
Definition: hist.h:273
int __hists__scnprintf_title(struct hists *hists, char *bf, size_t size, bool show_freq)
Definition: hist.c:2460
void perf_hpp__append_sort_keys(struct perf_hpp_list *list)
Definition: hist.c:588
void * arg
Definition: hist.h:424
void perf_hpp__cancel_cumulate(void)
Definition: hist.c:539
static void perf_hpp__register_sort_field(struct perf_hpp_fmt *format)
Definition: hist.h:304
int hist_entry__filter(struct hist_entry *he, int type, const void *arg)
Definition: sort.c:1829
int(* hpp_callback_fn)(struct perf_hpp *hpp, bool front)
Definition: hist.h:392
int hist_entry__sort_snprintf(struct hist_entry *he, char *bf, size_t size, struct hists *hists)
u16 hists__col_len(struct hists *hists, enum hist_column col)
Definition: hist.c:30
Definition: thread.h:18
void hists__reset_col_len(struct hists *hists)
Definition: hist.c:49
struct perf_hpp_fmt * perf_hpp_fmt__dup(struct perf_hpp_fmt *fmt)
Definition: sort.c:2157
static struct perf_evsel * hists_to_evsel(struct hists *hists)
Definition: hist.h:211
int user_len
Definition: hist.h:264
int len
Definition: hist.h:263
void perf_hpp_list__column_register(struct perf_hpp_list *list, struct perf_hpp_fmt *format)
Definition: hist.c:516
const char * fmt
Definition: dso.c:193
#define COLOR_MAXLEN
Definition: color.h:8
bool perf_hpp__is_srcline_entry(struct perf_hpp_fmt *fmt)
u64 nr_entries
Definition: hist.h:76
char * buf
Definition: hist.h:235
const struct hist_iter_ops hist_iter_branch
Definition: hist.c:1012
char * prog
Definition: jevents.c:54
size_t events_stats__fprintf(struct events_stats *stats, FILE *fp)
Definition: hist.c:834
void perf_hpp__column_unregister(struct perf_hpp_fmt *format)
Definition: hist.c:534
static int entry(u64 ip, struct unwind_info *ui)
Definition: unwind-libdw.c:71
bool hide_unresolved
Definition: hist.h:110
struct rb_root entries_in_array[2]
Definition: hist.h:72
int(* hists__resort_cb_t)(struct hist_entry *he)
Definition: hist.h:161
unsigned int hists__overhead_width(struct hists *hists)
Definition: hist.c:668
bool perf_hpp__is_sym_entry(struct perf_hpp_fmt *fmt)
int sym
Definition: hist.h:276
static void perf_hpp__prepend_sort_field(struct perf_hpp_fmt *format)
Definition: hist.h:309
size_t size
Definition: hist.h:236
bool perf_hpp__is_thread_entry(struct perf_hpp_fmt *fmt)
int hists__init(void)
Definition: hist.c:2629
void hists__match(struct hists *leader, struct hists *other)
Definition: hist.c:2299
void * priv
Definition: hist.h:116
int need_collapse
Definition: hist.h:274
Definition: dso.h:138
const struct dso * dso_filter
Definition: hist.h:81
int parent
Definition: hist.h:275
const char * symbol_filter_str
Definition: hist.h:83
void hists__inc_nr_events(struct hists *hists, u32 type)
Definition: hist.c:2124
static int script_browse(const char *script_opt __maybe_unused)
Definition: hist.h:475
static int hist_entry__tui_annotate(struct hist_entry *he __maybe_unused, struct perf_evsel *evsel __maybe_unused, struct hist_browser_timer *hbt __maybe_unused, struct annotation_options *annotation_opts __maybe_unused)
Definition: hist.h:467
const char * field_sep
Definition: symbol.h:123
bool perf_hpp__is_comm_entry(struct perf_hpp_fmt *fmt)
int __hist_entry__snprintf(struct hist_entry *he, struct perf_hpp *hpp, struct perf_hpp_list *hpp_list)
Definition: hist.c:406
int(* hpp_snprint_fn)(struct perf_hpp *hpp, const char *fmt,...)
Definition: hist.h:393
void hists__output_recalc_col_len(struct hists *hists, int max_rows)
Definition: hist.c:210
void perf_hpp_list__init(struct perf_hpp_list *list)
Definition: hist.c:2640
bool perf_hpp__is_trace_entry(struct perf_hpp_fmt *fmt)
void perf_hpp__setup_output_field(struct perf_hpp_list *list)
Definition: hist.c:565
void hists__filter_by_thread(struct hists *hists)
Definition: hist.c:2078
u64 hists__total_period(struct hists *hists)
Definition: hist.c:2454
struct thread * thread_filter
Definition: hist.h:80
struct perf_hpp_fmt perf_hpp__format[]
Definition: hist.c:435
u64 fields
void perf_hpp__reset_width(struct perf_hpp_fmt *fmt, struct hists *hists)
Definition: hist.c:690
static int hists__scnprintf_title(struct hists *hists, char *bf, size_t size)
Definition: hist.h:523
static int perf_evlist__tui_browse_hists(struct perf_evlist *evlist __maybe_unused, const char *help __maybe_unused, struct hist_browser_timer *hbt __maybe_unused, float min_pcnt __maybe_unused, struct perf_env *env __maybe_unused, bool warn_lost_event __maybe_unused, struct annotation_options *annotation_options __maybe_unused)
Definition: hist.h:449
#define PERF_COLOR_RESET
Definition: color.h:11
void hists__output_resort_cb(struct hists *hists, struct ui_progress *prog, hists__resort_cb_t cb)
Definition: hist.c:1775
hist_column
Definition: hist.h:29
int64_t hist_entry__collapse(struct hist_entry *left, struct hist_entry *right)
Definition: hist.c:1107
void hists__set_col_len(struct hists *hists, enum hist_column col, u16 len)
Definition: hist.c:35
int hist_entry_iter__add(struct hist_entry_iter *iter, struct addr_location *al, int max_stack_depth, void *arg)
Definition: hist.c:1036
bool perf_hpp__defined_dynamic_entry(struct perf_hpp_fmt *fmt, struct hists *hists)
Definition: sort.c:1988
static size_t perf_hpp__color_overhead(void)
Definition: hist.h:413
void perf_evsel__output_resort(struct perf_evsel *evsel, struct ui_progress *prog)
Definition: hist.c:1756
void hists__inc_nr_samples(struct hists *hists, bool filtered)
Definition: hist.c:2129
bool hists__new_col_len(struct hists *hists, enum hist_column col, u16 len)
Definition: hist.c:40
struct symbol * parent
Definition: hist.h:115
void perf_hpp__set_user_width(const char *width_list_str)
Definition: hist.c:738
u64 event_stream
Definition: hist.h:86
int socket_filter
Definition: hist.h:88
u16 col_len[HISTC_NR_COLS]
Definition: hist.h:87
struct list_head list
Definition: hist.h:260
Definition: stat.h:10
u8 filtered
Definition: sort.h:114
hierarchy_move_dir
Definition: hist.h:497
static void advance_hpp(struct perf_hpp *hpp, int inc)
Definition: hist.h:402
struct perf_evsel * evsel
Definition: hist.h:112
static __pure bool hists__has_callchains(struct hists *hists)
Definition: hist.h:223
size_t hists__fprintf(struct hists *hists, bool show_header, int max_rows, int max_cols, float min_pcnt, FILE *fp, bool use_callchain)
Definition: hist.c:756
int perf_hist_config(const char *var, const char *value)
Definition: hist.c:2554
struct perf_hpp_list * hpp_list
Definition: hist.h:89
void free(void *)
void * ptr
Definition: hist.h:238
struct symbol * parent
Definition: sort.h:133
static size_t perf_hpp__use_color(void)
Definition: hist.h:408
int hists__link(struct hists *leader, struct hists *other)
Definition: hist.c:2374
void hists__decay_entries(struct hists *hists, bool zap_user, bool zap_kernel)
Definition: hist.c:338
void events_stats__inc(struct events_stats *stats, u32 type)
Definition: hist.c:2118
void hist_entry__delete(struct hist_entry *he)
Definition: hist.c:1126
struct rb_root entries
Definition: hist.h:74
int parse_filter_percentage(const struct option *opt, const char *arg, int unset)
static int map_symbol__tui_annotate(struct map_symbol *ms __maybe_unused, struct perf_evsel *evsel __maybe_unused, struct hist_browser_timer *hbt __maybe_unused, struct annotation_options *annotation_options __maybe_unused)
Definition: hist.h:459
bool perf_hpp__is_srcfile_entry(struct perf_hpp_fmt *fmt)
Definition: symbol.h:55
const struct hist_iter_ops * ops
Definition: hist.h:118
static struct rb_node * rb_hierarchy_next(struct rb_node *node)
Definition: hist.h:508
int nr_hpp_node
Definition: hist.h:91
struct hist_entry * hists__add_entry_ops(struct hists *hists, struct hist_entry_ops *ops, struct addr_location *al, struct symbol *sym_parent, struct branch_info *bi, struct mem_info *mi, struct perf_sample *sample, bool sample_self)
Definition: hist.c:639
Definition: hist.h:71
struct rb_root entries_collapsed
Definition: hist.h:75
static bool evsel__has_callchain(const struct perf_evsel *evsel)
Definition: evsel.h:462
int perf_hpp__setup_hists_formats(struct perf_hpp_list *list, struct perf_evlist *evlist)
Definition: hist.c:796
int level
Definition: hist.h:266
void hists__filter_by_symbol(struct hists *hists)
Definition: hist.c:2098
struct rb_node * __rb_hierarchy_next(struct rb_node *node, enum hierarchy_move_dir hmd)
Definition: hist.c:1803
bool perf_hpp__is_dso_entry(struct perf_hpp_fmt *fmt)
int hists__collapse_resort(struct hists *hists, struct ui_progress *prog)
Definition: hist.c:1464
void hists__output_resort(struct hists *hists, struct ui_progress *prog)
Definition: hist.c:1770
Definition: hist.h:36
int curr
Definition: hist.h:108
void hists__delete_entries(struct hists *hists)
Definition: hist.c:354
int hpp_color_scnprintf(struct perf_hpp *hpp, const char *fmt,...)
Definition: hist.c:244
void perf_hpp_list__register_sort_field(struct perf_hpp_list *list, struct perf_hpp_fmt *format)
Definition: hist.c:522