-
-
Notifications
You must be signed in to change notification settings - Fork 15.4k
a bit optimize four-digit chunks in integer formatting #159130
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
+68
−26
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
b165183
a bit optimize four-digit chunks in integer formatting
chirizxc 25435a0
add SAFETY
chirizxc 6618eb6
review
chirizxc 20ec372
Update library/core/src/fmt/num.rs
chirizxc c10ff54
review (x3)
chirizxc dedf120
fix tidy
chirizxc 917aa16
review
chirizxc af98396
review (x2)
chirizxc c257aef
review (x3)
chirizxc b5e581f
mark `enc_16lsd` as `unsafe`
chirizxc ea0c39c
add `# Safety` for `enc_16lsd`
chirizxc 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
Some comments aren't visible on the classic Files Changed page.
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.
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 don't know if this is taking over review (sorry if it is), but if buf has to be exactly four elements long, why not do it like this?
Using it should not be too hard, since https://doc.rust-lang.org/std/primitive.slice.html#impl-TryFrom%3C%26mut+%5BT%5D%3E-for-%26mut+%5BT;+N%5D and if perf sensitive unwrap_unchecked.
View changes since the review
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.
already provides the compiler with the same guarantees a
&mut [MaybeUninit<u8>; 4]would, so switching types wouldn't remove any unsafe or improve codegen, every call site already builds this slice viaget_unchecked_mut(range), itselfunsafeThere 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.
Yeah, unfortunately it's not super ergonomic to cast between arrays and slices this way, and since it's unsafe anyway, it's not really worth it.