perf session: Event statistics also are per session
[deliverable/linux.git] / tools / perf / util / session.h
CommitLineData
94c744b6
ACM
1#ifndef __PERF_SESSION_H
2#define __PERF_SESSION_H
3
301a0b02 4#include "event.h"
94c744b6 5#include "header.h"
4aa65636 6#include "thread.h"
b3165f41 7#include <linux/rbtree.h>
f823e441 8#include "../../../include/linux/perf_event.h"
b3165f41 9
a328626b 10struct ip_callchain;
b3165f41 11struct thread;
a328626b 12struct symbol;
4aa65636 13struct symbol_conf;
94c744b6
ACM
14
15struct perf_session {
16 struct perf_header header;
17 unsigned long size;
ec913369 18 unsigned long mmap_window;
4aa65636 19 struct map_groups kmaps;
b3165f41
ACM
20 struct rb_root threads;
21 struct thread *last_match;
f823e441
ACM
22 struct events_stats events_stats;
23 unsigned long event_total[PERF_RECORD_MAX];
4e4f06e4 24 struct rb_root hists;
c019879b 25 u64 sample_type;
94c744b6 26 int fd;
ec913369
ACM
27 int cwdlen;
28 char *cwd;
4aa65636 29 bool use_modules;
4e4f06e4 30 bool use_callchain;
94c744b6
ACM
31 char filename[0];
32};
33
301a0b02
ACM
34typedef int (*event_op)(event_t *self, struct perf_session *session);
35
36struct perf_event_ops {
37 event_op process_sample_event;
38 event_op process_mmap_event;
39 event_op process_comm_event;
40 event_op process_fork_event;
41 event_op process_exit_event;
42 event_op process_lost_event;
43 event_op process_read_event;
44 event_op process_throttle_event;
45 event_op process_unthrottle_event;
c019879b 46 int (*sample_type_check)(struct perf_session *session);
301a0b02 47 unsigned long total_unknown;
ec913369 48 bool full_paths;
301a0b02
ACM
49};
50
51struct perf_session *perf_session__new(const char *filename, int mode,
4aa65636 52 bool force, struct symbol_conf *conf);
94c744b6
ACM
53void perf_session__delete(struct perf_session *self);
54
301a0b02 55int perf_session__process_events(struct perf_session *self,
ec913369 56 struct perf_event_ops *event_ops);
301a0b02 57
a328626b
ACM
58struct symbol **perf_session__resolve_callchain(struct perf_session *self,
59 struct thread *thread,
60 struct ip_callchain *chain,
61 struct symbol **parent);
62
301a0b02
ACM
63int perf_header__read_build_ids(int input, u64 offset, u64 file_size);
64
94c744b6 65#endif /* __PERF_SESSION_H */
This page took 0.02647 seconds and 5 git commands to generate.