]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - tools/perf/util/hist.h
perf hists: Rename hists__fprintf_nr_events to events_stats__fprintf
[mirror_ubuntu-hirsute-kernel.git] / tools / perf / util / hist.h
CommitLineData
3d1d07ec
JK
1#ifndef __PERF_HIST_H
2#define __PERF_HIST_H
3d1d07ec 3
4e4f06e4 4#include <linux/types.h>
1980c2eb 5#include <pthread.h>
3d1d07ec 6#include "callchain.h"
68d80758 7#include "header.h"
3d1d07ec 8
3d1d07ec 9extern struct callchain_param callchain_param;
3d1d07ec 10
4e4f06e4
ACM
11struct hist_entry;
12struct addr_location;
13struct symbol;
ef7b93a1 14
cee75ac7
ACM
15/*
16 * The kernel collects the number of events it couldn't send in a stretch and
17 * when possible sends this number in a PERF_RECORD_LOST event. The number of
18 * such "chunks" of lost events is stored in .nr_events[PERF_EVENT_LOST] while
19 * total_lost tells exactly how many events the kernel in fact lost, i.e. it is
20 * the sum of all struct lost_event.lost fields reported.
21 *
22 * The total_period is needed because by default auto-freq is used, so
23 * multipling nr_events[PERF_EVENT_SAMPLE] by a frequency isn't possible to get
24 * the total number of low level events, it is necessary to to sum all struct
25 * sample_event.period and stash the result in total_period.
26 */
1c02c4d2 27struct events_stats {
cee75ac7
ACM
28 u64 total_period;
29 u64 total_lost;
640c03ce 30 u64 total_invalid_chains;
c8446b9b 31 u32 nr_events[PERF_RECORD_HEADER_MAX];
7b27509f 32 u32 nr_lost_warned;
c8446b9b 33 u32 nr_unknown_events;
640c03ce 34 u32 nr_invalid_chains;
9e69c210 35 u32 nr_unknown_id;
0c095715 36 u32 nr_unprocessable_samples;
1c02c4d2
ACM
37};
38
8a6c5b26
ACM
39enum hist_column {
40 HISTC_SYMBOL,
41 HISTC_DSO,
42 HISTC_THREAD,
43 HISTC_COMM,
44 HISTC_PARENT,
45 HISTC_CPU,
b5387528
RAV
46 HISTC_MISPREDICT,
47 HISTC_SYMBOL_FROM,
48 HISTC_SYMBOL_TO,
49 HISTC_DSO_FROM,
50 HISTC_DSO_TO,
409a8be6 51 HISTC_SRCLINE,
8a6c5b26
ACM
52 HISTC_NR_COLS, /* Last entry */
53};
54
d7b76f09
ACM
55struct thread;
56struct dso;
57
1c02c4d2 58struct hists {
1980c2eb
ACM
59 struct rb_root entries_in_array[2];
60 struct rb_root *entries_in;
1c02c4d2 61 struct rb_root entries;
1980c2eb 62 struct rb_root entries_collapsed;
fefb0b94 63 u64 nr_entries;
d7b76f09
ACM
64 const struct thread *thread_filter;
65 const struct dso *dso_filter;
0d37aa34 66 const char *uid_filter_str;
e94d53eb 67 const char *symbol_filter_str;
1980c2eb 68 pthread_mutex_t lock;
1c02c4d2 69 struct events_stats stats;
1c02c4d2 70 u64 event_stream;
8a6c5b26 71 u16 col_len[HISTC_NR_COLS];
1c02c4d2
ACM
72};
73
74struct hist_entry *__hists__add_entry(struct hists *self,
75 struct addr_location *al,
c82ee828 76 struct symbol *parent, u64 period);
12c14278
ACM
77int64_t hist_entry__cmp(struct hist_entry *left, struct hist_entry *right);
78int64_t hist_entry__collapse(struct hist_entry *left, struct hist_entry *right);
000078bc
NK
79int hist_entry__sort_snprintf(struct hist_entry *self, char *bf, size_t size,
80 struct hists *hists);
4e4f06e4
ACM
81void hist_entry__free(struct hist_entry *);
82
b5387528
RAV
83struct hist_entry *__hists__add_branch_entry(struct hists *self,
84 struct addr_location *al,
85 struct symbol *sym_parent,
86 struct branch_info *bi,
87 u64 period);
88
fefb0b94 89void hists__output_resort(struct hists *self);
1980c2eb 90void hists__output_resort_threaded(struct hists *hists);
1c02c4d2 91void hists__collapse_resort(struct hists *self);
1980c2eb 92void hists__collapse_resort_threaded(struct hists *hists);
c8446b9b 93
b079d4e9
ACM
94void hists__decay_entries(struct hists *hists, bool zap_user, bool zap_kernel);
95void hists__decay_entries_threaded(struct hists *hists, bool zap_user,
96 bool zap_kernel);
ab81f3fd
ACM
97void hists__output_recalc_col_len(struct hists *hists, int max_rows);
98
66f97ed3 99void hists__inc_nr_entries(struct hists *hists, struct hist_entry *h);
c8446b9b 100void hists__inc_nr_events(struct hists *self, u32 type);
52168eea 101size_t events_stats__fprintf(struct events_stats *stats, FILE *fp);
c8446b9b 102
41724e4c
JO
103size_t hists__fprintf(struct hists *self, bool show_header, int max_rows,
104 int max_cols, FILE *fp);
b09e0190 105
2f525d01 106int hist_entry__inc_addr_samples(struct hist_entry *self, int evidx, u64 addr);
ce6f4fab 107int hist_entry__annotate(struct hist_entry *self, size_t privsize);
ef7b93a1 108
d7b76f09
ACM
109void hists__filter_by_dso(struct hists *hists);
110void hists__filter_by_thread(struct hists *hists);
e94d53eb 111void hists__filter_by_symbol(struct hists *hists);
b09e0190 112
8a6c5b26
ACM
113u16 hists__col_len(struct hists *self, enum hist_column col);
114void hists__set_col_len(struct hists *self, enum hist_column col, u16 len);
115bool hists__new_col_len(struct hists *self, enum hist_column col, u16 len);
7ccf4f90
NK
116void hists__reset_col_len(struct hists *hists);
117void hists__calc_col_len(struct hists *hists, struct hist_entry *he);
8a6c5b26 118
95529be4 119void hists__match(struct hists *leader, struct hists *other);
494d70a1 120int hists__link(struct hists *leader, struct hists *other);
95529be4 121
ea251d51
NK
122struct perf_hpp {
123 char *buf;
124 size_t size;
ea251d51 125 const char *sep;
ea251d51
NK
126 void *ptr;
127};
128
129struct perf_hpp_fmt {
ea251d51
NK
130 int (*header)(struct perf_hpp *hpp);
131 int (*width)(struct perf_hpp *hpp);
132 int (*color)(struct perf_hpp *hpp, struct hist_entry *he);
133 int (*entry)(struct perf_hpp *hpp, struct hist_entry *he);
1240005e
JO
134
135 struct list_head list;
ea251d51
NK
136};
137
1240005e
JO
138extern struct list_head perf_hpp__list;
139
140#define perf_hpp__for_each_format(format) \
141 list_for_each_entry(format, &perf_hpp__list, list)
142
ea251d51
NK
143extern struct perf_hpp_fmt perf_hpp__format[];
144
145enum {
5395a048 146 PERF_HPP__BASELINE,
ea251d51
NK
147 PERF_HPP__OVERHEAD,
148 PERF_HPP__OVERHEAD_SYS,
149 PERF_HPP__OVERHEAD_US,
150 PERF_HPP__OVERHEAD_GUEST_SYS,
151 PERF_HPP__OVERHEAD_GUEST_US,
152 PERF_HPP__SAMPLES,
153 PERF_HPP__PERIOD,
61949b21 154 PERF_HPP__PERIOD_BASELINE,
ea251d51 155 PERF_HPP__DELTA,
7aaf6b35 156 PERF_HPP__RATIO,
81d5f958 157 PERF_HPP__WEIGHTED_DIFF,
ed279da2 158 PERF_HPP__FORMULA,
ea251d51
NK
159
160 PERF_HPP__MAX_INDEX
161};
162
1d77822e 163void perf_hpp__init(void);
1240005e
JO
164void perf_hpp__column_register(struct perf_hpp_fmt *format);
165void perf_hpp__column_enable(unsigned col);
ea251d51
NK
166int hist_entry__period_snprintf(struct perf_hpp *hpp, struct hist_entry *he,
167 bool color);
168
e248de33
ACM
169struct perf_evlist;
170
9783adf7
NK
171struct hist_browser_timer {
172 void (*timer)(void *arg);
173 void *arg;
174 int refresh;
175};
176
1254b51e
NK
177#ifdef NEWT_SUPPORT
178#include "../ui/keysyms.h"
179int hist_entry__tui_annotate(struct hist_entry *he, int evidx,
9783adf7 180 struct hist_browser_timer *hbt);
1254b51e
NK
181
182int perf_evlist__tui_browse_hists(struct perf_evlist *evlist, const char *help,
68d80758
NK
183 struct hist_browser_timer *hbt,
184 struct perf_session_env *env);
66517826 185int script_browse(const char *script_opt);
1254b51e 186#else
7f0030b2 187static inline
1d037ca1
IT
188int perf_evlist__tui_browse_hists(struct perf_evlist *evlist __maybe_unused,
189 const char *help __maybe_unused,
68d80758
NK
190 struct hist_browser_timer *hbt __maybe_unused,
191 struct perf_session_env *env __maybe_unused)
d67f088e
ACM
192{
193 return 0;
194}
195
1d037ca1
IT
196static inline int hist_entry__tui_annotate(struct hist_entry *self
197 __maybe_unused,
198 int evidx __maybe_unused,
9783adf7
NK
199 struct hist_browser_timer *hbt
200 __maybe_unused)
46e3e055
ACM
201{
202 return 0;
203}
66517826 204
4f746c95 205static inline int script_browse(const char *script_opt __maybe_unused)
66517826
FT
206{
207 return 0;
208}
209
cf958003
ACM
210#define K_LEFT -1
211#define K_RIGHT -2
b09e0190 212#endif
06daaaba 213
f9f526ec
NK
214#ifdef GTK2_SUPPORT
215int perf_evlist__gtk_browse_hists(struct perf_evlist *evlist, const char *help,
9783adf7 216 struct hist_browser_timer *hbt __maybe_unused);
f9f526ec 217#else
c31a9457 218static inline
1d037ca1
IT
219int perf_evlist__gtk_browse_hists(struct perf_evlist *evlist __maybe_unused,
220 const char *help __maybe_unused,
9783adf7 221 struct hist_browser_timer *hbt __maybe_unused)
c31a9457
PE
222{
223 return 0;
224}
c31a9457
PE
225#endif
226
06daaaba
ACM
227unsigned int hists__sort_list_width(struct hists *self);
228
05472daa
JO
229double perf_diff__compute_delta(struct hist_entry *he, struct hist_entry *pair);
230double perf_diff__compute_ratio(struct hist_entry *he, struct hist_entry *pair);
231s64 perf_diff__compute_wdiff(struct hist_entry *he, struct hist_entry *pair);
f4c8bae1
JO
232int perf_diff__formula(struct hist_entry *he, struct hist_entry *pair,
233 char *buf, size_t size);
05472daa 234double perf_diff__period_percent(struct hist_entry *he, u64 period);
3d1d07ec 235#endif /* __PERF_HIST_H */