perf session: There is no need for a per session hists instance
[deliverable/linux.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);
28a6b6aa 101void events_stats__inc(struct events_stats *stats, u32 type);
52168eea 102size_t events_stats__fprintf(struct events_stats *stats, FILE *fp);
c8446b9b 103
41724e4c
JO
104size_t hists__fprintf(struct hists *self, bool show_header, int max_rows,
105 int max_cols, FILE *fp);
b09e0190 106
2f525d01 107int hist_entry__inc_addr_samples(struct hist_entry *self, int evidx, u64 addr);
ce6f4fab 108int hist_entry__annotate(struct hist_entry *self, size_t privsize);
ef7b93a1 109
d7b76f09
ACM
110void hists__filter_by_dso(struct hists *hists);
111void hists__filter_by_thread(struct hists *hists);
e94d53eb 112void hists__filter_by_symbol(struct hists *hists);
b09e0190 113
8a6c5b26
ACM
114u16 hists__col_len(struct hists *self, enum hist_column col);
115void hists__set_col_len(struct hists *self, enum hist_column col, u16 len);
116bool hists__new_col_len(struct hists *self, enum hist_column col, u16 len);
7ccf4f90
NK
117void hists__reset_col_len(struct hists *hists);
118void hists__calc_col_len(struct hists *hists, struct hist_entry *he);
8a6c5b26 119
95529be4 120void hists__match(struct hists *leader, struct hists *other);
494d70a1 121int hists__link(struct hists *leader, struct hists *other);
95529be4 122
ea251d51
NK
123struct perf_hpp {
124 char *buf;
125 size_t size;
ea251d51 126 const char *sep;
ea251d51
NK
127 void *ptr;
128};
129
130struct perf_hpp_fmt {
ea251d51
NK
131 int (*header)(struct perf_hpp *hpp);
132 int (*width)(struct perf_hpp *hpp);
133 int (*color)(struct perf_hpp *hpp, struct hist_entry *he);
134 int (*entry)(struct perf_hpp *hpp, struct hist_entry *he);
1240005e
JO
135
136 struct list_head list;
ea251d51
NK
137};
138
1240005e
JO
139extern struct list_head perf_hpp__list;
140
141#define perf_hpp__for_each_format(format) \
142 list_for_each_entry(format, &perf_hpp__list, list)
143
ea251d51
NK
144extern struct perf_hpp_fmt perf_hpp__format[];
145
146enum {
5395a048 147 PERF_HPP__BASELINE,
ea251d51
NK
148 PERF_HPP__OVERHEAD,
149 PERF_HPP__OVERHEAD_SYS,
150 PERF_HPP__OVERHEAD_US,
151 PERF_HPP__OVERHEAD_GUEST_SYS,
152 PERF_HPP__OVERHEAD_GUEST_US,
153 PERF_HPP__SAMPLES,
154 PERF_HPP__PERIOD,
61949b21 155 PERF_HPP__PERIOD_BASELINE,
ea251d51 156 PERF_HPP__DELTA,
7aaf6b35 157 PERF_HPP__RATIO,
81d5f958 158 PERF_HPP__WEIGHTED_DIFF,
ed279da2 159 PERF_HPP__FORMULA,
ea251d51
NK
160
161 PERF_HPP__MAX_INDEX
162};
163
1d77822e 164void perf_hpp__init(void);
1240005e
JO
165void perf_hpp__column_register(struct perf_hpp_fmt *format);
166void perf_hpp__column_enable(unsigned col);
ea251d51
NK
167int hist_entry__period_snprintf(struct perf_hpp *hpp, struct hist_entry *he,
168 bool color);
169
e248de33
ACM
170struct perf_evlist;
171
9783adf7
NK
172struct hist_browser_timer {
173 void (*timer)(void *arg);
174 void *arg;
175 int refresh;
176};
177
1254b51e
NK
178#ifdef NEWT_SUPPORT
179#include "../ui/keysyms.h"
180int hist_entry__tui_annotate(struct hist_entry *he, int evidx,
9783adf7 181 struct hist_browser_timer *hbt);
1254b51e
NK
182
183int perf_evlist__tui_browse_hists(struct perf_evlist *evlist, const char *help,
68d80758
NK
184 struct hist_browser_timer *hbt,
185 struct perf_session_env *env);
66517826 186int script_browse(const char *script_opt);
1254b51e 187#else
7f0030b2 188static inline
1d037ca1
IT
189int perf_evlist__tui_browse_hists(struct perf_evlist *evlist __maybe_unused,
190 const char *help __maybe_unused,
68d80758
NK
191 struct hist_browser_timer *hbt __maybe_unused,
192 struct perf_session_env *env __maybe_unused)
d67f088e
ACM
193{
194 return 0;
195}
196
1d037ca1
IT
197static inline int hist_entry__tui_annotate(struct hist_entry *self
198 __maybe_unused,
199 int evidx __maybe_unused,
9783adf7
NK
200 struct hist_browser_timer *hbt
201 __maybe_unused)
46e3e055
ACM
202{
203 return 0;
204}
66517826 205
4f746c95 206static inline int script_browse(const char *script_opt __maybe_unused)
66517826
FT
207{
208 return 0;
209}
210
cf958003
ACM
211#define K_LEFT -1
212#define K_RIGHT -2
b09e0190 213#endif
06daaaba 214
f9f526ec
NK
215#ifdef GTK2_SUPPORT
216int perf_evlist__gtk_browse_hists(struct perf_evlist *evlist, const char *help,
9783adf7 217 struct hist_browser_timer *hbt __maybe_unused);
f9f526ec 218#else
c31a9457 219static inline
1d037ca1
IT
220int perf_evlist__gtk_browse_hists(struct perf_evlist *evlist __maybe_unused,
221 const char *help __maybe_unused,
9783adf7 222 struct hist_browser_timer *hbt __maybe_unused)
c31a9457
PE
223{
224 return 0;
225}
c31a9457
PE
226#endif
227
06daaaba
ACM
228unsigned int hists__sort_list_width(struct hists *self);
229
05472daa
JO
230double perf_diff__compute_delta(struct hist_entry *he, struct hist_entry *pair);
231double perf_diff__compute_ratio(struct hist_entry *he, struct hist_entry *pair);
232s64 perf_diff__compute_wdiff(struct hist_entry *he, struct hist_entry *pair);
f4c8bae1
JO
233int perf_diff__formula(struct hist_entry *he, struct hist_entry *pair,
234 char *buf, size_t size);
05472daa 235double perf_diff__period_percent(struct hist_entry *he, u64 period);
3d1d07ec 236#endif /* __PERF_HIST_H */
This page took 0.135256 seconds and 5 git commands to generate.