Path: blob/main/sys/contrib/openzfs/module/zcommon/zfs_fletcher_intel.c
48383 views
// SPDX-License-Identifier: BSD-2-Clause OR GPL-2.0-only1/*2* Implement fast Fletcher4 with AVX2 instructions. (x86_64)3*4* Use the 256-bit AVX2 SIMD instructions and registers to compute5* Fletcher4 in four incremental 64-bit parallel accumulator streams,6* and then combine the streams to form the final four checksum words.7*8* Copyright (C) 2015 Intel Corporation.9*10* Authors:11* James Guilford <[email protected]>12* Jinshan Xiong <[email protected]>13*14* This software is available to you under a choice of one of two15* licenses. You may choose to be licensed under the terms of the GNU16* General Public License (GPL) Version 2, available from the file17* COPYING in the main directory of this source tree, or the18* OpenIB.org BSD license below:19*20* Redistribution and use in source and binary forms, with or21* without modification, are permitted provided that the following22* conditions are met:23*24* - Redistributions of source code must retain the above25* copyright notice, this list of conditions and the following26* disclaimer.27*28* - Redistributions in binary form must reproduce the above29* copyright notice, this list of conditions and the following30* disclaimer in the documentation and/or other materials31* provided with the distribution.32*33* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,34* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF35* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND36* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS37* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN38* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN39* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE40* SOFTWARE.41*/4243#if defined(HAVE_AVX) && defined(HAVE_AVX2)4445#include <sys/spa_checksum.h>46#include <sys/string.h>47#include <sys/simd.h>48#include <zfs_fletcher.h>4950static void51fletcher_4_avx2_init(fletcher_4_ctx_t *ctx)52{53memset(ctx->avx, 0, 4 * sizeof (zfs_fletcher_avx_t));54}5556static void57fletcher_4_avx2_fini(fletcher_4_ctx_t *ctx, zio_cksum_t *zcp)58{59uint64_t A, B, C, D;6061A = ctx->avx[0].v[0] + ctx->avx[0].v[1] +62ctx->avx[0].v[2] + ctx->avx[0].v[3];63B = 0 - ctx->avx[0].v[1] - 2 * ctx->avx[0].v[2] - 3 * ctx->avx[0].v[3] +644 * ctx->avx[1].v[0] + 4 * ctx->avx[1].v[1] + 4 * ctx->avx[1].v[2] +654 * ctx->avx[1].v[3];6667C = ctx->avx[0].v[2] + 3 * ctx->avx[0].v[3] - 6 * ctx->avx[1].v[0] -6810 * ctx->avx[1].v[1] - 14 * ctx->avx[1].v[2] -6918 * ctx->avx[1].v[3] + 16 * ctx->avx[2].v[0] +7016 * ctx->avx[2].v[1] + 16 * ctx->avx[2].v[2] +7116 * ctx->avx[2].v[3];7273D = 0 - ctx->avx[0].v[3] + 4 * ctx->avx[1].v[0] +7410 * ctx->avx[1].v[1] + 20 * ctx->avx[1].v[2] +7534 * ctx->avx[1].v[3] - 48 * ctx->avx[2].v[0] -7664 * ctx->avx[2].v[1] - 80 * ctx->avx[2].v[2] -7796 * ctx->avx[2].v[3] + 64 * ctx->avx[3].v[0] +7864 * ctx->avx[3].v[1] + 64 * ctx->avx[3].v[2] +7964 * ctx->avx[3].v[3];8081ZIO_SET_CHECKSUM(zcp, A, B, C, D);82}8384#define FLETCHER_4_AVX2_RESTORE_CTX(ctx) \85{ \86asm volatile("vmovdqu %0, %%ymm0" :: "m" ((ctx)->avx[0])); \87asm volatile("vmovdqu %0, %%ymm1" :: "m" ((ctx)->avx[1])); \88asm volatile("vmovdqu %0, %%ymm2" :: "m" ((ctx)->avx[2])); \89asm volatile("vmovdqu %0, %%ymm3" :: "m" ((ctx)->avx[3])); \90}9192#define FLETCHER_4_AVX2_SAVE_CTX(ctx) \93{ \94asm volatile("vmovdqu %%ymm0, %0" : "=m" ((ctx)->avx[0])); \95asm volatile("vmovdqu %%ymm1, %0" : "=m" ((ctx)->avx[1])); \96asm volatile("vmovdqu %%ymm2, %0" : "=m" ((ctx)->avx[2])); \97asm volatile("vmovdqu %%ymm3, %0" : "=m" ((ctx)->avx[3])); \98}99100101static void102fletcher_4_avx2_native(fletcher_4_ctx_t *ctx, const void *buf, uint64_t size)103{104const uint64_t *ip = buf;105const uint64_t *ipend = (uint64_t *)((uint8_t *)ip + size);106107FLETCHER_4_AVX2_RESTORE_CTX(ctx);108109do {110asm volatile("vpmovzxdq %0, %%ymm4"::"m" (*ip));111asm volatile("vpaddq %ymm4, %ymm0, %ymm0");112asm volatile("vpaddq %ymm0, %ymm1, %ymm1");113asm volatile("vpaddq %ymm1, %ymm2, %ymm2");114asm volatile("vpaddq %ymm2, %ymm3, %ymm3");115} while ((ip += 2) < ipend);116117FLETCHER_4_AVX2_SAVE_CTX(ctx);118asm volatile("vzeroupper");119}120121static void122fletcher_4_avx2_byteswap(fletcher_4_ctx_t *ctx, const void *buf, uint64_t size)123{124static const zfs_fletcher_avx_t mask = {125.v = { 0xFFFFFFFF00010203, 0xFFFFFFFF08090A0B,1260xFFFFFFFF00010203, 0xFFFFFFFF08090A0B }127};128const uint64_t *ip = buf;129const uint64_t *ipend = (uint64_t *)((uint8_t *)ip + size);130131FLETCHER_4_AVX2_RESTORE_CTX(ctx);132133asm volatile("vmovdqu %0, %%ymm5" :: "m" (mask));134135do {136asm volatile("vpmovzxdq %0, %%ymm4"::"m" (*ip));137asm volatile("vpshufb %ymm5, %ymm4, %ymm4");138139asm volatile("vpaddq %ymm4, %ymm0, %ymm0");140asm volatile("vpaddq %ymm0, %ymm1, %ymm1");141asm volatile("vpaddq %ymm1, %ymm2, %ymm2");142asm volatile("vpaddq %ymm2, %ymm3, %ymm3");143} while ((ip += 2) < ipend);144145FLETCHER_4_AVX2_SAVE_CTX(ctx);146asm volatile("vzeroupper");147}148149static boolean_t fletcher_4_avx2_valid(void)150{151return (kfpu_allowed() && zfs_avx_available() && zfs_avx2_available());152}153154const fletcher_4_ops_t fletcher_4_avx2_ops = {155.init_native = fletcher_4_avx2_init,156.fini_native = fletcher_4_avx2_fini,157.compute_native = fletcher_4_avx2_native,158.init_byteswap = fletcher_4_avx2_init,159.fini_byteswap = fletcher_4_avx2_fini,160.compute_byteswap = fletcher_4_avx2_byteswap,161.valid = fletcher_4_avx2_valid,162.uses_fpu = B_TRUE,163.name = "avx2"164};165166#endif /* defined(HAVE_AVX) && defined(HAVE_AVX2) */167168169