mirror of
https://github.com/aaru-dps/Aaru.Checksums.Native.git
synced 2025-12-16 11:14:29 +00:00
Implement Fletcher-32 using SSSE3 instructions.
This commit is contained in:
@@ -71,6 +71,6 @@ if("${CMAKE_BUILD_TYPE}" MATCHES "Release")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
add_library("Aaru.Checksums.Native" SHARED adler32.h adler32.c crc16.h crc16.c crc16_ccitt.h crc16_ccitt.c crc32.c crc32.h crc64.c crc64.h fletcher16.h fletcher16.c fletcher32.h fletcher32.c fletcher32_neon.c library.h spamsum.c spamsum.h crc32_clmul.c crc64_clmul.c simd.c simd.h adler32_ssse3.c adler32_avx2.c adler32_neon.c crc32_arm_simd.c crc32_vmull.c crc32_simd.h arm_vmull.c arm_vmull.h crc64_vmull.c library.c)
|
||||
add_library("Aaru.Checksums.Native" SHARED adler32.h adler32.c crc16.h crc16.c crc16_ccitt.h crc16_ccitt.c crc32.c crc32.h crc64.c crc64.h fletcher16.h fletcher16.c fletcher32.h fletcher32.c fletcher32_neon.c fletcher32_ssse3.c library.h spamsum.c spamsum.h crc32_clmul.c crc64_clmul.c simd.c simd.h adler32_ssse3.c adler32_avx2.c adler32_neon.c crc32_arm_simd.c crc32_vmull.c crc32_simd.h arm_vmull.c arm_vmull.h crc64_vmull.c library.c)
|
||||
|
||||
add_subdirectory(tests)
|
||||
|
||||
11
fletcher32.c
11
fletcher32.c
@@ -55,6 +55,17 @@ AARU_EXPORT int AARU_CALL fletcher32_update(fletcher32_ctx* ctx, const uint8_t*
|
||||
}
|
||||
#endif
|
||||
|
||||
#if defined(__x86_64__) || defined(__amd64) || defined(_M_AMD64) || defined(_M_X64) || defined(__I386__) || \
|
||||
defined(__i386__) || defined(__THW_INTEL) || defined(_M_IX86)
|
||||
if(have_ssse3())
|
||||
{
|
||||
fletcher32_ssse3(&ctx->sum1, &ctx->sum2, data, len);
|
||||
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
uint32_t sum1 = ctx->sum1;
|
||||
uint32_t sum2 = ctx->sum2;
|
||||
unsigned n;
|
||||
|
||||
@@ -34,6 +34,13 @@ AARU_EXPORT int AARU_CALL fletcher32_update(fletcher32_ctx* ctx, con
|
||||
AARU_EXPORT int AARU_CALL fletcher32_final(fletcher32_ctx* ctx, uint32_t* checksum);
|
||||
AARU_EXPORT void AARU_CALL fletcher32_free(fletcher32_ctx* ctx);
|
||||
|
||||
#if defined(__x86_64__) || defined(__amd64) || defined(_M_AMD64) || defined(_M_X64) || defined(__I386__) || \
|
||||
defined(__i386__) || defined(__THW_INTEL) || defined(_M_IX86)
|
||||
|
||||
AARU_EXPORT SSSE3 void AARU_CALL fletcher32_ssse3(uint16_t* sum1, uint16_t* sum2, const uint8_t* data, long len);
|
||||
|
||||
#endif
|
||||
|
||||
#if defined(__aarch64__) || defined(_M_ARM64) || defined(__arm__) || defined(_M_ARM)
|
||||
|
||||
AARU_EXPORT void AARU_CALL fletcher32_neon(uint16_t* sum1, uint16_t* sum2, const uint8_t* data, uint32_t len);
|
||||
|
||||
147
fletcher32_ssse3.c
Normal file
147
fletcher32_ssse3.c
Normal file
@@ -0,0 +1,147 @@
|
||||
/*
|
||||
* This file is part of the Aaru Data Preservation Suite.
|
||||
* Copyright (c) 2019-2023 Natalia Portillo.
|
||||
* Copyright 2017 The Chromium Authors. All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions are
|
||||
* met:
|
||||
*
|
||||
* * Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* * Redistributions in binary form must reproduce the above
|
||||
* copyright notice, this list of conditions and the following disclaimer
|
||||
* in the documentation and/or other materials provided with the
|
||||
* distribution.
|
||||
* * Neither the name of Google Inc. nor the names of its
|
||||
* contributors may be used to endorse or promote products derived from
|
||||
* this software without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#if defined(__x86_64__) || defined(__amd64) || defined(_M_AMD64) || defined(_M_X64) || defined(__I386__) || \
|
||||
defined(__i386__) || defined(__THW_INTEL) || defined(_M_IX86)
|
||||
|
||||
#include <stdint.h>
|
||||
#include <tmmintrin.h>
|
||||
|
||||
#include "library.h"
|
||||
#include "fletcher32.h"
|
||||
|
||||
AARU_EXPORT SSSE3 void AARU_CALL fletcher32_ssse3(uint16_t* sum1, uint16_t* sum2, const uint8_t* data, long len)
|
||||
{
|
||||
uint32_t s1 = *sum1;
|
||||
uint32_t s2 = *sum2;
|
||||
|
||||
/*
|
||||
* Process the data in blocks.
|
||||
*/
|
||||
const unsigned BLOCK_SIZE = 1 << 5;
|
||||
long blocks = len / BLOCK_SIZE;
|
||||
len -= blocks * BLOCK_SIZE;
|
||||
while(blocks)
|
||||
{
|
||||
unsigned n = NMAX / BLOCK_SIZE; /* The NMAX constraint. */
|
||||
if(n > blocks) n = (unsigned)blocks;
|
||||
blocks -= n;
|
||||
const __m128i tap1 = _mm_setr_epi8(32, 31, 30, 29, 28, 27, 26, 25, 24, 23, 22, 21, 20, 19, 18, 17);
|
||||
const __m128i tap2 = _mm_setr_epi8(16, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1);
|
||||
const __m128i zero = _mm_setr_epi8(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
|
||||
const __m128i ones = _mm_set_epi16(1, 1, 1, 1, 1, 1, 1, 1);
|
||||
/*
|
||||
* Process n blocks of data. At most NMAX data bytes can be
|
||||
* processed before s2 must be reduced modulo BASE.
|
||||
*/
|
||||
__m128i v_ps = _mm_set_epi32(0, 0, 0, s1 * n);
|
||||
__m128i v_s2 = _mm_set_epi32(0, 0, 0, s2);
|
||||
__m128i v_s1 = _mm_set_epi32(0, 0, 0, 0);
|
||||
do {
|
||||
/*
|
||||
* Load 32 input bytes.
|
||||
*/
|
||||
const __m128i bytes1 = _mm_loadu_si128((__m128i*)(data));
|
||||
const __m128i bytes2 = _mm_loadu_si128((__m128i*)(data + 16));
|
||||
/*
|
||||
* Add previous block byte sum to v_ps.
|
||||
*/
|
||||
v_ps = _mm_add_epi32(v_ps, v_s1);
|
||||
/*
|
||||
* Horizontally add the bytes for s1, multiply-adds the
|
||||
* bytes by [ 32, 31, 30, ... ] for s2.
|
||||
*/
|
||||
v_s1 = _mm_add_epi32(v_s1, _mm_sad_epu8(bytes1, zero));
|
||||
const __m128i mad1 = _mm_maddubs_epi16(bytes1, tap1);
|
||||
v_s2 = _mm_add_epi32(v_s2, _mm_madd_epi16(mad1, ones));
|
||||
v_s1 = _mm_add_epi32(v_s1, _mm_sad_epu8(bytes2, zero));
|
||||
const __m128i mad2 = _mm_maddubs_epi16(bytes2, tap2);
|
||||
v_s2 = _mm_add_epi32(v_s2, _mm_madd_epi16(mad2, ones));
|
||||
data += BLOCK_SIZE;
|
||||
} while(--n);
|
||||
v_s2 = _mm_add_epi32(v_s2, _mm_slli_epi32(v_ps, 5));
|
||||
/*
|
||||
* Sum epi32 ints v_s1(s2) and accumulate in s1(s2).
|
||||
*/
|
||||
#define S23O1 _MM_SHUFFLE(2, 3, 0, 1) /* A B C D -> B A D C */
|
||||
#define S1O32 _MM_SHUFFLE(1, 0, 3, 2) /* A B C D -> C D A B */
|
||||
v_s1 = _mm_add_epi32(v_s1, _mm_shuffle_epi32(v_s1, S23O1));
|
||||
v_s1 = _mm_add_epi32(v_s1, _mm_shuffle_epi32(v_s1, S1O32));
|
||||
s1 += _mm_cvtsi128_si32(v_s1);
|
||||
v_s2 = _mm_add_epi32(v_s2, _mm_shuffle_epi32(v_s2, S23O1));
|
||||
v_s2 = _mm_add_epi32(v_s2, _mm_shuffle_epi32(v_s2, S1O32));
|
||||
s2 = _mm_cvtsi128_si32(v_s2);
|
||||
#undef S23O1
|
||||
#undef S1O32
|
||||
/*
|
||||
* Reduce.
|
||||
*/
|
||||
s1 %= FLETCHER32_MODULE;
|
||||
s2 %= FLETCHER32_MODULE;
|
||||
}
|
||||
/*
|
||||
* Handle leftover data.
|
||||
*/
|
||||
if(len)
|
||||
{
|
||||
if(len >= 16)
|
||||
{
|
||||
s2 += (s1 += *data++);
|
||||
s2 += (s1 += *data++);
|
||||
s2 += (s1 += *data++);
|
||||
s2 += (s1 += *data++);
|
||||
s2 += (s1 += *data++);
|
||||
s2 += (s1 += *data++);
|
||||
s2 += (s1 += *data++);
|
||||
s2 += (s1 += *data++);
|
||||
s2 += (s1 += *data++);
|
||||
s2 += (s1 += *data++);
|
||||
s2 += (s1 += *data++);
|
||||
s2 += (s1 += *data++);
|
||||
s2 += (s1 += *data++);
|
||||
s2 += (s1 += *data++);
|
||||
s2 += (s1 += *data++);
|
||||
s2 += (s1 += *data++);
|
||||
len -= 16;
|
||||
}
|
||||
while(len--) { s2 += (s1 += *data++); }
|
||||
if(s1 >= FLETCHER32_MODULE) s1 -= FLETCHER32_MODULE;
|
||||
s2 %= FLETCHER32_MODULE;
|
||||
}
|
||||
/*
|
||||
* Return the recombined sums.
|
||||
*/
|
||||
*sum1 = s1 & 0xFFFF;
|
||||
*sum2 = s2 & 0xFFFF;
|
||||
}
|
||||
|
||||
#endif
|
||||
@@ -246,3 +246,115 @@ TEST_F(fletcher32Fixture, fletcher32_neon_2352bytes)
|
||||
EXPECT_EQ(fletcher32, EXPECTED_FLETCHER32_2352BYTES);
|
||||
}
|
||||
#endif
|
||||
|
||||
#if defined(__x86_64__) || defined(__amd64) || defined(_M_AMD64) || defined(_M_X64) || defined(__I386__) || \
|
||||
defined(__i386__) || defined(__THW_INTEL) || defined(_M_IX86)
|
||||
|
||||
TEST_F(fletcher32Fixture, fletcher32_ssse3)
|
||||
{
|
||||
if(!have_ssse3()) return;
|
||||
|
||||
uint16_t sum1;
|
||||
uint16_t sum2;
|
||||
uint32_t fletcher32;
|
||||
|
||||
sum1 = 0xFFFF;
|
||||
sum2 = 0xFFFF;
|
||||
|
||||
fletcher32_ssse3(&sum1, &sum2, buffer, 1048576);
|
||||
|
||||
fletcher32 = (sum2 << 16) | sum1;
|
||||
|
||||
EXPECT_EQ(fletcher32, EXPECTED_FLETCHER32);
|
||||
}
|
||||
|
||||
TEST_F(fletcher32Fixture, fletcher32_ssse3_misaligned)
|
||||
{
|
||||
if(!have_ssse3()) return;
|
||||
|
||||
uint16_t sum1;
|
||||
uint16_t sum2;
|
||||
uint32_t fletcher32;
|
||||
|
||||
sum1 = 0xFFFF;
|
||||
sum2 = 0xFFFF;
|
||||
|
||||
fletcher32_ssse3(&sum1, &sum2, buffer_misaligned+1, 1048576);
|
||||
|
||||
fletcher32 = (sum2 << 16) | sum1;
|
||||
|
||||
EXPECT_EQ(fletcher32, EXPECTED_FLETCHER32);
|
||||
}
|
||||
|
||||
TEST_F(fletcher32Fixture, fletcher32_ssse3_15bytes)
|
||||
{
|
||||
if(!have_ssse3()) return;
|
||||
|
||||
uint16_t sum1;
|
||||
uint16_t sum2;
|
||||
uint32_t fletcher32;
|
||||
|
||||
sum1 = 0xFFFF;
|
||||
sum2 = 0xFFFF;
|
||||
|
||||
fletcher32_ssse3(&sum1, &sum2, buffer, 15);
|
||||
|
||||
fletcher32 = (sum2 << 16) | sum1;
|
||||
|
||||
EXPECT_EQ(fletcher32, EXPECTED_FLETCHER32_15BYTES);
|
||||
}
|
||||
|
||||
TEST_F(fletcher32Fixture, fletcher32_ssse3_31bytes)
|
||||
{
|
||||
if(!have_ssse3()) return;
|
||||
|
||||
uint16_t sum1;
|
||||
uint16_t sum2;
|
||||
uint32_t fletcher32;
|
||||
|
||||
sum1 = 0xFFFF;
|
||||
sum2 = 0xFFFF;
|
||||
|
||||
fletcher32_ssse3(&sum1, &sum2, buffer, 31);
|
||||
|
||||
fletcher32 = (sum2 << 16) | sum1;
|
||||
|
||||
EXPECT_EQ(fletcher32, EXPECTED_FLETCHER32_31BYTES);
|
||||
}
|
||||
|
||||
TEST_F(fletcher32Fixture, fletcher32_ssse3_63bytes)
|
||||
{
|
||||
if(!have_ssse3()) return;
|
||||
|
||||
uint16_t sum1;
|
||||
uint16_t sum2;
|
||||
uint32_t fletcher32;
|
||||
|
||||
sum1 = 0xFFFF;
|
||||
sum2 = 0xFFFF;
|
||||
|
||||
fletcher32_ssse3(&sum1, &sum2, buffer, 63);
|
||||
|
||||
fletcher32 = (sum2 << 16) | sum1;
|
||||
|
||||
EXPECT_EQ(fletcher32, EXPECTED_FLETCHER32_63BYTES);
|
||||
}
|
||||
|
||||
TEST_F(fletcher32Fixture, fletcher32_ssse3_2352bytes)
|
||||
{
|
||||
if(!have_ssse3()) return;
|
||||
|
||||
uint16_t sum1;
|
||||
uint16_t sum2;
|
||||
uint32_t fletcher32;
|
||||
|
||||
sum1 = 0xFFFF;
|
||||
sum2 = 0xFFFF;
|
||||
|
||||
fletcher32_ssse3(&sum1, &sum2, buffer, 2352);
|
||||
|
||||
fletcher32 = (sum2 << 16) | sum1;
|
||||
|
||||
EXPECT_EQ(fletcher32, EXPECTED_FLETCHER32_2352BYTES);
|
||||
}
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user