[libcxx-commits] [PATCH] D134124: [libc++] Fix wrong implementation of CityHash
Tommy Chiang via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Thu Sep 22 12:12:55 PDT 2022
oToToT updated this revision to Diff 462261.
oToToT added a comment.
Fix the endianess issue of the test.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D134124/new/
https://reviews.llvm.org/D134124
Files:
libcxx/include/__functional/hash.h
libcxx/test/libcxx/utilities/utility/__murmur2_or_cityhash.pass.cpp
Index: libcxx/test/libcxx/utilities/utility/__murmur2_or_cityhash.pass.cpp
===================================================================
--- /dev/null
+++ libcxx/test/libcxx/utilities/utility/__murmur2_or_cityhash.pass.cpp
@@ -0,0 +1,36 @@
+//===----------------------------------------------------------------------===//
+//
+// 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
+//
+//===----------------------------------------------------------------------===//
+
+// Test the CityHash implementation is correct.
+
+// UNSUPPORTED: c++03
+
+#include <cassert>
+#include <string>
+#include <utility>
+
+#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
+# define CHOOSE_BY_ENDIANESS(little, big) (little)
+#else
+# define CHOOSE_BY_ENDIANESS(little, big) (big)
+#endif
+
+int main(int, char**) {
+ const std::pair<std::string, uint64_t> TestCases[] = {
+ {"abcdefgh", CHOOSE_BY_ENDIANESS(0x4382a8d0fe8edb17ULL, 0xca84e809bef16fbcULL)},
+ {"abcDefgh", CHOOSE_BY_ENDIANESS(0xecefb080a6854061ULL, 0xd7feb824250272dcULL)},
+ {"CityHash", CHOOSE_BY_ENDIANESS(0x169ea3aebf908d6dULL, 0xea8cef3ca6f6e368ULL)},
+ {"CitYHash", CHOOSE_BY_ENDIANESS(0xe18298a2760f09faULL, 0xf33a7700bb7a94a8ULL)},
+ };
+
+ std::__murmur2_or_cityhash<uint64_t> h64;
+ for (const auto& test_case : TestCases) {
+ assert(h64(test_case.first.data(), test_case.first.size()) == test_case.second);
+ }
+ return 0;
+}
Index: libcxx/include/__functional/hash.h
===================================================================
--- libcxx/include/__functional/hash.h
+++ libcxx/include/__functional/hash.h
@@ -135,7 +135,7 @@
if (__len >= 4) {
const uint32_t __a = __loadword<uint32_t>(__s);
const uint32_t __b = __loadword<uint32_t>(__s + __len - 4);
- return __hash_len_16(__len + (__a << 3), __b);
+ return __hash_len_16(__len + (static_cast<_Size>(__a) << 3), __b);
}
if (__len > 0) {
const unsigned char __a = static_cast<unsigned char>(__s[0]);
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D134124.462261.patch
Type: text/x-patch
Size: 2147 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20220922/09b26131/attachment.bin>
More information about the libcxx-commits
mailing list