linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Andrew Kilroy <andrew.kilroy@arm.com>
To: linux-kernel@vger.kernel.org, linux-perf-users@vger.kernel.org,
	acme@kernel.org, john.garry@huawei.com, irogers@google.com,
	ak@linux.intel.com
Cc: Andrew Kilroy <andrew.kilroy@arm.com>,
	Mark Rutland <mark.rutland@arm.com>,
	Alexander Shishkin <alexander.shishkin@linux.intel.com>,
	Jiri Olsa <jolsa@redhat.com>, Namhyung Kim <namhyung@kernel.org>
Subject: [RFC PATCH v2 2/5] perf stat: Topdown kernel events setup function
Date: Tue, 11 Jan 2022 15:07:46 +0000	[thread overview]
Message-ID: <20220111150749.13365-3-andrew.kilroy@arm.com> (raw)
In-Reply-To: <20220111150749.13365-1-andrew.kilroy@arm.com>

Move the code block that sets up topdown by using kernel events into its
own function.

Signed-off-by: Andrew Kilroy <andrew.kilroy@arm.com>
---
 tools/perf/builtin-stat.c | 157 ++++++++++++++++++++------------------
 1 file changed, 82 insertions(+), 75 deletions(-)

diff --git a/tools/perf/builtin-stat.c b/tools/perf/builtin-stat.c
index 975b1e0edaf4..ab956ac97d94 100644
--- a/tools/perf/builtin-stat.c
+++ b/tools/perf/builtin-stat.c
@@ -1649,6 +1649,84 @@ static int perf_stat_init_aggr_mode_file(struct perf_stat *st)
 	return 0;
 }
 
