1 @c Copyright (C) 1996, 1997, 1999, 2000, 2001,
2 @c 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
3 @c This is part of the GCC manual.
4 @c For copying conditions, see the file gcc.texi.
8 Copyright @copyright{} 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004, 2005
9 Free Software Foundation, Inc.
11 Permission is granted to copy, distribute and/or modify this document
12 under the terms of the GNU Free Documentation License, Version 1.2 or
13 any later version published by the Free Software Foundation; with the
14 Invariant Sections being ``GNU General Public License'' and ``Funding
15 Free Software'', the Front-Cover texts being (a) (see below), and with
16 the Back-Cover Texts being (b) (see below). A copy of the license is
17 included in the gfdl(7) man page.
19 (a) The FSF's Front-Cover Text is:
23 (b) The FSF's Back-Cover Text is:
25 You have freedom to copy and modify this GNU Manual, like GNU
26 software. Copies published by the Free Software Foundation raise
27 funds for GNU development.
29 @c Set file name and title for the man page.
31 @settitle coverage testing tool
35 @chapter @command{gcov}---a Test Coverage Program
37 @command{gcov} is a tool you can use in conjunction with GCC to
38 test code coverage in your programs.
41 * Gcov Intro:: Introduction to gcov.
42 * Invoking Gcov:: How to use gcov.
43 * Gcov and Optimization:: Using gcov with GCC optimization.
44 * Gcov Data Files:: The files used by gcov.
45 * Cross-profiling:: Data file relocation.
49 @section Introduction to @command{gcov}
50 @c man begin DESCRIPTION
52 @command{gcov} is a test coverage program. Use it in concert with GCC
53 to analyze your programs to help create more efficient, faster running
54 code and to discover untested parts of your program. You can use
55 @command{gcov} as a profiling tool to help discover where your
56 optimization efforts will best affect your code. You can also use
57 @command{gcov} along with the other profiling tool, @command{gprof}, to
58 assess which parts of your code use the greatest amount of computing
61 Profiling tools help you analyze your code's performance. Using a
62 profiler such as @command{gcov} or @command{gprof}, you can find out some
63 basic performance statistics, such as:
67 how often each line of code executes
70 what lines of code are actually executed
73 how much computing time each section of code uses
76 Once you know these things about how your code works when compiled, you
77 can look at each module to see which modules should be optimized.
78 @command{gcov} helps you determine where to work on optimization.
80 Software developers also use coverage testing in concert with
81 testsuites, to make sure software is actually good enough for a release.
82 Testsuites can verify that a program works as expected; a coverage
83 program tests to see how much of the program is exercised by the
84 testsuite. Developers can then determine what kinds of test cases need
85 to be added to the testsuites to create both better testing and a better
88 You should compile your code without optimization if you plan to use
89 @command{gcov} because the optimization, by combining some lines of code
90 into one function, may not give you as much information as you need to
91 look for `hot spots' where the code is using a great deal of computer
92 time. Likewise, because @command{gcov} accumulates statistics by line (at
93 the lowest resolution), it works best with a programming style that
94 places only one statement on each line. If you use complicated macros
95 that expand to loops or to other control structures, the statistics are
96 less helpful---they only report on the line where the macro call
97 appears. If your complex macros behave like functions, you can replace
98 them with inline functions to solve this problem.
100 @command{gcov} creates a logfile called @file{@var{sourcefile}.gcov} which
101 indicates how many times each line of a source file @file{@var{sourcefile}.c}
102 has executed. You can use these logfiles along with @command{gprof} to aid
103 in fine-tuning the performance of your programs. @command{gprof} gives
104 timing information you can use along with the information you get from
107 @command{gcov} works only on code compiled with GCC@. It is not
108 compatible with any other profiling or test coverage mechanism.
113 @section Invoking gcov
116 gcov @r{[}@var{options}@r{]} @var{sourcefile}
119 @command{gcov} accepts the following options:
122 @c man begin SYNOPSIS
123 gcov [@option{-v}|@option{--version}] [@option{-h}|@option{--help}]
124 [@option{-a}|@option{--all-blocks}]
125 [@option{-b}|@option{--branch-probabilities}]
126 [@option{-c}|@option{--branch-counts}]
127 [@option{-n}|@option{--no-output}]
128 [@option{-l}|@option{--long-file-names}]
129 [@option{-p}|@option{--preserve-paths}]
130 [@option{-f}|@option{--function-summaries}]
131 [@option{-o}|@option{--object-directory} @var{directory|file}]
132 [@option{-u}|@option{--unconditional-branches}]
136 gpl(7), gfdl(7), fsf-funding(7), gcc(1) and the Info entry for @file{gcc}.
144 Display help about using @command{gcov} (on the standard output), and
145 exit without doing any further processing.
149 Display the @command{gcov} version number (on the standard output),
150 and exit without doing any further processing.
154 Write individual execution counts for every basic block. Normally gcov
155 outputs execution counts only for the main blocks of a line. With this
156 option you can determine if blocks within a single line are not being
160 @itemx --branch-probabilities
161 Write branch frequencies to the output file, and write branch summary
162 info to the standard output. This option allows you to see how often
163 each branch in your program was taken. Unconditional branches will not
164 be shown, unless the @option{-u} option is given.
167 @itemx --branch-counts
168 Write branch frequencies as the number of branches taken, rather than
169 the percentage of branches taken.
173 Do not create the @command{gcov} output file.
176 @itemx --long-file-names
177 Create long file names for included source files. For example, if the
178 header file @file{x.h} contains code, and was included in the file
179 @file{a.c}, then running @command{gcov} on the file @file{a.c} will produce
180 an output file called @file{a.c##x.h.gcov} instead of @file{x.h.gcov}.
181 This can be useful if @file{x.h} is included in multiple source
182 files. If you use the @samp{-p} option, both the including and
183 included file names will be complete path names.
186 @itemx --preserve-paths
187 Preserve complete path information in the names of generated
188 @file{.gcov} files. Without this option, just the filename component is
189 used. With this option, all directories are used, with @samp{/} characters
190 translated to @samp{#} characters, @file{.} directory components
191 removed and @file{..}
192 components renamed to @samp{^}. This is useful if sourcefiles are in several
193 different directories. It also affects the @samp{-l} option.
196 @itemx --function-summaries
197 Output summaries for each function in addition to the file level summary.
199 @item -o @var{directory|file}
200 @itemx --object-directory @var{directory}
201 @itemx --object-file @var{file}
202 Specify either the directory containing the gcov data files, or the
203 object path name. The @file{.gcno}, and
204 @file{.gcda} data files are searched for using this option. If a directory
205 is specified, the data files are in that directory and named after the
206 source file name, without its extension. If a file is specified here,
207 the data files are named after that file, without its extension. If this
208 option is not supplied, it defaults to the current directory.
211 @itemx --unconditional-branches
212 When branch probabilities are given, include those of unconditional branches.
213 Unconditional branches are normally not interesting.
217 @command{gcov} should be run with the current directory the same as that
218 when you invoked the compiler. Otherwise it will not be able to locate
219 the source files. @command{gcov} produces files called
220 @file{@var{mangledname}.gcov} in the current directory. These contain
221 the coverage information of the source file they correspond to.
222 One @file{.gcov} file is produced for each source file containing code,
223 which was compiled to produce the data files. The @var{mangledname} part
224 of the output file name is usually simply the source file name, but can
225 be something more complicated if the @samp{-l} or @samp{-p} options are
226 given. Refer to those options for details.
228 The @file{.gcov} files contain the @samp{:} separated fields along with
229 program source code. The format is
232 @var{execution_count}:@var{line_number}:@var{source line text}
235 Additional block information may succeed each line, when requested by
236 command line option. The @var{execution_count} is @samp{-} for lines
237 containing no code and @samp{#####} for lines which were never executed.
238 Some lines of information at the start have @var{line_number} of zero.
240 The preamble lines are of the form
243 -:0:@var{tag}:@var{value}
246 The ordering and number of these preamble lines will be augmented as
247 @command{gcov} development progresses --- do not rely on them remaining
248 unchanged. Use @var{tag} to locate a particular preamble line.
250 The additional block information is of the form
253 @var{tag} @var{information}
256 The @var{information} is human readable, but designed to be simple
257 enough for machine parsing too.
259 When printing percentages, 0% and 100% are only printed when the values
260 are @emph{exactly} 0% and 100% respectively. Other values which would
261 conventionally be rounded to 0% or 100% are instead printed as the
262 nearest non-boundary value.
264 When using @command{gcov}, you must first compile your program with two
265 special GCC options: @samp{-fprofile-arcs -ftest-coverage}.
266 This tells the compiler to generate additional information needed by
267 gcov (basically a flow graph of the program) and also includes
268 additional code in the object files for generating the extra profiling
269 information needed by gcov. These additional files are placed in the
270 directory where the object file is located.
272 Running the program will cause profile output to be generated. For each
273 source file compiled with @option{-fprofile-arcs}, an accompanying
274 @file{.gcda} file will be placed in the object file directory.
276 Running @command{gcov} with your program's source file names as arguments
277 will now produce a listing of the code along with frequency of execution
278 for each line. For example, if your program is called @file{tmp.c}, this
279 is what you see when you use the basic @command{gcov} facility:
282 $ gcc -fprofile-arcs -ftest-coverage tmp.c
285 90.00% of 10 source lines executed in file tmp.c
289 The file @file{tmp.c.gcov} contains output from @command{gcov}.
298 -: 1:#include <stdio.h>
306 11: 9: for (i = 0; i < 10; i++)
309 1: 12: if (total != 45)
310 #####: 13: printf ("Failure\n");
312 1: 15: printf ("Success\n");
317 When you use the @option{-a} option, you will get individual block
318 counts, and the output looks like this:
326 -: 1:#include <stdio.h>
335 11: 9: for (i = 0; i < 10; i++)
340 1: 12: if (total != 45)
342 #####: 13: printf ("Failure\n");
345 1: 15: printf ("Success\n");
352 In this mode, each basic block is only shown on one line -- the last
353 line of the block. A multi-line block will only contribute to the
354 execution count of that last line, and other lines will not be shown
355 to contain code, unless previous blocks end on those lines.
356 The total execution count of a line is shown and subsequent lines show
357 the execution counts for individual blocks that end on that line. After each
358 block, the branch and call counts of the block will be shown, if the
359 @option{-b} option is given.
361 Because of the way GCC instruments calls, a call count can be shown
362 after a line with no individual blocks.
363 As you can see, line 13 contains a basic block that was not executed.
366 When you use the @option{-b} option, your output looks like this:
370 90.00% of 10 source lines executed in file tmp.c
371 80.00% of 5 branches executed in file tmp.c
372 80.00% of 5 branches taken at least once in file tmp.c
373 50.00% of 2 calls executed in file tmp.c
377 Here is a sample of a resulting @file{tmp.c.gcov} file:
385 -: 1:#include <stdio.h>
388 function main called 1 returned 1 blocks executed 75%
394 11: 9: for (i = 0; i < 10; i++)
395 branch 0 taken 91% (fallthrough)
399 1: 12: if (total != 45)
400 branch 0 taken 0% (fallthrough)
402 #####: 13: printf ("Failure\n");
403 call 0 never executed
405 1: 15: printf ("Success\n");
406 call 0 called 1 returned 100%
411 For each function, a line is printed showing how many times the function
412 is called, how many times it returns and what percentage of the
413 function's blocks were executed.
415 For each basic block, a line is printed after the last line of the basic
416 block describing the branch or call that ends the basic block. There can
417 be multiple branches and calls listed for a single source line if there
418 are multiple basic blocks that end on that line. In this case, the
419 branches and calls are each given a number. There is no simple way to map
420 these branches and calls back to source constructs. In general, though,
421 the lowest numbered branch or call will correspond to the leftmost construct
424 For a branch, if it was executed at least once, then a percentage
425 indicating the number of times the branch was taken divided by the
426 number of times the branch was executed will be printed. Otherwise, the
427 message ``never executed'' is printed.
429 For a call, if it was executed at least once, then a percentage
430 indicating the number of times the call returned divided by the number
431 of times the call was executed will be printed. This will usually be
432 100%, but may be less for functions that call @code{exit} or @code{longjmp},
433 and thus may not return every time they are called.
435 The execution counts are cumulative. If the example program were
436 executed again without removing the @file{.gcda} file, the count for the
437 number of times each line in the source was executed would be added to
438 the results of the previous run(s). This is potentially useful in
439 several ways. For example, it could be used to accumulate data over a
440 number of program runs as part of a test verification suite, or to
441 provide more accurate long-term information over a large number of
444 The data in the @file{.gcda} files is saved immediately before the program
445 exits. For each source file compiled with @option{-fprofile-arcs}, the
446 profiling code first attempts to read in an existing @file{.gcda} file; if
447 the file doesn't match the executable (differing number of basic block
448 counts) it will ignore the contents of the file. It then adds in the
449 new execution counts and finally writes the data to the file.
451 @node Gcov and Optimization
452 @section Using @command{gcov} with GCC Optimization
454 If you plan to use @command{gcov} to help optimize your code, you must
455 first compile your program with two special GCC options:
456 @samp{-fprofile-arcs -ftest-coverage}. Aside from that, you can use any
457 other GCC options; but if you want to prove that every single line
458 in your program was executed, you should not compile with optimization
459 at the same time. On some machines the optimizer can eliminate some
460 simple code lines by combining them with other lines. For example, code
471 can be compiled into one instruction on some machines. In this case,
472 there is no way for @command{gcov} to calculate separate execution counts
473 for each line because there isn't separate code for each line. Hence
474 the @command{gcov} output looks like this if you compiled the program with
484 The output shows that this block of code, combined by optimization,
485 executed 100 times. In one sense this result is correct, because there
486 was only one instruction representing all four of these lines. However,
487 the output does not indicate how many times the result was 0 and how
488 many times the result was 1.
490 Inlineable functions can create unexpected line counts. Line counts are
491 shown for the source code of the inlineable function, but what is shown
492 depends on where the function is inlined, or if it is not inlined at all.
494 If the function is not inlined, the compiler must emit an out of line
495 copy of the function, in any object file that needs it. If
496 @file{fileA.o} and @file{fileB.o} both contain out of line bodies of a
497 particular inlineable function, they will also both contain coverage
498 counts for that function. When @file{fileA.o} and @file{fileB.o} are
499 linked together, the linker will, on many systems, select one of those
500 out of line bodies for all calls to that function, and remove or ignore
501 the other. Unfortunately, it will not remove the coverage counters for
502 the unused function body. Hence when instrumented, all but one use of
503 that function will show zero counts.
505 If the function is inlined in several places, the block structure in
506 each location might not be the same. For instance, a condition might
507 now be calculable at compile time in some instances. Because the
508 coverage of all the uses of the inline function will be shown for the
509 same source lines, the line counts themselves might seem inconsistent.
513 @node Gcov Data Files
514 @section Brief description of @command{gcov} data files
516 @command{gcov} uses two files for profiling. The names of these files
517 are derived from the original @emph{object} file by substituting the
518 file suffix with either @file{.gcno}, or @file{.gcda}. All of these files
519 are placed in the same directory as the object file, and contain data
520 stored in a platform-independent format.
522 The @file{.gcno} file is generated when the source file is compiled with
523 the GCC @option{-ftest-coverage} option. It contains information to
524 reconstruct the basic block graphs and assign source line numbers to
527 The @file{.gcda} file is generated when a program containing object files
528 built with the GCC @option{-fprofile-arcs} option is executed. A
529 separate @file{.gcda} file is created for each object file compiled with
530 this option. It contains arc transition counts, and some summary
533 The full details of the file format is specified in @file{gcov-io.h},
534 and functions provided in that header file should be used to access the
537 @node Cross-profiling
538 @section Data file relocation to support cross-profiling
540 Running the program will cause profile output to be generated. For each
541 source file compiled with @option{-fprofile-arcs}, an accompanying @file{.gcda}
542 file will be placed in the object file directory. That implicitly requires
543 running the program on the same system as it was built or having the same
544 absolute directory structure on the target system. The program will try
545 to create the needed directory structure, if it is not already present.
547 To support cross-profiling, a program compiled with @option{-fprofile-arcs}
548 can relocate the data files based on two environment variables:
552 GCOV_PREFIX contains the prefix to add to the absolute paths
553 in the object file. Prefix must be absolute as well, otherwise its
554 value is ignored. The default is no prefix.
557 GCOV_PREFIX_STRIP indicates the how many initial directory names to strip off
558 the hardwired absolute paths. Default value is 0.
560 @emph{Note:} GCOV_PREFIX_STRIP has no effect if GCOV_PREFIX is undefined, empty
564 For example, if the object file @file{/user/build/foo.o} was built with
565 @option{-fprofile-arcs}, the final executable will try to create the data file
566 @file{/user/build/foo.gcda} when running on the target system. This will
567 fail if the corresponding directory does not exist and it is unable to create
568 it. This can be overcome by, for example, setting the environment as
569 @samp{GCOV_PREFIX=/target/run} and @samp{GCOV_PREFIX_STRIP=1}. Such a
570 setting will name the data file @file{/target/run/build/foo.gcda}.
572 You must move the data files to the expected directory tree in order to
573 use them for profile directed optimizations (@option{--use-profile}), or to
574 use the @command{gcov} tool.