Merge tag 'sunxi-dt-for-3.17-2' of git://git.kernel.org/pub/scm/linux/kernel/git...
[deliverable/linux.git] / tools / perf / util / session.h
CommitLineData
94c744b6
ACM
1#ifndef __PERF_SESSION_H
2#define __PERF_SESSION_H
3
29f5ffd3 4#include "trace-event.h"
1c02c4d2 5#include "hist.h"
301a0b02 6#include "event.h"
94c744b6 7#include "header.h"
69d2591a 8#include "machine.h"
9de89fe7 9#include "symbol.h"
4aa65636 10#include "thread.h"
f5fc1412 11#include "data.h"
b3165f41 12#include <linux/rbtree.h>
d2709c7c 13#include <linux/perf_event.h>
b3165f41 14
c61e52ee 15struct sample_queue;
a328626b 16struct ip_callchain;
b3165f41 17struct thread;
94c744b6 18
c61e52ee
FW
19struct ordered_samples {
20 u64 last_flush;
d6b17beb
FW
21 u64 next_flush;
22 u64 max_timestamp;
a1225dec 23 struct list_head samples;
020bb75a 24 struct list_head sample_cache;
5c891f38
TG
25 struct list_head to_free;
26 struct sample_queue *sample_buffer;
a1225dec 27 struct sample_queue *last_sample;
5c891f38 28 int sample_buffer_idx;
88660563 29 unsigned int nr_samples;
c61e52ee
FW
30};
31
94c744b6
ACM
32struct perf_session {
33 struct perf_header header;
876650e6 34 struct machines machines;
e248de33 35 struct perf_evlist *evlist;
29f5ffd3 36 struct trace_event tevent;
28a6b6aa 37 struct events_stats stats;
454c407e 38 bool repipe;
919d86d3
AH
39 bool one_mmap;
40 void *one_mmap_addr;
41 u64 one_mmap_offset;
c61e52ee 42 struct ordered_samples ordered_samples;
cc9784bd 43 struct perf_data_file *file;
94c744b6
ACM
44};
45
a6ffaf91
DA
46#define PRINT_IP_OPT_IP (1<<0)
47#define PRINT_IP_OPT_SYM (1<<1)
48#define PRINT_IP_OPT_DSO (1<<2)
49#define PRINT_IP_OPT_SYMOFFSET (1<<3)
b0b35f01 50#define PRINT_IP_OPT_ONELINE (1<<4)
cc8fae1d 51#define PRINT_IP_OPT_SRCLINE (1<<5)
a6ffaf91 52
45694aa7 53struct perf_tool;
301a0b02 54
f5fc1412
JO
55struct perf_session *perf_session__new(struct perf_data_file *file,
56 bool repipe, struct perf_tool *tool);
876650e6 57void perf_session__delete(struct perf_session *session);
94c744b6 58
316c7136 59void perf_event_header__bswap(struct perf_event_header *hdr);
ba21594c 60
316c7136 61int __perf_session__process_events(struct perf_session *session,
6122e4e4 62 u64 data_offset, u64 data_size, u64 size,
45694aa7 63 struct perf_tool *tool);
316c7136 64int perf_session__process_events(struct perf_session *session,
45694aa7 65 struct perf_tool *tool);
301a0b02 66
e30b88a7
DA
67int perf_session_queue_event(struct perf_session *s, union perf_event *event,
68 struct perf_sample *sample, u64 file_offset);
9c501402
DA
69
70void perf_tool__fill_defaults(struct perf_tool *tool);
71
316c7136
ACM
72int perf_session__resolve_callchain(struct perf_session *session,
73 struct perf_evsel *evsel,
1b3a0e95
FW
74 struct thread *thread,
75 struct ip_callchain *chain,
76 struct symbol **parent);
a328626b 77
316c7136 78bool perf_session__has_traces(struct perf_session *session, const char *msg);
27295592 79
eda3913b 80void perf_event__attr_swap(struct perf_event_attr *attr);
ba21594c 81
316c7136 82int perf_session__create_kernel_maps(struct perf_session *session);
f9224c5c 83
7b56cce2 84void perf_session__set_id_hdr_size(struct perf_session *session);
8dc58101 85
23346f21 86static inline
316c7136 87struct machine *perf_session__find_machine(struct perf_session *session, pid_t pid)
23346f21 88{
316c7136 89 return machines__find(&session->machines, pid);
23346f21
ACM
90}
91
92static inline
316c7136 93struct machine *perf_session__findnew_machine(struct perf_session *session, pid_t pid)
23346f21 94{
316c7136 95 return machines__findnew(&session->machines, pid);
23346f21
ACM
96}
97
316c7136
ACM
98struct thread *perf_session__findnew(struct perf_session *session, pid_t pid);
99size_t perf_session__fprintf(struct perf_session *session, FILE *fp);
743eb868 100
316c7136 101size_t perf_session__fprintf_dsos(struct perf_session *session, FILE *fp);
cbf69680 102
417c2ff6
ACM
103size_t perf_session__fprintf_dsos_buildid(struct perf_session *session, FILE *fp,
104 bool (fn)(struct dso *dso, int parm), int parm);
c8446b9b 105
e248de33 106size_t perf_session__fprintf_nr_events(struct perf_session *session, FILE *fp);
d0dd74e8 107
9cbdb702
DA
108struct perf_evsel *perf_session__find_first_evtype(struct perf_session *session,
109 unsigned int type);
110
a2cb3cf2 111void perf_evsel__print_ip(struct perf_evsel *evsel, struct perf_sample *sample,
cc22e575 112 struct addr_location *al,
307cbb92 113 unsigned int print_opts, unsigned int stack_depth);
c0230b2b 114
5d67be97
AB
115int perf_session__cpu_bitmap(struct perf_session *session,
116 const char *cpu_list, unsigned long *cpu_bitmap);
117
fbe96f29 118void perf_session__fprintf_info(struct perf_session *s, FILE *fp, bool full);
da378962
ACM
119
120struct perf_evsel_str_handler;
121
122int __perf_session__set_tracepoints_handlers(struct perf_session *session,
123 const struct perf_evsel_str_handler *assocs,
124 size_t nr_assocs);
125
126#define perf_session__set_tracepoints_handlers(session, array) \
127 __perf_session__set_tracepoints_handlers(session, array, ARRAY_SIZE(array))
33e940a2
ACM
128
129extern volatile int session_done;
130
131#define session_done() (*(volatile int *)(&session_done))
94c744b6 132#endif /* __PERF_SESSION_H */
This page took 0.185301 seconds and 5 git commands to generate.