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

2017-07-13 Thread Jin, Yao
Sure, thanks so much! On 7/13/2017 8:04 PM, Michael Ellerman wrote: 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

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

2017-07-13 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 t

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

2017-07-12 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 ver