Advertisement
Guest User

Untitled

a guest
Oct 11th, 2018
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.24 KB | None | 0 0
  1. For the function's parents, the fields have the following meanings:
  2.  
  3. self This is the amount of time that was propagated directly
  4. from the function into this parent.
  5.  
  6. children This is the amount of time that was propagated from
  7. the function's children into this parent.
  8.  
  9. called This is the number of times this parent called the
  10. function `/' the total number of times the function
  11. was called. Recursive calls to the function are not
  12. included in the number after the `/'.
  13.  
  14. name This is the name of the parent. The parent's index
  15. number is printed after it. If the parent is a
  16. member of a cycle, the cycle number is printed between
  17. the name and the index number.
  18.  
  19. If the parents of the function cannot be determined, the word
  20. `<spontaneous>' is printed in the `name' field, and all the other
  21. fields are blank.
  22.  
  23. For the function's children, the fields have the following meanings:
  24.  
  25. self This is the amount of time that was propagated directly
  26. from the child into the function.
  27.  
  28. children This is the amount of time that was propagated from the
  29. child's children to the function.
  30.  
  31. called This is the number of times the function called
  32. this child `/' the total number of times the child
  33. was called. Recursive calls by the child are not
  34. listed in the number after the `/'.
  35.  
  36. name This is the name of the child. The child's index
  37. number is printed after it. If the child is a
  38. member of a cycle, the cycle number is printed
  39. between the name and the index number.
  40.  
  41. If there are any cycles (circles) in the call graph, there is an
  42. entry for the cycle-as-a-whole. This entry shows who called the
  43. cycle (as parents) and the members of the cycle (as children.)
  44. The `+' recursive calls entry shows the number of function calls that
  45. were internal to the cycle, and the calls entry for each member shows,
  46. for that member, how many times it was called from other members of
  47. the cycle.
  48.  
  49. ^L
  50. Index by function name
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement