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.
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
Make core::mem::MaybeUninit::zeroed a const fn #54832
Make core::mem::MaybeUninit::zeroed a const fn #54832
Changes from all commits
0b6a44c
255f723
b18f946
fde2e91
e5eb54c
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
Why not make
as_mut_ptr
aconst fn
as well and avoid duplicating?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.
I've been digging into making that change, but I keep running into issues like this, and now that I think of it, I can't figure out why this even compiles in the first place:
ManuallyDrop
implements the deref traits, but those functions aren'tconst
.write_bytes
const
, not thewrite_bytes
method formut_ptr
lang item. This should be using the latter, not the intrinsic.I don't understand why this even works as-is. Trying to make
as_mut_ptr
aconst fn
reveals all these issues, but manually inlining it here does not...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.
O_o, that looks like a hole in the const checks, but I don't even know where to start debugging this. Even if the function isn't checked for
min_const_fn
, it should definitely fail to build due to the regular const fn checks.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.
Yea, in the playground this won't compile: https://play.rust-lang.org/?gist=adce30a361142dcea174aee030ea8a91&version=nightly&mode=debug&edition=2018
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.
Could this be related to what #54715 fixes?
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.
No, I think I found it.
is_min_const_fn
doesn't check foris_const_fn
as a prerequisite.The fix is to add
self.is_const_fn(def_id) &&
infront ofrust/src/librustc/ty/constness.rs
Line 43 in 567557f
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.
Why is this code so different from https://github.com/solson/miri/blob/master/src/intrinsic.rs#L420 ?
Also note that the ZST optimization here is wrong. It is UB to call
write_bytes
on an unaligned pointer even for a ZST. Your code fails to check for that.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.
Why does this logic look different than the one for
transmute
above?