2019-01-12 05:01:28 +03:00
|
|
|
dnl #
|
|
|
|
dnl # Handle differences in kernel FPU code.
|
Support for vectorized algorithms on x86
This is initial support for x86 vectorized implementations of ZFS parity
and checksum algorithms.
For the compilation phase, configure step checks if toolchain supports relevant
instruction sets. Each implementation must ensure that the code is not passed
to compiler if relevant instruction set is not supported. For this purpose,
following new defines are provided if instruction set is supported:
- HAVE_SSE,
- HAVE_SSE2,
- HAVE_SSE3,
- HAVE_SSSE3,
- HAVE_SSE4_1,
- HAVE_SSE4_2,
- HAVE_AVX,
- HAVE_AVX2.
For detecting if an instruction set can be used in runtime, following functions
are provided in (include/linux/simd_x86.h):
- zfs_sse_available()
- zfs_sse2_available()
- zfs_sse3_available()
- zfs_ssse3_available()
- zfs_sse4_1_available()
- zfs_sse4_2_available()
- zfs_avx_available()
- zfs_avx2_available()
- zfs_bmi1_available()
- zfs_bmi2_available()
These function should be called once, on module load, or initialization.
They are safe to use from user and kernel space.
If an implementation is using more than single instruction set, both compiler
and runtime support for all relevant instruction sets should be checked.
Kernel fpu methods:
- kfpu_begin()
- kfpu_end()
Use __get_cpuid_max and __cpuid_count from <cpuid.h>
Both gcc and clang have support for these. They also handle ebx register
in case it is used for PIC code.
Signed-off-by: Gvozden Neskovic <neskovic@gmail.com>
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Chunwei Chen <tuxoko@gmail.com>
Closes #4381
2016-02-29 21:42:27 +03:00
|
|
|
dnl #
|
2019-01-12 05:01:28 +03:00
|
|
|
dnl # Kernel
|
2019-07-12 19:31:20 +03:00
|
|
|
dnl # 5.2: The fpu->initialized flag was replaced by TIF_NEED_FPU_LOAD.
|
|
|
|
dnl # HAVE_KERNEL_TIF_NEED_FPU_LOAD
|
|
|
|
dnl #
|
|
|
|
dnl # 5.0: As an optimization SIMD operations performed by kernel
|
|
|
|
dnl # threads can skip saving and restoring their FPU context.
|
|
|
|
dnl # Wrappers have been introduced to determine the running
|
|
|
|
dnl # context and use either the SIMD or generic implementation.
|
|
|
|
dnl # This change was made to the 4.19.38 and 4.14.120 LTS kernels.
|
|
|
|
dnl # HAVE_KERNEL_FPU_INITIALIZED
|
2019-01-12 05:01:28 +03:00
|
|
|
dnl #
|
|
|
|
dnl # 4.2: Use __kernel_fpu_{begin,end}()
|
|
|
|
dnl # HAVE_UNDERSCORE_KERNEL_FPU & KERNEL_EXPORTS_X86_FPU
|
|
|
|
dnl #
|
|
|
|
dnl # Pre-4.2: Use kernel_fpu_{begin,end}()
|
|
|
|
dnl # HAVE_KERNEL_FPU & KERNEL_EXPORTS_X86_FPU
|
Support for vectorized algorithms on x86
This is initial support for x86 vectorized implementations of ZFS parity
and checksum algorithms.
For the compilation phase, configure step checks if toolchain supports relevant
instruction sets. Each implementation must ensure that the code is not passed
to compiler if relevant instruction set is not supported. For this purpose,
following new defines are provided if instruction set is supported:
- HAVE_SSE,
- HAVE_SSE2,
- HAVE_SSE3,
- HAVE_SSSE3,
- HAVE_SSE4_1,
- HAVE_SSE4_2,
- HAVE_AVX,
- HAVE_AVX2.
For detecting if an instruction set can be used in runtime, following functions
are provided in (include/linux/simd_x86.h):
- zfs_sse_available()
- zfs_sse2_available()
- zfs_sse3_available()
- zfs_ssse3_available()
- zfs_sse4_1_available()
- zfs_sse4_2_available()
- zfs_avx_available()
- zfs_avx2_available()
- zfs_bmi1_available()
- zfs_bmi2_available()
These function should be called once, on module load, or initialization.
They are safe to use from user and kernel space.
If an implementation is using more than single instruction set, both compiler
and runtime support for all relevant instruction sets should be checked.
Kernel fpu methods:
- kfpu_begin()
- kfpu_end()
Use __get_cpuid_max and __cpuid_count from <cpuid.h>
Both gcc and clang have support for these. They also handle ebx register
in case it is used for PIC code.
Signed-off-by: Gvozden Neskovic <neskovic@gmail.com>
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Chunwei Chen <tuxoko@gmail.com>
Closes #4381
2016-02-29 21:42:27 +03:00
|
|
|
dnl #
|
2019-10-01 22:50:34 +03:00
|
|
|
dnl # N.B. The header check is performed before all other checks since it
|
|
|
|
dnl # depends on HAVE_KERNEL_FPU_API_HEADER being set in confdefs.h.
|
|
|
|
dnl #
|
|
|
|
AC_DEFUN([ZFS_AC_KERNEL_FPU_HEADER], [
|
|
|
|
AC_MSG_CHECKING([whether fpu headers are available])
|
Support for vectorized algorithms on x86
This is initial support for x86 vectorized implementations of ZFS parity
and checksum algorithms.
For the compilation phase, configure step checks if toolchain supports relevant
instruction sets. Each implementation must ensure that the code is not passed
to compiler if relevant instruction set is not supported. For this purpose,
following new defines are provided if instruction set is supported:
- HAVE_SSE,
- HAVE_SSE2,
- HAVE_SSE3,
- HAVE_SSSE3,
- HAVE_SSE4_1,
- HAVE_SSE4_2,
- HAVE_AVX,
- HAVE_AVX2.
For detecting if an instruction set can be used in runtime, following functions
are provided in (include/linux/simd_x86.h):
- zfs_sse_available()
- zfs_sse2_available()
- zfs_sse3_available()
- zfs_ssse3_available()
- zfs_sse4_1_available()
- zfs_sse4_2_available()
- zfs_avx_available()
- zfs_avx2_available()
- zfs_bmi1_available()
- zfs_bmi2_available()
These function should be called once, on module load, or initialization.
They are safe to use from user and kernel space.
If an implementation is using more than single instruction set, both compiler
and runtime support for all relevant instruction sets should be checked.
Kernel fpu methods:
- kfpu_begin()
- kfpu_end()
Use __get_cpuid_max and __cpuid_count from <cpuid.h>
Both gcc and clang have support for these. They also handle ebx register
in case it is used for PIC code.
Signed-off-by: Gvozden Neskovic <neskovic@gmail.com>
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Chunwei Chen <tuxoko@gmail.com>
Closes #4381
2016-02-29 21:42:27 +03:00
|
|
|
ZFS_LINUX_TRY_COMPILE([
|
2019-03-07 03:03:03 +03:00
|
|
|
#include <linux/module.h>
|
|
|
|
#include <asm/fpu/api.h>
|
|
|
|
],[
|
|
|
|
],[
|
2019-07-17 03:22:31 +03:00
|
|
|
AC_DEFINE(HAVE_KERNEL_FPU_API_HEADER, 1,
|
|
|
|
[kernel has asm/fpu/api.h])
|
2019-03-07 03:03:03 +03:00
|
|
|
AC_MSG_RESULT(asm/fpu/api.h)
|
|
|
|
],[
|
|
|
|
AC_MSG_RESULT(i387.h & xcr.h)
|
|
|
|
])
|
2019-10-01 22:50:34 +03:00
|
|
|
])
|
2019-03-07 03:03:03 +03:00
|
|
|
|
2019-10-01 22:50:34 +03:00
|
|
|
AC_DEFUN([ZFS_AC_KERNEL_SRC_FPU], [
|
|
|
|
ZFS_LINUX_TEST_SRC([kernel_fpu], [
|
2019-03-07 03:03:03 +03:00
|
|
|
#ifdef HAVE_KERNEL_FPU_API_HEADER
|
|
|
|
#include <asm/fpu/api.h>
|
|
|
|
#else
|
2019-01-12 05:01:28 +03:00
|
|
|
#include <asm/i387.h>
|
|
|
|
#include <asm/xcr.h>
|
2019-03-07 03:03:03 +03:00
|
|
|
#endif
|
2019-10-01 22:50:34 +03:00
|
|
|
], [
|
2019-01-12 05:01:28 +03:00
|
|
|
kernel_fpu_begin();
|
|
|
|
kernel_fpu_end();
|
2019-10-01 22:50:34 +03:00
|
|
|
], [], [$ZFS_META_LICENSE])
|
|
|
|
|
|
|
|
ZFS_LINUX_TEST_SRC([__kernel_fpu], [
|
|
|
|
#ifdef HAVE_KERNEL_FPU_API_HEADER
|
|
|
|
#include <asm/fpu/api.h>
|
|
|
|
#else
|
|
|
|
#include <asm/i387.h>
|
|
|
|
#include <asm/xcr.h>
|
|
|
|
#endif
|
|
|
|
], [
|
|
|
|
__kernel_fpu_begin();
|
|
|
|
__kernel_fpu_end();
|
|
|
|
], [], [$ZFS_META_LICENSE])
|
|
|
|
|
|
|
|
ZFS_LINUX_TEST_SRC([fpu_initialized], [
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/sched.h>
|
|
|
|
],[
|
|
|
|
struct fpu *fpu = ¤t->thread.fpu;
|
|
|
|
if (fpu->initialized) { return (0); };
|
|
|
|
])
|
|
|
|
|
|
|
|
ZFS_LINUX_TEST_SRC([tif_need_fpu_load], [
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <asm/thread_info.h>
|
|
|
|
|
|
|
|
#if !defined(TIF_NEED_FPU_LOAD)
|
|
|
|
#error "TIF_NEED_FPU_LOAD undefined"
|
|
|
|
#endif
|
|
|
|
],[])
|
|
|
|
])
|
|
|
|
|
|
|
|
AC_DEFUN([ZFS_AC_KERNEL_FPU], [
|
|
|
|
dnl #
|
|
|
|
dnl # Legacy kernel
|
|
|
|
dnl #
|
|
|
|
AC_MSG_CHECKING([whether kernel fpu is available])
|
|
|
|
ZFS_LINUX_TEST_RESULT_SYMBOL([kernel_fpu_license],
|
|
|
|
[kernel_fpu_begin], [arch/x86/kernel/fpu/core.c], [
|
2019-01-12 05:01:28 +03:00
|
|
|
AC_MSG_RESULT(kernel_fpu_*)
|
2019-07-17 03:22:31 +03:00
|
|
|
AC_DEFINE(HAVE_KERNEL_FPU, 1,
|
|
|
|
[kernel has kernel_fpu_* functions])
|
|
|
|
AC_DEFINE(KERNEL_EXPORTS_X86_FPU, 1,
|
|
|
|
[kernel exports FPU functions])
|
Support for vectorized algorithms on x86
This is initial support for x86 vectorized implementations of ZFS parity
and checksum algorithms.
For the compilation phase, configure step checks if toolchain supports relevant
instruction sets. Each implementation must ensure that the code is not passed
to compiler if relevant instruction set is not supported. For this purpose,
following new defines are provided if instruction set is supported:
- HAVE_SSE,
- HAVE_SSE2,
- HAVE_SSE3,
- HAVE_SSSE3,
- HAVE_SSE4_1,
- HAVE_SSE4_2,
- HAVE_AVX,
- HAVE_AVX2.
For detecting if an instruction set can be used in runtime, following functions
are provided in (include/linux/simd_x86.h):
- zfs_sse_available()
- zfs_sse2_available()
- zfs_sse3_available()
- zfs_ssse3_available()
- zfs_sse4_1_available()
- zfs_sse4_2_available()
- zfs_avx_available()
- zfs_avx2_available()
- zfs_bmi1_available()
- zfs_bmi2_available()
These function should be called once, on module load, or initialization.
They are safe to use from user and kernel space.
If an implementation is using more than single instruction set, both compiler
and runtime support for all relevant instruction sets should be checked.
Kernel fpu methods:
- kfpu_begin()
- kfpu_end()
Use __get_cpuid_max and __cpuid_count from <cpuid.h>
Both gcc and clang have support for these. They also handle ebx register
in case it is used for PIC code.
Signed-off-by: Gvozden Neskovic <neskovic@gmail.com>
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Chunwei Chen <tuxoko@gmail.com>
Closes #4381
2016-02-29 21:42:27 +03:00
|
|
|
],[
|
2019-10-01 22:50:34 +03:00
|
|
|
dnl #
|
|
|
|
dnl # Linux 4.2 kernel
|
|
|
|
dnl #
|
|
|
|
ZFS_LINUX_TEST_RESULT_SYMBOL([__kernel_fpu_license],
|
|
|
|
[__kernel_fpu_begin],
|
|
|
|
[arch/x86/kernel/fpu/core.c arch/x86/kernel/i387.c], [
|
2019-01-12 05:01:28 +03:00
|
|
|
AC_MSG_RESULT(__kernel_fpu_*)
|
2019-07-12 19:31:20 +03:00
|
|
|
AC_DEFINE(HAVE_UNDERSCORE_KERNEL_FPU, 1,
|
|
|
|
[kernel has __kernel_fpu_* functions])
|
|
|
|
AC_DEFINE(KERNEL_EXPORTS_X86_FPU, 1,
|
|
|
|
[kernel exports FPU functions])
|
2019-01-12 05:01:28 +03:00
|
|
|
],[
|
2019-10-01 22:50:34 +03:00
|
|
|
dnl #
|
|
|
|
dnl # Linux 5.0 kernel
|
|
|
|
dnl #
|
|
|
|
ZFS_LINUX_TEST_RESULT([fpu_initialized], [
|
2019-07-12 19:31:20 +03:00
|
|
|
AC_MSG_RESULT(fpu.initialized)
|
|
|
|
AC_DEFINE(HAVE_KERNEL_FPU_INITIALIZED, 1,
|
|
|
|
[kernel fpu.initialized exists])
|
|
|
|
],[
|
2019-10-01 22:50:34 +03:00
|
|
|
dnl #
|
|
|
|
dnl # Linux 5.2 kernel
|
|
|
|
dnl #
|
|
|
|
ZFS_LINUX_TEST_RESULT([tif_need_fpu_load], [
|
2019-07-12 19:31:20 +03:00
|
|
|
AC_MSG_RESULT(TIF_NEED_FPU_LOAD)
|
|
|
|
AC_DEFINE(
|
|
|
|
HAVE_KERNEL_TIF_NEED_FPU_LOAD, 1,
|
|
|
|
[kernel TIF_NEED_FPU_LOAD exists])
|
|
|
|
],[
|
|
|
|
AC_MSG_RESULT(unavailable)
|
|
|
|
])
|
|
|
|
])
|
2019-01-12 05:01:28 +03:00
|
|
|
])
|
Support for vectorized algorithms on x86
This is initial support for x86 vectorized implementations of ZFS parity
and checksum algorithms.
For the compilation phase, configure step checks if toolchain supports relevant
instruction sets. Each implementation must ensure that the code is not passed
to compiler if relevant instruction set is not supported. For this purpose,
following new defines are provided if instruction set is supported:
- HAVE_SSE,
- HAVE_SSE2,
- HAVE_SSE3,
- HAVE_SSSE3,
- HAVE_SSE4_1,
- HAVE_SSE4_2,
- HAVE_AVX,
- HAVE_AVX2.
For detecting if an instruction set can be used in runtime, following functions
are provided in (include/linux/simd_x86.h):
- zfs_sse_available()
- zfs_sse2_available()
- zfs_sse3_available()
- zfs_ssse3_available()
- zfs_sse4_1_available()
- zfs_sse4_2_available()
- zfs_avx_available()
- zfs_avx2_available()
- zfs_bmi1_available()
- zfs_bmi2_available()
These function should be called once, on module load, or initialization.
They are safe to use from user and kernel space.
If an implementation is using more than single instruction set, both compiler
and runtime support for all relevant instruction sets should be checked.
Kernel fpu methods:
- kfpu_begin()
- kfpu_end()
Use __get_cpuid_max and __cpuid_count from <cpuid.h>
Both gcc and clang have support for these. They also handle ebx register
in case it is used for PIC code.
Signed-off-by: Gvozden Neskovic <neskovic@gmail.com>
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Chunwei Chen <tuxoko@gmail.com>
Closes #4381
2016-02-29 21:42:27 +03:00
|
|
|
])
|
|
|
|
])
|