File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -251,7 +251,7 @@ the exported data at a high level in the llvm-cov source code.
251
251
Interpreting reports
252
252
====================
253
253
254
- There are four statistics tracked in a coverage summary:
254
+ There are five statistics tracked in a coverage summary:
255
255
256
256
* Function coverage is the percentage of functions which have been executed at
257
257
least once. A function is considered to be executed if any of its
@@ -260,7 +260,8 @@ There are four statistics tracked in a coverage summary:
260
260
* Instantiation coverage is the percentage of function instantiations which
261
261
have been executed at least once. Template functions and static inline
262
262
functions from headers are two kinds of functions which may have multiple
263
- instantiations.
263
+ instantiations. This statistic is hidden by default in reports, but can be
264
+ enabled via the ``-show-instantiation-summary `` option.
264
265
265
266
* Line coverage is the percentage of code lines which have been executed at
266
267
least once. Only executable lines within function bodies are considered to be
Original file line number Diff line number Diff line change @@ -364,6 +364,10 @@ OPTIONS
364
364
universal binary or to use an architecture that does not match a
365
365
non-universal binary.
366
366
367
+ .. option :: -show-region-summary
368
+
369
+ Show statistics for all regions. Defaults to true.
370
+
367
371
.. option :: -show-branch-summary
368
372
369
373
Show statistics for all branch conditions. Defaults to true.
You can’t perform that action at this time.
0 commit comments