📄 arm-linux-gcov.1
字号:
.IX Item "--unconditional-branches".PDWhen branch counts are given, include those of unconditional branches.Unconditional branches are normally not interesting..PP\&\fBgcov\fR should be run with the current directory the same as thatwhen you invoked the compiler. Otherwise it will not be able to locatethe source files. \fBgcov\fR produces files called\&\fI\fImangledname\fI.gcov\fR in the current directory. These containthe coverage information of the source file they correspond to.One \fI.gcov\fR file is produced for each source file containing code,which was compiled to produce the data files. The \fImangledname\fR partof the output file name is usually simply the source file name, but canbe something more complicated if the \fB\-l\fR or \fB\-p\fR options aregiven. Refer to those options for details..PPThe \fI.gcov\fR files contain the ':' separated fields along withprogram source code. The format is.PP.Vb 1\& <execution_count>:<line_number>:<source line text>.Ve.PPAdditional block information may succeed each line, when requested bycommand line option. The \fIexecution_count\fR is \fB\-\fR for linescontaining no code and \fB#####\fR for lines which were neverexecuted. Some lines of information at the start have \fIline_number\fRof zero..PPWhen printing percentages, 0% and 100% are only printed when the valuesare \fIexactly\fR 0% and 100% respectively. Other values which wouldconventionally be rounded to 0% or 100% are instead printed as thenearest non-boundary value..PPWhen using \fBgcov\fR, you must first compile your program with twospecial \s-1GCC\s0 options: \fB\-fprofile\-arcs \-ftest\-coverage\fR.This tells the compiler to generate additional information needed bygcov (basically a flow graph of the program) and also includesadditional code in the object files for generating the extra profilinginformation needed by gcov. These additional files are placed in thedirectory where the object file is located..PPRunning the program will cause profile output to be generated. For eachsource file compiled with \fB\-fprofile\-arcs\fR, an accompanying\&\fI.gcda\fR file will be placed in the object file directory..PPRunning \fBgcov\fR with your program's source file names as argumentswill now produce a listing of the code along with frequency of executionfor each line. For example, if your program is called \fItmp.c\fR, thisis what you see when you use the basic \fBgcov\fR facility:.PP.Vb 5\& $ gcc -fprofile-arcs -ftest-coverage tmp.c\& $ a.out\& $ gcov tmp.c\& 90.00% of 10 source lines executed in file tmp.c\& Creating tmp.c.gcov..Ve.PPThe file \fItmp.c.gcov\fR contains output from \fBgcov\fR.Here is a sample:.PP.Vb 23\& -: 0:Source:tmp.c\& -: 0:Graph:tmp.gcno\& -: 0:Data:tmp.gcda\& -: 0:Runs:1\& -: 0:Programs:1\& -: 1:#include <stdio.h>\& -: 2:\& -: 3:int main (void)\& function main called 1 returned 1 blocks executed 75%\& 1: 4:{\& 1: 5: int i, total;\& -: 6:\& 1: 7: total = 0;\& -: 8:\& 11: 9: for (i = 0; i < 10; i++)\& 10: 10: total += i;\& -: 11:\& 1: 12: if (total != 45)\& #####: 13: printf ("Failure\en");\& -: 14: else\& 1: 15: printf ("Success\en");\& 1: 16: return 0;\& -: 17:}.Ve.PPWhen you use the \fB\-a\fR option, you will get individual blockcounts, and the output looks like this:.PP.Vb 30\& -: 0:Source:tmp.c\& -: 0:Graph:tmp.gcno\& -: 0:Data:tmp.gcda\& -: 0:Runs:1\& -: 0:Programs:1\& -: 1:#include <stdio.h>\& -: 2:\& -: 3:int main (void)\& function main called 1 returned 1 blocks executed 75%\& 1: 4:{\& 1: 4-block 0\& 1: 5: int i, total;\& -: 6:\& 1: 7: total = 0;\& -: 8:\& 11: 9: for (i = 0; i < 10; i++)\& 11: 9-block 0\& 10: 10: total += i;\& 10: 10-block 0\& -: 11:\& 1: 12: if (total != 45)\& 1: 12-block 0\& #####: 13: printf ("Failure\en");\& $$$$$: 13-block 0\& -: 14: else\& 1: 15: printf ("Success\en");\& 1: 15-block 0\& 1: 16: return 0;\& 1: 16-block 0\& -: 17:}.Ve.PPIn this mode, each basic block is only shown on one line \*(-- the lastline of the block. A multi-line block will only contribute to theexecution count of that last line, and other lines will not be shownto contain code, unless previous blocks end on those lines.The total execution count of a line is shown and subsequent lines showthe execution counts for individual blocks that end on that line. After eachblock, the branch and call counts of the block will be shown, if the\&\fB\-b\fR option is given..PPBecause of the way \s-1GCC\s0 instruments calls, a call count can be shownafter a line with no individual blocks.As you can see, line 13 contains a basic block that was not executed..PPWhen you use the \fB\-b\fR option, your output looks like this:.PP.Vb 6\& $ gcov -b tmp.c\& 90.00% of 10 source lines executed in file tmp.c\& 80.00% of 5 branches executed in file tmp.c\& 80.00% of 5 branches taken at least once in file tmp.c\& 50.00% of 2 calls executed in file tmp.c\& Creating tmp.c.gcov..Ve.PPHere is a sample of a resulting \fItmp.c.gcov\fR file:.PP.Vb 29\& -: 0:Source:tmp.c\& -: 0:Graph:tmp.gcno\& -: 0:Data:tmp.gcda\& -: 0:Runs:1\& -: 0:Programs:1\& -: 1:#include <stdio.h>\& -: 2:\& -: 3:int main (void)\& function main called 1 returned 1 blocks executed 75%\& 1: 4:{\& 1: 5: int i, total;\& -: 6:\& 1: 7: total = 0;\& -: 8:\& 11: 9: for (i = 0; i < 10; i++)\& branch 0 taken 91% (fallthrough)\& branch 1 taken 9%\& 10: 10: total += i;\& -: 11:\& 1: 12: if (total != 45)\& branch 0 taken 0% (fallthrough)\& branch 1 taken 100%\& #####: 13: printf ("Failure\en");\& call 0 never executed\& -: 14: else\& 1: 15: printf ("Success\en");\& call 0 called 1 returned 100%\& 1: 16: return 0;\& -: 17:}.Ve.PPFor each basic block, a line is printed after the last line of the basicblock describing the branch or call that ends the basic block. There canbe multiple branches and calls listed for a single source line if thereare multiple basic blocks that end on that line. In this case, thebranches and calls are each given a number. There is no simple way to mapthese branches and calls back to source constructs. In general, though,the lowest numbered branch or call will correspond to the leftmost constructon the source line..PPFor a branch, if it was executed at least once, then a percentageindicating the number of times the branch was taken divided by thenumber of times the branch was executed will be printed. Otherwise, themessage ``never executed'' is printed..PPFor a call, if it was executed at least once, then a percentageindicating the number of times the call returned divided by the numberof times the call was executed will be printed. This will usually be100%, but may be less for functions call \f(CW\*(C`exit\*(C'\fR or \f(CW\*(C`longjmp\*(C'\fR,and thus may not return every time they are called..PPThe execution counts are cumulative. If the example program wereexecuted again without removing the \fI.gcda\fR file, the count for thenumber of times each line in the source was executed would be added tothe results of the previous run(s). This is potentially useful inseveral ways. For example, it could be used to accumulate data over anumber of program runs as part of a test verification suite, or toprovide more accurate long-term information over a large number ofprogram runs..PPThe data in the \fI.gcda\fR files is saved immediately before the programexits. For each source file compiled with \fB\-fprofile\-arcs\fR, theprofiling code first attempts to read in an existing \fI.gcda\fR file; ifthe file doesn't match the executable (differing number of basic blockcounts) it will ignore the contents of the file. It then adds in thenew execution counts and finally writes the data to the file..Sh "Using \fBgcov\fP with \s-1GCC\s0 Optimization".IX Subsection "Using gcov with GCC Optimization"If you plan to use \fBgcov\fR to help optimize your code, you mustfirst compile your program with two special \s-1GCC\s0 options:\&\fB\-fprofile\-arcs \-ftest\-coverage\fR. Aside from that, you can use anyother \s-1GCC\s0 options; but if you want to prove that every single linein your program was executed, you should not compile with optimizationat the same time. On some machines the optimizer can eliminate somesimple code lines by combining them with other lines. For example, codelike this:.PP.Vb 4\& if (a != b)\& c = 1;\& else\& c = 0;.Ve.PPcan be compiled into one instruction on some machines. In this case,there is no way for \fBgcov\fR to calculate separate execution countsfor each line because there isn't separate code for each line. Hencethe \fBgcov\fR output looks like this if you compiled the program withoptimization:.PP.Vb 4\& 100: 12:if (a != b)\& 100: 13: c = 1;\& 100: 14:else\& 100: 15: c = 0;.Ve.PPThe output shows that this block of code, combined by optimization,executed 100 times. In one sense this result is correct, because therewas only one instruction representing all four of these lines. However,the output does not indicate how many times the result was 0 and howmany times the result was 1..PPInlineable functions can create unexpected line counts. Line counts areshown for the source code of the inlineable function, but what is showndepends on where the function is inlined, or if it is not inlined at all..PPIf the function is not inlined, the compiler must emit an out of linecopy of the function, in any object file that needs it. If\&\fIfileA.o\fR and \fIfileB.o\fR both contain out of line bodies of aparticular inlineable function, they will also both contain coveragecounts for that function. When \fIfileA.o\fR and \fIfileB.o\fR arelinked together, the linker will, on many systems, select one of thoseout of line bodies for all calls to that function, and remove or ignorethe other. Unfortunately, it will not remove the coverage counters forthe unused function body. Hence when instrumented, all but one use ofthat function will show zero counts..PPIf the function is inlined in several places, the block structure ineach location might not be the same. For instance, a condition mightnow be calculable at compile time in some instances. Because thecoverage of all the uses of the inline function will be shown for thesame source lines, the line counts themselves might seem inconsistent..SH "SEE ALSO".IX Header "SEE ALSO"\&\fIgpl\fR\|(7), \fIgfdl\fR\|(7), \fIfsf\-funding\fR\|(7), \fIgcc\fR\|(1) and the Info entry for \fIgcc\fR..SH "COPYRIGHT".IX Header "COPYRIGHT"Copyright (c) 1996, 1997, 1999, 2000, 2001, 2002, 2003Free Software Foundation, Inc..PPPermission is granted to copy, distribute and/or modify this documentunder the terms of the \s-1GNU\s0 Free Documentation License, Version 1.2 orany later version published by the Free Software Foundation; with theInvariant Sections being ``\s-1GNU\s0 General Public License'' and ``FundingFree Software'', the Front-Cover texts being (a) (see below), and withthe Back-Cover Texts being (b) (see below). A copy of the license isincluded in the \fIgfdl\fR\|(7) man page..PP(a) The \s-1FSF\s0's Front-Cover Text is:.PP.Vb 1\& A GNU Manual.Ve.PP(b) The \s-1FSF\s0's Back-Cover Text is:.PP.Vb 3\& You have freedom to copy and modify this GNU Manual, like GNU\& software. Copies published by the Free Software Foundation raise\& funds for GNU development..Ve
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -