-
Notifications
You must be signed in to change notification settings - Fork 246
Replace uninitialized with MaybeUninit
#238
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
Merged
The head ref may contain hidden characters: "demi-uninitialized\u2192maybeuninit"
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
da9d2ca
Replace `uninitialized` with `MaybeUninit`
Demi-Marie 5582d2f
Replace mem::uninitialized() with zero initialization
Demi-Marie 816321e
Merge branch 'master' into demi-uninitialized→maybeuninit
Demi-Marie f13eabf
Improve formatting and force CI retry
Demi-Marie File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
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
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
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
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -74,39 +74,37 @@ macro_rules! impl_try_from_for_primitive { | |||||
| #[doc(hidden)] | ||||||
| macro_rules! uint_overflowing_binop { | ||||||
| ($name:ident, $n_words: tt, $self_expr: expr, $other: expr, $fn:expr) => ({ | ||||||
| use $crate::{core_ as core}; | ||||||
| let $name(ref me) = $self_expr; | ||||||
| let $name(ref you) = $other; | ||||||
|
|
||||||
| let mut ret = unsafe { $crate::core_::mem::uninitialized() }; | ||||||
| let mut ret = [0u64; $n_words]; | ||||||
| let ret_ptr = &mut ret as *mut [u64; $n_words] as *mut u64; | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
| let mut carry = 0u64; | ||||||
| $crate::static_assertions::const_assert!(core::isize::MAX as usize / core::mem::size_of::<u64>() > $n_words); | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👍 BTW, is |
||||||
|
|
||||||
| // `unroll!` is recursive, but doesn’t use `$crate::unroll`, so we need to ensure that it | ||||||
| // is in scope unqualified. | ||||||
| use $crate::unroll; | ||||||
| unroll! { | ||||||
| for i in 0..$n_words { | ||||||
| use $crate::core_::ptr; | ||||||
| use core::ptr; | ||||||
|
|
||||||
| if carry != 0 { | ||||||
| let (res1, overflow1) = ($fn)(me[i], you[i]); | ||||||
| let (res2, overflow2) = ($fn)(res1, carry); | ||||||
|
|
||||||
| unsafe { | ||||||
| ptr::write( | ||||||
| ret_ptr.offset(i as _), | ||||||
| res2 | ||||||
| ); | ||||||
| // SAFETY: `i` is within bounds and `i * size_of::<u64>() < isize::MAX` | ||||||
| *ret_ptr.offset(i as _) = res2 | ||||||
| } | ||||||
| carry = (overflow1 as u8 + overflow2 as u8) as u64; | ||||||
| } else { | ||||||
| let (res, overflow) = ($fn)(me[i], you[i]); | ||||||
|
|
||||||
| unsafe { | ||||||
| ptr::write( | ||||||
| ret_ptr.offset(i as _), | ||||||
| res | ||||||
| ); | ||||||
| // SAFETY: `i` is within bounds and `i * size_of::<u64>() < isize::MAX` | ||||||
| *ret_ptr.offset(i as _) = res | ||||||
| } | ||||||
|
|
||||||
| carry = overflow as u64; | ||||||
|
|
||||||
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.
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'm afraid this is technically a breaking change, since we
pub use static_assertions;, but this is unlikely to be a problem in practice.