]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - tools/perf/util/event.h
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux
[mirror_ubuntu-bionic-kernel.git] / tools / perf / util / event.h
CommitLineData
cdd6c482
IM
1#ifndef __PERF_RECORD_H
2#define __PERF_RECORD_H
8b40f521 3
4a58e611 4#include <limits.h>
482ad897 5#include <stdio.h>
e8b3ae40 6#include <linux/kernel.h>
4a58e611 7
1fe2c106 8#include "../perf.h"
4383db88 9#include "build-id.h"
0c4e774f 10#include "perf_regs.h"
1fe2c106 11
1fe2c106
FW
12struct mmap_event {
13 struct perf_event_header header;
14 u32 pid, tid;
15 u64 start;
16 u64 len;
17 u64 pgoff;
18 char filename[PATH_MAX];
19};
20
5c5e854b
SE
21struct mmap2_event {
22 struct perf_event_header header;
23 u32 pid, tid;
24 u64 start;
25 u64 len;
26 u64 pgoff;
27 u32 maj;
28 u32 min;
29 u64 ino;
30 u64 ino_generation;
7ef80703
DZ
31 u32 prot;
32 u32 flags;
5c5e854b
SE
33 char filename[PATH_MAX];
34};
35
1fe2c106
FW
36struct comm_event {
37 struct perf_event_header header;
38 u32 pid, tid;
39 char comm[16];
40};
41
f3b3614a
HB
42struct namespaces_event {
43 struct perf_event_header header;
44 u32 pid, tid;
45 u64 nr_namespaces;
46 struct perf_ns_link_info link_info[];
47};
48
1fe2c106
FW
49struct fork_event {
50 struct perf_event_header header;
51 u32 pid, ppid;
52 u32 tid, ptid;
393b2ad8 53 u64 time;
1fe2c106
FW
54};
55
56struct lost_event {
57 struct perf_event_header header;
58 u64 id;
59 u64 lost;
60};
61
c4937a91
KL
62struct lost_samples_event {
63 struct perf_event_header header;
64 u64 lost;
65};
66
18408ddc
PZ
67/*
68 * PERF_FORMAT_ENABLED | PERF_FORMAT_RUNNING | PERF_FORMAT_ID
69 */
1fe2c106
FW
70struct read_event {
71 struct perf_event_header header;
dc02bf71 72 u32 pid, tid;
1fe2c106
FW
73 u64 value;
74 u64 time_enabled;
75 u64 time_running;
76 u64 id;
77};
78
dd96c46b
JO
79struct throttle_event {
80 struct perf_event_header header;
81 u64 time;
82 u64 id;
83 u64 stream_id;
84};
a2854124
FW
85
86#define PERF_SAMPLE_MASK \
87 (PERF_SAMPLE_IP | PERF_SAMPLE_TID | \
88 PERF_SAMPLE_TIME | PERF_SAMPLE_ADDR | \
89 PERF_SAMPLE_ID | PERF_SAMPLE_STREAM_ID | \
75562573
AH
90 PERF_SAMPLE_CPU | PERF_SAMPLE_PERIOD | \
91 PERF_SAMPLE_IDENTIFIER)
a2854124 92
a65cb4b9
JO
93/* perf sample has 16 bits size limit */
94#define PERF_SAMPLE_MAX_SIZE (1 << 16)
95
180f95e2 96struct sample_event {
fd39e055
AV
97 struct perf_event_header header;
98 u64 array[];
99};
100
0f6a3015 101struct regs_dump {
5b95a4a3 102 u64 abi;
352ea45a 103 u64 mask;
0f6a3015 104 u64 *regs;
0c4e774f
JO
105
106 /* Cached values/mask filled by first register access. */
107 u64 cache_regs[PERF_REGS_MAX];
108 u64 cache_mask;
0f6a3015
JO
109};
110
111struct stack_dump {
112 u16 offset;
113 u64 size;
114 char *data;
115};
116
9ede473c
JO
117struct sample_read_value {
118 u64 value;
119 u64 id;
120};
121
122struct sample_read {
123 u64 time_enabled;
124 u64 time_running;
125 union {
126 struct {
127 u64 nr;
128 struct sample_read_value *values;
129 } group;
130 struct sample_read_value one;
131 };
132};
133
0776eb59
JO
134struct ip_callchain {
135 u64 nr;
136 u64 ips[0];
137};
138
139struct branch_flags {
140 u64 mispred:1;
141 u64 predicted:1;
142 u64 in_tx:1;
143 u64 abort:1;
0e332f03
AK
144 u64 cycles:16;
145 u64 reserved:44;
0776eb59
JO
146};
147
148struct branch_entry {
149 u64 from;
150 u64 to;
151 struct branch_flags flags;
152};
153
154struct branch_stack {
155 u64 nr;
156 struct branch_entry entries[0];
157};
158
00447ccd
AH
159enum {
160 PERF_IP_FLAG_BRANCH = 1ULL << 0,
161 PERF_IP_FLAG_CALL = 1ULL << 1,
162 PERF_IP_FLAG_RETURN = 1ULL << 2,
163 PERF_IP_FLAG_CONDITIONAL = 1ULL << 3,
164 PERF_IP_FLAG_SYSCALLRET = 1ULL << 4,
165 PERF_IP_FLAG_ASYNC = 1ULL << 5,
166 PERF_IP_FLAG_INTERRUPT = 1ULL << 6,
167 PERF_IP_FLAG_TX_ABORT = 1ULL << 7,
168 PERF_IP_FLAG_TRACE_BEGIN = 1ULL << 8,
169 PERF_IP_FLAG_TRACE_END = 1ULL << 9,
170 PERF_IP_FLAG_IN_TX = 1ULL << 10,
171};
172
400ea6d3
AH
173#define PERF_IP_FLAG_CHARS "bcrosyiABEx"
174
00447ccd
AH
175#define PERF_BRANCH_MASK (\
176 PERF_IP_FLAG_BRANCH |\
177 PERF_IP_FLAG_CALL |\
178 PERF_IP_FLAG_RETURN |\
179 PERF_IP_FLAG_CONDITIONAL |\
180 PERF_IP_FLAG_SYSCALLRET |\
181 PERF_IP_FLAG_ASYNC |\
182 PERF_IP_FLAG_INTERRUPT |\
183 PERF_IP_FLAG_TX_ABORT |\
184 PERF_IP_FLAG_TRACE_BEGIN |\
185 PERF_IP_FLAG_TRACE_END)
186
faaa8768
AK
187#define MAX_INSN 16
188
8d50e5b4 189struct perf_sample {
180f95e2
OH
190 u64 ip;
191 u32 pid, tid;
192 u64 time;
193 u64 addr;
194 u64 id;
195 u64 stream_id;
180f95e2 196 u64 period;
05484298 197 u64 weight;
475eeab9 198 u64 transaction;
eed05fe7 199 u32 cpu;
180f95e2 200 u32 raw_size;
98a3b32c 201 u64 data_src;
bf493902
AH
202 u32 flags;
203 u16 insn_len;
473398a2 204 u8 cpumode;
faaa8768 205 char insn[MAX_INSN];
180f95e2 206 void *raw_data;
eed05fe7 207 struct ip_callchain *callchain;
b5387528 208 struct branch_stack *branch_stack;
0f6a3015 209 struct regs_dump user_regs;
6a21c0b5 210 struct regs_dump intr_regs;
0f6a3015 211 struct stack_dump user_stack;
9ede473c 212 struct sample_read read;
180f95e2
OH
213};
214
98a3b32c
SE
215#define PERF_MEM_DATA_SRC_NONE \
216 (PERF_MEM_S(OP, NA) |\
217 PERF_MEM_S(LVL, NA) |\
218 PERF_MEM_S(SNOOP, NA) |\
219 PERF_MEM_S(LOCK, NA) |\
220 PERF_MEM_S(TLB, NA))
221
8d06367f
ACM
222struct build_id_event {
223 struct perf_event_header header;
a1645ce1 224 pid_t pid;
9ac3e487 225 u8 build_id[PERF_ALIGN(BUILD_ID_SIZE, sizeof(u64))];
8d06367f
ACM
226 char filename[];
227};
fd39e055 228
98402807 229enum perf_user_event_type { /* above any possible kernel type */
9aefcab0 230 PERF_RECORD_USER_TYPE_START = 64,
2c46dbb5 231 PERF_RECORD_HEADER_ATTR = 64,
1291927a 232 PERF_RECORD_HEADER_EVENT_TYPE = 65, /* deprecated */
9215545e 233 PERF_RECORD_HEADER_TRACING_DATA = 66,
c7929e47 234 PERF_RECORD_HEADER_BUILD_ID = 67,
98402807 235 PERF_RECORD_FINISHED_ROUND = 68,
3c659eed 236 PERF_RECORD_ID_INDEX = 69,
a16ac023
AH
237 PERF_RECORD_AUXTRACE_INFO = 70,
238 PERF_RECORD_AUXTRACE = 71,
e9bf54d2 239 PERF_RECORD_AUXTRACE_ERROR = 72,
5f3339d2 240 PERF_RECORD_THREAD_MAP = 73,
6640b6c2 241 PERF_RECORD_CPU_MAP = 74,
374fb9e3 242 PERF_RECORD_STAT_CONFIG = 75,
d80518c9 243 PERF_RECORD_STAT = 76,
2d8f0f18 244 PERF_RECORD_STAT_ROUND = 77,
ffe77725 245 PERF_RECORD_EVENT_UPDATE = 78,
46bc29b9 246 PERF_RECORD_TIME_CONV = 79,
2c46dbb5
TZ
247 PERF_RECORD_HEADER_MAX
248};
249
85ed4729
AH
250enum auxtrace_error_type {
251 PERF_AUXTRACE_ERROR_ITRACE = 1,
252 PERF_AUXTRACE_ERROR_MAX
253};
254
1405720d
AH
255/* Attribute type for custom synthesized events */
256#define PERF_TYPE_SYNTH (INT_MAX + 1U)
257
65c5e18f
AH
258/* Attribute config for custom synthesized events */
259enum perf_synth_id {
260 PERF_SYNTH_INTEL_PTWRITE,
261 PERF_SYNTH_INTEL_MWAIT,
262 PERF_SYNTH_INTEL_PWRE,
263 PERF_SYNTH_INTEL_EXSTOP,
264 PERF_SYNTH_INTEL_PWRX,
265 PERF_SYNTH_INTEL_CBR,
266};
267
268/*
269 * Raw data formats for synthesized events. Note that 4 bytes of padding are
270 * present to match the 'size' member of PERF_SAMPLE_RAW data which is always
271 * 8-byte aligned. That means we must dereference raw_data with an offset of 4.
272 * Refer perf_sample__synth_ptr() and perf_synth__raw_data(). It also means the
273 * structure sizes are 4 bytes bigger than the raw_size, refer
274 * perf_synth__raw_size().
275 */
276
277struct perf_synth_intel_ptwrite {
278 u32 padding;
279 union {
280 struct {
281 u32 ip : 1,
282 reserved : 31;
283 };
284 u32 flags;
285 };
286 u64 payload;
287};
288
289struct perf_synth_intel_mwait {
290 u32 padding;
291 u32 reserved;
292 union {
293 struct {
294 u64 hints : 8,
295 reserved1 : 24,
296 extensions : 2,
297 reserved2 : 30;
298 };
299 u64 payload;
300 };
301};
302
303struct perf_synth_intel_pwre {
304 u32 padding;
305 u32 reserved;
306 union {
307 struct {
308 u64 reserved1 : 7,
309 hw : 1,
310 subcstate : 4,
311 cstate : 4,
312 reserved2 : 48;
313 };
314 u64 payload;
315 };
316};
317
318struct perf_synth_intel_exstop {
319 u32 padding;
320 union {
321 struct {
322 u32 ip : 1,
323 reserved : 31;
324 };
325 u32 flags;
326 };
327};
328
329struct perf_synth_intel_pwrx {
330 u32 padding;
331 u32 reserved;
332 union {
333 struct {
334 u64 deepest_cstate : 4,
335 last_cstate : 4,
336 wake_reason : 4,
337 reserved1 : 52;
338 };
339 u64 payload;
340 };
341};
342
343struct perf_synth_intel_cbr {
344 u32 padding;
345 union {
346 struct {
347 u32 cbr : 8,
348 reserved1 : 8,
349 max_nonturbo : 8,
350 reserved2 : 8;
351 };
352 u32 flags;
353 };
354 u32 freq;
355 u32 reserved3;
356};
357
358/*
359 * raw_data is always 4 bytes from an 8-byte boundary, so subtract 4 to get
360 * 8-byte alignment.
361 */
362static inline void *perf_sample__synth_ptr(struct perf_sample *sample)
363{
364 return sample->raw_data - 4;
365}
366
367static inline void *perf_synth__raw_data(void *p)
368{
369 return p + 4;
370}
371
372#define perf_synth__raw_size(d) (sizeof(d) - 4)
373
374#define perf_sample__bad_synth_size(s, d) ((s)->raw_size < sizeof(d) - 4)
375
4318bcb7
ACM
376/*
377 * The kernel collects the number of events it couldn't send in a stretch and
378 * when possible sends this number in a PERF_RECORD_LOST event. The number of
379 * such "chunks" of lost events is stored in .nr_events[PERF_EVENT_LOST] while
380 * total_lost tells exactly how many events the kernel in fact lost, i.e. it is
381 * the sum of all struct lost_event.lost fields reported.
382 *
c4937a91
KL
383 * The kernel discards mixed up samples and sends the number in a
384 * PERF_RECORD_LOST_SAMPLES event. The number of lost-samples events is stored
385 * in .nr_events[PERF_RECORD_LOST_SAMPLES] while total_lost_samples tells
386 * exactly how many samples the kernel in fact dropped, i.e. it is the sum of
387 * all struct lost_samples_event.lost fields reported.
388 *
4318bcb7
ACM
389 * The total_period is needed because by default auto-freq is used, so
390 * multipling nr_events[PERF_EVENT_SAMPLE] by a frequency isn't possible to get
391 * the total number of low level events, it is necessary to to sum all struct
392 * sample_event.period and stash the result in total_period.
393 */
394struct events_stats {
395 u64 total_period;
396 u64 total_non_filtered_period;
397 u64 total_lost;
c4937a91 398 u64 total_lost_samples;
a38f48e3 399 u64 total_aux_lost;
05a1f47e 400 u64 total_aux_partial;
4318bcb7
ACM
401 u64 total_invalid_chains;
402 u32 nr_events[PERF_RECORD_HEADER_MAX];
403 u32 nr_non_filtered_samples;
404 u32 nr_lost_warned;
405 u32 nr_unknown_events;
406 u32 nr_invalid_chains;
407 u32 nr_unknown_id;
408 u32 nr_unprocessable_samples;
85ed4729 409 u32 nr_auxtrace_errors[PERF_AUXTRACE_ERROR_MAX];
930e6fcd 410 u32 nr_proc_map_timeout;
4318bcb7
ACM
411};
412
6640b6c2
JO
413enum {
414 PERF_CPU_MAP__CPUS = 0,
415 PERF_CPU_MAP__MASK = 1,
416};
417
418struct cpu_map_entries {
419 u16 nr;
420 u16 cpu[];
421};
422
423struct cpu_map_mask {
424 u16 nr;
425 u16 long_size;
426 unsigned long mask[];
427};
428
429struct cpu_map_data {
430 u16 type;
431 char data[];
432};
433
434struct cpu_map_event {
435 struct perf_event_header header;
436 struct cpu_map_data data;
437};
438
2c46dbb5
TZ
439struct attr_event {
440 struct perf_event_header header;
441 struct perf_event_attr attr;
442 u64 id[];
8dc58101
TZ
443};
444
a6e52817
JO
445enum {
446 PERF_EVENT_UPDATE__UNIT = 0,
daeecbc0 447 PERF_EVENT_UPDATE__SCALE = 1,
802c9048 448 PERF_EVENT_UPDATE__NAME = 2,
86ebb09f
JO
449 PERF_EVENT_UPDATE__CPUS = 3,
450};
451
452struct event_update_event_cpus {
453 struct cpu_map_data cpus;
daeecbc0
JO
454};
455
456struct event_update_event_scale {
457 double scale;
a6e52817
JO
458};
459
ffe77725
JO
460struct event_update_event {
461 struct perf_event_header header;
462 u64 type;
463 u64 id;
464
465 char data[];
466};
467
cd19a035
TZ
468#define MAX_EVENT_NAME 64
469
470struct perf_trace_event_type {
471 u64 event_id;
472 char name[MAX_EVENT_NAME];
473};
474
475struct event_type_event {
476 struct perf_event_header header;
477 struct perf_trace_event_type event_type;
478};
479
9215545e
TZ
480struct tracing_data_event {
481 struct perf_event_header header;
482 u32 size;
483};
484
3c659eed
AH
485struct id_index_entry {
486 u64 id;
487 u64 idx;
488 u64 cpu;
489 u64 tid;
490};
491
492struct id_index_event {
493 struct perf_event_header header;
494 u64 nr;
495 struct id_index_entry entries[0];
496};
497
a16ac023
AH
498struct auxtrace_info_event {
499 struct perf_event_header header;
500 u32 type;
501 u32 reserved__; /* For alignment */
502 u64 priv[];
503};
504
505struct auxtrace_event {
506 struct perf_event_header header;
507 u64 size;
508 u64 offset;
509 u64 reference;
510 u32 idx;
511 u32 tid;
512 u32 cpu;
513 u32 reserved__; /* For alignment */
514};
515
e9bf54d2
AH
516#define MAX_AUXTRACE_ERROR_MSG 64
517
518struct auxtrace_error_event {
519 struct perf_event_header header;
520 u32 type;
521 u32 code;
522 u32 cpu;
523 u32 pid;
524 u32 tid;
525 u32 reserved__; /* For alignment */
526 u64 ip;
527 char msg[MAX_AUXTRACE_ERROR_MSG];
528};
529
4a96f7a0
AH
530struct aux_event {
531 struct perf_event_header header;
532 u64 aux_offset;
533 u64 aux_size;
534 u64 flags;
535};
536
0ad21f68
AH
537struct itrace_start_event {
538 struct perf_event_header header;
539 u32 pid, tid;
540};
541
0286039f
AH
542struct context_switch_event {
543 struct perf_event_header header;
544 u32 next_prev_pid;
545 u32 next_prev_tid;
546};
547
5f3339d2
JO
548struct thread_map_event_entry {
549 u64 pid;
550 char comm[16];
551};
552
553struct thread_map_event {
554 struct perf_event_header header;
555 u64 nr;
556 struct thread_map_event_entry entries[];
557};
558
374fb9e3
JO
559enum {
560 PERF_STAT_CONFIG_TERM__AGGR_MODE = 0,
561 PERF_STAT_CONFIG_TERM__INTERVAL = 1,
562 PERF_STAT_CONFIG_TERM__SCALE = 2,
563 PERF_STAT_CONFIG_TERM__MAX = 3,
564};
565
566struct stat_config_event_entry {
567 u64 tag;
568 u64 val;
569};
570
571struct stat_config_event {
572 struct perf_event_header header;
573 u64 nr;
574 struct stat_config_event_entry data[];
575};
576
d80518c9
JO
577struct stat_event {
578 struct perf_event_header header;
579
580 u64 id;
581 u32 cpu;
582 u32 thread;
583
584 union {
585 struct {
586 u64 val;
587 u64 ena;
588 u64 run;
589 };
590 u64 values[3];
591 };
592};
593
2d8f0f18
JO
594enum {
595 PERF_STAT_ROUND_TYPE__INTERVAL = 0,
596 PERF_STAT_ROUND_TYPE__FINAL = 1,
597};
598
599struct stat_round_event {
600 struct perf_event_header header;
601 u64 type;
602 u64 time;
603};
604
46bc29b9
AH
605struct time_conv_event {
606 struct perf_event_header header;
607 u64 time_shift;
608 u64 time_mult;
609 u64 time_zero;
610};
611
8115d60c 612union perf_event {
1fe2c106 613 struct perf_event_header header;
1fe2c106 614 struct mmap_event mmap;
5c5e854b 615 struct mmap2_event mmap2;
1fe2c106 616 struct comm_event comm;
f3b3614a 617 struct namespaces_event namespaces;
1fe2c106
FW
618 struct fork_event fork;
619 struct lost_event lost;
c4937a91 620 struct lost_samples_event lost_samples;
1fe2c106 621 struct read_event read;
dd96c46b 622 struct throttle_event throttle;
fd39e055 623 struct sample_event sample;
2c46dbb5 624 struct attr_event attr;
ffe77725 625 struct event_update_event event_update;
cd19a035 626 struct event_type_event event_type;
9215545e 627 struct tracing_data_event tracing_data;
c7929e47 628 struct build_id_event build_id;
3c659eed 629 struct id_index_event id_index;
a16ac023
AH
630 struct auxtrace_info_event auxtrace_info;
631 struct auxtrace_event auxtrace;
e9bf54d2 632 struct auxtrace_error_event auxtrace_error;
4a96f7a0 633 struct aux_event aux;
0ad21f68 634 struct itrace_start_event itrace_start;
0286039f 635 struct context_switch_event context_switch;
5f3339d2 636 struct thread_map_event thread_map;
6640b6c2 637 struct cpu_map_event cpu_map;
374fb9e3 638 struct stat_config_event stat_config;
d80518c9 639 struct stat_event stat;
2d8f0f18 640 struct stat_round_event stat_round;
46bc29b9 641 struct time_conv_event time_conv;
8115d60c 642};
66e274f3 643
8115d60c 644void perf_event__print_totals(void);
62daacb5 645
45694aa7 646struct perf_tool;
401b8e13 647struct thread_map;
6c872901 648struct cpu_map;
67424342 649struct perf_stat_config;
5796f8f0 650struct perf_counts_values;
4aa65636 651
45694aa7 652typedef int (*perf_event__handler_t)(struct perf_tool *tool,
d20deb64 653 union perf_event *event,
8115d60c 654 struct perf_sample *sample,
743eb868 655 struct machine *machine);
cf553114 656
45694aa7 657int perf_event__synthesize_thread_map(struct perf_tool *tool,
d20deb64 658 struct thread_map *threads,
7c940c18 659 perf_event__handler_t process,
9d9cad76
KL
660 struct machine *machine, bool mmap_data,
661 unsigned int proc_map_timeout);
99471c96
JO
662int perf_event__synthesize_thread_map2(struct perf_tool *tool,
663 struct thread_map *threads,
664 perf_event__handler_t process,
665 struct machine *machine);
6c872901
JO
666int perf_event__synthesize_cpu_map(struct perf_tool *tool,
667 struct cpu_map *cpus,
668 perf_event__handler_t process,
669 struct machine *machine);
45694aa7 670int perf_event__synthesize_threads(struct perf_tool *tool,
d20deb64 671 perf_event__handler_t process,
9d9cad76
KL
672 struct machine *machine, bool mmap_data,
673 unsigned int proc_map_timeout);
45694aa7 674int perf_event__synthesize_kernel_mmap(struct perf_tool *tool,
d20deb64 675 perf_event__handler_t process,
0ae617be 676 struct machine *machine);
67424342
JO
677int perf_event__synthesize_stat_config(struct perf_tool *tool,
678 struct perf_stat_config *config,
679 perf_event__handler_t process,
680 struct machine *machine);
8e381596
JO
681void perf_event__read_stat_config(struct perf_stat_config *config,
682 struct stat_config_event *event);
5796f8f0
JO
683int perf_event__synthesize_stat(struct perf_tool *tool,
684 u32 cpu, u32 thread, u64 id,
685 struct perf_counts_values *count,
686 perf_event__handler_t process,
687 struct machine *machine);
d4c22591
JO
688int perf_event__synthesize_stat_round(struct perf_tool *tool,
689 u64 time, u64 type,
690 perf_event__handler_t process,
691 struct machine *machine);
45694aa7 692int perf_event__synthesize_modules(struct perf_tool *tool,
d20deb64 693 perf_event__handler_t process,
8115d60c
ACM
694 struct machine *machine);
695
45694aa7 696int perf_event__process_comm(struct perf_tool *tool,
d20deb64
ACM
697 union perf_event *event,
698 struct perf_sample *sample,
743eb868 699 struct machine *machine);
45694aa7 700int perf_event__process_lost(struct perf_tool *tool,
d20deb64
ACM
701 union perf_event *event,
702 struct perf_sample *sample,
743eb868 703 struct machine *machine);
c4937a91
KL
704int perf_event__process_lost_samples(struct perf_tool *tool,
705 union perf_event *event,
706 struct perf_sample *sample,
707 struct machine *machine);
4a96f7a0
AH
708int perf_event__process_aux(struct perf_tool *tool,
709 union perf_event *event,
710 struct perf_sample *sample,
711 struct machine *machine);
0ad21f68
AH
712int perf_event__process_itrace_start(struct perf_tool *tool,
713 union perf_event *event,
714 struct perf_sample *sample,
715 struct machine *machine);
0286039f
AH
716int perf_event__process_switch(struct perf_tool *tool,
717 union perf_event *event,
718 struct perf_sample *sample,
719 struct machine *machine);
f3b3614a
HB
720int perf_event__process_namespaces(struct perf_tool *tool,
721 union perf_event *event,
722 struct perf_sample *sample,
723 struct machine *machine);
45694aa7 724int perf_event__process_mmap(struct perf_tool *tool,
d20deb64
ACM
725 union perf_event *event,
726 struct perf_sample *sample,
743eb868 727 struct machine *machine);
5c5e854b
SE
728int perf_event__process_mmap2(struct perf_tool *tool,
729 union perf_event *event,
730 struct perf_sample *sample,
731 struct machine *machine);
f62d3f0f
ACM
732int perf_event__process_fork(struct perf_tool *tool,
733 union perf_event *event,
734 struct perf_sample *sample,
735 struct machine *machine);
736int perf_event__process_exit(struct perf_tool *tool,
d20deb64
ACM
737 union perf_event *event,
738 struct perf_sample *sample,
743eb868 739 struct machine *machine);
45694aa7 740int perf_event__process(struct perf_tool *tool,
d20deb64
ACM
741 union perf_event *event,
742 struct perf_sample *sample,
743eb868 743 struct machine *machine);
62daacb5 744
1ed091c4 745struct addr_location;
316c7136 746
bb3eb566
ACM
747int machine__resolve(struct machine *machine, struct addr_location *al,
748 struct perf_sample *sample);
1ed091c4 749
b91fc39f
ACM
750void addr_location__put(struct addr_location *al);
751
9b0d2d87
AH
752struct thread;
753
754bool is_bts_event(struct perf_event_attr *attr);
755bool sample_addr_correlates_sym(struct perf_event_attr *attr);
c2740a87
ACM
756void thread__resolve(struct thread *thread, struct addr_location *al,
757 struct perf_sample *sample);
9b0d2d87 758
8115d60c 759const char *perf_event__name(unsigned int id);
c8446b9b 760
b1cf6f65 761size_t perf_event__sample_event_size(const struct perf_sample *sample, u64 type,
352ea45a 762 u64 read_format);
74eec26f 763int perf_event__synthesize_sample(union perf_event *event, u64 type,
352ea45a 764 u64 read_format,
74eec26f
AV
765 const struct perf_sample *sample,
766 bool swapped);
d0dd74e8 767
e803cf97
NK
768pid_t perf_event__synthesize_comm(struct perf_tool *tool,
769 union perf_event *event, pid_t pid,
770 perf_event__handler_t process,
771 struct machine *machine);
772
e907caf3
HB
773int perf_event__synthesize_namespaces(struct perf_tool *tool,
774 union perf_event *event,
775 pid_t pid, pid_t tgid,
776 perf_event__handler_t process,
777 struct machine *machine);
778
a18382b6
JO
779int perf_event__synthesize_mmap_events(struct perf_tool *tool,
780 union perf_event *event,
781 pid_t pid, pid_t tgid,
782 perf_event__handler_t process,
783 struct machine *machine,
9d9cad76
KL
784 bool mmap_data,
785 unsigned int proc_map_timeout);
a18382b6 786
482ad897
ACM
787size_t perf_event__fprintf_comm(union perf_event *event, FILE *fp);
788size_t perf_event__fprintf_mmap(union perf_event *event, FILE *fp);
5c5e854b 789size_t perf_event__fprintf_mmap2(union perf_event *event, FILE *fp);
482ad897 790size_t perf_event__fprintf_task(union perf_event *event, FILE *fp);
4a96f7a0 791size_t perf_event__fprintf_aux(union perf_event *event, FILE *fp);
0ad21f68 792size_t perf_event__fprintf_itrace_start(union perf_event *event, FILE *fp);
0286039f 793size_t perf_event__fprintf_switch(union perf_event *event, FILE *fp);
ec7fa596 794size_t perf_event__fprintf_thread_map(union perf_event *event, FILE *fp);
eb12a1af 795size_t perf_event__fprintf_cpu_map(union perf_event *event, FILE *fp);
f3b3614a 796size_t perf_event__fprintf_namespaces(union perf_event *event, FILE *fp);
482ad897
ACM
797size_t perf_event__fprintf(union perf_event *event, FILE *fp);
798
b843f62a
ACM
799int kallsyms__get_function_start(const char *kallsyms_filename,
800 const char *symbol_name, u64 *addr);
29b596b5 801
6c872901
JO
802void *cpu_map_data__alloc(struct cpu_map *map, size_t *size, u16 *type, int *max);
803void cpu_map_data__synthesize(struct cpu_map_data *data, struct cpu_map *map,
804 u16 type, int max);
5ab8c689
ACM
805
806void event_attr_init(struct perf_event_attr *attr);
807
808int perf_event_paranoid(void);
809
810extern int sysctl_perf_event_max_stack;
811extern int sysctl_perf_event_max_contexts_per_stack;
812
8b40f521 813#endif /* __PERF_RECORD_H */