Lines Matching full:struct
17 struct addr_location;
18 struct mem_info;
19 struct kvm_info;
20 struct branch_info;
21 struct branch_stack;
22 struct block_info;
23 struct ui_progress;
93 struct thread;
94 struct dso;
96 struct hists {
97 struct rb_root_cached entries_in_array[2];
98 struct rb_root_cached *entries_in;
99 struct rb_root_cached entries;
100 struct rb_root_cached entries_collapsed;
105 struct thread *thread_filter;
106 const struct dso *dso_filter;
109 struct mutex lock;
110 struct hists_stats stats;
115 struct perf_hpp_list *hpp_list;
116 struct list_head hpp_formats;
122 struct hist_entry_iter;
124 struct hist_iter_ops {
125 int (*prepare_entry)(struct hist_entry_iter *, struct addr_location *);
126 int (*add_single_entry)(struct hist_entry_iter *, struct addr_location *);
127 int (*next_entry)(struct hist_entry_iter *, struct addr_location *);
128 int (*add_next_entry)(struct hist_entry_iter *, struct addr_location *);
129 int (*finish_entry)(struct hist_entry_iter *, struct addr_location *);
132 struct hist_entry_iter {
136 struct evsel *evsel;
137 struct perf_sample *sample;
138 struct hist_entry *he;
139 struct symbol *parent;
141 struct mem_info *mi;
142 struct branch_info *bi;
143 struct hist_entry **he_cache;
145 const struct hist_iter_ops *ops;
147 int (*add_entry_cb)(struct hist_entry_iter *iter,
148 struct addr_location *al, bool single, void *arg);
152 extern const struct hist_iter_ops hist_iter_normal;
153 extern const struct hist_iter_ops hist_iter_branch;
154 extern const struct hist_iter_ops hist_iter_mem;
155 extern const struct hist_iter_ops hist_iter_cumulative;
157 struct res_sample {
163 struct he_stat {
175 struct namespace_id {
180 struct hist_entry_diff {
195 struct stats stats;
199 struct hist_entry_ops {
205 * struct hist_entry - histogram entry
210 struct hist_entry {
211 struct rb_node rb_node_in;
212 struct rb_node rb_node;
214 struct list_head node;
215 struct list_head head;
217 struct he_stat stat;
218 struct he_stat *stat_acc;
219 struct map_symbol ms;
220 struct thread *thread;
221 struct comm *comm;
222 struct namespace_id cgroup_id;
235 struct simd_flags simd_flags;
251 struct hist_entry_diff diff;
252 struct /* for TUI */ {
263 struct symbol *parent;
264 struct branch_info *branch_info;
266 struct hists *hists;
267 struct mem_info *mem_info;
268 struct block_info *block_info;
269 struct kvm_info *kvm_info;
273 struct res_sample *res_samples;
275 struct perf_hpp_list *hpp_list;
276 struct hist_entry *parent_he;
277 struct hist_entry_ops *ops;
278 struct annotated_data_type *mem_type;
281 struct {
282 struct rb_root_cached hroot_in;
283 struct rb_root_cached hroot_out;
285 struct rb_root sorted_chain; /* leaf entry has callchains */
287 struct callchain_root callchain[0]; /* must be last member */
290 static __pure inline bool hist_entry__has_callchains(struct hist_entry *he) in hist_entry__has_callchains()
295 static inline bool hist_entry__has_pairs(struct hist_entry *he) in hist_entry__has_pairs()
300 static inline struct hist_entry *hist_entry__next_pair(struct hist_entry *he) in hist_entry__next_pair()
303 return list_entry(he->pairs.node.next, struct hist_entry, pairs.node); in hist_entry__next_pair()
307 static inline void hist_entry__add_pair(struct hist_entry *pair, in hist_entry__add_pair()
308 struct hist_entry *he) in hist_entry__add_pair()
313 struct hist_entry *hists__add_entry(struct hists *hists,
314 struct addr_location *al,
315 struct symbol *parent,
316 struct branch_info *bi,
317 struct mem_info *mi,
318 struct kvm_info *ki,
319 struct perf_sample *sample,
322 struct hist_entry *hists__add_entry_ops(struct hists *hists,
323 struct hist_entry_ops *ops,
324 struct addr_location *al,
325 struct symbol *sym_parent,
326 struct branch_info *bi,
327 struct mem_info *mi,
328 struct kvm_info *ki,
329 struct perf_sample *sample,
332 struct hist_entry *hists__add_entry_block(struct hists *hists,
333 struct addr_location *al,
334 struct block_info *bi);
336 int hist_entry_iter__add(struct hist_entry_iter *iter, struct addr_location *al,
339 struct perf_hpp;
340 struct perf_hpp_fmt;
342 int64_t hist_entry__cmp(struct hist_entry *left, struct hist_entry *right);
343 int64_t hist_entry__collapse(struct hist_entry *left, struct hist_entry *right);
345 int hist_entry__sort_snprintf(struct hist_entry *he, char *bf, size_t size,
346 struct hists *hists);
347 int hist_entry__snprintf_alignment(struct hist_entry *he, struct perf_hpp *hpp,
348 struct perf_hpp_fmt *fmt, int printed);
349 int hist_entry__sym_snprintf(struct hist_entry *he, char *bf, size_t size,
351 void hist_entry__delete(struct hist_entry *he);
353 typedef int (*hists__resort_cb_t)(struct hist_entry *he, void *arg);
355 void evsel__output_resort_cb(struct evsel *evsel, struct ui_progress *prog,
357 void evsel__output_resort(struct evsel *evsel, struct ui_progress *prog);
358 void hists__output_resort(struct hists *hists, struct ui_progress *prog);
359 void hists__output_resort_cb(struct hists *hists, struct ui_progress *prog,
361 int hists__collapse_resort(struct hists *hists, struct ui_progress *prog);
363 void hists__decay_entries(struct hists *hists, bool zap_user, bool zap_kernel);
364 void hists__delete_entries(struct hists *hists);
365 void hists__output_recalc_col_len(struct hists *hists, int max_rows);
367 struct hist_entry *hists__get_entry(struct hists *hists, int idx);
369 u64 hists__total_period(struct hists *hists);
370 void hists__reset_stats(struct hists *hists);
371 void hists__inc_stats(struct hists *hists, struct hist_entry *h);
372 void hists__inc_nr_events(struct hists *hists);
373 void hists__inc_nr_samples(struct hists *hists, bool filtered);
374 void hists__inc_nr_lost_samples(struct hists *hists, u32 lost);
375 void hists__inc_nr_dropped_samples(struct hists *hists, u32 lost);
377 size_t hists__fprintf(struct hists *hists, bool show_header, int max_rows,
380 size_t evlist__fprintf_nr_events(struct evlist *evlist, FILE *fp);
382 void hists__filter_by_dso(struct hists *hists);
383 void hists__filter_by_thread(struct hists *hists);
384 void hists__filter_by_symbol(struct hists *hists);
385 void hists__filter_by_socket(struct hists *hists);
387 static inline bool hists__has_filter(struct hists *hists) in hists__has_filter()
393 u16 hists__col_len(struct hists *hists, enum hist_column col);
394 void hists__set_col_len(struct hists *hists, enum hist_column col, u16 len);
395 bool hists__new_col_len(struct hists *hists, enum hist_column col, u16 len);
396 void hists__reset_col_len(struct hists *hists);
397 void hists__calc_col_len(struct hists *hists, struct hist_entry *he);
399 void hists__match(struct hists *leader, struct hists *other);
400 int hists__link(struct hists *leader, struct hists *other);
401 int hists__unlink(struct hists *hists);
403 static inline float hist_entry__get_percent_limit(struct hist_entry *he) in hist_entry__get_percent_limit()
417 struct hists_evsel {
418 struct evsel evsel;
419 struct hists hists;
422 static inline struct evsel *hists_to_evsel(struct hists *hists) in hists_to_evsel()
424 struct hists_evsel *hevsel = container_of(hists, struct hists_evsel, hists); in hists_to_evsel()
428 static inline struct hists *evsel__hists(struct evsel *evsel) in evsel__hists()
430 struct hists_evsel *hevsel = (struct hists_evsel *)evsel; in evsel__hists()
434 static __pure inline bool hists__has_callchains(struct hists *hists) in hists__has_callchains()
440 int __hists__init(struct hists *hists, struct perf_hpp_list *hpp_list);
442 struct rb_root_cached *hists__get_rotate_entries_in(struct hists *hists);
444 struct perf_hpp {
452 struct perf_hpp_fmt {
454 int (*header)(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
455 struct hists *hists, int line, int *span);
456 int (*width)(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
457 struct hists *hists);
458 void (*init)(struct perf_hpp_fmt *fmt, struct hist_entry *he);
459 int (*color)(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
460 struct hist_entry *he);
461 int (*entry)(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
462 struct hist_entry *he);
463 int64_t (*cmp)(struct perf_hpp_fmt *fmt,
464 struct hist_entry *a, struct hist_entry *b);
465 int64_t (*collapse)(struct perf_hpp_fmt *fmt,
466 struct hist_entry *a, struct hist_entry *b);
467 int64_t (*sort)(struct perf_hpp_fmt *fmt,
468 struct hist_entry *a, struct hist_entry *b);
469 bool (*equal)(struct perf_hpp_fmt *a, struct perf_hpp_fmt *b);
470 void (*free)(struct perf_hpp_fmt *fmt);
472 struct list_head list;
473 struct list_head sort_list;
481 struct perf_hpp_list {
482 struct list_head fields;
483 struct list_head sorts;
495 extern struct perf_hpp_list perf_hpp_list;
497 struct perf_hpp_list_node {
498 struct list_head list;
499 struct perf_hpp_list hpp;
504 void perf_hpp_list__column_register(struct perf_hpp_list *list,
505 struct perf_hpp_fmt *format);
506 void perf_hpp_list__register_sort_field(struct perf_hpp_list *list,
507 struct perf_hpp_fmt *format);
508 void perf_hpp_list__prepend_sort_field(struct perf_hpp_list *list,
509 struct perf_hpp_fmt *format);
511 static inline void perf_hpp__column_register(struct perf_hpp_fmt *format) in perf_hpp__column_register()
516 static inline void perf_hpp__register_sort_field(struct perf_hpp_fmt *format) in perf_hpp__register_sort_field()
521 static inline void perf_hpp__prepend_sort_field(struct perf_hpp_fmt *format) in perf_hpp__prepend_sort_field()
544 extern struct perf_hpp_fmt perf_hpp__format[];
565 void perf_hpp__setup_output_field(struct perf_hpp_list *list);
566 void perf_hpp__reset_output_field(struct perf_hpp_list *list);
567 void perf_hpp__append_sort_keys(struct perf_hpp_list *list);
568 int perf_hpp__setup_hists_formats(struct perf_hpp_list *list,
569 struct evlist *evlist);
572 bool perf_hpp__is_sort_entry(struct perf_hpp_fmt *format);
573 bool perf_hpp__is_dynamic_entry(struct perf_hpp_fmt *format);
574 bool perf_hpp__defined_dynamic_entry(struct perf_hpp_fmt *fmt, struct hists *hists);
575 bool perf_hpp__is_trace_entry(struct perf_hpp_fmt *fmt);
576 bool perf_hpp__is_srcline_entry(struct perf_hpp_fmt *fmt);
577 bool perf_hpp__is_srcfile_entry(struct perf_hpp_fmt *fmt);
578 bool perf_hpp__is_thread_entry(struct perf_hpp_fmt *fmt);
579 bool perf_hpp__is_comm_entry(struct perf_hpp_fmt *fmt);
580 bool perf_hpp__is_dso_entry(struct perf_hpp_fmt *fmt);
581 bool perf_hpp__is_sym_entry(struct perf_hpp_fmt *fmt);
583 struct perf_hpp_fmt *perf_hpp_fmt__dup(struct perf_hpp_fmt *fmt);
585 int hist_entry__filter(struct hist_entry *he, int type, const void *arg);
587 static inline bool perf_hpp__should_skip(struct perf_hpp_fmt *format, in perf_hpp__should_skip()
588 struct hists *hists) in perf_hpp__should_skip()
600 void perf_hpp__reset_width(struct perf_hpp_fmt *fmt, struct hists *hists);
601 void perf_hpp__reset_sort_width(struct perf_hpp_fmt *fmt, struct hists *hists);
603 void hists__reset_column_width(struct hists *hists);
611 typedef u64 (*hpp_field_fn)(struct hist_entry *he);
612 typedef int (*hpp_callback_fn)(struct perf_hpp *hpp, bool front);
613 typedef int (*hpp_snprint_fn)(struct perf_hpp *hpp, const char *fmt, ...);
615 int hpp__fmt(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
616 struct hist_entry *he, hpp_field_fn get_field,
619 int hpp__fmt_acc(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
620 struct hist_entry *he, hpp_field_fn get_field,
624 static inline void advance_hpp(struct perf_hpp *hpp, int inc) in advance_hpp()
642 struct evlist;
644 struct hist_browser_timer {
656 struct block_hist {
657 struct hists block_hists;
658 struct perf_hpp_list block_list;
659 struct perf_hpp_fmt block_fmt;
662 struct hist_entry he;
667 void attr_to_script(char *buf, struct perf_event_attr *attr);
669 int map_symbol__tui_annotate(struct map_symbol *ms, struct evsel *evsel,
670 struct hist_browser_timer *hbt);
672 int hist_entry__tui_annotate(struct hist_entry *he, struct evsel *evsel,
673 struct hist_browser_timer *hbt);
675 int evlist__tui_browse_hists(struct evlist *evlist, const char *help, struct hist_browser_timer *hb…
676 float min_pcnt, struct perf_env *env, bool warn_lost_event);
678 int script_browse(const char *script_opt, struct evsel *evsel);
681 int res_sample_browse(struct res_sample *res_samples, int num_res,
682 struct evsel *evsel, enum rstype rstype);
685 int block_hists_tui_browse(struct block_hist *bh, struct evsel *evsel,
686 float min_percent, struct perf_env *env);
689 int evlist__tui_browse_hists(struct evlist *evlist __maybe_unused, in evlist__tui_browse_hists()
691 struct hist_browser_timer *hbt __maybe_unused, in evlist__tui_browse_hists()
693 struct perf_env *env __maybe_unused, in evlist__tui_browse_hists()
698 static inline int map_symbol__tui_annotate(struct map_symbol *ms __maybe_unused, in map_symbol__tui_annotate()
699 struct evsel *evsel __maybe_unused, in map_symbol__tui_annotate()
700 struct hist_browser_timer *hbt __maybe_unused) in map_symbol__tui_annotate()
705 static inline int hist_entry__tui_annotate(struct hist_entry *he __maybe_unused, in hist_entry__tui_annotate()
706 struct evsel *evsel __maybe_unused, in hist_entry__tui_annotate()
707 struct hist_browser_timer *hbt __maybe_unused) in hist_entry__tui_annotate()
713 struct evsel *evsel __maybe_unused) in script_browse()
718 static inline int res_sample_browse(struct res_sample *res_samples __maybe_unused, in res_sample_browse()
720 struct evsel *evsel __maybe_unused, in res_sample_browse()
728 static inline int block_hists_tui_browse(struct block_hist *bh __maybe_unused, in block_hists_tui_browse()
729 struct evsel *evsel __maybe_unused, in block_hists_tui_browse()
731 struct perf_env *env __maybe_unused) in block_hists_tui_browse()
742 unsigned int hists__sort_list_width(struct hists *hists);
743 unsigned int hists__overhead_width(struct hists *hists);
745 void hist__account_cycles(struct branch_stack *bs, struct addr_location *al,
746 struct perf_sample *sample, bool nonany_branch_mode,
747 u64 *total_cycles, struct evsel *evsel);
749 struct option;
750 int parse_filter_percentage(const struct option *opt, const char *arg, int unset);
753 void perf_hpp_list__init(struct perf_hpp_list *list);
761 struct rb_node *rb_hierarchy_last(struct rb_node *node);
762 struct rb_node *__rb_hierarchy_next(struct rb_node *node,
764 struct rb_node *rb_hierarchy_prev(struct rb_node *node);
766 static inline struct rb_node *rb_hierarchy_next(struct rb_node *node) in rb_hierarchy_next()
773 bool hist_entry__has_hierarchy_children(struct hist_entry *he, float limit);
774 int hpp_color_scnprintf(struct perf_hpp *hpp, const char *fmt, ...);
775 int __hpp__slsmg_color_printf(struct perf_hpp *hpp, const char *fmt, ...);
776 int __hist_entry__snprintf(struct hist_entry *he, struct perf_hpp *hpp,
777 struct perf_hpp_list *hpp_list);
778 int hists__fprintf_headers(struct hists *hists, FILE *fp);
779 int __hists__scnprintf_title(struct hists *hists, char *bf, size_t size, bool show_freq);
781 static inline int hists__scnprintf_title(struct hists *hists, char *bf, size_t size) in hists__scnprintf_title()