-
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
Disambiguate between SourceFiles from different crates even if they have the same path #86368
Conversation
r? @davidtwco (rust-highfive has picked a reviewer for you, use r? to override) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me!
@bors r+ |
📌 Commit 2942d18145b8f5e878da7f3adc33ff370f320624 has been approved by |
Thanks for the review, @davidtwco! |
Since this issue was introduced in #83813 which landed in 1.54, I'm nominating for backport to beta (1.54). |
I've built this branch and confirm this solves the ICE for me. Thank you so much @michaelwoerister ! |
⌛ Testing commit 2942d18145b8f5e878da7f3adc33ff370f320624 with merge edadf7cd25a7bbac01eb7438bf7b913cab443d65... |
This comment has been minimized.
This comment has been minimized.
💔 Test failed - checks-actions |
Looks like a legitimate failure. |
I'll look into it. |
It looks like #85834 might be the culprit: |
2942d18
to
3eaeb92
Compare
This comment has been minimized.
This comment has been minimized.
3eaeb92
to
c3c4ab5
Compare
I fixed the issue by encoding the Do you want to take another look, @davidtwco? |
@bors r+ |
📌 Commit c3c4ab5 has been approved by |
☀️ Test successful - checks-actions |
Thanks again @michaelwoerister for fixing this - much obliged! |
You're welcome, @gilescope! |
This seems to have caused a mild (approx. -1%) regression on ctfe-stress-4 for the incr-unchanged case. My intuition is that it may just be an unavoidable cost of the change in representation that was introduced here. (Should a perf run have been done on this PR before it landed? Not an easy call to make; only one benchmark significantly regressed, but from the code itself here, this was a key data structure being modified, so maybe a perf run is always warranted in such cases.) |
@michaelwoerister I found this non-trivial to backport to beta, particularly with errors in |
…6368, r=Mark-Simulacrum Backport rust-lang#85834 and rust-lang#86368 As per discussion in https://rust-lang.zulipchat.com/#narrow/stream/131828-t-compiler/topic/backport.20.2386368, backporting rust-lang#85834 too seems like the safest option for cleanly backporting rust-lang#86368. r? `@Mark-Simulacrum`
This PR fixes an ICE that can occur when the compiler encounters a source file that is part of both the local crate and an upstream crate:
SourceFile
entry forfoo.rs
in theSourceMap
. Since this is an imported source file itssrc
field isNone
.foo.rs
again. It tells theSourceMap
to load the file but because we already have an entry forfoo.rs
theSourceMap
will return the existing version withsrc == None
.src.is_some()
and panics when actually trying to use the file's contents.This PR fixes the issue by adding the source file's associated
CrateNum
to theSourceMap
's interning key. As a consequence the two instances of the file will each have a separate entry in theSourceMap
. They just happen to share the same file path. This approach seemed less problematic to me than trying to mutate theSourceFile
after it had already been created.Another, more involved, approach might be to merge the
src
and theexternal_src
field.Fixes #85955