LLVM
8.0.1
|
Classes | |
struct | hash_combine_recursive_helper |
Helper class to manage the recursive combining of hash_combine arguments. More... | |
struct | hash_state |
The intermediate state used during hashing. More... | |
struct | is_hashable_data |
Trait to indicate whether a type's bits can be hashed directly. More... | |
struct | is_hashable_data< std::pair< T, U > > |
Functions | |
uint64_t | fetch64 (const char *p) |
uint32_t | fetch32 (const char *p) |
uint64_t | rotate (uint64_t val, size_t shift) |
Bitwise right rotate. More... | |
uint64_t | shift_mix (uint64_t val) |
uint64_t | hash_16_bytes (uint64_t low, uint64_t high) |
uint64_t | hash_1to3_bytes (const char *s, size_t len, uint64_t seed) |
uint64_t | hash_4to8_bytes (const char *s, size_t len, uint64_t seed) |
uint64_t | hash_9to16_bytes (const char *s, size_t len, uint64_t seed) |
uint64_t | hash_17to32_bytes (const char *s, size_t len, uint64_t seed) |
uint64_t | hash_33to64_bytes (const char *s, size_t len, uint64_t seed) |
uint64_t | hash_short (const char *s, size_t length, uint64_t seed) |
uint64_t | get_execution_seed () |
template<typename T > | |
std::enable_if< is_hashable_data< T >::value, T >::type | get_hashable_data (const T &value) |
Helper to get the hashable data representation for a type. More... | |
template<typename T > | |
std::enable_if<!is_hashable_data< T >::value, size_t >::type | get_hashable_data (const T &value) |
Helper to get the hashable data representation for a type. More... | |
template<typename T > | |
bool | store_and_advance (char *&buffer_ptr, char *buffer_end, const T &value, size_t offset=0) |
Helper to store data from a value into a buffer and advance the pointer into that buffer. More... | |
template<typename InputIteratorT > | |
hash_code | hash_combine_range_impl (InputIteratorT first, InputIteratorT last) |
Implement the combining of integral values into a hash_code. More... | |
template<typename ValueT > | |
std::enable_if< is_hashable_data< ValueT >::value, hash_code >::type | hash_combine_range_impl (ValueT *first, ValueT *last) |
Implement the combining of integral values into a hash_code. More... | |
hash_code | hash_integer_value (uint64_t value) |
Helper to hash the value of a single integer. More... | |
Variables | |
static const uint64_t | k0 = 0xc3a5c85c97cb3127ULL |
Some primes between 2^63 and 2^64 for various uses. More... | |
static const uint64_t | k1 = 0xb492b66fbe98f273ULL |
static const uint64_t | k2 = 0x9ae16a3b2f90404fULL |
static const uint64_t | k3 = 0xc949d7c7509e6557ULL |
uint64_t | fixed_seed_override = 0 |
A global, fixed seed-override variable. More... | |
Definition at line 153 of file Hashing.h.
References llvm::sys::IsBigEndianHost, llvm::Intrinsic::memcpy, and llvm::sys::swapByteOrder().
Referenced by hash_4to8_bytes(), and hash_integer_value().
Definition at line 145 of file Hashing.h.
References llvm::sys::IsBigEndianHost, llvm::Intrinsic::memcpy, and llvm::sys::swapByteOrder().
Referenced by hash_17to32_bytes(), hash_33to64_bytes(), hash_9to16_bytes(), llvm::hashing::detail::hash_state::mix(), and llvm::hashing::detail::hash_state::mix_32_bytes().
|
inline |
Definition at line 321 of file Hashing.h.
References fixed_seed_override.
Referenced by hash_combine_range_impl(), and hash_integer_value().
std::enable_if<!is_hashable_data<T>::value, size_t>::type llvm::hashing::detail::get_hashable_data | ( | const T & | value | ) |
Helper to get the hashable data representation for a type.
This variant is enabled when we must first call hash_value and use the result as our data.
Definition at line 373 of file Hashing.h.
References llvm::hash_code::hash_value, and hash_value().
|
inline |
Definition at line 179 of file Hashing.h.
Referenced by llvm::FunctionComparator::compare(), llvm::hashing::detail::hash_state::create(), llvm::hashing::detail::hash_state::finalize(), hash_17to32_bytes(), hash_4to8_bytes(), hash_9to16_bytes(), and hash_integer_value().
|
inline |
Definition at line 210 of file Hashing.h.
References fetch64(), hash_16_bytes(), k0, k1, k2, and rotate.
Referenced by hash_short().
|
inline |
Definition at line 190 of file Hashing.h.
References k2, and shift_mix().
Referenced by hash_short().
|
inline |
Definition at line 219 of file Hashing.h.
References fetch64(), k2, rotate, and shift_mix().
Referenced by hash_short().
|
inline |
Definition at line 199 of file Hashing.h.
References fetch32(), and hash_16_bytes().
Referenced by hash_short().
|
inline |
Definition at line 204 of file Hashing.h.
References fetch64(), hash_16_bytes(), and rotate.
Referenced by hash_short().
hash_code llvm::hashing::detail::hash_combine_range_impl | ( | InputIteratorT | first, |
InputIteratorT | last | ||
) |
Implement the combining of integral values into a hash_code.
This overload is selected when the value type of the iterator is integral. Rather than computing a hash_code for each object and then combining them, this (as an optimization) directly combines the integers.
Definition at line 403 of file Hashing.h.
References assert(), llvm::hashing::detail::hash_state::create(), llvm::sys::path::end(), llvm::hashing::detail::hash_state::finalize(), first, get_execution_seed(), llvm::get_hashable_data(), hash_short(), llvm::hashing::detail::hash_state::mix(), rotate, and store_and_advance().
std::enable_if<is_hashable_data<ValueT>::value, hash_code>::type llvm::hashing::detail::hash_combine_range_impl | ( | ValueT * | first, |
ValueT * | last | ||
) |
Implement the combining of integral values into a hash_code.
This overload is selected when the value type of the iterator is integral and when the input iterator is actually a pointer. Rather than computing a hash_code for each object and then combining them, this (as an optimization) directly combines the integers. Also, because the integers are stored in contiguous memory, this routine avoids copying each value and directly reads from the underlying memory.
Definition at line 447 of file Hashing.h.
References llvm::hashing::detail::hash_state::create(), first, get_execution_seed(), and hash_short().
Referenced by llvm::hash_combine_range().
|
inline |
Helper to hash the value of a single integer.
Overloads for smaller integer types are not provided to ensure consistent behavior in the presence of integral promotions. Essentially, "hash_value('4')" and "hash_value('0' + 4)" should be the same.
Definition at line 617 of file Hashing.h.
References fetch32(), get_execution_seed(), and hash_16_bytes().
Referenced by llvm::hash_value().
Definition at line 242 of file Hashing.h.
References hash_17to32_bytes(), hash_1to3_bytes(), hash_33to64_bytes(), hash_4to8_bytes(), and hash_9to16_bytes().
Referenced by llvm::hashing::detail::hash_combine_recursive_helper::combine(), and hash_combine_range_impl().
|
inline |
|
inline |
Definition at line 175 of file Hashing.h.
Referenced by llvm::hashing::detail::hash_state::create(), llvm::hashing::detail::hash_state::finalize(), hash_1to3_bytes(), and hash_33to64_bytes().
bool llvm::hashing::detail::store_and_advance | ( | char *& | buffer_ptr, |
char * | buffer_end, | ||
const T & | value, | ||
size_t | offset = 0 |
||
) |
Helper to store data from a value into a buffer and advance the pointer into that buffer.
This routine first checks whether there is enough space in the provided buffer, and if not immediately returns false. If there is space, it copies the underlying bytes of value into the buffer, advances the buffer_ptr past the copied bytes, and returns true.
Definition at line 386 of file Hashing.h.
References llvm::Intrinsic::memcpy.
Referenced by llvm::hashing::detail::hash_combine_recursive_helper::combine_data(), and hash_combine_range_impl().
uint64_t llvm::hashing::detail::fixed_seed_override = 0 |
A global, fixed seed-override variable.
This variable can be set using the
Definition at line 23 of file Hashing.cpp.
Referenced by llvm::hashing::detail::hash_state::finalize(), get_execution_seed(), and llvm::set_fixed_execution_hash_seed().
|
static |
Some primes between 2^63 and 2^64 for various uses.
Definition at line 162 of file Hashing.h.
Referenced by hash_17to32_bytes().
|
static |
Definition at line 163 of file Hashing.h.
Referenced by llvm::hashing::detail::hash_state::create(), hash_17to32_bytes(), and llvm::hashing::detail::hash_state::mix().
|
static |
Definition at line 164 of file Hashing.h.
Referenced by hash_17to32_bytes(), hash_1to3_bytes(), and hash_33to64_bytes().