[tip:perf/core] perf tools: Implement addr2line directly using libbfd

2013-10-14 Thread tip-bot for Roberto Vitillo
Commit-ID: 2f48fcd84e9e68392e29c59204a4a434311d49e9 Gitweb: http://git.kernel.org/tip/2f48fcd84e9e68392e29c59204a4a434311d49e9 Author: Roberto Vitillo AuthorDate: Wed, 11 Sep 2013 14:09:32 +0900 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 9 Oct 2013 16:30:14 -0300 perf tools

[tip:perf/core] perf tools: Implement addr2line directly using libbfd

2013-10-14 Thread tip-bot for Roberto Vitillo
Commit-ID: 2f48fcd84e9e68392e29c59204a4a434311d49e9 Gitweb: http://git.kernel.org/tip/2f48fcd84e9e68392e29c59204a4a434311d49e9 Author: Roberto Vitillo raviti...@lbl.gov AuthorDate: Wed, 11 Sep 2013 14:09:32 +0900 Committer: Arnaldo Carvalho de Melo a...@redhat.com CommitDate: Wed, 9 Oct

Re: [PATCH v2] perf: add callgrind conversion tool

2013-03-28 Thread Roberto Vitillo
On Thu, Mar 28, 2013 at 9:18 PM, Namhyung Kim wrote: > On Thu, Mar 28, 2013 at 04:58:30PM -0700, Sukadev Bhattiprolu wrote: >> Roberto Vitillo [raviti...@lbl.gov] wrote: >> | The proposed patch adds the convert tool to perf which allows to convert a >> | perf.data file to a

Re: [PATCH v2] perf: add callgrind conversion tool

2013-03-28 Thread Roberto Vitillo
On Thu, Mar 28, 2013 at 9:18 PM, Namhyung Kim namhy...@kernel.org wrote: On Thu, Mar 28, 2013 at 04:58:30PM -0700, Sukadev Bhattiprolu wrote: Roberto Vitillo [raviti...@lbl.gov] wrote: | The proposed patch adds the convert tool to perf which allows to convert a | perf.data file to a set

Re: [PATCH v2] perf: add callgrind conversion tool

2013-03-27 Thread Roberto Vitillo
On Wed, Mar 27, 2013 at 12:23 AM, Namhyung Kim wrote: > Hi Roberto, > > On Tue, 26 Mar 2013 12:14:49 -0700, Roberto Vitillo wrote: >> The proposed patch adds the convert tool to perf which allows to convert a >> perf.data file to a set of callgrind data files w

Re: [PATCH v2] perf: add callgrind conversion tool

2013-03-27 Thread Roberto Vitillo
On Wed, Mar 27, 2013 at 12:23 AM, Namhyung Kim namhy...@kernel.org wrote: Hi Roberto, On Tue, 26 Mar 2013 12:14:49 -0700, Roberto Vitillo wrote: The proposed patch adds the convert tool to perf which allows to convert a perf.data file to a set of callgrind data files which can subsequently

[PATCH v2] perf: add callgrind conversion tool

2013-03-26 Thread Roberto Vitillo
The proposed patch adds the convert tool to perf which allows to convert a perf.data file to a set of callgrind data files which can subsequently be displayed with kcachegrind. Note that the code may trigger the following bug in libbfd: http://sourceware.org/bugzilla/show_bug.cgi?id=15106

Re: [PATCH] perf: add callgrind conversion tool

2013-03-26 Thread Roberto Vitillo
>> LIB_OBJS += $(OUTPUT)ui/setup.o >> LIB_OBJS += $(OUTPUT)ui/helpline.o >> @@ -528,6 +532,7 @@ BUILTIN_OBJS += $(OUTPUT)builtin-kmem.o >> BUILTIN_OBJS += $(OUTPUT)builtin-lock.o >> BUILTIN_OBJS += $(OUTPUT)builtin-kvm.o >> BUILTIN_OBJS += $(OUTPUT)builtin-inject.o >> +BUILTIN_OBJS +=

Re: [PATCH] perf: add callgrind conversion tool

2013-03-26 Thread Roberto Vitillo
LIB_OBJS += $(OUTPUT)ui/setup.o LIB_OBJS += $(OUTPUT)ui/helpline.o @@ -528,6 +532,7 @@ BUILTIN_OBJS += $(OUTPUT)builtin-kmem.o BUILTIN_OBJS += $(OUTPUT)builtin-lock.o BUILTIN_OBJS += $(OUTPUT)builtin-kvm.o BUILTIN_OBJS += $(OUTPUT)builtin-inject.o +BUILTIN_OBJS +=

[PATCH v2] perf: add callgrind conversion tool

2013-03-26 Thread Roberto Vitillo
The proposed patch adds the convert tool to perf which allows to convert a perf.data file to a set of callgrind data files which can subsequently be displayed with kcachegrind. Note that the code may trigger the following bug in libbfd: http://sourceware.org/bugzilla/show_bug.cgi?id=15106

[PATCH] perf: add callgrind conversion tool

2013-02-26 Thread Roberto Vitillo
The proposed patch adds the convert tool to perf which allows to convert a perf.data file to a callgrind data file which can subsequently be displayed with kcachegrind. Callgraphs are not supported. In order to speed up the converter I am not piping to addr2line, this means that the code depends

[PATCH] perf: add callgrind conversion tool

2013-02-26 Thread Roberto Vitillo
The proposed patch adds the convert tool to perf which allows to convert a perf.data file to a callgrind data file which can subsequently be displayed with kcachegrind. Callgraphs are not supported. In order to speed up the converter I am not piping to addr2line, this means that the code depends