public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: David Ahern <dsahern@gmail.com>
To: Adrian Hunter <adrian.hunter@intel.com>,
	Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>,
	Ingo Molnar <mingo@redhat.com>,
	linux-kernel@vger.kernel.org,
	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 2/3] perf script: Add an option to print the source line number
Date: Sun, 08 Dec 2013 10:35:04 -0700	[thread overview]
Message-ID: <52A4ADC8.3020202@gmail.com> (raw)
In-Reply-To: <1386315778-11633-3-git-send-email-adrian.hunter@intel.com>

On 12/6/13, 12:42 AM, Adrian Hunter wrote:
> Add field 'srcline' that displays the source file name
> and line number associated with the sample ip.  The
> information displayed is the same as from addr2line.

example output?

>
> Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
> ---
>   tools/perf/Documentation/perf-script.txt |  2 +-
>   tools/perf/builtin-script.c              | 10 ++++++++++
>   tools/perf/util/map.c                    | 17 +++++++++++++++++
>   tools/perf/util/map.h                    |  2 ++
>   tools/perf/util/session.c                |  8 ++++++++
>   tools/perf/util/session.h                |  1 +
>   6 files changed, 39 insertions(+), 1 deletion(-)
>
> diff --git a/tools/perf/Documentation/perf-script.txt b/tools/perf/Documentation/perf-script.txt
> index cfdbb1e..c2a5071 100644
> --- a/tools/perf/Documentation/perf-script.txt
> +++ b/tools/perf/Documentation/perf-script.txt
> @@ -115,7 +115,7 @@ OPTIONS
>   -f::
>   --fields::
>           Comma separated list of fields to print. Options are:
> -        comm, tid, pid, time, cpu, event, trace, ip, sym, dso, addr, symoff.
> +        comm, tid, pid, time, cpu, event, trace, ip, sym, dso, addr, symoff, srcline.
>           Field list can be prepended with the type, trace, sw or hw,
>           to indicate to which event type the field list applies.
>           e.g., -f sw:comm,tid,time,ip,sym  and -f trace:time,cpu,trace
> diff --git a/tools/perf/builtin-script.c b/tools/perf/builtin-script.c
> index 4484886..7a571fb 100644
> --- a/tools/perf/builtin-script.c
> +++ b/tools/perf/builtin-script.c
> @@ -43,6 +43,7 @@ enum perf_output_field {
>   	PERF_OUTPUT_DSO             = 1U << 9,
>   	PERF_OUTPUT_ADDR            = 1U << 10,
>   	PERF_OUTPUT_SYMOFFSET       = 1U << 11,
> +	PERF_OUTPUT_SRCLINE         = 1U << 12,
>   };
>
>   struct output_option {
> @@ -61,6 +62,7 @@ struct output_option {
>   	{.str = "dso",   .field = PERF_OUTPUT_DSO},
>   	{.str = "addr",  .field = PERF_OUTPUT_ADDR},
>   	{.str = "symoff", .field = PERF_OUTPUT_SYMOFFSET},
> +	{.str = "srcline", .field = PERF_OUTPUT_SRCLINE},
>   };
>
>   /* default set to maintain compatibility with current format */
> @@ -210,6 +212,11 @@ static int perf_evsel__check_attr(struct perf_evsel *evsel,
>   		       "to DSO.\n");
>   		return -EINVAL;
>   	}
> +	if (PRINT_FIELD(SRCLINE) && !PRINT_FIELD(IP)) {
> +		pr_err("Display of source line number requested but sample IP is not\n"
> +		       "selected. Hence, no address to lookup the source line number.\n");
> +		return -EINVAL;
> +	}
>
>   	if ((PRINT_FIELD(PID) || PRINT_FIELD(TID)) &&
>   		perf_evsel__check_stype(evsel, PERF_SAMPLE_TID, "TID",
> @@ -245,6 +252,9 @@ static void set_print_ip_opts(struct perf_event_attr *attr)
>
>   	if (PRINT_FIELD(SYMOFFSET))
>   		output[type].print_ip_opts |= PRINT_IP_OPT_SYMOFFSET;
> +
> +	if (PRINT_FIELD(SRCLINE))
> +		output[type].print_ip_opts |= PRINT_IP_OPT_SRCLINE;
>   }
>
>   /*
> diff --git a/tools/perf/util/map.c b/tools/perf/util/map.c
> index ef5bc91..9b9bd71 100644
> --- a/tools/perf/util/map.c
> +++ b/tools/perf/util/map.c
> @@ -11,6 +11,7 @@
>   #include "strlist.h"
>   #include "vdso.h"
>   #include "build-id.h"
> +#include "util.h"
>   #include <linux/string.h>
>
>   const char *map_type__name[MAP__NR_TYPES] = {
> @@ -252,6 +253,22 @@ size_t map__fprintf_dsoname(struct map *map, FILE *fp)
>   	return fprintf(fp, "%s", dsoname);
>   }
>
> +int map__fprintf_srcline(struct map *map, u64 addr, const char *prefix,
> +			 FILE *fp)
> +{
> +	char *srcline;
> +	int ret = 0;
> +
> +	if (map && map->dso) {
> +		srcline = get_srcline(map->dso,
> +				      map__rip_2objdump(map, addr));
> +		if (srcline != SRCLINE_UNKNOWN)
> +			ret = fprintf(fp, "%s%s", prefix, srcline);
> +		free_srcline(srcline);
> +	}
> +	return ret;
> +}
> +
>   /**
>    * map__rip_2objdump - convert symbol start address to objdump address.
>    * @map: memory map
> diff --git a/tools/perf/util/map.h b/tools/perf/util/map.h
> index e4e259c..18068c6 100644
> --- a/tools/perf/util/map.h
> +++ b/tools/perf/util/map.h
> @@ -103,6 +103,8 @@ struct map *map__clone(struct map *map);
>   int map__overlap(struct map *l, struct map *r);
>   size_t map__fprintf(struct map *map, FILE *fp);
>   size_t map__fprintf_dsoname(struct map *map, FILE *fp);
> +int map__fprintf_srcline(struct map *map, u64 addr, const char *prefix,
> +			 FILE *fp);
>
>   int map__load(struct map *map, symbol_filter_t filter);
>   struct symbol *map__find_symbol(struct map *map,
> diff --git a/tools/perf/util/session.c b/tools/perf/util/session.c
> index c236b38..e748f29 100644
> --- a/tools/perf/util/session.c
> +++ b/tools/perf/util/session.c
> @@ -1497,6 +1497,7 @@ void perf_evsel__print_ip(struct perf_evsel *evsel, struct perf_sample *sample,
>   	int print_dso = print_opts & PRINT_IP_OPT_DSO;
>   	int print_symoffset = print_opts & PRINT_IP_OPT_SYMOFFSET;
>   	int print_oneline = print_opts & PRINT_IP_OPT_ONELINE;
> +	int print_srcline = print_opts & PRINT_IP_OPT_SRCLINE;
>   	char s = print_oneline ? ' ' : '\t';
>
>   	if (symbol_conf.use_callchain && sample->callchain) {
> @@ -1546,6 +1547,10 @@ void perf_evsel__print_ip(struct perf_evsel *evsel, struct perf_sample *sample,
>   				printf(")");
>   			}
>
> +			if (print_srcline)
> +				map__fprintf_srcline(node->map, addr, "\n  ",
> +						     stdout);
> +
>   			if (!print_oneline)
>   				printf("\n");
>
> @@ -1575,6 +1580,9 @@ next:
>   			map__fprintf_dsoname(al->map, stdout);
>   			printf(")");
>   		}
> +
> +		if (print_srcline)
> +			map__fprintf_srcline(al->map, al->addr, "\n  ", stdout);
>   	}
>   }

Why newline followed by space?

Otherwise, Acked-by: David Ahern <dsahern@gmail.com>


  reply	other threads:[~2013-12-08 17:35 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 [this message]
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
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=52A4ADC8.3020202@gmail.com \
    --to=dsahern@gmail.com \
    --cc=a.p.zijlstra@chello.nl \
    --cc=acme@ghostprotocols.net \
    --cc=adrian.hunter@intel.com \
    --cc=ak@linux.intel.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