rust/compiler/rustc_mir/src/transform/coverage
Rich Kadel cb70221857 Coverage instruments closure bodies in macros (not the macro body)
Fixes: #84884

This solution might be considered a compromise, but I think it is the
better choice.

The results in the `closure.rs` test correctly resolve all test cases
broken as described in #84884.

One test pattern (in both `closure_macro.rs` and
`closure_macro_async.rs`) was also affected, and removes coverage
statistics for the lines inside the closure, because the closure
includes a macro. (The coverage remains at the callsite of the macro, so
we lose some detail, but there isn't a perfect choice with macros.

Often macro implementations are split across the macro and the callsite,
and there doesn't appear to be a single "right choice" for which body
should be covered. For the current implementation, we can't do both.

The callsite is most likely to be the preferred site for coverage.

I applied this fix to all `MacroKinds`, not just `Bang`.

I'm trying to resolve an issue of lost coverage in a
`MacroKind::Attr`-based, function-scoped macro. Instead of only
searching for a body_span that is "not a function-like macro" (that is,
MacroKind::Bang), I'm expanding this to all `MacroKind`s. Maybe I should
expand this to `ExpnKind::Desugaring` and `ExpnKind::AstPass` (or
subsets, depending on their sub-kinds) as well, but I'm not sure that's
a good idea.

I'd like to add a test of the `Attr` macro on functions, but I need time
to figure out how to constract a good, simple example without external
crate dependencies. For the moment, all tests still work as expected (no
change), this new commit shouldn't have a negative affect, and more
importantly, I believe it will have a positive effect. I will try to
confirm this.
2021-05-06 11:15:39 -07:00
..
test_macros Remove an unused dependency that made rustdoc crash 2020-12-12 22:13:03 +00:00
counters.rs Fix typo in counters.rs 2021-01-19 23:42:18 +09:00
debug.rs fix few typos 2021-04-19 15:57:08 +03:00
graph.rs Rename Option::get_or_insert_default 2021-03-10 09:07:16 -06:00
mod.rs Coverage instruments closure bodies in macros (not the macro body) 2021-05-06 11:15:39 -07:00
query.rs coverage bug fixes and optimization support 2021-03-19 17:11:50 -07:00
spans.rs Rebuilt out of date tests and fixed an old bug now exposed 2021-04-30 01:10:48 -07:00
tests.rs More improvements to macro coverage 2021-04-28 20:27:27 -07:00