Merge tag 'sound-5.13-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai...
[linux-2.6-microblaze.git] / tools / perf / util / metricgroup.h
1 // SPDX-License-Identifier: GPL-2.0-only
2 #ifndef METRICGROUP_H
3 #define METRICGROUP_H 1
4
5 #include <linux/list.h>
6 #include <linux/rbtree.h>
7 #include <stdbool.h>
8 #include "pmu-events/pmu-events.h"
9
10 struct evlist;
11 struct evsel;
12 struct option;
13 struct rblist;
14 struct pmu_events_map;
15 struct cgroup;
16
17 struct metric_event {
18         struct rb_node nd;
19         struct evsel *evsel;
20         struct list_head head; /* list of metric_expr */
21 };
22
23 struct metric_ref {
24         const char *metric_name;
25         const char *metric_expr;
26 };
27
28 struct metric_expr {
29         struct list_head nd;
30         const char *metric_expr;
31         const char *metric_name;
32         const char *metric_unit;
33         struct evsel **metric_events;
34         struct metric_ref *metric_refs;
35         int runtime;
36 };
37
38 struct metric_event *metricgroup__lookup(struct rblist *metric_events,
39                                          struct evsel *evsel,
40                                          bool create);
41 int metricgroup__parse_groups(const struct option *opt,
42                               const char *str,
43                               bool metric_no_group,
44                               bool metric_no_merge,
45                               struct rblist *metric_events);
46 struct pmu_event *metricgroup__find_metric(const char *metric,
47                                            struct pmu_events_map *map);
48 int metricgroup__parse_groups_test(struct evlist *evlist,
49                                    struct pmu_events_map *map,
50                                    const char *str,
51                                    bool metric_no_group,
52                                    bool metric_no_merge,
53                                    struct rblist *metric_events);
54
55 void metricgroup__print(bool metrics, bool groups, char *filter,
56                         bool raw, bool details);
57 bool metricgroup__has_metric(const char *metric);
58 int arch_get_runtimeparam(struct pmu_event *pe __maybe_unused);
59 void metricgroup__rblist_exit(struct rblist *metric_events);
60
61 int metricgroup__copy_metric_events(struct evlist *evlist, struct cgroup *cgrp,
62                                     struct rblist *new_metric_events,
63                                     struct rblist *old_metric_events);
64 #endif