Commit be3392b6 authored by Ian Rogers's avatar Ian Rogers Committed by Arnaldo Carvalho de Melo

perf list: List callback support for libpfm

Missed previously, add libpfm support for 'perf list' callbacks and
thereby JSON support.

Committer notes:

Add __maybe_unused to the args of the new print_libpfm_events() in the
else HAVE_LIBPFM block.

Fixes: e42b0ee61282a2f9 ("perf list: Add JSON output option")
Signed-off-by: default avatarIan Rogers <irogers@google.com>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Caleb Biggers <caleb.biggers@intel.com>
Cc: Ian Rogers <irogers@google.com>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Kajol Jain <kjain@linux.ibm.com>
Cc: Kan Liang <kan.liang@linux.intel.com>
Cc: Leo Yan <leo.yan@linaro.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Perry Taylor <perry.taylor@intel.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Ravi Bangoria <ravi.bangoria@amd.com>
Cc: Rob Herring <robh@kernel.org>
Cc: Sandipan Das <sandipan.das@amd.com>
Cc: Stephane Eranian <eranian@google.com>
Cc: Weilin Wang <weilin.wang@intel.com>
Cc: Xin Gao <gaoxin@cdjrlc.com>
Cc: Xing Zhengjun <zhengjun.xing@linux.intel.com>
Link: https://lore.kernel.org/r/20221118024607.409083-4-irogers@google.comSigned-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
parent 1284ded7
...@@ -12,6 +12,7 @@ ...@@ -12,6 +12,7 @@
#include "util/parse-events.h" #include "util/parse-events.h"
#include "util/pmu.h" #include "util/pmu.h"
#include "util/pfm.h" #include "util/pfm.h"
#include "util/strbuf.h"
#include <string.h> #include <string.h>
#include <linux/kernel.h> #include <linux/kernel.h>
...@@ -130,53 +131,36 @@ static const char *srcs[PFM_ATTR_CTRL_MAX] = { ...@@ -130,53 +131,36 @@ static const char *srcs[PFM_ATTR_CTRL_MAX] = {
}; };
static void static void
print_attr_flags(pfm_event_attr_info_t *info) print_attr_flags(struct strbuf *buf, const pfm_event_attr_info_t *info)
{ {
int n = 0; if (info->is_dfl)
strbuf_addf(buf, "[default] ");
if (info->is_dfl) { if (info->is_precise)
printf("[default] "); strbuf_addf(buf, "[precise] ");
n++;
}
if (info->is_precise) {
printf("[precise] ");
n++;
}
if (!n)
printf("- ");
} }
static void static void
print_libpfm_events_detailed(pfm_event_info_t *info, bool long_desc) print_libpfm_event(const struct print_callbacks *print_cb, void *print_state,
const pfm_pmu_info_t *pinfo, const pfm_event_info_t *info,
struct strbuf *buf)
{ {
pfm_event_attr_info_t ainfo;
const char *src;
int j, ret; int j, ret;
char topic[80], name[80];
ainfo.size = sizeof(ainfo); strbuf_setlen(buf, 0);
snprintf(topic, sizeof(topic), "pfm %s", pinfo->name);
printf(" %s\n", info->name); snprintf(name, sizeof(name), "%s::%s", pinfo->name, info->name);
printf(" [%s]\n", info->desc); strbuf_addf(buf, "Code: 0x%"PRIx64"\n", info->code);
if (long_desc) {
if (info->equiv)
printf(" Equiv: %s\n", info->equiv);
printf(" Code : 0x%"PRIx64"\n", info->code);
}
pfm_for_each_event_attr(j, info) { pfm_for_each_event_attr(j, info) {
ret = pfm_get_event_attr_info(info->idx, j, pfm_event_attr_info_t ainfo;
PFM_OS_PERF_EVENT_EXT, &ainfo); const char *src;
if (ret != PFM_SUCCESS)
continue;
if (ainfo.type == PFM_ATTR_UMASK) {
printf(" %s:%s\n", info->name, ainfo.name);
printf(" [%s]\n", ainfo.desc);
}
if (!long_desc) ainfo.size = sizeof(ainfo);
ret = pfm_get_event_attr_info(info->idx, j, PFM_OS_PERF_EVENT_EXT, &ainfo);
if (ret != PFM_SUCCESS)
continue; continue;
if (ainfo.ctrl >= PFM_ATTR_CTRL_MAX) if (ainfo.ctrl >= PFM_ATTR_CTRL_MAX)
...@@ -184,64 +168,74 @@ print_libpfm_events_detailed(pfm_event_info_t *info, bool long_desc) ...@@ -184,64 +168,74 @@ print_libpfm_events_detailed(pfm_event_info_t *info, bool long_desc)
src = srcs[ainfo.ctrl]; src = srcs[ainfo.ctrl];
switch (ainfo.type) { switch (ainfo.type) {
case PFM_ATTR_UMASK: case PFM_ATTR_UMASK: /* Ignore for now */
printf(" Umask : 0x%02"PRIx64" : %s: ",
ainfo.code, src);
print_attr_flags(&ainfo);
putchar('\n');
break; break;
case PFM_ATTR_MOD_BOOL: case PFM_ATTR_MOD_BOOL:
printf(" Modif : %s: [%s] : %s (boolean)\n", src, strbuf_addf(buf, " Modif: %s: [%s] : %s (boolean)\n", src,
ainfo.name, ainfo.desc); ainfo.name, ainfo.desc);
break; break;
case PFM_ATTR_MOD_INTEGER: case PFM_ATTR_MOD_INTEGER:
printf(" Modif : %s: [%s] : %s (integer)\n", src, strbuf_addf(buf, " Modif: %s: [%s] : %s (integer)\n", src,
ainfo.name, ainfo.desc); ainfo.name, ainfo.desc);
break; break;
case PFM_ATTR_NONE: case PFM_ATTR_NONE:
case PFM_ATTR_RAW_UMASK: case PFM_ATTR_RAW_UMASK:
case PFM_ATTR_MAX: case PFM_ATTR_MAX:
default: default:
printf(" Attr : %s: [%s] : %s\n", src, strbuf_addf(buf, " Attr: %s: [%s] : %s\n", src,
ainfo.name, ainfo.desc); ainfo.name, ainfo.desc);
} }
} }
} print_cb->print_event(print_state,
pinfo->name,
topic,
name, info->equiv,
/*scale_unit=*/NULL,
/*deprecated=*/NULL, "PFM event",
info->desc, /*long_desc=*/NULL,
/*encoding_desc=*/buf->buf,
/*metric_name=*/NULL, /*metric_expr=*/NULL);
/* pfm_for_each_event_attr(j, info) {
* list all pmu::event:umask, pmu::event pfm_event_attr_info_t ainfo;
* printed events may not be all valid combinations of umask for an event const char *src;
*/
static void
print_libpfm_events_raw(pfm_pmu_info_t *pinfo, pfm_event_info_t *info)
{
pfm_event_attr_info_t ainfo;
int j, ret;
bool has_umask = false;
ainfo.size = sizeof(ainfo); strbuf_setlen(buf, 0);
pfm_for_each_event_attr(j, info) { ainfo.size = sizeof(ainfo);
ret = pfm_get_event_attr_info(info->idx, j, ret = pfm_get_event_attr_info(info->idx, j, PFM_OS_PERF_EVENT_EXT, &ainfo);
PFM_OS_PERF_EVENT_EXT, &ainfo);
if (ret != PFM_SUCCESS) if (ret != PFM_SUCCESS)
continue; continue;
if (ainfo.type != PFM_ATTR_UMASK) if (ainfo.ctrl >= PFM_ATTR_CTRL_MAX)
continue; ainfo.ctrl = PFM_ATTR_CTRL_UNKNOWN;
printf("%s::%s:%s\n", pinfo->name, info->name, ainfo.name); src = srcs[ainfo.ctrl];
has_umask = true; if (ainfo.type == PFM_ATTR_UMASK) {
strbuf_addf(buf, "Umask: 0x%02"PRIx64" : %s: ",
ainfo.code, src);
print_attr_flags(buf, &ainfo);
snprintf(name, sizeof(name), "%s::%s:%s",
pinfo->name, info->name, ainfo.name);
print_cb->print_event(print_state,
pinfo->name,
topic,
name, /*alias=*/NULL,
/*scale_unit=*/NULL,
/*deprecated=*/NULL, "PFM event",
ainfo.desc, /*long_desc=*/NULL,
/*encoding_desc=*/buf->buf,
/*metric_name=*/NULL, /*metric_expr=*/NULL);
}
} }
if (!has_umask)
printf("%s::%s\n", pinfo->name, info->name);
} }
void print_libpfm_events(bool name_only, bool long_desc) void print_libpfm_events(const struct print_callbacks *print_cb, void *print_state)
{ {
pfm_event_info_t info; pfm_event_info_t info;
pfm_pmu_info_t pinfo; pfm_pmu_info_t pinfo;
int i, p, ret; int p, ret;
struct strbuf storage;
libpfm_initialize(); libpfm_initialize();
...@@ -249,12 +243,9 @@ void print_libpfm_events(bool name_only, bool long_desc) ...@@ -249,12 +243,9 @@ void print_libpfm_events(bool name_only, bool long_desc)
info.size = sizeof(info); info.size = sizeof(info);
pinfo.size = sizeof(pinfo); pinfo.size = sizeof(pinfo);
if (!name_only) strbuf_init(&storage, 2048);
puts("\nList of pre-defined events (to be used in --pfm-events):\n");
pfm_for_all_pmus(p) { pfm_for_all_pmus(p) {
bool printed_pmu = false;
ret = pfm_get_pmu_info(p, &pinfo); ret = pfm_get_pmu_info(p, &pinfo);
if (ret != PFM_SUCCESS) if (ret != PFM_SUCCESS)
continue; continue;
...@@ -267,25 +258,14 @@ void print_libpfm_events(bool name_only, bool long_desc) ...@@ -267,25 +258,14 @@ void print_libpfm_events(bool name_only, bool long_desc)
if (pinfo.pmu == PFM_PMU_PERF_EVENT) if (pinfo.pmu == PFM_PMU_PERF_EVENT)
continue; continue;
for (i = pinfo.first_event; i != -1; for (int i = pinfo.first_event; i != -1; i = pfm_get_event_next(i)) {
i = pfm_get_event_next(i)) {
ret = pfm_get_event_info(i, PFM_OS_PERF_EVENT_EXT, ret = pfm_get_event_info(i, PFM_OS_PERF_EVENT_EXT,
&info); &info);
if (ret != PFM_SUCCESS) if (ret != PFM_SUCCESS)
continue; continue;
if (!name_only && !printed_pmu) { print_libpfm_event(print_cb, print_state, &pinfo, &info, &storage);
printf("%s:\n", pinfo.name);
printed_pmu = true;
}
if (!name_only)
print_libpfm_events_detailed(&info, long_desc);
else
print_libpfm_events_raw(&pinfo, &info);
} }
if (!name_only && printed_pmu)
putchar('\n');
} }
strbuf_release(&storage);
} }
...@@ -7,13 +7,14 @@ ...@@ -7,13 +7,14 @@
#ifndef __PERF_PFM_H #ifndef __PERF_PFM_H
#define __PERF_PFM_H #define __PERF_PFM_H
#include "print-events.h"
#include <subcmd/parse-options.h> #include <subcmd/parse-options.h>
#ifdef HAVE_LIBPFM #ifdef HAVE_LIBPFM
int parse_libpfm_events_option(const struct option *opt, const char *str, int parse_libpfm_events_option(const struct option *opt, const char *str,
int unset); int unset);
void print_libpfm_events(bool name_only, bool long_desc); void print_libpfm_events(const struct print_callbacks *print_cb, void *print_state);
#else #else
#include <linux/compiler.h> #include <linux/compiler.h>
...@@ -26,8 +27,8 @@ static inline int parse_libpfm_events_option( ...@@ -26,8 +27,8 @@ static inline int parse_libpfm_events_option(
return 0; return 0;
} }
static inline void print_libpfm_events(bool name_only __maybe_unused, static inline void print_libpfm_events(const struct print_callbacks *print_cb __maybe_unused,
bool long_desc __maybe_unused) void *print_state __maybe_unused)
{ {
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment