Re: [PATCH v10 1/7] perf/core: Define the common branch type classification

2017-07-18 Thread Arnaldo Carvalho de Melo
Em Tue, Jul 18, 2017 at 07:31:37PM +1000, Michael Ellerman escreveu: > Jin Yao writes: > > > It is often useful to know the branch types while analyzing branch > > data. For example, a call is very different from a conditional branch. > > > > Currently we have to look it

Re: [PATCH v10 1/7] perf/core: Define the common branch type classification

2017-07-18 Thread Arnaldo Carvalho de Melo
Em Tue, Jul 18, 2017 at 07:31:37PM +1000, Michael Ellerman escreveu: > Jin Yao writes: > > > It is often useful to know the branch types while analyzing branch > > data. For example, a call is very different from a conditional branch. > > > > Currently we have to look it up in binary while the

Re: [PATCH v10 1/7] perf/core: Define the common branch type classification

2017-07-18 Thread Michael Ellerman
Jin Yao writes: > It is often useful to know the branch types while analyzing branch > data. For example, a call is very different from a conditional branch. > > Currently we have to look it up in binary while the binary may later > not be available and even the binary

Re: [PATCH v10 1/7] perf/core: Define the common branch type classification

2017-07-18 Thread Michael Ellerman
Jin Yao writes: > It is often useful to know the branch types while analyzing branch > data. For example, a call is very different from a conditional branch. > > Currently we have to look it up in binary while the binary may later > not be available and even the binary is available but user has

[PATCH v10 1/7] perf/core: Define the common branch type classification

2017-07-17 Thread Jin Yao
It is often useful to know the branch types while analyzing branch data. For example, a call is very different from a conditional branch. Currently we have to look it up in binary while the binary may later not be available and even the binary is available but user has to take some time. It is

[PATCH v10 1/7] perf/core: Define the common branch type classification

2017-07-17 Thread Jin Yao
It is often useful to know the branch types while analyzing branch data. For example, a call is very different from a conditional branch. Currently we have to look it up in binary while the binary may later not be available and even the binary is available but user has to take some time. It is