]> git.lizzy.rs Git - rust.git/blob - src/doc/rustc/src/instrument-coverage.md
new trait solver: rebase impl substs for gats correctly
[rust.git] / src / doc / rustc / src / instrument-coverage.md
1 # Instrumentation-based Code Coverage
2
3 ## Introduction
4
5 The Rust compiler includes two code coverage implementations:
6
7 -   A GCC-compatible, gcov-based coverage implementation, enabled with `-Z profile`, which derives coverage data based on DebugInfo.
8 -   A source-based code coverage implementation, enabled with `-C instrument-coverage`, which uses LLVM's native, efficient coverage instrumentation to generate very precise coverage data.
9
10 This document describes how to enable and use the LLVM instrumentation-based coverage, via the `-C instrument-coverage` compiler flag.
11
12 ## How it works
13
14 When `-C instrument-coverage` is enabled, the Rust compiler enhances rust-based libraries and binaries by:
15
16 -   Automatically injecting calls to an LLVM intrinsic ([`llvm.instrprof.increment`]), at functions and branches in compiled code, to increment counters when conditional sections of code are executed.
17 -   Embedding additional information in the data section of each library and binary (using the [LLVM Code Coverage Mapping Format] _Version 5_, if compiling with LLVM 12, or _Version 6_, if compiling with LLVM 13 or higher), to define the code regions (start and end positions in the source code) being counted.
18
19 When running a coverage-instrumented program, the counter values are written to a `profraw` file at program termination. LLVM bundles tools that read the counter results, combine those results with the coverage map (embedded in the program binary), and generate coverage reports in multiple formats.
20
21 [`llvm.instrprof.increment`]: https://llvm.org/docs/LangRef.html#llvm-instrprof-increment-intrinsic
22 [llvm code coverage mapping format]: https://llvm.org/docs/CoverageMappingFormat.html
23
24 > **Note**: `-C instrument-coverage` also automatically enables `-C symbol-mangling-version=v0` (tracking issue [#60705]). The `v0` symbol mangler is strongly recommended. The `v0` demangler can be overridden by explicitly adding `-Z unstable-options -C symbol-mangling-version=legacy`.
25
26 [#60705]: https://github.com/rust-lang/rust/issues/60705
27
28 ## Enable coverage profiling in the Rust compiler
29
30 Rust's source-based code coverage requires the Rust "profiler runtime". Without it, compiling with `-C instrument-coverage` generates an error that the profiler runtime is missing.
31
32 The Rust `nightly` distribution channel includes the profiler runtime, by default.
33
34 > **Important**: If you are building the Rust compiler from the source distribution, the profiler runtime is _not_ enabled in the default `config.toml.example`. Edit your `config.toml` file and ensure the `profiler` feature is set it to `true` (either under the `[build]` section, or under the settings for an individual `[target.<triple>]`):
35 >
36 > ```toml
37 > # Build the profiler runtime (required when compiling with options that depend
38 > # on this runtime, such as `-C profile-generate` or `-C instrument-coverage`).
39 > profiler = true
40 > ```
41
42 ### Building the demangler
43
44 LLVM coverage reporting tools generate results that can include function names and other symbol references, and the raw coverage results report symbols using the compiler's "mangled" version of the symbol names, which can be difficult to interpret. To work around this issue, LLVM coverage tools also support a user-specified symbol name demangler.
45
46 One option for a Rust demangler is [`rustfilt`], which can be installed with:
47
48 ```shell
49 cargo install rustfilt
50 ```
51
52 Another option, if you are building from the Rust compiler source distribution, is to use the `rust-demangler` tool included in the Rust source distribution, which can be built with:
53
54 ```shell
55 $ ./x.py build rust-demangler
56 ```
57
58 [`rustfilt`]: https://crates.io/crates/rustfilt
59
60 ## Compiling with coverage enabled
61
62 Set the `-C instrument-coverage` compiler flag in order to enable LLVM source-based code coverage profiling.
63
64 The default option generates coverage for all functions, including unused (never called) functions and generics. The compiler flag supports an optional value to tailor this behavior. (See [`-C instrument-coverage=<options>`](#-c-instrument-coverageoptions), below.)
65
66 With `cargo`, you can instrument your program binary _and_ dependencies at the same time.
67
68 For example (if your project's Cargo.toml builds a binary by default):
69
70 ```shell
71 $ cd your-project
72 $ cargo clean
73 $ RUSTFLAGS="-C instrument-coverage" cargo build
74 ```
75
76 If `cargo` is not configured to use your `profiler`-enabled version of `rustc`, set the path explicitly via the `RUSTC` environment variable. Here is another example, using a `stage1` build of `rustc` to compile an `example` binary (from the [`json5format`] crate):
77
78 ```shell
79 $ RUSTC=$HOME/rust/build/x86_64-unknown-linux-gnu/stage1/bin/rustc \
80     RUSTFLAGS="-C instrument-coverage" \
81     cargo build --example formatjson5
82 ```
83
84 > **Note**: that some compiler options, combined with `-C instrument-coverage`, can produce LLVM IR and/or linked binaries that are incompatible with LLVM coverage maps. For example, coverage requires references to actual functions in LLVM IR. If any covered function is optimized out, the coverage tools may not be able to process the coverage results. If you need to pass additional options, with coverage enabled, test them early, to confirm you will get the coverage results you expect.
85
86 ## Running the instrumented binary to generate raw coverage profiling data
87
88 In the previous example, `cargo` generated the coverage-instrumented binary `formatjson5`:
89
90 ```shell
91 $ echo "{some: 'thing'}" | target/debug/examples/formatjson5 -
92 ```
93
94 ```json5
95 {
96     some: "thing",
97 }
98 ```
99
100 After running this program, a new file named like `default_11699812450447639123_0_20944` should be in the current working directory.
101 A new, unique file name will be generated each time the program is run to avoid overwriting previous data.
102
103 ```shell
104 $ echo "{some: 'thing'}" | target/debug/examples/formatjson5 -
105 ...
106 $ ls default_*.profraw
107 default_11699812450447639123_0_20944.profraw
108 ```
109
110 You can also set a specific file name or path for the generated `.profraw` files by using the environment variable `LLVM_PROFILE_FILE`:
111
112 ```shell
113 $ echo "{some: 'thing'}" \
114     | LLVM_PROFILE_FILE="formatjson5.profraw" target/debug/examples/formatjson5 -
115 ...
116 $ ls formatjson5.profraw
117 formatjson5.profraw
118 ```
119
120 If `LLVM_PROFILE_FILE` contains a path to a non-existent directory, the missing directory structure will be created. Additionally, the following special pattern strings are rewritten:
121
122 -   `%p` - The process ID.
123 -   `%h` - The hostname of the machine running the program.
124 -   `%t` - The value of the TMPDIR environment variable.
125 -   `%Nm` - the instrumented binary’s signature: The runtime creates a pool of N raw profiles, used for on-line profile merging. The runtime takes care of selecting a raw profile from the pool, locking it, and updating it before the program exits. `N` must be between `1` and `9`, and defaults to `1` if omitted (with simply `%m`).
126 -   `%c` - Does not add anything to the filename, but enables a mode (on some platforms, including Darwin) in which profile counter updates are continuously synced to a file. This means that if the instrumented program crashes, or is killed by a signal, perfect coverage information can still be recovered.
127
128 In the first example above, the value `11699812450447639123_0` in the generated filename is the instrumented binary's signature,
129 which replaced the `%m` pattern and the value `20944` is the process ID of the binary being executed.
130
131 ## Installing LLVM coverage tools
132
133 LLVM's supplies two tools—`llvm-profdata` and `llvm-cov`—that process coverage data and generate reports. There are several ways to find and/or install these tools, but note that the coverage mapping data generated by the Rust compiler requires LLVM version 12 or higher, and processing the *raw* data may require exactly the LLVM version used by the compiler. (`llvm-cov --version` typically shows the tool's LLVM version number, and `rustc --verbose --version` shows the version of LLVM used by the Rust compiler.)
134
135 -   You can install compatible versions of these tools via the `rustup` component `llvm-tools-preview`. This component is the recommended path, though the specific tools available and their interface is not currently subject to Rust's usual stability guarantees. In this case, you may also find `cargo-binutils` useful as a wrapper around these tools.
136 -   You can install a compatible version of LLVM tools from your operating system distribution, or from your distribution of LLVM.
137 -   If you are building the Rust compiler from source, you can optionally use the bundled LLVM tools, built from source. Those tool binaries can typically be found in your build platform directory at something like: `rust/build/x86_64-unknown-linux-gnu/llvm/bin/llvm-*`.
138
139 The examples in this document show how to use the llvm tools directly.
140
141 ## Creating coverage reports
142
143 Raw profiles have to be indexed before they can be used to generate coverage reports. This is done using [`llvm-profdata merge`], which can combine multiple raw profiles and index them at the same time:
144
145 ```shell
146 $ llvm-profdata merge -sparse formatjson5.profraw -o formatjson5.profdata
147 ```
148
149 Finally, the `.profdata` file is used, in combination with the coverage map (from the program binary) to generate coverage reports using [`llvm-cov report`], for a coverage summaries; and [`llvm-cov show`], to see detailed coverage of lines and regions (character ranges) overlaid on the original source code.
150
151 These commands have several display and filtering options. For example:
152
153 ```shell
154 $ llvm-cov show -Xdemangler=rustfilt target/debug/examples/formatjson5 \
155     -instr-profile=formatjson5.profdata \
156     -show-line-counts-or-regions \
157     -show-instantiations \
158     -name=add_quoted_string
159 ```
160
161 <img alt="Screenshot of sample `llvm-cov show` result, for function add_quoted_string" src="images/llvm-cov-show-01.png" class="center"/>
162 <br/>
163 <br/>
164
165 Some of the more notable options in this example include:
166
167 -   `--Xdemangler=rustfilt` - the command name or path used to demangle Rust symbols (`rustfilt` in the example, but this could also be a path to the `rust-demangler` tool)
168 -   `target/debug/examples/formatjson5` - the instrumented binary (from which to extract the coverage map)
169 -   `--instr-profile=<path-to-file>.profdata` - the location of the `.profdata` file created by `llvm-profdata merge` (from the `.profraw` file generated by the instrumented binary)
170 -   `--name=<exact-function-name>` - to show coverage for a specific function (or, consider using another filter option, such as `--name-regex=<pattern>`)
171
172 [`llvm-profdata merge`]: https://llvm.org/docs/CommandGuide/llvm-profdata.html#profdata-merge
173 [`llvm-cov report`]: https://llvm.org/docs/CommandGuide/llvm-cov.html#llvm-cov-report
174 [`llvm-cov show`]: https://llvm.org/docs/CommandGuide/llvm-cov.html#llvm-cov-show
175
176 > **Note**: Coverage can also be disabled on an individual function by annotating the function with the [`no_coverage` attribute] (which requires the feature flag `#![feature(no_coverage)]`).
177
178 [`no_coverage` attribute]: ../unstable-book/language-features/no-coverage.html
179
180 ## Interpreting reports
181
182 There are four statistics tracked in a coverage summary:
183
184 -   Function coverage is the percentage of functions that have been executed at least once. A function is considered to be executed if any of its instantiations are executed.
185 -   Instantiation coverage is the percentage of function instantiations that have been executed at least once. Generic functions and functions generated from macros are two kinds of functions that may have multiple instantiations.
186 -   Line coverage is the percentage of code lines that have been executed at least once. Only executable lines within function bodies are considered to be code lines.
187 -   Region coverage is the percentage of code regions that have been executed at least once. A code region may span multiple lines: for example, in a large function body with no control flow. In other cases, a single line can contain multiple code regions: `return x || (y && z)` has countable code regions for `x` (which may resolve the expression, if `x` is `true`), `|| (y && z)` (executed only if `x` was `false`), and `return` (executed in either situation).
188
189 Of these four statistics, function coverage is usually the least granular while region coverage is the most granular. The project-wide totals for each statistic are listed in the summary.
190
191 ## Test coverage
192
193 A typical use case for coverage analysis is test coverage. Rust's source-based coverage tools can both measure your tests' code coverage as percentage, and pinpoint functions and branches not tested.
194
195 The following example (using the [`json5format`] crate, for demonstration purposes) show how to generate and analyze coverage results for all tests in a crate.
196
197 Since `cargo test` both builds and runs the tests, we set the additional `RUSTFLAGS`, to add the `-C instrument-coverage` flag.
198
199 ```shell
200 $ RUSTFLAGS="-C instrument-coverage" \
201     cargo test --tests
202 ```
203
204 Make note of the test binary file paths, displayed after the word "`Running`" in the test output:
205
206 ```text
207    ...
208    Compiling json5format v0.1.3 ($HOME/json5format)
209     Finished test [unoptimized + debuginfo] target(s) in 14.60s
210
211      Running target/debug/deps/json5format-fececd4653271682
212 running 25 tests
213 ...
214 test result: ok. 25 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out
215
216      Running target/debug/deps/lib-30768f9c53506dc5
217 running 31 tests
218 ...
219 test result: ok. 31 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out
220 ```
221
222 You should have one or more `.profraw` files now, one for each test binary. Run the `profdata` tool to merge them:
223
224 ```shell
225 $ llvm-profdata merge -sparse default_*.profraw -o json5format.profdata
226 ```
227
228 Then run the `cov` tool, with the `profdata` file and all test binaries:
229
230 ```shell
231 $ llvm-cov report \
232     --use-color --ignore-filename-regex='/.cargo/registry' \
233     --instr-profile=json5format.profdata \
234     --object target/debug/deps/lib-30768f9c53506dc5 \
235     --object target/debug/deps/json5format-fececd4653271682
236 $ llvm-cov show \
237     --use-color --ignore-filename-regex='/.cargo/registry' \
238     --instr-profile=json5format.profdata \
239     --object target/debug/deps/lib-30768f9c53506dc5 \
240     --object target/debug/deps/json5format-fececd4653271682 \
241     --show-instantiations --show-line-counts-or-regions \
242     --Xdemangler=rustfilt | less -R
243 ```
244
245 > **Note**: If overriding the default `profraw` file name via the `LLVM_PROFILE_FILE` environment variable, it's highly recommended to use the `%m` and `%p` special pattern strings to generate unique file names in the case of more than a single test binary being executed.
246
247 > **Note**: The command line option `--ignore-filename-regex=/.cargo/registry`, which excludes the sources for dependencies from the coverage results.\_
248
249 ### Tips for listing the binaries automatically
250
251 For `bash` users, one suggested way to automatically complete the `cov` command with the list of binaries is with a command like:
252
253 ```bash
254 $ llvm-cov report \
255     $( \
256       for file in \
257         $( \
258           RUSTFLAGS="-C instrument-coverage" \
259             cargo test --tests --no-run --message-format=json \
260               | jq -r "select(.profile.test == true) | .filenames[]" \
261               | grep -v dSYM - \
262         ); \
263       do \
264         printf "%s %s " -object $file; \
265       done \
266     ) \
267   --instr-profile=json5format.profdata --summary-only # and/or other options
268 ```
269
270 Adding `--no-run --message-format=json` to the _same_ `cargo test` command used to run
271 the tests (including the same environment variables and flags) generates output in a JSON
272 format that `jq` can easily query.
273
274 The `printf` command takes this list and generates the `--object <binary>` arguments
275 for each listed test binary.
276
277 ### Including doc tests
278
279 The previous examples run `cargo test` with `--tests`, which excludes doc tests.[^79417]
280
281 To include doc tests in the coverage results, drop the `--tests` flag, and apply the
282 `-C instrument-coverage` flag, and some doc-test-specific options in the
283 `RUSTDOCFLAGS` environment variable. (The `llvm-profdata` command does not change.)
284
285 ```bash
286 $ RUSTFLAGS="-C instrument-coverage" \
287   RUSTDOCFLAGS="-C instrument-coverage -Z unstable-options --persist-doctests target/debug/doctestbins" \
288     cargo test
289 $ llvm-profdata merge -sparse default_*.profraw -o json5format.profdata
290 ```
291
292 The `-Z unstable-options --persist-doctests` flag is required, to save the test binaries
293 (with their coverage maps) for `llvm-cov`.
294
295 ```bash
296 $ llvm-cov report \
297     $( \
298       for file in \
299         $( \
300           RUSTFLAGS="-C instrument-coverage" \
301           RUSTDOCFLAGS="-C instrument-coverage -Z unstable-options --persist-doctests target/debug/doctestbins" \
302             cargo test --no-run --message-format=json \
303               | jq -r "select(.profile.test == true) | .filenames[]" \
304               | grep -v dSYM - \
305         ) \
306         target/debug/doctestbins/*/rust_out; \
307       do \
308         [[ -x $file ]] && printf "%s %s " -object $file; \
309       done \
310     ) \
311   --instr-profile=json5format.profdata --summary-only # and/or other options
312 ```
313
314 > **Note**: The differences in this `llvm-cov` invocation, compared with the
315 > version without doc tests, include:
316
317 -   The `cargo test ... --no-run` command is updated with the same environment variables
318     and flags used to _build_ the tests, _including_ the doc tests.
319 -   The file glob pattern `target/debug/doctestbins/*/rust_out` adds the `rust_out`
320     binaries generated for doc tests (note, however, that some `rust_out` files may not
321     be executable binaries).
322 -   `[[ -x $file ]] &&` filters the files passed on to the `printf`, to include only
323     executable binaries.
324
325 [^79417]:
326     There is ongoing work to resolve a known issue
327     [(#79417)](https://github.com/rust-lang/rust/issues/79417) that doc test coverage
328     generates incorrect source line numbers in `llvm-cov show` results.
329
330 ## `-C instrument-coverage=<options>`
331
332 -   `-C instrument-coverage=all`: Instrument all functions, including unused functions and unused generics. (This is the same as `-C instrument-coverage`, with no value.)
333 -   `-C instrument-coverage=off`: Do not instrument any functions. (This is the same as simply not including the `-C instrument-coverage` option.)
334 -   `-Zunstable-options -C instrument-coverage=except-unused-generics`: Instrument all functions except unused generics.
335 -   `-Zunstable-options -C instrument-coverage=except-unused-functions`: Instrument only used (called) functions and instantiated generic functions.
336
337 ## Other references
338
339 Rust's implementation and workflow for source-based code coverage is based on the same library and tools used to implement [source-based code coverage in Clang]. (This document is partially based on the Clang guide.)
340
341 [source-based code coverage in clang]: https://clang.llvm.org/docs/SourceBasedCodeCoverage.html
342 [`json5format`]: https://crates.io/crates/json5format