Merge tag 'spi-fix-v6.9-merge-window' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-2.6-block.git] / tools / perf / util / auxtrace.h
CommitLineData
2025cf9e 1/* SPDX-License-Identifier: GPL-2.0-only */
718c602d
AH
2/*
3 * auxtrace.h: AUX area trace support
4 * Copyright (c) 2013-2015, Intel Corporation.
718c602d
AH
5 */
6
7#ifndef __PERF_AUXTRACE_H
8#define __PERF_AUXTRACE_H
9
10#include <sys/types.h>
a43783ae 11#include <errno.h>
718c602d 12#include <stdbool.h>
9e0cc4fe 13#include <stddef.h>
ea49e01c 14#include <stdio.h> // FILE
e5027893 15#include <linux/list.h>
718c602d
AH
16#include <linux/perf_event.h>
17#include <linux/types.h>
c4d9d95f 18#include <perf/cpumap.h>
291ed51d 19#include <asm/bitsperlong.h>
91854f9a 20#include <asm/barrier.h>
718c602d 21
9e0cc4fe
AH
22union perf_event;
23struct perf_session;
63503dba 24struct evlist;
853f37d7 25struct evsel;
9e0cc4fe 26struct perf_tool;
a5830532 27struct mmap;
bd23ac11 28struct perf_sample;
f6986c95 29struct option;
9e0cc4fe 30struct record_opts;
ea49e01c 31struct perf_record_auxtrace_error;
72932371 32struct perf_record_auxtrace_info;
85ed4729 33struct events_stats;
ad60ba0c 34struct perf_pmu;
718c602d 35
47729258
ACM
36enum auxtrace_error_type {
37 PERF_AUXTRACE_ERROR_ITRACE = 1,
38 PERF_AUXTRACE_ERROR_MAX
39};
40
c3fcadf0
AH
41/* Auxtrace records must have the same alignment as perf event records */
42#define PERF_AUXTRACE_RECORD_ALIGNMENT 8
43
73f75fb1
AH
44enum auxtrace_type {
45 PERF_AUXTRACE_UNKNOWN,
55ea4ab4 46 PERF_AUXTRACE_INTEL_PT,
d0170af7 47 PERF_AUXTRACE_INTEL_BTS,
a818c563 48 PERF_AUXTRACE_CS_ETM,
ffd3d18c 49 PERF_AUXTRACE_ARM_SPE,
b96e6615 50 PERF_AUXTRACE_S390_CPUMSF,
057381a7 51 PERF_AUXTRACE_HISI_PTT,
73f75fb1
AH
52};
53
f6986c95
AH
54enum itrace_period_type {
55 PERF_ITRACE_PERIOD_INSTRUCTIONS,
56 PERF_ITRACE_PERIOD_TICKS,
57 PERF_ITRACE_PERIOD_NANOSECS,
58};
59
cb971438
AH
60#define AUXTRACE_ERR_FLG_OVERFLOW (1 << ('o' - 'a'))
61#define AUXTRACE_ERR_FLG_DATA_LOST (1 << ('l' - 'a'))
62
935aac2d 63#define AUXTRACE_LOG_FLG_ALL_PERF_EVTS (1 << ('a' - 'a'))
a7fdd30a 64#define AUXTRACE_LOG_FLG_ON_ERROR (1 << ('e' - 'a'))
4b2b2c6a 65#define AUXTRACE_LOG_FLG_USE_STDOUT (1 << ('o' - 'a'))
935aac2d 66
f6986c95
AH
67/**
68 * struct itrace_synth_opts - AUX area tracing synthesis options.
69 * @set: indicates whether or not options have been set
4eb06815 70 * @default_no_sample: Default to no sampling.
f6986c95
AH
71 * @inject: indicates the event (not just the sample) must be fully synthesized
72 * because 'perf inject' will write it out
73 * @instructions: whether to synthesize 'instructions' events
7e55b956
SG
74 * @cycles: whether to synthesize 'cycles' events
75 * (not fully accurate, since CYC packets are only emitted
76 * together with other events, such as branches)
f6986c95 77 * @branches: whether to synthesize 'branches' events
9f74d770 78 * (branch misses only for Arm SPE)
53c76b0e 79 * @transactions: whether to synthesize events for transactions
3bdafdff 80 * @ptwrites: whether to synthesize events for ptwrites
70d110d7 81 * @pwr_events: whether to synthesize power events
181ebb5e
AH
82 * @other_events: whether to synthesize other events recorded due to the use of
83 * aux_output
8ee9a9ab 84 * @intr_events: whether to synthesize interrupt events
f6986c95
AH
85 * @errors: whether to synthesize decoder error events
86 * @dont_decode: whether to skip decoding entirely
87 * @log: write a decoding log
88 * @calls: limit branch samples to calls (can be combined with @returns)
89 * @returns: limit branch samples to returns (can be combined with @calls)
90 * @callchain: add callchain to 'instructions' events
1c5c25b3 91 * @add_callchain: add callchain to existing event records
50f73637 92 * @thread_stack: feed branches to the thread_stack
601897b5 93 * @last_branch: add branch context to 'instruction' events
ec90e42c 94 * @add_last_branch: add branch context to existing event records
b6778fe1 95 * @approx_ipc: approximate IPC
9f74d770
TX
96 * @flc: whether to synthesize first level cache events
97 * @llc: whether to synthesize last level cache events
98 * @tlb: whether to synthesize TLB events
99 * @remote_access: whether to synthesize remote access events
014a771c 100 * @mem: whether to synthesize memory events
18f49494 101 * @timeless_decoding: prefer "timeless" decoding i.e. ignore timestamps
26218331 102 * @use_timestamp: use the timestamp trace as kernel time
83d7f5f1
AH
103 * @vm_time_correlation: perform VM Time Correlation
104 * @vm_tm_corr_dry_run: VM Time Correlation dry-run
105 * @vm_tm_corr_args: VM Time Correlation implementation-specific arguments
f6986c95 106 * @callchain_sz: maximum callchain size
601897b5 107 * @last_branch_sz: branch context size
f6986c95
AH
108 * @period: 'instructions' events period
109 * @period_type: 'instructions' events period type
d1706b39 110 * @initial_skip: skip N events at the beginning.
644e0840 111 * @cpu_bitmap: CPUs for which to synthesize events, or NULL for all
33526f36
AH
112 * @ptime_range: time intervals to trace or NULL
113 * @range_num: number of time intervals to trace
cb971438
AH
114 * @error_plus_flags: flags to affect what errors are reported
115 * @error_minus_flags: flags to affect what errors are reported
935aac2d
AH
116 * @log_plus_flags: flags to affect what is logged
117 * @log_minus_flags: flags to affect what is logged
51971536 118 * @quick: quicker (less detailed) decoding
a7fdd30a 119 * @log_on_error_size: size of log to keep for outputting log only on errors
f6986c95
AH
120 */
121struct itrace_synth_opts {
122 bool set;
4eb06815 123 bool default_no_sample;
f6986c95
AH
124 bool inject;
125 bool instructions;
7e55b956 126 bool cycles;
f6986c95 127 bool branches;
53c76b0e 128 bool transactions;
3bdafdff 129 bool ptwrites;
70d110d7 130 bool pwr_events;
181ebb5e 131 bool other_events;
8ee9a9ab 132 bool intr_events;
f6986c95
AH
133 bool errors;
134 bool dont_decode;
135 bool log;
136 bool calls;
137 bool returns;
138 bool callchain;
1c5c25b3 139 bool add_callchain;
50f73637 140 bool thread_stack;
601897b5 141 bool last_branch;
ec90e42c 142 bool add_last_branch;
b6778fe1 143 bool approx_ipc;
9f74d770
TX
144 bool flc;
145 bool llc;
146 bool tlb;
147 bool remote_access;
014a771c 148 bool mem;
18f49494 149 bool timeless_decoding;
26218331 150 bool use_timestamp;
83d7f5f1
AH
151 bool vm_time_correlation;
152 bool vm_tm_corr_dry_run;
153 char *vm_tm_corr_args;
f6986c95 154 unsigned int callchain_sz;
601897b5 155 unsigned int last_branch_sz;
f6986c95
AH
156 unsigned long long period;
157 enum itrace_period_type period_type;
d1706b39 158 unsigned long initial_skip;
644e0840 159 unsigned long *cpu_bitmap;
33526f36
AH
160 struct perf_time_interval *ptime_range;
161 int range_num;
cb971438
AH
162 unsigned int error_plus_flags;
163 unsigned int error_minus_flags;
935aac2d
AH
164 unsigned int log_plus_flags;
165 unsigned int log_minus_flags;
51971536 166 unsigned int quick;
a7fdd30a 167 unsigned int log_on_error_size;
f6986c95
AH
168};
169
99fa2984
AH
170/**
171 * struct auxtrace_index_entry - indexes a AUX area tracing event within a
172 * perf.data file.
173 * @file_offset: offset within the perf.data file
174 * @sz: size of the event
175 */
176struct auxtrace_index_entry {
177 u64 file_offset;
178 u64 sz;
179};
180
181#define PERF_AUXTRACE_INDEX_ENTRY_COUNT 256
182
183/**
184 * struct auxtrace_index - index of AUX area tracing events within a perf.data
185 * file.
186 * @list: linking a number of arrays of entries
187 * @nr: number of entries
188 * @entries: array of entries
189 */
190struct auxtrace_index {
191 struct list_head list;
192 size_t nr;
193 struct auxtrace_index_entry entries[PERF_AUXTRACE_INDEX_ENTRY_COUNT];
194};
195
c446870d
AH
196/**
197 * struct auxtrace - session callbacks to allow AUX area data decoding.
198 * @process_event: lets the decoder see all session events
b818ec61 199 * @process_auxtrace_event: process a PERF_RECORD_AUXTRACE event
ac2f445f
AH
200 * @queue_data: queue an AUX sample or PERF_RECORD_AUXTRACE event for later
201 * processing
b04b8dd1 202 * @dump_auxtrace_sample: dump AUX area sample data
c446870d
AH
203 * @flush_events: process any remaining data
204 * @free_events: free resources associated with event processing
205 * @free: free resources associated with the session
206 */
207struct auxtrace {
208 int (*process_event)(struct perf_session *session,
209 union perf_event *event,
210 struct perf_sample *sample,
211 struct perf_tool *tool);
73f75fb1
AH
212 int (*process_auxtrace_event)(struct perf_session *session,
213 union perf_event *event,
214 struct perf_tool *tool);
ac2f445f
AH
215 int (*queue_data)(struct perf_session *session,
216 struct perf_sample *sample, union perf_event *event,
217 u64 data_offset);
b04b8dd1
AH
218 void (*dump_auxtrace_sample)(struct perf_session *session,
219 struct perf_sample *sample);
c446870d
AH
220 int (*flush_events)(struct perf_session *session,
221 struct perf_tool *tool);
222 void (*free_events)(struct perf_session *session);
223 void (*free)(struct perf_session *session);
853f37d7
AH
224 bool (*evsel_is_auxtrace)(struct perf_session *session,
225 struct evsel *evsel);
c446870d
AH
226};
227
e5027893
AH
228/**
229 * struct auxtrace_buffer - a buffer containing AUX area tracing data.
230 * @list: buffers are queued in a list held by struct auxtrace_queue
231 * @size: size of the buffer in bytes
232 * @pid: in per-thread mode, the pid this buffer is associated with
233 * @tid: in per-thread mode, the tid this buffer is associated with
234 * @cpu: in per-cpu mode, the cpu this buffer is associated with
235 * @data: actual buffer data (can be null if the data has not been loaded)
236 * @data_offset: file offset at which the buffer can be read
237 * @mmap_addr: mmap address at which the buffer can be read
238 * @mmap_size: size of the mmap at @mmap_addr
239 * @data_needs_freeing: @data was malloc'd so free it when it is no longer
240 * needed
241 * @consecutive: the original data was split up and this buffer is consecutive
242 * to the previous buffer
243 * @offset: offset as determined by aux_head / aux_tail members of struct
244 * perf_event_mmap_page
245 * @reference: an implementation-specific reference determined when the data is
246 * recorded
247 * @buffer_nr: used to number each buffer
248 * @use_size: implementation actually only uses this number of bytes
249 * @use_data: implementation actually only uses data starting at this address
250 */
251struct auxtrace_buffer {
252 struct list_head list;
253 size_t size;
254 pid_t pid;
255 pid_t tid;
6d18804b 256 struct perf_cpu cpu;
e5027893
AH
257 void *data;
258 off_t data_offset;
259 void *mmap_addr;
260 size_t mmap_size;
261 bool data_needs_freeing;
262 bool consecutive;
263 u64 offset;
264 u64 reference;
265 u64 buffer_nr;
266 size_t use_size;
267 void *use_data;
268};
269
270/**
271 * struct auxtrace_queue - a queue of AUX area tracing data buffers.
272 * @head: head of buffer list
273 * @tid: in per-thread mode, the tid this queue is associated with
274 * @cpu: in per-cpu mode, the cpu this queue is associated with
275 * @set: %true once this queue has been dedicated to a specific thread or cpu
276 * @priv: implementation-specific data
277 */
278struct auxtrace_queue {
279 struct list_head head;
280 pid_t tid;
281 int cpu;
282 bool set;
283 void *priv;
284};
285
286/**
287 * struct auxtrace_queues - an array of AUX area tracing queues.
288 * @queue_array: array of queues
289 * @nr_queues: number of queues
290 * @new_data: set whenever new data is queued
291 * @populated: queues have been fully populated using the auxtrace_index
292 * @next_buffer_nr: used to number each buffer
293 */
294struct auxtrace_queues {
295 struct auxtrace_queue *queue_array;
296 unsigned int nr_queues;
297 bool new_data;
298 bool populated;
299 u64 next_buffer_nr;
300};
301
f9397155
AH
302/**
303 * struct auxtrace_heap_item - element of struct auxtrace_heap.
304 * @queue_nr: queue number
305 * @ordinal: value used for sorting (lowest ordinal is top of the heap) expected
306 * to be a timestamp
307 */
308struct auxtrace_heap_item {
309 unsigned int queue_nr;
310 u64 ordinal;
311};
312
313/**
314 * struct auxtrace_heap - a heap suitable for sorting AUX area tracing queues.
315 * @heap_array: the heap
316 * @heap_cnt: the number of elements in the heap
317 * @heap_sz: maximum number of elements (grows as needed)
318 */
319struct auxtrace_heap {
320 struct auxtrace_heap_item *heap_array;
321 unsigned int heap_cnt;
322 unsigned int heap_sz;
323};
324
718c602d
AH
325/**
326 * struct auxtrace_mmap - records an mmap of the auxtrace buffer.
327 * @base: address of mapped area
328 * @userpg: pointer to buffer's perf_event_mmap_page
329 * @mask: %0 if @len is not a power of two, otherwise (@len - %1)
330 * @len: size of mapped area
331 * @prev: previous aux_head
332 * @idx: index of this mmap
333 * @tid: tid for a per-thread mmap (also set if there is only 1 tid on a per-cpu
334 * mmap) otherwise %0
335 * @cpu: cpu number for a per-cpu mmap otherwise %-1
336 */
337struct auxtrace_mmap {
338 void *base;
339 void *userpg;
340 size_t mask;
341 size_t len;
342 u64 prev;
343 int idx;
344 pid_t tid;
345 int cpu;
346};
347
348/**
349 * struct auxtrace_mmap_params - parameters to set up struct auxtrace_mmap.
350 * @mask: %0 if @len is not a power of two, otherwise (@len - %1)
351 * @offset: file offset of mapped area
352 * @len: size of mapped area
353 * @prot: mmap memory protection
354 * @idx: index of this mmap
355 * @tid: tid for a per-thread mmap (also set if there is only 1 tid on a per-cpu
356 * mmap) otherwise %0
d01508f2
AH
357 * @mmap_needed: set to %false for non-auxtrace events. This is needed because
358 * auxtrace mmapping is done in the same code path as non-auxtrace
359 * mmapping but not every evsel that needs non-auxtrace mmapping
360 * also needs auxtrace mmapping.
718c602d
AH
361 * @cpu: cpu number for a per-cpu mmap otherwise %-1
362 */
363struct auxtrace_mmap_params {
364 size_t mask;
365 off_t offset;
366 size_t len;
367 int prot;
368 int idx;
369 pid_t tid;
d01508f2 370 bool mmap_needed;
6d18804b 371 struct perf_cpu cpu;
718c602d
AH
372};
373
9e0cc4fe
AH
374/**
375 * struct auxtrace_record - callbacks for recording AUX area data.
376 * @recording_options: validate and process recording options
377 * @info_priv_size: return the size of the private data in auxtrace_info_event
378 * @info_fill: fill-in the private data in auxtrace_info_event
379 * @free: free this auxtrace record structure
d20031bb
AH
380 * @snapshot_start: starting a snapshot
381 * @snapshot_finish: finishing a snapshot
382 * @find_snapshot: find data to snapshot within auxtrace mmap
383 * @parse_snapshot_options: parse snapshot options
9e0cc4fe
AH
384 * @reference: provide a 64-bit reference number for auxtrace_event
385 * @read_finish: called after reading from an auxtrace mmap
b818ec61 386 * @alignment: alignment (if any) for AUX area data
f0bb7ee8 387 * @default_aux_sample_size: default sample size for --aux sample option
ad60ba0c
AH
388 * @pmu: associated pmu
389 * @evlist: selected events list
9e0cc4fe
AH
390 */
391struct auxtrace_record {
392 int (*recording_options)(struct auxtrace_record *itr,
63503dba 393 struct evlist *evlist,
9e0cc4fe 394 struct record_opts *opts);
14a05e13 395 size_t (*info_priv_size)(struct auxtrace_record *itr,
63503dba 396 struct evlist *evlist);
9e0cc4fe
AH
397 int (*info_fill)(struct auxtrace_record *itr,
398 struct perf_session *session,
72932371 399 struct perf_record_auxtrace_info *auxtrace_info,
9e0cc4fe
AH
400 size_t priv_size);
401 void (*free)(struct auxtrace_record *itr);
d20031bb
AH
402 int (*snapshot_start)(struct auxtrace_record *itr);
403 int (*snapshot_finish)(struct auxtrace_record *itr);
404 int (*find_snapshot)(struct auxtrace_record *itr, int idx,
405 struct auxtrace_mmap *mm, unsigned char *data,
406 u64 *head, u64 *old);
407 int (*parse_snapshot_options)(struct auxtrace_record *itr,
408 struct record_opts *opts,
409 const char *str);
9e0cc4fe
AH
410 u64 (*reference)(struct auxtrace_record *itr);
411 int (*read_finish)(struct auxtrace_record *itr, int idx);
83b2ea25 412 unsigned int alignment;
f0bb7ee8 413 unsigned int default_aux_sample_size;
ad60ba0c
AH
414 struct perf_pmu *pmu;
415 struct evlist *evlist;
9e0cc4fe
AH
416};
417
1b36c03e
AH
418/**
419 * struct addr_filter - address filter.
420 * @list: list node
421 * @range: true if it is a range filter
422 * @start: true if action is 'filter' or 'start'
423 * @action: 'filter', 'start' or 'stop' ('tracestop' is accepted but converted
424 * to 'stop')
425 * @sym_from: symbol name for the filter address
426 * @sym_to: symbol name that determines the filter size
427 * @sym_from_idx: selects n'th from symbols with the same name (0 means global
428 * and less than 0 means symbol must be unique)
429 * @sym_to_idx: same as @sym_from_idx but for @sym_to
430 * @addr: filter address
431 * @size: filter region size (for range filters)
432 * @filename: DSO file name or NULL for the kernel
433 * @str: allocated string that contains the other string members
434 */
435struct addr_filter {
436 struct list_head list;
437 bool range;
438 bool start;
439 const char *action;
440 const char *sym_from;
441 const char *sym_to;
442 int sym_from_idx;
443 int sym_to_idx;
444 u64 addr;
445 u64 size;
446 const char *filename;
447 char *str;
448};
449
450/**
451 * struct addr_filters - list of address filters.
452 * @head: list of address filters
453 * @cnt: number of address filters
454 */
455struct addr_filters {
456 struct list_head head;
457 int cnt;
458};
459
f2a39fe8
ACM
460struct auxtrace_cache;
461
e31f0d01
AH
462#ifdef HAVE_AUXTRACE_SUPPORT
463
bbc49f12
LY
464u64 compat_auxtrace_mmap__read_head(struct auxtrace_mmap *mm);
465int compat_auxtrace_mmap__write_tail(struct auxtrace_mmap *mm, u64 tail);
466
467static inline u64 auxtrace_mmap__read_head(struct auxtrace_mmap *mm,
468 int kernel_is_64_bit __maybe_unused)
718c602d
AH
469{
470 struct perf_event_mmap_page *pc = mm->userpg;
bbc49f12
LY
471 u64 head;
472
473#if BITS_PER_LONG == 32
474 if (kernel_is_64_bit)
475 return compat_auxtrace_mmap__read_head(mm);
476#endif
477 head = READ_ONCE(pc->aux_head);
718c602d
AH
478
479 /* Ensure all reads are done after we read the head */
bde1e7d9 480 smp_rmb();
718c602d
AH
481 return head;
482}
483
bbc49f12
LY
484static inline int auxtrace_mmap__write_tail(struct auxtrace_mmap *mm, u64 tail,
485 int kernel_is_64_bit __maybe_unused)
718c602d
AH
486{
487 struct perf_event_mmap_page *pc = mm->userpg;
718c602d 488
bbc49f12
LY
489#if BITS_PER_LONG == 32
490 if (kernel_is_64_bit)
491 return compat_auxtrace_mmap__write_tail(mm, tail);
492#endif
718c602d 493 /* Ensure all reads are done before we write the tail out */
bde1e7d9 494 smp_mb();
1ea3cb15 495 WRITE_ONCE(pc->aux_tail, tail);
bbc49f12 496 return 0;
718c602d
AH
497}
498
499int auxtrace_mmap__mmap(struct auxtrace_mmap *mm,
500 struct auxtrace_mmap_params *mp,
501 void *userpg, int fd);
502void auxtrace_mmap__munmap(struct auxtrace_mmap *mm);
503void auxtrace_mmap_params__init(struct auxtrace_mmap_params *mp,
504 off_t auxtrace_offset,
505 unsigned int auxtrace_pages,
506 bool auxtrace_overwrite);
507void auxtrace_mmap_params__set_idx(struct auxtrace_mmap_params *mp,
d01508f2 508 struct evlist *evlist,
84bd5aba 509 struct evsel *evsel, int idx);
718c602d 510
9e0cc4fe 511typedef int (*process_auxtrace_t)(struct perf_tool *tool,
a5830532 512 struct mmap *map,
9e0cc4fe
AH
513 union perf_event *event, void *data1,
514 size_t len1, void *data2, size_t len2);
515
a5830532 516int auxtrace_mmap__read(struct mmap *map, struct auxtrace_record *itr,
9e0cc4fe
AH
517 struct perf_tool *tool, process_auxtrace_t fn);
518
a5830532 519int auxtrace_mmap__read_snapshot(struct mmap *map,
d20031bb
AH
520 struct auxtrace_record *itr,
521 struct perf_tool *tool, process_auxtrace_t fn,
522 size_t snapshot_size);
523
e5027893
AH
524int auxtrace_queues__init(struct auxtrace_queues *queues);
525int auxtrace_queues__add_event(struct auxtrace_queues *queues,
526 struct perf_session *session,
527 union perf_event *event, off_t data_offset,
528 struct auxtrace_buffer **buffer_ptr);
ac2f445f
AH
529struct auxtrace_queue *
530auxtrace_queues__sample_queue(struct auxtrace_queues *queues,
531 struct perf_sample *sample,
532 struct perf_session *session);
533int auxtrace_queues__add_sample(struct auxtrace_queues *queues,
534 struct perf_session *session,
535 struct perf_sample *sample, u64 data_offset,
536 u64 reference);
e5027893 537void auxtrace_queues__free(struct auxtrace_queues *queues);
99fa2984
AH
538int auxtrace_queues__process_index(struct auxtrace_queues *queues,
539 struct perf_session *session);
ac2f445f
AH
540int auxtrace_queue_data(struct perf_session *session, bool samples,
541 bool events);
e5027893
AH
542struct auxtrace_buffer *auxtrace_buffer__next(struct auxtrace_queue *queue,
543 struct auxtrace_buffer *buffer);
6aa3afc9
AH
544void *auxtrace_buffer__get_data_rw(struct auxtrace_buffer *buffer, int fd, bool rw);
545static inline void *auxtrace_buffer__get_data(struct auxtrace_buffer *buffer, int fd)
546{
547 return auxtrace_buffer__get_data_rw(buffer, fd, false);
548}
e5027893
AH
549void auxtrace_buffer__put_data(struct auxtrace_buffer *buffer);
550void auxtrace_buffer__drop_data(struct auxtrace_buffer *buffer);
551void auxtrace_buffer__free(struct auxtrace_buffer *buffer);
f9397155
AH
552
553int auxtrace_heap__add(struct auxtrace_heap *heap, unsigned int queue_nr,
554 u64 ordinal);
555void auxtrace_heap__pop(struct auxtrace_heap *heap);
556void auxtrace_heap__free(struct auxtrace_heap *heap);
557
c3278f02
AH
558struct auxtrace_cache_entry {
559 struct hlist_node hash;
560 u32 key;
561};
562
563struct auxtrace_cache *auxtrace_cache__new(unsigned int bits, size_t entry_size,
564 unsigned int limit_percent);
565void auxtrace_cache__free(struct auxtrace_cache *auxtrace_cache);
566void *auxtrace_cache__alloc_entry(struct auxtrace_cache *c);
567void auxtrace_cache__free_entry(struct auxtrace_cache *c, void *entry);
568int auxtrace_cache__add(struct auxtrace_cache *c, u32 key,
569 struct auxtrace_cache_entry *entry);
fd62c109 570void auxtrace_cache__remove(struct auxtrace_cache *c, u32 key);
c3278f02
AH
571void *auxtrace_cache__lookup(struct auxtrace_cache *c, u32 key);
572
63503dba 573struct auxtrace_record *auxtrace_record__init(struct evlist *evlist,
9e0cc4fe
AH
574 int *err);
575
d20031bb
AH
576int auxtrace_parse_snapshot_options(struct auxtrace_record *itr,
577 struct record_opts *opts,
578 const char *str);
f0bb7ee8
AH
579int auxtrace_parse_sample_options(struct auxtrace_record *itr,
580 struct evlist *evlist,
581 struct record_opts *opts, const char *str);
d58b3f7e 582void auxtrace_regroup_aux_output(struct evlist *evlist);
9e0cc4fe 583int auxtrace_record__options(struct auxtrace_record *itr,
63503dba 584 struct evlist *evlist,
9e0cc4fe 585 struct record_opts *opts);
14a05e13 586size_t auxtrace_record__info_priv_size(struct auxtrace_record *itr,
63503dba 587 struct evlist *evlist);
9e0cc4fe
AH
588int auxtrace_record__info_fill(struct auxtrace_record *itr,
589 struct perf_session *session,
72932371 590 struct perf_record_auxtrace_info *auxtrace_info,
9e0cc4fe
AH
591 size_t priv_size);
592void auxtrace_record__free(struct auxtrace_record *itr);
d20031bb 593int auxtrace_record__snapshot_start(struct auxtrace_record *itr);
ce7b0e42 594int auxtrace_record__snapshot_finish(struct auxtrace_record *itr, bool on_exit);
d20031bb
AH
595int auxtrace_record__find_snapshot(struct auxtrace_record *itr, int idx,
596 struct auxtrace_mmap *mm,
597 unsigned char *data, u64 *head, u64 *old);
9e0cc4fe 598u64 auxtrace_record__reference(struct auxtrace_record *itr);
ad60ba0c 599int auxtrace_record__read_finish(struct auxtrace_record *itr, int idx);
9e0cc4fe 600
99fa2984
AH
601int auxtrace_index__auxtrace_event(struct list_head *head, union perf_event *event,
602 off_t file_offset);
603int auxtrace_index__write(int fd, struct list_head *head);
604int auxtrace_index__process(int fd, u64 size, struct perf_session *session,
605 bool needs_swap);
606void auxtrace_index__free(struct list_head *head);
607
7151c1d1
AH
608void auxtrace_synth_guest_error(struct perf_record_auxtrace_error *auxtrace_error, int type,
609 int code, int cpu, pid_t pid, pid_t tid, u64 ip,
610 const char *msg, u64 timestamp,
611 pid_t machine_pid, int vcpu);
72932371 612void auxtrace_synth_error(struct perf_record_auxtrace_error *auxtrace_error, int type,
85ed4729 613 int code, int cpu, pid_t pid, pid_t tid, u64 ip,
16bd4321 614 const char *msg, u64 timestamp);
85ed4729 615
89f1688a
JO
616int perf_event__process_auxtrace_info(struct perf_session *session,
617 union perf_event *event);
7336555a
JO
618s64 perf_event__process_auxtrace(struct perf_session *session,
619 union perf_event *event);
89f1688a
JO
620int perf_event__process_auxtrace_error(struct perf_session *session,
621 union perf_event *event);
e621b8ff
AH
622int itrace_do_parse_synth_opts(struct itrace_synth_opts *synth_opts,
623 const char *str, int unset);
f6986c95
AH
624int itrace_parse_synth_opts(const struct option *opt, const char *str,
625 int unset);
4eb06815
AK
626void itrace_synth_opts__set_default(struct itrace_synth_opts *synth_opts,
627 bool no_sample);
9e0cc4fe 628
85ed4729
AH
629size_t perf_event__fprintf_auxtrace_error(union perf_event *event, FILE *fp);
630void perf_session__auxtrace_error_inc(struct perf_session *session,
631 union perf_event *event);
632void events_stats__auxtrace_error_warn(const struct events_stats *stats);
633
1b36c03e
AH
634void addr_filters__init(struct addr_filters *filts);
635void addr_filters__exit(struct addr_filters *filts);
636int addr_filters__parse_bare_filter(struct addr_filters *filts,
637 const char *filter);
63503dba 638int auxtrace_parse_filters(struct evlist *evlist);
1b36c03e 639
f2a39fe8
ACM
640int auxtrace__process_event(struct perf_session *session, union perf_event *event,
641 struct perf_sample *sample, struct perf_tool *tool);
b04b8dd1
AH
642void auxtrace__dump_auxtrace_sample(struct perf_session *session,
643 struct perf_sample *sample);
f2a39fe8
ACM
644int auxtrace__flush_events(struct perf_session *session, struct perf_tool *tool);
645void auxtrace__free_events(struct perf_session *session);
646void auxtrace__free(struct perf_session *session);
853f37d7
AH
647bool auxtrace__evsel_is_auxtrace(struct perf_session *session,
648 struct evsel *evsel);
c446870d 649
c12e039d 650#define ITRACE_HELP \
1e8f7869 651" i[period]: synthesize instructions events\n" \
7e55b956 652" y[period]: synthesize cycles events (same period as i)\n" \
9f74d770 653" b: synthesize branches events (branch misses for Arm SPE)\n" \
c12e039d
AK
654" c: synthesize branches events (calls only)\n" \
655" r: synthesize branches events (returns only)\n" \
656" x: synthesize transactions events\n" \
657" w: synthesize ptwrite events\n" \
658" p: synthesize power events\n" \
1e8f7869
AH
659" o: synthesize other events recorded due to the use\n" \
660" of aux-output (refer to perf record)\n" \
8ee9a9ab
AH
661" I: synthesize interrupt or similar (asynchronous) events\n" \
662" (e.g. Intel PT Event Trace)\n" \
cb971438
AH
663" e[flags]: synthesize error events\n" \
664" each flag must be preceded by + or -\n" \
665" error flags are: o (overflow)\n" \
666" l (data lost)\n" \
935aac2d
AH
667" d[flags]: create a debug log\n" \
668" each flag must be preceded by + or -\n" \
669" log flags are: a (all perf events)\n" \
4b2b2c6a 670" o (output to stdout)\n" \
9f74d770
TX
671" f: synthesize first level cache events\n" \
672" m: synthesize last level cache events\n" \
673" t: synthesize TLB events\n" \
674" a: synthesize remote access events\n" \
c12e039d 675" g[len]: synthesize a call chain (use with i or x)\n" \
1e8f7869 676" G[len]: synthesize a call chain on existing event records\n" \
c12e039d 677" l[len]: synthesize last branch entries (use with i or x)\n" \
1e8f7869 678" L[len]: synthesize last branch entries on existing event records\n" \
c12e039d 679" sNUMBER: skip initial number of events\n" \
51971536 680" q: quicker (less detailed) decoding\n" \
b6778fe1 681" A: approximate IPC\n" \
cf14013b 682" Z: prefer to ignore timestamps (so-called \"timeless\" decoding)\n" \
26218331 683" T: use the timestamp trace as kernel time\n" \
c12e039d 684" PERIOD[ns|us|ms|i|t]: specify period to sample stream\n" \
7e55b956 685" concatenate multiple options. Default is iybxwpe or cewp\n"
c12e039d 686
33526f36
AH
687static inline
688void itrace_synth_opts__set_time_range(struct itrace_synth_opts *opts,
689 struct perf_time_interval *ptime_range,
690 int range_num)
691{
692 opts->ptime_range = ptime_range;
693 opts->range_num = range_num;
694}
695
696static inline
697void itrace_synth_opts__clear_time_range(struct itrace_synth_opts *opts)
698{
699 opts->ptime_range = NULL;
700 opts->range_num = 0;
701}
c12e039d 702
e31f0d01 703#else
b4209025 704#include "debug.h"
e31f0d01
AH
705
706static inline struct auxtrace_record *
63503dba 707auxtrace_record__init(struct evlist *evlist __maybe_unused,
b8f8eb84 708 int *err)
e31f0d01
AH
709{
710 *err = 0;
711 return NULL;
712}
713
714static inline
715void auxtrace_record__free(struct auxtrace_record *itr __maybe_unused)
716{
717}
718
e31f0d01
AH
719static inline
720int auxtrace_record__options(struct auxtrace_record *itr __maybe_unused,
63503dba 721 struct evlist *evlist __maybe_unused,
e31f0d01
AH
722 struct record_opts *opts __maybe_unused)
723{
724 return 0;
725}
726
04612968
ACM
727static inline
728int perf_event__process_auxtrace_info(struct perf_session *session __maybe_unused,
729 union perf_event *event __maybe_unused)
730{
731 return 0;
732}
733
734static inline
735s64 perf_event__process_auxtrace(struct perf_session *session __maybe_unused,
736 union perf_event *event __maybe_unused)
737{
738 return 0;
739}
740
741static inline
742int perf_event__process_auxtrace_error(struct perf_session *session __maybe_unused,
743 union perf_event *event __maybe_unused)
744{
745 return 0;
746}
e31f0d01
AH
747
748static inline
749void perf_session__auxtrace_error_inc(struct perf_session *session
750 __maybe_unused,
751 union perf_event *event
752 __maybe_unused)
753{
754}
755
756static inline
757void events_stats__auxtrace_error_warn(const struct events_stats *stats
758 __maybe_unused)
759{
760}
761
e621b8ff
AH
762static inline
763int itrace_do_parse_synth_opts(struct itrace_synth_opts *synth_opts __maybe_unused,
764 const char *str __maybe_unused, int unset __maybe_unused)
765{
766 pr_err("AUX area tracing not supported\n");
767 return -EINVAL;
768}
769
e31f0d01
AH
770static inline
771int itrace_parse_synth_opts(const struct option *opt __maybe_unused,
772 const char *str __maybe_unused,
773 int unset __maybe_unused)
774{
775 pr_err("AUX area tracing not supported\n");
776 return -EINVAL;
777}
778
2dd6d8a1
AH
779static inline
780int auxtrace_parse_snapshot_options(struct auxtrace_record *itr __maybe_unused,
781 struct record_opts *opts __maybe_unused,
782 const char *str)
f0bb7ee8
AH
783{
784 if (!str)
785 return 0;
786 pr_err("AUX area tracing not supported\n");
787 return -EINVAL;
788}
789
790static inline
791int auxtrace_parse_sample_options(struct auxtrace_record *itr __maybe_unused,
792 struct evlist *evlist __maybe_unused,
793 struct record_opts *opts __maybe_unused,
794 const char *str)
2dd6d8a1
AH
795{
796 if (!str)
797 return 0;
798 pr_err("AUX area tracing not supported\n");
799 return -EINVAL;
800}
801
d58b3f7e
AH
802static inline
803void auxtrace_regroup_aux_output(struct evlist *evlist __maybe_unused)
804{
805}
806
e31f0d01
AH
807static inline
808int auxtrace__process_event(struct perf_session *session __maybe_unused,
809 union perf_event *event __maybe_unused,
810 struct perf_sample *sample __maybe_unused,
811 struct perf_tool *tool __maybe_unused)
812{
813 return 0;
814}
815
b04b8dd1
AH
816static inline
817void auxtrace__dump_auxtrace_sample(struct perf_session *session __maybe_unused,
818 struct perf_sample *sample __maybe_unused)
819{
820}
821
e31f0d01
AH
822static inline
823int auxtrace__flush_events(struct perf_session *session __maybe_unused,
824 struct perf_tool *tool __maybe_unused)
825{
826 return 0;
827}
828
829static inline
830void auxtrace__free_events(struct perf_session *session __maybe_unused)
831{
832}
833
834static inline
835void auxtrace_cache__free(struct auxtrace_cache *auxtrace_cache __maybe_unused)
836{
837}
838
839static inline
840void auxtrace__free(struct perf_session *session __maybe_unused)
841{
842}
843
844static inline
845int auxtrace_index__write(int fd __maybe_unused,
846 struct list_head *head __maybe_unused)
847{
848 return -EINVAL;
849}
850
851static inline
852int auxtrace_index__process(int fd __maybe_unused,
853 u64 size __maybe_unused,
854 struct perf_session *session __maybe_unused,
855 bool needs_swap __maybe_unused)
856{
857 return -EINVAL;
858}
859
860static inline
861void auxtrace_index__free(struct list_head *head __maybe_unused)
862{
863}
864
853f37d7
AH
865static inline
866bool auxtrace__evsel_is_auxtrace(struct perf_session *session __maybe_unused,
867 struct evsel *evsel __maybe_unused)
868{
869 return false;
870}
871
1b36c03e 872static inline
63503dba 873int auxtrace_parse_filters(struct evlist *evlist __maybe_unused)
1b36c03e
AH
874{
875 return 0;
876}
877
e31f0d01
AH
878int auxtrace_mmap__mmap(struct auxtrace_mmap *mm,
879 struct auxtrace_mmap_params *mp,
880 void *userpg, int fd);
881void auxtrace_mmap__munmap(struct auxtrace_mmap *mm);
882void auxtrace_mmap_params__init(struct auxtrace_mmap_params *mp,
883 off_t auxtrace_offset,
884 unsigned int auxtrace_pages,
885 bool auxtrace_overwrite);
886void auxtrace_mmap_params__set_idx(struct auxtrace_mmap_params *mp,
d01508f2 887 struct evlist *evlist,
84bd5aba 888 struct evsel *evsel, int idx);
e31f0d01 889
c12e039d
AK
890#define ITRACE_HELP ""
891
33526f36
AH
892static inline
893void itrace_synth_opts__set_time_range(struct itrace_synth_opts *opts
894 __maybe_unused,
895 struct perf_time_interval *ptime_range
896 __maybe_unused,
897 int range_num __maybe_unused)
898{
899}
900
901static inline
902void itrace_synth_opts__clear_time_range(struct itrace_synth_opts *opts
903 __maybe_unused)
904{
905}
906
e31f0d01
AH
907#endif
908
718c602d 909#endif