blob: ea01c581150306067305a8de6c290e22f321bcd8 [file] [log] [blame]
Thomas Richter93115d32019-01-17 10:37:17 -03001/* SPDX-License-Identifier: GPL-2.0 */
2#ifndef __SAMPLE_RAW_H
3#define __SAMPLE_RAW_H 1
4
Jiri Olsa63503db2019-07-21 13:23:52 +02005struct evlist;
Thomas Richter93115d32019-01-17 10:37:17 -03006union perf_event;
7struct perf_sample;
8
Kim Phillips291dcb92021-08-17 17:15:09 -05009void evlist__s390_sample_raw(struct evlist *evlist, union perf_event *event,
10 struct perf_sample *sample);
11bool evlist__has_amd_ibs(struct evlist *evlist);
12void evlist__amd_sample_raw(struct evlist *evlist, union perf_event *event,
13 struct perf_sample *sample);
Arnaldo Carvalho de Melo44d2a552020-11-30 15:11:10 -030014void evlist__init_trace_event_sample_raw(struct evlist *evlist);
Thomas Richter93115d32019-01-17 10:37:17 -030015#endif /* __PERF_EVLIST_H */