perf top: Fix -z option behavior
[deliverable/linux.git] / tools / perf / util / session.h
1 #ifndef __PERF_SESSION_H
2 #define __PERF_SESSION_H
3
4 #include "trace-event.h"
5 #include "hist.h"
6 #include "event.h"
7 #include "header.h"
8 #include "machine.h"
9 #include "symbol.h"
10 #include "thread.h"
11 #include "data.h"
12 #include "ordered-events.h"
13 #include <linux/rbtree.h>
14 #include <linux/perf_event.h>
15
16 struct ip_callchain;
17 struct thread;
18
19 struct perf_session {
20 struct perf_header header;
21 struct machines machines;
22 struct perf_evlist *evlist;
23 struct trace_event tevent;
24 struct events_stats stats;
25 bool repipe;
26 bool one_mmap;
27 void *one_mmap_addr;
28 u64 one_mmap_offset;
29 struct ordered_events ordered_events;
30 struct perf_data_file *file;
31 };
32
33 #define PRINT_IP_OPT_IP (1<<0)
34 #define PRINT_IP_OPT_SYM (1<<1)
35 #define PRINT_IP_OPT_DSO (1<<2)
36 #define PRINT_IP_OPT_SYMOFFSET (1<<3)
37 #define PRINT_IP_OPT_ONELINE (1<<4)
38 #define PRINT_IP_OPT_SRCLINE (1<<5)
39
40 struct perf_tool;
41
42 struct perf_session *perf_session__new(struct perf_data_file *file,
43 bool repipe, struct perf_tool *tool);
44 void perf_session__delete(struct perf_session *session);
45
46 void perf_event_header__bswap(struct perf_event_header *hdr);
47
48 int __perf_session__process_events(struct perf_session *session,
49 u64 data_offset, u64 data_size, u64 size,
50 struct perf_tool *tool);
51 int perf_session__process_events(struct perf_session *session,
52 struct perf_tool *tool);
53
54 int perf_session_queue_event(struct perf_session *s, union perf_event *event,
55 struct perf_tool *tool, struct perf_sample *sample,
56 u64 file_offset);
57
58 void perf_tool__fill_defaults(struct perf_tool *tool);
59
60 int perf_session__deliver_event(struct perf_session *session,
61 union perf_event *event,
62 struct perf_sample *sample,
63 struct perf_tool *tool, u64 file_offset);
64
65 int perf_session__resolve_callchain(struct perf_session *session,
66 struct perf_evsel *evsel,
67 struct thread *thread,
68 struct ip_callchain *chain,
69 struct symbol **parent);
70
71 bool perf_session__has_traces(struct perf_session *session, const char *msg);
72
73 void perf_event__attr_swap(struct perf_event_attr *attr);
74
75 int perf_session__create_kernel_maps(struct perf_session *session);
76
77 void perf_session__set_id_hdr_size(struct perf_session *session);
78
79 static inline
80 struct machine *perf_session__find_machine(struct perf_session *session, pid_t pid)
81 {
82 return machines__find(&session->machines, pid);
83 }
84
85 static inline
86 struct machine *perf_session__findnew_machine(struct perf_session *session, pid_t pid)
87 {
88 return machines__findnew(&session->machines, pid);
89 }
90
91 struct thread *perf_session__findnew(struct perf_session *session, pid_t pid);
92 size_t perf_session__fprintf(struct perf_session *session, FILE *fp);
93
94 size_t perf_session__fprintf_dsos(struct perf_session *session, FILE *fp);
95
96 size_t perf_session__fprintf_dsos_buildid(struct perf_session *session, FILE *fp,
97 bool (fn)(struct dso *dso, int parm), int parm);
98
99 size_t perf_session__fprintf_nr_events(struct perf_session *session, FILE *fp);
100
101 struct perf_evsel *perf_session__find_first_evtype(struct perf_session *session,
102 unsigned int type);
103
104 void perf_evsel__print_ip(struct perf_evsel *evsel, struct perf_sample *sample,
105 struct addr_location *al,
106 unsigned int print_opts, unsigned int stack_depth);
107
108 int perf_session__cpu_bitmap(struct perf_session *session,
109 const char *cpu_list, unsigned long *cpu_bitmap);
110
111 void perf_session__fprintf_info(struct perf_session *s, FILE *fp, bool full);
112
113 struct perf_evsel_str_handler;
114
115 int __perf_session__set_tracepoints_handlers(struct perf_session *session,
116 const struct perf_evsel_str_handler *assocs,
117 size_t nr_assocs);
118
119 #define perf_session__set_tracepoints_handlers(session, array) \
120 __perf_session__set_tracepoints_handlers(session, array, ARRAY_SIZE(array))
121
122 extern volatile int session_done;
123
124 #define session_done() (*(volatile int *)(&session_done))
125 #endif /* __PERF_SESSION_H */
This page took 0.057929 seconds and 5 git commands to generate.