commit | db066d1f1932fa24f5450c9bb03d82ed3c8f0bd3 | [log] [tgz] |
---|---|---|
author | android-build-prod (mdb) <android-build-team-robot@google.com> | Wed Feb 24 17:54:00 2021 +0000 |
committer | android-build-prod (mdb) <android-build-team-robot@google.com> | Wed Feb 24 17:54:00 2021 +0000 |
tree | 16244a35292a0f1c14f6fbc0d6998e7e774c4ad7 | |
parent | ed4d378582e7157adb2db32dba52d465faeeb2a5 [diff] | |
parent | 5f5d8f269f1b6302b2742b5f220cd106128e32d9 [diff] |
Snap for 7168215 from 5f5d8f269f1b6302b2742b5f220cd106128e32d9 to simpleperf-release Change-Id: I71193dc076eaf971f3c7d1ae1f59b53f5bfaff84
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.