2009-12-12 07:24:02 +08:00
|
|
|
#ifndef __PERF_SESSION_H
|
|
|
|
#define __PERF_SESSION_H
|
|
|
|
|
2009-12-14 05:50:25 +08:00
|
|
|
#include "event.h"
|
2009-12-12 07:24:02 +08: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-14 05:50:29 +08:00
|
|
|
#include "thread.h"
|
2009-12-14 05:50:28 +08:00
|
|
|
#include <linux/rbtree.h>
|
2009-12-15 01:06:01 +08:00
|
|
|
#include "../../../include/linux/perf_event.h"
|
2009-12-14 05:50:28 +08:00
|
|
|
|
2009-12-15 00:22:59 +08:00
|
|
|
struct ip_callchain;
|
2009-12-14 05:50:28 +08:00
|
|
|
struct thread;
|
2009-12-15 00:22:59 +08:00
|
|
|
struct symbol;
|
2009-12-12 07:24:02 +08:00
|
|
|
|
|
|
|
struct perf_session {
|
|
|
|
struct perf_header header;
|
|
|
|
unsigned long size;
|
2009-12-14 05:50:27 +08: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-14 05:50:29 +08:00
|
|
|
struct map_groups kmaps;
|
2009-12-14 05:50:28 +08:00
|
|
|
struct rb_root threads;
|
|
|
|
struct thread *last_match;
|
2010-01-05 02:19:29 +08:00
|
|
|
struct map *vmlinux_maps[MAP__NR_TYPES];
|
2009-12-15 01:06:01 +08:00
|
|
|
struct events_stats events_stats;
|
|
|
|
unsigned long event_total[PERF_RECORD_MAX];
|
2009-12-28 07:37:03 +08:00
|
|
|
unsigned long unknown_events;
|
2009-12-14 23:10:39 +08:00
|
|
|
struct rb_root hists;
|
2009-12-15 00:23:00 +08:00
|
|
|
u64 sample_type;
|
2009-12-12 07:24:02 +08:00
|
|
|
int fd;
|
2009-12-14 05:50:27 +08:00
|
|
|
int cwdlen;
|
|
|
|
char *cwd;
|
2009-12-12 07:24:02 +08:00
|
|
|
char filename[0];
|
|
|
|
};
|
|
|
|
|
2009-12-14 05:50:25 +08:00
|
|
|
typedef int (*event_op)(event_t *self, struct perf_session *session);
|
|
|
|
|
|
|
|
struct perf_event_ops {
|
2009-12-28 07:37:05 +08:00
|
|
|
event_op sample,
|
|
|
|
mmap,
|
|
|
|
comm,
|
|
|
|
fork,
|
|
|
|
exit,
|
|
|
|
lost,
|
|
|
|
read,
|
|
|
|
throttle,
|
|
|
|
unthrottle;
|
2009-12-14 05:50:25 +08:00
|
|
|
};
|
|
|
|
|
2009-12-16 06:04:39 +08:00
|
|
|
struct perf_session *perf_session__new(const char *filename, int mode, bool force);
|
2009-12-12 07:24:02 +08:00
|
|
|
void perf_session__delete(struct perf_session *self);
|
|
|
|
|
2009-12-14 05:50:25 +08:00
|
|
|
int perf_session__process_events(struct perf_session *self,
|
2009-12-14 05:50:27 +08:00
|
|
|
struct perf_event_ops *event_ops);
|
2009-12-14 05:50:25 +08:00
|
|
|
|
2009-12-15 00:22:59 +08:00
|
|
|
struct symbol **perf_session__resolve_callchain(struct perf_session *self,
|
|
|
|
struct thread *thread,
|
|
|
|
struct ip_callchain *chain,
|
|
|
|
struct symbol **parent);
|
|
|
|
|
2009-12-28 07:37:02 +08:00
|
|
|
bool perf_session__has_traces(struct perf_session *self, const char *msg);
|
2009-12-28 07:37:01 +08:00
|
|
|
|
2009-12-14 05:50:25 +08:00
|
|
|
int perf_header__read_build_ids(int input, u64 offset, u64 file_size);
|
|
|
|
|
2009-12-12 07:24:02 +08:00
|
|
|
#endif /* __PERF_SESSION_H */
|