perf hist: Make event__totals per hists
[safe/jmp/linux-2.6] / tools / perf / util / hist.h
1 #ifndef __PERF_HIST_H
2 #define __PERF_HIST_H
3
4 #include <linux/types.h>
5 #include "callchain.h"
6
7 extern struct callchain_param callchain_param;
8
9 struct hist_entry;
10 struct addr_location;
11 struct symbol;
12 struct rb_root;
13
14 struct objdump_line {
15         struct list_head node;
16         s64              offset;
17         char             *line;
18 };
19
20 void objdump_line__free(struct objdump_line *self);
21 struct objdump_line *objdump__get_next_ip_line(struct list_head *head,
22                                                struct objdump_line *pos);
23
24 struct sym_hist {
25         u64             sum;
26         u64             ip[0];
27 };
28
29 struct sym_ext {
30         struct rb_node  node;
31         double          percent;
32         char            *path;
33 };
34
35 struct sym_priv {
36         struct sym_hist *hist;
37         struct sym_ext  *ext;
38 };
39
40 struct events_stats {
41         u64 total;
42         u64 lost;
43         u32 nr_events[PERF_RECORD_HEADER_MAX];
44         u32 nr_unknown_events;
45 };
46
47 struct hists {
48         struct rb_node          rb_node;
49         struct rb_root          entries;
50         u64                     nr_entries;
51         struct events_stats     stats;
52         u64                     config;
53         u64                     event_stream;
54         u32                     type;
55         u32                     max_sym_namelen;
56 };
57
58 struct hist_entry *__hists__add_entry(struct hists *self,
59                                       struct addr_location *al,
60                                       struct symbol *parent, u64 count);
61 extern int64_t hist_entry__cmp(struct hist_entry *, struct hist_entry *);
62 extern int64_t hist_entry__collapse(struct hist_entry *, struct hist_entry *);
63 int hist_entry__fprintf(struct hist_entry *self, struct hists *pair_hists,
64                         bool show_displacement, long displacement, FILE *fp,
65                         u64 total);
66 int 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);
69 void hist_entry__free(struct hist_entry *);
70
71 void hists__output_resort(struct hists *self);
72 void hists__collapse_resort(struct hists *self);
73
74 void hists__inc_nr_events(struct hists *self, u32 type);
75 size_t hists__fprintf_nr_events(struct hists *self, FILE *fp);
76
77 size_t hists__fprintf(struct hists *self, struct hists *pair,
78                       bool show_displacement, FILE *fp);
79
80 int hist_entry__inc_addr_samples(struct hist_entry *self, u64 ip);
81 int hist_entry__annotate(struct hist_entry *self, struct list_head *head);
82
83 void hists__filter_by_dso(struct hists *self, const struct dso *dso);
84 void hists__filter_by_thread(struct hists *self, const struct thread *thread);
85
86 #ifdef NO_NEWT_SUPPORT
87 static inline int hists__browse(struct hists *self __used,
88                                 const char *helpline __used,
89                                 const char *input_name __used)
90 {
91         return 0;
92 }
93 #else
94 int hists__browse(struct hists *self, const char *helpline,
95                   const char *input_name);
96 #endif
97 #endif  /* __PERF_HIST_H */