From: Adrian Hunter <adrian.hunter@intel.com>
To: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Cc: linux-kernel@vger.kernel.org, David Ahern <dsahern@gmail.com>,
Frederic Weisbecker <fweisbec@gmail.com>,
Jiri Olsa <jolsa@redhat.com>, Mike Galbraith <efault@gmx.de>,
Namhyung Kim <namhyung@gmail.com>,
Paul Mackerras <paulus@samba.org>,
Peter Zijlstra <peterz@infradead.org>,
Stephane Eranian <eranian@google.com>,
Ingo Molnar <mingo@kernel.org>
Subject: [PATCH V2 0/9] perf tools: add support for reading object code
Date: Wed, 31 Jul 2013 00:13:49 +0300 [thread overview]
Message-ID: <1375218838-31042-1-git-send-email-adrian.hunter@intel.com> (raw)
Hi
Here are some patches that add support for reading object code from vmlinux,
kernel modules and /proc/kcore.
Changes in V2:
Re-based on Arnaldo's tree's perf/core branch
perf tools: add test for reading object code
Use strchr in read_objdump_line()
Remove unused return value of read_objdump_line()
Fix double space before "cycles:u"
Add missing perf_evlist__delete(evlist) in do_test_code_reading()
perf tools: load kernel maps before using
Correct spelling of "initialization" in commit message
perf tools: add support for reading from /proc/kcore
Do not test kallsyms filename for host buildid because
/proc/kallsyms is always used if the dso buildid matches
the host
perf tools: add kcore to the object code reading test
Remove redundant "else if (!have_kcore && try_kcore)" clause
Adrian Hunter (9):
perf tools: add test for reading object code
perf tools: load kernel maps before using
perf tools: make it possible to read object code from vmlinux
perf tools: adjust the vmlinux symtab matches kallsyms test
perf tools: avoid SyS kernel syscall aliases
perf tools: make it possible to read object code from kernel modules
perf tools: add support for reading from /proc/kcore
perf tools: add kcore to the object code reading test
perf tools: allow annotation using /proc/kcore
tools/perf/Makefile | 1 +
tools/perf/builtin-inject.c | 2 +-
tools/perf/builtin-script.c | 4 +-
tools/perf/builtin-top.c | 3 +-
tools/perf/tests/builtin-test.c | 4 +
tools/perf/tests/code-reading.c | 556 ++++++++++++++++++++++++++++++++++++
tools/perf/tests/tests.h | 1 +
tools/perf/tests/vmlinux-kallsyms.c | 32 ++-
tools/perf/util/annotate.c | 13 +-
tools/perf/util/build-id.c | 2 +-
tools/perf/util/dso.c | 10 +-
tools/perf/util/dso.h | 17 ++
tools/perf/util/event.c | 18 +-
tools/perf/util/machine.c | 20 +-
tools/perf/util/map.c | 67 ++---
tools/perf/util/map.h | 13 +
tools/perf/util/symbol-elf.c | 166 ++++++++++-
tools/perf/util/symbol-minimal.c | 7 +
tools/perf/util/symbol.c | 273 ++++++++++++++++--
tools/perf/util/symbol.h | 5 +
tools/perf/util/thread.h | 2 +-
tools/perf/util/unwind.c | 4 +-
22 files changed, 1120 insertions(+), 100 deletions(-)
create mode 100644 tools/perf/tests/code-reading.c
Regards
Adrian
next reply other threads:[~2013-07-30 21:08 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-07-30 21:13 Adrian Hunter [this message]
2013-07-30 21:13 ` [PATCH V2 1/9] perf tools: add test " Adrian Hunter
2013-07-31 14:17 ` Arnaldo Carvalho de Melo
2013-07-31 14:24 ` Peter Zijlstra
2013-08-01 2:32 ` Namhyung Kim
2013-08-03 13:45 ` Adrian Hunter
2013-08-05 16:32 ` Arnaldo Carvalho de Melo
2013-07-31 14:58 ` Arnaldo Carvalho de Melo
2013-07-31 17:28 ` Arnaldo Carvalho de Melo
2013-07-31 17:46 ` Arnaldo Carvalho de Melo
2013-08-03 19:37 ` Adrian Hunter
2013-08-03 14:11 ` Adrian Hunter
2013-07-30 21:13 ` [PATCH V2 2/9] perf tools: load kernel maps before using Adrian Hunter
2013-07-31 14:35 ` Arnaldo Carvalho de Melo
2013-07-30 21:13 ` [PATCH V2 3/9] perf tools: make it possible to read object code from vmlinux Adrian Hunter
2013-07-30 21:13 ` [PATCH V2 4/9] perf tools: adjust the vmlinux symtab matches kallsyms test Adrian Hunter
2013-07-30 21:13 ` [PATCH V2 5/9] perf tools: avoid SyS kernel syscall aliases Adrian Hunter
2013-07-30 21:13 ` [PATCH V2 6/9] perf tools: make it possible to read object code from kernel modules Adrian Hunter
2013-07-30 21:13 ` [PATCH V2 7/9] perf tools: add support for reading from /proc/kcore Adrian Hunter
2013-07-30 21:13 ` [PATCH V2 8/9] perf tools: add kcore to the object code reading test Adrian Hunter
2013-07-30 21:13 ` [PATCH V2 9/9] perf tools: allow annotation using /proc/kcore Adrian Hunter
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1375218838-31042-1-git-send-email-adrian.hunter@intel.com \
--to=adrian.hunter@intel.com \
--cc=acme@ghostprotocols.net \
--cc=dsahern@gmail.com \
--cc=efault@gmx.de \
--cc=eranian@google.com \
--cc=fweisbec@gmail.com \
--cc=jolsa@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@kernel.org \
--cc=namhyung@gmail.com \
--cc=paulus@samba.org \
--cc=peterz@infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome