Stacked Borrows: make scalar field retagging the default#2636
Merged
bors merged 1 commit intorust-lang:masterfrom Oct 29, 2022
Merged
Stacked Borrows: make scalar field retagging the default#2636bors merged 1 commit intorust-lang:masterfrom
bors merged 1 commit intorust-lang:masterfrom
Conversation
113b761 to
14c247c
Compare
Contributor
|
@bors r+ |
Contributor
Contributor
Contributor
|
☀️ Test successful - checks-actions |
Manishearth
added a commit
to Manishearth/rust
that referenced
this pull request
Nov 11, 2022
update Miri Notable PRs: - rust-lang/miri#2636 - rust-lang/miri#2641 - rust-lang/miri#2638
RalfJung
pushed a commit
to RalfJung/miri
that referenced
this pull request
Nov 15, 2022
update Miri Notable PRs: - rust-lang#2636 - rust-lang#2641 - rust-lang#2638
spikespaz
pushed a commit
to spikespaz/dotwalk-rs
that referenced
this pull request
Aug 29, 2024
update Miri Notable PRs: - rust-lang/miri#2636 - rust-lang/miri#2641 - rust-lang/miri#2638
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I think it is time to finally close this soundness gap. Any objections? :)
Unfortunately the latest released versions of hashbrown and scopeguard can fail under full field retagging. The fixes have landed in the git repos but have not been released yet. I don't know if scalar field retagging as enabled by this PR is sufficient to cause problems with these crates, but it seems likely that this would be the case -- e.g. if both
valueanddropfnare scalars, the entire scopeguard struct will be aScalarPairand thus get field retagging.However, given that we actually generate LLVM
noaliasfor these cases, it seems prudent to inform users of this risk. They can easily set-Zmiri-field-retag=noneto opt-out of this change.Cc #2528