ClickHouse/dbms/src/Common/UInt128.h

217 lines
6.3 KiB
C++
Raw Normal View History

#pragma once
#include <city.h>
#include <Common/HashTable/Hash.h>
#if __SSE4_2__
#include <nmmintrin.h>
#endif
namespace DB
{
/// For aggregation by SipHash, UUID type or concatenation of several fields.
struct UInt128
{
2017-07-04 16:10:36 +00:00
/// Suppress gcc7 warnings: 'prev_key.DB::UInt128::low' may be used uninitialized in this function
#if !__clang__
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wmaybe-uninitialized"
#endif
2017-07-04 16:10:36 +00:00
UInt64 low;
UInt64 high;
UInt128() = default;
2017-07-04 16:10:36 +00:00
explicit UInt128(const UInt64 rhs) : low(0), high(rhs) { }
2017-07-05 10:03:24 +00:00
explicit UInt128(const UInt64 low, const UInt64 high) : low(low), high(high) { }
2017-07-05 10:03:24 +00:00
bool inline operator== (const UInt128 rhs) const { return std::tie(low, high) == std::tie(rhs.low, rhs.high); }
2017-07-05 12:40:41 +00:00
bool inline operator!= (const UInt128 rhs) const { return !operator==(rhs); }
2017-07-05 10:03:24 +00:00
bool inline operator< (const UInt128 rhs) const { return std::tie(low, high) < std::tie(rhs.low, rhs.high); }
2017-07-05 12:40:41 +00:00
bool inline operator<= (const UInt128 rhs) const { return !rhs.operator<(*this); }
bool inline operator> (const UInt128 rhs) const { return rhs.operator<(*this); }
bool inline operator>= (const UInt128 rhs) const { return !operator<(rhs); }
2017-07-05 12:40:41 +00:00
/** Types who are stored at the moment in the database have no more than 64bits and can be handle
* inside an unique UInt64.
*/
2017-07-05 10:03:24 +00:00
template<typename T> bool inline operator== (const T rhs) const { return *this == UInt128(0, rhs); }
template<typename T> bool inline operator!= (const T rhs) const { return *this != UInt128(0, rhs); }
template<typename T> bool inline operator>= (const T rhs) const { return *this >= UInt128(0, rhs); }
template<typename T> bool inline operator> (const T rhs) const { return *this > UInt128(0, rhs); }
template<typename T> bool inline operator<= (const T rhs) const { return *this <= UInt128(0, rhs); }
template<typename T> bool inline operator< (const T rhs) const { return *this < UInt128(0, rhs); }
2017-07-04 16:10:36 +00:00
template<typename T> explicit operator T() const { return static_cast<T>(high); }
#if !__clang__
#pragma GCC diagnostic pop
#endif
2017-07-04 16:10:36 +00:00
UInt128 & operator= (const UInt64 rhs) { low = 0; high = rhs; return *this; }
};
2017-07-05 10:03:24 +00:00
template<typename T> bool inline operator== (T a, const UInt128 b) { return b == a; }
template<typename T> bool inline operator!= (T a, const UInt128 b) { return b != a; }
template<typename T> bool inline operator>= (T a, const UInt128 b) { return b.low == 0 && a >= static_cast<T>(b.high); }
template<typename T> bool inline operator> (T a, const UInt128 b) { return b.low == 0 && a > static_cast<T>(b.high); }
template<typename T> bool inline operator<= (T a, const UInt128 b) { return b.low != 0 || a <= static_cast<T>(b.high); }
template<typename T> bool inline operator< (T a, const UInt128 b) { return b.low != 0 || a < static_cast<T>(b.high); }
2017-07-05 12:40:41 +00:00
template <> struct IsNumber<UInt128> { static constexpr bool value = true; };
template <> struct TypeName<UInt128> { static std::string get() { return "UInt128"; } };
struct UInt128Hash
{
size_t operator()(UInt128 x) const
{
2017-07-04 16:10:36 +00:00
return CityHash_v1_0_2::Hash128to64({x.low, x.high});
}
};
#if __SSE4_2__
struct UInt128HashCRC32
{
size_t operator()(UInt128 x) const
{
UInt64 crc = -1ULL;
2017-07-04 16:10:36 +00:00
crc = _mm_crc32_u64(crc, x.low);
crc = _mm_crc32_u64(crc, x.high);
return crc;
}
};
#else
2017-05-07 20:25:26 +00:00
/// On other platforms we do not use CRC32. NOTE This can be confusing.
struct UInt128HashCRC32 : public UInt128Hash {};
#endif
struct UInt128TrivialHash
{
2017-07-04 16:10:36 +00:00
size_t operator()(UInt128 x) const { return x.low; }
};
2017-05-07 20:25:26 +00:00
/** Used for aggregation, for putting a large number of constant-length keys in a hash table.
*/
struct UInt256
{
/// Suppress gcc7 warnings: 'prev_key.DB::UInt256::a' may be used uninitialized in this function
#if !__clang__
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wmaybe-uninitialized"
#endif
UInt64 a;
UInt64 b;
UInt64 c;
UInt64 d;
bool operator== (const UInt256 rhs) const
{
return a == rhs.a && b == rhs.b && c == rhs.c && d == rhs.d;
2015-02-22 15:30:31 +00:00
2017-05-07 20:25:26 +00:00
/* So it's no better.
return 0xFFFF == _mm_movemask_epi8(_mm_and_si128(
_mm_cmpeq_epi8(
_mm_loadu_si128(reinterpret_cast<const __m128i *>(&a)),
_mm_loadu_si128(reinterpret_cast<const __m128i *>(&rhs.a))),
_mm_cmpeq_epi8(
_mm_loadu_si128(reinterpret_cast<const __m128i *>(&c)),
_mm_loadu_si128(reinterpret_cast<const __m128i *>(&rhs.c)))));*/
}
bool operator!= (const UInt256 rhs) const { return !operator==(rhs); }
bool operator== (const UInt64 rhs) const { return a == rhs && b == 0 && c == 0 && d == 0; }
bool operator!= (const UInt64 rhs) const { return !operator==(rhs); }
#if !__clang__
#pragma GCC diagnostic pop
#endif
UInt256 & operator= (const UInt64 rhs) { a = rhs; b = 0; c = 0; d = 0; return *this; }
};
struct UInt256Hash
{
size_t operator()(UInt256 x) const
{
/// NOTE suboptimal
2017-06-21 08:35:38 +00:00
return CityHash_v1_0_2::Hash128to64({CityHash_v1_0_2::Hash128to64({x.a, x.b}), CityHash_v1_0_2::Hash128to64({x.c, x.d})});
}
};
#if __SSE4_2__
struct UInt256HashCRC32
{
size_t operator()(UInt256 x) const
{
UInt64 crc = -1ULL;
crc = _mm_crc32_u64(crc, x.a);
crc = _mm_crc32_u64(crc, x.b);
crc = _mm_crc32_u64(crc, x.c);
crc = _mm_crc32_u64(crc, x.d);
return crc;
}
};
#else
2017-05-07 20:25:26 +00:00
/// We do not need to use CRC32 on other platforms. NOTE This can be confusing.
struct UInt256HashCRC32
{
DefaultHash<UInt64> hash64;
size_t operator()(UInt256 x) const
{
2017-05-07 20:25:26 +00:00
/// TODO This is not optimal.
return hash64(hash64(hash64(hash64(x.a) ^ x.b) ^ x.c) ^ x.d);
}
2016-01-13 21:17:23 +00:00
};
#endif
}
/// Overload hash for type casting
namespace std
{
template <> struct hash<DB::UInt128>
{
size_t operator()(const DB::UInt128 & u) const
{
2017-07-04 16:10:36 +00:00
return CityHash_v1_0_2::Hash128to64({u.low, u.high});
}
};
template <> struct is_signed<DB::UInt128>
{
static constexpr bool value = false;
};
template <> struct is_unsigned<DB::UInt128>
{
static constexpr bool value = true;
};
2017-07-05 12:40:41 +00:00
template <> struct is_integral<DB::UInt128>
{
static constexpr bool value = true;
};
// Operator +, -, /, *, % aren't implemented so it's not an arithmetic type
template <> struct is_arithmetic<DB::UInt128>
{
static constexpr bool value = false;
};
}