public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Adrian Hunter <adrian.hunter@intel.com>
To: Adrian Hunter <adrian.hunter@intel.com>
Cc: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>,
	Peter Zijlstra <a.p.zijlstra@chello.nl>,
	Ingo Molnar <mingo@redhat.com>,
	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>,
	Stephane Eranian <eranian@google.com>,
	Andi Kleen <ak@linux.intel.com>
Subject: Re: [PATCH V2 3/3] perf script: Improve srcline display for BTS
Date: Tue, 10 Dec 2013 09:05:24 +0200	[thread overview]
Message-ID: <52A6BD34.60006@intel.com> (raw)
In-Reply-To: <52A6BCE0.9010805@intel.com>

On 10/12/13 09:04, Adrian Hunter wrote:
> On 09/12/13 20:04, Arnaldo Carvalho de Melo wrote:
>> Em Fri, Dec 06, 2013 at 09:42:58AM +0200, Adrian Hunter escreveu:
>>> Change the order of the output to put the srcline last.
>>> e.g. old format:
>>
>> Can you please always provide the command line used, so that people can
>> quickly reproduce your results, before and after your changes?
> 
> OK
> 
> perf record -e branches:u -c 1 -d ls
> 
> perf script -fip,sym,symoff,addr,srcline

Oops missed dso.  That should be:

	perf script -fip,sym,symoff,dso,addr,srcline

> 
>>
>> - Arnaldo
>>  
>>>           4028fc main+0x2c (/bin/ls)
>>>   /build/buildd/coreutils-8.20/src/ls.c:1269 =>           40d8a0 set_program_name+0x0 (/bin/ls)
>>>
>>> new format:
>>>
>>>           4028fc main+0x2c (/bin/ls) =>           40d8a0 set_program_name+0x0 (/bin/ls)
>>>   /build/buildd/coreutils-8.20/src/ls.c:1269
>>>
>>> Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
>>> ---
>>>  tools/perf/builtin-script.c | 20 +++++++++++++++-----
>>>  1 file changed, 15 insertions(+), 5 deletions(-)
>>>
>>> diff --git a/tools/perf/builtin-script.c b/tools/perf/builtin-script.c
>>> index 7a571fb..8997b69 100644
>>> --- a/tools/perf/builtin-script.c
>>> +++ b/tools/perf/builtin-script.c
>>> @@ -428,15 +428,22 @@ static void print_sample_bts(union perf_event *event,
>>>  			     struct addr_location *al)
>>>  {
>>>  	struct perf_event_attr *attr = &evsel->attr;
>>> +	bool print_srcline_last = false;
>>>  
>>>  	/* print branch_from information */
>>>  	if (PRINT_FIELD(IP)) {
>>> -		if (!symbol_conf.use_callchain)
>>> -			printf(" ");
>>> -		else
>>> +		unsigned int print_opts = output[attr->type].print_ip_opts;
>>> +
>>> +		if (symbol_conf.use_callchain && sample->callchain) {
>>>  			printf("\n");
>>> -		perf_evsel__print_ip(evsel, sample, machine, al,
>>> -				     output[attr->type].print_ip_opts,
>>> +		} else {
>>> +			printf(" ");
>>> +			if (print_opts & PRINT_IP_OPT_SRCLINE) {
>>> +				print_srcline_last = true;
>>> +				print_opts &= ~PRINT_IP_OPT_SRCLINE;
>>> +			}
>>> +		}
>>> +		perf_evsel__print_ip(evsel, sample, machine, al, print_opts,
>>>  				     PERF_MAX_STACK_DEPTH);
>>>  	}
>>>  
>>> @@ -448,6 +455,9 @@ static void print_sample_bts(union perf_event *event,
>>>  	     !output[attr->type].user_set))
>>>  		print_sample_addr(event, sample, machine, thread, attr);
>>>  
>>> +	if (print_srcline_last)
>>> +		map__fprintf_srcline(al->map, al->addr, "\n  ", stdout);
>>> +
>>>  	printf("\n");
>>>  }
>>>  
>>> -- 
>>> 1.7.11.7
>>
>>
> 
> 
> 


  reply	other threads:[~2013-12-10  6:57 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-12-06  7:42 [PATCH V2 0/3] perf script: Add an option to print the source line number Adrian Hunter
2013-12-06  7:42 ` [PATCH V2 1/3] perf script: Fix symoff printing in callchains Adrian Hunter
2013-12-08 17:32   ` David Ahern
2013-12-11 11:04   ` [tip:perf/core] " tip-bot for Adrian Hunter
2013-12-06  7:42 ` [PATCH V2 2/3] perf script: Add an option to print the source line number Adrian Hunter
2013-12-08 17:35   ` David Ahern
2013-12-09  8:10     ` Adrian Hunter
2013-12-11 11:04   ` [tip:perf/core] " tip-bot for Adrian Hunter
2013-12-06  7:42 ` [PATCH V2 3/3] perf script: Improve srcline display for BTS Adrian Hunter
2013-12-09 18:04   ` Arnaldo Carvalho de Melo
2013-12-10  7:04     ` Adrian Hunter
2013-12-10  7:05       ` Adrian Hunter [this message]
2013-12-13 10:21         ` [PATCH V3] " 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=52A6BD34.60006@intel.com \
    --to=adrian.hunter@intel.com \
    --cc=a.p.zijlstra@chello.nl \
    --cc=acme@ghostprotocols.net \
    --cc=ak@linux.intel.com \
    --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@redhat.com \
    --cc=namhyung@gmail.com \
    --cc=paulus@samba.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