commit | f1bf6477a94cd91d0ae731c982977bee137f19ac | [log] [tgz] |
---|---|---|
author | James Farrell <[email protected]> | Thu Aug 29 16:00:27 2024 +0000 |
committer | Automerger Merge Worker <[email protected]> | Thu Aug 29 16:00:27 2024 +0000 |
tree | 82305d08b799760d8d2df4297c7fc9acef65a700 | |
parent | 555b35b636f7d1f6601c0844e36a4360b8ed4f5f [diff] | |
parent | 5996cda6175fd43b4e60a9f357a7f4c84514fdb2 [diff] |
Migrate 25 crates to monorepo. am: 5996cda617 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/rustc-hash/+/3248280 Change-Id: If0430bbc4c33177a127e511459a037709292a092 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.