-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"invalid attempt to unwrap a None some_prev" when using "-Cinstrument-coverage" #118643
Comments
Running into this issue too: https://github.com/ipvm-wg/homestar/actions/runs/7109612850/job/19354816112?pr=467 (involving |
If this started happening very recently, then it may have been triggered by #118525 exposing a latent bug in the coverage pass's span extractor. If my guess is correct, then it might be incidentally fixed by #118666, since it replaces the offending |
There are 5 callers of I don't yet have a concrete theory for how it's None, but given the complexity of the surrounding code it's very plausible that some edge case is being missed. |
I'm having the same issue. On https://github.com/ZcashFoundation/frost-zcash-demo (current main, 2b80c235), this works:
But this fails with the same error as above:
|
I was able to come up with a simple repro for the same ICE message, which gives me confidence that #118666 is likely to fix this. |
This should now be fixed in |
My CI job that started failing due to this, failed again last night (using 2023-12-09 nightly) https://github.com/andrewdavidmackenzie/flow/actions/runs/7159161902/job/19492129798 |
Looks like the original ICE is indeed fixed, but the same circumstances trigger a different (related) ICE later on. My existing regression test doesn't trigger this, curiously. But it's definitely related. |
I am also running into the new error message: https://github.com/Smithay/smithay/actions/runs/7152884265/job/19487233318?pr=1250#step:11:105 Happy to provide more information, if necessary. Thanks for working on this so far! |
I have a decent idea of how to fix this (return early from instrumentor if no spans were extracted), but what’s annoying is that I don’t know how to reproduce it in a way that I can fit into a test. |
coverage: Skip instrumenting a function if no spans were extracted from MIR The immediate symptoms of rust-lang#118643 were fixed by rust-lang#118666, but some users reported that their builds now encounter another coverage-related ICE: ``` error: internal compiler error: compiler/rustc_codegen_llvm/src/coverageinfo/mapgen.rs:98:17: A used function should have had coverage mapping data but did not: (...) ``` I was able to reproduce at least one cause of this error: if no relevant spans could be extracted from a function, but the function contains `CoverageKind::SpanMarker` statements, then codegen still thinks the function is instrumented and complains about the fact that it has no coverage spans. This PR prevents that from happening in two ways: - If we didn't extract any relevant spans from MIR, skip instrumenting the entire function and don't create a `FunctionCoverateInfo` for it. - If coverage codegen sees a `CoverageKind::SpanMarker` statement, skip it early and avoid creating `func_coverage`. --- Fixes rust-lang#118850.
Rollup merge of rust-lang#118852 - Zalathar:no-spans, r=cjgillot coverage: Skip instrumenting a function if no spans were extracted from MIR The immediate symptoms of rust-lang#118643 were fixed by rust-lang#118666, but some users reported that their builds now encounter another coverage-related ICE: ``` error: internal compiler error: compiler/rustc_codegen_llvm/src/coverageinfo/mapgen.rs:98:17: A used function should have had coverage mapping data but did not: (...) ``` I was able to reproduce at least one cause of this error: if no relevant spans could be extracted from a function, but the function contains `CoverageKind::SpanMarker` statements, then codegen still thinks the function is instrumented and complains about the fact that it has no coverage spans. This PR prevents that from happening in two ways: - If we didn't extract any relevant spans from MIR, skip instrumenting the entire function and don't create a `FunctionCoverateInfo` for it. - If coverage codegen sees a `CoverageKind::SpanMarker` statement, skip it early and avoid creating `func_coverage`. --- Fixes rust-lang#118850.
Triage: So we can close this issue then I assume? Tentatively closing but feel free to reopen if there still is a problem to solve. But it's probably better with a new issue with updated step-by-step instructions if there still is a problem. |
Yes, this was fixed by #118852. |
Since at least
nightly-2023-12-04
compilingwlcs_anvil
fromsmithay
usingRUSTFLAGS="-Cinstrument-coverage"
results in an internal compiler error.First noticed on CI here.
The issue is still present after cleaning all relevant caches and also reproduces locally.
The problem seems to be somewhat related to the
profiling
-crate as removing#[profiling::function]
annotations from the methods listed by the compiler after the backtrace "fixes" the issue. (Note we have this annotation in various other places of the library, which don't cause this issue and I can't seem to indentify any pattern.)I was not able to minify the example (but also didn't spent a crazy amount of time trying), but the following diff "fixes" the compilation, re-introducing any of the removed lines causes the issue to reappear. (Hopefully this is useful for debugging.)
Diff
Meta
(Version used to reproduce locally.)
rustup run nightly rustc --version --verbose
:Error output
Backtrace
The text was updated successfully, but these errors were encountered: