]> git.proxmox.com Git - mirror_ubuntu-disco-kernel.git/blame - tools/perf/util/hist.h
perf trace scripts: Fix typos in perf-trace-python.txt
[mirror_ubuntu-disco-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>
3d1d07ec 5#include "callchain.h"
3d1d07ec 6
3d1d07ec 7extern struct callchain_param callchain_param;
3d1d07ec 8
4e4f06e4
ACM
9struct hist_entry;
10struct addr_location;
11struct symbol;
d403d0ac 12struct rb_root;
4e4f06e4 13
ef7b93a1
ACM
14struct objdump_line {
15 struct list_head node;
16 s64 offset;
17 char *line;
18};
19
20void objdump_line__free(struct objdump_line *self);
21struct objdump_line *objdump__get_next_ip_line(struct list_head *head,
22 struct objdump_line *pos);
23
24struct sym_hist {
25 u64 sum;
26 u64 ip[0];
27};
28
29struct sym_ext {
30 struct rb_node node;
31 double percent;
32 char *path;
33};
34
35struct sym_priv {
36 struct sym_hist *hist;
37 struct sym_ext *ext;
38};
39
1c02c4d2
ACM
40struct events_stats {
41 u64 total;
42 u64 lost;
43};
44
45struct hists {
46 struct rb_node rb_node;
47 struct rb_root entries;
fefb0b94 48 u64 nr_entries;
1c02c4d2
ACM
49 struct events_stats stats;
50 u64 config;
51 u64 event_stream;
52 u32 type;
fefb0b94 53 u32 max_sym_namelen;
1c02c4d2
ACM
54};
55
56struct hist_entry *__hists__add_entry(struct hists *self,
57 struct addr_location *al,
58 struct symbol *parent, u64 count);
3d1d07ec
JK
59extern int64_t hist_entry__cmp(struct hist_entry *, struct hist_entry *);
60extern int64_t hist_entry__collapse(struct hist_entry *, struct hist_entry *);
1c02c4d2
ACM
61int hist_entry__fprintf(struct hist_entry *self, struct hists *pair_hists,
62 bool show_displacement, long displacement, FILE *fp,
63 u64 total);
64int hist_entry__snprintf(struct hist_entry *self, char *bf, size_t size,
65 struct hists *pair_hists, bool show_displacement,
66 long displacement, bool color, u64 total);
4e4f06e4
ACM
67void hist_entry__free(struct hist_entry *);
68
fefb0b94 69void hists__output_resort(struct hists *self);
1c02c4d2
ACM
70void hists__collapse_resort(struct hists *self);
71size_t hists__fprintf(struct hists *self, struct hists *pair,
72 bool show_displacement, FILE *fp);
b09e0190 73
ef7b93a1
ACM
74int hist_entry__inc_addr_samples(struct hist_entry *self, u64 ip);
75int hist_entry__annotate(struct hist_entry *self, struct list_head *head);
76
b09e0190
ACM
77void hists__filter_by_dso(struct hists *self, const struct dso *dso);
78void hists__filter_by_thread(struct hists *self, const struct thread *thread);
79
80#ifdef NO_NEWT_SUPPORT
8769e1c7 81static inline int hists__browse(struct hists *self __used,
b09e0190
ACM
82 const char *helpline __used,
83 const char *input_name __used)
84{
85 return 0;
86}
87#else
88int hists__browse(struct hists *self, const char *helpline,
89 const char *input_name);
90#endif
3d1d07ec 91#endif /* __PERF_HIST_H */