aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/arch/x86/util/evlist.c
blob: 8c6732cc77946b4898a2f1feb012e987ad162d4d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// SPDX-License-Identifier: GPL-2.0
#include <stdio.h>
#include "util/pmu.h"
#include "util/evlist.h"
#include "util/parse-events.h"

#define TOPDOWN_L1_EVENTS	"{slots,topdown-retiring,topdown-bad-spec,topdown-fe-bound,topdown-be-bound}"

int arch_evlist__add_default_attrs(struct evlist *evlist)
{
	if (!pmu_have_event("cpu", "slots"))
		return 0;

	return parse_events(evlist, TOPDOWN_L1_EVENTS, NULL);
}