blob: 0f794744919c0e947d09999d1cc7e685e6c42a81 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Ingo Molnarcdd6c482009-09-21 12:02:48 +02002#ifndef __PERF_RECORD_H
3#define __PERF_RECORD_H
John Kacur8b40f522009-09-24 18:02:18 +02004
Arnaldo Carvalho de Melo4a58e612009-12-27 21:37:00 -02005#include <limits.h>
Arnaldo Carvalho de Melo482ad892011-12-02 11:06:37 -02006#include <stdio.h>
Arnaldo Carvalho de Meloe8b3ae42017-04-19 21:33:07 -03007#include <linux/kernel.h>
Arnaldo Carvalho de Melo4a58e612009-12-27 21:37:00 -02008
Frederic Weisbecker1fe2c102009-08-12 10:19:53 +02009#include "../perf.h"
Jiri Olsa4383db82012-10-27 23:18:29 +020010#include "build-id.h"
Jiri Olsa0c4e7742014-04-17 19:39:10 +020011#include "perf_regs.h"
Frederic Weisbecker1fe2c102009-08-12 10:19:53 +020012
Frederic Weisbecker1fe2c102009-08-12 10:19:53 +020013struct mmap_event {
14 struct perf_event_header header;
15 u32 pid, tid;
16 u64 start;
17 u64 len;
18 u64 pgoff;
19 char filename[PATH_MAX];
20};
21
Stephane Eranian5c5e8542013-08-21 12:10:25 +020022struct mmap2_event {
23 struct perf_event_header header;
24 u32 pid, tid;
25 u64 start;
26 u64 len;
27 u64 pgoff;
28 u32 maj;
29 u32 min;
30 u64 ino;
31 u64 ino_generation;
Don Zickus7ef80702014-05-19 15:13:49 -040032 u32 prot;
33 u32 flags;
Stephane Eranian5c5e8542013-08-21 12:10:25 +020034 char filename[PATH_MAX];
35};
36
Frederic Weisbecker1fe2c102009-08-12 10:19:53 +020037struct comm_event {
38 struct perf_event_header header;
39 u32 pid, tid;
40 char comm[16];
41};
42
Hari Bathinif3b36142017-03-08 02:11:43 +053043struct namespaces_event {
44 struct perf_event_header header;
45 u32 pid, tid;
46 u64 nr_namespaces;
47 struct perf_ns_link_info link_info[];
48};
49
Frederic Weisbecker1fe2c102009-08-12 10:19:53 +020050struct fork_event {
51 struct perf_event_header header;
52 u32 pid, ppid;
53 u32 tid, ptid;
Arjan van de Ven393b2ad2009-09-12 07:52:47 +020054 u64 time;
Frederic Weisbecker1fe2c102009-08-12 10:19:53 +020055};
56
57struct lost_event {
58 struct perf_event_header header;
59 u64 id;
60 u64 lost;
61};
62
Kan Liangc4937a92015-05-10 15:13:15 -040063struct lost_samples_event {
64 struct perf_event_header header;
65 u64 lost;
66};
67
Peter Zijlstra18408dd2009-08-13 11:47:55 +020068/*
69 * PERF_FORMAT_ENABLED | PERF_FORMAT_RUNNING | PERF_FORMAT_ID
70 */
Frederic Weisbecker1fe2c102009-08-12 10:19:53 +020071struct read_event {
72 struct perf_event_header header;
Ingo Molnardc02bf72009-09-16 13:45:00 +020073 u32 pid, tid;
Frederic Weisbecker1fe2c102009-08-12 10:19:53 +020074 u64 value;
75 u64 time_enabled;
76 u64 time_running;
77 u64 id;
78};
79
Jiri Olsadd96c462013-09-01 12:36:15 +020080struct throttle_event {
81 struct perf_event_header header;
82 u64 time;
83 u64 id;
84 u64 stream_id;
85};
Frederic Weisbeckera2854122011-05-21 19:33:04 +020086
87#define PERF_SAMPLE_MASK \
88 (PERF_SAMPLE_IP | PERF_SAMPLE_TID | \
89 PERF_SAMPLE_TIME | PERF_SAMPLE_ADDR | \
90 PERF_SAMPLE_ID | PERF_SAMPLE_STREAM_ID | \
Adrian Hunter75562572013-08-27 11:23:09 +030091 PERF_SAMPLE_CPU | PERF_SAMPLE_PERIOD | \
92 PERF_SAMPLE_IDENTIFIER)
Frederic Weisbeckera2854122011-05-21 19:33:04 +020093
Jiri Olsaa65cb4b2013-10-02 15:46:39 +020094/* perf sample has 16 bits size limit */
95#define PERF_SAMPLE_MAX_SIZE (1 << 16)
96
OGAWA Hirofumi180f95e2009-12-06 20:08:24 +090097struct sample_event {
Arjan van de Venfd39e052009-09-12 07:53:00 +020098 struct perf_event_header header;
99 u64 array[];
100};
101
Jiri Olsa0f6a3012012-08-07 15:20:45 +0200102struct regs_dump {
Adrian Hunter5b95a4a32013-08-27 11:23:10 +0300103 u64 abi;
Jiri Olsa352ea452014-01-07 13:47:25 +0100104 u64 mask;
Jiri Olsa0f6a3012012-08-07 15:20:45 +0200105 u64 *regs;
Jiri Olsa0c4e7742014-04-17 19:39:10 +0200106
107 /* Cached values/mask filled by first register access. */
108 u64 cache_regs[PERF_REGS_MAX];
109 u64 cache_mask;
Jiri Olsa0f6a3012012-08-07 15:20:45 +0200110};
111
112struct stack_dump {
113 u16 offset;
114 u64 size;
115 char *data;
116};
117
Jiri Olsa9ede4732012-10-10 17:38:13 +0200118struct sample_read_value {
119 u64 value;
120 u64 id;
121};
122
123struct sample_read {
124 u64 time_enabled;
125 u64 time_running;
126 union {
127 struct {
128 u64 nr;
129 struct sample_read_value *values;
130 } group;
131 struct sample_read_value one;
132 };
133};
134
Jiri Olsa0776eb52014-05-05 12:41:45 +0200135struct ip_callchain {
136 u64 nr;
137 u64 ips[0];
138};
139
140struct branch_flags {
141 u64 mispred:1;
142 u64 predicted:1;
143 u64 in_tx:1;
144 u64 abort:1;
Andi Kleen0e332f02015-07-18 08:24:46 -0700145 u64 cycles:16;
Jin Yao992c7e92017-07-18 20:13:13 +0800146 u64 type:4;
147 u64 reserved:40;
Jiri Olsa0776eb52014-05-05 12:41:45 +0200148};
149
150struct branch_entry {
151 u64 from;
152 u64 to;
153 struct branch_flags flags;
154};
155
156struct branch_stack {
157 u64 nr;
158 struct branch_entry entries[0];
159};
160
Adrian Hunter00447cc2014-10-30 16:09:42 +0200161enum {
162 PERF_IP_FLAG_BRANCH = 1ULL << 0,
163 PERF_IP_FLAG_CALL = 1ULL << 1,
164 PERF_IP_FLAG_RETURN = 1ULL << 2,
165 PERF_IP_FLAG_CONDITIONAL = 1ULL << 3,
166 PERF_IP_FLAG_SYSCALLRET = 1ULL << 4,
167 PERF_IP_FLAG_ASYNC = 1ULL << 5,
168 PERF_IP_FLAG_INTERRUPT = 1ULL << 6,
169 PERF_IP_FLAG_TX_ABORT = 1ULL << 7,
170 PERF_IP_FLAG_TRACE_BEGIN = 1ULL << 8,
171 PERF_IP_FLAG_TRACE_END = 1ULL << 9,
172 PERF_IP_FLAG_IN_TX = 1ULL << 10,
173};
174
Adrian Hunter400ea6d2015-04-09 18:54:05 +0300175#define PERF_IP_FLAG_CHARS "bcrosyiABEx"
176
Adrian Hunter00447cc2014-10-30 16:09:42 +0200177#define PERF_BRANCH_MASK (\
178 PERF_IP_FLAG_BRANCH |\
179 PERF_IP_FLAG_CALL |\
180 PERF_IP_FLAG_RETURN |\
181 PERF_IP_FLAG_CONDITIONAL |\
182 PERF_IP_FLAG_SYSCALLRET |\
183 PERF_IP_FLAG_ASYNC |\
184 PERF_IP_FLAG_INTERRUPT |\
185 PERF_IP_FLAG_TX_ABORT |\
186 PERF_IP_FLAG_TRACE_BEGIN |\
187 PERF_IP_FLAG_TRACE_END)
188
Andi Kleenfaaa8762016-10-07 16:42:26 +0300189#define MAX_INSN 16
190
Arnaldo Carvalho de Melo8d50e5b2011-01-29 13:02:00 -0200191struct perf_sample {
OGAWA Hirofumi180f95e2009-12-06 20:08:24 +0900192 u64 ip;
193 u32 pid, tid;
194 u64 time;
195 u64 addr;
196 u64 id;
197 u64 stream_id;
OGAWA Hirofumi180f95e2009-12-06 20:08:24 +0900198 u64 period;
Andi Kleen05484292013-01-24 16:10:29 +0100199 u64 weight;
Andi Kleen475eeab2013-09-20 07:40:43 -0700200 u64 transaction;
Arnaldo Carvalho de Meloeed05fe2010-04-05 12:53:45 -0300201 u32 cpu;
OGAWA Hirofumi180f95e2009-12-06 20:08:24 +0900202 u32 raw_size;
Stephane Eranian98a3b322013-01-24 16:10:35 +0100203 u64 data_src;
Kan Liang3b0a5da2017-08-29 13:11:08 -0400204 u64 phys_addr;
Adrian Hunterbf493902014-07-31 09:01:04 +0300205 u32 flags;
206 u16 insn_len;
Arnaldo Carvalho de Melo473398a2016-03-22 18:23:43 -0300207 u8 cpumode;
Jiri Olsa28a0b392018-01-07 17:03:52 +0100208 u16 misc;
Andi Kleenfaaa8762016-10-07 16:42:26 +0300209 char insn[MAX_INSN];
OGAWA Hirofumi180f95e2009-12-06 20:08:24 +0900210 void *raw_data;
Arnaldo Carvalho de Meloeed05fe2010-04-05 12:53:45 -0300211 struct ip_callchain *callchain;
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100212 struct branch_stack *branch_stack;
Jiri Olsa0f6a3012012-08-07 15:20:45 +0200213 struct regs_dump user_regs;
Stephane Eranian6a21c0b2014-09-24 13:48:39 +0200214 struct regs_dump intr_regs;
Jiri Olsa0f6a3012012-08-07 15:20:45 +0200215 struct stack_dump user_stack;
Jiri Olsa9ede4732012-10-10 17:38:13 +0200216 struct sample_read read;
OGAWA Hirofumi180f95e2009-12-06 20:08:24 +0900217};
218
Stephane Eranian98a3b322013-01-24 16:10:35 +0100219#define PERF_MEM_DATA_SRC_NONE \
220 (PERF_MEM_S(OP, NA) |\
221 PERF_MEM_S(LVL, NA) |\
222 PERF_MEM_S(SNOOP, NA) |\
223 PERF_MEM_S(LOCK, NA) |\
224 PERF_MEM_S(TLB, NA))
225
Arnaldo Carvalho de Melo8d063672009-11-04 18:50:43 -0200226struct build_id_event {
227 struct perf_event_header header;
Zhang, Yanmina1645ce2010-04-19 13:32:50 +0800228 pid_t pid;
Irina Tirdea9ac3e482012-09-11 01:15:01 +0300229 u8 build_id[PERF_ALIGN(BUILD_ID_SIZE, sizeof(u64))];
Arnaldo Carvalho de Melo8d063672009-11-04 18:50:43 -0200230 char filename[];
231};
Arjan van de Venfd39e052009-09-12 07:53:00 +0200232
Frederic Weisbecker98402802010-05-02 22:05:29 +0200233enum perf_user_event_type { /* above any possible kernel type */
Thomas Gleixner9aefcab02010-12-07 12:48:47 +0000234 PERF_RECORD_USER_TYPE_START = 64,
Tom Zanussi2c46dbb2010-04-01 23:59:19 -0500235 PERF_RECORD_HEADER_ATTR = 64,
Kim Phillips12919272017-05-03 13:13:50 +0100236 PERF_RECORD_HEADER_EVENT_TYPE = 65, /* deprecated */
Tom Zanussi92155452010-04-01 23:59:21 -0500237 PERF_RECORD_HEADER_TRACING_DATA = 66,
Tom Zanussic7929e42010-04-01 23:59:22 -0500238 PERF_RECORD_HEADER_BUILD_ID = 67,
Frederic Weisbecker98402802010-05-02 22:05:29 +0200239 PERF_RECORD_FINISHED_ROUND = 68,
Adrian Hunter3c659ee2014-10-27 15:49:22 +0200240 PERF_RECORD_ID_INDEX = 69,
Adrian Huntera16ac022015-04-09 18:53:43 +0300241 PERF_RECORD_AUXTRACE_INFO = 70,
242 PERF_RECORD_AUXTRACE = 71,
Adrian Huntere9bf54d2015-04-09 18:53:47 +0300243 PERF_RECORD_AUXTRACE_ERROR = 72,
Jiri Olsa5f3339d2015-10-25 15:51:19 +0100244 PERF_RECORD_THREAD_MAP = 73,
Jiri Olsa6640b6c2015-10-25 15:51:23 +0100245 PERF_RECORD_CPU_MAP = 74,
Jiri Olsa374fb9e2015-10-25 15:51:27 +0100246 PERF_RECORD_STAT_CONFIG = 75,
Jiri Olsad80518c2015-10-25 15:51:30 +0100247 PERF_RECORD_STAT = 76,
Jiri Olsa2d8f0f12015-10-25 15:51:33 +0100248 PERF_RECORD_STAT_ROUND = 77,
Jiri Olsaffe777252015-10-25 15:51:36 +0100249 PERF_RECORD_EVENT_UPDATE = 78,
Adrian Hunter46bc29b2016-03-08 10:38:44 +0200250 PERF_RECORD_TIME_CONV = 79,
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -0700251 PERF_RECORD_HEADER_FEATURE = 80,
Tom Zanussi2c46dbb2010-04-01 23:59:19 -0500252 PERF_RECORD_HEADER_MAX
253};
254
Adrian Hunter85ed4722015-04-09 18:53:50 +0300255enum auxtrace_error_type {
256 PERF_AUXTRACE_ERROR_ITRACE = 1,
257 PERF_AUXTRACE_ERROR_MAX
258};
259
Adrian Hunter14057202017-06-21 13:17:19 +0300260/* Attribute type for custom synthesized events */
261#define PERF_TYPE_SYNTH (INT_MAX + 1U)
262
Adrian Hunter65c5e182017-06-30 11:36:42 +0300263/* Attribute config for custom synthesized events */
264enum perf_synth_id {
265 PERF_SYNTH_INTEL_PTWRITE,
266 PERF_SYNTH_INTEL_MWAIT,
267 PERF_SYNTH_INTEL_PWRE,
268 PERF_SYNTH_INTEL_EXSTOP,
269 PERF_SYNTH_INTEL_PWRX,
270 PERF_SYNTH_INTEL_CBR,
271};
272
273/*
274 * Raw data formats for synthesized events. Note that 4 bytes of padding are
275 * present to match the 'size' member of PERF_SAMPLE_RAW data which is always
276 * 8-byte aligned. That means we must dereference raw_data with an offset of 4.
277 * Refer perf_sample__synth_ptr() and perf_synth__raw_data(). It also means the
278 * structure sizes are 4 bytes bigger than the raw_size, refer
279 * perf_synth__raw_size().
280 */
281
282struct perf_synth_intel_ptwrite {
283 u32 padding;
284 union {
285 struct {
286 u32 ip : 1,
287 reserved : 31;
288 };
289 u32 flags;
290 };
291 u64 payload;
292};
293
294struct perf_synth_intel_mwait {
295 u32 padding;
296 u32 reserved;
297 union {
298 struct {
299 u64 hints : 8,
300 reserved1 : 24,
301 extensions : 2,
302 reserved2 : 30;
303 };
304 u64 payload;
305 };
306};
307
308struct perf_synth_intel_pwre {
309 u32 padding;
310 u32 reserved;
311 union {
312 struct {
313 u64 reserved1 : 7,
314 hw : 1,
315 subcstate : 4,
316 cstate : 4,
317 reserved2 : 48;
318 };
319 u64 payload;
320 };
321};
322
323struct perf_synth_intel_exstop {
324 u32 padding;
325 union {
326 struct {
327 u32 ip : 1,
328 reserved : 31;
329 };
330 u32 flags;
331 };
332};
333
334struct perf_synth_intel_pwrx {
335 u32 padding;
336 u32 reserved;
337 union {
338 struct {
339 u64 deepest_cstate : 4,
340 last_cstate : 4,
341 wake_reason : 4,
342 reserved1 : 52;
343 };
344 u64 payload;
345 };
346};
347
348struct perf_synth_intel_cbr {
349 u32 padding;
350 union {
351 struct {
352 u32 cbr : 8,
353 reserved1 : 8,
354 max_nonturbo : 8,
355 reserved2 : 8;
356 };
357 u32 flags;
358 };
359 u32 freq;
360 u32 reserved3;
361};
362
363/*
364 * raw_data is always 4 bytes from an 8-byte boundary, so subtract 4 to get
365 * 8-byte alignment.
366 */
367static inline void *perf_sample__synth_ptr(struct perf_sample *sample)
368{
369 return sample->raw_data - 4;
370}
371
372static inline void *perf_synth__raw_data(void *p)
373{
374 return p + 4;
375}
376
377#define perf_synth__raw_size(d) (sizeof(d) - 4)
378
379#define perf_sample__bad_synth_size(s, d) ((s)->raw_size < sizeof(d) - 4)
380
Arnaldo Carvalho de Melo4318bcb2014-10-10 15:46:05 -0300381/*
382 * The kernel collects the number of events it couldn't send in a stretch and
383 * when possible sends this number in a PERF_RECORD_LOST event. The number of
384 * such "chunks" of lost events is stored in .nr_events[PERF_EVENT_LOST] while
385 * total_lost tells exactly how many events the kernel in fact lost, i.e. it is
386 * the sum of all struct lost_event.lost fields reported.
387 *
Kan Liangc4937a92015-05-10 15:13:15 -0400388 * The kernel discards mixed up samples and sends the number in a
389 * PERF_RECORD_LOST_SAMPLES event. The number of lost-samples events is stored
390 * in .nr_events[PERF_RECORD_LOST_SAMPLES] while total_lost_samples tells
391 * exactly how many samples the kernel in fact dropped, i.e. it is the sum of
392 * all struct lost_samples_event.lost fields reported.
393 *
Arnaldo Carvalho de Melo4318bcb2014-10-10 15:46:05 -0300394 * The total_period is needed because by default auto-freq is used, so
395 * multipling nr_events[PERF_EVENT_SAMPLE] by a frequency isn't possible to get
396 * the total number of low level events, it is necessary to to sum all struct
397 * sample_event.period and stash the result in total_period.
398 */
399struct events_stats {
400 u64 total_period;
401 u64 total_non_filtered_period;
402 u64 total_lost;
Kan Liangc4937a92015-05-10 15:13:15 -0400403 u64 total_lost_samples;
Adrian Huntera38f48e2015-09-25 16:15:37 +0300404 u64 total_aux_lost;
Alexander Shishkin05a1f472017-03-16 18:41:59 +0200405 u64 total_aux_partial;
Arnaldo Carvalho de Melo4318bcb2014-10-10 15:46:05 -0300406 u64 total_invalid_chains;
407 u32 nr_events[PERF_RECORD_HEADER_MAX];
408 u32 nr_non_filtered_samples;
409 u32 nr_lost_warned;
410 u32 nr_unknown_events;
411 u32 nr_invalid_chains;
412 u32 nr_unknown_id;
413 u32 nr_unprocessable_samples;
Adrian Hunter85ed4722015-04-09 18:53:50 +0300414 u32 nr_auxtrace_errors[PERF_AUXTRACE_ERROR_MAX];
Kan Liang930e6fc2015-06-17 09:51:10 -0400415 u32 nr_proc_map_timeout;
Arnaldo Carvalho de Melo4318bcb2014-10-10 15:46:05 -0300416};
417
Jiri Olsa6640b6c2015-10-25 15:51:23 +0100418enum {
419 PERF_CPU_MAP__CPUS = 0,
420 PERF_CPU_MAP__MASK = 1,
421};
422
423struct cpu_map_entries {
424 u16 nr;
425 u16 cpu[];
426};
427
428struct cpu_map_mask {
429 u16 nr;
430 u16 long_size;
431 unsigned long mask[];
432};
433
434struct cpu_map_data {
435 u16 type;
436 char data[];
437};
438
439struct cpu_map_event {
440 struct perf_event_header header;
441 struct cpu_map_data data;
442};
443
Tom Zanussi2c46dbb2010-04-01 23:59:19 -0500444struct attr_event {
445 struct perf_event_header header;
446 struct perf_event_attr attr;
447 u64 id[];
Tom Zanussi8dc58102010-04-01 23:59:15 -0500448};
449
Jiri Olsaa6e52812015-10-25 15:51:37 +0100450enum {
451 PERF_EVENT_UPDATE__UNIT = 0,
Jiri Olsadaeecbc2015-10-25 15:51:38 +0100452 PERF_EVENT_UPDATE__SCALE = 1,
Jiri Olsa802c9042015-10-25 15:51:39 +0100453 PERF_EVENT_UPDATE__NAME = 2,
Jiri Olsa86ebb092015-10-25 15:51:40 +0100454 PERF_EVENT_UPDATE__CPUS = 3,
455};
456
457struct event_update_event_cpus {
458 struct cpu_map_data cpus;
Jiri Olsadaeecbc2015-10-25 15:51:38 +0100459};
460
461struct event_update_event_scale {
462 double scale;
Jiri Olsaa6e52812015-10-25 15:51:37 +0100463};
464
Jiri Olsaffe777252015-10-25 15:51:36 +0100465struct event_update_event {
466 struct perf_event_header header;
467 u64 type;
468 u64 id;
469
470 char data[];
471};
472
Tom Zanussicd19a032010-04-01 23:59:20 -0500473#define MAX_EVENT_NAME 64
474
475struct perf_trace_event_type {
476 u64 event_id;
477 char name[MAX_EVENT_NAME];
478};
479
480struct event_type_event {
481 struct perf_event_header header;
482 struct perf_trace_event_type event_type;
483};
484
Tom Zanussi92155452010-04-01 23:59:21 -0500485struct tracing_data_event {
486 struct perf_event_header header;
487 u32 size;
488};
489
Adrian Hunter3c659ee2014-10-27 15:49:22 +0200490struct id_index_entry {
491 u64 id;
492 u64 idx;
493 u64 cpu;
494 u64 tid;
495};
496
497struct id_index_event {
498 struct perf_event_header header;
499 u64 nr;
500 struct id_index_entry entries[0];
501};
502
Adrian Huntera16ac022015-04-09 18:53:43 +0300503struct auxtrace_info_event {
504 struct perf_event_header header;
505 u32 type;
506 u32 reserved__; /* For alignment */
507 u64 priv[];
508};
509
510struct auxtrace_event {
511 struct perf_event_header header;
512 u64 size;
513 u64 offset;
514 u64 reference;
515 u32 idx;
516 u32 tid;
517 u32 cpu;
518 u32 reserved__; /* For alignment */
519};
520
Adrian Huntere9bf54d2015-04-09 18:53:47 +0300521#define MAX_AUXTRACE_ERROR_MSG 64
522
523struct auxtrace_error_event {
524 struct perf_event_header header;
525 u32 type;
526 u32 code;
527 u32 cpu;
528 u32 pid;
529 u32 tid;
530 u32 reserved__; /* For alignment */
531 u64 ip;
532 char msg[MAX_AUXTRACE_ERROR_MSG];
533};
534
Adrian Hunter4a96f7a2015-04-30 17:37:29 +0300535struct aux_event {
536 struct perf_event_header header;
537 u64 aux_offset;
538 u64 aux_size;
539 u64 flags;
540};
541
Adrian Hunter0ad21f62015-04-30 17:37:30 +0300542struct itrace_start_event {
543 struct perf_event_header header;
544 u32 pid, tid;
545};
546
Adrian Hunter02860392015-07-21 12:44:03 +0300547struct context_switch_event {
548 struct perf_event_header header;
549 u32 next_prev_pid;
550 u32 next_prev_tid;
551};
552
Jiri Olsa5f3339d2015-10-25 15:51:19 +0100553struct thread_map_event_entry {
554 u64 pid;
555 char comm[16];
556};
557
558struct thread_map_event {
559 struct perf_event_header header;
560 u64 nr;
561 struct thread_map_event_entry entries[];
562};
563
Jiri Olsa374fb9e2015-10-25 15:51:27 +0100564enum {
565 PERF_STAT_CONFIG_TERM__AGGR_MODE = 0,
566 PERF_STAT_CONFIG_TERM__INTERVAL = 1,
567 PERF_STAT_CONFIG_TERM__SCALE = 2,
568 PERF_STAT_CONFIG_TERM__MAX = 3,
569};
570
571struct stat_config_event_entry {
572 u64 tag;
573 u64 val;
574};
575
576struct stat_config_event {
577 struct perf_event_header header;
578 u64 nr;
579 struct stat_config_event_entry data[];
580};
581
Jiri Olsad80518c2015-10-25 15:51:30 +0100582struct stat_event {
583 struct perf_event_header header;
584
585 u64 id;
586 u32 cpu;
587 u32 thread;
588
589 union {
590 struct {
591 u64 val;
592 u64 ena;
593 u64 run;
594 };
595 u64 values[3];
596 };
597};
598
Jiri Olsa2d8f0f12015-10-25 15:51:33 +0100599enum {
600 PERF_STAT_ROUND_TYPE__INTERVAL = 0,
601 PERF_STAT_ROUND_TYPE__FINAL = 1,
602};
603
604struct stat_round_event {
605 struct perf_event_header header;
606 u64 type;
607 u64 time;
608};
609
Adrian Hunter46bc29b2016-03-08 10:38:44 +0200610struct time_conv_event {
611 struct perf_event_header header;
612 u64 time_shift;
613 u64 time_mult;
614 u64 time_zero;
615};
616
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -0700617struct feature_event {
618 struct perf_event_header header;
619 u64 feat_id;
620 char data[];
621};
622
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200623union perf_event {
Frederic Weisbecker1fe2c102009-08-12 10:19:53 +0200624 struct perf_event_header header;
Frederic Weisbecker1fe2c102009-08-12 10:19:53 +0200625 struct mmap_event mmap;
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200626 struct mmap2_event mmap2;
Frederic Weisbecker1fe2c102009-08-12 10:19:53 +0200627 struct comm_event comm;
Hari Bathinif3b36142017-03-08 02:11:43 +0530628 struct namespaces_event namespaces;
Frederic Weisbecker1fe2c102009-08-12 10:19:53 +0200629 struct fork_event fork;
630 struct lost_event lost;
Kan Liangc4937a92015-05-10 15:13:15 -0400631 struct lost_samples_event lost_samples;
Frederic Weisbecker1fe2c102009-08-12 10:19:53 +0200632 struct read_event read;
Jiri Olsadd96c462013-09-01 12:36:15 +0200633 struct throttle_event throttle;
Arjan van de Venfd39e052009-09-12 07:53:00 +0200634 struct sample_event sample;
Tom Zanussi2c46dbb2010-04-01 23:59:19 -0500635 struct attr_event attr;
Jiri Olsaffe777252015-10-25 15:51:36 +0100636 struct event_update_event event_update;
Tom Zanussicd19a032010-04-01 23:59:20 -0500637 struct event_type_event event_type;
Tom Zanussi92155452010-04-01 23:59:21 -0500638 struct tracing_data_event tracing_data;
Tom Zanussic7929e42010-04-01 23:59:22 -0500639 struct build_id_event build_id;
Adrian Hunter3c659ee2014-10-27 15:49:22 +0200640 struct id_index_event id_index;
Adrian Huntera16ac022015-04-09 18:53:43 +0300641 struct auxtrace_info_event auxtrace_info;
642 struct auxtrace_event auxtrace;
Adrian Huntere9bf54d2015-04-09 18:53:47 +0300643 struct auxtrace_error_event auxtrace_error;
Adrian Hunter4a96f7a2015-04-30 17:37:29 +0300644 struct aux_event aux;
Adrian Hunter0ad21f62015-04-30 17:37:30 +0300645 struct itrace_start_event itrace_start;
Adrian Hunter02860392015-07-21 12:44:03 +0300646 struct context_switch_event context_switch;
Jiri Olsa5f3339d2015-10-25 15:51:19 +0100647 struct thread_map_event thread_map;
Jiri Olsa6640b6c2015-10-25 15:51:23 +0100648 struct cpu_map_event cpu_map;
Jiri Olsa374fb9e2015-10-25 15:51:27 +0100649 struct stat_config_event stat_config;
Jiri Olsad80518c2015-10-25 15:51:30 +0100650 struct stat_event stat;
Jiri Olsa2d8f0f12015-10-25 15:51:33 +0100651 struct stat_round_event stat_round;
Adrian Hunter46bc29b2016-03-08 10:38:44 +0200652 struct time_conv_event time_conv;
David Carrillo-Cisnerose9def1b2017-07-17 21:25:48 -0700653 struct feature_event feat;
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200654};
Frederic Weisbecker66e274f2009-08-12 11:07:25 +0200655
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200656void perf_event__print_totals(void);
Arnaldo Carvalho de Melo62daacb2009-11-27 16:29:22 -0200657
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200658struct perf_tool;
Arnaldo Carvalho de Melo401b8e12011-02-10 12:52:47 -0200659struct thread_map;
Jiri Olsa6c872902015-10-25 15:51:24 +0100660struct cpu_map;
Jiri Olsa67424342015-10-25 15:51:28 +0100661struct perf_stat_config;
Jiri Olsa5796f8f2015-10-25 15:51:31 +0100662struct perf_counts_values;
Arnaldo Carvalho de Melo4aa65632009-12-13 19:50:29 -0200663
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200664typedef int (*perf_event__handler_t)(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200665 union perf_event *event,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200666 struct perf_sample *sample,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200667 struct machine *machine);
Arnaldo Carvalho de Melocf553112010-01-07 19:59:40 -0200668
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200669int perf_event__synthesize_thread_map(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200670 struct thread_map *threads,
Arnaldo Carvalho de Melo7c940c12011-02-11 11:45:54 -0200671 perf_event__handler_t process,
Kan Liang9d9cad72015-06-17 09:51:11 -0400672 struct machine *machine, bool mmap_data,
673 unsigned int proc_map_timeout);
Jiri Olsa99471c92015-10-25 15:51:20 +0100674int perf_event__synthesize_thread_map2(struct perf_tool *tool,
675 struct thread_map *threads,
676 perf_event__handler_t process,
677 struct machine *machine);
Jiri Olsa6c872902015-10-25 15:51:24 +0100678int perf_event__synthesize_cpu_map(struct perf_tool *tool,
679 struct cpu_map *cpus,
680 perf_event__handler_t process,
681 struct machine *machine);
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200682int perf_event__synthesize_threads(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200683 perf_event__handler_t process,
Kan Liang9d9cad72015-06-17 09:51:11 -0400684 struct machine *machine, bool mmap_data,
Kan Liang340b47f2017-09-29 07:47:54 -0700685 unsigned int proc_map_timeout,
686 unsigned int nr_threads_synthesize);
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200687int perf_event__synthesize_kernel_mmap(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200688 perf_event__handler_t process,
Adrian Hunter0ae617b2014-01-29 16:14:40 +0200689 struct machine *machine);
Jiri Olsa67424342015-10-25 15:51:28 +0100690int perf_event__synthesize_stat_config(struct perf_tool *tool,
691 struct perf_stat_config *config,
692 perf_event__handler_t process,
693 struct machine *machine);
Jiri Olsa8e381592015-10-25 15:51:29 +0100694void perf_event__read_stat_config(struct perf_stat_config *config,
695 struct stat_config_event *event);
Jiri Olsa5796f8f2015-10-25 15:51:31 +0100696int perf_event__synthesize_stat(struct perf_tool *tool,
697 u32 cpu, u32 thread, u64 id,
698 struct perf_counts_values *count,
699 perf_event__handler_t process,
700 struct machine *machine);
Jiri Olsad4c22592015-10-25 15:51:34 +0100701int perf_event__synthesize_stat_round(struct perf_tool *tool,
702 u64 time, u64 type,
703 perf_event__handler_t process,
704 struct machine *machine);
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200705int perf_event__synthesize_modules(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200706 perf_event__handler_t process,
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200707 struct machine *machine);
708
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200709int perf_event__process_comm(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200710 union perf_event *event,
711 struct perf_sample *sample,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200712 struct machine *machine);
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200713int perf_event__process_lost(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200714 union perf_event *event,
715 struct perf_sample *sample,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200716 struct machine *machine);
Kan Liangc4937a92015-05-10 15:13:15 -0400717int perf_event__process_lost_samples(struct perf_tool *tool,
718 union perf_event *event,
719 struct perf_sample *sample,
720 struct machine *machine);
Adrian Hunter4a96f7a2015-04-30 17:37:29 +0300721int perf_event__process_aux(struct perf_tool *tool,
722 union perf_event *event,
723 struct perf_sample *sample,
724 struct machine *machine);
Adrian Hunter0ad21f62015-04-30 17:37:30 +0300725int perf_event__process_itrace_start(struct perf_tool *tool,
726 union perf_event *event,
727 struct perf_sample *sample,
728 struct machine *machine);
Adrian Hunter02860392015-07-21 12:44:03 +0300729int perf_event__process_switch(struct perf_tool *tool,
730 union perf_event *event,
731 struct perf_sample *sample,
732 struct machine *machine);
Hari Bathinif3b36142017-03-08 02:11:43 +0530733int perf_event__process_namespaces(struct perf_tool *tool,
734 union perf_event *event,
735 struct perf_sample *sample,
736 struct machine *machine);
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200737int perf_event__process_mmap(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200738 union perf_event *event,
739 struct perf_sample *sample,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200740 struct machine *machine);
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200741int perf_event__process_mmap2(struct perf_tool *tool,
742 union perf_event *event,
743 struct perf_sample *sample,
744 struct machine *machine);
Arnaldo Carvalho de Melof62d3f02012-10-06 15:44:59 -0300745int perf_event__process_fork(struct perf_tool *tool,
746 union perf_event *event,
747 struct perf_sample *sample,
748 struct machine *machine);
749int perf_event__process_exit(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200750 union perf_event *event,
751 struct perf_sample *sample,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200752 struct machine *machine);
Arnaldo Carvalho de Melo45694aa2011-11-28 08:30:20 -0200753int perf_event__process(struct perf_tool *tool,
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200754 union perf_event *event,
755 struct perf_sample *sample,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -0200756 struct machine *machine);
Arnaldo Carvalho de Melo62daacb2009-11-27 16:29:22 -0200757
Arnaldo Carvalho de Melo1ed091c2009-11-27 16:29:23 -0200758struct addr_location;
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300759
Arnaldo Carvalho de Melobb3eb562016-03-22 18:39:09 -0300760int machine__resolve(struct machine *machine, struct addr_location *al,
761 struct perf_sample *sample);
Arnaldo Carvalho de Melo1ed091c2009-11-27 16:29:23 -0200762
Arnaldo Carvalho de Melob91fc392015-04-06 20:43:22 -0300763void addr_location__put(struct addr_location *al);
764
Adrian Hunter9b0d2d82014-07-22 16:17:39 +0300765struct thread;
766
767bool is_bts_event(struct perf_event_attr *attr);
768bool sample_addr_correlates_sym(struct perf_event_attr *attr);
Arnaldo Carvalho de Meloc2740a82016-03-22 18:44:46 -0300769void thread__resolve(struct thread *thread, struct addr_location *al,
770 struct perf_sample *sample);
Adrian Hunter9b0d2d82014-07-22 16:17:39 +0300771
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200772const char *perf_event__name(unsigned int id);
Arnaldo Carvalho de Meloc8446b92010-05-14 10:36:42 -0300773
Adrian Hunterb1cf6f62013-08-27 11:23:12 +0300774size_t perf_event__sample_event_size(const struct perf_sample *sample, u64 type,
Jiri Olsa352ea452014-01-07 13:47:25 +0100775 u64 read_format);
Andrew Vagin74eec262011-11-28 12:03:31 +0300776int perf_event__synthesize_sample(union perf_event *event, u64 type,
Jiri Olsa352ea452014-01-07 13:47:25 +0100777 u64 read_format,
Adrian Hunter936f1f32018-01-16 15:14:52 +0200778 const struct perf_sample *sample);
Arnaldo Carvalho de Melod0dd74e2011-01-21 13:46:41 -0200779
Namhyung Kime803cf92015-09-22 09:24:55 +0900780pid_t perf_event__synthesize_comm(struct perf_tool *tool,
781 union perf_event *event, pid_t pid,
782 perf_event__handler_t process,
783 struct machine *machine);
784
Hari Bathinie907caf2017-03-08 02:11:51 +0530785int perf_event__synthesize_namespaces(struct perf_tool *tool,
786 union perf_event *event,
787 pid_t pid, pid_t tgid,
788 perf_event__handler_t process,
789 struct machine *machine);
790
Jiri Olsaa18382b2014-01-07 13:47:20 +0100791int perf_event__synthesize_mmap_events(struct perf_tool *tool,
792 union perf_event *event,
793 pid_t pid, pid_t tgid,
794 perf_event__handler_t process,
795 struct machine *machine,
Kan Liang9d9cad72015-06-17 09:51:11 -0400796 bool mmap_data,
797 unsigned int proc_map_timeout);
Jiri Olsaa18382b2014-01-07 13:47:20 +0100798
Arnaldo Carvalho de Melo482ad892011-12-02 11:06:37 -0200799size_t perf_event__fprintf_comm(union perf_event *event, FILE *fp);
800size_t perf_event__fprintf_mmap(union perf_event *event, FILE *fp);
Stephane Eranian5c5e8542013-08-21 12:10:25 +0200801size_t perf_event__fprintf_mmap2(union perf_event *event, FILE *fp);
Arnaldo Carvalho de Melo482ad892011-12-02 11:06:37 -0200802size_t perf_event__fprintf_task(union perf_event *event, FILE *fp);
Adrian Hunter4a96f7a2015-04-30 17:37:29 +0300803size_t perf_event__fprintf_aux(union perf_event *event, FILE *fp);
Adrian Hunter0ad21f62015-04-30 17:37:30 +0300804size_t perf_event__fprintf_itrace_start(union perf_event *event, FILE *fp);
Adrian Hunter02860392015-07-21 12:44:03 +0300805size_t perf_event__fprintf_switch(union perf_event *event, FILE *fp);
Jiri Olsaec7fa5962015-10-25 15:51:22 +0100806size_t perf_event__fprintf_thread_map(union perf_event *event, FILE *fp);
Jiri Olsaeb12a1a2015-10-25 15:51:26 +0100807size_t perf_event__fprintf_cpu_map(union perf_event *event, FILE *fp);
Hari Bathinif3b36142017-03-08 02:11:43 +0530808size_t perf_event__fprintf_namespaces(union perf_event *event, FILE *fp);
Arnaldo Carvalho de Melo482ad892011-12-02 11:06:37 -0200809size_t perf_event__fprintf(union perf_event *event, FILE *fp);
810
Arnaldo Carvalho de Melob843f622017-04-27 21:21:09 -0300811int kallsyms__get_function_start(const char *kallsyms_filename,
812 const char *symbol_name, u64 *addr);
Adrian Hunter29b596b2014-01-29 16:14:37 +0200813
Jiri Olsa6c872902015-10-25 15:51:24 +0100814void *cpu_map_data__alloc(struct cpu_map *map, size_t *size, u16 *type, int *max);
815void cpu_map_data__synthesize(struct cpu_map_data *data, struct cpu_map *map,
816 u16 type, int max);
Arnaldo Carvalho de Melo5ab8c682017-04-25 15:30:47 -0300817
818void event_attr_init(struct perf_event_attr *attr);
819
820int perf_event_paranoid(void);
821
822extern int sysctl_perf_event_max_stack;
823extern int sysctl_perf_event_max_contexts_per_stack;
824
John Kacur8b40f522009-09-24 18:02:18 +0200825#endif /* __PERF_RECORD_H */