blob: 4c0354c0d608fe8f1c7164efee4c52d8ddd213c0 [file] [log] [blame]
Daniel Dunbar8f4a8a62012-05-08 16:50:35 +00001llvm-cov - emit coverage information
2====================================
3
Daniel Dunbar8f4a8a62012-05-08 16:50:35 +00004SYNOPSIS
5--------
6
Justin Bogner92f47392015-03-12 04:18:21 +00007:program:`llvm-cov` *command* [*args...*]
Daniel Dunbar8f4a8a62012-05-08 16:50:35 +00008
9DESCRIPTION
10-----------
11
Justin Bogner92f47392015-03-12 04:18:21 +000012The :program:`llvm-cov` tool shows code coverage information for
13programs that are instrumented to emit profile data. It can be used to
14work with ``gcov``\-style coverage or with ``clang``\'s instrumentation
15based profiling.
Bob Wilsonc16b7042014-05-06 15:58:06 +000016
Justin Bogner92f47392015-03-12 04:18:21 +000017If the program is invoked with a base name of ``gcov``, it will behave as if
18the :program:`llvm-cov gcov` command were called. Otherwise, a command should
19be provided.
20
21COMMANDS
22--------
23
24* :ref:`gcov <llvm-cov-gcov>`
25* :ref:`show <llvm-cov-show>`
26* :ref:`report <llvm-cov-report>`
Vedant Kumar7101d732016-07-26 22:50:58 +000027* :ref:`export <llvm-cov-export>`
Justin Bogner92f47392015-03-12 04:18:21 +000028
29.. program:: llvm-cov gcov
30
31.. _llvm-cov-gcov:
32
33GCOV COMMAND
34------------
35
36SYNOPSIS
37^^^^^^^^
38
39:program:`llvm-cov gcov` [*options*] *SOURCEFILE*
40
41DESCRIPTION
42^^^^^^^^^^^
43
44The :program:`llvm-cov gcov` tool reads code coverage data files and displays
45the coverage information for a specified source file. It is compatible with the
46``gcov`` tool from version 4.2 of ``GCC`` and may also be compatible with some
47later versions of ``gcov``.
48
49To use :program:`llvm-cov gcov`, you must first build an instrumented version
50of your application that collects coverage data as it runs. Compile with the
Bob Wilsonc16b7042014-05-06 15:58:06 +000051``-fprofile-arcs`` and ``-ftest-coverage`` options to add the
52instrumentation. (Alternatively, you can use the ``--coverage`` option, which
53includes both of those other options.) You should compile with debugging
54information (``-g``) and without optimization (``-O0``); otherwise, the
55coverage data cannot be accurately mapped back to the source code.
56
57At the time you compile the instrumented code, a ``.gcno`` data file will be
58generated for each object file. These ``.gcno`` files contain half of the
59coverage data. The other half of the data comes from ``.gcda`` files that are
60generated when you run the instrumented program, with a separate ``.gcda``
61file for each object file. Each time you run the program, the execution counts
62are summed into any existing ``.gcda`` files, so be sure to remove any old
63files if you do not want their contents to be included.
64
65By default, the ``.gcda`` files are written into the same directory as the
66object files, but you can override that by setting the ``GCOV_PREFIX`` and
67``GCOV_PREFIX_STRIP`` environment variables. The ``GCOV_PREFIX_STRIP``
68variable specifies a number of directory components to be removed from the
69start of the absolute path to the object file directory. After stripping those
70directories, the prefix from the ``GCOV_PREFIX`` variable is added. These
71environment variables allow you to run the instrumented program on a machine
72where the original object file directories are not accessible, but you will
73then need to copy the ``.gcda`` files back to the object file directories
Justin Bogner92f47392015-03-12 04:18:21 +000074where :program:`llvm-cov gcov` expects to find them.
Bob Wilsonc16b7042014-05-06 15:58:06 +000075
Justin Bogner92f47392015-03-12 04:18:21 +000076Once you have generated the coverage data files, run :program:`llvm-cov gcov`
77for each main source file where you want to examine the coverage results. This
78should be run from the same directory where you previously ran the
79compiler. The results for the specified source file are written to a file named
80by appending a ``.gcov`` suffix. A separate output file is also created for
81each file included by the main source file, also with a ``.gcov`` suffix added.
Bob Wilsonc16b7042014-05-06 15:58:06 +000082
Justin Bogner92f47392015-03-12 04:18:21 +000083The basic content of an ``.gcov`` output file is a copy of the source file with
Bob Wilsonc16b7042014-05-06 15:58:06 +000084an execution count and line number prepended to every line. The execution
85count is shown as ``-`` if a line does not contain any executable code. If
86a line contains code but that code was never executed, the count is displayed
87as ``#####``.
88
Daniel Dunbar8f4a8a62012-05-08 16:50:35 +000089OPTIONS
Justin Bogner92f47392015-03-12 04:18:21 +000090^^^^^^^
Daniel Dunbar8f4a8a62012-05-08 16:50:35 +000091
Bob Wilsonc16b7042014-05-06 15:58:06 +000092.. option:: -a, --all-blocks
Daniel Dunbar8f4a8a62012-05-08 16:50:35 +000093
Bob Wilsonc16b7042014-05-06 15:58:06 +000094 Display all basic blocks. If there are multiple blocks for a single line of
95 source code, this option causes llvm-cov to show the count for each block
96 instead of just one count for the entire line.
Daniel Dunbar8f4a8a62012-05-08 16:50:35 +000097
Bob Wilsonc16b7042014-05-06 15:58:06 +000098.. option:: -b, --branch-probabilities
Daniel Dunbar8f4a8a62012-05-08 16:50:35 +000099
Justin Bogner92f47392015-03-12 04:18:21 +0000100 Display conditional branch probabilities and a summary of branch information.
Daniel Dunbar8f4a8a62012-05-08 16:50:35 +0000101
Bob Wilsonc16b7042014-05-06 15:58:06 +0000102.. option:: -c, --branch-counts
Daniel Dunbar8f4a8a62012-05-08 16:50:35 +0000103
Bob Wilsonc16b7042014-05-06 15:58:06 +0000104 Display branch counts instead of probabilities (requires -b).
105
106.. option:: -f, --function-summaries
107
108 Show a summary of coverage for each function instead of just one summary for
109 an entire source file.
110
111.. option:: --help
112
113 Display available options (--help-hidden for more).
114
115.. option:: -l, --long-file-names
116
117 For coverage output of files included from the main source file, add the
118 main file name followed by ``##`` as a prefix to the output file names. This
119 can be combined with the --preserve-paths option to use complete paths for
120 both the main file and the included file.
121
Justin Bognerd9687172014-05-07 02:33:58 +0000122.. option:: -n, --no-output
123
124 Do not output any ``.gcov`` files. Summary information is still
125 displayed.
126
Bob Wilsonc16b7042014-05-06 15:58:06 +0000127.. option:: -o=<DIR|FILE>, --object-directory=<DIR>, --object-file=<FILE>
128
129 Find objects in DIR or based on FILE's path. If you specify a particular
130 object file, the coverage data files are expected to have the same base name
131 with ``.gcno`` and ``.gcda`` extensions. If you specify a directory, the
132 files are expected in that directory with the same base name as the source
133 file.
134
135.. option:: -p, --preserve-paths
136
137 Preserve path components when naming the coverage output files. In addition
138 to the source file name, include the directories from the path to that
139 file. The directories are separate by ``#`` characters, with ``.`` directories
140 removed and ``..`` directories replaced by ``^`` characters. When used with
141 the --long-file-names option, this applies to both the main file name and the
142 included file name.
143
144.. option:: -u, --unconditional-branches
145
146 Include unconditional branches in the output for the --branch-probabilities
147 option.
148
149.. option:: -version
150
151 Display the version of llvm-cov.
Daniel Dunbar8f4a8a62012-05-08 16:50:35 +0000152
153EXIT STATUS
Justin Bogner92f47392015-03-12 04:18:21 +0000154^^^^^^^^^^^
Daniel Dunbar8f4a8a62012-05-08 16:50:35 +0000155
Justin Bogner92f47392015-03-12 04:18:21 +0000156:program:`llvm-cov gcov` returns 1 if it cannot read input files. Otherwise,
157it exits with zero.
Daniel Dunbar8f4a8a62012-05-08 16:50:35 +0000158
Justin Bogner92f47392015-03-12 04:18:21 +0000159
160.. program:: llvm-cov show
161
162.. _llvm-cov-show:
163
164SHOW COMMAND
165------------
166
167SYNOPSIS
168^^^^^^^^
169
Vedant Kumara3661ef2016-10-25 17:40:55 +0000170:program:`llvm-cov show` [*options*] -instr-profile *PROFILE* *BIN* [*-object BIN,...*] [[*-object BIN*]] [*SOURCES*]
Justin Bogner92f47392015-03-12 04:18:21 +0000171
172DESCRIPTION
173^^^^^^^^^^^
174
Vedant Kumara3661ef2016-10-25 17:40:55 +0000175The :program:`llvm-cov show` command shows line by line coverage of the
176binaries *BIN*,... using the profile data *PROFILE*. It can optionally be
177filtered to only show the coverage for the files listed in *SOURCES*.
Justin Bogner92f47392015-03-12 04:18:21 +0000178
Bob Wilson98105882015-04-21 16:32:02 +0000179To use :program:`llvm-cov show`, you need a program that is compiled with
Justin Bogner92f47392015-03-12 04:18:21 +0000180instrumentation to emit profile and coverage data. To build such a program with
181``clang`` use the ``-fprofile-instr-generate`` and ``-fcoverage-mapping``
182flags. If linking with the ``clang`` driver, pass ``-fprofile-instr-generate``
183to the link stage to make sure the necessary runtime libraries are linked in.
184
185The coverage information is stored in the built executable or library itself,
Vedant Kumara3661ef2016-10-25 17:40:55 +0000186and this is what you should pass to :program:`llvm-cov show` as a *BIN*
Justin Bogner92f47392015-03-12 04:18:21 +0000187argument. The profile data is generated by running this instrumented program
188normally. When the program exits it will write out a raw profile file,
189typically called ``default.profraw``, which can be converted to a format that
190is suitable for the *PROFILE* argument using the :program:`llvm-profdata merge`
191tool.
192
193OPTIONS
194^^^^^^^
195
196.. option:: -show-line-counts
197
198 Show the execution counts for each line. This is enabled by default, unless
199 another ``-show`` option is used.
200
201.. option:: -show-expansions
202
203 Expand inclusions, such as preprocessor macros or textual inclusions, inline
204 in the display of the source file.
205
206.. option:: -show-instantiations
207
208 For source regions that are instantiated multiple times, such as templates in
209 ``C++``, show each instantiation separately as well as the combined summary.
210
211.. option:: -show-regions
212
213 Show the execution counts for each region by displaying a caret that points to
214 the character where the region starts.
215
216.. option:: -show-line-counts-or-regions
217
218 Show the execution counts for each line if there is only one region on the
219 line, but show the individual regions if there are multiple on the line.
220
Justin Bogner7bf61d32015-03-19 18:22:46 +0000221.. option:: -use-color[=VALUE]
Justin Bogner92f47392015-03-12 04:18:21 +0000222
Justin Bogner7bf61d32015-03-19 18:22:46 +0000223 Enable or disable color output. By default this is autodetected.
Justin Bogner92f47392015-03-12 04:18:21 +0000224
225.. option:: -arch=<name>
226
Bob Wilson98105882015-04-21 16:32:02 +0000227 If the covered binary is a universal binary, select the architecture to use.
228 It is an error to specify an architecture that is not included in the
229 universal binary or to use an architecture that does not match a
230 non-universal binary.
Justin Bogner92f47392015-03-12 04:18:21 +0000231
232.. option:: -name=<NAME>
233
234 Show code coverage only for functions with the given name.
235
236.. option:: -name-regex=<PATTERN>
237
238 Show code coverage only for functions that match the given regular expression.
239
Vedant Kumar635c83c2016-06-28 00:15:54 +0000240.. option:: -format=<FORMAT>
241
Vedant Kumar4c010922016-07-06 21:44:05 +0000242 Use the specified output format. The supported formats are: "text", "html".
Vedant Kumar635c83c2016-06-28 00:15:54 +0000243
Vedant Kumarad547d32016-08-04 18:00:42 +0000244.. option:: -tab-size=<TABSIZE>
245
246 Replace tabs with <TABSIZE> spaces when preparing reports. Currently, this is
247 only supported for the html format.
248
Vedant Kumar7937ef32016-06-28 02:09:39 +0000249.. option:: -output-dir=PATH
250
251 Specify a directory to write coverage reports into. If the directory does not
252 exist, it is created. When used in function view mode (i.e when -name or
253 -name-regex are used to select specific functions), the report is written to
254 PATH/functions.EXTENSION. When used in file view mode, a report for each file
255 is written to PATH/REL_PATH_TO_FILE.EXTENSION.
256
Vedant Kumar424f51b2016-07-15 22:44:57 +0000257.. option:: -Xdemangler=<TOOL>|<TOOL-OPTION>
258
259 Specify a symbol demangler. This can be used to make reports more
260 human-readable. This option can be specified multiple times to supply
261 arguments to the demangler (e.g `-Xdemangler c++filt -Xdemangler -n` for C++).
262 The demangler is expected to read a newline-separated list of symbols from
263 stdin and write a newline-separated list of the same length to stdout.
264
Justin Bogner92f47392015-03-12 04:18:21 +0000265.. option:: -line-coverage-gt=<N>
266
267 Show code coverage only for functions with line coverage greater than the
268 given threshold.
269
270.. option:: -line-coverage-lt=<N>
271
272 Show code coverage only for functions with line coverage less than the given
273 threshold.
274
275.. option:: -region-coverage-gt=<N>
276
277 Show code coverage only for functions with region coverage greater than the
278 given threshold.
279
280.. option:: -region-coverage-lt=<N>
281
282 Show code coverage only for functions with region coverage less than the given
283 threshold.
284
285.. program:: llvm-cov report
286
287.. _llvm-cov-report:
288
289REPORT COMMAND
290--------------
291
292SYNOPSIS
293^^^^^^^^
294
Vedant Kumara3661ef2016-10-25 17:40:55 +0000295:program:`llvm-cov report` [*options*] -instr-profile *PROFILE* *BIN* [*-object BIN,...*] [[*-object BIN*]] [*SOURCES*]
Justin Bogner92f47392015-03-12 04:18:21 +0000296
297DESCRIPTION
298^^^^^^^^^^^
299
Vedant Kumara3661ef2016-10-25 17:40:55 +0000300The :program:`llvm-cov report` command displays a summary of the coverage of
301the binaries *BIN*,... using the profile data *PROFILE*. It can optionally be
302filtered to only show the coverage for the files listed in *SOURCES*.
Justin Bogner92f47392015-03-12 04:18:21 +0000303
304If no source files are provided, a summary line is printed for each file in the
305coverage data. If any files are provided, summaries are shown for each function
306in the listed files instead.
307
308For information on compiling programs for coverage and generating profile data,
Justin Bogner0ea61e92015-03-12 04:43:01 +0000309see :ref:`llvm-cov-show`.
Justin Bogner92f47392015-03-12 04:18:21 +0000310
311OPTIONS
312^^^^^^^
313
Justin Bogner7bf61d32015-03-19 18:22:46 +0000314.. option:: -use-color[=VALUE]
Justin Bogner92f47392015-03-12 04:18:21 +0000315
Justin Bogner7bf61d32015-03-19 18:22:46 +0000316 Enable or disable color output. By default this is autodetected.
Justin Bogner92f47392015-03-12 04:18:21 +0000317
318.. option:: -arch=<name>
319
Bob Wilson98105882015-04-21 16:32:02 +0000320 If the covered binary is a universal binary, select the architecture to use.
321 It is an error to specify an architecture that is not included in the
322 universal binary or to use an architecture that does not match a
323 non-universal binary.
Vedant Kumar7101d732016-07-26 22:50:58 +0000324
Vedant Kumar90f1b822016-07-26 23:09:57 +0000325.. program:: llvm-cov export
326
327.. _llvm-cov-export:
328
Vedant Kumar7101d732016-07-26 22:50:58 +0000329EXPORT COMMAND
330--------------
331
332SYNOPSIS
333^^^^^^^^
334
Vedant Kumara3661ef2016-10-25 17:40:55 +0000335:program:`llvm-cov export` [*options*] -instr-profile *PROFILE* *BIN* [*-object BIN,...*] [[*-object BIN*]]
Vedant Kumar7101d732016-07-26 22:50:58 +0000336
337DESCRIPTION
338^^^^^^^^^^^
339
340The :program:`llvm-cov export` command exports regions, functions, expansions,
Vedant Kumara3661ef2016-10-25 17:40:55 +0000341and summaries of the coverage of the binaries *BIN*,... using the profile data
Vedant Kumar7101d732016-07-26 22:50:58 +0000342*PROFILE* as JSON.
343
344For information on compiling programs for coverage and generating profile data,
345see :ref:`llvm-cov-show`.
346
347OPTIONS
348^^^^^^^
349
350.. option:: -arch=<name>
351
352 If the covered binary is a universal binary, select the architecture to use.
353 It is an error to specify an architecture that is not included in the
354 universal binary or to use an architecture that does not match a
355 non-universal binary.