perf hist: Adopt filter by dso and by thread methods from the newt browser
[linux-2.6-block.git] / tools / perf / util / session.h
CommitLineData
94c744b6
ACM
1#ifndef __PERF_SESSION_H
2#define __PERF_SESSION_H
3
1c02c4d2 4#include "hist.h"
301a0b02 5#include "event.h"
94c744b6 6#include "header.h"
9de89fe7 7#include "symbol.h"
4aa65636 8#include "thread.h"
b3165f41 9#include <linux/rbtree.h>
f823e441 10#include "../../../include/linux/perf_event.h"
b3165f41 11
c61e52ee 12struct sample_queue;
a328626b 13struct ip_callchain;
b3165f41 14struct thread;
94c744b6 15
c61e52ee
FW
16struct ordered_samples {
17 u64 last_flush;
d6b17beb
FW
18 u64 next_flush;
19 u64 max_timestamp;
c61e52ee
FW
20 struct list_head samples_head;
21 struct sample_queue *last_inserted;
22};
23
94c744b6
ACM
24struct perf_session {
25 struct perf_header header;
26 unsigned long size;
ec913369 27 unsigned long mmap_window;
b3165f41
ACM
28 struct rb_root threads;
29 struct thread *last_match;
1f626bc3 30 struct machine host_machine;
23346f21 31 struct rb_root machines;
1c02c4d2 32 struct rb_root hists_tree;
f823e441 33 unsigned long event_total[PERF_RECORD_MAX];
31d337c4 34 unsigned long unknown_events;
1c02c4d2
ACM
35 /*
36 * FIXME: should point to the first entry in hists_tree and
37 * be a hists instance. Right now its only 'report'
38 * that is using ->hists_tree while all the rest use
39 * ->hists.
40 */
41 struct hists hists;
c019879b 42 u64 sample_type;
94c744b6 43 int fd;
8dc58101 44 bool fd_pipe;
454c407e 45 bool repipe;
ec913369
ACM
46 int cwdlen;
47 char *cwd;
c61e52ee 48 struct ordered_samples ordered_samples;
94c744b6
ACM
49 char filename[0];
50};
51
d6b17beb
FW
52struct perf_event_ops;
53
301a0b02 54typedef int (*event_op)(event_t *self, struct perf_session *session);
d6b17beb
FW
55typedef int (*event_op2)(event_t *self, struct perf_session *session,
56 struct perf_event_ops *ops);
301a0b02
ACM
57
58struct perf_event_ops {
d6b17beb
FW
59 event_op sample,
60 mmap,
61 comm,
62 fork,
63 exit,
64 lost,
65 read,
66 throttle,
67 unthrottle,
68 attr,
69 event_type,
70 tracing_data,
71 build_id;
72 event_op2 finished_round;
73 bool ordered_samples;
301a0b02
ACM
74};
75
454c407e 76struct perf_session *perf_session__new(const char *filename, int mode, bool force, bool repipe);
94c744b6
ACM
77void perf_session__delete(struct perf_session *self);
78
ba21594c
ACM
79void perf_event_header__bswap(struct perf_event_header *self);
80
6122e4e4
ACM
81int __perf_session__process_events(struct perf_session *self,
82 u64 data_offset, u64 data_size, u64 size,
83 struct perf_event_ops *ops);
301a0b02 84int perf_session__process_events(struct perf_session *self,
ec913369 85 struct perf_event_ops *event_ops);
301a0b02 86
b3c9ac08
ACM
87struct map_symbol *perf_session__resolve_callchain(struct perf_session *self,
88 struct thread *thread,
89 struct ip_callchain *chain,
90 struct symbol **parent);
a328626b 91
d549c769 92bool perf_session__has_traces(struct perf_session *self, const char *msg);
27295592 93
a1645ce1 94int perf_session__set_kallsyms_ref_reloc_sym(struct map **maps,
56b03f3c
ACM
95 const char *symbol_name,
96 u64 addr);
56b03f3c 97
ba21594c
ACM
98void mem_bswap_64(void *src, int byte_size);
99
a1645ce1 100int perf_session__create_kernel_maps(struct perf_session *self);
f9224c5c 101
8dc58101
TZ
102int do_read(int fd, void *buf, size_t size);
103void perf_session__update_sample_type(struct perf_session *self);
104
23346f21
ACM
105static inline
106struct machine *perf_session__find_host_machine(struct perf_session *self)
107{
1f626bc3 108 return &self->host_machine;
23346f21
ACM
109}
110
111static inline
112struct machine *perf_session__find_machine(struct perf_session *self, pid_t pid)
113{
1f626bc3
ACM
114 if (pid == HOST_KERNEL_ID)
115 return &self->host_machine;
23346f21
ACM
116 return machines__find(&self->machines, pid);
117}
118
119static inline
120struct machine *perf_session__findnew_machine(struct perf_session *self, pid_t pid)
121{
1f626bc3
ACM
122 if (pid == HOST_KERNEL_ID)
123 return &self->host_machine;
23346f21
ACM
124 return machines__findnew(&self->machines, pid);
125}
126
127static inline
128void perf_session__process_machines(struct perf_session *self,
129 machine__process_t process)
130{
1f626bc3 131 process(&self->host_machine, self);
23346f21
ACM
132 return machines__process(&self->machines, process, self);
133}
cbf69680 134
1f626bc3 135size_t perf_session__fprintf_dsos(struct perf_session *self, FILE *fp);
cbf69680
ACM
136
137static inline
138size_t perf_session__fprintf_dsos_buildid(struct perf_session *self, FILE *fp,
139 bool with_hits)
140{
141 return machines__fprintf_dsos_buildid(&self->machines, fp, with_hits);
142}
94c744b6 143#endif /* __PERF_SESSION_H */