-
Notifications
You must be signed in to change notification settings - Fork 137
Adopt and document a preference for aligned loads in validation #2985
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
Conversation
Summary of ChangesHello @jswrenn, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request introduces a significant performance enhancement to the Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Changelog
Activity
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
8657184 to
b8a434a
Compare
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.
Code Review
This pull request introduces a well-thought-out refactoring to make validation aware of memory alignment, which can lead to significant performance improvements. The core change is parameterizing TryFromBytes::is_bit_valid and Ptr::read over a new Alignment trait, allowing the system to use more efficient aligned loads when possible. The implementation is clean, consistent, and applied thoroughly across the library, including the derive macros. The documentation updates and FIXME comments regarding future in-place validation optimizations are also valuable additions. I found no issues with the changes.
b8a434a to
4446f48
Compare
joshlf
left a comment
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.
🔥
joshlf
left a comment
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.
Please address existing comments, but otherwise approved.
4446f48 to
4ba09a3
Compare
This commit parameterizes `TryFromBytes::is_bit_valid` and `Ptr::read` over alignment, ensuring that well-aligned loads are used at the leaves of validation whenever possible. This carries a performance advantage over unaligned loads on many platforms. This manifests in our API as an optimization for `try_transmute!` and `TryFromBytes::try_read_from_*` for destination types with alignments greater than 1. For trivially-aligned destination types, this commit introduces an optimization FIXME noting that validation could (and should) be performed in-place. Makes progress towards #2981. gherrit-pr-id: G74407a530f46f997b4faaeac52452ebc9892b2ae
4ba09a3 to
8923b44
Compare
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #2985 +/- ##
==========================================
- Coverage 92.02% 91.87% -0.15%
==========================================
Files 19 20 +1
Lines 6029 6057 +28
==========================================
+ Hits 5548 5565 +17
- Misses 481 492 +11 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
This commit parameterizes
TryFromBytes::is_bit_validandPtr::readover alignment, ensuring that well-aligned loads areused at the leaves of validation whenever possible. This carries
a performance advantage over unaligned loads on many platforms.
This manifests in our API as an optimization for
try_transmute!and
TryFromBytes::try_read_from_*for destination types withalignments greater than 1. For trivially-aligned destination types,
this commit introduces an optimization FIXME noting that validation
could (and should) be performed in-place.
Makes progress towards #2981.
Latest Update: v5 — Compare vs v4
📚 Full Patch History
Links show the diff between the row version and the column version.