+static int try_non_json_metrics_topdown(void)
+{
+	int err;
+	const char **metric_attrs = topdown_metric_attrs;
+	unsigned int max_level = 1;
+	char *str = NULL;
+	bool warn = false;
+
+	if (!force_metric_only)
+		stat_config.metric_only = true;
+
+	if (pmu_have_event("cpu", topdown_metric_L2_attrs[5])) {
+		metric_attrs = topdown_metric_L2_attrs;
+		max_level = 2;
+	}
+
+	if (stat_config.topdown_level > max_level) {
+		pr_err("Invalid top-down metrics level. The max level is %u.\n", max_level);
+		return -1;
+	} else if (!stat_config.topdown_level)
+		stat_config.topdown_level = max_level;
+
+	if (topdown_filter_events(metric_attrs, &str, 1) < 0) {
+		pr_err("Out of memory\n");
+		return -1;
+	}
+	if (metric_attrs[0] && str) {
+		if (!stat_config.interval && !stat_config.metric_only) {
+			fprintf(stat_config.output,
+				"Topdown accuracy may decrease when measuring long periods.\n"
+				"Please print the result regularly, e.g. -I1000\n");
+		}
+		goto setup_metrics;
+	}
+
+	zfree(&str);
+
+	if (stat_config.aggr_mode != AGGR_GLOBAL &&
+		stat_config.aggr_mode != AGGR_CORE) {
+		pr_err("top down event configuration requires --per-core mode\n");
+		return -1;
+	}
+	stat_config.aggr_mode = AGGR_CORE;
+	if (nr_cgroups || !target__has_cpu(&target)) {
+		pr_err("top down event configuration requires system-wide mode (-a)\n");
+		return -1;
+	}
+
+	if (topdown_filter_events(topdown_attrs, &str,
+			arch_topdown_check_group(&warn)) < 0) {
+		pr_err("Out of memory\n");
+		return -1;
+	}
+	if (topdown_attrs[0] && str) {
+		struct parse_events_error errinfo;
+		if (warn)
+			arch_topdown_group_warn();
+setup_metrics:
+		parse_events_error__init(&errinfo);
+		err = parse_events(evsel_list, str, &errinfo);
+		if (err) {
+			fprintf(stderr,
+				"Cannot set up top down events %s: %d\n",
+				str, err);
+			parse_events_error__print(&errinfo, str);
+			parse_events_error__exit(&errinfo);
+			free(str);
+			return -1;
+		}
+		parse_events_error__exit(&errinfo);
+	} else {
+		fprintf(stderr, "System does not support topdown\n");
+		return -1;
+	}
+	free(str);
+	return err;
+}
+
 /*
  * Add default attributes, if there were no attributes specified or
  * if -d/--detailed, -d -d or -d -d -d is used:
@@ -1848,14 +1926,6 @@ static int add_default_attributes(void)
 	}
 
 	if (topdown_run) {
-		const char **metric_attrs = topdown_metric_attrs;
-		unsigned int max_level = 1;
-		char *str = NULL;
-		bool warn = false;
-
-		if (!force_metric_only)
-			stat_config.metric_only = true;
-
 		if (topdown_can_use_json_metrics()) {
 			if (metricgroup__parse_groups_to_evlist(evsel_list, "TopDownL1",
 								stat_config.metric_no_group,
@@ -1864,75 +1934,12 @@ static int add_default_attributes(void)
 				pr_err("Could not form list of metrics for topdown\n");
 				return -1;
 			}
-
-			goto end_of_topdown_setup;
-		}
-
-		if (pmu_have_event("cpu", topdown_metric_L2_attrs[5])) {
-			metric_attrs = topdown_metric_L2_attrs;
-			max_level = 2;
-		}
-
-		if (stat_config.topdown_level > max_level) {
-			pr_err("Invalid top-down metrics level. The max level is %u.\n", max_level);
-			return -1;
-		} else if (!stat_config.topdown_level)
-			stat_config.topdown_level = max_level;
-
-		if (topdown_filter_events(metric_attrs, &str, 1) < 0) {
-			pr_err("Out of memory\n");
-			return -1;
-		}
-		if (metric_attrs[0] && str) {
-			if (!stat_config.interval && !stat_config.metric_only) {
-				fprintf(stat_config.output,
-					"Topdown accuracy may decrease when measuring long periods.\n"
-					"Please print the result regularly, e.g. -I1000\n");
-			}
-			goto setup_metrics;
-		}
-
-		zfree(&str);
-
-		if (stat_config.aggr_mode != AGGR_GLOBAL &&
-		    stat_config.aggr_mode != AGGR_CORE) {
-			pr_err("top down event configuration requires --per-core mode\n");
-			return -1;
-		}
-		stat_config.aggr_mode = AGGR_CORE;
-		if (nr_cgroups || !target__has_cpu(&target)) {
-			pr_err("top down event configuration requires system-wide mode (-a)\n");
-			return -1;
-		}
-
-		if (topdown_filter_events(topdown_attrs, &str,
-				arch_topdown_check_group(&warn)) < 0) {
-			pr_err("Out of memory\n");
-			return -1;
-		}
-		if (topdown_attrs[0] && str) {
-			struct parse_events_error errinfo;
-			if (warn)
-				arch_topdown_group_warn();
-setup_metrics:
-			parse_events_error__init(&errinfo);
-			err = parse_events(evsel_list, str, &errinfo);
-			if (err) {
-				fprintf(stderr,
-					"Cannot set up top down events %s: %d\n",
-					str, err);
-				parse_events_error__print(&errinfo, str);
-				parse_events_error__exit(&errinfo);
-				free(str);
-				return -1;
-			}
-			parse_events_error__exit(&errinfo);
 		} else {
-			fprintf(stderr, "System does not support topdown\n");
-			return -1;
+			err = try_non_json_metrics_topdown();
+			if (err)
+				return err;
 		}
-end_of_topdown_setup:
-		free(str);
+
 	}
 
 	if (!evsel_list->core.nr_entries) {
-- 
2.17.1


  parent reply	other threads:[~2022-01-11 15:08 UTC|newest]

Thread overview: 33+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-12-10 12:37 [PATCH v2 0/2] perf vendor events: Arm Neoverse N2 Andrew Kilroy
2021-12-10 12:37 ` [PATCH v2 1/2] perf vendor events: For the " Andrew Kilroy
2021-12-10 13:21   ` John Garry
2021-12-14 18:42     ` [RFC PATCH 0/1] topdown with metrics Andrew Kilroy
2021-12-14 18:42       ` [RFC PATCH 1/1] perf arm64: Implement --topdown " Andrew Kilroy
2021-12-14 20:32         ` Ian Rogers
2021-12-15 10:38           ` James Clark
2021-12-15 10:52           ` John Garry
2021-12-15 12:38             ` Andrew Kilroy
2021-12-15 12:53               ` John Garry
2022-01-06 16:33                 ` Andrew Kilroy
2022-01-06 18:24                   ` John Garry
2022-01-11 15:07                     ` [RFC PATCH v2 0/5] topdown " Andrew Kilroy
2022-01-11 15:07                       ` [RFC PATCH v2 1/5] perf stat: Implement --topdown " Andrew Kilroy
2022-01-28 13:44                         ` John Garry
2022-01-11 15:07                       ` Andrew Kilroy [this message]
2022-01-11 15:07                       ` [RFC PATCH v2 3/5] perf stat: Topdown json metrics setup function Andrew Kilroy
2022-01-11 15:07                       ` [RFC PATCH v2 4/5] perf stat: Detect if topdown kernel events supported Andrew Kilroy
2022-01-11 15:07                       ` [RFC PATCH v2 5/5] perf stat: Ensure only topdown kernel events used on x86 Andrew Kilroy
2022-01-20  9:26                       ` [RFC PATCH v2 0/5] topdown with metrics John Garry
2022-01-20 16:22                         ` Al Grant
2022-01-27 11:42                         ` Andrew Kilroy
2022-02-08 15:58                           ` Andrew Kilroy
2021-12-20 17:21             ` [RFC PATCH 1/1] perf arm64: Implement --topdown " Andrew Kilroy
2021-12-21 14:03               ` Andi Kleen
2022-01-27 11:11                 ` Andrew Kilroy
2021-12-17 10:19         ` John Garry
2021-12-21 14:31           ` Andrew Kilroy
2022-01-05 16:58           ` Andrew Kilroy
2022-01-28 18:00             ` John Garry
2021-12-10 12:37 ` [PATCH v2 2/2] perf vendor events: Rename arm64 arch std event files Andrew Kilroy
2021-12-10 13:46   ` John Garry
2021-12-10 19:01     ` Arnaldo Carvalho de Melo

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220111150749.13365-3-andrew.kilroy@arm.com \
    --to=andrew.kilroy@arm.com \
    --cc=acme@kernel.org \
    --cc=ak@linux.intel.com \
    --cc=alexander.shishkin@linux.intel.com \
    --cc=irogers@google.com \
    --cc=john.garry@huawei.com \
    --cc=jolsa@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-perf-users@vger.kernel.org \
    --cc=mark.rutland@arm.com \
    --cc=namhyung@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).