Skip to content
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

Hash Ipv*Addr as an integer #128946

Merged
merged 3 commits into from
Aug 15, 2024
Merged

Hash Ipv*Addr as an integer #128946

merged 3 commits into from
Aug 15, 2024

Conversation

orlp
Copy link
Contributor

@orlp orlp commented Aug 10, 2024

The Ipv4Addr and Ipv6Addr structs always have a fixed size, but directly derive Hash. This causes them to call the bytestring hasher implementation, which adds extra work for most hashers. This PR converts the internal representation to a fixed-width integer before passing to the hasher to prevent this.

@rustbot
Copy link
Collaborator

rustbot commented Aug 10, 2024

r? @joboet

rustbot has assigned @joboet.
They will have a look at your PR within the next two weeks and either review your PR or reassign to another reviewer.

Use r? to explicitly pick a reviewer

@rustbot rustbot added S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-libs Relevant to the library team, which will review and decide on the PR/issue. labels Aug 10, 2024
@rust-log-analyzer

This comment has been minimized.

@rust-log-analyzer

This comment has been minimized.

@joboet
Copy link
Member

joboet commented Aug 12, 2024

This seems uncontroversial, but I'm still nominating this for T-libs to sign off on making the hash implementation behaviour be endian-independent.

@rustbot label I-libs-nominated

r=me after their OK

@rustbot rustbot added the I-libs-nominated Nominated for discussion during a libs team meeting. label Aug 12, 2024
@joshtriplett
Copy link
Member

joshtriplett commented Aug 14, 2024

We discussed this in today's libs meeting. Per https://doc.rust-lang.org/nightly/std/hash/trait.Hash.html#portability , there's no guarantee that Hash has the same result on different targets, so by all means do the most efficient thing, which is presumably from_ne_bytes.

@rfcbot r=joboet

@scottmcm
Copy link
Member

This causes them to call the bytestring hasher implementation, which adds extra work for most hashers.

And notably unavoidable extra work due to arrays being Borrow<[_]>. I think that's the most important part of a change here.

Thus I think calling https://doc.rust-lang.org/std/hash/trait.Hash.html#method.hash_slice would also be sufficient, but the from_ne_bytes is fine too.

@joboet
Copy link
Member

joboet commented Aug 14, 2024

@bors r+

@bors
Copy link
Collaborator

bors commented Aug 14, 2024

📌 Commit fce1dec has been approved by joboet

It is now in the queue for this repository.

@bors bors added S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Aug 14, 2024
bors added a commit to rust-lang-ci/rust that referenced this pull request Aug 14, 2024
…iaskrgr

Rollup of 8 pull requests

Successful merges:

 - rust-lang#125970 (CommandExt::before_exec: deprecate safety in edition 2024)
 - rust-lang#127905 (Add powerpc-unknown-linux-muslspe compile target)
 - rust-lang#128925 (derive(SmartPointer): register helper attributes)
 - rust-lang#128946 (Hash Ipv*Addr as an integer)
 - rust-lang#128963 (Add possibility to generate rustdoc JSON output to stdout)
 - rust-lang#129015 (Update books)
 - rust-lang#129067 (Use `append` instead of `extend(drain(..))`)
 - rust-lang#129100 (Fix dependencies cron job)

r? `@ghost`
`@rustbot` modify labels: rollup
bors added a commit to rust-lang-ci/rust that referenced this pull request Aug 15, 2024
…iaskrgr

Rollup of 8 pull requests

Successful merges:

 - rust-lang#125970 (CommandExt::before_exec: deprecate safety in edition 2024)
 - rust-lang#127905 (Add powerpc-unknown-linux-muslspe compile target)
 - rust-lang#128925 (derive(SmartPointer): register helper attributes)
 - rust-lang#128946 (Hash Ipv*Addr as an integer)
 - rust-lang#128963 (Add possibility to generate rustdoc JSON output to stdout)
 - rust-lang#129015 (Update books)
 - rust-lang#129067 (Use `append` instead of `extend(drain(..))`)
 - rust-lang#129100 (Fix dependencies cron job)

r? `@ghost`
`@rustbot` modify labels: rollup
@bors bors merged commit cd1b42c into rust-lang:master Aug 15, 2024
6 checks passed
@rustbot rustbot added this to the 1.82.0 milestone Aug 15, 2024
rust-timer added a commit to rust-lang-ci/rust that referenced this pull request Aug 15, 2024
Rollup merge of rust-lang#128946 - orlp:faster-ip-hash, r=joboet

Hash Ipv*Addr as an integer

The `Ipv4Addr` and `Ipv6Addr` structs always have a fixed size, but directly derive `Hash`. This causes them to call the bytestring hasher implementation, which adds extra work for most hashers. This PR converts the internal representation to a fixed-width integer before passing to the hasher to prevent this.
@dtolnay dtolnay removed the I-libs-nominated Nominated for discussion during a libs team meeting. label Sep 9, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. T-libs Relevant to the library team, which will review and decide on the PR/issue.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

10 participants