Orange Pi5 kernel

Deprecated Linux kernel 5.10.110 for OrangePi 5/5B/5+ boards

3 Commits   0 Branches   0 Tags
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300   1) /* SPDX-License-Identifier: GPL-2.0 */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300   2) #ifndef __PERF_HIST_H
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300   3) #define __PERF_HIST_H
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300   4) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300   5) #include <linux/rbtree.h>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300   6) #include <linux/types.h>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300   7) #include <pthread.h>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300   8) #include "evsel.h"
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300   9) #include "color.h"
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  10) #include "events_stats.h"
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  11) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  12) struct hist_entry;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  13) struct hist_entry_ops;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  14) struct addr_location;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  15) struct map_symbol;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  16) struct mem_info;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  17) struct branch_info;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  18) struct branch_stack;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  19) struct block_info;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  20) struct symbol;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  21) struct ui_progress;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  22) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  23) enum hist_filter {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  24) 	HIST_FILTER__DSO,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  25) 	HIST_FILTER__THREAD,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  26) 	HIST_FILTER__PARENT,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  27) 	HIST_FILTER__SYMBOL,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  28) 	HIST_FILTER__GUEST,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  29) 	HIST_FILTER__HOST,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  30) 	HIST_FILTER__SOCKET,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  31) 	HIST_FILTER__C2C,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  32) };
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  33) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  34) enum hist_column {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  35) 	HISTC_SYMBOL,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  36) 	HISTC_TIME,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  37) 	HISTC_DSO,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  38) 	HISTC_THREAD,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  39) 	HISTC_COMM,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  40) 	HISTC_CGROUP_ID,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  41) 	HISTC_CGROUP,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  42) 	HISTC_PARENT,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  43) 	HISTC_CPU,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  44) 	HISTC_SOCKET,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  45) 	HISTC_SRCLINE,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  46) 	HISTC_SRCFILE,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  47) 	HISTC_MISPREDICT,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  48) 	HISTC_IN_TX,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  49) 	HISTC_ABORT,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  50) 	HISTC_SYMBOL_FROM,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  51) 	HISTC_SYMBOL_TO,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  52) 	HISTC_DSO_FROM,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  53) 	HISTC_DSO_TO,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  54) 	HISTC_LOCAL_WEIGHT,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  55) 	HISTC_GLOBAL_WEIGHT,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  56) 	HISTC_MEM_DADDR_SYMBOL,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  57) 	HISTC_MEM_DADDR_DSO,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  58) 	HISTC_MEM_PHYS_DADDR,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  59) 	HISTC_MEM_LOCKED,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  60) 	HISTC_MEM_TLB,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  61) 	HISTC_MEM_LVL,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  62) 	HISTC_MEM_SNOOP,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  63) 	HISTC_MEM_DCACHELINE,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  64) 	HISTC_MEM_IADDR_SYMBOL,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  65) 	HISTC_TRANSACTION,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  66) 	HISTC_CYCLES,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  67) 	HISTC_SRCLINE_FROM,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  68) 	HISTC_SRCLINE_TO,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  69) 	HISTC_TRACE,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  70) 	HISTC_SYM_SIZE,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  71) 	HISTC_DSO_SIZE,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  72) 	HISTC_SYMBOL_IPC,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  73) 	HISTC_NR_COLS, /* Last entry */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  74) };
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  75) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  76) struct thread;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  77) struct dso;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  78) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  79) struct hists {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  80) 	struct rb_root_cached	entries_in_array[2];
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  81) 	struct rb_root_cached	*entries_in;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  82) 	struct rb_root_cached	entries;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  83) 	struct rb_root_cached	entries_collapsed;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  84) 	u64			nr_entries;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  85) 	u64			nr_non_filtered_entries;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  86) 	u64			callchain_period;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  87) 	u64			callchain_non_filtered_period;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  88) 	struct thread		*thread_filter;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  89) 	const struct dso	*dso_filter;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  90) 	const char		*uid_filter_str;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  91) 	const char		*symbol_filter_str;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  92) 	pthread_mutex_t		lock;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  93) 	struct events_stats	stats;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  94) 	u64			event_stream;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  95) 	u16			col_len[HISTC_NR_COLS];
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  96) 	bool			has_callchains;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  97) 	int			socket_filter;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  98) 	struct perf_hpp_list	*hpp_list;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  99) 	struct list_head	hpp_formats;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 100) 	int			nr_hpp_node;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 101) };
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 102) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 103) #define hists__has(__h, __f) (__h)->hpp_list->__f
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 104) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 105) struct hist_entry_iter;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 106) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 107) struct hist_iter_ops {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 108) 	int (*prepare_entry)(struct hist_entry_iter *, struct addr_location *);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 109) 	int (*add_single_entry)(struct hist_entry_iter *, struct addr_location *);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 110) 	int (*next_entry)(struct hist_entry_iter *, struct addr_location *);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 111) 	int (*add_next_entry)(struct hist_entry_iter *, struct addr_location *);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 112) 	int (*finish_entry)(struct hist_entry_iter *, struct addr_location *);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 113) };
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 114) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 115) struct hist_entry_iter {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 116) 	int total;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 117) 	int curr;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 118) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 119) 	bool hide_unresolved;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 120) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 121) 	struct evsel *evsel;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 122) 	struct perf_sample *sample;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 123) 	struct hist_entry *he;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 124) 	struct symbol *parent;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 125) 	void *priv;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 126) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 127) 	const struct hist_iter_ops *ops;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 128) 	/* user-defined callback function (optional) */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 129) 	int (*add_entry_cb)(struct hist_entry_iter *iter,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 130) 			    struct addr_location *al, bool single, void *arg);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 131) };
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 132) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 133) extern const struct hist_iter_ops hist_iter_normal;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 134) extern const struct hist_iter_ops hist_iter_branch;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 135) extern const struct hist_iter_ops hist_iter_mem;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 136) extern const struct hist_iter_ops hist_iter_cumulative;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 137) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 138) struct hist_entry *hists__add_entry(struct hists *hists,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 139) 				    struct addr_location *al,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 140) 				    struct symbol *parent,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 141) 				    struct branch_info *bi,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 142) 				    struct mem_info *mi,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 143) 				    struct perf_sample *sample,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 144) 				    bool sample_self);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 145) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 146) struct hist_entry *hists__add_entry_ops(struct hists *hists,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 147) 					struct hist_entry_ops *ops,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 148) 					struct addr_location *al,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 149) 					struct symbol *sym_parent,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 150) 					struct branch_info *bi,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 151) 					struct mem_info *mi,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 152) 					struct perf_sample *sample,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 153) 					bool sample_self);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 154) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 155) struct hist_entry *hists__add_entry_block(struct hists *hists,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 156) 					  struct addr_location *al,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 157) 					  struct block_info *bi);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 158) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 159) int hist_entry_iter__add(struct hist_entry_iter *iter, struct addr_location *al,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 160) 			 int max_stack_depth, void *arg);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 161) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 162) struct perf_hpp;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 163) struct perf_hpp_fmt;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 164) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 165) int64_t hist_entry__cmp(struct hist_entry *left, struct hist_entry *right);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 166) int64_t hist_entry__collapse(struct hist_entry *left, struct hist_entry *right);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 167) int hist_entry__transaction_len(void);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 168) int hist_entry__sort_snprintf(struct hist_entry *he, char *bf, size_t size,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 169) 			      struct hists *hists);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 170) int hist_entry__snprintf_alignment(struct hist_entry *he, struct perf_hpp *hpp,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 171) 				   struct perf_hpp_fmt *fmt, int printed);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 172) void hist_entry__delete(struct hist_entry *he);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 173) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 174) typedef int (*hists__resort_cb_t)(struct hist_entry *he, void *arg);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 175) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 176) void evsel__output_resort_cb(struct evsel *evsel, struct ui_progress *prog,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 177) 			     hists__resort_cb_t cb, void *cb_arg);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 178) void evsel__output_resort(struct evsel *evsel, struct ui_progress *prog);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 179) void hists__output_resort(struct hists *hists, struct ui_progress *prog);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 180) void hists__output_resort_cb(struct hists *hists, struct ui_progress *prog,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 181) 			     hists__resort_cb_t cb);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 182) int hists__collapse_resort(struct hists *hists, struct ui_progress *prog);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 183) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 184) void hists__decay_entries(struct hists *hists, bool zap_user, bool zap_kernel);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 185) void hists__delete_entries(struct hists *hists);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 186) void hists__output_recalc_col_len(struct hists *hists, int max_rows);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 187) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 188) struct hist_entry *hists__get_entry(struct hists *hists, int idx);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 189) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 190) u64 hists__total_period(struct hists *hists);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 191) void hists__reset_stats(struct hists *hists);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 192) void hists__inc_stats(struct hists *hists, struct hist_entry *h);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 193) void hists__inc_nr_events(struct hists *hists, u32 type);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 194) void hists__inc_nr_samples(struct hists *hists, bool filtered);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 195) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 196) size_t hists__fprintf(struct hists *hists, bool show_header, int max_rows,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 197) 		      int max_cols, float min_pcnt, FILE *fp,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 198) 		      bool ignore_callchains);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 199) size_t perf_evlist__fprintf_nr_events(struct evlist *evlist, FILE *fp);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 200) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 201) void hists__filter_by_dso(struct hists *hists);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 202) void hists__filter_by_thread(struct hists *hists);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 203) void hists__filter_by_symbol(struct hists *hists);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 204) void hists__filter_by_socket(struct hists *hists);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 205) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 206) static inline bool hists__has_filter(struct hists *hists)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 207) {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 208) 	return hists->thread_filter || hists->dso_filter ||
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 209) 		hists->symbol_filter_str || (hists->socket_filter > -1);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 210) }
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 211) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 212) u16 hists__col_len(struct hists *hists, enum hist_column col);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 213) void hists__set_col_len(struct hists *hists, enum hist_column col, u16 len);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 214) bool hists__new_col_len(struct hists *hists, enum hist_column col, u16 len);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 215) void hists__reset_col_len(struct hists *hists);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 216) void hists__calc_col_len(struct hists *hists, struct hist_entry *he);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 217) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 218) void hists__match(struct hists *leader, struct hists *other);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 219) int hists__link(struct hists *leader, struct hists *other);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 220) int hists__unlink(struct hists *hists);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 221) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 222) struct hists_evsel {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 223) 	struct evsel evsel;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 224) 	struct hists	  hists;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 225) };
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 226) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 227) static inline struct evsel *hists_to_evsel(struct hists *hists)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 228) {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 229) 	struct hists_evsel *hevsel = container_of(hists, struct hists_evsel, hists);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 230) 	return &hevsel->evsel;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 231) }
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 232) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 233) static inline struct hists *evsel__hists(struct evsel *evsel)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 234) {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 235) 	struct hists_evsel *hevsel = (struct hists_evsel *)evsel;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 236) 	return &hevsel->hists;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 237) }
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 238) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 239) static __pure inline bool hists__has_callchains(struct hists *hists)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 240) {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 241) 	return hists->has_callchains;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 242) }
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 243) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 244) int hists__init(void);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 245) int __hists__init(struct hists *hists, struct perf_hpp_list *hpp_list);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 246) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 247) struct rb_root_cached *hists__get_rotate_entries_in(struct hists *hists);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 248) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 249) struct perf_hpp {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 250) 	char *buf;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 251) 	size_t size;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 252) 	const char *sep;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 253) 	void *ptr;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 254) 	bool skip;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 255) };
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 256) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 257) struct perf_hpp_fmt {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 258) 	const char *name;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 259) 	int (*header)(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 260) 		      struct hists *hists, int line, int *span);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 261) 	int (*width)(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 262) 		     struct hists *hists);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 263) 	int (*color)(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 264) 		     struct hist_entry *he);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 265) 	int (*entry)(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 266) 		     struct hist_entry *he);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 267) 	int64_t (*cmp)(struct perf_hpp_fmt *fmt,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 268) 		       struct hist_entry *a, struct hist_entry *b);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 269) 	int64_t (*collapse)(struct perf_hpp_fmt *fmt,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 270) 			    struct hist_entry *a, struct hist_entry *b);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 271) 	int64_t (*sort)(struct perf_hpp_fmt *fmt,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 272) 			struct hist_entry *a, struct hist_entry *b);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 273) 	bool (*equal)(struct perf_hpp_fmt *a, struct perf_hpp_fmt *b);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 274) 	void (*free)(struct perf_hpp_fmt *fmt);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 275) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 276) 	struct list_head list;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 277) 	struct list_head sort_list;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 278) 	bool elide;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 279) 	int len;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 280) 	int user_len;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 281) 	int idx;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 282) 	int level;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 283) };
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 284) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 285) struct perf_hpp_list {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 286) 	struct list_head fields;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 287) 	struct list_head sorts;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 288) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 289) 	int nr_header_lines;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 290) 	int need_collapse;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 291) 	int parent;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 292) 	int sym;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 293) 	int dso;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 294) 	int socket;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 295) 	int thread;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 296) 	int comm;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 297) };
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 298) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 299) extern struct perf_hpp_list perf_hpp_list;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 300) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 301) struct perf_hpp_list_node {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 302) 	struct list_head	list;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 303) 	struct perf_hpp_list	hpp;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 304) 	int			level;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 305) 	bool			skip;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 306) };
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 307) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 308) void perf_hpp_list__column_register(struct perf_hpp_list *list,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 309) 				    struct perf_hpp_fmt *format);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 310) void perf_hpp_list__register_sort_field(struct perf_hpp_list *list,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 311) 					struct perf_hpp_fmt *format);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 312) void perf_hpp_list__prepend_sort_field(struct perf_hpp_list *list,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 313) 				       struct perf_hpp_fmt *format);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 314) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 315) static inline void perf_hpp__column_register(struct perf_hpp_fmt *format)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 316) {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 317) 	perf_hpp_list__column_register(&perf_hpp_list, format);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 318) }
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 319) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 320) static inline void perf_hpp__register_sort_field(struct perf_hpp_fmt *format)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 321) {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 322) 	perf_hpp_list__register_sort_field(&perf_hpp_list, format);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 323) }
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 324) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 325) static inline void perf_hpp__prepend_sort_field(struct perf_hpp_fmt *format)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 326) {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 327) 	perf_hpp_list__prepend_sort_field(&perf_hpp_list, format);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 328) }
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 329) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 330) #define perf_hpp_list__for_each_format(_list, format) \
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 331) 	list_for_each_entry(format, &(_list)->fields, list)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 332) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 333) #define perf_hpp_list__for_each_format_safe(_list, format, tmp)	\
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 334) 	list_for_each_entry_safe(format, tmp, &(_list)->fields, list)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 335) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 336) #define perf_hpp_list__for_each_sort_list(_list, format) \
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 337) 	list_for_each_entry(format, &(_list)->sorts, sort_list)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 338) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 339) #define perf_hpp_list__for_each_sort_list_safe(_list, format, tmp)	\
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 340) 	list_for_each_entry_safe(format, tmp, &(_list)->sorts, sort_list)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 341) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 342) #define hists__for_each_format(hists, format) \
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 343) 	perf_hpp_list__for_each_format((hists)->hpp_list, format)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 344) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 345) #define hists__for_each_sort_list(hists, format) \
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 346) 	perf_hpp_list__for_each_sort_list((hists)->hpp_list, format)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 347) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 348) extern struct perf_hpp_fmt perf_hpp__format[];
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 349) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 350) enum {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 351) 	/* Matches perf_hpp__format array. */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 352) 	PERF_HPP__OVERHEAD,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 353) 	PERF_HPP__OVERHEAD_SYS,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 354) 	PERF_HPP__OVERHEAD_US,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 355) 	PERF_HPP__OVERHEAD_GUEST_SYS,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 356) 	PERF_HPP__OVERHEAD_GUEST_US,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 357) 	PERF_HPP__OVERHEAD_ACC,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 358) 	PERF_HPP__SAMPLES,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 359) 	PERF_HPP__PERIOD,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 360) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 361) 	PERF_HPP__MAX_INDEX
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 362) };
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 363) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 364) void perf_hpp__init(void);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 365) void perf_hpp__cancel_cumulate(void);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 366) void perf_hpp__setup_output_field(struct perf_hpp_list *list);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 367) void perf_hpp__reset_output_field(struct perf_hpp_list *list);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 368) void perf_hpp__append_sort_keys(struct perf_hpp_list *list);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 369) int perf_hpp__setup_hists_formats(struct perf_hpp_list *list,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 370) 				  struct evlist *evlist);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 371) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 372) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 373) bool perf_hpp__is_sort_entry(struct perf_hpp_fmt *format);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 374) bool perf_hpp__is_dynamic_entry(struct perf_hpp_fmt *format);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 375) bool perf_hpp__defined_dynamic_entry(struct perf_hpp_fmt *fmt, struct hists *hists);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 376) bool perf_hpp__is_trace_entry(struct perf_hpp_fmt *fmt);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 377) bool perf_hpp__is_srcline_entry(struct perf_hpp_fmt *fmt);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 378) bool perf_hpp__is_srcfile_entry(struct perf_hpp_fmt *fmt);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 379) bool perf_hpp__is_thread_entry(struct perf_hpp_fmt *fmt);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 380) bool perf_hpp__is_comm_entry(struct perf_hpp_fmt *fmt);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 381) bool perf_hpp__is_dso_entry(struct perf_hpp_fmt *fmt);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 382) bool perf_hpp__is_sym_entry(struct perf_hpp_fmt *fmt);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 383) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 384) struct perf_hpp_fmt *perf_hpp_fmt__dup(struct perf_hpp_fmt *fmt);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 385) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 386) int hist_entry__filter(struct hist_entry *he, int type, const void *arg);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 387) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 388) static inline bool perf_hpp__should_skip(struct perf_hpp_fmt *format,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 389) 					 struct hists *hists)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 390) {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 391) 	if (format->elide)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 392) 		return true;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 393) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 394) 	if (perf_hpp__is_dynamic_entry(format) &&
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 395) 	    !perf_hpp__defined_dynamic_entry(format, hists))
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 396) 		return true;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 397) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 398) 	return false;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 399) }
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 400) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 401) void perf_hpp__reset_width(struct perf_hpp_fmt *fmt, struct hists *hists);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 402) void perf_hpp__reset_sort_width(struct perf_hpp_fmt *fmt, struct hists *hists);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 403) void perf_hpp__set_user_width(const char *width_list_str);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 404) void hists__reset_column_width(struct hists *hists);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 405) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 406) typedef u64 (*hpp_field_fn)(struct hist_entry *he);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 407) typedef int (*hpp_callback_fn)(struct perf_hpp *hpp, bool front);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 408) typedef int (*hpp_snprint_fn)(struct perf_hpp *hpp, const char *fmt, ...);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 409) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 410) int hpp__fmt(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 411) 	     struct hist_entry *he, hpp_field_fn get_field,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 412) 	     const char *fmtstr, hpp_snprint_fn print_fn, bool fmt_percent);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 413) int hpp__fmt_acc(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 414) 		 struct hist_entry *he, hpp_field_fn get_field,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 415) 		 const char *fmtstr, hpp_snprint_fn print_fn, bool fmt_percent);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 416) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 417) static inline void advance_hpp(struct perf_hpp *hpp, int inc)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 418) {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 419) 	hpp->buf  += inc;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 420) 	hpp->size -= inc;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 421) }
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 422) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 423) static inline size_t perf_hpp__use_color(void)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 424) {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 425) 	return !symbol_conf.field_sep;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 426) }
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 427) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 428) static inline size_t perf_hpp__color_overhead(void)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 429) {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 430) 	return perf_hpp__use_color() ?
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 431) 	       (COLOR_MAXLEN + sizeof(PERF_COLOR_RESET)) * PERF_HPP__MAX_INDEX
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 432) 	       : 0;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 433) }
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 434) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 435) struct evlist;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 436) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 437) struct hist_browser_timer {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 438) 	void (*timer)(void *arg);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 439) 	void *arg;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 440) 	int refresh;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 441) };
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 442) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 443) struct annotation_options;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 444) struct res_sample;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 445) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 446) enum rstype {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 447) 	A_NORMAL,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 448) 	A_ASM,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 449) 	A_SOURCE
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 450) };
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 451) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 452) struct block_hist;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 453) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 454) #ifdef HAVE_SLANG_SUPPORT
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 455) #include "../ui/keysyms.h"
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 456) void attr_to_script(char *buf, struct perf_event_attr *attr);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 457) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 458) int map_symbol__tui_annotate(struct map_symbol *ms, struct evsel *evsel,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 459) 			     struct hist_browser_timer *hbt,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 460) 			     struct annotation_options *annotation_opts);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 461) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 462) int hist_entry__tui_annotate(struct hist_entry *he, struct evsel *evsel,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 463) 			     struct hist_browser_timer *hbt,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 464) 			     struct annotation_options *annotation_opts);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 465) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 466) int perf_evlist__tui_browse_hists(struct evlist *evlist, const char *help,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 467) 				  struct hist_browser_timer *hbt,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 468) 				  float min_pcnt,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 469) 				  struct perf_env *env,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 470) 				  bool warn_lost_event,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 471) 				  struct annotation_options *annotation_options);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 472) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 473) int script_browse(const char *script_opt, struct evsel *evsel);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 474) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 475) void run_script(char *cmd);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 476) int res_sample_browse(struct res_sample *res_samples, int num_res,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 477) 		      struct evsel *evsel, enum rstype rstype);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 478) void res_sample_init(void);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 479) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 480) int block_hists_tui_browse(struct block_hist *bh, struct evsel *evsel,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 481) 			   float min_percent, struct perf_env *env,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 482) 			   struct annotation_options *annotation_opts);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 483) #else
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 484) static inline
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 485) int perf_evlist__tui_browse_hists(struct evlist *evlist __maybe_unused,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 486) 				  const char *help __maybe_unused,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 487) 				  struct hist_browser_timer *hbt __maybe_unused,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 488) 				  float min_pcnt __maybe_unused,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 489) 				  struct perf_env *env __maybe_unused,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 490) 				  bool warn_lost_event __maybe_unused,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 491) 				  struct annotation_options *annotation_options __maybe_unused)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 492) {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 493) 	return 0;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 494) }
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 495) static inline int map_symbol__tui_annotate(struct map_symbol *ms __maybe_unused,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 496) 					   struct evsel *evsel __maybe_unused,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 497) 					   struct hist_browser_timer *hbt __maybe_unused,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 498) 					   struct annotation_options *annotation_options __maybe_unused)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 499) {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 500) 	return 0;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 501) }
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 502) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 503) static inline int hist_entry__tui_annotate(struct hist_entry *he __maybe_unused,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 504) 					   struct evsel *evsel __maybe_unused,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 505) 					   struct hist_browser_timer *hbt __maybe_unused,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 506) 					   struct annotation_options *annotation_opts __maybe_unused)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 507) {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 508) 	return 0;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 509) }
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 510) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 511) static inline int script_browse(const char *script_opt __maybe_unused,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 512) 				struct evsel *evsel __maybe_unused)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 513) {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 514) 	return 0;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 515) }
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 516) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 517) static inline int res_sample_browse(struct res_sample *res_samples __maybe_unused,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 518) 				    int num_res __maybe_unused,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 519) 				    struct evsel *evsel __maybe_unused,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 520) 				    enum rstype rstype __maybe_unused)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 521) {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 522) 	return 0;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 523) }
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 524) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 525) static inline void res_sample_init(void) {}
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 526) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 527) static inline int block_hists_tui_browse(struct block_hist *bh __maybe_unused,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 528) 					 struct evsel *evsel __maybe_unused,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 529) 					 float min_percent __maybe_unused,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 530) 					 struct perf_env *env __maybe_unused,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 531) 					 struct annotation_options *annotation_opts __maybe_unused)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 532) {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 533) 	return 0;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 534) }
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 535) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 536) #define K_LEFT  -1000
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 537) #define K_RIGHT -2000
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 538) #define K_SWITCH_INPUT_DATA -3000
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 539) #define K_RELOAD -4000
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 540) #endif
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 541) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 542) unsigned int hists__sort_list_width(struct hists *hists);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 543) unsigned int hists__overhead_width(struct hists *hists);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 544) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 545) void hist__account_cycles(struct branch_stack *bs, struct addr_location *al,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 546) 			  struct perf_sample *sample, bool nonany_branch_mode,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 547) 			  u64 *total_cycles);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 548) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 549) struct option;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 550) int parse_filter_percentage(const struct option *opt, const char *arg, int unset);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 551) int perf_hist_config(const char *var, const char *value);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 552) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 553) void perf_hpp_list__init(struct perf_hpp_list *list);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 554) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 555) enum hierarchy_move_dir {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 556) 	HMD_NORMAL,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 557) 	HMD_FORCE_SIBLING,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 558) 	HMD_FORCE_CHILD,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 559) };
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 560) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 561) struct rb_node *rb_hierarchy_last(struct rb_node *node);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 562) struct rb_node *__rb_hierarchy_next(struct rb_node *node,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 563) 				    enum hierarchy_move_dir hmd);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 564) struct rb_node *rb_hierarchy_prev(struct rb_node *node);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 565) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 566) static inline struct rb_node *rb_hierarchy_next(struct rb_node *node)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 567) {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 568) 	return __rb_hierarchy_next(node, HMD_NORMAL);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 569) }
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 570) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 571) #define HIERARCHY_INDENT  3
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 572) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 573) bool hist_entry__has_hierarchy_children(struct hist_entry *he, float limit);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 574) int hpp_color_scnprintf(struct perf_hpp *hpp, const char *fmt, ...);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 575) int __hpp__slsmg_color_printf(struct perf_hpp *hpp, const char *fmt, ...);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 576) int __hist_entry__snprintf(struct hist_entry *he, struct perf_hpp *hpp,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 577) 			   struct perf_hpp_list *hpp_list);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 578) int hists__fprintf_headers(struct hists *hists, FILE *fp);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 579) int __hists__scnprintf_title(struct hists *hists, char *bf, size_t size, bool show_freq);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 580) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 581) static inline int hists__scnprintf_title(struct hists *hists, char *bf, size_t size)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 582) {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 583) 	return __hists__scnprintf_title(hists, bf, size, true);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 584) }
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 585) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 586) #endif	/* __PERF_HIST_H */