commit | f5f1df598aa69835353c1fd2dfe07b0821f6da70 | [log] [tgz] |
---|---|---|
author | Matthew Maurer <[email protected]> | Thu Mar 09 18:07:10 2023 +0000 |
committer | Automerger Merge Worker <[email protected]> | Thu Mar 09 18:07:10 2023 +0000 |
tree | 7dd8cd91c57e22ec0e08ab5f4413073c4b45f8b6 | |
parent | 71e80a684b9eec3244996b80876c99f6e7491d4d [diff] | |
parent | 71d440f9fe864f021275fcb828a0f3db9b30011b [diff] |
Make rustc-hash available to product and vendor am: 114597b8d4 am: bcc3cae7f2 am: 961bcde9fe am: 71d440f9fe Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/rustc-hash/+/2476245 Change-Id: I3c240f200f3c8cb8c4014607757757efb883c3ef Signed-off-by: Automerger Merge Worker <[email protected]>
A speedy hash algorithm used within rustc. The hashmap in liballoc by default uses SipHash which isn‘t quite as speedy as we want. In the compiler we’re not really worried about DOS attempts, so we use a fast non-cryptographic hash.
This is the same as the algorithm used by Firefox -- which is a homespun one not based on any widely-known algorithm -- though modified to produce 64-bit hash values instead of 32-bit hash values. It consistently out-performs an FNV-based hash within rustc itself -- the collision rate is similar or slightly worse than FNV, but the speed of the hash function itself is much higher because it works on up to 8 bytes at a time.
use rustc_hash::FxHashMap; let mut map: FxHashMap<u32, u32> = FxHashMap::default(); map.insert(22, 44);
no_std
This crate can be used as a no_std
crate by disabling the std
feature, which is on by default, as follows:
rustc-hash = { version = "1.0", default-features = false }
In this configuration, FxHasher
is the only export, and the FxHashMap
/FxHashSet
type aliases are omitted.