diff options
author | Hans Wennborg <hans@chromium.org> | 2020-02-05 11:03:49 +0100 |
---|---|---|
committer | Hans Wennborg <hans@chromium.org> | 2020-02-06 09:02:41 +0100 |
commit | d0104a596199a41963dbba70338d9ff3c36b185a (patch) | |
tree | 02dda439aa032f7efe51abe9c029c992ba11a72a /llvm/unittests | |
parent | c32d809e9cae8da7d3016b6cb30e2a2a9c9e2762 (diff) | |
download | bcm5719-llvm-d0104a596199a41963dbba70338d9ff3c36b185a.tar.gz bcm5719-llvm-d0104a596199a41963dbba70338d9ff3c36b185a.zip |
Make llvm::crc32() work also for input sizes larger than 32 bits.
The problem was noticed by the Chrome OS toolchain folks
(crbug.com/1048445) because llvm-objcopy --add-gnu-debuglink would
insert the wrong checksum when processing a binary larger than 4 GB.
That use case regressed in 1e1e3ba2526 when we started using
llvm::crc32() in more places.
Differential revision: https://reviews.llvm.org/D74039
(cherry picked from commit 6c4a8bc0a9f6a466d90d542bef66d69550c1b041)
Diffstat (limited to 'llvm/unittests')
-rw-r--r-- | llvm/unittests/Support/CRCTest.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/llvm/unittests/Support/CRCTest.cpp b/llvm/unittests/Support/CRCTest.cpp index 8e2cb2c5e78..32d2cf71939 100644 --- a/llvm/unittests/Support/CRCTest.cpp +++ b/llvm/unittests/Support/CRCTest.cpp @@ -13,6 +13,7 @@ #include "llvm/Support/CRC.h" #include "llvm/ADT/StringExtras.h" #include "gtest/gtest.h" +#include <stdlib.h> using namespace llvm; @@ -39,6 +40,25 @@ TEST(CRCTest, CRC32) { uint8_t byte = i; EXPECT_EQ(crc, ~llvm::crc32(0xFFFFFFFFU, byte)); } + + EXPECT_EQ(0x00000000U, llvm::crc32(arrayRefFromStringRef(""))); +} + +#if (SIZE_MAX > UINT32_MAX) && defined(EXPENSIVE_CHECKS) +TEST(CRCTest, LargeCRC32) { + // Check that crc32 can handle inputs with sizes larger than 32 bits. + size_t TestSize = (size_t)UINT32_MAX + 42; + uint8_t *TestData = (uint8_t*)calloc(TestSize, 1); + if (!TestData) + return; + + // Test expectation generated with: + // $ truncate --size=`echo 2^32-1+42 | bc` /tmp/foo + // $ crc32 /tmp/foo + EXPECT_EQ(0xE46F28FBU, llvm::crc32(makeArrayRef(TestData, TestSize))); + + free(TestData); } +#endif } // end anonymous namespace |