commit | 6b1ebd5605bc6d276b14776fda18b7a6a701d1ed | [log] [tgz] |
---|---|---|
author | Andrew Walbran <[email protected]> | Wed Nov 15 21:06:03 2023 +0000 |
committer | Automerger Merge Worker <[email protected]> | Wed Nov 15 21:06:03 2023 +0000 |
tree | bf4803b5b7ae887352a7e63b4dfc7cf340153816 | |
parent | ec812f2977e948abbdc1014644dc08c579473af7 [diff] | |
parent | 76bcd4057b715076e870453d3be3dff2bbef85c8 [diff] |
Migrate to cargo_embargo. am: becc9dc0d0 am: 44612c5b78 am: 76bcd4057b Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/rustc-hash/+/2832451 Change-Id: I97d18c7da9eda7e4c1343e446f4f55b9c6b275e5 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.