Currently the data displayed on the callee tab is essentially a filtered excerpt from the function listing in the left column, ie in a calltree like below
f()
|_sleep(1)
|_h()
|_sleep(1)
you'd see something like
| Function |
Callee |
Calls |
Cum |
| f |
sleep |
2 |
2 |
|
h |
1 |
1 |
| h |
sleep |
2 |
1 |
in the callee tabs. I'd prefer to see call counts and timings restricted to the caller on the callees tab, ie
| Function |
Callee |
Calls |
Cum |
| f |
sleep |
1 |
1 |
|
h |
1 |
1 |
| h |
sleep |
1 |
1 |
The total timings of the callees would still be printed in the squaremap and the function listing. Thoughts?
Currently the data displayed on the callee tab is essentially a filtered excerpt from the function listing in the left column, ie in a calltree like below
you'd see something like
in the callee tabs. I'd prefer to see call counts and timings restricted to the caller on the callees tab, ie
The total timings of the callees would still be printed in the squaremap and the function listing. Thoughts?