]> bbs.cooldavid.org Git - net-next-2.6.git/blame - tools/perf/util/session.h
Merge git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging-2.6
[net-next-2.6.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 28 struct rb_root threads;
720a3aeb 29 struct list_head dead_threads;
b3165f41 30 struct thread *last_match;
1f626bc3 31 struct machine host_machine;
23346f21 32 struct rb_root machines;
1c02c4d2 33 struct rb_root hists_tree;
1c02c4d2
ACM
34 /*
35 * FIXME: should point to the first entry in hists_tree and
36 * be a hists instance. Right now its only 'report'
37 * that is using ->hists_tree while all the rest use
38 * ->hists.
39 */
40 struct hists hists;
c019879b 41 u64 sample_type;
94c744b6 42 int fd;
8dc58101 43 bool fd_pipe;
454c407e 44 bool repipe;
ec913369
ACM
45 int cwdlen;
46 char *cwd;
c61e52ee 47 struct ordered_samples ordered_samples;
94c744b6
ACM
48 char filename[0];
49};
50
d6b17beb
FW
51struct perf_event_ops;
52
301a0b02 53typedef int (*event_op)(event_t *self, struct perf_session *session);
d6b17beb
FW
54typedef int (*event_op2)(event_t *self, struct perf_session *session,
55 struct perf_event_ops *ops);
301a0b02
ACM
56
57struct perf_event_ops {
d6b17beb
FW
58 event_op sample,
59 mmap,
60 comm,
61 fork,
62 exit,
63 lost,
64 read,
65 throttle,
66 unthrottle,
67 attr,
68 event_type,
69 tracing_data,
70 build_id;
71 event_op2 finished_round;
72 bool ordered_samples;
301a0b02
ACM
73};
74
454c407e 75struct perf_session *perf_session__new(const char *filename, int mode, bool force, bool repipe);
94c744b6
ACM
76void perf_session__delete(struct perf_session *self);
77
ba21594c
ACM
78void perf_event_header__bswap(struct perf_event_header *self);
79
6122e4e4
ACM
80int __perf_session__process_events(struct perf_session *self,
81 u64 data_offset, u64 data_size, u64 size,
82 struct perf_event_ops *ops);
301a0b02 83int perf_session__process_events(struct perf_session *self,
ec913369 84 struct perf_event_ops *event_ops);
301a0b02 85
b3c9ac08
ACM
86struct map_symbol *perf_session__resolve_callchain(struct perf_session *self,
87 struct thread *thread,
88 struct ip_callchain *chain,
89 struct symbol **parent);
a328626b 90
d549c769 91bool perf_session__has_traces(struct perf_session *self, const char *msg);
27295592 92
a1645ce1 93int perf_session__set_kallsyms_ref_reloc_sym(struct map **maps,
56b03f3c
ACM
94 const char *symbol_name,
95 u64 addr);
56b03f3c 96
ba21594c
ACM
97void mem_bswap_64(void *src, int byte_size);
98
a1645ce1 99int perf_session__create_kernel_maps(struct perf_session *self);
f9224c5c 100
8dc58101
TZ
101int do_read(int fd, void *buf, size_t size);
102void perf_session__update_sample_type(struct perf_session *self);
720a3aeb 103void perf_session__remove_thread(struct perf_session *self, struct thread *th);
8dc58101 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 136
f869097e
ACM
137size_t perf_session__fprintf_dsos_buildid(struct perf_session *self,
138 FILE *fp, bool with_hits);
c8446b9b
ACM
139
140static inline
141size_t perf_session__fprintf_nr_events(struct perf_session *self, FILE *fp)
142{
143 return hists__fprintf_nr_events(&self->hists, fp);
144}
94c744b6 145#endif /* __PERF_SESSION_H */