[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1367421346-18257-1-git-send-email-jolsa@redhat.com>
Date: Wed, 1 May 2013 17:15:38 +0200
From: Jiri Olsa <jolsa@...hat.com>
To: linux-kernel@...r.kernel.org
Cc: Jiri Olsa <jolsa@...hat.com>,
Arnaldo Carvalho de Melo <acme@...hat.com>,
Namhyung Kim <namhyung@...nel.org>,
Corey Ashford <cjashfor@...ux.vnet.ibm.com>,
Frederic Weisbecker <fweisbec@...il.com>,
Ingo Molnar <mingo@...e.hu>, Paul Mackerras <paulus@...ba.org>,
Peter Zijlstra <a.p.zijlstra@...llo.nl>,
Andi Kleen <andi@...stfloor.org>,
David Ahern <dsahern@...il.com>,
Ulrich Drepper <drepper@...il.com>,
Will Deacon <will.deacon@....com>,
Stephane Eranian <eranian@...gle.com>
Subject: [RFCv2 0/8] perf tools: Adding formula support
hi,
adding support to define counters for stat command,
by using user defined events and counters.
Initial RFC is here:
http://marc.info/?l=linux-kernel&m=135825930106535&w=2
v2 main changes:
- counter formula grammar changed
(details in patch 4 changelog)
- using -e 'formula-<name>' way of using configured <name> set
for stat command
(details in patch 7 changelog)
thanks for comments,
jirka
Signed-off-by: Jiri Olsa <jolsa@...hat.com>
Cc: Arnaldo Carvalho de Melo <acme@...hat.com>
Cc: Namhyung Kim <namhyung@...nel.org>
Cc: Corey Ashford <cjashfor@...ux.vnet.ibm.com>
Cc: Frederic Weisbecker <fweisbec@...il.com>
Cc: Ingo Molnar <mingo@...e.hu>
Cc: Namhyung Kim <namhyung@...nel.org>
Cc: Paul Mackerras <paulus@...ba.org>
Cc: Peter Zijlstra <a.p.zijlstra@...llo.nl>
Cc: Andi Kleen <andi@...stfloor.org>
Cc: David Ahern <dsahern@...il.com>
Cc: Ulrich Drepper <drepper@...il.com>
Cc: Will Deacon <will.deacon@....com>
Cc: Stephane Eranian <eranian@...gle.com>
---
Jiri Olsa (8):
perf tools: Move start conditions to start of the flex file
perf tools: Factorize event parsing to be more general
perf tools: Add formula-* parsing support for events
perf tools: Add formula interface to interface formula definitions
perf tools: Add support to preload default formulas
perf tests: Add automated tests for formula object
perf stat: Add support to process formulas
perf list: List formulas counters
tools/perf/Makefile | 20 ++++
tools/perf/builtin-list.c | 3 +
tools/perf/builtin-stat.c | 83 +++++++++++++-
tools/perf/formulas/default.conf | 26 +++++
tools/perf/tests/builtin-test.c | 4 +
tools/perf/tests/formula.c | 183 ++++++++++++++++++++++++++++++
tools/perf/tests/parse-events.c | 8 --
tools/perf/tests/tests.h | 10 ++
tools/perf/util/evlist.c | 13 +++
tools/perf/util/evlist.h | 9 ++
tools/perf/util/formula.c | 600 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
tools/perf/util/formula.h | 142 +++++++++++++++++++++++
tools/perf/util/formula.l | 119 ++++++++++++++++++++
tools/perf/util/formula.y | 249 +++++++++++++++++++++++++++++++++++++++++
tools/perf/util/parse-events.c | 56 ++++++++++
tools/perf/util/parse-events.h | 20 ++++
tools/perf/util/parse-events.l | 73 ++++++------
tools/perf/util/parse-events.y | 80 +++++++++++--
18 files changed, 1646 insertions(+), 52 deletions(-)
create mode 100644 tools/perf/formulas/default.conf
create mode 100644 tools/perf/tests/formula.c
create mode 100644 tools/perf/util/formula.c
create mode 100644 tools/perf/util/formula.h
create mode 100644 tools/perf/util/formula.l
create mode 100644 tools/perf/util/formula.y
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists