From nobody Mon Feb 9 04:13:59 2026 Received: from mgamail.intel.com (mgamail.intel.com [192.198.163.16]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id B32FE1842; Sat, 2 Mar 2024 00:11:50 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=192.198.163.16 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1709338313; cv=none; b=h64jz/woae8Pkx6JgnxBnE6qXglKoR6swMGaxR/+QogMxX2NebvqHRw2cpd5JnhUA2J2lZhNqF97mXTV4DNimZ6i2Aej/OoXKHBMatgDhmW4kIS4yHeVX7HKPzDaVvd0RJeR0H4yA3X9tUFylNynuOjrzKmJhohMaEwnDmfwAdo= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1709338313; c=relaxed/simple; bh=SQctvRJ39Y6FTztBS6nvv5clzEQieh9m50qo+ZNGlrY=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=dVn18tRGAymUdI8szpxQQowKT+wLxnn1AUUdxgLk0OyydtuKj9wM5PG29Y2FZcoiYoLjCDDWi8k1k88euIQF9JtNl/8LHbPBvoI97yZs4w+In6nOpwU6iOzTwoliPS3cdJPXa872OLtE85cmboMFAFK2r1AECzGjwTA8lgI1n+E= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=intel.com; spf=pass smtp.mailfrom=intel.com; dkim=pass (2048-bit key) header.d=intel.com header.i=@intel.com header.b=dq7AEa3g; arc=none smtp.client-ip=192.198.163.16 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=intel.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=intel.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=intel.com header.i=@intel.com header.b="dq7AEa3g" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1709338311; x=1740874311; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=SQctvRJ39Y6FTztBS6nvv5clzEQieh9m50qo+ZNGlrY=; b=dq7AEa3gfmvutYSsp45miotp0eyZQkAxT0gDcO0FqHKMbptJ/aq5MrCc VHMBVxTYkNJjrgl+Cf5/8LJkm1MScH4SaOdQeB1wCiuZC08LpaIHh8iuD fAw0M37p3gYtGzOagebDGlzVP69bfPR/qcnesEK9oJ9WZ7QIGPqapVLCr zr/EzNAeod42uygid0hqdef3SFc0nhpOnm/PUVH4vL1FZQz29sCAmlxa4 imieaW86HCGvWExuy9O5pk7mOaWNZflp47OUlUvMDdshB6+jONcPmWYe3 xk2t3Wonvy6BgSskW8TK8mCb0hiReSDi3fGZCiAPBn9uswt6vlWzkgsZK w==; X-IronPort-AV: E=McAfee;i="6600,9927,11000"; a="4476158" X-IronPort-AV: E=Sophos;i="6.06,197,1705392000"; d="scan'208";a="4476158" Received: from orviesa005.jf.intel.com ([10.64.159.145]) by fmvoesa110.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 01 Mar 2024 16:11:47 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.06,197,1705392000"; d="scan'208";a="13054650" Received: from fl31ca102ks0602.deacluster.intel.com (HELO gnr-bkc.deacluster.intel.com) ([10.75.133.163]) by orviesa005.jf.intel.com with ESMTP; 01 Mar 2024 16:11:46 -0800 From: weilin.wang@intel.com To: weilin.wang@intel.com, Ian Rogers , Peter Zijlstra , Ingo Molnar , Arnaldo Carvalho de Melo , Alexander Shishkin , Jiri Olsa , Namhyung Kim , Adrian Hunter , Kan Liang Cc: linux-perf-users@vger.kernel.org, linux-kernel@vger.kernel.org, Perry Taylor , Samantha Alt , Caleb Biggers Subject: [RFC PATCH v3 5/6] perf stat: Add retire latency print functions to print out at the very end of print out Date: Fri, 1 Mar 2024 19:11:37 -0500 Message-ID: <20240302001139.604829-6-weilin.wang@intel.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20240302001139.604829-1-weilin.wang@intel.com> References: <20240302001139.604829-1-weilin.wang@intel.com> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" From: Weilin Wang Add print out functions so that users could read retire latency values. Signed-off-by: Weilin Wang --- tools/perf/util/stat-display.c | 65 ++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) diff --git a/tools/perf/util/stat-display.c b/tools/perf/util/stat-display.c index bfc1d705f437..e2996ba67bfe 100644 --- a/tools/perf/util/stat-display.c +++ b/tools/perf/util/stat-display.c @@ -21,6 +21,7 @@ #include "iostat.h" #include "pmu.h" #include "pmus.h" +#include "metricgroup.h" =20 #define CNTR_NOT_SUPPORTED "" #define CNTR_NOT_COUNTED "" @@ -34,6 +35,7 @@ #define COMM_LEN 16 #define PID_LEN 7 #define CPUS_LEN 4 +#define RETIRE_LEN 8 =20 static int aggr_header_lens[] =3D { [AGGR_CORE] =3D 18, @@ -426,6 +428,67 @@ static void print_metric_std(struct perf_stat_config *= config, fprintf(out, " %-*s", METRIC_LEN - n - 1, unit); } =20 +static void print_retire_lat_std(struct perf_stat_config *config, + struct outstate *os) +{ + FILE *out =3D os->fh; + bool newline =3D os->newline; + struct tpebs_retire_lat *t; + struct list_head *retire_lats =3D &config->tpebs_results; + + list_for_each_entry(t, retire_lats, nd) { + if (newline) + do_new_line_std(config, os); + fprintf(out, "%'*.2f %-*s", COUNTS_LEN, t->val, EVNAME_LEN, t->name); + fprintf(out, "%*ld %*d\n", RETIRE_LEN, t->count, + RETIRE_LEN, t->sum); + } +} + +static void print_retire_lat_csv(struct perf_stat_config *config, + struct outstate *os) +{ + FILE *out =3D os->fh; + struct tpebs_retire_lat *t; + struct list_head *retire_lats =3D &config->tpebs_results; + const char *sep =3D config->csv_sep; + + list_for_each_entry(t, retire_lats, nd) { + fprintf(out, "%f%s%s%s%s%ld%s%d\n", t->val, sep, sep, t->name, sep, + t->count, sep, t->sum); + } +} + +static void print_retire_lat_json(struct perf_stat_config *config, + struct outstate *os) +{ + FILE *out =3D os->fh; + struct tpebs_retire_lat *t; + struct list_head *retire_lats =3D &config->tpebs_results; + + fprintf(out, "{"); + list_for_each_entry(t, retire_lats, nd) { + fprintf(out, "\"retire_latency-value\" : \"%f\", ", t->val); + fprintf(out, "\"event-name\" : \"%s\"", t->name); + fprintf(out, "\"sample-counts\" : \"%ld\"", t->count); + fprintf(out, "\"retire_latency-sum\" : \"%d\"", t->sum); + } + fprintf(out, "}"); +} + +static void print_retire_lat(struct perf_stat_config *config, + struct outstate *os) +{ + if (!&config->tpebs_results) + return; + if (config->json_output) + print_retire_lat_json(config, os); + else if (config->csv_output) + print_retire_lat_csv(config, os); + else + print_retire_lat_std(config, os); +} + static void new_line_csv(struct perf_stat_config *config, void *ctx) { struct outstate *os =3D ctx; @@ -1609,6 +1672,8 @@ void evlist__print_counters(struct evlist *evlist, st= ruct perf_stat_config *conf break; } =20 + print_retire_lat(config, &os); + print_footer(config); =20 fflush(config->output); --=20 2.43.0