Skip to content

Commit

Permalink
perf pmu-events: Hide pmu_sys_event_tables
Browse files Browse the repository at this point in the history
Move usage of the table to pmu-events.c so it may be hidden. By
abstracting the table the implementation can later be changed.

Signed-off-by: Ian Rogers <[email protected]>
Cc: Adrian Hunter <[email protected]>
Cc: Alexander Shishkin <[email protected]>
Cc: Andi Kleen <[email protected]>
Cc: Ingo Molnar <[email protected]>
Cc: James Clark <[email protected]>
Cc: Jiri Olsa <[email protected]>
Cc: John Garry <[email protected]>
Cc: Kan Liang <[email protected]>
Cc: Leo Yan <[email protected]>
Cc: Mark Rutland <[email protected]>
Cc: Mike Leach <[email protected]>
Cc: Namhyung Kim <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Ravi Bangoria <[email protected]>
Cc: Stephane Eranian <[email protected]>
Cc: Will Deacon <[email protected]>
Cc: Xing Zhengjun <[email protected]>
Cc: [email protected]
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
  • Loading branch information
captain5050 authored and acmel committed Aug 13, 2022
1 parent 7b2f844 commit 2519db2
Show file tree
Hide file tree
Showing 6 changed files with 84 additions and 52 deletions.
37 changes: 36 additions & 1 deletion tools/perf/pmu-events/empty-pmu-events.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
* The test cpu/soc is provided for testing.
*/
#include "pmu-events/pmu-events.h"
#include <string.h>
#include <stddef.h>

static const struct pmu_event pme_test_soc_cpu[] = {
{
Expand Down Expand Up @@ -145,7 +147,12 @@ static const struct pmu_event pme_test_soc_sys[] = {
},
};

const struct pmu_sys_events pmu_sys_event_tables[] = {
struct pmu_sys_events {
const char *name;
const struct pmu_event *table;
};

static const struct pmu_sys_events pmu_sys_event_tables[] = {
{
.table = pme_test_soc_sys,
.name = "pme_test_soc_sys",
Expand All @@ -154,3 +161,31 @@ const struct pmu_sys_events pmu_sys_event_tables[] = {
.table = 0
},
};

const struct pmu_event *find_sys_events_table(const char *name)
{
for (const struct pmu_sys_events *tables = &pmu_sys_event_tables[0];
tables->name;
tables++) {
if (!strcmp(tables->name, name))
return tables->table;
}
return NULL;
}

int pmu_for_each_sys_event(pmu_event_iter_fn fn, void *data)
{
for (const struct pmu_sys_events *tables = &pmu_sys_event_tables[0];
tables->name;
tables++) {
for (const struct pmu_event *pe = &tables->table[0];
pe->name || pe->metric_group || pe->metric_name;
pe++) {
int ret = fn(pe, data);

if (ret)
return ret;
}
}
return 0;
}
45 changes: 42 additions & 3 deletions tools/perf/pmu-events/jevents.py
Original file line number Diff line number Diff line change
Expand Up @@ -371,8 +371,14 @@ def print_mapping_table(archs: Sequence[str]) -> None:

def print_system_mapping_table() -> None:
"""C struct mapping table array for tables from /sys directories."""
_args.output_file.write(
'\nconst struct pmu_sys_events pmu_sys_event_tables[] = {\n')
_args.output_file.write("""
struct pmu_sys_events {
\tconst char *name;
\tconst struct pmu_event *table;
};
static const struct pmu_sys_events pmu_sys_event_tables[] = {
""")
for tblname in _sys_event_tables:
_args.output_file.write(f"""\t{{
\t\t.table = {tblname},
Expand All @@ -383,6 +389,34 @@ def print_system_mapping_table() -> None:
\t\t.table = 0
\t},
};
const struct pmu_event *find_sys_events_table(const char *name)
{
for (const struct pmu_sys_events *tables = &pmu_sys_event_tables[0];
tables->name;
tables++) {
if (!strcmp(tables->name, name))
return tables->table;
}
return NULL;
}
int pmu_for_each_sys_event(pmu_event_iter_fn fn, void *data)
{
for (const struct pmu_sys_events *tables = &pmu_sys_event_tables[0];
tables->name;
tables++) {
for (const struct pmu_event *pe = &tables->table[0];
pe->name || pe->metric_group || pe->metric_name;
pe++) {
int ret = fn(pe, data);
if (ret)
return ret;
}
}
return 0;
}
""")


Expand Down Expand Up @@ -414,7 +448,12 @@ def ftw(path: str, parents: Sequence[str],
'output_file', type=argparse.FileType('w'), nargs='?', default=sys.stdout)
_args = ap.parse_args()

_args.output_file.write("#include \"pmu-events/pmu-events.h\"\n")
_args.output_file.write("""
#include "pmu-events/pmu-events.h"
#include <string.h>
#include <stddef.h>
""")
archs = []
for item in os.scandir(_args.starting_dir):
if not item.is_dir():
Expand Down
11 changes: 5 additions & 6 deletions tools/perf/pmu-events/pmu-events.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,16 +43,15 @@ struct pmu_events_map {
const struct pmu_event *table;
};

struct pmu_sys_events {
const char *name;
const struct pmu_event *table;
};

/*
* Global table mapping each known CPU for the architecture to its
* table of PMU events.
*/
extern const struct pmu_events_map pmu_events_map[];
extern const struct pmu_sys_events pmu_sys_event_tables[];

const struct pmu_event *find_sys_events_table(const char *name);

typedef int (*pmu_event_iter_fn)(const struct pmu_event *pe, void *data);
int pmu_for_each_sys_event(pmu_event_iter_fn fn, void *data);

#endif
14 changes: 1 addition & 13 deletions tools/perf/tests/pmu-events.c
Original file line number Diff line number Diff line change
Expand Up @@ -286,18 +286,6 @@ static const struct pmu_events_map *__test_pmu_get_events_map(void)
return NULL;
}

static const struct pmu_event *__test_pmu_get_sys_events_table(void)
{
const struct pmu_sys_events *tables = &pmu_sys_event_tables[0];

for ( ; tables->name; tables++) {
if (!strcmp("pme_test_soc_sys", tables->name))
return tables->table;
}

return NULL;
}

static int compare_pmu_events(const struct pmu_event *e1, const struct pmu_event *e2)
{
if (!is_same(e1->name, e2->name)) {
Expand Down Expand Up @@ -451,7 +439,7 @@ static int compare_alias_to_test_event(struct perf_pmu_alias *alias,
static int test__pmu_event_table(struct test_suite *test __maybe_unused,
int subtest __maybe_unused)
{
const struct pmu_event *sys_event_tables = __test_pmu_get_sys_events_table();
const struct pmu_event *sys_event_tables = find_sys_events_table("pme_test_soc_sys");
const struct pmu_events_map *map = __test_pmu_get_events_map();
const struct pmu_event *table;
int map_events = 0, expected_events;
Expand Down
27 changes: 0 additions & 27 deletions tools/perf/util/pmu.c
Original file line number Diff line number Diff line change
Expand Up @@ -868,33 +868,6 @@ static void pmu_add_cpu_aliases(struct list_head *head, struct perf_pmu *pmu)
pmu_add_cpu_aliases_map(head, pmu, map);
}

void pmu_for_each_sys_event(pmu_sys_event_iter_fn fn, void *data)
{
int i = 0;

while (1) {
const struct pmu_sys_events *event_table;
int j = 0;

event_table = &pmu_sys_event_tables[i++];

if (!event_table->table)
break;

while (1) {
const struct pmu_event *pe = &event_table->table[j++];
int ret;

if (!pe->name && !pe->metric_group && !pe->metric_name)
break;

ret = fn(pe, data);
if (ret)
break;
}
}
}

struct pmu_sys_event_iter_data {
struct list_head *head;
struct perf_pmu *pmu;
Expand Down
2 changes: 0 additions & 2 deletions tools/perf/util/pmu.h
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,6 @@ const struct pmu_events_map *pmu_events_map__find(void);
bool pmu_uncore_alias_match(const char *pmu_name, const char *name);
void perf_pmu_free_alias(struct perf_pmu_alias *alias);

typedef int (*pmu_sys_event_iter_fn)(const struct pmu_event *pe, void *data);
void pmu_for_each_sys_event(pmu_sys_event_iter_fn fn, void *data);
int perf_pmu__convert_scale(const char *scale, char **end, double *sval);

int perf_pmu__caps_parse(struct perf_pmu *pmu);
Expand Down

0 comments on commit 2519db2

Please sign in to comment.