-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
Adjust Miri value visitor, and doc-comment layout components #69257
Merged
Conversation
This file contains 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
rust-highfive
added
the
S-waiting-on-review
Status: Awaiting review from the assignee but also interested parties.
label
Feb 18, 2020
RalfJung
force-pushed
the
layout-visitor
branch
from
February 18, 2020 08:48
834b640
to
be34533
Compare
RalfJung
force-pushed
the
layout-visitor
branch
from
February 18, 2020 08:50
be34533
to
bd979ed
Compare
oli-obk
approved these changes
Feb 19, 2020
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.
r=me on the visitor and test changes
r? @eddyb for the rest |
eddyb
reviewed
Feb 26, 2020
eddyb
reviewed
Feb 26, 2020
eddyb
reviewed
Feb 26, 2020
eddyb
reviewed
Feb 26, 2020
eddyb
reviewed
Feb 26, 2020
eddyb
reviewed
Feb 26, 2020
eddyb
reviewed
Feb 26, 2020
eddyb
reviewed
Feb 26, 2020
eddyb
reviewed
Feb 26, 2020
eddyb
reviewed
Feb 26, 2020
eddyb
reviewed
Feb 26, 2020
This comment has been minimized.
This comment has been minimized.
RalfJung
force-pushed
the
layout-visitor
branch
from
February 26, 2020 12:34
3492188
to
12054dc
Compare
RalfJung
commented
Feb 26, 2020
eddyb
approved these changes
Mar 2, 2020
@bors r+ |
📌 Commit 12054dc has been approved by |
bors
added
S-waiting-on-bors
Status: Waiting on bors to run and complete tests. Bors will change the label on completion.
and removed
S-waiting-on-review
Status: Awaiting review from the assignee but also interested parties.
labels
Mar 2, 2020
☀️ Test successful - checks-azure |
rust-highfive
added a commit
to rust-lang-nursery/rust-toolstate
that referenced
this pull request
Mar 2, 2020
Tested on commit rust-lang/rust@c839a7b. Direct link to PR: <rust-lang/rust#69257> 💔 rls on linux: test-pass → test-fail (cc @Xanewok).
bors
added a commit
to rust-lang/miri
that referenced
this pull request
Mar 2, 2020
adjust for rustc changes The Miri side of rust-lang/rust#69257
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
merged-by-bors
This PR was explicitly merged by bors.
S-waiting-on-bors
Status: Waiting on bors to run and complete tests. Bors will change the label on completion.
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 realized that I still didn't have quite the right intuition for how our
LayoutDetails
work, so I had to adjust the Miri value visitor to the things I understood better now. I also added some doc-comments toLayoutDetails
as a hopefully canonical place to note such things.The main visitor change is that we first look at all the fields (according to
FieldPlacement
), and then check the variants and handleMultiple
appropriately. I did not quite realize how orthogonal "fields" and "variants" are.I also moved the check for the scalar ABI to after checking all the fields; this leads to better (more type-driven) error messages.
And it looks like we can finally remove that magic hack for
ty::Generator
. :Dr? @oli-obk for the Miri/visitor changes and @eddyb for the layout docs
The Miri PR is at: rust-lang/miri#1178