perf pmu-events: Hide the pmu_events
[linux-2.6-microblaze.git] / tools / perf / util / metricgroup.c
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * Copyright (c) 2017, Intel Corporation.
4  */
5
6 /* Manage metrics and groups of metrics from JSON files */
7
8 #include "metricgroup.h"
9 #include "debug.h"
10 #include "evlist.h"
11 #include "evsel.h"
12 #include "strbuf.h"
13 #include "pmu.h"
14 #include "pmu-hybrid.h"
15 #include "expr.h"
16 #include "rblist.h"
17 #include <string.h>
18 #include <errno.h>
19 #include "strlist.h"
20 #include <assert.h>
21 #include <linux/ctype.h>
22 #include <linux/list_sort.h>
23 #include <linux/string.h>
24 #include <linux/zalloc.h>
25 #include <subcmd/parse-options.h>
26 #include <api/fs/fs.h>
27 #include "util.h"
28 #include <asm/bug.h>
29 #include "cgroup.h"
30
31 struct metric_event *metricgroup__lookup(struct rblist *metric_events,
32                                          struct evsel *evsel,
33                                          bool create)
34 {
35         struct rb_node *nd;
36         struct metric_event me = {
37                 .evsel = evsel
38         };
39
40         if (!metric_events)
41                 return NULL;
42
43         nd = rblist__find(metric_events, &me);
44         if (nd)
45                 return container_of(nd, struct metric_event, nd);
46         if (create) {
47                 rblist__add_node(metric_events, &me);
48                 nd = rblist__find(metric_events, &me);
49                 if (nd)
50                         return container_of(nd, struct metric_event, nd);
51         }
52         return NULL;
53 }
54
55 static int metric_event_cmp(struct rb_node *rb_node, const void *entry)
56 {
57         struct metric_event *a = container_of(rb_node,
58                                               struct metric_event,
59                                               nd);
60         const struct metric_event *b = entry;
61
62         if (a->evsel == b->evsel)
63                 return 0;
64         if ((char *)a->evsel < (char *)b->evsel)
65                 return -1;
66         return +1;
67 }
68
69 static struct rb_node *metric_event_new(struct rblist *rblist __maybe_unused,
70                                         const void *entry)
71 {
72         struct metric_event *me = malloc(sizeof(struct metric_event));
73
74         if (!me)
75                 return NULL;
76         memcpy(me, entry, sizeof(struct metric_event));
77         me->evsel = ((struct metric_event *)entry)->evsel;
78         INIT_LIST_HEAD(&me->head);
79         return &me->nd;
80 }
81
82 static void metric_event_delete(struct rblist *rblist __maybe_unused,
83                                 struct rb_node *rb_node)
84 {
85         struct metric_event *me = container_of(rb_node, struct metric_event, nd);
86         struct metric_expr *expr, *tmp;
87
88         list_for_each_entry_safe(expr, tmp, &me->head, nd) {
89                 free((char *)expr->metric_name);
90                 free(expr->metric_refs);
91                 free(expr->metric_events);
92                 free(expr);
93         }
94
95         free(me);
96 }
97
98 static void metricgroup__rblist_init(struct rblist *metric_events)
99 {
100         rblist__init(metric_events);
101         metric_events->node_cmp = metric_event_cmp;
102         metric_events->node_new = metric_event_new;
103         metric_events->node_delete = metric_event_delete;
104 }
105
106 void metricgroup__rblist_exit(struct rblist *metric_events)
107 {
108         rblist__exit(metric_events);
109 }
110
111 /*
112  * A node in the list of referenced metrics. metric_expr
113  * is held as a convenience to avoid a search through the
114  * metric list.
115  */
116 struct metric_ref_node {
117         const char *metric_name;
118         const char *metric_expr;
119         struct list_head list;
120 };
121
122 /**
123  * The metric under construction. The data held here will be placed in a
124  * metric_expr.
125  */
126 struct metric {
127         struct list_head nd;
128         /**
129          * The expression parse context importantly holding the IDs contained
130          * within the expression.
131          */
132         struct expr_parse_ctx *pctx;
133         /** The name of the metric such as "IPC". */
134         const char *metric_name;
135         /** Modifier on the metric such as "u" or NULL for none. */
136         const char *modifier;
137         /** The expression to parse, for example, "instructions/cycles". */
138         const char *metric_expr;
139         /**
140          * The "ScaleUnit" that scales and adds a unit to the metric during
141          * output.
142          */
143         const char *metric_unit;
144         /** Optional null terminated array of referenced metrics. */
145         struct metric_ref *metric_refs;
146         /**
147          * Is there a constraint on the group of events? In which case the
148          * events won't be grouped.
149          */
150         bool has_constraint;
151         /**
152          * Parsed events for the metric. Optional as events may be taken from a
153          * different metric whose group contains all the IDs necessary for this
154          * one.
155          */
156         struct evlist *evlist;
157 };
158
159 static void metricgroup___watchdog_constraint_hint(const char *name, bool foot)
160 {
161         static bool violate_nmi_constraint;
162
163         if (!foot) {
164                 pr_warning("Splitting metric group %s into standalone metrics.\n", name);
165                 violate_nmi_constraint = true;
166                 return;
167         }
168
169         if (!violate_nmi_constraint)
170                 return;
171
172         pr_warning("Try disabling the NMI watchdog to comply NO_NMI_WATCHDOG metric constraint:\n"
173                    "    echo 0 > /proc/sys/kernel/nmi_watchdog\n"
174                    "    perf stat ...\n"
175                    "    echo 1 > /proc/sys/kernel/nmi_watchdog\n");
176 }
177
178 static bool metricgroup__has_constraint(const struct pmu_event *pe)
179 {
180         if (!pe->metric_constraint)
181                 return false;
182
183         if (!strcmp(pe->metric_constraint, "NO_NMI_WATCHDOG") &&
184             sysctl__nmi_watchdog_enabled()) {
185                 metricgroup___watchdog_constraint_hint(pe->metric_name, false);
186                 return true;
187         }
188
189         return false;
190 }
191
192 static struct metric *metric__new(const struct pmu_event *pe,
193                                   const char *modifier,
194                                   bool metric_no_group,
195                                   int runtime)
196 {
197         struct metric *m;
198
199         m = zalloc(sizeof(*m));
200         if (!m)
201                 return NULL;
202
203         m->pctx = expr__ctx_new();
204         if (!m->pctx) {
205                 free(m);
206                 return NULL;
207         }
208
209         m->metric_name = pe->metric_name;
210         m->modifier = modifier ? strdup(modifier) : NULL;
211         if (modifier && !m->modifier) {
212                 expr__ctx_free(m->pctx);
213                 free(m);
214                 return NULL;
215         }
216         m->metric_expr = pe->metric_expr;
217         m->metric_unit = pe->unit;
218         m->pctx->runtime = runtime;
219         m->has_constraint = metric_no_group || metricgroup__has_constraint(pe);
220         m->metric_refs = NULL;
221         m->evlist = NULL;
222
223         return m;
224 }
225
226 static void metric__free(struct metric *m)
227 {
228         free(m->metric_refs);
229         expr__ctx_free(m->pctx);
230         free((char *)m->modifier);
231         evlist__delete(m->evlist);
232         free(m);
233 }
234
235 static bool contains_metric_id(struct evsel **metric_events, int num_events,
236                                const char *metric_id)
237 {
238         int i;
239
240         for (i = 0; i < num_events; i++) {
241                 if (!strcmp(evsel__metric_id(metric_events[i]), metric_id))
242                         return true;
243         }
244         return false;
245 }
246
247 /**
248  * setup_metric_events - Find a group of events in metric_evlist that correspond
249  *                       to the IDs from a parsed metric expression.
250  * @ids: the metric IDs to match.
251  * @metric_evlist: the list of perf events.
252  * @out_metric_events: holds the created metric events array.
253  */
254 static int setup_metric_events(struct hashmap *ids,
255                                struct evlist *metric_evlist,
256                                struct evsel ***out_metric_events)
257 {
258         struct evsel **metric_events;
259         const char *metric_id;
260         struct evsel *ev;
261         size_t ids_size, matched_events, i;
262
263         *out_metric_events = NULL;
264         ids_size = hashmap__size(ids);
265
266         metric_events = calloc(sizeof(void *), ids_size + 1);
267         if (!metric_events)
268                 return -ENOMEM;
269
270         matched_events = 0;
271         evlist__for_each_entry(metric_evlist, ev) {
272                 struct expr_id_data *val_ptr;
273
274                 /*
275                  * Check for duplicate events with the same name. For
276                  * example, uncore_imc/cas_count_read/ will turn into 6
277                  * events per socket on skylakex. Only the first such
278                  * event is placed in metric_events.
279                  */
280                 metric_id = evsel__metric_id(ev);
281                 if (contains_metric_id(metric_events, matched_events, metric_id))
282                         continue;
283                 /*
284                  * Does this event belong to the parse context? For
285                  * combined or shared groups, this metric may not care
286                  * about this event.
287                  */
288                 if (hashmap__find(ids, metric_id, (void **)&val_ptr)) {
289                         metric_events[matched_events++] = ev;
290
291                         if (matched_events >= ids_size)
292                                 break;
293                 }
294         }
295         if (matched_events < ids_size) {
296                 free(metric_events);
297                 return -EINVAL;
298         }
299         for (i = 0; i < ids_size; i++) {
300                 ev = metric_events[i];
301                 ev->collect_stat = true;
302
303                 /*
304                  * The metric leader points to the identically named
305                  * event in metric_events.
306                  */
307                 ev->metric_leader = ev;
308                 /*
309                  * Mark two events with identical names in the same
310                  * group (or globally) as being in use as uncore events
311                  * may be duplicated for each pmu. Set the metric leader
312                  * of such events to be the event that appears in
313                  * metric_events.
314                  */
315                 metric_id = evsel__metric_id(ev);
316                 evlist__for_each_entry_continue(metric_evlist, ev) {
317                         if (!strcmp(evsel__metric_id(ev), metric_id))
318                                 ev->metric_leader = metric_events[i];
319                 }
320         }
321         *out_metric_events = metric_events;
322         return 0;
323 }
324
325 static bool match_metric(const char *n, const char *list)
326 {
327         int len;
328         char *m;
329
330         if (!list)
331                 return false;
332         if (!strcmp(list, "all"))
333                 return true;
334         if (!n)
335                 return !strcasecmp(list, "No_group");
336         len = strlen(list);
337         m = strcasestr(n, list);
338         if (!m)
339                 return false;
340         if ((m == n || m[-1] == ';' || m[-1] == ' ') &&
341             (m[len] == 0 || m[len] == ';'))
342                 return true;
343         return false;
344 }
345
346 static bool match_pe_metric(const struct pmu_event *pe, const char *metric)
347 {
348         return match_metric(pe->metric_group, metric) ||
349                match_metric(pe->metric_name, metric);
350 }
351
352 struct mep {
353         struct rb_node nd;
354         const char *name;
355         struct strlist *metrics;
356 };
357
358 static int mep_cmp(struct rb_node *rb_node, const void *entry)
359 {
360         struct mep *a = container_of(rb_node, struct mep, nd);
361         struct mep *b = (struct mep *)entry;
362
363         return strcmp(a->name, b->name);
364 }
365
366 static struct rb_node *mep_new(struct rblist *rl __maybe_unused,
367                                         const void *entry)
368 {
369         struct mep *me = malloc(sizeof(struct mep));
370
371         if (!me)
372                 return NULL;
373         memcpy(me, entry, sizeof(struct mep));
374         me->name = strdup(me->name);
375         if (!me->name)
376                 goto out_me;
377         me->metrics = strlist__new(NULL, NULL);
378         if (!me->metrics)
379                 goto out_name;
380         return &me->nd;
381 out_name:
382         zfree(&me->name);
383 out_me:
384         free(me);
385         return NULL;
386 }
387
388 static struct mep *mep_lookup(struct rblist *groups, const char *name)
389 {
390         struct rb_node *nd;
391         struct mep me = {
392                 .name = name
393         };
394         nd = rblist__find(groups, &me);
395         if (nd)
396                 return container_of(nd, struct mep, nd);
397         rblist__add_node(groups, &me);
398         nd = rblist__find(groups, &me);
399         if (nd)
400                 return container_of(nd, struct mep, nd);
401         return NULL;
402 }
403
404 static void mep_delete(struct rblist *rl __maybe_unused,
405                        struct rb_node *nd)
406 {
407         struct mep *me = container_of(nd, struct mep, nd);
408
409         strlist__delete(me->metrics);
410         zfree(&me->name);
411         free(me);
412 }
413
414 static void metricgroup__print_strlist(struct strlist *metrics, bool raw)
415 {
416         struct str_node *sn;
417         int n = 0;
418
419         strlist__for_each_entry (sn, metrics) {
420                 if (raw)
421                         printf("%s%s", n > 0 ? " " : "", sn->s);
422                 else
423                         printf("  %s\n", sn->s);
424                 n++;
425         }
426         if (raw)
427                 putchar('\n');
428 }
429
430 static int metricgroup__print_pmu_event(const struct pmu_event *pe,
431                                         bool metricgroups, char *filter,
432                                         bool raw, bool details,
433                                         struct rblist *groups,
434                                         struct strlist *metriclist)
435 {
436         const char *g;
437         char *omg, *mg;
438
439         g = pe->metric_group;
440         if (!g && pe->metric_name) {
441                 if (pe->name)
442                         return 0;
443                 g = "No_group";
444         }
445
446         if (!g)
447                 return 0;
448
449         mg = strdup(g);
450
451         if (!mg)
452                 return -ENOMEM;
453         omg = mg;
454         while ((g = strsep(&mg, ";")) != NULL) {
455                 struct mep *me;
456                 char *s;
457
458                 g = skip_spaces(g);
459                 if (*g == 0)
460                         g = "No_group";
461                 if (filter && !strstr(g, filter))
462                         continue;
463                 if (raw)
464                         s = (char *)pe->metric_name;
465                 else {
466                         if (asprintf(&s, "%s\n%*s%s]",
467                                      pe->metric_name, 8, "[", pe->desc) < 0)
468                                 return -1;
469                         if (details) {
470                                 if (asprintf(&s, "%s\n%*s%s]",
471                                              s, 8, "[", pe->metric_expr) < 0)
472                                         return -1;
473                         }
474                 }
475
476                 if (!s)
477                         continue;
478
479                 if (!metricgroups) {
480                         strlist__add(metriclist, s);
481                 } else {
482                         me = mep_lookup(groups, g);
483                         if (!me)
484                                 continue;
485                         strlist__add(me->metrics, s);
486                 }
487
488                 if (!raw)
489                         free(s);
490         }
491         free(omg);
492
493         return 0;
494 }
495
496 struct metricgroup_print_sys_idata {
497         struct strlist *metriclist;
498         char *filter;
499         struct rblist *groups;
500         bool metricgroups;
501         bool raw;
502         bool details;
503 };
504
505 struct metricgroup_iter_data {
506         pmu_event_iter_fn fn;
507         void *data;
508 };
509
510 static int metricgroup__sys_event_iter(const struct pmu_event *pe,
511                                        const struct pmu_events_table *table,
512                                        void *data)
513 {
514         struct metricgroup_iter_data *d = data;
515         struct perf_pmu *pmu = NULL;
516
517         if (!pe->metric_expr || !pe->compat)
518                 return 0;
519
520         while ((pmu = perf_pmu__scan(pmu))) {
521
522                 if (!pmu->id || strcmp(pmu->id, pe->compat))
523                         continue;
524
525                 return d->fn(pe, table, d->data);
526         }
527
528         return 0;
529 }
530
531 static int metricgroup__print_sys_event_iter(const struct pmu_event *pe,
532                                              const struct pmu_events_table *table __maybe_unused,
533                                              void *data)
534 {
535         struct metricgroup_print_sys_idata *d = data;
536
537         return metricgroup__print_pmu_event(pe, d->metricgroups, d->filter, d->raw,
538                                      d->details, d->groups, d->metriclist);
539 }
540
541 struct metricgroup_print_data {
542         const char *pmu_name;
543         struct strlist *metriclist;
544         char *filter;
545         struct rblist *groups;
546         bool metricgroups;
547         bool raw;
548         bool details;
549 };
550
551 static int metricgroup__print_callback(const struct pmu_event *pe,
552                                        const struct pmu_events_table *table __maybe_unused,
553                                        void *vdata)
554 {
555         struct metricgroup_print_data *data = vdata;
556
557         if (!pe->metric_expr)
558                 return 0;
559
560         if (data->pmu_name && perf_pmu__is_hybrid(pe->pmu) && strcmp(data->pmu_name, pe->pmu))
561                 return 0;
562
563         return metricgroup__print_pmu_event(pe, data->metricgroups, data->filter,
564                                             data->raw, data->details, data->groups,
565                                             data->metriclist);
566 }
567
568 void metricgroup__print(bool metrics, bool metricgroups, char *filter,
569                         bool raw, bool details, const char *pmu_name)
570 {
571         struct rblist groups;
572         struct rb_node *node, *next;
573         struct strlist *metriclist = NULL;
574         const struct pmu_events_table *table;
575
576         if (!metricgroups) {
577                 metriclist = strlist__new(NULL, NULL);
578                 if (!metriclist)
579                         return;
580         }
581
582         rblist__init(&groups);
583         groups.node_new = mep_new;
584         groups.node_cmp = mep_cmp;
585         groups.node_delete = mep_delete;
586         table = pmu_events_table__find();
587         if (table) {
588                 struct metricgroup_print_data data = {
589                         .pmu_name = pmu_name,
590                         .metriclist = metriclist,
591                         .metricgroups = metricgroups,
592                         .filter = filter,
593                         .raw = raw,
594                         .details = details,
595                         .groups = &groups,
596                 };
597
598                 pmu_events_table_for_each_event(table,
599                                                 metricgroup__print_callback,
600                                                 &data);
601         }
602         {
603                 struct metricgroup_iter_data data = {
604                         .fn = metricgroup__print_sys_event_iter,
605                         .data = (void *) &(struct metricgroup_print_sys_idata){
606                                 .metriclist = metriclist,
607                                 .metricgroups = metricgroups,
608                                 .filter = filter,
609                                 .raw = raw,
610                                 .details = details,
611                                 .groups = &groups,
612                         },
613                 };
614
615                 pmu_for_each_sys_event(metricgroup__sys_event_iter, &data);
616         }
617
618         if (!filter || !rblist__empty(&groups)) {
619                 if (metricgroups && !raw)
620                         printf("\nMetric Groups:\n\n");
621                 else if (metrics && !raw)
622                         printf("\nMetrics:\n\n");
623         }
624
625         for (node = rb_first_cached(&groups.entries); node; node = next) {
626                 struct mep *me = container_of(node, struct mep, nd);
627
628                 if (metricgroups)
629                         printf("%s%s%s", me->name, metrics && !raw ? ":" : "", raw ? " " : "\n");
630                 if (metrics)
631                         metricgroup__print_strlist(me->metrics, raw);
632                 next = rb_next(node);
633                 rblist__remove_node(&groups, node);
634         }
635         if (!metricgroups)
636                 metricgroup__print_strlist(metriclist, raw);
637         strlist__delete(metriclist);
638 }
639
640 static const char *code_characters = ",-=@";
641
642 static int encode_metric_id(struct strbuf *sb, const char *x)
643 {
644         char *c;
645         int ret = 0;
646
647         for (; *x; x++) {
648                 c = strchr(code_characters, *x);
649                 if (c) {
650                         ret = strbuf_addch(sb, '!');
651                         if (ret)
652                                 break;
653
654                         ret = strbuf_addch(sb, '0' + (c - code_characters));
655                         if (ret)
656                                 break;
657                 } else {
658                         ret = strbuf_addch(sb, *x);
659                         if (ret)
660                                 break;
661                 }
662         }
663         return ret;
664 }
665
666 static int decode_metric_id(struct strbuf *sb, const char *x)
667 {
668         const char *orig = x;
669         size_t i;
670         char c;
671         int ret;
672
673         for (; *x; x++) {
674                 c = *x;
675                 if (*x == '!') {
676                         x++;
677                         i = *x - '0';
678                         if (i > strlen(code_characters)) {
679                                 pr_err("Bad metric-id encoding in: '%s'", orig);
680                                 return -1;
681                         }
682                         c = code_characters[i];
683                 }
684                 ret = strbuf_addch(sb, c);
685                 if (ret)
686                         return ret;
687         }
688         return 0;
689 }
690
691 static int decode_all_metric_ids(struct evlist *perf_evlist, const char *modifier)
692 {
693         struct evsel *ev;
694         struct strbuf sb = STRBUF_INIT;
695         char *cur;
696         int ret = 0;
697
698         evlist__for_each_entry(perf_evlist, ev) {
699                 if (!ev->metric_id)
700                         continue;
701
702                 ret = strbuf_setlen(&sb, 0);
703                 if (ret)
704                         break;
705
706                 ret = decode_metric_id(&sb, ev->metric_id);
707                 if (ret)
708                         break;
709
710                 free((char *)ev->metric_id);
711                 ev->metric_id = strdup(sb.buf);
712                 if (!ev->metric_id) {
713                         ret = -ENOMEM;
714                         break;
715                 }
716                 /*
717                  * If the name is just the parsed event, use the metric-id to
718                  * give a more friendly display version.
719                  */
720                 if (strstr(ev->name, "metric-id=")) {
721                         bool has_slash = false;
722
723                         free(ev->name);
724                         for (cur = strchr(sb.buf, '@') ; cur; cur = strchr(++cur, '@')) {
725                                 *cur = '/';
726                                 has_slash = true;
727                         }
728
729                         if (modifier) {
730                                 if (!has_slash && !strchr(sb.buf, ':')) {
731                                         ret = strbuf_addch(&sb, ':');
732                                         if (ret)
733                                                 break;
734                                 }
735                                 ret = strbuf_addstr(&sb, modifier);
736                                 if (ret)
737                                         break;
738                         }
739                         ev->name = strdup(sb.buf);
740                         if (!ev->name) {
741                                 ret = -ENOMEM;
742                                 break;
743                         }
744                 }
745         }
746         strbuf_release(&sb);
747         return ret;
748 }
749
750 static int metricgroup__build_event_string(struct strbuf *events,
751                                            const struct expr_parse_ctx *ctx,
752                                            const char *modifier,
753                                            bool has_constraint)
754 {
755         struct hashmap_entry *cur;
756         size_t bkt;
757         bool no_group = true, has_tool_events = false;
758         bool tool_events[PERF_TOOL_MAX] = {false};
759         int ret = 0;
760
761 #define RETURN_IF_NON_ZERO(x) do { if (x) return x; } while (0)
762
763         hashmap__for_each_entry(ctx->ids, cur, bkt) {
764                 const char *sep, *rsep, *id = cur->key;
765                 enum perf_tool_event ev;
766
767                 pr_debug("found event %s\n", id);
768
769                 /* Always move tool events outside of the group. */
770                 ev = perf_tool_event__from_str(id);
771                 if (ev != PERF_TOOL_NONE) {
772                         has_tool_events = true;
773                         tool_events[ev] = true;
774                         continue;
775                 }
776                 /* Separate events with commas and open the group if necessary. */
777                 if (no_group) {
778                         if (!has_constraint) {
779                                 ret = strbuf_addch(events, '{');
780                                 RETURN_IF_NON_ZERO(ret);
781                         }
782
783                         no_group = false;
784                 } else {
785                         ret = strbuf_addch(events, ',');
786                         RETURN_IF_NON_ZERO(ret);
787                 }
788                 /*
789                  * Encode the ID as an event string. Add a qualifier for
790                  * metric_id that is the original name except with characters
791                  * that parse-events can't parse replaced. For example,
792                  * 'msr@tsc@' gets added as msr/tsc,metric-id=msr!3tsc!3/
793                  */
794                 sep = strchr(id, '@');
795                 if (sep != NULL) {
796                         ret = strbuf_add(events, id, sep - id);
797                         RETURN_IF_NON_ZERO(ret);
798                         ret = strbuf_addch(events, '/');
799                         RETURN_IF_NON_ZERO(ret);
800                         rsep = strrchr(sep, '@');
801                         ret = strbuf_add(events, sep + 1, rsep - sep - 1);
802                         RETURN_IF_NON_ZERO(ret);
803                         ret = strbuf_addstr(events, ",metric-id=");
804                         RETURN_IF_NON_ZERO(ret);
805                         sep = rsep;
806                 } else {
807                         sep = strchr(id, ':');
808                         if (sep != NULL) {
809                                 ret = strbuf_add(events, id, sep - id);
810                                 RETURN_IF_NON_ZERO(ret);
811                         } else {
812                                 ret = strbuf_addstr(events, id);
813                                 RETURN_IF_NON_ZERO(ret);
814                         }
815                         ret = strbuf_addstr(events, "/metric-id=");
816                         RETURN_IF_NON_ZERO(ret);
817                 }
818                 ret = encode_metric_id(events, id);
819                 RETURN_IF_NON_ZERO(ret);
820                 ret = strbuf_addstr(events, "/");
821                 RETURN_IF_NON_ZERO(ret);
822
823                 if (sep != NULL) {
824                         ret = strbuf_addstr(events, sep + 1);
825                         RETURN_IF_NON_ZERO(ret);
826                 }
827                 if (modifier) {
828                         ret = strbuf_addstr(events, modifier);
829                         RETURN_IF_NON_ZERO(ret);
830                 }
831         }
832         if (!no_group && !has_constraint) {
833                 ret = strbuf_addf(events, "}:W");
834                 RETURN_IF_NON_ZERO(ret);
835         }
836         if (has_tool_events) {
837                 int i;
838
839                 perf_tool_event__for_each_event(i) {
840                         if (tool_events[i]) {
841                                 if (!no_group) {
842                                         ret = strbuf_addch(events, ',');
843                                         RETURN_IF_NON_ZERO(ret);
844                                 }
845                                 no_group = false;
846                                 ret = strbuf_addstr(events, perf_tool_event__to_str(i));
847                                 RETURN_IF_NON_ZERO(ret);
848                         }
849                 }
850         }
851
852         return ret;
853 #undef RETURN_IF_NON_ZERO
854 }
855
856 int __weak arch_get_runtimeparam(const struct pmu_event *pe __maybe_unused)
857 {
858         return 1;
859 }
860
861 /*
862  * A singly linked list on the stack of the names of metrics being
863  * processed. Used to identify recursion.
864  */
865 struct visited_metric {
866         const char *name;
867         const struct visited_metric *parent;
868 };
869
870 struct metricgroup_add_iter_data {
871         struct list_head *metric_list;
872         const char *metric_name;
873         const char *modifier;
874         int *ret;
875         bool *has_match;
876         bool metric_no_group;
877         struct metric *root_metric;
878         const struct visited_metric *visited;
879         const struct pmu_events_table *table;
880 };
881
882 static int add_metric(struct list_head *metric_list,
883                       const struct pmu_event *pe,
884                       const char *modifier,
885                       bool metric_no_group,
886                       struct metric *root_metric,
887                       const struct visited_metric *visited,
888                       const struct pmu_events_table *table);
889
890 /**
891  * resolve_metric - Locate metrics within the root metric and recursively add
892  *                    references to them.
893  * @metric_list: The list the metric is added to.
894  * @modifier: if non-null event modifiers like "u".
895  * @metric_no_group: Should events written to events be grouped "{}" or
896  *                   global. Grouping is the default but due to multiplexing the
897  *                   user may override.
898  * @root_metric: Metrics may reference other metrics to form a tree. In this
899  *               case the root_metric holds all the IDs and a list of referenced
900  *               metrics. When adding a root this argument is NULL.
901  * @visited: A singly linked list of metric names being added that is used to
902  *           detect recursion.
903  * @table: The table that is searched for metrics, most commonly the table for the
904  *       architecture perf is running upon.
905  */
906 static int resolve_metric(struct list_head *metric_list,
907                           const char *modifier,
908                           bool metric_no_group,
909                           struct metric *root_metric,
910                           const struct visited_metric *visited,
911                           const struct pmu_events_table *table)
912 {
913         struct hashmap_entry *cur;
914         size_t bkt;
915         struct to_resolve {
916                 /* The metric to resolve. */
917                 const struct pmu_event *pe;
918                 /*
919                  * The key in the IDs map, this may differ from in case,
920                  * etc. from pe->metric_name.
921                  */
922                 const char *key;
923         } *pending = NULL;
924         int i, ret = 0, pending_cnt = 0;
925
926         /*
927          * Iterate all the parsed IDs and if there's a matching metric and it to
928          * the pending array.
929          */
930         hashmap__for_each_entry(root_metric->pctx->ids, cur, bkt) {
931                 const struct pmu_event *pe;
932
933                 pe = metricgroup__find_metric(cur->key, table);
934                 if (pe) {
935                         pending = realloc(pending,
936                                         (pending_cnt + 1) * sizeof(struct to_resolve));
937                         if (!pending)
938                                 return -ENOMEM;
939
940                         pending[pending_cnt].pe = pe;
941                         pending[pending_cnt].key = cur->key;
942                         pending_cnt++;
943                 }
944         }
945
946         /* Remove the metric IDs from the context. */
947         for (i = 0; i < pending_cnt; i++)
948                 expr__del_id(root_metric->pctx, pending[i].key);
949
950         /*
951          * Recursively add all the metrics, IDs are added to the root metric's
952          * context.
953          */
954         for (i = 0; i < pending_cnt; i++) {
955                 ret = add_metric(metric_list, pending[i].pe, modifier, metric_no_group,
956                                 root_metric, visited, table);
957                 if (ret)
958                         break;
959         }
960
961         free(pending);
962         return ret;
963 }
964
965 /**
966  * __add_metric - Add a metric to metric_list.
967  * @metric_list: The list the metric is added to.
968  * @pe: The pmu_event containing the metric to be added.
969  * @modifier: if non-null event modifiers like "u".
970  * @metric_no_group: Should events written to events be grouped "{}" or
971  *                   global. Grouping is the default but due to multiplexing the
972  *                   user may override.
973  * @runtime: A special argument for the parser only known at runtime.
974  * @root_metric: Metrics may reference other metrics to form a tree. In this
975  *               case the root_metric holds all the IDs and a list of referenced
976  *               metrics. When adding a root this argument is NULL.
977  * @visited: A singly linked list of metric names being added that is used to
978  *           detect recursion.
979  * @table: The table that is searched for metrics, most commonly the table for the
980  *       architecture perf is running upon.
981  */
982 static int __add_metric(struct list_head *metric_list,
983                         const struct pmu_event *pe,
984                         const char *modifier,
985                         bool metric_no_group,
986                         int runtime,
987                         struct metric *root_metric,
988                         const struct visited_metric *visited,
989                         const struct pmu_events_table *table)
990 {
991         const struct visited_metric *vm;
992         int ret;
993         bool is_root = !root_metric;
994         struct visited_metric visited_node = {
995                 .name = pe->metric_name,
996                 .parent = visited,
997         };
998
999         for (vm = visited; vm; vm = vm->parent) {
1000                 if (!strcmp(pe->metric_name, vm->name)) {
1001                         pr_err("failed: recursion detected for %s\n", pe->metric_name);
1002                         return -1;
1003                 }
1004         }
1005
1006         if (is_root) {
1007                 /*
1008                  * This metric is the root of a tree and may reference other
1009                  * metrics that are added recursively.
1010                  */
1011                 root_metric = metric__new(pe, modifier, metric_no_group, runtime);
1012                 if (!root_metric)
1013                         return -ENOMEM;
1014
1015         } else {
1016                 int cnt = 0;
1017
1018                 /*
1019                  * This metric was referenced in a metric higher in the
1020                  * tree. Check if the same metric is already resolved in the
1021                  * metric_refs list.
1022                  */
1023                 if (root_metric->metric_refs) {
1024                         for (; root_metric->metric_refs[cnt].metric_name; cnt++) {
1025                                 if (!strcmp(pe->metric_name,
1026                                             root_metric->metric_refs[cnt].metric_name))
1027                                         return 0;
1028                         }
1029                 }
1030
1031                 /* Create reference. Need space for the entry and the terminator. */
1032                 root_metric->metric_refs = realloc(root_metric->metric_refs,
1033                                                 (cnt + 2) * sizeof(struct metric_ref));
1034                 if (!root_metric->metric_refs)
1035                         return -ENOMEM;
1036
1037                 /*
1038                  * Intentionally passing just const char pointers,
1039                  * from 'pe' object, so they never go away. We don't
1040                  * need to change them, so there's no need to create
1041                  * our own copy.
1042                  */
1043                 root_metric->metric_refs[cnt].metric_name = pe->metric_name;
1044                 root_metric->metric_refs[cnt].metric_expr = pe->metric_expr;
1045
1046                 /* Null terminate array. */
1047                 root_metric->metric_refs[cnt+1].metric_name = NULL;
1048                 root_metric->metric_refs[cnt+1].metric_expr = NULL;
1049         }
1050
1051         /*
1052          * For both the parent and referenced metrics, we parse
1053          * all the metric's IDs and add it to the root context.
1054          */
1055         if (expr__find_ids(pe->metric_expr, NULL, root_metric->pctx) < 0) {
1056                 /* Broken metric. */
1057                 ret = -EINVAL;
1058         } else {
1059                 /* Resolve referenced metrics. */
1060                 ret = resolve_metric(metric_list, modifier, metric_no_group, root_metric,
1061                                      &visited_node, table);
1062         }
1063
1064         if (ret) {
1065                 if (is_root)
1066                         metric__free(root_metric);
1067
1068         } else if (is_root)
1069                 list_add(&root_metric->nd, metric_list);
1070
1071         return ret;
1072 }
1073
1074 struct metricgroup__find_metric_data {
1075         const char *metric;
1076         const struct pmu_event *pe;
1077 };
1078
1079 static int metricgroup__find_metric_callback(const struct pmu_event *pe,
1080                                              const struct pmu_events_table *table  __maybe_unused,
1081                                              void *vdata)
1082 {
1083         struct metricgroup__find_metric_data *data = vdata;
1084
1085         if (!match_metric(pe->metric_name, data->metric))
1086                 return 0;
1087
1088         data->pe = pe;
1089         return -1;
1090 }
1091
1092 const struct pmu_event *metricgroup__find_metric(const char *metric,
1093                                                  const struct pmu_events_table *table)
1094 {
1095         struct metricgroup__find_metric_data data = {
1096                 .metric = metric,
1097                 .pe = NULL,
1098         };
1099
1100         pmu_events_table_for_each_event(table, metricgroup__find_metric_callback, &data);
1101
1102         return data.pe;
1103 }
1104
1105 static int add_metric(struct list_head *metric_list,
1106                       const struct pmu_event *pe,
1107                       const char *modifier,
1108                       bool metric_no_group,
1109                       struct metric *root_metric,
1110                       const struct visited_metric *visited,
1111                       const struct pmu_events_table *table)
1112 {
1113         int ret = 0;
1114
1115         pr_debug("metric expr %s for %s\n", pe->metric_expr, pe->metric_name);
1116
1117         if (!strstr(pe->metric_expr, "?")) {
1118                 ret = __add_metric(metric_list, pe, modifier, metric_no_group, 0,
1119                                    root_metric, visited, table);
1120         } else {
1121                 int j, count;
1122
1123                 count = arch_get_runtimeparam(pe);
1124
1125                 /* This loop is added to create multiple
1126                  * events depend on count value and add
1127                  * those events to metric_list.
1128                  */
1129
1130                 for (j = 0; j < count && !ret; j++)
1131                         ret = __add_metric(metric_list, pe, modifier, metric_no_group, j,
1132                                         root_metric, visited, table);
1133         }
1134
1135         return ret;
1136 }
1137
1138 static int metricgroup__add_metric_sys_event_iter(const struct pmu_event *pe,
1139                                                 const struct pmu_events_table *table __maybe_unused,
1140                                                 void *data)
1141 {
1142         struct metricgroup_add_iter_data *d = data;
1143         int ret;
1144
1145         if (!match_pe_metric(pe, d->metric_name))
1146                 return 0;
1147
1148         ret = add_metric(d->metric_list, pe, d->modifier, d->metric_no_group,
1149                          d->root_metric, d->visited, d->table);
1150         if (ret)
1151                 goto out;
1152
1153         *(d->has_match) = true;
1154
1155 out:
1156         *(d->ret) = ret;
1157         return ret;
1158 }
1159
1160 /**
1161  * metric_list_cmp - list_sort comparator that sorts metrics with more events to
1162  *                   the front. tool events are excluded from the count.
1163  */
1164 static int metric_list_cmp(void *priv __maybe_unused, const struct list_head *l,
1165                            const struct list_head *r)
1166 {
1167         const struct metric *left = container_of(l, struct metric, nd);
1168         const struct metric *right = container_of(r, struct metric, nd);
1169         struct expr_id_data *data;
1170         int i, left_count, right_count;
1171
1172         left_count = hashmap__size(left->pctx->ids);
1173         perf_tool_event__for_each_event(i) {
1174                 if (!expr__get_id(left->pctx, perf_tool_event__to_str(i), &data))
1175                         left_count--;
1176         }
1177
1178         right_count = hashmap__size(right->pctx->ids);
1179         perf_tool_event__for_each_event(i) {
1180                 if (!expr__get_id(right->pctx, perf_tool_event__to_str(i), &data))
1181                         right_count--;
1182         }
1183
1184         return right_count - left_count;
1185 }
1186
1187 struct metricgroup__add_metric_data {
1188         struct list_head *list;
1189         const char *metric_name;
1190         const char *modifier;
1191         bool metric_no_group;
1192         bool has_match;
1193 };
1194
1195 static int metricgroup__add_metric_callback(const struct pmu_event *pe,
1196                                             const struct pmu_events_table *table,
1197                                             void *vdata)
1198 {
1199         struct metricgroup__add_metric_data *data = vdata;
1200         int ret = 0;
1201
1202         if (pe->metric_expr &&
1203                 (match_metric(pe->metric_group, data->metric_name) ||
1204                  match_metric(pe->metric_name, data->metric_name))) {
1205
1206                 data->has_match = true;
1207                 ret = add_metric(data->list, pe, data->modifier, data->metric_no_group,
1208                                  /*root_metric=*/NULL,
1209                                  /*visited_metrics=*/NULL, table);
1210         }
1211         return ret;
1212 }
1213
1214 /**
1215  * metricgroup__add_metric - Find and add a metric, or a metric group.
1216  * @metric_name: The name of the metric or metric group. For example, "IPC"
1217  *               could be the name of a metric and "TopDownL1" the name of a
1218  *               metric group.
1219  * @modifier: if non-null event modifiers like "u".
1220  * @metric_no_group: Should events written to events be grouped "{}" or
1221  *                   global. Grouping is the default but due to multiplexing the
1222  *                   user may override.
1223  * @metric_list: The list that the metric or metric group are added to.
1224  * @table: The table that is searched for metrics, most commonly the table for the
1225  *       architecture perf is running upon.
1226  */
1227 static int metricgroup__add_metric(const char *metric_name, const char *modifier,
1228                                    bool metric_no_group,
1229                                    struct list_head *metric_list,
1230                                    const struct pmu_events_table *table)
1231 {
1232         LIST_HEAD(list);
1233         int ret;
1234         bool has_match = false;
1235
1236         {
1237                 struct metricgroup__add_metric_data data = {
1238                         .list = &list,
1239                         .metric_name = metric_name,
1240                         .modifier = modifier,
1241                         .metric_no_group = metric_no_group,
1242                         .has_match = false,
1243                 };
1244                 /*
1245                  * Iterate over all metrics seeing if metric matches either the
1246                  * name or group. When it does add the metric to the list.
1247                  */
1248                 ret = pmu_events_table_for_each_event(table, metricgroup__add_metric_callback,
1249                                                       &data);
1250                 if (ret)
1251                         goto out;
1252
1253                 has_match = data.has_match;
1254         }
1255         {
1256                 struct metricgroup_iter_data data = {
1257                         .fn = metricgroup__add_metric_sys_event_iter,
1258                         .data = (void *) &(struct metricgroup_add_iter_data) {
1259                                 .metric_list = &list,
1260                                 .metric_name = metric_name,
1261                                 .modifier = modifier,
1262                                 .metric_no_group = metric_no_group,
1263                                 .has_match = &has_match,
1264                                 .ret = &ret,
1265                                 .table = table,
1266                         },
1267                 };
1268
1269                 pmu_for_each_sys_event(metricgroup__sys_event_iter, &data);
1270         }
1271         /* End of pmu events. */
1272         if (!has_match)
1273                 ret = -EINVAL;
1274
1275 out:
1276         /*
1277          * add to metric_list so that they can be released
1278          * even if it's failed
1279          */
1280         list_splice(&list, metric_list);
1281         return ret;
1282 }
1283
1284 /**
1285  * metricgroup__add_metric_list - Find and add metrics, or metric groups,
1286  *                                specified in a list.
1287  * @list: the list of metrics or metric groups. For example, "IPC,CPI,TopDownL1"
1288  *        would match the IPC and CPI metrics, and TopDownL1 would match all
1289  *        the metrics in the TopDownL1 group.
1290  * @metric_no_group: Should events written to events be grouped "{}" or
1291  *                   global. Grouping is the default but due to multiplexing the
1292  *                   user may override.
1293  * @metric_list: The list that metrics are added to.
1294  * @table: The table that is searched for metrics, most commonly the table for the
1295  *       architecture perf is running upon.
1296  */
1297 static int metricgroup__add_metric_list(const char *list, bool metric_no_group,
1298                                         struct list_head *metric_list,
1299                                         const struct pmu_events_table *table)
1300 {
1301         char *list_itr, *list_copy, *metric_name, *modifier;
1302         int ret, count = 0;
1303
1304         list_copy = strdup(list);
1305         if (!list_copy)
1306                 return -ENOMEM;
1307         list_itr = list_copy;
1308
1309         while ((metric_name = strsep(&list_itr, ",")) != NULL) {
1310                 modifier = strchr(metric_name, ':');
1311                 if (modifier)
1312                         *modifier++ = '\0';
1313
1314                 ret = metricgroup__add_metric(metric_name, modifier,
1315                                               metric_no_group, metric_list,
1316                                               table);
1317                 if (ret == -EINVAL)
1318                         pr_err("Cannot find metric or group `%s'\n", metric_name);
1319
1320                 if (ret)
1321                         break;
1322
1323                 count++;
1324         }
1325         free(list_copy);
1326
1327         if (!ret) {
1328                 /*
1329                  * Warn about nmi_watchdog if any parsed metrics had the
1330                  * NO_NMI_WATCHDOG constraint.
1331                  */
1332                 metricgroup___watchdog_constraint_hint(NULL, true);
1333                 /* No metrics. */
1334                 if (count == 0)
1335                         return -EINVAL;
1336         }
1337         return ret;
1338 }
1339
1340 static void metricgroup__free_metrics(struct list_head *metric_list)
1341 {
1342         struct metric *m, *tmp;
1343
1344         list_for_each_entry_safe (m, tmp, metric_list, nd) {
1345                 list_del_init(&m->nd);
1346                 metric__free(m);
1347         }
1348 }
1349
1350 /**
1351  * find_tool_events - Search for the pressence of tool events in metric_list.
1352  * @metric_list: List to take metrics from.
1353  * @tool_events: Array of false values, indices corresponding to tool events set
1354  *               to true if tool event is found.
1355  */
1356 static void find_tool_events(const struct list_head *metric_list,
1357                              bool tool_events[PERF_TOOL_MAX])
1358 {
1359         struct metric *m;
1360
1361         list_for_each_entry(m, metric_list, nd) {
1362                 int i;
1363
1364                 perf_tool_event__for_each_event(i) {
1365                         struct expr_id_data *data;
1366
1367                         if (!tool_events[i] &&
1368                             !expr__get_id(m->pctx, perf_tool_event__to_str(i), &data))
1369                                 tool_events[i] = true;
1370                 }
1371         }
1372 }
1373
1374 /**
1375  * build_combined_expr_ctx - Make an expr_parse_ctx with all has_constraint
1376  *                           metric IDs, as the IDs are held in a set,
1377  *                           duplicates will be removed.
1378  * @metric_list: List to take metrics from.
1379  * @combined: Out argument for result.
1380  */
1381 static int build_combined_expr_ctx(const struct list_head *metric_list,
1382                                    struct expr_parse_ctx **combined)
1383 {
1384         struct hashmap_entry *cur;
1385         size_t bkt;
1386         struct metric *m;
1387         char *dup;
1388         int ret;
1389
1390         *combined = expr__ctx_new();
1391         if (!*combined)
1392                 return -ENOMEM;
1393
1394         list_for_each_entry(m, metric_list, nd) {
1395                 if (m->has_constraint && !m->modifier) {
1396                         hashmap__for_each_entry(m->pctx->ids, cur, bkt) {
1397                                 dup = strdup(cur->key);
1398                                 if (!dup) {
1399                                         ret = -ENOMEM;
1400                                         goto err_out;
1401                                 }
1402                                 ret = expr__add_id(*combined, dup);
1403                                 if (ret)
1404                                         goto err_out;
1405                         }
1406                 }
1407         }
1408         return 0;
1409 err_out:
1410         expr__ctx_free(*combined);
1411         *combined = NULL;
1412         return ret;
1413 }
1414
1415 /**
1416  * parse_ids - Build the event string for the ids and parse them creating an
1417  *             evlist. The encoded metric_ids are decoded.
1418  * @metric_no_merge: is metric sharing explicitly disabled.
1419  * @fake_pmu: used when testing metrics not supported by the current CPU.
1420  * @ids: the event identifiers parsed from a metric.
1421  * @modifier: any modifiers added to the events.
1422  * @has_constraint: false if events should be placed in a weak group.
1423  * @tool_events: entries set true if the tool event of index could be present in
1424  *               the overall list of metrics.
1425  * @out_evlist: the created list of events.
1426  */
1427 static int parse_ids(bool metric_no_merge, struct perf_pmu *fake_pmu,
1428                      struct expr_parse_ctx *ids, const char *modifier,
1429                      bool has_constraint, const bool tool_events[PERF_TOOL_MAX],
1430                      struct evlist **out_evlist)
1431 {
1432         struct parse_events_error parse_error;
1433         struct evlist *parsed_evlist;
1434         struct strbuf events = STRBUF_INIT;
1435         int ret;
1436
1437         *out_evlist = NULL;
1438         if (!metric_no_merge || hashmap__size(ids->ids) == 0) {
1439                 bool added_event = false;
1440                 int i;
1441                 /*
1442                  * We may fail to share events between metrics because a tool
1443                  * event isn't present in one metric. For example, a ratio of
1444                  * cache misses doesn't need duration_time but the same events
1445                  * may be used for a misses per second. Events without sharing
1446                  * implies multiplexing, that is best avoided, so place
1447                  * all tool events in every group.
1448                  *
1449                  * Also, there may be no ids/events in the expression parsing
1450                  * context because of constant evaluation, e.g.:
1451                  *    event1 if #smt_on else 0
1452                  * Add a tool event to avoid a parse error on an empty string.
1453                  */
1454                 perf_tool_event__for_each_event(i) {
1455                         if (tool_events[i]) {
1456                                 char *tmp = strdup(perf_tool_event__to_str(i));
1457
1458                                 if (!tmp)
1459                                         return -ENOMEM;
1460                                 ids__insert(ids->ids, tmp);
1461                                 added_event = true;
1462                         }
1463                 }
1464                 if (!added_event && hashmap__size(ids->ids) == 0) {
1465                         char *tmp = strdup("duration_time");
1466
1467                         if (!tmp)
1468                                 return -ENOMEM;
1469                         ids__insert(ids->ids, tmp);
1470                 }
1471         }
1472         ret = metricgroup__build_event_string(&events, ids, modifier,
1473                                               has_constraint);
1474         if (ret)
1475                 return ret;
1476
1477         parsed_evlist = evlist__new();
1478         if (!parsed_evlist) {
1479                 ret = -ENOMEM;
1480                 goto err_out;
1481         }
1482         pr_debug("Parsing metric events '%s'\n", events.buf);
1483         parse_events_error__init(&parse_error);
1484         ret = __parse_events(parsed_evlist, events.buf, &parse_error, fake_pmu);
1485         if (ret) {
1486                 parse_events_error__print(&parse_error, events.buf);
1487                 goto err_out;
1488         }
1489         ret = decode_all_metric_ids(parsed_evlist, modifier);
1490         if (ret)
1491                 goto err_out;
1492
1493         *out_evlist = parsed_evlist;
1494         parsed_evlist = NULL;
1495 err_out:
1496         parse_events_error__exit(&parse_error);
1497         evlist__delete(parsed_evlist);
1498         strbuf_release(&events);
1499         return ret;
1500 }
1501
1502 static int parse_groups(struct evlist *perf_evlist, const char *str,
1503                         bool metric_no_group,
1504                         bool metric_no_merge,
1505                         struct perf_pmu *fake_pmu,
1506                         struct rblist *metric_events_list,
1507                         const struct pmu_events_table *table)
1508 {
1509         struct evlist *combined_evlist = NULL;
1510         LIST_HEAD(metric_list);
1511         struct metric *m;
1512         bool tool_events[PERF_TOOL_MAX] = {false};
1513         int ret;
1514
1515         if (metric_events_list->nr_entries == 0)
1516                 metricgroup__rblist_init(metric_events_list);
1517         ret = metricgroup__add_metric_list(str, metric_no_group,
1518                                            &metric_list, table);
1519         if (ret)
1520                 goto out;
1521
1522         /* Sort metrics from largest to smallest. */
1523         list_sort(NULL, &metric_list, metric_list_cmp);
1524
1525         if (!metric_no_merge) {
1526                 struct expr_parse_ctx *combined = NULL;
1527
1528                 find_tool_events(&metric_list, tool_events);
1529
1530                 ret = build_combined_expr_ctx(&metric_list, &combined);
1531
1532                 if (!ret && combined && hashmap__size(combined->ids)) {
1533                         ret = parse_ids(metric_no_merge, fake_pmu, combined,
1534                                         /*modifier=*/NULL,
1535                                         /*has_constraint=*/true,
1536                                         tool_events,
1537                                         &combined_evlist);
1538                 }
1539                 if (combined)
1540                         expr__ctx_free(combined);
1541
1542                 if (ret)
1543                         goto out;
1544         }
1545
1546         list_for_each_entry(m, &metric_list, nd) {
1547                 struct metric_event *me;
1548                 struct evsel **metric_events;
1549                 struct evlist *metric_evlist = NULL;
1550                 struct metric *n;
1551                 struct metric_expr *expr;
1552
1553                 if (combined_evlist && m->has_constraint) {
1554                         metric_evlist = combined_evlist;
1555                 } else if (!metric_no_merge) {
1556                         /*
1557                          * See if the IDs for this metric are a subset of an
1558                          * earlier metric.
1559                          */
1560                         list_for_each_entry(n, &metric_list, nd) {
1561                                 if (m == n)
1562                                         break;
1563
1564                                 if (n->evlist == NULL)
1565                                         continue;
1566
1567                                 if ((!m->modifier && n->modifier) ||
1568                                     (m->modifier && !n->modifier) ||
1569                                     (m->modifier && n->modifier &&
1570                                             strcmp(m->modifier, n->modifier)))
1571                                         continue;
1572
1573                                 if (expr__subset_of_ids(n->pctx, m->pctx)) {
1574                                         pr_debug("Events in '%s' fully contained within '%s'\n",
1575                                                  m->metric_name, n->metric_name);
1576                                         metric_evlist = n->evlist;
1577                                         break;
1578                                 }
1579
1580                         }
1581                 }
1582                 if (!metric_evlist) {
1583                         ret = parse_ids(metric_no_merge, fake_pmu, m->pctx, m->modifier,
1584                                         m->has_constraint, tool_events, &m->evlist);
1585                         if (ret)
1586                                 goto out;
1587
1588                         metric_evlist = m->evlist;
1589                 }
1590                 ret = setup_metric_events(m->pctx->ids, metric_evlist, &metric_events);
1591                 if (ret) {
1592                         pr_debug("Cannot resolve IDs for %s: %s\n",
1593                                 m->metric_name, m->metric_expr);
1594                         goto out;
1595                 }
1596
1597                 me = metricgroup__lookup(metric_events_list, metric_events[0], true);
1598
1599                 expr = malloc(sizeof(struct metric_expr));
1600                 if (!expr) {
1601                         ret = -ENOMEM;
1602                         free(metric_events);
1603                         goto out;
1604                 }
1605
1606                 expr->metric_refs = m->metric_refs;
1607                 m->metric_refs = NULL;
1608                 expr->metric_expr = m->metric_expr;
1609                 if (m->modifier) {
1610                         char *tmp;
1611
1612                         if (asprintf(&tmp, "%s:%s", m->metric_name, m->modifier) < 0)
1613                                 expr->metric_name = NULL;
1614                         else
1615                                 expr->metric_name = tmp;
1616                 } else
1617                         expr->metric_name = strdup(m->metric_name);
1618
1619                 if (!expr->metric_name) {
1620                         ret = -ENOMEM;
1621                         free(metric_events);
1622                         goto out;
1623                 }
1624                 expr->metric_unit = m->metric_unit;
1625                 expr->metric_events = metric_events;
1626                 expr->runtime = m->pctx->runtime;
1627                 list_add(&expr->nd, &me->head);
1628         }
1629
1630
1631         if (combined_evlist) {
1632                 evlist__splice_list_tail(perf_evlist, &combined_evlist->core.entries);
1633                 evlist__delete(combined_evlist);
1634         }
1635
1636         list_for_each_entry(m, &metric_list, nd) {
1637                 if (m->evlist)
1638                         evlist__splice_list_tail(perf_evlist, &m->evlist->core.entries);
1639         }
1640
1641 out:
1642         metricgroup__free_metrics(&metric_list);
1643         return ret;
1644 }
1645
1646 int metricgroup__parse_groups(const struct option *opt,
1647                               const char *str,
1648                               bool metric_no_group,
1649                               bool metric_no_merge,
1650                               struct rblist *metric_events)
1651 {
1652         struct evlist *perf_evlist = *(struct evlist **)opt->value;
1653         const struct pmu_events_table *table = pmu_events_table__find();
1654
1655         return parse_groups(perf_evlist, str, metric_no_group,
1656                             metric_no_merge, NULL, metric_events, table);
1657 }
1658
1659 int metricgroup__parse_groups_test(struct evlist *evlist,
1660                                    const struct pmu_events_table *table,
1661                                    const char *str,
1662                                    bool metric_no_group,
1663                                    bool metric_no_merge,
1664                                    struct rblist *metric_events)
1665 {
1666         return parse_groups(evlist, str, metric_no_group,
1667                             metric_no_merge, &perf_pmu__fake, metric_events, table);
1668 }
1669
1670 static int metricgroup__has_metric_callback(const struct pmu_event *pe,
1671                                             const struct pmu_events_table *table __maybe_unused,
1672                                             void *vdata)
1673 {
1674         const char *metric = vdata;
1675
1676         if (!pe->metric_expr)
1677                 return 0;
1678
1679         if (match_metric(pe->metric_name, metric))
1680                 return 1;
1681
1682         return 0;
1683 }
1684
1685 bool metricgroup__has_metric(const char *metric)
1686 {
1687         const struct pmu_events_table *table = pmu_events_table__find();
1688
1689         if (!table)
1690                 return false;
1691
1692         return pmu_events_table_for_each_event(table, metricgroup__has_metric_callback,
1693                                                (void *)metric) ? true : false;
1694 }
1695
1696 int metricgroup__copy_metric_events(struct evlist *evlist, struct cgroup *cgrp,
1697                                     struct rblist *new_metric_events,
1698                                     struct rblist *old_metric_events)
1699 {
1700         unsigned i;
1701
1702         for (i = 0; i < rblist__nr_entries(old_metric_events); i++) {
1703                 struct rb_node *nd;
1704                 struct metric_event *old_me, *new_me;
1705                 struct metric_expr *old_expr, *new_expr;
1706                 struct evsel *evsel;
1707                 size_t alloc_size;
1708                 int idx, nr;
1709
1710                 nd = rblist__entry(old_metric_events, i);
1711                 old_me = container_of(nd, struct metric_event, nd);
1712
1713                 evsel = evlist__find_evsel(evlist, old_me->evsel->core.idx);
1714                 if (!evsel)
1715                         return -EINVAL;
1716                 new_me = metricgroup__lookup(new_metric_events, evsel, true);
1717                 if (!new_me)
1718                         return -ENOMEM;
1719
1720                 pr_debug("copying metric event for cgroup '%s': %s (idx=%d)\n",
1721                          cgrp ? cgrp->name : "root", evsel->name, evsel->core.idx);
1722
1723                 list_for_each_entry(old_expr, &old_me->head, nd) {
1724                         new_expr = malloc(sizeof(*new_expr));
1725                         if (!new_expr)
1726                                 return -ENOMEM;
1727
1728                         new_expr->metric_expr = old_expr->metric_expr;
1729                         new_expr->metric_name = strdup(old_expr->metric_name);
1730                         if (!new_expr->metric_name)
1731                                 return -ENOMEM;
1732
1733                         new_expr->metric_unit = old_expr->metric_unit;
1734                         new_expr->runtime = old_expr->runtime;
1735
1736                         if (old_expr->metric_refs) {
1737                                 /* calculate number of metric_events */
1738                                 for (nr = 0; old_expr->metric_refs[nr].metric_name; nr++)
1739                                         continue;
1740                                 alloc_size = sizeof(*new_expr->metric_refs);
1741                                 new_expr->metric_refs = calloc(nr + 1, alloc_size);
1742                                 if (!new_expr->metric_refs) {
1743                                         free(new_expr);
1744                                         return -ENOMEM;
1745                                 }
1746
1747                                 memcpy(new_expr->metric_refs, old_expr->metric_refs,
1748                                        nr * alloc_size);
1749                         } else {
1750                                 new_expr->metric_refs = NULL;
1751                         }
1752
1753                         /* calculate number of metric_events */
1754                         for (nr = 0; old_expr->metric_events[nr]; nr++)
1755                                 continue;
1756                         alloc_size = sizeof(*new_expr->metric_events);
1757                         new_expr->metric_events = calloc(nr + 1, alloc_size);
1758                         if (!new_expr->metric_events) {
1759                                 free(new_expr->metric_refs);
1760                                 free(new_expr);
1761                                 return -ENOMEM;
1762                         }
1763
1764                         /* copy evsel in the same position */
1765                         for (idx = 0; idx < nr; idx++) {
1766                                 evsel = old_expr->metric_events[idx];
1767                                 evsel = evlist__find_evsel(evlist, evsel->core.idx);
1768                                 if (evsel == NULL) {
1769                                         free(new_expr->metric_events);
1770                                         free(new_expr->metric_refs);
1771                                         free(new_expr);
1772                                         return -EINVAL;
1773                                 }
1774                                 new_expr->metric_events[idx] = evsel;
1775                         }
1776
1777                         list_add(&new_expr->nd, &new_me->head);
1778                 }
1779         }
1780         return 0;
1781 }