From: Namhyung Kim <namhyung.kim@lge.com>
To: Arnaldo Carvalho de Melo <acme@infradead.org>
Cc: Ingo Molnar <mingo@kernel.org>,
linux-kernel@vger.kernel.org,
Arnaldo Carvalho de Melo <acme@redhat.com>,
David Ahern <dsahern@gmail.com>,
Frederic Weisbecker <fweisbec@gmail.com>,
Mike Galbraith <efault@gmx.de>, Paul Mackerras <paulus@samba.org>,
Peter Zijlstra <peterz@infradead.org>,
Stephane Eranian <eranian@google.com>
Subject: Re: [PATCH 02/13] perf annotate: Parse instruction
Date: Mon, 23 Apr 2012 15:30:27 +0900 [thread overview]
Message-ID: <87ty0b3qpo.fsf@sejong.aot.lge.com> (raw)
In-Reply-To: <1334867644-2722-3-git-send-email-acme@infradead.org> (Arnaldo Carvalho de Melo's message of "Thu, 19 Apr 2012 17:33:57 -0300")
Hi,
On Thu, 19 Apr 2012 17:33:57 -0300, Arnaldo Carvalho de Melo wrote:
> From: Arnaldo Carvalho de Melo <acme@redhat.com>
>
> For lines with instructions find the name and operands, breaking those
> tokens for consumption by the browser.
>
Just a minor nit below...
> Cc: David Ahern <dsahern@gmail.com>
> Cc: Frederic Weisbecker <fweisbec@gmail.com>
> Cc: Mike Galbraith <efault@gmx.de>
> Cc: Namhyung Kim <namhyung@gmail.com>
> Cc: Paul Mackerras <paulus@samba.org>
> Cc: Peter Zijlstra <peterz@infradead.org>
> Cc: Stephane Eranian <eranian@google.com>
> Link: http://lkml.kernel.org/n/tip-6aazb9f5o3d9zi28e6rruv12@git.kernel.org
> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
> ---
> tools/perf/util/annotate.c | 65 +++++++++++++++++++++++++++++++++++++++++++-
> tools/perf/util/annotate.h | 3 ++
> 2 files changed, 67 insertions(+), 1 deletion(-)
>
> diff --git a/tools/perf/util/annotate.c b/tools/perf/util/annotate.c
> index ef1d57d..a72585a 100644
> --- a/tools/perf/util/annotate.c
> +++ b/tools/perf/util/annotate.c
> @@ -80,16 +80,50 @@ int symbol__inc_addr_samples(struct symbol *sym, struct map *map,
>
> static struct disasm_line *disasm_line__new(s64 offset, char *line, size_t privsize)
> {
> - struct disasm_line *dl = malloc(sizeof(*dl) + privsize);
> + struct disasm_line *dl = zalloc(sizeof(*dl) + privsize);
>
> if (dl != NULL) {
> dl->offset = offset;
> dl->line = strdup(line);
> if (dl->line == NULL)
> goto out_delete;
> +
> + if (offset != -1) {
To avoid deep nesting, how about this:
if (dl == NULL)
return NULL;
<snip>
if (offset == -1)
return dl;
Thanks,
Namhyung
> + char *name = dl->line, tmp;
> +
> + while (isspace(name[0]))
> + ++name;
> +
> + if (name[0] == '\0')
> + goto out_delete;
> +
> + dl->operands = name + 1;
> +
> + while (dl->operands[0] != '\0' &&
> + !isspace(dl->operands[0]))
> + ++dl->operands;
> +
> + tmp = dl->operands[0];
> + dl->operands[0] = '\0';
> + dl->name = strdup(name);
> +
> + if (dl->name == NULL)
> + goto out_free_line;
> +
> + dl->operands[0] = tmp;
> +
> + if (dl->operands[0] != '\0') {
> + dl->operands++;
> + while (isspace(dl->operands[0]))
> + ++dl->operands;
> + }
> + }
> }
>
> return dl;
> +
> +out_free_line:
> + free(dl->line);
> out_delete:
> free(dl);
> return NULL;
> @@ -98,6 +132,7 @@ out_delete:
> void disasm_line__free(struct disasm_line *dl)
> {
> free(dl->line);
> + free(dl->name);
> free(dl);
> }
>
> @@ -591,6 +626,34 @@ void disasm__purge(struct list_head *head)
> }
> }
>
> +static size_t disasm_line__fprintf(struct disasm_line *dl, FILE *fp)
> +{
> + size_t printed;
> +
> + if (dl->offset == -1)
> + return fprintf(fp, "%s\n", dl->line);
> +
> + printed = fprintf(fp, "%#" PRIx64 " %s", dl->offset, dl->name);
> +
> + if (dl->operands[0] != '\0') {
> + printed += fprintf(fp, "%.*s %s\n", 6 - (int)printed, " ",
> + dl->operands);
> + }
> +
> + return printed + fprintf(fp, "\n");
> +}
> +
> +size_t disasm__fprintf(struct list_head *head, FILE *fp)
> +{
> + struct disasm_line *pos;
> + size_t printed = 0;
> +
> + list_for_each_entry(pos, head, node)
> + printed += disasm_line__fprintf(pos, fp);
> +
> + return printed;
> +}
> +
> int symbol__tty_annotate(struct symbol *sym, struct map *map, int evidx,
> bool print_lines, bool full_paths, int min_pcnt,
> int max_lines)
> diff --git a/tools/perf/util/annotate.h b/tools/perf/util/annotate.h
> index 8bb68bb..dd7636d 100644
> --- a/tools/perf/util/annotate.h
> +++ b/tools/perf/util/annotate.h
> @@ -11,10 +11,13 @@ struct disasm_line {
> struct list_head node;
> s64 offset;
> char *line;
> + char *name;
> + char *operands;
> };
>
> void disasm_line__free(struct disasm_line *dl);
> struct disasm_line *disasm__get_next_ip_line(struct list_head *head, struct disasm_line *pos);
> +size_t disasm__fprintf(struct list_head *head, FILE *fp);
>
> struct sym_hist {
> u64 sum;
next prev parent reply other threads:[~2012-04-23 6:31 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-04-19 20:33 =?y?q?=5BGIT=20PULL=2000/13=5D=20Annotation=20improvements=20=28G+=20edition=29?= Arnaldo Carvalho de Melo
2012-04-19 20:33 ` [PATCH 01/13] perf annotate: Rename objdump_line to disasm_line Arnaldo Carvalho de Melo
2012-04-19 20:33 ` [PATCH 02/13] perf annotate: Parse instruction Arnaldo Carvalho de Melo
2012-04-19 23:55 ` David Ahern
2012-04-20 10:53 ` Arnaldo Carvalho de Melo
2012-04-23 6:30 ` Namhyung Kim [this message]
2012-04-19 20:33 ` [PATCH 03/13] perf annotate browser: Use the disasm_line instruction name and operand fields Arnaldo Carvalho de Melo
2012-04-19 20:33 ` [PATCH 04/13] perf annotate: Disassembler instruction parsing Arnaldo Carvalho de Melo
2012-04-19 20:34 ` [PATCH 05/13] perf annotate: Parse call targets earlier Arnaldo Carvalho de Melo
2012-04-19 20:34 ` [PATCH 06/13] perf annotate: Introduce scnprintf ins_ops method Arnaldo Carvalho de Melo
2012-04-19 20:34 ` [PATCH 07/13] perf annotate browser: Rename disasm_line_rb_node Arnaldo Carvalho de Melo
2012-04-19 20:34 ` [PATCH 08/13] perf symbols: Introduce symbol__size method Arnaldo Carvalho de Melo
2012-04-19 20:34 ` [PATCH 09/13] perf annotate browser: Hide non jump target addresses in offset mode Arnaldo Carvalho de Melo
2012-04-20 0:01 ` [GIT PULL 00/13] Annotation improvements (G+ edition) David Ahern
2012-04-20 10:51 ` Arnaldo Carvalho de Melo
2012-04-20 0:31 ` Linus Torvalds
2012-04-20 0:40 ` Linus Torvalds
2012-04-20 10:59 ` Arnaldo Carvalho de Melo
2012-04-25 7:05 ` Ingo Molnar
2012-04-25 10:31 ` Arnaldo Carvalho de Melo
2012-04-25 10:48 ` Arnaldo Carvalho de Melo
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=87ty0b3qpo.fsf@sejong.aot.lge.com \
--to=namhyung.kim@lge.com \
--cc=acme@infradead.org \
--cc=acme@redhat.com \
--cc=dsahern@gmail.com \
--cc=efault@gmx.de \
--cc=eranian@google.com \
--cc=fweisbec@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@kernel.org \
--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