perf ui hists: Pass evsel to hpp->header/width functions explicitly
[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"
9754c4f9 8#include "color.h"
c1fb5651 9#include "ui/progress.h"
3d1d07ec 10
3d1d07ec 11extern struct callchain_param callchain_param;
3d1d07ec 12
4e4f06e4
ACM
13struct hist_entry;
14struct addr_location;
15struct symbol;
ef7b93a1 16
cee75ac7
ACM
17/*
18 * The kernel collects the number of events it couldn't send in a stretch and
19 * when possible sends this number in a PERF_RECORD_LOST event. The number of
20 * such "chunks" of lost events is stored in .nr_events[PERF_EVENT_LOST] while
21 * total_lost tells exactly how many events the kernel in fact lost, i.e. it is
22 * the sum of all struct lost_event.lost fields reported.
23 *
24 * The total_period is needed because by default auto-freq is used, so
25 * multipling nr_events[PERF_EVENT_SAMPLE] by a frequency isn't possible to get
26 * the total number of low level events, it is necessary to to sum all struct
27 * sample_event.period and stash the result in total_period.
28 */
1c02c4d2 29struct events_stats {
cee75ac7
ACM
30 u64 total_period;
31 u64 total_lost;
640c03ce 32 u64 total_invalid_chains;
c8446b9b 33 u32 nr_events[PERF_RECORD_HEADER_MAX];
7b27509f 34 u32 nr_lost_warned;
c8446b9b 35 u32 nr_unknown_events;
640c03ce 36 u32 nr_invalid_chains;
9e69c210 37 u32 nr_unknown_id;
0c095715 38 u32 nr_unprocessable_samples;
1c02c4d2
ACM
39};
40
8a6c5b26
ACM
41enum hist_column {
42 HISTC_SYMBOL,
43 HISTC_DSO,
44 HISTC_THREAD,
45 HISTC_COMM,
46 HISTC_PARENT,
47 HISTC_CPU,
dfd3b2fd 48 HISTC_SRCLINE,
b5387528 49 HISTC_MISPREDICT,
f5d05bce
AK
50 HISTC_IN_TX,
51 HISTC_ABORT,
b5387528
RAV
52 HISTC_SYMBOL_FROM,
53 HISTC_SYMBOL_TO,
54 HISTC_DSO_FROM,
55 HISTC_DSO_TO,
05484298
AK
56 HISTC_LOCAL_WEIGHT,
57 HISTC_GLOBAL_WEIGHT,
98a3b32c
SE
58 HISTC_MEM_DADDR_SYMBOL,
59 HISTC_MEM_DADDR_DSO,
60 HISTC_MEM_LOCKED,
61 HISTC_MEM_TLB,
62 HISTC_MEM_LVL,
63 HISTC_MEM_SNOOP,
475eeab9 64 HISTC_TRANSACTION,
8a6c5b26
ACM
65 HISTC_NR_COLS, /* Last entry */
66};
67
d7b76f09
ACM
68struct thread;
69struct dso;
70
1c02c4d2 71struct hists {
1980c2eb
ACM
72 struct rb_root entries_in_array[2];
73 struct rb_root *entries_in;
1c02c4d2 74 struct rb_root entries;
1980c2eb 75 struct rb_root entries_collapsed;
fefb0b94 76 u64 nr_entries;
d7b76f09
ACM
77 const struct thread *thread_filter;
78 const struct dso *dso_filter;
0d37aa34 79 const char *uid_filter_str;
e94d53eb 80 const char *symbol_filter_str;
1980c2eb 81 pthread_mutex_t lock;
1c02c4d2 82 struct events_stats stats;
1c02c4d2 83 u64 event_stream;
8a6c5b26 84 u16 col_len[HISTC_NR_COLS];
1c02c4d2
ACM
85};
86
316c7136 87struct hist_entry *__hists__add_entry(struct hists *hists,
1c02c4d2 88 struct addr_location *al,
41a4e6e2
NK
89 struct symbol *parent,
90 struct branch_info *bi,
91 struct mem_info *mi, u64 period,
475eeab9 92 u64 weight, u64 transaction);
12c14278
ACM
93int64_t hist_entry__cmp(struct hist_entry *left, struct hist_entry *right);
94int64_t hist_entry__collapse(struct hist_entry *left, struct hist_entry *right);
475eeab9 95int hist_entry__transaction_len(void);
316c7136 96int hist_entry__sort_snprintf(struct hist_entry *he, char *bf, size_t size,
000078bc 97 struct hists *hists);
4e4f06e4
ACM
98void hist_entry__free(struct hist_entry *);
99
316c7136
ACM
100void hists__output_resort(struct hists *hists);
101void hists__collapse_resort(struct hists *hists, struct ui_progress *prog);
c8446b9b 102
b079d4e9 103void hists__decay_entries(struct hists *hists, bool zap_user, bool zap_kernel);
ab81f3fd
ACM
104void hists__output_recalc_col_len(struct hists *hists, int max_rows);
105
66f97ed3 106void hists__inc_nr_entries(struct hists *hists, struct hist_entry *h);
316c7136 107void hists__inc_nr_events(struct hists *hists, u32 type);
28a6b6aa 108void events_stats__inc(struct events_stats *stats, u32 type);
52168eea 109size_t events_stats__fprintf(struct events_stats *stats, FILE *fp);
c8446b9b 110
316c7136 111size_t hists__fprintf(struct hists *hists, bool show_header, int max_rows,
064f1981 112 int max_cols, float min_pcnt, FILE *fp);
b09e0190 113
d7b76f09
ACM
114void hists__filter_by_dso(struct hists *hists);
115void hists__filter_by_thread(struct hists *hists);
e94d53eb 116void hists__filter_by_symbol(struct hists *hists);
b09e0190 117
316c7136
ACM
118u16 hists__col_len(struct hists *hists, enum hist_column col);
119void hists__set_col_len(struct hists *hists, enum hist_column col, u16 len);
120bool hists__new_col_len(struct hists *hists, enum hist_column col, u16 len);
7ccf4f90
NK
121void hists__reset_col_len(struct hists *hists);
122void hists__calc_col_len(struct hists *hists, struct hist_entry *he);
8a6c5b26 123
95529be4 124void hists__match(struct hists *leader, struct hists *other);
494d70a1 125int hists__link(struct hists *leader, struct hists *other);
95529be4 126
ea251d51
NK
127struct perf_hpp {
128 char *buf;
129 size_t size;
ea251d51 130 const char *sep;
ea251d51
NK
131 void *ptr;
132};
133
134struct perf_hpp_fmt {
94a0793d
NK
135 int (*header)(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
136 struct perf_evsel *evsel);
137 int (*width)(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
138 struct perf_evsel *evsel);
2c5d4b4a
JO
139 int (*color)(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
140 struct hist_entry *he);
141 int (*entry)(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
142 struct hist_entry *he);
1240005e
JO
143
144 struct list_head list;
ea251d51
NK
145};
146
1240005e
JO
147extern struct list_head perf_hpp__list;
148
149#define perf_hpp__for_each_format(format) \
150 list_for_each_entry(format, &perf_hpp__list, list)
151
ea251d51
NK
152extern struct perf_hpp_fmt perf_hpp__format[];
153
154enum {
345dc0b4 155 /* Matches perf_hpp__format array. */
ea251d51
NK
156 PERF_HPP__OVERHEAD,
157 PERF_HPP__OVERHEAD_SYS,
158 PERF_HPP__OVERHEAD_US,
159 PERF_HPP__OVERHEAD_GUEST_SYS,
160 PERF_HPP__OVERHEAD_GUEST_US,
161 PERF_HPP__SAMPLES,
162 PERF_HPP__PERIOD,
ea251d51
NK
163
164 PERF_HPP__MAX_INDEX
165};
166
1d77822e 167void perf_hpp__init(void);
1240005e
JO
168void perf_hpp__column_register(struct perf_hpp_fmt *format);
169void perf_hpp__column_enable(unsigned col);
ea251d51 170
2f6d9009
NK
171typedef u64 (*hpp_field_fn)(struct hist_entry *he);
172typedef int (*hpp_callback_fn)(struct perf_hpp *hpp, bool front);
a0088adc 173typedef int (*hpp_snprint_fn)(struct perf_hpp *hpp, const char *fmt, ...);
4a62109f
NK
174
175int __hpp__fmt(struct perf_hpp *hpp, struct hist_entry *he,
2f6d9009 176 hpp_field_fn get_field, hpp_callback_fn callback,
4a62109f
NK
177 const char *fmt, hpp_snprint_fn print_fn, bool fmt_percent);
178
a0088adc
NK
179static inline void advance_hpp(struct perf_hpp *hpp, int inc)
180{
181 hpp->buf += inc;
182 hpp->size -= inc;
183}
184
9754c4f9
JO
185static inline size_t perf_hpp__use_color(void)
186{
187 return !symbol_conf.field_sep;
188}
189
190static inline size_t perf_hpp__color_overhead(void)
191{
192 return perf_hpp__use_color() ?
193 (COLOR_MAXLEN + sizeof(PERF_COLOR_RESET)) * PERF_HPP__MAX_INDEX
194 : 0;
195}
196
e248de33
ACM
197struct perf_evlist;
198
9783adf7
NK
199struct hist_browser_timer {
200 void (*timer)(void *arg);
201 void *arg;
202 int refresh;
203};
204
89fe808a 205#ifdef HAVE_SLANG_SUPPORT
1254b51e 206#include "../ui/keysyms.h"
db8fd07a 207int hist_entry__tui_annotate(struct hist_entry *he, struct perf_evsel *evsel,
9783adf7 208 struct hist_browser_timer *hbt);
1254b51e
NK
209
210int perf_evlist__tui_browse_hists(struct perf_evlist *evlist, const char *help,
68d80758 211 struct hist_browser_timer *hbt,
064f1981 212 float min_pcnt,
68d80758 213 struct perf_session_env *env);
66517826 214int script_browse(const char *script_opt);
1254b51e 215#else
7f0030b2 216static inline
1d037ca1
IT
217int perf_evlist__tui_browse_hists(struct perf_evlist *evlist __maybe_unused,
218 const char *help __maybe_unused,
68d80758 219 struct hist_browser_timer *hbt __maybe_unused,
064f1981 220 float min_pcnt __maybe_unused,
68d80758 221 struct perf_session_env *env __maybe_unused)
d67f088e
ACM
222{
223 return 0;
224}
225
316c7136
ACM
226static inline int hist_entry__tui_annotate(struct hist_entry *he __maybe_unused,
227 struct perf_evsel *evsel __maybe_unused,
228 struct hist_browser_timer *hbt __maybe_unused)
46e3e055
ACM
229{
230 return 0;
231}
66517826 232
4f746c95 233static inline int script_browse(const char *script_opt __maybe_unused)
66517826
FT
234{
235 return 0;
236}
237
1e825efb
ME
238#define K_LEFT -1000
239#define K_RIGHT -2000
5f7439e0 240#define K_SWITCH_INPUT_DATA -3000
b09e0190 241#endif
06daaaba 242
316c7136 243unsigned int hists__sort_list_width(struct hists *hists);
3d1d07ec 244#endif /* __PERF_HIST_H */
This page took 0.458348 seconds and 5 git commands to generate.