-
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
Make Layout's align a NonZeroUsize #51226
Conversation
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, thanks! Just one thing:
src/libcore/alloc.rs
Outdated
#[inline] | ||
pub fn padding_needed_for(&self, align: usize) -> usize { | ||
// **FIXME**: This function is only called with proper power-of-two | ||
// alignments. Maybe we should turn this into a real assert!. | ||
debug_assert!(align.is_power_of_two()); |
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.
Given that docs say “The return value of this function has no meaning if align
is not a power-of-two.” I think this assertion should not be added. (Though in practice this line is a no-op today since the standard library is always compiled in release mode.)
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.
The FIXME
hints at this. Basically, I found those docs really weird. If it is a precondition to call this with a non-power-of-two align, then it should be asserted (or the function should be unsafe
and the behavior undefined), or it should return Option
.
Are there any other functions in standard that are safe and return meaningless results like this one? Maybe I am missing some context.
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.
It is not undefined behavior to call this method with a non-power-of-two, that only causes it to return an integer value that is not meaningful. So it shouldn’t be unsafe
IMO. Calling it a precondition really depends on what you mean by 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.
It is not undefined behavior to call this method with a non-power-of-two, that only causes it to return an integer value that is not meaningful.
It is undefined if we say it is. That allows us to return a meaningless value, or assert, or abort, or... Maybe I meant implementation defined here, but for implementation defined we need to define what the behavior actually is. With undefined we can do anything, including returning a meaningless value.
Calling it a precondition really depends on what you mean by that.
A precondition on the result having any meaning. AFAICT most APIs in std use Option::None
to indicate that a result is meaningless, but maybe there are some APIs already that just return meaningless usize
s already?
In any case, as long std
tests are built in debug mode and run by some build bot, the debug_assert
should tell us if this behavior is relied upon anywhere in std or 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.
It is undefined if we say it is.
Sure, but why would we? This method only does integer arithmetic.
Anyway, I’m ready to r+ this PR as soon as this chunk is removed. Maybe the design or existence of this method should be revisited, but in the middle of an unrelated PR is not the place to do it.
@SimonSapin I’ll remove the debug assert and ask about it in the tracking
issue.
…On Sat 2. Jun 2018 at 12:50, Simon Sapin ***@***.***> wrote:
***@***.**** commented on this pull request.
------------------------------
In src/libcore/alloc.rs
<#51226 (comment)>:
> #[inline]
pub fn padding_needed_for(&self, align: usize) -> usize {
+ // **FIXME**: This function is only called with proper power-of-two
+ // alignments. Maybe we should turn this into a real assert!.
+ debug_assert!(align.is_power_of_two());
It is undefined if we say it is.
Sure, but why would we? This method only does integer arithmetic.
Anyway, I’m ready to r+ this PR as soon as this chunk is removed. Maybe
the design or existence of this method should be revisited, but in the
middle of an unrelated PR is not the place to do it.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#51226 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AA3Npi6MNz5TtTsrKarvDDaAKmxmWTw8ks5t4m38gaJpZM4UT1v4>
.
|
The job Click to expand the log.
I'm a bot! I can only do what humans tell me to, so if this was not helpful or you have suggestions for improvements, please ping or otherwise contact |
@bors r+ |
📌 Commit 2d7cd70 has been approved by |
Make Layout's align a NonZeroUsize This PR makes the `Layout`'s align field a `NonZeroUsize` since it cannot ever be zero, not even while building a `Layout`. It also contains some drive-by minor cleanups over the docs and the code, like updating the documented error types, or using the `size()` and `align()` methods instead of accessing the fields directly (the latter was required for the `NonZeroUsize` change anyways). r? @SimonSapin cc @Amanieu
Rollup of 6 pull requests Successful merges: - #51143 (Specify that packed types must derive, not implement, Copy) - #51226 (Make Layout's align a NonZeroUsize) - #51297 (Fix run button style) - #51306 (impl Default for &mut str) - #51312 (Clarify the difference between get_mut and into_mut for OccupiedEntry) - #51313 (use type name in E0599 enum variant suggestion) Failed merges:
💥 Test timed out |
This PR makes the
Layout
's align field aNonZeroUsize
since it cannot ever be zero, not even while building aLayout
. It also contains some drive-by minor cleanups over the docs and the code, like updating the documented error types, or using thesize()
andalign()
methods instead of accessing the fields directly (the latter was required for theNonZeroUsize
change anyways).r? @SimonSapin
cc @Amanieu