1#ifndef __PERF_HIST_H
2#define __PERF_HIST_H
3
4#include <linux/types.h>
5#include <pthread.h>
6#include "callchain.h"
7
8extern struct callchain_param callchain_param;
9
10struct hist_entry;
11struct addr_location;
12struct symbol;
13
14
15
16
17
18
19
20
21
22
23
24
25
26struct events_stats {
27 u64 total_period;
28 u64 total_lost;
29 u64 total_invalid_chains;
30 u32 nr_events[PERF_RECORD_HEADER_MAX];
31 u32 nr_lost_warned;
32 u32 nr_unknown_events;
33 u32 nr_invalid_chains;
34 u32 nr_unknown_id;
35};
36
37enum hist_column {
38 HISTC_SYMBOL,
39 HISTC_DSO,
40 HISTC_THREAD,
41 HISTC_COMM,
42 HISTC_PARENT,
43 HISTC_CPU,
44 HISTC_NR_COLS,
45};
46
47struct thread;
48struct dso;
49
50struct hists {
51 struct rb_root entries_in_array[2];
52 struct rb_root *entries_in;
53 struct rb_root entries;
54 struct rb_root entries_collapsed;
55 u64 nr_entries;
56 const struct thread *thread_filter;
57 const struct dso *dso_filter;
58 pthread_mutex_t lock;
59 struct events_stats stats;
60 u64 event_stream;
61 u16 col_len[HISTC_NR_COLS];
62
63 struct callchain_cursor callchain_cursor;
64};
65
66struct hist_entry *__hists__add_entry(struct hists *self,
67 struct addr_location *al,
68 struct symbol *parent, u64 period);
69int64_t hist_entry__cmp(struct hist_entry *left, struct hist_entry *right);
70int64_t hist_entry__collapse(struct hist_entry *left, struct hist_entry *right);
71int hist_entry__snprintf(struct hist_entry *self, char *bf, size_t size,
72 struct hists *hists);
73void hist_entry__free(struct hist_entry *);
74
75void hists__output_resort(struct hists *self);
76void hists__output_resort_threaded(struct hists *hists);
77void hists__collapse_resort(struct hists *self);
78void hists__collapse_resort_threaded(struct hists *hists);
79
80void hists__decay_entries(struct hists *hists, bool zap_user, bool zap_kernel);
81void hists__decay_entries_threaded(struct hists *hists, bool zap_user,
82 bool zap_kernel);
83void hists__output_recalc_col_len(struct hists *hists, int max_rows);
84
85void hists__inc_nr_events(struct hists *self, u32 type);
86size_t hists__fprintf_nr_events(struct hists *self, FILE *fp);
87
88size_t hists__fprintf(struct hists *self, struct hists *pair,
89 bool show_displacement, bool show_header,
90 int max_rows, int max_cols, FILE *fp);
91
92int hist_entry__inc_addr_samples(struct hist_entry *self, int evidx, u64 addr);
93int hist_entry__annotate(struct hist_entry *self, size_t privsize);
94
95void hists__filter_by_dso(struct hists *hists);
96void hists__filter_by_thread(struct hists *hists);
97
98u16 hists__col_len(struct hists *self, enum hist_column col);
99void hists__set_col_len(struct hists *self, enum hist_column col, u16 len);
100bool hists__new_col_len(struct hists *self, enum hist_column col, u16 len);
101
102struct perf_evlist;
103
104#ifdef NO_NEWT_SUPPORT
105static inline
106int perf_evlist__tui_browse_hists(struct perf_evlist *evlist __used,
107 const char *help __used,
108 void(*timer)(void *arg) __used,
109 void *arg __used,
110 int refresh __used)
111{
112 return 0;
113}
114
115static inline int hist_entry__tui_annotate(struct hist_entry *self __used,
116 int evidx __used,
117 void(*timer)(void *arg) __used,
118 void *arg __used,
119 int delay_secs __used)
120{
121 return 0;
122}
123#define K_LEFT -1
124#define K_RIGHT -2
125#else
126#include "ui/keysyms.h"
127int hist_entry__tui_annotate(struct hist_entry *he, int evidx,
128 void(*timer)(void *arg), void *arg, int delay_secs);
129
130int perf_evlist__tui_browse_hists(struct perf_evlist *evlist, const char *help,
131 void(*timer)(void *arg), void *arg,
132 int refresh);
133#endif
134
135unsigned int hists__sort_list_width(struct hists *self);
136
137#endif
138