bfd/
[binutils.git] / gprof / gprof.info
blobeb9943a75d7f1b73467568748663fd482382c5c5
1 This is gprof.info, produced by makeinfo version 4.8 from gprof.texi.
3 START-INFO-DIR-ENTRY
4 * gprof: (gprof).                Profiling your program's execution
5 END-INFO-DIR-ENTRY
7    This file documents the gprof profiler of the GNU system.
9    Copyright (C) 1988, 92, 97, 98, 99, 2000, 2001, 2003, 2007, 2008,
10 2009 Free Software Foundation, Inc.
12    Permission is granted to copy, distribute and/or modify this document
13 under the terms of the GNU Free Documentation License, Version 1.3 or
14 any later version published by the Free Software Foundation; with no
15 Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
16 Texts.  A copy of the license is included in the section entitled "GNU
17 Free Documentation License".
19 \x1f
20 File: gprof.info,  Node: Top,  Next: Introduction,  Up: (dir)
22 Profiling a Program: Where Does It Spend Its Time?
23 **************************************************
25 This manual describes the GNU profiler, `gprof', and how you can use it
26 to determine which parts of a program are taking most of the execution
27 time.  We assume that you know how to write, compile, and execute
28 programs.  GNU `gprof' was written by Jay Fenlason.
30    This manual is for `gprof' (GNU Binutils) version 2.20.
32    This document is distributed under the terms of the GNU Free
33 Documentation License version 1.3.  A copy of the license is included
34 in the section entitled "GNU Free Documentation License".
36 * Menu:
38 * Introduction::        What profiling means, and why it is useful.
40 * Compiling::           How to compile your program for profiling.
41 * Executing::           Executing your program to generate profile data
42 * Invoking::            How to run `gprof', and its options
44 * Output::              Interpreting `gprof''s output
46 * Inaccuracy::          Potential problems you should be aware of
47 * How do I?::           Answers to common questions
48 * Incompatibilities::   (between GNU `gprof' and Unix `gprof'.)
49 * Details::             Details of how profiling is done
50 * GNU Free Documentation License::  GNU Free Documentation License
52 \x1f
53 File: gprof.info,  Node: Introduction,  Next: Compiling,  Prev: Top,  Up: Top
55 1 Introduction to Profiling
56 ***************************
58 Profiling allows you to learn where your program spent its time and
59 which functions called which other functions while it was executing.
60 This information can show you which pieces of your program are slower
61 than you expected, and might be candidates for rewriting to make your
62 program execute faster.  It can also tell you which functions are being
63 called more or less often than you expected.  This may help you spot
64 bugs that had otherwise been unnoticed.
66    Since the profiler uses information collected during the actual
67 execution of your program, it can be used on programs that are too
68 large or too complex to analyze by reading the source.  However, how
69 your program is run will affect the information that shows up in the
70 profile data.  If you don't use some feature of your program while it
71 is being profiled, no profile information will be generated for that
72 feature.
74    Profiling has several steps:
76    * You must compile and link your program with profiling enabled.
77      *Note Compiling a Program for Profiling: Compiling.
79    * You must execute your program to generate a profile data file.
80      *Note Executing the Program: Executing.
82    * You must run `gprof' to analyze the profile data.  *Note `gprof'
83      Command Summary: Invoking.
85    The next three chapters explain these steps in greater detail.
87    Several forms of output are available from the analysis.
89    The "flat profile" shows how much time your program spent in each
90 function, and how many times that function was called.  If you simply
91 want to know which functions burn most of the cycles, it is stated
92 concisely here.  *Note The Flat Profile: Flat Profile.
94    The "call graph" shows, for each function, which functions called
95 it, which other functions it called, and how many times.  There is also
96 an estimate of how much time was spent in the subroutines of each
97 function.  This can suggest places where you might try to eliminate
98 function calls that use a lot of time.  *Note The Call Graph: Call
99 Graph.
101    The "annotated source" listing is a copy of the program's source
102 code, labeled with the number of times each line of the program was
103 executed.  *Note The Annotated Source Listing: Annotated Source.
105    To better understand how profiling works, you may wish to read a
106 description of its implementation.  *Note Implementation of Profiling:
107 Implementation.
109 \x1f
110 File: gprof.info,  Node: Compiling,  Next: Executing,  Prev: Introduction,  Up: Top
112 2 Compiling a Program for Profiling
113 ***********************************
115 The first step in generating profile information for your program is to
116 compile and link it with profiling enabled.
118    To compile a source file for profiling, specify the `-pg' option when
119 you run the compiler.  (This is in addition to the options you normally
120 use.)
122    To link the program for profiling, if you use a compiler such as `cc'
123 to do the linking, simply specify `-pg' in addition to your usual
124 options.  The same option, `-pg', alters either compilation or linking
125 to do what is necessary for profiling.  Here are examples:
127      cc -g -c myprog.c utils.c -pg
128      cc -o myprog myprog.o utils.o -pg
130    The `-pg' option also works with a command that both compiles and
131 links:
133      cc -o myprog myprog.c utils.c -g -pg
135    Note: The `-pg' option must be part of your compilation options as
136 well as your link options.  If it is not then no call-graph data will
137 be gathered and when you run `gprof' you will get an error message like
138 this:
140      gprof: gmon.out file is missing call-graph data
142    If you add the `-Q' switch to suppress the printing of the call
143 graph data you will still be able to see the time samples:
145      Flat profile:
147      Each sample counts as 0.01 seconds.
148        %   cumulative   self              self     total
149       time   seconds   seconds    calls  Ts/call  Ts/call  name
150       44.12      0.07     0.07                             zazLoop
151       35.29      0.14     0.06                             main
152       20.59      0.17     0.04                             bazMillion
154    If you run the linker `ld' directly instead of through a compiler
155 such as `cc', you may have to specify a profiling startup file
156 `gcrt0.o' as the first input file instead of the usual startup file
157 `crt0.o'.  In addition, you would probably want to specify the
158 profiling C library, `libc_p.a', by writing `-lc_p' instead of the
159 usual `-lc'.  This is not absolutely necessary, but doing this gives
160 you number-of-calls information for standard library functions such as
161 `read' and `open'.  For example:
163      ld -o myprog /lib/gcrt0.o myprog.o utils.o -lc_p
165    If you are running the program on a system which supports shared
166 libraries you may run into problems with the profiling support code in
167 a shared library being called before that library has been fully
168 initialised.  This is usually detected by the program encountering a
169 segmentation fault as soon as it is run.  The solution is to link
170 against a static version of the library containing the profiling
171 support code, which for `gcc' users can be done via the `-static' or
172 `-static-libgcc' command line option.  For example:
174      gcc -g -pg -static-libgcc myprog.c utils.c -o myprog
176    If you compile only some of the modules of the program with `-pg',
177 you can still profile the program, but you won't get complete
178 information about the modules that were compiled without `-pg'.  The
179 only information you get for the functions in those modules is the
180 total time spent in them; there is no record of how many times they
181 were called, or from where.  This will not affect the flat profile
182 (except that the `calls' field for the functions will be blank), but
183 will greatly reduce the usefulness of the call graph.
185    If you wish to perform line-by-line profiling you should use the
186 `gcov' tool instead of `gprof'.  See that tool's manual or info pages
187 for more details of how to do this.
189    Note, older versions of `gcc' produce line-by-line profiling
190 information that works with `gprof' rather than `gcov' so there is
191 still support for displaying this kind of information in `gprof'. *Note
192 Line-by-line Profiling: Line-by-line.
194    It also worth noting that `gcc' implements a
195 `-finstrument-functions' command line option which will insert calls to
196 special user supplied instrumentation routines at the entry and exit of
197 every function in their program.  This can be used to implement an
198 alternative profiling scheme.
200 \x1f
201 File: gprof.info,  Node: Executing,  Next: Invoking,  Prev: Compiling,  Up: Top
203 3 Executing the Program
204 ***********************
206 Once the program is compiled for profiling, you must run it in order to
207 generate the information that `gprof' needs.  Simply run the program as
208 usual, using the normal arguments, file names, etc.  The program should
209 run normally, producing the same output as usual.  It will, however, run
210 somewhat slower than normal because of the time spent collecting and
211 writing the profile data.
213    The way you run the program--the arguments and input that you give
214 it--may have a dramatic effect on what the profile information shows.
215 The profile data will describe the parts of the program that were
216 activated for the particular input you use.  For example, if the first
217 command you give to your program is to quit, the profile data will show
218 the time used in initialization and in cleanup, but not much else.
220    Your program will write the profile data into a file called
221 `gmon.out' just before exiting.  If there is already a file called
222 `gmon.out', its contents are overwritten.  There is currently no way to
223 tell the program to write the profile data under a different name, but
224 you can rename the file afterwards if you are concerned that it may be
225 overwritten.
227    In order to write the `gmon.out' file properly, your program must
228 exit normally: by returning from `main' or by calling `exit'.  Calling
229 the low-level function `_exit' does not write the profile data, and
230 neither does abnormal termination due to an unhandled signal.
232    The `gmon.out' file is written in the program's _current working
233 directory_ at the time it exits.  This means that if your program calls
234 `chdir', the `gmon.out' file will be left in the last directory your
235 program `chdir''d to.  If you don't have permission to write in this
236 directory, the file is not written, and you will get an error message.
238    Older versions of the GNU profiling library may also write a file
239 called `bb.out'.  This file, if present, contains an human-readable
240 listing of the basic-block execution counts.  Unfortunately, the
241 appearance of a human-readable `bb.out' means the basic-block counts
242 didn't get written into `gmon.out'.  The Perl script `bbconv.pl',
243 included with the `gprof' source distribution, will convert a `bb.out'
244 file into a format readable by `gprof'.  Invoke it like this:
246      bbconv.pl < bb.out > BH-DATA
248    This translates the information in `bb.out' into a form that `gprof'
249 can understand.  But you still need to tell `gprof' about the existence
250 of this translated information.  To do that, include BB-DATA on the
251 `gprof' command line, _along with `gmon.out'_, like this:
253      gprof OPTIONS EXECUTABLE-FILE gmon.out BB-DATA [YET-MORE-PROFILE-DATA-FILES...] [> OUTFILE]
255 \x1f
256 File: gprof.info,  Node: Invoking,  Next: Output,  Prev: Executing,  Up: Top
258 4 `gprof' Command Summary
259 *************************
261 After you have a profile data file `gmon.out', you can run `gprof' to
262 interpret the information in it.  The `gprof' program prints a flat
263 profile and a call graph on standard output.  Typically you would
264 redirect the output of `gprof' into a file with `>'.
266    You run `gprof' like this:
268      gprof OPTIONS [EXECUTABLE-FILE [PROFILE-DATA-FILES...]] [> OUTFILE]
270 Here square-brackets indicate optional arguments.
272    If you omit the executable file name, the file `a.out' is used.  If
273 you give no profile data file name, the file `gmon.out' is used.  If
274 any file is not in the proper format, or if the profile data file does
275 not appear to belong to the executable file, an error message is
276 printed.
278    You can give more than one profile data file by entering all their
279 names after the executable file name; then the statistics in all the
280 data files are summed together.
282    The order of these options does not matter.
284 * Menu:
286 * Output Options::      Controlling `gprof''s output style
287 * Analysis Options::    Controlling how `gprof' analyzes its data
288 * Miscellaneous Options::
289 * Deprecated Options::  Options you no longer need to use, but which
290                             have been retained for compatibility
291 * Symspecs::            Specifying functions to include or exclude
293 \x1f
294 File: gprof.info,  Node: Output Options,  Next: Analysis Options,  Up: Invoking
296 4.1 Output Options
297 ==================
299 These options specify which of several output formats `gprof' should
300 produce.
302    Many of these options take an optional "symspec" to specify
303 functions to be included or excluded.  These options can be specified
304 multiple times, with different symspecs, to include or exclude sets of
305 symbols.  *Note Symspecs: Symspecs.
307    Specifying any of these options overrides the default (`-p -q'),
308 which prints a flat profile and call graph analysis for all functions.
310 `-A[SYMSPEC]'
311 `--annotated-source[=SYMSPEC]'
312      The `-A' option causes `gprof' to print annotated source code.  If
313      SYMSPEC is specified, print output only for matching symbols.
314      *Note The Annotated Source Listing: Annotated Source.
316 `-b'
317 `--brief'
318      If the `-b' option is given, `gprof' doesn't print the verbose
319      blurbs that try to explain the meaning of all of the fields in the
320      tables.  This is useful if you intend to print out the output, or
321      are tired of seeing the blurbs.
323 `-C[SYMSPEC]'
324 `--exec-counts[=SYMSPEC]'
325      The `-C' option causes `gprof' to print a tally of functions and
326      the number of times each was called.  If SYMSPEC is specified,
327      print tally only for matching symbols.
329      If the profile data file contains basic-block count records,
330      specifying the `-l' option, along with `-C', will cause basic-block
331      execution counts to be tallied and displayed.
333 `-i'
334 `--file-info'
335      The `-i' option causes `gprof' to display summary information
336      about the profile data file(s) and then exit.  The number of
337      histogram, call graph, and basic-block count records is displayed.
339 `-I DIRS'
340 `--directory-path=DIRS'
341      The `-I' option specifies a list of search directories in which to
342      find source files.  Environment variable GPROF_PATH can also be
343      used to convey this information.  Used mostly for annotated source
344      output.
346 `-J[SYMSPEC]'
347 `--no-annotated-source[=SYMSPEC]'
348      The `-J' option causes `gprof' not to print annotated source code.
349      If SYMSPEC is specified, `gprof' prints annotated source, but
350      excludes matching symbols.
352 `-L'
353 `--print-path'
354      Normally, source filenames are printed with the path component
355      suppressed.  The `-L' option causes `gprof' to print the full
356      pathname of source filenames, which is determined from symbolic
357      debugging information in the image file and is relative to the
358      directory in which the compiler was invoked.
360 `-p[SYMSPEC]'
361 `--flat-profile[=SYMSPEC]'
362      The `-p' option causes `gprof' to print a flat profile.  If
363      SYMSPEC is specified, print flat profile only for matching symbols.
364      *Note The Flat Profile: Flat Profile.
366 `-P[SYMSPEC]'
367 `--no-flat-profile[=SYMSPEC]'
368      The `-P' option causes `gprof' to suppress printing a flat profile.
369      If SYMSPEC is specified, `gprof' prints a flat profile, but
370      excludes matching symbols.
372 `-q[SYMSPEC]'
373 `--graph[=SYMSPEC]'
374      The `-q' option causes `gprof' to print the call graph analysis.
375      If SYMSPEC is specified, print call graph only for matching symbols
376      and their children.  *Note The Call Graph: Call Graph.
378 `-Q[SYMSPEC]'
379 `--no-graph[=SYMSPEC]'
380      The `-Q' option causes `gprof' to suppress printing the call graph.
381      If SYMSPEC is specified, `gprof' prints a call graph, but excludes
382      matching symbols.
384 `-t'
385 `--table-length=NUM'
386      The `-t' option causes the NUM most active source lines in each
387      source file to be listed when source annotation is enabled.  The
388      default is 10.
390 `-y'
391 `--separate-files'
392      This option affects annotated source output only.  Normally,
393      `gprof' prints annotated source files to standard-output.  If this
394      option is specified, annotated source for a file named
395      `path/FILENAME' is generated in the file `FILENAME-ann'.  If the
396      underlying file system would truncate `FILENAME-ann' so that it
397      overwrites the original `FILENAME', `gprof' generates annotated
398      source in the file `FILENAME.ann' instead (if the original file
399      name has an extension, that extension is _replaced_ with `.ann').
401 `-Z[SYMSPEC]'
402 `--no-exec-counts[=SYMSPEC]'
403      The `-Z' option causes `gprof' not to print a tally of functions
404      and the number of times each was called.  If SYMSPEC is specified,
405      print tally, but exclude matching symbols.
407 `-r'
408 `--function-ordering'
409      The `--function-ordering' option causes `gprof' to print a
410      suggested function ordering for the program based on profiling
411      data.  This option suggests an ordering which may improve paging,
412      tlb and cache behavior for the program on systems which support
413      arbitrary ordering of functions in an executable.
415      The exact details of how to force the linker to place functions in
416      a particular order is system dependent and out of the scope of this
417      manual.
419 `-R MAP_FILE'
420 `--file-ordering MAP_FILE'
421      The `--file-ordering' option causes `gprof' to print a suggested
422      .o link line ordering for the program based on profiling data.
423      This option suggests an ordering which may improve paging, tlb and
424      cache behavior for the program on systems which do not support
425      arbitrary ordering of functions in an executable.
427      Use of the `-a' argument is highly recommended with this option.
429      The MAP_FILE argument is a pathname to a file which provides
430      function name to object file mappings.  The format of the file is
431      similar to the output of the program `nm'.
433           c-parse.o:00000000 T yyparse
434           c-parse.o:00000004 C yyerrflag
435           c-lang.o:00000000 T maybe_objc_method_name
436           c-lang.o:00000000 T print_lang_statistics
437           c-lang.o:00000000 T recognize_objc_keyword
438           c-decl.o:00000000 T print_lang_identifier
439           c-decl.o:00000000 T print_lang_type
440           ...
442      To create a MAP_FILE with GNU `nm', type a command like `nm
443      --extern-only --defined-only -v --print-file-name program-name'.
445 `-T'
446 `--traditional'
447      The `-T' option causes `gprof' to print its output in
448      "traditional" BSD style.
450 `-w WIDTH'
451 `--width=WIDTH'
452      Sets width of output lines to WIDTH.  Currently only used when
453      printing the function index at the bottom of the call graph.
455 `-x'
456 `--all-lines'
457      This option affects annotated source output only.  By default,
458      only the lines at the beginning of a basic-block are annotated.
459      If this option is specified, every line in a basic-block is
460      annotated by repeating the annotation for the first line.  This
461      behavior is similar to `tcov''s `-a'.
463 `--demangle[=STYLE]'
464 `--no-demangle'
465      These options control whether C++ symbol names should be demangled
466      when printing output.  The default is to demangle symbols.  The
467      `--no-demangle' option may be used to turn off demangling.
468      Different compilers have different mangling styles.  The optional
469      demangling style argument can be used to choose an appropriate
470      demangling style for your compiler.
472 \x1f
473 File: gprof.info,  Node: Analysis Options,  Next: Miscellaneous Options,  Prev: Output Options,  Up: Invoking
475 4.2 Analysis Options
476 ====================
478 `-a'
479 `--no-static'
480      The `-a' option causes `gprof' to suppress the printing of
481      statically declared (private) functions.  (These are functions
482      whose names are not listed as global, and which are not visible
483      outside the file/function/block where they were defined.)  Time
484      spent in these functions, calls to/from them, etc., will all be
485      attributed to the function that was loaded directly before it in
486      the executable file.  This option affects both the flat profile
487      and the call graph.
489 `-c'
490 `--static-call-graph'
491      The `-c' option causes the call graph of the program to be
492      augmented by a heuristic which examines the text space of the
493      object file and identifies function calls in the binary machine
494      code.  Since normal call graph records are only generated when
495      functions are entered, this option identifies children that could
496      have been called, but never were.  Calls to functions that were
497      not compiled with profiling enabled are also identified, but only
498      if symbol table entries are present for them.  Calls to dynamic
499      library routines are typically _not_ found by this option.
500      Parents or children identified via this heuristic are indicated in
501      the call graph with call counts of `0'.
503 `-D'
504 `--ignore-non-functions'
505      The `-D' option causes `gprof' to ignore symbols which are not
506      known to be functions.  This option will give more accurate
507      profile data on systems where it is supported (Solaris and HPUX for
508      example).
510 `-k FROM/TO'
511      The `-k' option allows you to delete from the call graph any arcs
512      from symbols matching symspec FROM to those matching symspec TO.
514 `-l'
515 `--line'
516      The `-l' option enables line-by-line profiling, which causes
517      histogram hits to be charged to individual source code lines,
518      instead of functions.  This feature only works with programs
519      compiled by older versions of the `gcc' compiler.  Newer versions
520      of `gcc' are designed to work with the `gcov' tool instead.
522      If the program was compiled with basic-block counting enabled,
523      this option will also identify how many times each line of code
524      was executed.  While line-by-line profiling can help isolate where
525      in a large function a program is spending its time, it also
526      significantly increases the running time of `gprof', and magnifies
527      statistical inaccuracies.  *Note Statistical Sampling Error:
528      Sampling Error.
530 `-m NUM'
531 `--min-count=NUM'
532      This option affects execution count output only.  Symbols that are
533      executed less than NUM times are suppressed.
535 `-nSYMSPEC'
536 `--time=SYMSPEC'
537      The `-n' option causes `gprof', in its call graph analysis, to
538      only propagate times for symbols matching SYMSPEC.
540 `-NSYMSPEC'
541 `--no-time=SYMSPEC'
542      The `-n' option causes `gprof', in its call graph analysis, not to
543      propagate times for symbols matching SYMSPEC.
545 `-SFILENAME'
546 `--external-symbol-table=FILENAME'
547      The `-S' option causes `gprof' to read an external symbol table
548      file, such as `/proc/kallsyms', rather than read the symbol table
549      from the given object file (the default is `a.out'). This is useful
550      for profiling kernel modules.
552 `-z'
553 `--display-unused-functions'
554      If you give the `-z' option, `gprof' will mention all functions in
555      the flat profile, even those that were never called, and that had
556      no time spent in them.  This is useful in conjunction with the
557      `-c' option for discovering which routines were never called.
560 \x1f
561 File: gprof.info,  Node: Miscellaneous Options,  Next: Deprecated Options,  Prev: Analysis Options,  Up: Invoking
563 4.3 Miscellaneous Options
564 =========================
566 `-d[NUM]'
567 `--debug[=NUM]'
568      The `-d NUM' option specifies debugging options.  If NUM is not
569      specified, enable all debugging.  *Note Debugging `gprof':
570      Debugging.
572 `-h'
573 `--help'
574      The `-h' option prints command line usage.
576 `-ONAME'
577 `--file-format=NAME'
578      Selects the format of the profile data files.  Recognized formats
579      are `auto' (the default), `bsd', `4.4bsd', `magic', and `prof'
580      (not yet supported).
582 `-s'
583 `--sum'
584      The `-s' option causes `gprof' to summarize the information in the
585      profile data files it read in, and write out a profile data file
586      called `gmon.sum', which contains all the information from the
587      profile data files that `gprof' read in.  The file `gmon.sum' may
588      be one of the specified input files; the effect of this is to
589      merge the data in the other input files into `gmon.sum'.
591      Eventually you can run `gprof' again without `-s' to analyze the
592      cumulative data in the file `gmon.sum'.
594 `-v'
595 `--version'
596      The `-v' flag causes `gprof' to print the current version number,
597      and then exit.
600 \x1f
601 File: gprof.info,  Node: Deprecated Options,  Next: Symspecs,  Prev: Miscellaneous Options,  Up: Invoking
603 4.4 Deprecated Options
604 ======================
606      These options have been replaced with newer versions that use
607      symspecs.
609 `-e FUNCTION_NAME'
610      The `-e FUNCTION' option tells `gprof' to not print information
611      about the function FUNCTION_NAME (and its children...) in the call
612      graph.  The function will still be listed as a child of any
613      functions that call it, but its index number will be shown as
614      `[not printed]'.  More than one `-e' option may be given; only one
615      FUNCTION_NAME may be indicated with each `-e' option.
617 `-E FUNCTION_NAME'
618      The `-E FUNCTION' option works like the `-e' option, but time
619      spent in the function (and children who were not called from
620      anywhere else), will not be used to compute the
621      percentages-of-time for the call graph.  More than one `-E' option
622      may be given; only one FUNCTION_NAME may be indicated with each
623      `-E' option.
625 `-f FUNCTION_NAME'
626      The `-f FUNCTION' option causes `gprof' to limit the call graph to
627      the function FUNCTION_NAME and its children (and their
628      children...).  More than one `-f' option may be given; only one
629      FUNCTION_NAME may be indicated with each `-f' option.
631 `-F FUNCTION_NAME'
632      The `-F FUNCTION' option works like the `-f' option, but only time
633      spent in the function and its children (and their children...)
634      will be used to determine total-time and percentages-of-time for
635      the call graph.  More than one `-F' option may be given; only one
636      FUNCTION_NAME may be indicated with each `-F' option.  The `-F'
637      option overrides the `-E' option.
640    Note that only one function can be specified with each `-e', `-E',
641 `-f' or `-F' option.  To specify more than one function, use multiple
642 options.  For example, this command:
644      gprof -e boring -f foo -f bar myprogram > gprof.output
646 lists in the call graph all functions that were reached from either
647 `foo' or `bar' and were not reachable from `boring'.
649 \x1f
650 File: gprof.info,  Node: Symspecs,  Prev: Deprecated Options,  Up: Invoking
652 4.5 Symspecs
653 ============
655 Many of the output options allow functions to be included or excluded
656 using "symspecs" (symbol specifications), which observe the following
657 syntax:
659        filename_containing_a_dot
660      | funcname_not_containing_a_dot
661      | linenumber
662      | ( [ any_filename ] `:' ( any_funcname | linenumber ) )
664    Here are some sample symspecs:
666 `main.c'
667      Selects everything in file `main.c'--the dot in the string tells
668      `gprof' to interpret the string as a filename, rather than as a
669      function name.  To select a file whose name does not contain a
670      dot, a trailing colon should be specified.  For example, `odd:' is
671      interpreted as the file named `odd'.
673 `main'
674      Selects all functions named `main'.
676      Note that there may be multiple instances of the same function name
677      because some of the definitions may be local (i.e., static).
678      Unless a function name is unique in a program, you must use the
679      colon notation explained below to specify a function from a
680      specific source file.
682      Sometimes, function names contain dots.  In such cases, it is
683      necessary to add a leading colon to the name.  For example,
684      `:.mul' selects function `.mul'.
686      In some object file formats, symbols have a leading underscore.
687      `gprof' will normally not print these underscores.  When you name a
688      symbol in a symspec, you should type it exactly as `gprof' prints
689      it in its output.  For example, if the compiler produces a symbol
690      `_main' from your `main' function, `gprof' still prints it as
691      `main' in its output, so you should use `main' in symspecs.
693 `main.c:main'
694      Selects function `main' in file `main.c'.
696 `main.c:134'
697      Selects line 134 in file `main.c'.
699 \x1f
700 File: gprof.info,  Node: Output,  Next: Inaccuracy,  Prev: Invoking,  Up: Top
702 5 Interpreting `gprof''s Output
703 *******************************
705 `gprof' can produce several different output styles, the most important
706 of which are described below.  The simplest output styles (file
707 information, execution count, and function and file ordering) are not
708 described here, but are documented with the respective options that
709 trigger them.  *Note Output Options: Output Options.
711 * Menu:
713 * Flat Profile::        The flat profile shows how much time was spent
714                             executing directly in each function.
715 * Call Graph::          The call graph shows which functions called which
716                             others, and how much time each function used
717                             when its subroutine calls are included.
718 * Line-by-line::        `gprof' can analyze individual source code lines
719 * Annotated Source::    The annotated source listing displays source code
720                             labeled with execution counts
722 \x1f
723 File: gprof.info,  Node: Flat Profile,  Next: Call Graph,  Up: Output
725 5.1 The Flat Profile
726 ====================
728 The "flat profile" shows the total amount of time your program spent
729 executing each function.  Unless the `-z' option is given, functions
730 with no apparent time spent in them, and no apparent calls to them, are
731 not mentioned.  Note that if a function was not compiled for profiling,
732 and didn't run long enough to show up on the program counter histogram,
733 it will be indistinguishable from a function that was never called.
735    This is part of a flat profile for a small program:
737      Flat profile:
739      Each sample counts as 0.01 seconds.
740        %   cumulative   self              self     total
741       time   seconds   seconds    calls  ms/call  ms/call  name
742       33.34      0.02     0.02     7208     0.00     0.00  open
743       16.67      0.03     0.01      244     0.04     0.12  offtime
744       16.67      0.04     0.01        8     1.25     1.25  memccpy
745       16.67      0.05     0.01        7     1.43     1.43  write
746       16.67      0.06     0.01                             mcount
747        0.00      0.06     0.00      236     0.00     0.00  tzset
748        0.00      0.06     0.00      192     0.00     0.00  tolower
749        0.00      0.06     0.00       47     0.00     0.00  strlen
750        0.00      0.06     0.00       45     0.00     0.00  strchr
751        0.00      0.06     0.00        1     0.00    50.00  main
752        0.00      0.06     0.00        1     0.00     0.00  memcpy
753        0.00      0.06     0.00        1     0.00    10.11  print
754        0.00      0.06     0.00        1     0.00     0.00  profil
755        0.00      0.06     0.00        1     0.00    50.00  report
756      ...
758 The functions are sorted first by decreasing run-time spent in them,
759 then by decreasing number of calls, then alphabetically by name.  The
760 functions `mcount' and `profil' are part of the profiling apparatus and
761 appear in every flat profile; their time gives a measure of the amount
762 of overhead due to profiling.
764    Just before the column headers, a statement appears indicating how
765 much time each sample counted as.  This "sampling period" estimates the
766 margin of error in each of the time figures.  A time figure that is not
767 much larger than this is not reliable.  In this example, each sample
768 counted as 0.01 seconds, suggesting a 100 Hz sampling rate.  The
769 program's total execution time was 0.06 seconds, as indicated by the
770 `cumulative seconds' field.  Since each sample counted for 0.01
771 seconds, this means only six samples were taken during the run.  Two of
772 the samples occurred while the program was in the `open' function, as
773 indicated by the `self seconds' field.  Each of the other four samples
774 occurred one each in `offtime', `memccpy', `write', and `mcount'.
775 Since only six samples were taken, none of these values can be regarded
776 as particularly reliable.  In another run, the `self seconds' field for
777 `mcount' might well be `0.00' or `0.02'.  *Note Statistical Sampling
778 Error: Sampling Error, for a complete discussion.
780    The remaining functions in the listing (those whose `self seconds'
781 field is `0.00') didn't appear in the histogram samples at all.
782 However, the call graph indicated that they were called, so therefore
783 they are listed, sorted in decreasing order by the `calls' field.
784 Clearly some time was spent executing these functions, but the paucity
785 of histogram samples prevents any determination of how much time each
786 took.
788    Here is what the fields in each line mean:
790 `% time'
791      This is the percentage of the total execution time your program
792      spent in this function.  These should all add up to 100%.
794 `cumulative seconds'
795      This is the cumulative total number of seconds the computer spent
796      executing this functions, plus the time spent in all the functions
797      above this one in this table.
799 `self seconds'
800      This is the number of seconds accounted for by this function alone.
801      The flat profile listing is sorted first by this number.
803 `calls'
804      This is the total number of times the function was called.  If the
805      function was never called, or the number of times it was called
806      cannot be determined (probably because the function was not
807      compiled with profiling enabled), the "calls" field is blank.
809 `self ms/call'
810      This represents the average number of milliseconds spent in this
811      function per call, if this function is profiled.  Otherwise, this
812      field is blank for this function.
814 `total ms/call'
815      This represents the average number of milliseconds spent in this
816      function and its descendants per call, if this function is
817      profiled.  Otherwise, this field is blank for this function.  This
818      is the only field in the flat profile that uses call graph
819      analysis.
821 `name'
822      This is the name of the function.   The flat profile is sorted by
823      this field alphabetically after the "self seconds" and "calls"
824      fields are sorted.
826 \x1f
827 File: gprof.info,  Node: Call Graph,  Next: Line-by-line,  Prev: Flat Profile,  Up: Output
829 5.2 The Call Graph
830 ==================
832 The "call graph" shows how much time was spent in each function and its
833 children.  From this information, you can find functions that, while
834 they themselves may not have used much time, called other functions
835 that did use unusual amounts of time.
837    Here is a sample call from a small program.  This call came from the
838 same `gprof' run as the flat profile example in the previous section.
840      granularity: each sample hit covers 2 byte(s) for 20.00% of 0.05 seconds
842      index % time    self  children    called     name
843                                                       <spontaneous>
844      [1]    100.0    0.00    0.05                 start [1]
845                      0.00    0.05       1/1           main [2]
846                      0.00    0.00       1/2           on_exit [28]
847                      0.00    0.00       1/1           exit [59]
848      -----------------------------------------------
849                      0.00    0.05       1/1           start [1]
850      [2]    100.0    0.00    0.05       1         main [2]
851                      0.00    0.05       1/1           report [3]
852      -----------------------------------------------
853                      0.00    0.05       1/1           main [2]
854      [3]    100.0    0.00    0.05       1         report [3]
855                      0.00    0.03       8/8           timelocal [6]
856                      0.00    0.01       1/1           print [9]
857                      0.00    0.01       9/9           fgets [12]
858                      0.00    0.00      12/34          strncmp <cycle 1> [40]
859                      0.00    0.00       8/8           lookup [20]
860                      0.00    0.00       1/1           fopen [21]
861                      0.00    0.00       8/8           chewtime [24]
862                      0.00    0.00       8/16          skipspace [44]
863      -----------------------------------------------
864      [4]     59.8    0.01        0.02       8+472     <cycle 2 as a whole> [4]
865                      0.01        0.02     244+260         offtime <cycle 2> [7]
866                      0.00        0.00     236+1           tzset <cycle 2> [26]
867      -----------------------------------------------
869    The lines full of dashes divide this table into "entries", one for
870 each function.  Each entry has one or more lines.
872    In each entry, the primary line is the one that starts with an index
873 number in square brackets.  The end of this line says which function
874 the entry is for.  The preceding lines in the entry describe the
875 callers of this function and the following lines describe its
876 subroutines (also called "children" when we speak of the call graph).
878    The entries are sorted by time spent in the function and its
879 subroutines.
881    The internal profiling function `mcount' (*note The Flat Profile:
882 Flat Profile.) is never mentioned in the call graph.
884 * Menu:
886 * Primary::       Details of the primary line's contents.
887 * Callers::       Details of caller-lines' contents.
888 * Subroutines::   Details of subroutine-lines' contents.
889 * Cycles::        When there are cycles of recursion,
890                    such as `a' calls `b' calls `a'...
892 \x1f
893 File: gprof.info,  Node: Primary,  Next: Callers,  Up: Call Graph
895 5.2.1 The Primary Line
896 ----------------------
898 The "primary line" in a call graph entry is the line that describes the
899 function which the entry is about and gives the overall statistics for
900 this function.
902    For reference, we repeat the primary line from the entry for function
903 `report' in our main example, together with the heading line that shows
904 the names of the fields:
906      index  % time    self  children called     name
907      ...
908      [3]    100.0    0.00    0.05       1         report [3]
910    Here is what the fields in the primary line mean:
912 `index'
913      Entries are numbered with consecutive integers.  Each function
914      therefore has an index number, which appears at the beginning of
915      its primary line.
917      Each cross-reference to a function, as a caller or subroutine of
918      another, gives its index number as well as its name.  The index
919      number guides you if you wish to look for the entry for that
920      function.
922 `% time'
923      This is the percentage of the total time that was spent in this
924      function, including time spent in subroutines called from this
925      function.
927      The time spent in this function is counted again for the callers of
928      this function.  Therefore, adding up these percentages is
929      meaningless.
931 `self'
932      This is the total amount of time spent in this function.  This
933      should be identical to the number printed in the `seconds' field
934      for this function in the flat profile.
936 `children'
937      This is the total amount of time spent in the subroutine calls
938      made by this function.  This should be equal to the sum of all the
939      `self' and `children' entries of the children listed directly
940      below this function.
942 `called'
943      This is the number of times the function was called.
945      If the function called itself recursively, there are two numbers,
946      separated by a `+'.  The first number counts non-recursive calls,
947      and the second counts recursive calls.
949      In the example above, the function `report' was called once from
950      `main'.
952 `name'
953      This is the name of the current function.  The index number is
954      repeated after it.
956      If the function is part of a cycle of recursion, the cycle number
957      is printed between the function's name and the index number (*note
958      How Mutually Recursive Functions Are Described: Cycles.).  For
959      example, if function `gnurr' is part of cycle number one, and has
960      index number twelve, its primary line would be end like this:
962           gnurr <cycle 1> [12]
964 \x1f
965 File: gprof.info,  Node: Callers,  Next: Subroutines,  Prev: Primary,  Up: Call Graph
967 5.2.2 Lines for a Function's Callers
968 ------------------------------------
970 A function's entry has a line for each function it was called by.
971 These lines' fields correspond to the fields of the primary line, but
972 their meanings are different because of the difference in context.
974    For reference, we repeat two lines from the entry for the function
975 `report', the primary line and one caller-line preceding it, together
976 with the heading line that shows the names of the fields:
978      index  % time    self  children called     name
979      ...
980                      0.00    0.05       1/1           main [2]
981      [3]    100.0    0.00    0.05       1         report [3]
983    Here are the meanings of the fields in the caller-line for `report'
984 called from `main':
986 `self'
987      An estimate of the amount of time spent in `report' itself when it
988      was called from `main'.
990 `children'
991      An estimate of the amount of time spent in subroutines of `report'
992      when `report' was called from `main'.
994      The sum of the `self' and `children' fields is an estimate of the
995      amount of time spent within calls to `report' from `main'.
997 `called'
998      Two numbers: the number of times `report' was called from `main',
999      followed by the total number of non-recursive calls to `report'
1000      from all its callers.
1002 `name and index number'
1003      The name of the caller of `report' to which this line applies,
1004      followed by the caller's index number.
1006      Not all functions have entries in the call graph; some options to
1007      `gprof' request the omission of certain functions.  When a caller
1008      has no entry of its own, it still has caller-lines in the entries
1009      of the functions it calls.
1011      If the caller is part of a recursion cycle, the cycle number is
1012      printed between the name and the index number.
1014    If the identity of the callers of a function cannot be determined, a
1015 dummy caller-line is printed which has `<spontaneous>' as the "caller's
1016 name" and all other fields blank.  This can happen for signal handlers.
1018 \x1f
1019 File: gprof.info,  Node: Subroutines,  Next: Cycles,  Prev: Callers,  Up: Call Graph
1021 5.2.3 Lines for a Function's Subroutines
1022 ----------------------------------------
1024 A function's entry has a line for each of its subroutines--in other
1025 words, a line for each other function that it called.  These lines'
1026 fields correspond to the fields of the primary line, but their meanings
1027 are different because of the difference in context.
1029    For reference, we repeat two lines from the entry for the function
1030 `main', the primary line and a line for a subroutine, together with the
1031 heading line that shows the names of the fields:
1033      index  % time    self  children called     name
1034      ...
1035      [2]    100.0    0.00    0.05       1         main [2]
1036                      0.00    0.05       1/1           report [3]
1038    Here are the meanings of the fields in the subroutine-line for `main'
1039 calling `report':
1041 `self'
1042      An estimate of the amount of time spent directly within `report'
1043      when `report' was called from `main'.
1045 `children'
1046      An estimate of the amount of time spent in subroutines of `report'
1047      when `report' was called from `main'.
1049      The sum of the `self' and `children' fields is an estimate of the
1050      total time spent in calls to `report' from `main'.
1052 `called'
1053      Two numbers, the number of calls to `report' from `main' followed
1054      by the total number of non-recursive calls to `report'.  This
1055      ratio is used to determine how much of `report''s `self' and
1056      `children' time gets credited to `main'.  *Note Estimating
1057      `children' Times: Assumptions.
1059 `name'
1060      The name of the subroutine of `main' to which this line applies,
1061      followed by the subroutine's index number.
1063      If the caller is part of a recursion cycle, the cycle number is
1064      printed between the name and the index number.
1066 \x1f
1067 File: gprof.info,  Node: Cycles,  Prev: Subroutines,  Up: Call Graph
1069 5.2.4 How Mutually Recursive Functions Are Described
1070 ----------------------------------------------------
1072 The graph may be complicated by the presence of "cycles of recursion"
1073 in the call graph.  A cycle exists if a function calls another function
1074 that (directly or indirectly) calls (or appears to call) the original
1075 function.  For example: if `a' calls `b', and `b' calls `a', then `a'
1076 and `b' form a cycle.
1078    Whenever there are call paths both ways between a pair of functions,
1079 they belong to the same cycle.  If `a' and `b' call each other and `b'
1080 and `c' call each other, all three make one cycle.  Note that even if
1081 `b' only calls `a' if it was not called from `a', `gprof' cannot
1082 determine this, so `a' and `b' are still considered a cycle.
1084    The cycles are numbered with consecutive integers.  When a function
1085 belongs to a cycle, each time the function name appears in the call
1086 graph it is followed by `<cycle NUMBER>'.
1088    The reason cycles matter is that they make the time values in the
1089 call graph paradoxical.  The "time spent in children" of `a' should
1090 include the time spent in its subroutine `b' and in `b''s
1091 subroutines--but one of `b''s subroutines is `a'!  How much of `a''s
1092 time should be included in the children of `a', when `a' is indirectly
1093 recursive?
1095    The way `gprof' resolves this paradox is by creating a single entry
1096 for the cycle as a whole.  The primary line of this entry describes the
1097 total time spent directly in the functions of the cycle.  The
1098 "subroutines" of the cycle are the individual functions of the cycle,
1099 and all other functions that were called directly by them.  The
1100 "callers" of the cycle are the functions, outside the cycle, that
1101 called functions in the cycle.
1103    Here is an example portion of a call graph which shows a cycle
1104 containing functions `a' and `b'.  The cycle was entered by a call to
1105 `a' from `main'; both `a' and `b' called `c'.
1107      index  % time    self  children called     name
1108      ----------------------------------------
1109                       1.77        0    1/1        main [2]
1110      [3]     91.71    1.77        0    1+5    <cycle 1 as a whole> [3]
1111                       1.02        0    3          b <cycle 1> [4]
1112                       0.75        0    2          a <cycle 1> [5]
1113      ----------------------------------------
1114                                        3          a <cycle 1> [5]
1115      [4]     52.85    1.02        0    0      b <cycle 1> [4]
1116                                        2          a <cycle 1> [5]
1117                          0        0    3/6        c [6]
1118      ----------------------------------------
1119                       1.77        0    1/1        main [2]
1120                                        2          b <cycle 1> [4]
1121      [5]     38.86    0.75        0    1      a <cycle 1> [5]
1122                                        3          b <cycle 1> [4]
1123                          0        0    3/6        c [6]
1124      ----------------------------------------
1126 (The entire call graph for this program contains in addition an entry
1127 for `main', which calls `a', and an entry for `c', with callers `a' and
1128 `b'.)
1130      index  % time    self  children called     name
1131                                                   <spontaneous>
1132      [1]    100.00       0     1.93    0      start [1]
1133                       0.16     1.77    1/1        main [2]
1134      ----------------------------------------
1135                       0.16     1.77    1/1        start [1]
1136      [2]    100.00    0.16     1.77    1      main [2]
1137                       1.77        0    1/1        a <cycle 1> [5]
1138      ----------------------------------------
1139                       1.77        0    1/1        main [2]
1140      [3]     91.71    1.77        0    1+5    <cycle 1 as a whole> [3]
1141                       1.02        0    3          b <cycle 1> [4]
1142                       0.75        0    2          a <cycle 1> [5]
1143                          0        0    6/6        c [6]
1144      ----------------------------------------
1145                                        3          a <cycle 1> [5]
1146      [4]     52.85    1.02        0    0      b <cycle 1> [4]
1147                                        2          a <cycle 1> [5]
1148                          0        0    3/6        c [6]
1149      ----------------------------------------
1150                       1.77        0    1/1        main [2]
1151                                        2          b <cycle 1> [4]
1152      [5]     38.86    0.75        0    1      a <cycle 1> [5]
1153                                        3          b <cycle 1> [4]
1154                          0        0    3/6        c [6]
1155      ----------------------------------------
1156                          0        0    3/6        b <cycle 1> [4]
1157                          0        0    3/6        a <cycle 1> [5]
1158      [6]      0.00       0        0    6      c [6]
1159      ----------------------------------------
1161    The `self' field of the cycle's primary line is the total time spent
1162 in all the functions of the cycle.  It equals the sum of the `self'
1163 fields for the individual functions in the cycle, found in the entry in
1164 the subroutine lines for these functions.
1166    The `children' fields of the cycle's primary line and subroutine
1167 lines count only subroutines outside the cycle.  Even though `a' calls
1168 `b', the time spent in those calls to `b' is not counted in `a''s
1169 `children' time.  Thus, we do not encounter the problem of what to do
1170 when the time in those calls to `b' includes indirect recursive calls
1171 back to `a'.
1173    The `children' field of a caller-line in the cycle's entry estimates
1174 the amount of time spent _in the whole cycle_, and its other
1175 subroutines, on the times when that caller called a function in the
1176 cycle.
1178    The `called' field in the primary line for the cycle has two numbers:
1179 first, the number of times functions in the cycle were called by
1180 functions outside the cycle; second, the number of times they were
1181 called by functions in the cycle (including times when a function in
1182 the cycle calls itself).  This is a generalization of the usual split
1183 into non-recursive and recursive calls.
1185    The `called' field of a subroutine-line for a cycle member in the
1186 cycle's entry says how many time that function was called from
1187 functions in the cycle.  The total of all these is the second number in
1188 the primary line's `called' field.
1190    In the individual entry for a function in a cycle, the other
1191 functions in the same cycle can appear as subroutines and as callers.
1192 These lines show how many times each function in the cycle called or
1193 was called from each other function in the cycle.  The `self' and
1194 `children' fields in these lines are blank because of the difficulty of
1195 defining meanings for them when recursion is going on.
1197 \x1f
1198 File: gprof.info,  Node: Line-by-line,  Next: Annotated Source,  Prev: Call Graph,  Up: Output
1200 5.3 Line-by-line Profiling
1201 ==========================
1203 `gprof''s `-l' option causes the program to perform "line-by-line"
1204 profiling.  In this mode, histogram samples are assigned not to
1205 functions, but to individual lines of source code.  This only works
1206 with programs compiled with older versions of the `gcc' compiler.
1207 Newer versions of `gcc' use a different program - `gcov' - to display
1208 line-by-line profiling information.
1210    With the older versions of `gcc' the program usually has to be
1211 compiled with a `-g' option, in addition to `-pg', in order to generate
1212 debugging symbols for tracking source code lines.  Note, in much older
1213 versions of `gcc' the program had to be compiled with the `-a' command
1214 line option as well.
1216    The flat profile is the most useful output table in line-by-line
1217 mode.  The call graph isn't as useful as normal, since the current
1218 version of `gprof' does not propagate call graph arcs from source code
1219 lines to the enclosing function.  The call graph does, however, show
1220 each line of code that called each function, along with a count.
1222    Here is a section of `gprof''s output, without line-by-line
1223 profiling.  Note that `ct_init' accounted for four histogram hits, and
1224 13327 calls to `init_block'.
1226      Flat profile:
1228      Each sample counts as 0.01 seconds.
1229        %   cumulative   self              self     total
1230       time   seconds   seconds    calls  us/call  us/call  name
1231       30.77      0.13     0.04     6335     6.31     6.31  ct_init
1234                      Call graph (explanation follows)
1237      granularity: each sample hit covers 4 byte(s) for 7.69% of 0.13 seconds
1239      index % time    self  children    called     name
1241                      0.00    0.00       1/13496       name_too_long
1242                      0.00    0.00      40/13496       deflate
1243                      0.00    0.00     128/13496       deflate_fast
1244                      0.00    0.00   13327/13496       ct_init
1245      [7]      0.0    0.00    0.00   13496         init_block
1247    Now let's look at some of `gprof''s output from the same program run,
1248 this time with line-by-line profiling enabled.  Note that `ct_init''s
1249 four histogram hits are broken down into four lines of source code--one
1250 hit occurred on each of lines 349, 351, 382 and 385.  In the call graph,
1251 note how `ct_init''s 13327 calls to `init_block' are broken down into
1252 one call from line 396, 3071 calls from line 384, 3730 calls from line
1253 385, and 6525 calls from 387.
1255      Flat profile:
1257      Each sample counts as 0.01 seconds.
1258        %   cumulative   self
1259       time   seconds   seconds    calls  name
1260        7.69      0.10     0.01           ct_init (trees.c:349)
1261        7.69      0.11     0.01           ct_init (trees.c:351)
1262        7.69      0.12     0.01           ct_init (trees.c:382)
1263        7.69      0.13     0.01           ct_init (trees.c:385)
1266                      Call graph (explanation follows)
1269      granularity: each sample hit covers 4 byte(s) for 7.69% of 0.13 seconds
1271        % time    self  children    called     name
1273                  0.00    0.00       1/13496       name_too_long (gzip.c:1440)
1274                  0.00    0.00       1/13496       deflate (deflate.c:763)
1275                  0.00    0.00       1/13496       ct_init (trees.c:396)
1276                  0.00    0.00       2/13496       deflate (deflate.c:727)
1277                  0.00    0.00       4/13496       deflate (deflate.c:686)
1278                  0.00    0.00       5/13496       deflate (deflate.c:675)
1279                  0.00    0.00      12/13496       deflate (deflate.c:679)
1280                  0.00    0.00      16/13496       deflate (deflate.c:730)
1281                  0.00    0.00     128/13496       deflate_fast (deflate.c:654)
1282                  0.00    0.00    3071/13496       ct_init (trees.c:384)
1283                  0.00    0.00    3730/13496       ct_init (trees.c:385)
1284                  0.00    0.00    6525/13496       ct_init (trees.c:387)
1285      [6]  0.0    0.00    0.00   13496         init_block (trees.c:408)
1287 \x1f
1288 File: gprof.info,  Node: Annotated Source,  Prev: Line-by-line,  Up: Output
1290 5.4 The Annotated Source Listing
1291 ================================
1293 `gprof''s `-A' option triggers an annotated source listing, which lists
1294 the program's source code, each function labeled with the number of
1295 times it was called.  You may also need to specify the `-I' option, if
1296 `gprof' can't find the source code files.
1298    With older versions of `gcc' compiling with `gcc ... -g -pg -a'
1299 augments your program with basic-block counting code, in addition to
1300 function counting code.  This enables `gprof' to determine how many
1301 times each line of code was executed.  With newer versions of `gcc'
1302 support for displaying basic-block counts is provided by the `gcov'
1303 program.
1305    For example, consider the following function, taken from gzip, with
1306 line numbers added:
1308       1 ulg updcrc(s, n)
1309       2     uch *s;
1310       3     unsigned n;
1311       4 {
1312       5     register ulg c;
1313       6
1314       7     static ulg crc = (ulg)0xffffffffL;
1315       8
1316       9     if (s == NULL) {
1317      10         c = 0xffffffffL;
1318      11     } else {
1319      12         c = crc;
1320      13         if (n) do {
1321      14             c = crc_32_tab[...];
1322      15         } while (--n);
1323      16     }
1324      17     crc = c;
1325      18     return c ^ 0xffffffffL;
1326      19 }
1328    `updcrc' has at least five basic-blocks.  One is the function
1329 itself.  The `if' statement on line 9 generates two more basic-blocks,
1330 one for each branch of the `if'.  A fourth basic-block results from the
1331 `if' on line 13, and the contents of the `do' loop form the fifth
1332 basic-block.  The compiler may also generate additional basic-blocks to
1333 handle various special cases.
1335    A program augmented for basic-block counting can be analyzed with
1336 `gprof -l -A'.  The `-x' option is also helpful, to ensure that each
1337 line of code is labeled at least once.  Here is `updcrc''s annotated
1338 source listing for a sample `gzip' run:
1340                      ulg updcrc(s, n)
1341                          uch *s;
1342                          unsigned n;
1343                  2 ->{
1344                          register ulg c;
1346                          static ulg crc = (ulg)0xffffffffL;
1348                  2 ->    if (s == NULL) {
1349                  1 ->        c = 0xffffffffL;
1350                  1 ->    } else {
1351                  1 ->        c = crc;
1352                  1 ->        if (n) do {
1353              26312 ->            c = crc_32_tab[...];
1354      26312,1,26311 ->        } while (--n);
1355                          }
1356                  2 ->    crc = c;
1357                  2 ->    return c ^ 0xffffffffL;
1358                  2 ->}
1360    In this example, the function was called twice, passing once through
1361 each branch of the `if' statement.  The body of the `do' loop was
1362 executed a total of 26312 times.  Note how the `while' statement is
1363 annotated.  It began execution 26312 times, once for each iteration
1364 through the loop.  One of those times (the last time) it exited, while
1365 it branched back to the beginning of the loop 26311 times.
1367 \x1f
1368 File: gprof.info,  Node: Inaccuracy,  Next: How do I?,  Prev: Output,  Up: Top
1370 6 Inaccuracy of `gprof' Output
1371 ******************************
1373 * Menu:
1375 * Sampling Error::      Statistical margins of error
1376 * Assumptions::         Estimating children times
1378 \x1f
1379 File: gprof.info,  Node: Sampling Error,  Next: Assumptions,  Up: Inaccuracy
1381 6.1 Statistical Sampling Error
1382 ==============================
1384 The run-time figures that `gprof' gives you are based on a sampling
1385 process, so they are subject to statistical inaccuracy.  If a function
1386 runs only a small amount of time, so that on the average the sampling
1387 process ought to catch that function in the act only once, there is a
1388 pretty good chance it will actually find that function zero times, or
1389 twice.
1391    By contrast, the number-of-calls and basic-block figures are derived
1392 by counting, not sampling.  They are completely accurate and will not
1393 vary from run to run if your program is deterministic.
1395    The "sampling period" that is printed at the beginning of the flat
1396 profile says how often samples are taken.  The rule of thumb is that a
1397 run-time figure is accurate if it is considerably bigger than the
1398 sampling period.
1400    The actual amount of error can be predicted.  For N samples, the
1401 _expected_ error is the square-root of N.  For example, if the sampling
1402 period is 0.01 seconds and `foo''s run-time is 1 second, N is 100
1403 samples (1 second/0.01 seconds), sqrt(N) is 10 samples, so the expected
1404 error in `foo''s run-time is 0.1 seconds (10*0.01 seconds), or ten
1405 percent of the observed value.  Again, if the sampling period is 0.01
1406 seconds and `bar''s run-time is 100 seconds, N is 10000 samples,
1407 sqrt(N) is 100 samples, so the expected error in `bar''s run-time is 1
1408 second, or one percent of the observed value.  It is likely to vary
1409 this much _on the average_ from one profiling run to the next.
1410 (_Sometimes_ it will vary more.)
1412    This does not mean that a small run-time figure is devoid of
1413 information.  If the program's _total_ run-time is large, a small
1414 run-time for one function does tell you that that function used an
1415 insignificant fraction of the whole program's time.  Usually this means
1416 it is not worth optimizing.
1418    One way to get more accuracy is to give your program more (but
1419 similar) input data so it will take longer.  Another way is to combine
1420 the data from several runs, using the `-s' option of `gprof'.  Here is
1421 how:
1423   1. Run your program once.
1425   2. Issue the command `mv gmon.out gmon.sum'.
1427   3. Run your program again, the same as before.
1429   4. Merge the new data in `gmon.out' into `gmon.sum' with this command:
1431           gprof -s EXECUTABLE-FILE gmon.out gmon.sum
1433   5. Repeat the last two steps as often as you wish.
1435   6. Analyze the cumulative data using this command:
1437           gprof EXECUTABLE-FILE gmon.sum > OUTPUT-FILE
1439 \x1f
1440 File: gprof.info,  Node: Assumptions,  Prev: Sampling Error,  Up: Inaccuracy
1442 6.2 Estimating `children' Times
1443 ===============================
1445 Some of the figures in the call graph are estimates--for example, the
1446 `children' time values and all the time figures in caller and
1447 subroutine lines.
1449    There is no direct information about these measurements in the
1450 profile data itself.  Instead, `gprof' estimates them by making an
1451 assumption about your program that might or might not be true.
1453    The assumption made is that the average time spent in each call to
1454 any function `foo' is not correlated with who called `foo'.  If `foo'
1455 used 5 seconds in all, and 2/5 of the calls to `foo' came from `a',
1456 then `foo' contributes 2 seconds to `a''s `children' time, by
1457 assumption.
1459    This assumption is usually true enough, but for some programs it is
1460 far from true.  Suppose that `foo' returns very quickly when its
1461 argument is zero; suppose that `a' always passes zero as an argument,
1462 while other callers of `foo' pass other arguments.  In this program,
1463 all the time spent in `foo' is in the calls from callers other than `a'.
1464 But `gprof' has no way of knowing this; it will blindly and incorrectly
1465 charge 2 seconds of time in `foo' to the children of `a'.
1467    We hope some day to put more complete data into `gmon.out', so that
1468 this assumption is no longer needed, if we can figure out how.  For the
1469 novice, the estimated figures are usually more useful than misleading.
1471 \x1f
1472 File: gprof.info,  Node: How do I?,  Next: Incompatibilities,  Prev: Inaccuracy,  Up: Top
1474 7 Answers to Common Questions
1475 *****************************
1477 How can I get more exact information about hot spots in my program?
1478      Looking at the per-line call counts only tells part of the story.
1479      Because `gprof' can only report call times and counts by function,
1480      the best way to get finer-grained information on where the program
1481      is spending its time is to re-factor large functions into sequences
1482      of calls to smaller ones.  Beware however that this can introduce
1483      artificial hot spots since compiling with `-pg' adds a significant
1484      overhead to function calls.  An alternative solution is to use a
1485      non-intrusive profiler, e.g. oprofile.
1487 How do I find which lines in my program were executed the most times?
1488      Use the `gcov' program.
1490 How do I find which lines in my program called a particular function?
1491      Use `gprof -l' and lookup the function in the call graph.  The
1492      callers will be broken down by function and line number.
1494 How do I analyze a program that runs for less than a second?
1495      Try using a shell script like this one:
1497           for i in `seq 1 100`; do
1498             fastprog
1499             mv gmon.out gmon.out.$i
1500           done
1502           gprof -s fastprog gmon.out.*
1504           gprof fastprog gmon.sum
1506      If your program is completely deterministic, all the call counts
1507      will be simple multiples of 100 (i.e., a function called once in
1508      each run will appear with a call count of 100).
1511 \x1f
1512 File: gprof.info,  Node: Incompatibilities,  Next: Details,  Prev: How do I?,  Up: Top
1514 8 Incompatibilities with Unix `gprof'
1515 *************************************
1517 GNU `gprof' and Berkeley Unix `gprof' use the same data file
1518 `gmon.out', and provide essentially the same information.  But there
1519 are a few differences.
1521    * GNU `gprof' uses a new, generalized file format with support for
1522      basic-block execution counts and non-realtime histograms.  A magic
1523      cookie and version number allows `gprof' to easily identify new
1524      style files.  Old BSD-style files can still be read.  *Note
1525      Profiling Data File Format: File Format.
1527    * For a recursive function, Unix `gprof' lists the function as a
1528      parent and as a child, with a `calls' field that lists the number
1529      of recursive calls.  GNU `gprof' omits these lines and puts the
1530      number of recursive calls in the primary line.
1532    * When a function is suppressed from the call graph with `-e', GNU
1533      `gprof' still lists it as a subroutine of functions that call it.
1535    * GNU `gprof' accepts the `-k' with its argument in the form
1536      `from/to', instead of `from to'.
1538    * In the annotated source listing, if there are multiple basic
1539      blocks on the same line, GNU `gprof' prints all of their counts,
1540      separated by commas.
1542    * The blurbs, field widths, and output formats are different.  GNU
1543      `gprof' prints blurbs after the tables, so that you can see the
1544      tables without skipping the blurbs.
1546 \x1f
1547 File: gprof.info,  Node: Details,  Next: GNU Free Documentation License,  Prev: Incompatibilities,  Up: Top
1549 9 Details of Profiling
1550 **********************
1552 * Menu:
1554 * Implementation::      How a program collects profiling information
1555 * File Format::         Format of `gmon.out' files
1556 * Internals::           `gprof''s internal operation
1557 * Debugging::           Using `gprof''s `-d' option
1559 \x1f
1560 File: gprof.info,  Node: Implementation,  Next: File Format,  Up: Details
1562 9.1 Implementation of Profiling
1563 ===============================
1565 Profiling works by changing how every function in your program is
1566 compiled so that when it is called, it will stash away some information
1567 about where it was called from.  From this, the profiler can figure out
1568 what function called it, and can count how many times it was called.
1569 This change is made by the compiler when your program is compiled with
1570 the `-pg' option, which causes every function to call `mcount' (or
1571 `_mcount', or `__mcount', depending on the OS and compiler) as one of
1572 its first operations.
1574    The `mcount' routine, included in the profiling library, is
1575 responsible for recording in an in-memory call graph table both its
1576 parent routine (the child) and its parent's parent.  This is typically
1577 done by examining the stack frame to find both the address of the
1578 child, and the return address in the original parent.  Since this is a
1579 very machine-dependent operation, `mcount' itself is typically a short
1580 assembly-language stub routine that extracts the required information,
1581 and then calls `__mcount_internal' (a normal C function) with two
1582 arguments--`frompc' and `selfpc'.  `__mcount_internal' is responsible
1583 for maintaining the in-memory call graph, which records `frompc',
1584 `selfpc', and the number of times each of these call arcs was traversed.
1586    GCC Version 2 provides a magical function
1587 (`__builtin_return_address'), which allows a generic `mcount' function
1588 to extract the required information from the stack frame.  However, on
1589 some architectures, most notably the SPARC, using this builtin can be
1590 very computationally expensive, and an assembly language version of
1591 `mcount' is used for performance reasons.
1593    Number-of-calls information for library routines is collected by
1594 using a special version of the C library.  The programs in it are the
1595 same as in the usual C library, but they were compiled with `-pg'.  If
1596 you link your program with `gcc ... -pg', it automatically uses the
1597 profiling version of the library.
1599    Profiling also involves watching your program as it runs, and
1600 keeping a histogram of where the program counter happens to be every
1601 now and then.  Typically the program counter is looked at around 100
1602 times per second of run time, but the exact frequency may vary from
1603 system to system.
1605    This is done is one of two ways.  Most UNIX-like operating systems
1606 provide a `profil()' system call, which registers a memory array with
1607 the kernel, along with a scale factor that determines how the program's
1608 address space maps into the array.  Typical scaling values cause every
1609 2 to 8 bytes of address space to map into a single array slot.  On
1610 every tick of the system clock (assuming the profiled program is
1611 running), the value of the program counter is examined and the
1612 corresponding slot in the memory array is incremented.  Since this is
1613 done in the kernel, which had to interrupt the process anyway to handle
1614 the clock interrupt, very little additional system overhead is required.
1616    However, some operating systems, most notably Linux 2.0 (and
1617 earlier), do not provide a `profil()' system call.  On such a system,
1618 arrangements are made for the kernel to periodically deliver a signal
1619 to the process (typically via `setitimer()'), which then performs the
1620 same operation of examining the program counter and incrementing a slot
1621 in the memory array.  Since this method requires a signal to be
1622 delivered to user space every time a sample is taken, it uses
1623 considerably more overhead than kernel-based profiling.  Also, due to
1624 the added delay required to deliver the signal, this method is less
1625 accurate as well.
1627    A special startup routine allocates memory for the histogram and
1628 either calls `profil()' or sets up a clock signal handler.  This
1629 routine (`monstartup') can be invoked in several ways.  On Linux
1630 systems, a special profiling startup file `gcrt0.o', which invokes
1631 `monstartup' before `main', is used instead of the default `crt0.o'.
1632 Use of this special startup file is one of the effects of using `gcc
1633 ... -pg' to link.  On SPARC systems, no special startup files are used.
1634 Rather, the `mcount' routine, when it is invoked for the first time
1635 (typically when `main' is called), calls `monstartup'.
1637    If the compiler's `-a' option was used, basic-block counting is also
1638 enabled.  Each object file is then compiled with a static array of
1639 counts, initially zero.  In the executable code, every time a new
1640 basic-block begins (i.e., when an `if' statement appears), an extra
1641 instruction is inserted to increment the corresponding count in the
1642 array.  At compile time, a paired array was constructed that recorded
1643 the starting address of each basic-block.  Taken together, the two
1644 arrays record the starting address of every basic-block, along with the
1645 number of times it was executed.
1647    The profiling library also includes a function (`mcleanup') which is
1648 typically registered using `atexit()' to be called as the program
1649 exits, and is responsible for writing the file `gmon.out'.  Profiling
1650 is turned off, various headers are output, and the histogram is
1651 written, followed by the call-graph arcs and the basic-block counts.
1653    The output from `gprof' gives no indication of parts of your program
1654 that are limited by I/O or swapping bandwidth.  This is because samples
1655 of the program counter are taken at fixed intervals of the program's
1656 run time.  Therefore, the time measurements in `gprof' output say
1657 nothing about time that your program was not running.  For example, a
1658 part of the program that creates so much data that it cannot all fit in
1659 physical memory at once may run very slowly due to thrashing, but
1660 `gprof' will say it uses little time.  On the other hand, sampling by
1661 run time has the advantage that the amount of load due to other users
1662 won't directly affect the output you get.
1664 \x1f
1665 File: gprof.info,  Node: File Format,  Next: Internals,  Prev: Implementation,  Up: Details
1667 9.2 Profiling Data File Format
1668 ==============================
1670 The old BSD-derived file format used for profile data does not contain a
1671 magic cookie that allows to check whether a data file really is a
1672 `gprof' file.  Furthermore, it does not provide a version number, thus
1673 rendering changes to the file format almost impossible.  GNU `gprof'
1674 uses a new file format that provides these features.  For backward
1675 compatibility, GNU `gprof' continues to support the old BSD-derived
1676 format, but not all features are supported with it.  For example,
1677 basic-block execution counts cannot be accommodated by the old file
1678 format.
1680    The new file format is defined in header file `gmon_out.h'.  It
1681 consists of a header containing the magic cookie and a version number,
1682 as well as some spare bytes available for future extensions.  All data
1683 in a profile data file is in the native format of the target for which
1684 the profile was collected.  GNU `gprof' adapts automatically to the
1685 byte-order in use.
1687    In the new file format, the header is followed by a sequence of
1688 records.  Currently, there are three different record types: histogram
1689 records, call-graph arc records, and basic-block execution count
1690 records.  Each file can contain any number of each record type.  When
1691 reading a file, GNU `gprof' will ensure records of the same type are
1692 compatible with each other and compute the union of all records.  For
1693 example, for basic-block execution counts, the union is simply the sum
1694 of all execution counts for each basic-block.
1696 9.2.1 Histogram Records
1697 -----------------------
1699 Histogram records consist of a header that is followed by an array of
1700 bins.  The header contains the text-segment range that the histogram
1701 spans, the size of the histogram in bytes (unlike in the old BSD
1702 format, this does not include the size of the header), the rate of the
1703 profiling clock, and the physical dimension that the bin counts
1704 represent after being scaled by the profiling clock rate.  The physical
1705 dimension is specified in two parts: a long name of up to 15 characters
1706 and a single character abbreviation.  For example, a histogram
1707 representing real-time would specify the long name as "seconds" and the
1708 abbreviation as "s".  This feature is useful for architectures that
1709 support performance monitor hardware (which, fortunately, is becoming
1710 increasingly common).  For example, under DEC OSF/1, the "uprofile"
1711 command can be used to produce a histogram of, say, instruction cache
1712 misses.  In this case, the dimension in the histogram header could be
1713 set to "i-cache misses" and the abbreviation could be set to "1"
1714 (because it is simply a count, not a physical dimension).  Also, the
1715 profiling rate would have to be set to 1 in this case.
1717    Histogram bins are 16-bit numbers and each bin represent an equal
1718 amount of text-space.  For example, if the text-segment is one thousand
1719 bytes long and if there are ten bins in the histogram, each bin
1720 represents one hundred bytes.
1722 9.2.2 Call-Graph Records
1723 ------------------------
1725 Call-graph records have a format that is identical to the one used in
1726 the BSD-derived file format.  It consists of an arc in the call graph
1727 and a count indicating the number of times the arc was traversed during
1728 program execution.  Arcs are specified by a pair of addresses: the
1729 first must be within caller's function and the second must be within
1730 the callee's function.  When performing profiling at the function
1731 level, these addresses can point anywhere within the respective
1732 function.  However, when profiling at the line-level, it is better if
1733 the addresses are as close to the call-site/entry-point as possible.
1734 This will ensure that the line-level call-graph is able to identify
1735 exactly which line of source code performed calls to a function.
1737 9.2.3 Basic-Block Execution Count Records
1738 -----------------------------------------
1740 Basic-block execution count records consist of a header followed by a
1741 sequence of address/count pairs.  The header simply specifies the
1742 length of the sequence.  In an address/count pair, the address
1743 identifies a basic-block and the count specifies the number of times
1744 that basic-block was executed.  Any address within the basic-address can
1745 be used.
1747 \x1f
1748 File: gprof.info,  Node: Internals,  Next: Debugging,  Prev: File Format,  Up: Details
1750 9.3 `gprof''s Internal Operation
1751 ================================
1753 Like most programs, `gprof' begins by processing its options.  During
1754 this stage, it may building its symspec list (`sym_ids.c:sym_id_add'),
1755 if options are specified which use symspecs.  `gprof' maintains a
1756 single linked list of symspecs, which will eventually get turned into
1757 12 symbol tables, organized into six include/exclude pairs--one pair
1758 each for the flat profile (INCL_FLAT/EXCL_FLAT), the call graph arcs
1759 (INCL_ARCS/EXCL_ARCS), printing in the call graph
1760 (INCL_GRAPH/EXCL_GRAPH), timing propagation in the call graph
1761 (INCL_TIME/EXCL_TIME), the annotated source listing
1762 (INCL_ANNO/EXCL_ANNO), and the execution count listing
1763 (INCL_EXEC/EXCL_EXEC).
1765    After option processing, `gprof' finishes building the symspec list
1766 by adding all the symspecs in `default_excluded_list' to the exclude
1767 lists EXCL_TIME and EXCL_GRAPH, and if line-by-line profiling is
1768 specified, EXCL_FLAT as well.  These default excludes are not added to
1769 EXCL_ANNO, EXCL_ARCS, and EXCL_EXEC.
1771    Next, the BFD library is called to open the object file, verify that
1772 it is an object file, and read its symbol table (`core.c:core_init'),
1773 using `bfd_canonicalize_symtab' after mallocing an appropriately sized
1774 array of symbols.  At this point, function mappings are read (if the
1775 `--file-ordering' option has been specified), and the core text space
1776 is read into memory (if the `-c' option was given).
1778    `gprof''s own symbol table, an array of Sym structures, is now built.
1779 This is done in one of two ways, by one of two routines, depending on
1780 whether line-by-line profiling (`-l' option) has been enabled.  For
1781 normal profiling, the BFD canonical symbol table is scanned.  For
1782 line-by-line profiling, every text space address is examined, and a new
1783 symbol table entry gets created every time the line number changes.  In
1784 either case, two passes are made through the symbol table--one to count
1785 the size of the symbol table required, and the other to actually read
1786 the symbols.  In between the two passes, a single array of type `Sym'
1787 is created of the appropriate length.  Finally,
1788 `symtab.c:symtab_finalize' is called to sort the symbol table and
1789 remove duplicate entries (entries with the same memory address).
1791    The symbol table must be a contiguous array for two reasons.  First,
1792 the `qsort' library function (which sorts an array) will be used to
1793 sort the symbol table.  Also, the symbol lookup routine
1794 (`symtab.c:sym_lookup'), which finds symbols based on memory address,
1795 uses a binary search algorithm which requires the symbol table to be a
1796 sorted array.  Function symbols are indicated with an `is_func' flag.
1797 Line number symbols have no special flags set.  Additionally, a symbol
1798 can have an `is_static' flag to indicate that it is a local symbol.
1800    With the symbol table read, the symspecs can now be translated into
1801 Syms (`sym_ids.c:sym_id_parse').  Remember that a single symspec can
1802 match multiple symbols.  An array of symbol tables (`syms') is created,
1803 each entry of which is a symbol table of Syms to be included or
1804 excluded from a particular listing.  The master symbol table and the
1805 symspecs are examined by nested loops, and every symbol that matches a
1806 symspec is inserted into the appropriate syms table.  This is done
1807 twice, once to count the size of each required symbol table, and again
1808 to build the tables, which have been malloced between passes.  From now
1809 on, to determine whether a symbol is on an include or exclude symspec
1810 list, `gprof' simply uses its standard symbol lookup routine on the
1811 appropriate table in the `syms' array.
1813    Now the profile data file(s) themselves are read
1814 (`gmon_io.c:gmon_out_read'), first by checking for a new-style
1815 `gmon.out' header, then assuming this is an old-style BSD `gmon.out' if
1816 the magic number test failed.
1818    New-style histogram records are read by `hist.c:hist_read_rec'.  For
1819 the first histogram record, allocate a memory array to hold all the
1820 bins, and read them in.  When multiple profile data files (or files
1821 with multiple histogram records) are read, the memory ranges of each
1822 pair of histogram records must be either equal, or non-overlapping.
1823 For each pair of histogram records, the resolution (memory region size
1824 divided by the number of bins) must be the same.  The time unit must be
1825 the same for all histogram records. If the above containts are met, all
1826 histograms for the same memory range are merged.
1828    As each call graph record is read (`call_graph.c:cg_read_rec'), the
1829 parent and child addresses are matched to symbol table entries, and a
1830 call graph arc is created by `cg_arcs.c:arc_add', unless the arc fails
1831 a symspec check against INCL_ARCS/EXCL_ARCS.  As each arc is added, a
1832 linked list is maintained of the parent's child arcs, and of the child's
1833 parent arcs.  Both the child's call count and the arc's call count are
1834 incremented by the record's call count.
1836    Basic-block records are read (`basic_blocks.c:bb_read_rec'), but
1837 only if line-by-line profiling has been selected.  Each basic-block
1838 address is matched to a corresponding line symbol in the symbol table,
1839 and an entry made in the symbol's bb_addr and bb_calls arrays.  Again,
1840 if multiple basic-block records are present for the same address, the
1841 call counts are cumulative.
1843    A gmon.sum file is dumped, if requested (`gmon_io.c:gmon_out_write').
1845    If histograms were present in the data files, assign them to symbols
1846 (`hist.c:hist_assign_samples') by iterating over all the sample bins
1847 and assigning them to symbols.  Since the symbol table is sorted in
1848 order of ascending memory addresses, we can simple follow along in the
1849 symbol table as we make our pass over the sample bins.  This step
1850 includes a symspec check against INCL_FLAT/EXCL_FLAT.  Depending on the
1851 histogram scale factor, a sample bin may span multiple symbols, in
1852 which case a fraction of the sample count is allocated to each symbol,
1853 proportional to the degree of overlap.  This effect is rare for normal
1854 profiling, but overlaps are more common during line-by-line profiling,
1855 and can cause each of two adjacent lines to be credited with half a
1856 hit, for example.
1858    If call graph data is present, `cg_arcs.c:cg_assemble' is called.
1859 First, if `-c' was specified, a machine-dependent routine (`find_call')
1860 scans through each symbol's machine code, looking for subroutine call
1861 instructions, and adding them to the call graph with a zero call count.
1862 A topological sort is performed by depth-first numbering all the
1863 symbols (`cg_dfn.c:cg_dfn'), so that children are always numbered less
1864 than their parents, then making a array of pointers into the symbol
1865 table and sorting it into numerical order, which is reverse topological
1866 order (children appear before parents).  Cycles are also detected at
1867 this point, all members of which are assigned the same topological
1868 number.  Two passes are now made through this sorted array of symbol
1869 pointers.  The first pass, from end to beginning (parents to children),
1870 computes the fraction of child time to propagate to each parent and a
1871 print flag.  The print flag reflects symspec handling of
1872 INCL_GRAPH/EXCL_GRAPH, with a parent's include or exclude (print or no
1873 print) property being propagated to its children, unless they
1874 themselves explicitly appear in INCL_GRAPH or EXCL_GRAPH.  A second
1875 pass, from beginning to end (children to parents) actually propagates
1876 the timings along the call graph, subject to a check against
1877 INCL_TIME/EXCL_TIME.  With the print flag, fractions, and timings now
1878 stored in the symbol structures, the topological sort array is now
1879 discarded, and a new array of pointers is assembled, this time sorted
1880 by propagated time.
1882    Finally, print the various outputs the user requested, which is now
1883 fairly straightforward.  The call graph (`cg_print.c:cg_print') and
1884 flat profile (`hist.c:hist_print') are regurgitations of values already
1885 computed.  The annotated source listing
1886 (`basic_blocks.c:print_annotated_source') uses basic-block information,
1887 if present, to label each line of code with call counts, otherwise only
1888 the function call counts are presented.
1890    The function ordering code is marginally well documented in the
1891 source code itself (`cg_print.c').  Basically, the functions with the
1892 most use and the most parents are placed first, followed by other
1893 functions with the most use, followed by lower use functions, followed
1894 by unused functions at the end.
1896 \x1f
1897 File: gprof.info,  Node: Debugging,  Prev: Internals,  Up: Details
1899 9.4 Debugging `gprof'
1900 =====================
1902 If `gprof' was compiled with debugging enabled, the `-d' option
1903 triggers debugging output (to stdout) which can be helpful in
1904 understanding its operation.  The debugging number specified is
1905 interpreted as a sum of the following options:
1907 2 - Topological sort
1908      Monitor depth-first numbering of symbols during call graph analysis
1910 4 - Cycles
1911      Shows symbols as they are identified as cycle heads
1913 16 - Tallying
1914      As the call graph arcs are read, show each arc and how the total
1915      calls to each function are tallied
1917 32 - Call graph arc sorting
1918      Details sorting individual parents/children within each call graph
1919      entry
1921 64 - Reading histogram and call graph records
1922      Shows address ranges of histograms as they are read, and each call
1923      graph arc
1925 128 - Symbol table
1926      Reading, classifying, and sorting the symbol table from the object
1927      file.  For line-by-line profiling (`-l' option), also shows line
1928      numbers being assigned to memory addresses.
1930 256 - Static call graph
1931      Trace operation of `-c' option
1933 512 - Symbol table and arc table lookups
1934      Detail operation of lookup routines
1936 1024 - Call graph propagation
1937      Shows how function times are propagated along the call graph
1939 2048 - Basic-blocks
1940      Shows basic-block records as they are read from profile data (only
1941      meaningful with `-l' option)
1943 4096 - Symspecs
1944      Shows symspec-to-symbol pattern matching operation
1946 8192 - Annotate source
1947      Tracks operation of `-A' option
1949 \x1f
1950 File: gprof.info,  Node: GNU Free Documentation License,  Prev: Details,  Up: Top
1952 Appendix A GNU Free Documentation License
1953 *****************************************
1955                      Version 1.3, 3 November 2008
1957      Copyright (C) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc.
1958      `http://fsf.org/'
1960      Everyone is permitted to copy and distribute verbatim copies
1961      of this license document, but changing it is not allowed.
1963   0. PREAMBLE
1965      The purpose of this License is to make a manual, textbook, or other
1966      functional and useful document "free" in the sense of freedom: to
1967      assure everyone the effective freedom to copy and redistribute it,
1968      with or without modifying it, either commercially or
1969      noncommercially.  Secondarily, this License preserves for the
1970      author and publisher a way to get credit for their work, while not
1971      being considered responsible for modifications made by others.
1973      This License is a kind of "copyleft", which means that derivative
1974      works of the document must themselves be free in the same sense.
1975      It complements the GNU General Public License, which is a copyleft
1976      license designed for free software.
1978      We have designed this License in order to use it for manuals for
1979      free software, because free software needs free documentation: a
1980      free program should come with manuals providing the same freedoms
1981      that the software does.  But this License is not limited to
1982      software manuals; it can be used for any textual work, regardless
1983      of subject matter or whether it is published as a printed book.
1984      We recommend this License principally for works whose purpose is
1985      instruction or reference.
1987   1. APPLICABILITY AND DEFINITIONS
1989      This License applies to any manual or other work, in any medium,
1990      that contains a notice placed by the copyright holder saying it
1991      can be distributed under the terms of this License.  Such a notice
1992      grants a world-wide, royalty-free license, unlimited in duration,
1993      to use that work under the conditions stated herein.  The
1994      "Document", below, refers to any such manual or work.  Any member
1995      of the public is a licensee, and is addressed as "you".  You
1996      accept the license if you copy, modify or distribute the work in a
1997      way requiring permission under copyright law.
1999      A "Modified Version" of the Document means any work containing the
2000      Document or a portion of it, either copied verbatim, or with
2001      modifications and/or translated into another language.
2003      A "Secondary Section" is a named appendix or a front-matter section
2004      of the Document that deals exclusively with the relationship of the
2005      publishers or authors of the Document to the Document's overall
2006      subject (or to related matters) and contains nothing that could
2007      fall directly within that overall subject.  (Thus, if the Document
2008      is in part a textbook of mathematics, a Secondary Section may not
2009      explain any mathematics.)  The relationship could be a matter of
2010      historical connection with the subject or with related matters, or
2011      of legal, commercial, philosophical, ethical or political position
2012      regarding them.
2014      The "Invariant Sections" are certain Secondary Sections whose
2015      titles are designated, as being those of Invariant Sections, in
2016      the notice that says that the Document is released under this
2017      License.  If a section does not fit the above definition of
2018      Secondary then it is not allowed to be designated as Invariant.
2019      The Document may contain zero Invariant Sections.  If the Document
2020      does not identify any Invariant Sections then there are none.
2022      The "Cover Texts" are certain short passages of text that are
2023      listed, as Front-Cover Texts or Back-Cover Texts, in the notice
2024      that says that the Document is released under this License.  A
2025      Front-Cover Text may be at most 5 words, and a Back-Cover Text may
2026      be at most 25 words.
2028      A "Transparent" copy of the Document means a machine-readable copy,
2029      represented in a format whose specification is available to the
2030      general public, that is suitable for revising the document
2031      straightforwardly with generic text editors or (for images
2032      composed of pixels) generic paint programs or (for drawings) some
2033      widely available drawing editor, and that is suitable for input to
2034      text formatters or for automatic translation to a variety of
2035      formats suitable for input to text formatters.  A copy made in an
2036      otherwise Transparent file format whose markup, or absence of
2037      markup, has been arranged to thwart or discourage subsequent
2038      modification by readers is not Transparent.  An image format is
2039      not Transparent if used for any substantial amount of text.  A
2040      copy that is not "Transparent" is called "Opaque".
2042      Examples of suitable formats for Transparent copies include plain
2043      ASCII without markup, Texinfo input format, LaTeX input format,
2044      SGML or XML using a publicly available DTD, and
2045      standard-conforming simple HTML, PostScript or PDF designed for
2046      human modification.  Examples of transparent image formats include
2047      PNG, XCF and JPG.  Opaque formats include proprietary formats that
2048      can be read and edited only by proprietary word processors, SGML or
2049      XML for which the DTD and/or processing tools are not generally
2050      available, and the machine-generated HTML, PostScript or PDF
2051      produced by some word processors for output purposes only.
2053      The "Title Page" means, for a printed book, the title page itself,
2054      plus such following pages as are needed to hold, legibly, the
2055      material this License requires to appear in the title page.  For
2056      works in formats which do not have any title page as such, "Title
2057      Page" means the text near the most prominent appearance of the
2058      work's title, preceding the beginning of the body of the text.
2060      The "publisher" means any person or entity that distributes copies
2061      of the Document to the public.
2063      A section "Entitled XYZ" means a named subunit of the Document
2064      whose title either is precisely XYZ or contains XYZ in parentheses
2065      following text that translates XYZ in another language.  (Here XYZ
2066      stands for a specific section name mentioned below, such as
2067      "Acknowledgements", "Dedications", "Endorsements", or "History".)
2068      To "Preserve the Title" of such a section when you modify the
2069      Document means that it remains a section "Entitled XYZ" according
2070      to this definition.
2072      The Document may include Warranty Disclaimers next to the notice
2073      which states that this License applies to the Document.  These
2074      Warranty Disclaimers are considered to be included by reference in
2075      this License, but only as regards disclaiming warranties: any other
2076      implication that these Warranty Disclaimers may have is void and
2077      has no effect on the meaning of this License.
2079   2. VERBATIM COPYING
2081      You may copy and distribute the Document in any medium, either
2082      commercially or noncommercially, provided that this License, the
2083      copyright notices, and the license notice saying this License
2084      applies to the Document are reproduced in all copies, and that you
2085      add no other conditions whatsoever to those of this License.  You
2086      may not use technical measures to obstruct or control the reading
2087      or further copying of the copies you make or distribute.  However,
2088      you may accept compensation in exchange for copies.  If you
2089      distribute a large enough number of copies you must also follow
2090      the conditions in section 3.
2092      You may also lend copies, under the same conditions stated above,
2093      and you may publicly display copies.
2095   3. COPYING IN QUANTITY
2097      If you publish printed copies (or copies in media that commonly
2098      have printed covers) of the Document, numbering more than 100, and
2099      the Document's license notice requires Cover Texts, you must
2100      enclose the copies in covers that carry, clearly and legibly, all
2101      these Cover Texts: Front-Cover Texts on the front cover, and
2102      Back-Cover Texts on the back cover.  Both covers must also clearly
2103      and legibly identify you as the publisher of these copies.  The
2104      front cover must present the full title with all words of the
2105      title equally prominent and visible.  You may add other material
2106      on the covers in addition.  Copying with changes limited to the
2107      covers, as long as they preserve the title of the Document and
2108      satisfy these conditions, can be treated as verbatim copying in
2109      other respects.
2111      If the required texts for either cover are too voluminous to fit
2112      legibly, you should put the first ones listed (as many as fit
2113      reasonably) on the actual cover, and continue the rest onto
2114      adjacent pages.
2116      If you publish or distribute Opaque copies of the Document
2117      numbering more than 100, you must either include a
2118      machine-readable Transparent copy along with each Opaque copy, or
2119      state in or with each Opaque copy a computer-network location from
2120      which the general network-using public has access to download
2121      using public-standard network protocols a complete Transparent
2122      copy of the Document, free of added material.  If you use the
2123      latter option, you must take reasonably prudent steps, when you
2124      begin distribution of Opaque copies in quantity, to ensure that
2125      this Transparent copy will remain thus accessible at the stated
2126      location until at least one year after the last time you
2127      distribute an Opaque copy (directly or through your agents or
2128      retailers) of that edition to the public.
2130      It is requested, but not required, that you contact the authors of
2131      the Document well before redistributing any large number of
2132      copies, to give them a chance to provide you with an updated
2133      version of the Document.
2135   4. MODIFICATIONS
2137      You may copy and distribute a Modified Version of the Document
2138      under the conditions of sections 2 and 3 above, provided that you
2139      release the Modified Version under precisely this License, with
2140      the Modified Version filling the role of the Document, thus
2141      licensing distribution and modification of the Modified Version to
2142      whoever possesses a copy of it.  In addition, you must do these
2143      things in the Modified Version:
2145        A. Use in the Title Page (and on the covers, if any) a title
2146           distinct from that of the Document, and from those of
2147           previous versions (which should, if there were any, be listed
2148           in the History section of the Document).  You may use the
2149           same title as a previous version if the original publisher of
2150           that version gives permission.
2152        B. List on the Title Page, as authors, one or more persons or
2153           entities responsible for authorship of the modifications in
2154           the Modified Version, together with at least five of the
2155           principal authors of the Document (all of its principal
2156           authors, if it has fewer than five), unless they release you
2157           from this requirement.
2159        C. State on the Title page the name of the publisher of the
2160           Modified Version, as the publisher.
2162        D. Preserve all the copyright notices of the Document.
2164        E. Add an appropriate copyright notice for your modifications
2165           adjacent to the other copyright notices.
2167        F. Include, immediately after the copyright notices, a license
2168           notice giving the public permission to use the Modified
2169           Version under the terms of this License, in the form shown in
2170           the Addendum below.
2172        G. Preserve in that license notice the full lists of Invariant
2173           Sections and required Cover Texts given in the Document's
2174           license notice.
2176        H. Include an unaltered copy of this License.
2178        I. Preserve the section Entitled "History", Preserve its Title,
2179           and add to it an item stating at least the title, year, new
2180           authors, and publisher of the Modified Version as given on
2181           the Title Page.  If there is no section Entitled "History" in
2182           the Document, create one stating the title, year, authors,
2183           and publisher of the Document as given on its Title Page,
2184           then add an item describing the Modified Version as stated in
2185           the previous sentence.
2187        J. Preserve the network location, if any, given in the Document
2188           for public access to a Transparent copy of the Document, and
2189           likewise the network locations given in the Document for
2190           previous versions it was based on.  These may be placed in
2191           the "History" section.  You may omit a network location for a
2192           work that was published at least four years before the
2193           Document itself, or if the original publisher of the version
2194           it refers to gives permission.
2196        K. For any section Entitled "Acknowledgements" or "Dedications",
2197           Preserve the Title of the section, and preserve in the
2198           section all the substance and tone of each of the contributor
2199           acknowledgements and/or dedications given therein.
2201        L. Preserve all the Invariant Sections of the Document,
2202           unaltered in their text and in their titles.  Section numbers
2203           or the equivalent are not considered part of the section
2204           titles.
2206        M. Delete any section Entitled "Endorsements".  Such a section
2207           may not be included in the Modified Version.
2209        N. Do not retitle any existing section to be Entitled
2210           "Endorsements" or to conflict in title with any Invariant
2211           Section.
2213        O. Preserve any Warranty Disclaimers.
2215      If the Modified Version includes new front-matter sections or
2216      appendices that qualify as Secondary Sections and contain no
2217      material copied from the Document, you may at your option
2218      designate some or all of these sections as invariant.  To do this,
2219      add their titles to the list of Invariant Sections in the Modified
2220      Version's license notice.  These titles must be distinct from any
2221      other section titles.
2223      You may add a section Entitled "Endorsements", provided it contains
2224      nothing but endorsements of your Modified Version by various
2225      parties--for example, statements of peer review or that the text
2226      has been approved by an organization as the authoritative
2227      definition of a standard.
2229      You may add a passage of up to five words as a Front-Cover Text,
2230      and a passage of up to 25 words as a Back-Cover Text, to the end
2231      of the list of Cover Texts in the Modified Version.  Only one
2232      passage of Front-Cover Text and one of Back-Cover Text may be
2233      added by (or through arrangements made by) any one entity.  If the
2234      Document already includes a cover text for the same cover,
2235      previously added by you or by arrangement made by the same entity
2236      you are acting on behalf of, you may not add another; but you may
2237      replace the old one, on explicit permission from the previous
2238      publisher that added the old one.
2240      The author(s) and publisher(s) of the Document do not by this
2241      License give permission to use their names for publicity for or to
2242      assert or imply endorsement of any Modified Version.
2244   5. COMBINING DOCUMENTS
2246      You may combine the Document with other documents released under
2247      this License, under the terms defined in section 4 above for
2248      modified versions, provided that you include in the combination
2249      all of the Invariant Sections of all of the original documents,
2250      unmodified, and list them all as Invariant Sections of your
2251      combined work in its license notice, and that you preserve all
2252      their Warranty Disclaimers.
2254      The combined work need only contain one copy of this License, and
2255      multiple identical Invariant Sections may be replaced with a single
2256      copy.  If there are multiple Invariant Sections with the same name
2257      but different contents, make the title of each such section unique
2258      by adding at the end of it, in parentheses, the name of the
2259      original author or publisher of that section if known, or else a
2260      unique number.  Make the same adjustment to the section titles in
2261      the list of Invariant Sections in the license notice of the
2262      combined work.
2264      In the combination, you must combine any sections Entitled
2265      "History" in the various original documents, forming one section
2266      Entitled "History"; likewise combine any sections Entitled
2267      "Acknowledgements", and any sections Entitled "Dedications".  You
2268      must delete all sections Entitled "Endorsements."
2270   6. COLLECTIONS OF DOCUMENTS
2272      You may make a collection consisting of the Document and other
2273      documents released under this License, and replace the individual
2274      copies of this License in the various documents with a single copy
2275      that is included in the collection, provided that you follow the
2276      rules of this License for verbatim copying of each of the
2277      documents in all other respects.
2279      You may extract a single document from such a collection, and
2280      distribute it individually under this License, provided you insert
2281      a copy of this License into the extracted document, and follow
2282      this License in all other respects regarding verbatim copying of
2283      that document.
2285   7. AGGREGATION WITH INDEPENDENT WORKS
2287      A compilation of the Document or its derivatives with other
2288      separate and independent documents or works, in or on a volume of
2289      a storage or distribution medium, is called an "aggregate" if the
2290      copyright resulting from the compilation is not used to limit the
2291      legal rights of the compilation's users beyond what the individual
2292      works permit.  When the Document is included in an aggregate, this
2293      License does not apply to the other works in the aggregate which
2294      are not themselves derivative works of the Document.
2296      If the Cover Text requirement of section 3 is applicable to these
2297      copies of the Document, then if the Document is less than one half
2298      of the entire aggregate, the Document's Cover Texts may be placed
2299      on covers that bracket the Document within the aggregate, or the
2300      electronic equivalent of covers if the Document is in electronic
2301      form.  Otherwise they must appear on printed covers that bracket
2302      the whole aggregate.
2304   8. TRANSLATION
2306      Translation is considered a kind of modification, so you may
2307      distribute translations of the Document under the terms of section
2308      4.  Replacing Invariant Sections with translations requires special
2309      permission from their copyright holders, but you may include
2310      translations of some or all Invariant Sections in addition to the
2311      original versions of these Invariant Sections.  You may include a
2312      translation of this License, and all the license notices in the
2313      Document, and any Warranty Disclaimers, provided that you also
2314      include the original English version of this License and the
2315      original versions of those notices and disclaimers.  In case of a
2316      disagreement between the translation and the original version of
2317      this License or a notice or disclaimer, the original version will
2318      prevail.
2320      If a section in the Document is Entitled "Acknowledgements",
2321      "Dedications", or "History", the requirement (section 4) to
2322      Preserve its Title (section 1) will typically require changing the
2323      actual title.
2325   9. TERMINATION
2327      You may not copy, modify, sublicense, or distribute the Document
2328      except as expressly provided under this License.  Any attempt
2329      otherwise to copy, modify, sublicense, or distribute it is void,
2330      and will automatically terminate your rights under this License.
2332      However, if you cease all violation of this License, then your
2333      license from a particular copyright holder is reinstated (a)
2334      provisionally, unless and until the copyright holder explicitly
2335      and finally terminates your license, and (b) permanently, if the
2336      copyright holder fails to notify you of the violation by some
2337      reasonable means prior to 60 days after the cessation.
2339      Moreover, your license from a particular copyright holder is
2340      reinstated permanently if the copyright holder notifies you of the
2341      violation by some reasonable means, this is the first time you have
2342      received notice of violation of this License (for any work) from
2343      that copyright holder, and you cure the violation prior to 30 days
2344      after your receipt of the notice.
2346      Termination of your rights under this section does not terminate
2347      the licenses of parties who have received copies or rights from
2348      you under this License.  If your rights have been terminated and
2349      not permanently reinstated, receipt of a copy of some or all of
2350      the same material does not give you any rights to use it.
2352  10. FUTURE REVISIONS OF THIS LICENSE
2354      The Free Software Foundation may publish new, revised versions of
2355      the GNU Free Documentation License from time to time.  Such new
2356      versions will be similar in spirit to the present version, but may
2357      differ in detail to address new problems or concerns.  See
2358      `http://www.gnu.org/copyleft/'.
2360      Each version of the License is given a distinguishing version
2361      number.  If the Document specifies that a particular numbered
2362      version of this License "or any later version" applies to it, you
2363      have the option of following the terms and conditions either of
2364      that specified version or of any later version that has been
2365      published (not as a draft) by the Free Software Foundation.  If
2366      the Document does not specify a version number of this License,
2367      you may choose any version ever published (not as a draft) by the
2368      Free Software Foundation.  If the Document specifies that a proxy
2369      can decide which future versions of this License can be used, that
2370      proxy's public statement of acceptance of a version permanently
2371      authorizes you to choose that version for the Document.
2373  11. RELICENSING
2375      "Massive Multiauthor Collaboration Site" (or "MMC Site") means any
2376      World Wide Web server that publishes copyrightable works and also
2377      provides prominent facilities for anybody to edit those works.  A
2378      public wiki that anybody can edit is an example of such a server.
2379      A "Massive Multiauthor Collaboration" (or "MMC") contained in the
2380      site means any set of copyrightable works thus published on the MMC
2381      site.
2383      "CC-BY-SA" means the Creative Commons Attribution-Share Alike 3.0
2384      license published by Creative Commons Corporation, a not-for-profit
2385      corporation with a principal place of business in San Francisco,
2386      California, as well as future copyleft versions of that license
2387      published by that same organization.
2389      "Incorporate" means to publish or republish a Document, in whole or
2390      in part, as part of another Document.
2392      An MMC is "eligible for relicensing" if it is licensed under this
2393      License, and if all works that were first published under this
2394      License somewhere other than this MMC, and subsequently
2395      incorporated in whole or in part into the MMC, (1) had no cover
2396      texts or invariant sections, and (2) were thus incorporated prior
2397      to November 1, 2008.
2399      The operator of an MMC Site may republish an MMC contained in the
2400      site under CC-BY-SA on the same site at any time before August 1,
2401      2009, provided the MMC is eligible for relicensing.
2404 ADDENDUM: How to use this License for your documents
2405 ====================================================
2407 To use this License in a document you have written, include a copy of
2408 the License in the document and put the following copyright and license
2409 notices just after the title page:
2411        Copyright (C)  YEAR  YOUR NAME.
2412        Permission is granted to copy, distribute and/or modify this document
2413        under the terms of the GNU Free Documentation License, Version 1.3
2414        or any later version published by the Free Software Foundation;
2415        with no Invariant Sections, no Front-Cover Texts, and no Back-Cover
2416        Texts.  A copy of the license is included in the section entitled ``GNU
2417        Free Documentation License''.
2419    If you have Invariant Sections, Front-Cover Texts and Back-Cover
2420 Texts, replace the "with...Texts." line with this:
2422          with the Invariant Sections being LIST THEIR TITLES, with
2423          the Front-Cover Texts being LIST, and with the Back-Cover Texts
2424          being LIST.
2426    If you have Invariant Sections without Cover Texts, or some other
2427 combination of the three, merge those two alternatives to suit the
2428 situation.
2430    If your document contains nontrivial examples of program code, we
2431 recommend releasing these examples in parallel under your choice of
2432 free software license, such as the GNU General Public License, to
2433 permit their use in free software.
2436 \x1f
2437 Tag Table:
2438 Node: Top\x7f731
2439 Node: Introduction\x7f2054
2440 Node: Compiling\x7f4546
2441 Node: Executing\x7f8602
2442 Node: Invoking\x7f11390
2443 Node: Output Options\x7f12805
2444 Node: Analysis Options\x7f19894
2445 Node: Miscellaneous Options\x7f23592
2446 Node: Deprecated Options\x7f24847
2447 Node: Symspecs\x7f26926
2448 Node: Output\x7f28752
2449 Node: Flat Profile\x7f29792
2450 Node: Call Graph\x7f34745
2451 Node: Primary\x7f37977
2452 Node: Callers\x7f40565
2453 Node: Subroutines\x7f42682
2454 Node: Cycles\x7f44523
2455 Node: Line-by-line\x7f51300
2456 Node: Annotated Source\x7f55373
2457 Node: Inaccuracy\x7f58372
2458 Node: Sampling Error\x7f58630
2459 Node: Assumptions\x7f61200
2460 Node: How do I?\x7f62670
2461 Node: Incompatibilities\x7f64224
2462 Node: Details\x7f65718
2463 Node: Implementation\x7f66111
2464 Node: File Format\x7f72008
2465 Node: Internals\x7f76298
2466 Node: Debugging\x7f84793
2467 Node: GNU Free Documentation License\x7f86394
2468 \x1f
2469 End Tag Table