Re: [RFC 0/6] perf probe: Attempt to improve C++ probing

2018-05-15 Thread Arnaldo Carvalho de Melo
Em Mon, May 14, 2018 at 10:31:07PM +0900, Masami Hiramatsu escreveu: > On Mon, 14 May 2018 12:19:34 +0800 Holger Freyther > wrote: > > ./perf probe -x . -V "std::vector::size%return" > OK, this series looks good to me :) > Acked-by: Masami

Re: [RFC 0/6] perf probe: Attempt to improve C++ probing

2018-05-15 Thread Arnaldo Carvalho de Melo
Em Mon, May 14, 2018 at 10:31:07PM +0900, Masami Hiramatsu escreveu: > On Mon, 14 May 2018 12:19:34 +0800 Holger Freyther > wrote: > > ./perf probe -x . -V "std::vector >::size%return" > OK, this series looks good to me :) > Acked-by: Masami Hiramatsu > for this series. > Arnaldo, could

Re: [RFC 0/6] perf probe: Attempt to improve C++ probing

2018-05-14 Thread Arnaldo Carvalho de Melo
Em Sun, May 13, 2018 at 07:06:11PM +0800, Holger Freyther escreveu: > From: Holger Hans Peter Freyther > Currently perf probe -x app --funcs will list and demangle C++ functions > but the other probe actions can't work with them. When asking probe to not > demangle it

Re: [RFC 0/6] perf probe: Attempt to improve C++ probing

2018-05-14 Thread Arnaldo Carvalho de Melo
Em Sun, May 13, 2018 at 07:06:11PM +0800, Holger Freyther escreveu: > From: Holger Hans Peter Freyther > Currently perf probe -x app --funcs will list and demangle C++ functions > but the other probe actions can't work with them. When asking probe to not > demangle it will not list any of the

Re: [RFC 0/6] perf probe: Attempt to improve C++ probing

2018-05-14 Thread Masami Hiramatsu
On Mon, 14 May 2018 12:19:34 +0800 Holger Freyther wrote: > From: Holger Hans Peter Freyther > > Currently perf probe -x app --funcs will list and demangle C++ functions > but the other probe actions can't work with them. When asking

Re: [RFC 0/6] perf probe: Attempt to improve C++ probing

2018-05-14 Thread Masami Hiramatsu
On Mon, 14 May 2018 12:19:34 +0800 Holger Freyther wrote: > From: Holger Hans Peter Freyther > > Currently perf probe -x app --funcs will list and demangle C++ functions > but the other probe actions can't work with them. When asking probe to not > demangle it will not list any of the

Re: [RFC 0/6] perf probe: Attempt to improve C++ probing

2018-05-14 Thread Masami Hiramatsu
Hi Holger, Thank you for your great work! On Mon, 14 May 2018 12:19:34 +0800 Holger Freyther wrote: > From: Holger Hans Peter Freyther > > Currently perf probe -x app --funcs will list and demangle C++ functions > but the other probe

Re: [RFC 0/6] perf probe: Attempt to improve C++ probing

2018-05-14 Thread Masami Hiramatsu
Hi Holger, Thank you for your great work! On Mon, 14 May 2018 12:19:34 +0800 Holger Freyther wrote: > From: Holger Hans Peter Freyther > > Currently perf probe -x app --funcs will list and demangle C++ functions > but the other probe actions can't work with them. When asking probe to not >

[RFC 0/6] perf probe: Attempt to improve C++ probing

2018-05-13 Thread Holger Freyther
From: Holger Hans Peter Freyther Currently perf probe -x app --funcs will list and demangle C++ functions but the other probe actions can't work with them. When asking probe to not demangle it will not list any of the application symbols creating the impression that

[RFC 0/6] perf probe: Attempt to improve C++ probing

2018-05-13 Thread Holger Freyther
From: Holger Hans Peter Freyther Currently perf probe -x app --funcs will list and demangle C++ functions but the other probe actions can't work with them. When asking probe to not demangle it will not list any of the application symbols creating the impression that there are no symbols at all.