xref: /linux/tools/perf/util/sample-raw.h (revision d08cb3fb0fbbb759c2e10747fec099290f2108ad)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __SAMPLE_RAW_H
3 #define __SAMPLE_RAW_H 1
4 
5 #include <stdbool.h>
6 
7 struct evlist;
8 struct perf_env;
9 union perf_event;
10 struct perf_sample;
11 
12 void evlist__s390_sample_raw(struct evlist *evlist, union perf_event *event,
13 			     struct perf_sample *sample);
14 bool evlist__has_amd_ibs(struct evlist *evlist);
15 void evlist__amd_sample_raw(struct evlist *evlist, union perf_event *event,
16 			    struct perf_sample *sample);
17 void evlist__init_trace_event_sample_raw(struct evlist *evlist, struct perf_env *env);
18 
19 #endif /* __SAMPLE_RAW_H */
20