From: Ingo Molnar <mingo@kernel.org>
To: Arnaldo Carvalho de Melo <acme@infradead.org>
Cc: linux-kernel@vger.kernel.org, David Ahern <dsahern@gmail.com>,
Frederic Weisbecker <fweisbec@gmail.com>,
Linus Torvalds <torvalds@linux-foundation.org>,
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>,
arnaldo.melo@gmail.com,
Arnaldo Carvalho de Melo <acme@redhat.com>
Subject: Re: [GIT PULL 00/13] Annotation improvements (G+ edition)
Date: Wed, 25 Apr 2012 09:05:38 +0200 [thread overview]
Message-ID: <20120425070537.GA29496@gmail.com> (raw)
In-Reply-To: <1334867644-2722-1-git-send-email-acme@infradead.org>
* Arnaldo Carvalho de Melo <acme@infradead.org> wrote:
> Hi Ingo,
>
> Please consider pulling,
>
> - Arnaldo
>
> The following changes since commit a385ec4f11bdcf81af094c03e2444ee9b7fad2e5:
>
> Merge tag 'v3.4-rc2' into perf/core (2012-04-13 09:57:10 +0200)
>
> are available in the git repository at:
>
>
> git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux perf/annotate
>
> for you to fetch changes up to 3f862fd076275c442dfe295eddb5650a6e0aecd4:
>
> perf annotate: Add missing jump variants (2012-04-19 17:10:12 -0300)
>
> ----------------------------------------------------------------
> Annotate improvements
>
> Now the default annotate browser uses a much more compact format, implementing
> suggestions made made by several people, notably Linus.
>
> Here is part of the new __list_del_entry annotation:
>
> __list_del_entry
> 8.47 │ push %rbp
> 8.47 │ mov (%rdi),%rdx
> 20.34 │ mov $0xdead000000100100,%rcx
> 3.39 │ mov 0x8(%rdi),%rax
> 0.00 │ mov %rsp,%rbp
> 1.69 │ cmp %rcx,%rdx
> 0.00 │ je 43
> 1.69 │ mov $0xdead000000200200,%rcx
> 3.39 │ cmp %rcx,%rax
> 0.00 │ je a3
> 5.08 │ mov (%rax),%r8
> 18.64 │ cmp %r8,%rdi
> 0.00 │ jne 84
> 1.69 │ mov 0x8(%rdx),%r8
> 25.42 │ cmp %r8,%rdi
> 0.00 │ jne 65
> 1.69 │ mov %rax,0x8(%rdx)
> 0.00 │ mov %rdx,(%rax)
> 0.00 │ leaveq
> 0.00 │ retq
> 0.00 │ 43: mov %rdx,%r8
> 0.00 │ mov %rdi,%rcx
> 0.00 │ mov $0xffffffff817cd6a8,%rdx
> 0.00 │ mov $0x31,%esi
> 0.00 │ mov $0xffffffff817cd6e0,%rdi
> 0.00 │ xor %eax,%eax
> 0.00 │ callq ffffffff8104eab0 <warn_slowpath_fmt>
> 0.00 │ leaveq
> 0.00 │ retq
> 0.00 │ 65: mov %rdi,%rcx
> 0.00 │ mov $0xffffffff817cd780,%rdx
> 0.00 │ mov $0x3a,%esi
> 0.00 │ mov $0xffffffff817cd6e0,%rdi
> 0.00 │ xor %eax,%eax
> 0.00 │ callq ffffffff8104eab0 <warn_slowpath_fmt>
> 0.00 │ leaveq
> 0.00 │ retq
>
> The infrastructure is there to provide formatters for any instruction,
> like the one I'll do for call functions to elide the address.
>
> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
>
> ----------------------------------------------------------------
> Arnaldo Carvalho de Melo (13):
> perf annotate: Rename objdump_line to disasm_line
> perf annotate: Parse instruction
> perf annotate browser: Use the disasm_line instruction name and operand fields
> perf annotate: Disassembler instruction parsing
> perf annotate: Parse call targets earlier
> perf annotate: Introduce scnprintf ins_ops method
> perf annotate browser: Rename disasm_line_rb_node
> perf symbols: Introduce symbol__size method
> perf annotate browser: Hide non jump target addresses in offset mode
> perf annotate browser: Align jump labels
> perf annotate browser: Make lines more compact
> perf annotate browser: Use a vertical line as percentage separator
> perf annotate: Add missing jump variants
>
> tools/perf/ui/browsers/annotate.c | 323 +++++++++++++++++++++----------------
> tools/perf/util/annotate.c | 263 +++++++++++++++++++++++++-----
> tools/perf/util/annotate.h | 32 +++-
> tools/perf/util/symbol.h | 5 +
> tools/perf/util/util.c | 10 ++
> tools/perf/util/util.h | 2 +
> 6 files changed, 446 insertions(+), 189 deletions(-)
The new output looks very (very!) nice - but it is still a bit
fragile:
earth5:~/tip/tools/perf> ./perf record -a sleep 1
[ perf record: Woken up 1 times to write data ]
[ perf record: Captured and wrote 0.092 MB perf.data (~4008 samples) ]
earth5:~/tip/tools/perf> ./perf annotate _int_free
perf: Segmentation fault
The crash happens here:
Program received signal SIGSEGV, Segmentation fault.
0x0000000000486cda in annotate_browser__mark_jump_targets (size=<optimized out>,
browser=<optimized out>) at ui/browsers/annotate.c:704
704 bdlt->jump_target = true;
But other than that the new assembly output is awesome :-)
Thanks,
Ingo
next prev parent reply other threads:[~2012-04-25 7:05 UTC|newest]
Thread overview: 22+ 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
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 [this message]
2012-04-25 10:31 ` Arnaldo Carvalho de Melo
2012-04-25 10:48 ` Arnaldo Carvalho de Melo
-- strict thread matches above, loose matches on Subject: below --
2012-04-23 1:17 George Spelvin
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=20120425070537.GA29496@gmail.com \
--to=mingo@kernel.org \
--cc=acme@infradead.org \
--cc=acme@redhat.com \
--cc=arnaldo.melo@gmail.com \
--cc=dsahern@gmail.com \
--cc=efault@gmx.de \
--cc=eranian@google.com \
--cc=fweisbec@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=namhyung@gmail.com \
--cc=paulus@samba.org \
--cc=peterz@infradead.org \
--cc=torvalds@linux-foundation.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