Re: [PATCH] perf report: distinguish between inliners in the same function

2017-05-02 Thread Milian Wolff
On Tuesday, May 2, 2017 4:11:14 AM CEST Jin, Yao wrote: > SNIP > > > ~ > > $ perf report --stdio --inline --no-children > > Failed to open [ext4], continuing without symbols > > # To display the perf.data header info, please use --header/--header-only > > options. > > # > > # > > # Total Lost

Re: [PATCH] perf report: distinguish between inliners in the same function

2017-05-01 Thread Jin, Yao
SNIP ~ $ perf report --stdio --inline --no-children Failed to open [ext4], continuing without symbols # To display the perf.data header info, please use --header/--header-only options. # # # Total Lost Samples: 0 # # Samples: 499 of event 'cycles' # Event count (approx.): 329354953 # # Ove

[PATCH] perf report: distinguish between inliners in the same function

2017-04-27 Thread Milian Wolff
When different functions get inlined into the same function, we want to show them individually in the reports. But when we group by function, we would aggregate all IPs and would only keep the first one in that function. E.g. for C++ code like the following: ~ #include #include #include us