Path: blob/main/sys/contrib/openzfs/module/zcommon/zfs_fletcher_sse.c
48383 views
// SPDX-License-Identifier: BSD-2-Clause OR GPL-2.0-only1/*2* Implement fast Fletcher4 with SSE2,SSSE3 instructions. (x86)3*4* Use the 128-bit SSE2/SSSE3 SIMD instructions and registers to compute5* Fletcher4 in two incremental 64-bit parallel accumulator streams,6* and then combine the streams to form the final four checksum words.7* This implementation is a derivative of the AVX SIMD implementation by8* James Guilford and Jinshan Xiong from Intel (see zfs_fletcher_intel.c).9*10* Copyright (C) 2016 Tyler J. Stachecki.11*12* Authors:13* Tyler J. Stachecki <[email protected]>14*15* This software is available to you under a choice of one of two16* licenses. You may choose to be licensed under the terms of the GNU17* General Public License (GPL) Version 2, available from the file18* COPYING in the main directory of this source tree, or the19* OpenIB.org BSD license below:20*21* Redistribution and use in source and binary forms, with or22* without modification, are permitted provided that the following23* conditions are met:24*25* - Redistributions of source code must retain the above26* copyright notice, this list of conditions and the following27* disclaimer.28*29* - Redistributions in binary form must reproduce the above30* copyright notice, this list of conditions and the following31* disclaimer in the documentation and/or other materials32* provided with the distribution.33*34* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,35* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF36* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND37* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS38* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN39* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN40* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE41* SOFTWARE.42*/4344#if defined(HAVE_SSE2)4546#include <sys/simd.h>47#include <sys/spa_checksum.h>48#include <sys/string.h>49#include <sys/byteorder.h>50#include <zfs_fletcher.h>5152static void53fletcher_4_sse2_init(fletcher_4_ctx_t *ctx)54{55memset(ctx->sse, 0, 4 * sizeof (zfs_fletcher_sse_t));56}5758static void59fletcher_4_sse2_fini(fletcher_4_ctx_t *ctx, zio_cksum_t *zcp)60{61uint64_t A, B, C, D;6263/*64* The mixing matrix for checksum calculation is:65* a = a0 + a166* b = 2b0 + 2b1 - a167* c = 4c0 - b0 + 4c1 -3b168* d = 8d0 - 4c0 + 8d1 - 8c1 + b1;69*70* c and d are multiplied by 4 and 8, respectively,71* before spilling the vectors out to memory.72*/73A = ctx->sse[0].v[0] + ctx->sse[0].v[1];74B = 2 * ctx->sse[1].v[0] + 2 * ctx->sse[1].v[1] - ctx->sse[0].v[1];75C = 4 * ctx->sse[2].v[0] - ctx->sse[1].v[0] + 4 * ctx->sse[2].v[1] -763 * ctx->sse[1].v[1];77D = 8 * ctx->sse[3].v[0] - 4 * ctx->sse[2].v[0] + 8 * ctx->sse[3].v[1] -788 * ctx->sse[2].v[1] + ctx->sse[1].v[1];7980ZIO_SET_CHECKSUM(zcp, A, B, C, D);81}8283#define FLETCHER_4_SSE_RESTORE_CTX(ctx) \84{ \85asm volatile("movdqu %0, %%xmm0" :: "m" ((ctx)->sse[0])); \86asm volatile("movdqu %0, %%xmm1" :: "m" ((ctx)->sse[1])); \87asm volatile("movdqu %0, %%xmm2" :: "m" ((ctx)->sse[2])); \88asm volatile("movdqu %0, %%xmm3" :: "m" ((ctx)->sse[3])); \89}9091#define FLETCHER_4_SSE_SAVE_CTX(ctx) \92{ \93asm volatile("movdqu %%xmm0, %0" : "=m" ((ctx)->sse[0])); \94asm volatile("movdqu %%xmm1, %0" : "=m" ((ctx)->sse[1])); \95asm volatile("movdqu %%xmm2, %0" : "=m" ((ctx)->sse[2])); \96asm volatile("movdqu %%xmm3, %0" : "=m" ((ctx)->sse[3])); \97}9899static void100fletcher_4_sse2_native(fletcher_4_ctx_t *ctx, const void *buf, uint64_t size)101{102const uint64_t *ip = buf;103const uint64_t *ipend = (uint64_t *)((uint8_t *)ip + size);104105FLETCHER_4_SSE_RESTORE_CTX(ctx);106107asm volatile("pxor %xmm4, %xmm4");108109do {110asm volatile("movdqu %0, %%xmm5" :: "m"(*ip));111asm volatile("movdqa %xmm5, %xmm6");112asm volatile("punpckldq %xmm4, %xmm5");113asm volatile("punpckhdq %xmm4, %xmm6");114asm volatile("paddq %xmm5, %xmm0");115asm volatile("paddq %xmm0, %xmm1");116asm volatile("paddq %xmm1, %xmm2");117asm volatile("paddq %xmm2, %xmm3");118asm volatile("paddq %xmm6, %xmm0");119asm volatile("paddq %xmm0, %xmm1");120asm volatile("paddq %xmm1, %xmm2");121asm volatile("paddq %xmm2, %xmm3");122} while ((ip += 2) < ipend);123124FLETCHER_4_SSE_SAVE_CTX(ctx);125}126127static void128fletcher_4_sse2_byteswap(fletcher_4_ctx_t *ctx, const void *buf, uint64_t size)129{130const uint32_t *ip = buf;131const uint32_t *ipend = (uint32_t *)((uint8_t *)ip + size);132133FLETCHER_4_SSE_RESTORE_CTX(ctx);134135do {136uint32_t scratch1 = BSWAP_32(ip[0]);137uint32_t scratch2 = BSWAP_32(ip[1]);138asm volatile("movd %0, %%xmm5" :: "r"(scratch1));139asm volatile("movd %0, %%xmm6" :: "r"(scratch2));140asm volatile("punpcklqdq %xmm6, %xmm5");141asm volatile("paddq %xmm5, %xmm0");142asm volatile("paddq %xmm0, %xmm1");143asm volatile("paddq %xmm1, %xmm2");144asm volatile("paddq %xmm2, %xmm3");145} while ((ip += 2) < ipend);146147FLETCHER_4_SSE_SAVE_CTX(ctx);148}149150static boolean_t fletcher_4_sse2_valid(void)151{152return (kfpu_allowed() && zfs_sse2_available());153}154155const fletcher_4_ops_t fletcher_4_sse2_ops = {156.init_native = fletcher_4_sse2_init,157.fini_native = fletcher_4_sse2_fini,158.compute_native = fletcher_4_sse2_native,159.init_byteswap = fletcher_4_sse2_init,160.fini_byteswap = fletcher_4_sse2_fini,161.compute_byteswap = fletcher_4_sse2_byteswap,162.valid = fletcher_4_sse2_valid,163.uses_fpu = B_TRUE,164.name = "sse2"165};166167#endif /* defined(HAVE_SSE2) */168169#if defined(HAVE_SSE2) && defined(HAVE_SSSE3)170static void171fletcher_4_ssse3_byteswap(fletcher_4_ctx_t *ctx, const void *buf, uint64_t size)172{173static const zfs_fletcher_sse_t mask = {174.v = { 0x0405060700010203, 0x0C0D0E0F08090A0B }175};176177const uint64_t *ip = buf;178const uint64_t *ipend = (uint64_t *)((uint8_t *)ip + size);179180FLETCHER_4_SSE_RESTORE_CTX(ctx);181182asm volatile("movdqu %0, %%xmm7"::"m" (mask));183asm volatile("pxor %xmm4, %xmm4");184185do {186asm volatile("movdqu %0, %%xmm5"::"m" (*ip));187asm volatile("pshufb %xmm7, %xmm5");188asm volatile("movdqa %xmm5, %xmm6");189asm volatile("punpckldq %xmm4, %xmm5");190asm volatile("punpckhdq %xmm4, %xmm6");191asm volatile("paddq %xmm5, %xmm0");192asm volatile("paddq %xmm0, %xmm1");193asm volatile("paddq %xmm1, %xmm2");194asm volatile("paddq %xmm2, %xmm3");195asm volatile("paddq %xmm6, %xmm0");196asm volatile("paddq %xmm0, %xmm1");197asm volatile("paddq %xmm1, %xmm2");198asm volatile("paddq %xmm2, %xmm3");199} while ((ip += 2) < ipend);200201FLETCHER_4_SSE_SAVE_CTX(ctx);202}203204static boolean_t fletcher_4_ssse3_valid(void)205{206return (kfpu_allowed() && zfs_sse2_available() &&207zfs_ssse3_available());208}209210const fletcher_4_ops_t fletcher_4_ssse3_ops = {211.init_native = fletcher_4_sse2_init,212.fini_native = fletcher_4_sse2_fini,213.compute_native = fletcher_4_sse2_native,214.init_byteswap = fletcher_4_sse2_init,215.fini_byteswap = fletcher_4_sse2_fini,216.compute_byteswap = fletcher_4_ssse3_byteswap,217.valid = fletcher_4_ssse3_valid,218.uses_fpu = B_TRUE,219.name = "ssse3"220};221222#endif /* defined(HAVE_SSE2) && defined(HAVE_SSSE3) */223224225