The profiler / Usage |
The section "Call graph" provides for each function:
Column name | Description |
---|---|
index |
Each function has an index which appears at the beginning of its primary line. |
%total |
Percentage of time spent in this function. Includes time spent in subroutines called from this function. |
%self |
Percentage of time spent in this function excluding the time spent in subroutines called from this function. |
%child |
Percentage of time spent in the functions called from this function. |
calls/of |
Number of calls / Total number of calls |
name |
Function name |
Output example:
index %total %self %child calls/of name ... 1.29 0.10 1.18 1/2 <-- main 24.51 1.18 23.33 1/2 <-- fb [4] 25.80 1.29 24.51 2 *** fc 24.51 1.43 23.08 7/8 --> fa
Description: