5 The sum of self and descendents is the major sort
10 index the index of the function in the call graph
11 listing, as an aid to locating it (see below).
13 %time the percentage of the total time of the program
14 accounted for by this function and its
17 self the number of seconds spent in this function
21 the number of seconds spent in the descendents of
22 this function on behalf of this function.
24 called the number of times this function is called (other
25 than recursive calls).
27 self the number of times this function calls itself
30 name the name of the function, with an indication of
31 its membership in a cycle, if any.
33 index the index of the function in the call graph
34 listing, as an aid to locating it.
40 self* the number of seconds of this function's self time
41 which is due to calls from this parent.
44 the number of seconds of this function's
45 descendent time which is due to calls from this
48 called** the number of times this function is called by
49 this parent. This is the numerator of the
50 fraction which divides up the function's time to
53 total* the number of times this function was called by
54 all of its parents. This is the denominator of
55 the propagation fraction.
57 parents the name of this parent, with an indication of the
58 parent's membership in a cycle, if any.
60 index the index of this parent in the call graph
61 listing, as an aid in locating it.
67 self* the number of seconds of this child's self time
68 which is due to being called by this function.
71 the number of seconds of this child's descendent's
72 time which is due to being called by this
75 called** the number of times this child is called by this
76 function. This is the numerator of the
77 propagation fraction for this child.
79 total* the number of times this child is called by all
80 functions. This is the denominator of the
83 children the name of this child, and an indication of its
84 membership in a cycle, if any.
86 index the index of this child in the call graph listing,
87 as an aid to locating it.
91 * these fields are omitted for parents (or
92 children) in the same cycle as the function. If
93 the function (or child) is a member of a cycle,
94 the propagated times and propagation denominator
95 represent the self time and descendent time of the
98 ** static-only parents and children are indicated
104 the cycle as a whole is listed with the same
105 fields as a function entry. Below it are listed
106 the members of the cycle, and their contributions
107 to the time and call counts of the cycle.