2021-11-17 05:14:25 +08:00
|
|
|
//===- sanitizer_dense_map_info.h - Type traits for DenseMap ----*- C++ -*-===//
|
2021-11-17 02:24:32 +08:00
|
|
|
//
|
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2021-11-17 05:14:25 +08:00
|
|
|
#ifndef SANITIZER_DENSE_MAP_INFO_H
|
|
|
|
#define SANITIZER_DENSE_MAP_INFO_H
|
2021-11-17 02:24:32 +08:00
|
|
|
|
2021-11-17 05:14:25 +08:00
|
|
|
#include "sanitizer_internal_defs.h"
|
2021-11-17 02:24:32 +08:00
|
|
|
|
2021-11-17 05:14:25 +08:00
|
|
|
namespace __sanitizer {
|
2021-11-17 02:24:32 +08:00
|
|
|
|
|
|
|
namespace detail {
|
|
|
|
|
|
|
|
/// Simplistic combination of 32-bit hash values into 32-bit hash values.
|
|
|
|
static inline unsigned combineHashValue(unsigned a, unsigned b) {
|
|
|
|
uint64_t key = (uint64_t)a << 32 | (uint64_t)b;
|
|
|
|
key += ~(key << 32);
|
|
|
|
key ^= (key >> 22);
|
|
|
|
key += ~(key << 13);
|
|
|
|
key ^= (key >> 8);
|
|
|
|
key += (key << 3);
|
|
|
|
key ^= (key >> 15);
|
|
|
|
key += ~(key << 27);
|
|
|
|
key ^= (key >> 31);
|
|
|
|
return (unsigned)key;
|
|
|
|
}
|
|
|
|
|
2021-11-17 04:41:06 +08:00
|
|
|
} // end namespace detail
|
2021-11-17 02:24:32 +08:00
|
|
|
|
2021-11-17 04:41:06 +08:00
|
|
|
template <typename T>
|
2021-11-17 02:24:32 +08:00
|
|
|
struct DenseMapInfo {
|
2021-11-17 04:41:06 +08:00
|
|
|
// static inline T getEmptyKey();
|
|
|
|
// static inline T getTombstoneKey();
|
|
|
|
// static unsigned getHashValue(const T &Val);
|
|
|
|
// static bool isEqual(const T &LHS, const T &RHS);
|
2021-11-17 02:24:32 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
// Provide DenseMapInfo for all pointers. Come up with sentinel pointer values
|
|
|
|
// that are aligned to alignof(T) bytes, but try to avoid requiring T to be
|
|
|
|
// complete. This allows clients to instantiate DenseMap<T*, ...> with forward
|
|
|
|
// declared key types. Assume that no pointer key type requires more than 4096
|
|
|
|
// bytes of alignment.
|
2021-11-17 04:41:06 +08:00
|
|
|
template <typename T>
|
|
|
|
struct DenseMapInfo<T *> {
|
2021-11-17 02:24:32 +08:00
|
|
|
// The following should hold, but it would require T to be complete:
|
|
|
|
// static_assert(alignof(T) <= (1 << Log2MaxAlign),
|
|
|
|
// "DenseMap does not support pointer keys requiring more than "
|
|
|
|
// "Log2MaxAlign bits of alignment");
|
|
|
|
static constexpr uintptr_t Log2MaxAlign = 12;
|
|
|
|
|
2021-11-17 04:41:06 +08:00
|
|
|
static inline T *getEmptyKey() {
|
2021-11-17 02:24:32 +08:00
|
|
|
uintptr_t Val = static_cast<uintptr_t>(-1);
|
|
|
|
Val <<= Log2MaxAlign;
|
2021-11-17 04:41:06 +08:00
|
|
|
return reinterpret_cast<T *>(Val);
|
2021-11-17 02:24:32 +08:00
|
|
|
}
|
|
|
|
|
2021-11-17 04:41:06 +08:00
|
|
|
static inline T *getTombstoneKey() {
|
2021-11-17 02:24:32 +08:00
|
|
|
uintptr_t Val = static_cast<uintptr_t>(-2);
|
|
|
|
Val <<= Log2MaxAlign;
|
2021-11-17 04:41:06 +08:00
|
|
|
return reinterpret_cast<T *>(Val);
|
2021-11-17 02:24:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned getHashValue(const T *PtrVal) {
|
|
|
|
return (unsigned((uintptr_t)PtrVal) >> 4) ^
|
|
|
|
(unsigned((uintptr_t)PtrVal) >> 9);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool isEqual(const T *LHS, const T *RHS) { return LHS == RHS; }
|
|
|
|
};
|
|
|
|
|
|
|
|
// Provide DenseMapInfo for chars.
|
2021-11-17 04:41:06 +08:00
|
|
|
template <>
|
|
|
|
struct DenseMapInfo<char> {
|
2021-11-17 02:24:32 +08:00
|
|
|
static inline char getEmptyKey() { return ~0; }
|
|
|
|
static inline char getTombstoneKey() { return ~0 - 1; }
|
2021-11-17 04:41:06 +08:00
|
|
|
static unsigned getHashValue(const char &Val) { return Val * 37U; }
|
2021-11-17 02:24:32 +08:00
|
|
|
|
2021-11-17 04:41:06 +08:00
|
|
|
static bool isEqual(const char &LHS, const char &RHS) { return LHS == RHS; }
|
2021-11-17 02:24:32 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
// Provide DenseMapInfo for unsigned chars.
|
2021-11-17 04:41:06 +08:00
|
|
|
template <>
|
|
|
|
struct DenseMapInfo<unsigned char> {
|
2021-11-17 02:24:32 +08:00
|
|
|
static inline unsigned char getEmptyKey() { return ~0; }
|
|
|
|
static inline unsigned char getTombstoneKey() { return ~0 - 1; }
|
|
|
|
static unsigned getHashValue(const unsigned char &Val) { return Val * 37U; }
|
|
|
|
|
|
|
|
static bool isEqual(const unsigned char &LHS, const unsigned char &RHS) {
|
|
|
|
return LHS == RHS;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// Provide DenseMapInfo for unsigned shorts.
|
2021-11-17 04:41:06 +08:00
|
|
|
template <>
|
|
|
|
struct DenseMapInfo<unsigned short> {
|
2021-11-17 02:24:32 +08:00
|
|
|
static inline unsigned short getEmptyKey() { return 0xFFFF; }
|
|
|
|
static inline unsigned short getTombstoneKey() { return 0xFFFF - 1; }
|
|
|
|
static unsigned getHashValue(const unsigned short &Val) { return Val * 37U; }
|
|
|
|
|
|
|
|
static bool isEqual(const unsigned short &LHS, const unsigned short &RHS) {
|
|
|
|
return LHS == RHS;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// Provide DenseMapInfo for unsigned ints.
|
2021-11-17 04:41:06 +08:00
|
|
|
template <>
|
|
|
|
struct DenseMapInfo<unsigned> {
|
2021-11-17 02:24:32 +08:00
|
|
|
static inline unsigned getEmptyKey() { return ~0U; }
|
|
|
|
static inline unsigned getTombstoneKey() { return ~0U - 1; }
|
2021-11-17 04:41:06 +08:00
|
|
|
static unsigned getHashValue(const unsigned &Val) { return Val * 37U; }
|
2021-11-17 02:24:32 +08:00
|
|
|
|
2021-11-17 04:41:06 +08:00
|
|
|
static bool isEqual(const unsigned &LHS, const unsigned &RHS) {
|
2021-11-17 02:24:32 +08:00
|
|
|
return LHS == RHS;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// Provide DenseMapInfo for unsigned longs.
|
2021-11-17 04:41:06 +08:00
|
|
|
template <>
|
|
|
|
struct DenseMapInfo<unsigned long> {
|
2021-11-17 02:24:32 +08:00
|
|
|
static inline unsigned long getEmptyKey() { return ~0UL; }
|
|
|
|
static inline unsigned long getTombstoneKey() { return ~0UL - 1L; }
|
|
|
|
|
2021-11-17 04:41:06 +08:00
|
|
|
static unsigned getHashValue(const unsigned long &Val) {
|
2021-11-17 02:24:32 +08:00
|
|
|
return (unsigned)(Val * 37UL);
|
|
|
|
}
|
|
|
|
|
2021-11-17 04:41:06 +08:00
|
|
|
static bool isEqual(const unsigned long &LHS, const unsigned long &RHS) {
|
2021-11-17 02:24:32 +08:00
|
|
|
return LHS == RHS;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// Provide DenseMapInfo for unsigned long longs.
|
2021-11-17 04:41:06 +08:00
|
|
|
template <>
|
|
|
|
struct DenseMapInfo<unsigned long long> {
|
2021-11-17 02:24:32 +08:00
|
|
|
static inline unsigned long long getEmptyKey() { return ~0ULL; }
|
|
|
|
static inline unsigned long long getTombstoneKey() { return ~0ULL - 1ULL; }
|
|
|
|
|
2021-11-17 04:41:06 +08:00
|
|
|
static unsigned getHashValue(const unsigned long long &Val) {
|
2021-11-17 02:24:32 +08:00
|
|
|
return (unsigned)(Val * 37ULL);
|
|
|
|
}
|
|
|
|
|
2021-11-17 04:41:06 +08:00
|
|
|
static bool isEqual(const unsigned long long &LHS,
|
|
|
|
const unsigned long long &RHS) {
|
2021-11-17 02:24:32 +08:00
|
|
|
return LHS == RHS;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// Provide DenseMapInfo for shorts.
|
2021-11-17 04:41:06 +08:00
|
|
|
template <>
|
|
|
|
struct DenseMapInfo<short> {
|
2021-11-17 02:24:32 +08:00
|
|
|
static inline short getEmptyKey() { return 0x7FFF; }
|
|
|
|
static inline short getTombstoneKey() { return -0x7FFF - 1; }
|
|
|
|
static unsigned getHashValue(const short &Val) { return Val * 37U; }
|
|
|
|
static bool isEqual(const short &LHS, const short &RHS) { return LHS == RHS; }
|
|
|
|
};
|
|
|
|
|
|
|
|
// Provide DenseMapInfo for ints.
|
2021-11-17 04:41:06 +08:00
|
|
|
template <>
|
|
|
|
struct DenseMapInfo<int> {
|
2021-11-17 02:24:32 +08:00
|
|
|
static inline int getEmptyKey() { return 0x7fffffff; }
|
|
|
|
static inline int getTombstoneKey() { return -0x7fffffff - 1; }
|
2021-11-17 04:41:06 +08:00
|
|
|
static unsigned getHashValue(const int &Val) { return (unsigned)(Val * 37U); }
|
2021-11-17 02:24:32 +08:00
|
|
|
|
2021-11-17 04:41:06 +08:00
|
|
|
static bool isEqual(const int &LHS, const int &RHS) { return LHS == RHS; }
|
2021-11-17 02:24:32 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
// Provide DenseMapInfo for longs.
|
2021-11-17 04:41:06 +08:00
|
|
|
template <>
|
|
|
|
struct DenseMapInfo<long> {
|
2021-11-17 02:24:32 +08:00
|
|
|
static inline long getEmptyKey() {
|
|
|
|
return (1UL << (sizeof(long) * 8 - 1)) - 1UL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline long getTombstoneKey() { return getEmptyKey() - 1L; }
|
|
|
|
|
2021-11-17 04:41:06 +08:00
|
|
|
static unsigned getHashValue(const long &Val) {
|
2021-11-17 02:24:32 +08:00
|
|
|
return (unsigned)(Val * 37UL);
|
|
|
|
}
|
|
|
|
|
2021-11-17 04:41:06 +08:00
|
|
|
static bool isEqual(const long &LHS, const long &RHS) { return LHS == RHS; }
|
2021-11-17 02:24:32 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
// Provide DenseMapInfo for long longs.
|
2021-11-17 04:41:06 +08:00
|
|
|
template <>
|
|
|
|
struct DenseMapInfo<long long> {
|
2021-11-17 02:24:32 +08:00
|
|
|
static inline long long getEmptyKey() { return 0x7fffffffffffffffLL; }
|
2021-11-17 04:41:06 +08:00
|
|
|
static inline long long getTombstoneKey() {
|
|
|
|
return -0x7fffffffffffffffLL - 1;
|
|
|
|
}
|
2021-11-17 02:24:32 +08:00
|
|
|
|
2021-11-17 04:41:06 +08:00
|
|
|
static unsigned getHashValue(const long long &Val) {
|
2021-11-17 02:24:32 +08:00
|
|
|
return (unsigned)(Val * 37ULL);
|
|
|
|
}
|
|
|
|
|
2021-11-17 04:41:06 +08:00
|
|
|
static bool isEqual(const long long &LHS, const long long &RHS) {
|
2021-11-17 02:24:32 +08:00
|
|
|
return LHS == RHS;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// Provide DenseMapInfo for all pairs whose members have info.
|
2021-11-17 04:41:06 +08:00
|
|
|
template <typename T, typename U>
|
2021-11-17 02:24:32 +08:00
|
|
|
struct DenseMapInfo<std::pair<T, U>> {
|
|
|
|
using Pair = std::pair<T, U>;
|
|
|
|
using FirstInfo = DenseMapInfo<T>;
|
|
|
|
using SecondInfo = DenseMapInfo<U>;
|
|
|
|
|
|
|
|
static inline Pair getEmptyKey() {
|
2021-11-17 04:41:06 +08:00
|
|
|
return std::make_pair(FirstInfo::getEmptyKey(), SecondInfo::getEmptyKey());
|
2021-11-17 02:24:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline Pair getTombstoneKey() {
|
|
|
|
return std::make_pair(FirstInfo::getTombstoneKey(),
|
|
|
|
SecondInfo::getTombstoneKey());
|
|
|
|
}
|
|
|
|
|
2021-11-17 04:41:06 +08:00
|
|
|
static unsigned getHashValue(const Pair &PairVal) {
|
2021-11-17 02:24:32 +08:00
|
|
|
return detail::combineHashValue(FirstInfo::getHashValue(PairVal.first),
|
|
|
|
SecondInfo::getHashValue(PairVal.second));
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool isEqual(const Pair &LHS, const Pair &RHS) {
|
|
|
|
return FirstInfo::isEqual(LHS.first, RHS.first) &&
|
|
|
|
SecondInfo::isEqual(LHS.second, RHS.second);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2021-11-17 05:14:25 +08:00
|
|
|
} // namespace __sanitizer
|
2021-11-17 02:24:32 +08:00
|
|
|
|
2021-11-17 05:14:25 +08:00
|
|
|
#endif // SANITIZER_DENSE_MAP_INFO_H
|