2009-12-11 23:24:02 +00:00
|
|
|
#ifndef __PERF_SESSION_H
|
|
|
|
#define __PERF_SESSION_H
|
|
|
|
|
2009-12-13 21:50:25 +00:00
|
|
|
#include "event.h"
|
2009-12-11 23:24:02 +00:00
|
|
|
#include "header.h"
|
perf session: Move kmaps to perf_session
There is still some more work to do to disentangle map creation
from DSO loading, but this happens only for the kernel, and for
the early adopters of perf diff, where this disentanglement
matters most, we'll be testing different kernels, so no problem
here.
Further clarification: right now we create the kernel maps for
the various modules and discontiguous kernel text maps when
loading the DSO, we should do it as a two step process, first
creating the maps, for multiple mappings with the same DSO
store, then doing the dso load just once, for the first hit on
one of the maps sharing this DSO backing store.
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Frédéric Weisbecker <fweisbec@gmail.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Paul Mackerras <paulus@samba.org>
LKML-Reference: <1260741029-4430-6-git-send-email-acme@infradead.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2009-12-13 21:50:29 +00:00
|
|
|
#include "thread.h"
|
2009-12-13 21:50:28 +00:00
|
|
|
#include <linux/rbtree.h>
|
2009-12-14 17:06:01 +00:00
|
|
|
#include "../../../include/linux/perf_event.h"
|
2009-12-13 21:50:28 +00:00
|
|
|
|
2009-12-14 16:22:59 +00:00
|
|
|
struct ip_callchain;
|
2009-12-13 21:50:28 +00:00
|
|
|
struct thread;
|
2009-12-14 16:22:59 +00:00
|
|
|
struct symbol;
|
2009-12-11 23:24:02 +00:00
|
|
|
|
|
|
|
struct perf_session {
|
|
|
|
struct perf_header header;
|
|
|
|
unsigned long size;
|
2009-12-13 21:50:27 +00:00
|
|
|
unsigned long mmap_window;
|
perf session: Move kmaps to perf_session
There is still some more work to do to disentangle map creation
from DSO loading, but this happens only for the kernel, and for
the early adopters of perf diff, where this disentanglement
matters most, we'll be testing different kernels, so no problem
here.
Further clarification: right now we create the kernel maps for
the various modules and discontiguous kernel text maps when
loading the DSO, we should do it as a two step process, first
creating the maps, for multiple mappings with the same DSO
store, then doing the dso load just once, for the first hit on
one of the maps sharing this DSO backing store.
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Frédéric Weisbecker <fweisbec@gmail.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Paul Mackerras <paulus@samba.org>
LKML-Reference: <1260741029-4430-6-git-send-email-acme@infradead.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
2009-12-13 21:50:29 +00:00
|
|
|
struct map_groups kmaps;
|
2009-12-13 21:50:28 +00:00
|
|
|
struct rb_root threads;
|
|
|
|
struct thread *last_match;
|
2009-12-14 17:06:01 +00:00
|
|
|
struct events_stats events_stats;
|
|
|
|
unsigned long event_total[PERF_RECORD_MAX];
|
2009-12-14 15:10:39 +00:00
|
|
|
struct rb_root hists;
|
2009-12-14 16:23:00 +00:00
|
|
|
u64 sample_type;
|
2009-12-11 23:24:02 +00:00
|
|
|
int fd;
|
2009-12-13 21:50:27 +00:00
|
|
|
int cwdlen;
|
|
|
|
char *cwd;
|
2009-12-11 23:24:02 +00:00
|
|
|
char filename[0];
|
|
|
|
};
|
|
|
|
|
2009-12-13 21:50:25 +00:00
|
|
|
typedef int (*event_op)(event_t *self, struct perf_session *session);
|
|
|
|
|
|
|
|
struct perf_event_ops {
|
|
|
|
event_op process_sample_event;
|
|
|
|
event_op process_mmap_event;
|
|
|
|
event_op process_comm_event;
|
|
|
|
event_op process_fork_event;
|
|
|
|
event_op process_exit_event;
|
|
|
|
event_op process_lost_event;
|
|
|
|
event_op process_read_event;
|
|
|
|
event_op process_throttle_event;
|
|
|
|
event_op process_unthrottle_event;
|
2009-12-14 16:23:00 +00:00
|
|
|
int (*sample_type_check)(struct perf_session *session);
|
2009-12-13 21:50:25 +00:00
|
|
|
unsigned long total_unknown;
|
2009-12-13 21:50:27 +00:00
|
|
|
bool full_paths;
|
2009-12-13 21:50:25 +00:00
|
|
|
};
|
|
|
|
|
2009-12-15 22:04:39 +00:00
|
|
|
struct perf_session *perf_session__new(const char *filename, int mode, bool force);
|
2009-12-11 23:24:02 +00:00
|
|
|
void perf_session__delete(struct perf_session *self);
|
|
|
|
|
2009-12-13 21:50:25 +00:00
|
|
|
int perf_session__process_events(struct perf_session *self,
|
2009-12-13 21:50:27 +00:00
|
|
|
struct perf_event_ops *event_ops);
|
2009-12-13 21:50:25 +00:00
|
|
|
|
2009-12-14 16:22:59 +00:00
|
|
|
struct symbol **perf_session__resolve_callchain(struct perf_session *self,
|
|
|
|
struct thread *thread,
|
|
|
|
struct ip_callchain *chain,
|
|
|
|
struct symbol **parent);
|
|
|
|
|
2009-12-27 23:37:01 +00:00
|
|
|
int perf_session__has_traces(struct perf_session *self);
|
|
|
|
|
2009-12-13 21:50:25 +00:00
|
|
|
int perf_header__read_build_ids(int input, u64 offset, u64 file_size);
|
|
|
|
|
2009-12-11 23:24:02 +00:00
|
|
|
#endif /* __PERF_SESSION_H */
|