commit | 2b2ef406bbd4c4e1564ad82bf9d7be9e023bebb6 | [log] [tgz] |
---|---|---|
author | Joel Galenson <[email protected]> | Wed Dec 15 18:07:24 2021 +0000 |
committer | Automerger Merge Worker <[email protected]> | Wed Dec 15 18:07:24 2021 +0000 |
tree | da5af4c25982cdd1a71e123c4a76ab79436d1f7f | |
parent | ec62a988a9f6eddb33b3a66c55b70707c536fad9 [diff] | |
parent | e59a57f81a41bfc458418e6337ea3f81abe63a0f [diff] |
Merge "Refresh Android.bp, cargo2android.json, TEST_MAPPING." am: d1fefa5863 am: d9c5d7bd1f am: 024cc81079 am: e59a57f81a Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/rustc-hash/+/1912684 Change-Id: I69251ba32bd7012918f2ef37f71ecf611d6b04e3
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.