| commit | d86598222be448ce5df778aee1af89dd86b15c4f | [log] [tgz] |
|---|---|---|
| author | Jeff Vander Stoep <jeffv@google.com> | Tue Jan 31 20:11:39 2023 +0000 |
| committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Tue Jan 31 20:11:39 2023 +0000 |
| tree | 8776d07529a6d4ae3ec8b522a66ee5139a6060de | |
| parent | 631762c3e7927d73db52e376627c4209b4adff5d [diff] | |
| parent | d3eb006db6671c36b5c303082a5434524fcd53a5 [diff] |
Update TEST_MAPPING am: 8a30e286de am: d3eb006db6 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/rustc-hash/+/2411734 Change-Id: Ief1d86f4eac9642ad25010d1eb43548c8351ce47 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
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_stdThis 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.