Re: [PATCH] perf annotate: Support to display the LBR data in tui mode

2018-02-26 Thread Arnaldo Carvalho de Melo
Em Sat, Feb 24, 2018 at 09:40:02AM +0800, Jin, Yao escreveu: > > > On 2/23/2018 11:29 PM, Arnaldo Carvalho de Melo wrote: > > Em Fri, Feb 23, 2018 at 09:25:00AM +0100, Peter Zijlstra escreveu: > > > On Fri, Feb 23, 2018 at 10:35:58PM +0800, Jin Yao wrote: > > > > Unlike the perf report interactiv

Re: [PATCH] perf annotate: Support to display the LBR data in tui mode

2018-02-23 Thread Jin, Yao
On 2/23/2018 11:29 PM, Arnaldo Carvalho de Melo wrote: Em Fri, Feb 23, 2018 at 09:25:00AM +0100, Peter Zijlstra escreveu: On Fri, Feb 23, 2018 at 10:35:58PM +0800, Jin Yao wrote: Unlike the perf report interactive annotate mode, the perf annotate doesn't display the LBR data. perf record -

Re: [PATCH] perf annotate: Support to display the LBR data in tui mode

2018-02-23 Thread Andi Kleen
On Fri, Feb 23, 2018 at 12:29:06PM -0300, Arnaldo Carvalho de Melo wrote: > Em Fri, Feb 23, 2018 at 09:25:00AM +0100, Peter Zijlstra escreveu: > > On Fri, Feb 23, 2018 at 10:35:58PM +0800, Jin Yao wrote: > > > Unlike the perf report interactive annotate mode, the perf annotate > > > doesn't display

Re: [PATCH] perf annotate: Support to display the LBR data in tui mode

2018-02-23 Thread Peter Zijlstra
On Fri, Feb 23, 2018 at 12:29:06PM -0300, Arnaldo Carvalho de Melo wrote: > Em Fri, Feb 23, 2018 at 09:25:00AM +0100, Peter Zijlstra escreveu: > > On Fri, Feb 23, 2018 at 10:35:58PM +0800, Jin Yao wrote: > > > Unlike the perf report interactive annotate mode, the perf annotate > > > doesn't display

Re: [PATCH] perf annotate: Support to display the LBR data in tui mode

2018-02-23 Thread Arnaldo Carvalho de Melo
Em Fri, Feb 23, 2018 at 09:25:00AM +0100, Peter Zijlstra escreveu: > On Fri, Feb 23, 2018 at 10:35:58PM +0800, Jin Yao wrote: > > Unlike the perf report interactive annotate mode, the perf annotate > > doesn't display the LBR data. > > perf record -b ... > > perf annotate function > > It should s

Re: [PATCH] perf annotate: Support to display the LBR data in tui mode

2018-02-23 Thread Jin, Yao
On 2/23/2018 4:25 PM, Peter Zijlstra wrote: On Fri, Feb 23, 2018 at 10:35:58PM +0800, Jin Yao wrote: Unlike the perf report interactive annotate mode, the perf annotate doesn't display the LBR data. perf record -b ... perf annotate function It should show IPC/cycle, but it doesn't. There i

Re: [PATCH] perf annotate: Support to display the LBR data in tui mode

2018-02-23 Thread Peter Zijlstra
On Fri, Feb 23, 2018 at 10:35:58PM +0800, Jin Yao wrote: > Unlike the perf report interactive annotate mode, the perf annotate > doesn't display the LBR data. > > perf record -b ... > perf annotate function > > It should show IPC/cycle, but it doesn't. There is far more than IPC/cycle for the LB

[PATCH] perf annotate: Support to display the LBR data in tui mode

2018-02-22 Thread Jin Yao
Unlike the perf report interactive annotate mode, the perf annotate doesn't display the LBR data. perf record -b ... perf annotate function It should show IPC/cycle, but it doesn't. This patch lets perf annotate support the displaying of LBR data. For example, perf annotate compute_flag Perce