perf hist: Make event__totals per hists
[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>
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;
c8446b9b
ACM
43 u32 nr_events[PERF_RECORD_HEADER_MAX];
44 u32 nr_unknown_events;
1c02c4d2
ACM
45};
46
47struct hists {
48 struct rb_node rb_node;
49 struct rb_root entries;
fefb0b94 50 u64 nr_entries;
1c02c4d2
ACM
51 struct events_stats stats;
52 u64 config;
53 u64 event_stream;
54 u32 type;
fefb0b94 55 u32 max_sym_namelen;
1c02c4d2
ACM
56};
57
58struct hist_entry *__hists__add_entry(struct hists *self,
59 struct addr_location *al,
60 struct symbol *parent, u64 count);
3d1d07ec
JK
61extern int64_t hist_entry__cmp(struct hist_entry *, struct hist_entry *);
62extern int64_t hist_entry__collapse(struct hist_entry *, struct hist_entry *);
1c02c4d2
ACM
63int hist_entry__fprintf(struct hist_entry *self, struct hists *pair_hists,
64 bool show_displacement, long displacement, FILE *fp,
65 u64 total);
66int hist_entry__snprintf(struct hist_entry *self, char *bf, size_t size,
67 struct hists *pair_hists, bool show_displacement,
68 long displacement, bool color, u64 total);
4e4f06e4
ACM
69void hist_entry__free(struct hist_entry *);
70
fefb0b94 71void hists__output_resort(struct hists *self);
1c02c4d2 72void hists__collapse_resort(struct hists *self);
c8446b9b
ACM
73
74void hists__inc_nr_events(struct hists *self, u32 type);
75size_t hists__fprintf_nr_events(struct hists *self, FILE *fp);
76
1c02c4d2
ACM
77size_t hists__fprintf(struct hists *self, struct hists *pair,
78 bool show_displacement, FILE *fp);
b09e0190 79
ef7b93a1
ACM
80int hist_entry__inc_addr_samples(struct hist_entry *self, u64 ip);
81int hist_entry__annotate(struct hist_entry *self, struct list_head *head);
82
b09e0190
ACM
83void hists__filter_by_dso(struct hists *self, const struct dso *dso);
84void hists__filter_by_thread(struct hists *self, const struct thread *thread);
85
86#ifdef NO_NEWT_SUPPORT
8769e1c7 87static inline int hists__browse(struct hists *self __used,
b09e0190
ACM
88 const char *helpline __used,
89 const char *input_name __used)
90{
91 return 0;
92}
93#else
94int hists__browse(struct hists *self, const char *helpline,
95 const char *input_name);
96#endif
3d1d07ec 97#endif /* __PERF_HIST_H */
This page took 0.176925 seconds and 5 git commands to generate.