blob: bbbc0dcd461ff453b66791cf78f019aad4da5139 [file] [log] [blame]
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001/* SPDX-License-Identifier: GPL-2.0 */
2#ifndef __PERF_TOOL_H
3#define __PERF_TOOL_H
4
5#include <stdbool.h>
6
7#include <linux/types.h>
8
9struct perf_session;
10union perf_event;
David Brazdil0f672f62019-12-10 10:32:29 +000011struct evlist;
12struct evsel;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000013struct perf_sample;
14struct perf_tool;
15struct machine;
16struct ordered_events;
17
18typedef int (*event_sample)(struct perf_tool *tool, union perf_event *event,
19 struct perf_sample *sample,
David Brazdil0f672f62019-12-10 10:32:29 +000020 struct evsel *evsel, struct machine *machine);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000021
22typedef int (*event_op)(struct perf_tool *tool, union perf_event *event,
23 struct perf_sample *sample, struct machine *machine);
24
25typedef int (*event_attr_op)(struct perf_tool *tool,
26 union perf_event *event,
David Brazdil0f672f62019-12-10 10:32:29 +000027 struct evlist **pevlist);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000028
David Brazdil0f672f62019-12-10 10:32:29 +000029typedef int (*event_op2)(struct perf_session *session, union perf_event *event);
30typedef s64 (*event_op3)(struct perf_session *session, union perf_event *event);
31typedef int (*event_op4)(struct perf_session *session, union perf_event *event, u64 data);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000032
33typedef int (*event_oe)(struct perf_tool *tool, union perf_event *event,
34 struct ordered_events *oe);
35
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000036enum show_feature_header {
37 SHOW_FEAT_NO_HEADER = 0,
38 SHOW_FEAT_HEADER,
39 SHOW_FEAT_HEADER_FULL_INFO,
40};
41
42struct perf_tool {
43 event_sample sample,
44 read;
45 event_op mmap,
46 mmap2,
47 comm,
48 namespaces,
Olivier Deprez157378f2022-04-04 15:47:50 +020049 cgroup,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000050 fork,
51 exit,
52 lost,
53 lost_samples,
54 aux,
55 itrace_start,
56 context_switch,
57 throttle,
David Brazdil0f672f62019-12-10 10:32:29 +000058 unthrottle,
59 ksymbol,
Olivier Deprez157378f2022-04-04 15:47:50 +020060 bpf,
61 text_poke;
David Brazdil0f672f62019-12-10 10:32:29 +000062
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000063 event_attr_op attr;
64 event_attr_op event_update;
65 event_op2 tracing_data;
66 event_oe finished_round;
67 event_op2 build_id,
68 id_index,
69 auxtrace_info,
70 auxtrace_error,
71 time_conv,
72 thread_map,
73 cpu_map,
74 stat_config,
75 stat,
76 stat_round,
77 feature;
David Brazdil0f672f62019-12-10 10:32:29 +000078 event_op4 compressed;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000079 event_op3 auxtrace;
80 bool ordered_events;
81 bool ordering_requires_timestamps;
82 bool namespace_events;
Olivier Deprez157378f2022-04-04 15:47:50 +020083 bool cgroup_events;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000084 bool no_warn;
85 enum show_feature_header show_feat_hdr;
86};
87
88#endif /* __PERF_TOOL_H */