fsf_callg_bl.m 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. This table describes the call tree of the program, and was sorted by
  2. the total amount of time spent in each function and its children.
  3. Each entry in this table consists of several lines. The line with the
  4. index number at the left hand margin lists the current function.
  5. The lines above it list the functions that called this function,
  6. and the lines below it list the functions this one called.
  7. This line lists:
  8. index A unique number given to each element of the table.
  9. Index numbers are sorted numerically.
  10. The index number is printed next to every function name so
  11. it is easier to look up where the function is in the table.
  12. % time This is the percentage of the `total' time that was spent
  13. in this function and its children. Note that due to
  14. different viewpoints, functions excluded by options, etc,
  15. these numbers will NOT add up to 100%.
  16. self This is the total amount of time spent in this function.
  17. children This is the total amount of time propagated into this
  18. function by its children.
  19. called This is the number of times the function was called.
  20. If the function called itself recursively, the number
  21. only includes non-recursive calls, and is followed by
  22. a `+' and the number of recursive calls.
  23. name The name of the current function. The index number is
  24. printed after it. If the function is a member of a
  25. cycle, the cycle number is printed between the
  26. function's name and the index number.
  27. For the function's parents, the fields have the following meanings:
  28. self This is the amount of time that was propagated directly
  29. from the function into this parent.
  30. children This is the amount of time that was propagated from
  31. the function's children into this parent.
  32. called This is the number of times this parent called the
  33. function `/' the total number of times the function
  34. was called. Recursive calls to the function are not
  35. included in the number after the `/'.
  36. name This is the name of the parent. The parent's index
  37. number is printed after it. If the parent is a
  38. member of a cycle, the cycle number is printed between
  39. the name and the index number.
  40. If the parents of the function cannot be determined, the word
  41. `<spontaneous>' is printed in the `name' field, and all the other
  42. fields are blank.
  43. For the function's children, the fields have the following meanings:
  44. self This is the amount of time that was propagated directly
  45. from the child into the function.
  46. children This is the amount of time that was propagated from the
  47. child's children to the function.
  48. called This is the number of times the function called
  49. this child `/' the total number of times the child
  50. was called. Recursive calls by the child are not
  51. listed in the number after the `/'.
  52. name This is the name of the child. The child's index
  53. number is printed after it. If the child is a
  54. member of a cycle, the cycle number is printed
  55. between the name and the index number.
  56. If there are any cycles (circles) in the call graph, there is an
  57. entry for the cycle-as-a-whole. This entry shows who called the
  58. cycle (as parents) and the members of the cycle (as children.)
  59. The `+' recursive calls entry shows the number of function calls that
  60. were internal to the cycle, and the calls entry for each member shows,
  61. for that member, how many times it was called from other members of
  62. the cycle.
  63. Copyright (C) 2012-2022 Free Software Foundation, Inc.
  64. Copying and distribution of this file, with or without modification,
  65. are permitted in any medium without royalty provided the copyright
  66. notice and this notice are preserved.