Skip to content

Commit

Permalink
perf_counter tools: Introduce alias member in event_symbol
Browse files Browse the repository at this point in the history
By introducing alias member in event_symbol :

1. duplicate lines are removed, like:
   cpu-cycles and cycles
   branch-instructions and branches
   context-switches and cs
   cpu-migrations and migrations

2. We can also add alias for another events.

Now ./perf list looks like :

List of pre-defined events (to be used in -e):

  cpu-cycles OR cycles                     [Hardware event]
  instructions                             [Hardware event]
  cache-references                         [Hardware event]
  cache-misses                             [Hardware event]
  branch-instructions OR branches          [Hardware event]
  branch-misses                            [Hardware event]
  bus-cycles                               [Hardware event]

  cpu-clock                                [Software event]
  task-clock                               [Software event]
  page-faults                              [Software event]
  faults                                   [Software event]
  minor-faults                             [Software event]
  major-faults                             [Software event]
  context-switches OR cs                   [Software event]
  cpu-migrations OR migrations             [Software event]

  rNNN                                     [raw hardware event descriptor]

Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com>
Cc: Peter Zijlstra <peterz@infradead.org>
LKML-Reference: <1245669268.17153.8.camel@localhost.localdomain>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
  • Loading branch information
Jaswinder Singh Rajput authored and Ingo Molnar committed Jun 22, 2009
1 parent 51e2684 commit 74d5b58
Showing 1 changed file with 38 additions and 25 deletions.
63 changes: 38 additions & 25 deletions tools/perf/util/parse-events.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,32 +16,29 @@ struct event_symbol {
u8 type;
u64 config;
char *symbol;
char *alias;
};

#define CHW(x) .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_##x
#define CSW(x) .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_##x

static struct event_symbol event_symbols[] = {
{ CHW(CPU_CYCLES), "cpu-cycles", },
{ CHW(CPU_CYCLES), "cycles", },
{ CHW(INSTRUCTIONS), "instructions", },
{ CHW(CACHE_REFERENCES), "cache-references", },
{ CHW(CACHE_MISSES), "cache-misses", },
{ CHW(BRANCH_INSTRUCTIONS), "branch-instructions", },
{ CHW(BRANCH_INSTRUCTIONS), "branches", },
{ CHW(BRANCH_MISSES), "branch-misses", },
{ CHW(BUS_CYCLES), "bus-cycles", },

{ CSW(CPU_CLOCK), "cpu-clock", },
{ CSW(TASK_CLOCK), "task-clock", },
{ CSW(PAGE_FAULTS), "page-faults", },
{ CSW(PAGE_FAULTS), "faults", },
{ CSW(PAGE_FAULTS_MIN), "minor-faults", },
{ CSW(PAGE_FAULTS_MAJ), "major-faults", },
{ CSW(CONTEXT_SWITCHES), "context-switches", },
{ CSW(CONTEXT_SWITCHES), "cs", },
{ CSW(CPU_MIGRATIONS), "cpu-migrations", },
{ CSW(CPU_MIGRATIONS), "migrations", },
{ CHW(CPU_CYCLES), "cpu-cycles", "cycles" },
{ CHW(INSTRUCTIONS), "instructions", "" },
{ CHW(CACHE_REFERENCES), "cache-references", "" },
{ CHW(CACHE_MISSES), "cache-misses", "" },
{ CHW(BRANCH_INSTRUCTIONS), "branch-instructions", "branches" },
{ CHW(BRANCH_MISSES), "branch-misses", "" },
{ CHW(BUS_CYCLES), "bus-cycles", "" },

{ CSW(CPU_CLOCK), "cpu-clock", "" },
{ CSW(TASK_CLOCK), "task-clock", "" },
{ CSW(PAGE_FAULTS), "page-faults", "" },
{ CSW(PAGE_FAULTS), "faults", "" },
{ CSW(PAGE_FAULTS_MIN), "minor-faults", "" },
{ CSW(PAGE_FAULTS_MAJ), "major-faults", "" },
{ CSW(CONTEXT_SWITCHES), "context-switches", "cs" },
{ CSW(CPU_MIGRATIONS), "cpu-migrations", "migrations" },
};

#define __PERF_COUNTER_FIELD(config, name) \
Expand Down Expand Up @@ -196,6 +193,19 @@ static int parse_generic_hw_symbols(const char *str, struct perf_counter_attr *a
return 0;
}

static int check_events(const char *str, unsigned int i)
{
if (!strncmp(str, event_symbols[i].symbol,
strlen(event_symbols[i].symbol)))
return 1;

if (strlen(event_symbols[i].alias))
if (!strncmp(str, event_symbols[i].alias,
strlen(event_symbols[i].alias)))
return 1;
return 0;
}

/*
* Each event can have multiple symbolic names.
* Symbolic names are (almost) exactly matched.
Expand Down Expand Up @@ -235,9 +245,7 @@ static int parse_event_symbols(const char *str, struct perf_counter_attr *attr)
}

for (i = 0; i < ARRAY_SIZE(event_symbols); i++) {
if (!strncmp(str, event_symbols[i].symbol,
strlen(event_symbols[i].symbol))) {

if (check_events(str, i)) {
attr->type = event_symbols[i].type;
attr->config = event_symbols[i].config;

Expand Down Expand Up @@ -289,6 +297,7 @@ void print_events(void)
{
struct event_symbol *syms = event_symbols;
unsigned int i, type, prev_type = -1;
char name[40];

fprintf(stderr, "\n");
fprintf(stderr, "List of pre-defined events (to be used in -e):\n");
Expand All @@ -301,14 +310,18 @@ void print_events(void)
if (type != prev_type)
fprintf(stderr, "\n");

fprintf(stderr, " %-30s [%s]\n", syms->symbol,
if (strlen(syms->alias))
sprintf(name, "%s OR %s", syms->symbol, syms->alias);
else
strcpy(name, syms->symbol);
fprintf(stderr, " %-40s [%s]\n", name,
event_type_descriptors[type]);

prev_type = type;
}

fprintf(stderr, "\n");
fprintf(stderr, " %-30s [raw hardware event descriptor]\n",
fprintf(stderr, " %-40s [raw hardware event descriptor]\n",
"rNNN");
fprintf(stderr, "\n");

Expand Down

0 comments on commit 74d5b58

Please sign in to comment.