aboutsummaryrefslogtreecommitdiff
path: root/ext/ipp/sources/include/dispatcher.h
diff options
context:
space:
mode:
Diffstat (limited to 'ext/ipp/sources/include/dispatcher.h')
-rw-r--r--ext/ipp/sources/include/dispatcher.h321
1 files changed, 321 insertions, 0 deletions
diff --git a/ext/ipp/sources/include/dispatcher.h b/ext/ipp/sources/include/dispatcher.h
new file mode 100644
index 0000000..8203514
--- /dev/null
+++ b/ext/ipp/sources/include/dispatcher.h
@@ -0,0 +1,321 @@
+/*******************************************************************************
+* Copyright 2009-2018 Intel Corporation
+* All Rights Reserved.
+*
+* If this software was obtained under the Intel Simplified Software License,
+* the following terms apply:
+*
+* The source code, information and material ("Material") contained herein is
+* owned by Intel Corporation or its suppliers or licensors, and title to such
+* Material remains with Intel Corporation or its suppliers or licensors. The
+* Material contains proprietary information of Intel or its suppliers and
+* licensors. The Material is protected by worldwide copyright laws and treaty
+* provisions. No part of the Material may be used, copied, reproduced,
+* modified, published, uploaded, posted, transmitted, distributed or disclosed
+* in any way without Intel's prior express written permission. No license under
+* any patent, copyright or other intellectual property rights in the Material
+* is granted to or conferred upon you, either expressly, by implication,
+* inducement, estoppel or otherwise. Any license under such intellectual
+* property rights must be express and approved by Intel in writing.
+*
+* Unless otherwise agreed by Intel in writing, you may not remove or alter this
+* notice or any other notice embedded in Materials by Intel or Intel's
+* suppliers or licensors in any way.
+*
+*
+* If this software was obtained under the Apache License, Version 2.0 (the
+* "License"), the following terms apply:
+*
+* You may not use this file except in compliance with the License. You may
+* obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
+*
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+*
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*******************************************************************************/
+
+//
+// Intel(R) Integrated Performance Primitives (Intel(R) IPP) Cryptography
+//
+
+#ifndef __DISPATCHER_H__
+#define __DISPATCHER_H__
+
+#if defined( __cplusplus )
+extern "C" {
+#endif
+
+/*
+ Intel(R) IPP libraries and CPU features mask fitness. Implemented only for IA32 and Intel64 (emt)
+*/
+
+#if defined( _ARCH_IA32 )
+#define M5_FM ( 0 )
+#ifdef _IPP_QUARK
+#define PX_FM ( 0 )
+#else
+#define PX_FM ( ippCPUID_MMX | ippCPUID_SSE )
+#endif
+#define W7_FM ( PX_FM | ippCPUID_SSE2 )
+#define V8_FM ( W7_FM | ippCPUID_SSE3 | ippCPUID_SSSE3 )
+#define S8_FM ( V8_FM | ippCPUID_MOVBE )
+#define P8_FM ( V8_FM | ippCPUID_SSE41 | ippCPUID_SSE42 | ippCPUID_AES | ippCPUID_CLMUL | ippCPUID_SHA )
+#define G9_FM ( P8_FM | ippCPUID_AVX | ippAVX_ENABLEDBYOS | ippCPUID_RDRAND | ippCPUID_F16C )
+#define H9_FM ( G9_FM | ippCPUID_MOVBE | ippCPUID_AVX2 | ippCPUID_ADCOX | ippCPUID_RDSEED | ippCPUID_PREFETCHW )
+#define I0_FM ( H9_FM | ippCPUID_AVX512F | ippCPUID_AVX512CD | ippCPUID_AVX512PF | ippCPUID_AVX512ER | ippAVX512_ENABLEDBYOS )
+#define S0_FM ( H9_FM | ippCPUID_AVX512F | ippCPUID_AVX512CD | ippCPUID_AVX512VL | ippCPUID_AVX512BW | ippCPUID_AVX512DQ | ippAVX512_ENABLEDBYOS )
+
+#elif defined (_ARCH_EM64T)
+
+#define PX_FM ( ippCPUID_MMX | ippCPUID_SSE | ippCPUID_SSE2 )
+#define M7_FM ( PX_FM | ippCPUID_SSE3 )
+#define U8_FM ( M7_FM | ippCPUID_SSSE3 )
+#define N8_FM ( U8_FM | ippCPUID_MOVBE )
+#define Y8_FM ( U8_FM | ippCPUID_SSE41 | ippCPUID_SSE42 | ippCPUID_AES | ippCPUID_CLMUL | ippCPUID_SHA )
+#define E9_FM ( Y8_FM | ippCPUID_AVX | ippAVX_ENABLEDBYOS | ippCPUID_RDRAND | ippCPUID_F16C )
+#define L9_FM ( E9_FM | ippCPUID_MOVBE | ippCPUID_AVX2 | ippCPUID_ADCOX | ippCPUID_RDSEED | ippCPUID_PREFETCHW )
+#define N0_FM ( L9_FM | ippCPUID_AVX512F | ippCPUID_AVX512CD | ippCPUID_AVX512PF | ippCPUID_AVX512ER | ippAVX512_ENABLEDBYOS )
+#define K0_FM ( L9_FM | ippCPUID_AVX512F | ippCPUID_AVX512CD | ippCPUID_AVX512VL | ippCPUID_AVX512BW | ippCPUID_AVX512DQ | ippAVX512_ENABLEDBYOS )
+
+#elif defined (_ARCH_LRB2)
+ #define PX_FM ( ippCPUID_KNC )
+#else
+ #error undefined architecture
+#endif
+
+#define PX_MSK ( 0 )
+#define MMX_MSK ( ippCPUID_MMX )
+#define SSE_MSK ( MMX_MSK | ippCPUID_SSE )
+#define SSE2_MSK ( SSE_MSK | ippCPUID_SSE2 )
+#define SSE3_MSK ( SSE2_MSK | ippCPUID_SSE3 )
+#define SSSE3_MSK ( SSE3_MSK | ippCPUID_SSSE3 )
+#define ATOM_MSK ( SSE3_MSK | ippCPUID_SSSE3 | ippCPUID_MOVBE )
+#define SSE41_MSK ( SSSE3_MSK | ippCPUID_SSE41 )
+#define SSE42_MSK ( SSE41_MSK | ippCPUID_SSE42 )
+#define AVX_MSK ( SSE42_MSK | ippCPUID_AVX )
+#define AVX2_MSK ( AVX_MSK | ippCPUID_AVX2 )
+#define AVX3X_MSK ( AVX2_MSK | ippCPUID_AVX512F | ippCPUID_AVX512CD | ippCPUID_AVX512VL | ippCPUID_AVX512BW | ippCPUID_AVX512DQ )
+#define AVX3M_MSK ( AVX2_MSK | ippCPUID_AVX512F | ippCPUID_AVX512CD | ippCPUID_AVX512PF | ippCPUID_AVX512ER )
+
+#if defined( _ARCH_IA32 ) && !defined( OSX32 ) && !defined( ANDROID )
+ enum lib_enum {
+ LIB_W7=0, LIB_S8=1, LIB_P8=2, LIB_G9=3, LIB_H9=4, LIB_NOMORE
+ };
+ #define LIB_PX LIB_W7
+#elif defined( OSX32 )
+ enum lib_enum {
+ LIB_S8=0, LIB_P8=1, LIB_G9=2, LIB_H9=3, LIB_NOMORE
+ };
+ #define LIB_PX LIB_S8
+ #define LIB_W7 LIB_S8
+#elif defined( ANDROID ) && defined( _ARCH_IA32 )
+ enum lib_enum {
+ LIB_S8=0, LIB_P8=1, LIB_G9=2, LIB_H9=3, LIB_NOMORE
+ };
+ #define LIB_PX LIB_S8
+ #define LIB_W7 LIB_S8
+
+#elif defined( ANDROID ) && defined( _ARCH_EM64T )
+ enum lib_enum {
+ LIB_N8=0, LIB_Y8=1, LIB_E9=2, LIB_L9=3, LIB_NOMORE
+ };
+ #define LIB_PX LIB_N8
+ #define LIB_M7 LIB_N8
+ #define LIB_K0 LIB_L9
+ #define LIB_N0 LIB_L9
+
+#elif defined( _ARCH_EM64T ) && !defined( OSXEM64T ) && !defined( ANDROID ) && !defined( _WIN32E ) /* Linux* OS Intel64 supports N0 */
+ enum lib_enum {
+ LIB_M7=0, LIB_N8=1, LIB_Y8=2, LIB_E9=3, LIB_L9=4, LIB_N0=5, LIB_K0=6, LIB_NOMORE
+ };
+ #define LIB_PX LIB_M7
+#elif defined( _ARCH_EM64T ) && !defined( OSXEM64T ) && !defined( ANDROID ) /* Windows* OS Intel64 doesn't support N0 */
+ enum lib_enum {
+ LIB_M7=0, LIB_N8=1, LIB_Y8=2, LIB_E9=3, LIB_L9=4, LIB_K0=5, LIB_NOMORE
+ };
+ #define LIB_PX LIB_M7
+ #define LIB_N0 LIB_L9
+#elif defined( OSXEM64T )
+ enum lib_enum {
+ LIB_N8=0, LIB_Y8=1, LIB_E9=2, LIB_L9=3, LIB_K0=4, LIB_NOMORE
+ };
+ #define LIB_PX LIB_N8
+ #define LIB_M7 LIB_N8
+ #define LIB_N0 LIB_L9
+#elif defined( _ARCH_LRB2 )
+ enum lib_enum {
+ LIB_PX=0, LIB_B2=1, LIB_NOMORE
+ };
+ #define LIB_MIC LIB_B2
+#else
+ #error "lib_enum isn't defined!"
+#endif
+
+#if defined( _ARCH_IA32 )
+ #if defined( OSX32 ) /* OSX supports starting with Intel(R) architecture formerly codenamed Penryn only */
+ #define LIB_MMX LIB_S8
+ #define LIB_SSE LIB_S8
+ #define LIB_SSE2 LIB_S8
+ #define LIB_SSE3 LIB_S8
+ #define LIB_ATOM LIB_S8
+ #define LIB_SSSE3 LIB_S8
+ #define LIB_SSE41 LIB_S8
+ #define LIB_SSE42 LIB_P8
+ #define LIB_AVX LIB_G9
+ #define LIB_AVX2 LIB_H9
+ #define LIB_AVX3M LIB_H9 /* no ia32 library for Intel(R) Xeon Phi(TM) processor (formerly Knight Landing) */
+ #define LIB_AVX3X LIB_H9 /* no ia32 library for Intel(R) Xeon(R) processor (formerly Skylake) */
+ #else
+ #define LIB_MMX LIB_W7
+ #define LIB_SSE LIB_W7
+ #define LIB_SSE2 LIB_W7
+ #define LIB_SSE3 LIB_W7
+ #define LIB_ATOM LIB_S8
+ #define LIB_SSSE3 LIB_S8
+ #define LIB_SSE41 LIB_S8 /* P8 is oriented for new Intel Atom(R) processor (formerly Silvermont) */
+ #define LIB_SSE42 LIB_P8
+ #define LIB_AVX LIB_G9
+ #define LIB_AVX2 LIB_H9
+ #define LIB_AVX3M LIB_H9 /* no ia32 library for Intel(R) Xeon Phi(TM) processor (formerly Knight Landing) */
+ #define LIB_AVX3X LIB_H9 /* no ia32 library for Intel(R) Xeon(R) processor (formerly Skylake) */
+ #endif
+#elif defined (_ARCH_EM64T)
+ #if defined( OSXEM64T ) /* OSX supports starting PNR only */
+ #define LIB_MMX LIB_N8
+ #define LIB_SSE LIB_N8
+ #define LIB_SSE2 LIB_N8
+ #define LIB_SSE3 LIB_N8
+ #define LIB_ATOM LIB_N8
+ #define LIB_SSSE3 LIB_N8
+ #define LIB_SSE41 LIB_N8
+ #define LIB_SSE42 LIB_Y8
+ #define LIB_AVX LIB_E9
+ #define LIB_AVX2 LIB_L9
+ #define LIB_AVX3M LIB_L9
+ #define LIB_AVX3X LIB_K0
+ #else
+ #define LIB_MMX LIB_M7
+ #define LIB_SSE LIB_M7
+ #define LIB_SSE2 LIB_M7
+ #define LIB_SSE3 LIB_M7
+ #define LIB_ATOM LIB_N8
+ #define LIB_SSSE3 LIB_N8
+ #define LIB_SSE41 LIB_N8 /* Y8 is oriented for new Intel Atom(R) processor (formerly Silvermont) */
+ #define LIB_SSE42 LIB_Y8
+ #define LIB_AVX LIB_E9
+ #define LIB_AVX2 LIB_L9
+ #define LIB_AVX3M LIB_N0
+ #define LIB_AVX3X LIB_K0
+ #endif
+#elif defined (_ARCH_LRB2)
+ #define LIB_MIC LIB_B2
+#endif
+
+#if defined( _IPP_DYNAMIC )
+#if defined( _ARCH_IA32 )
+
+/* Describe Intel CPUs and libraries */
+typedef enum{CPU_W7=0, CPU_S8, CPU_P8, CPU_G9, CPU_H9, CPU_NOMORE} cpu_enum;
+typedef enum{DLL_W7=0, DLL_S8, DLL_P8, DLL_G9, DLL_H9, DLL_NOMORE} dll_enum;
+
+/* New cpu can use some libraries for old cpu */
+static const dll_enum dllUsage[][DLL_NOMORE+1] = {
+ /* DLL_H9, DLL_G9, DLL_P8, DLL_S8, DLL_W7, DLL_NOMORE */
+/*CPU_W7*/ { DLL_W7, DLL_NOMORE },
+/*CPU_S8*/ { DLL_S8, DLL_W7, DLL_NOMORE },
+/*CPU_P8*/ { DLL_P8, DLL_S8, DLL_W7, DLL_NOMORE },
+/*CPU_G9*/ { DLL_G9, DLL_P8, DLL_S8, DLL_W7, DLL_NOMORE },
+/*CPU_H9*/ { DLL_H9, DLL_G9, DLL_P8, DLL_S8, DLL_W7, DLL_NOMORE }
+};
+
+#elif defined (_ARCH_EM64T)
+/* Describe Intel CPUs and libraries */
+typedef enum{CPU_M7=0, CPU_N8, CPU_Y8, CPU_E9, CPU_L9, CPU_N0, CPU_K0, CPU_NOMORE} cpu_enum;
+typedef enum{DLL_M7=0, DLL_N8, DLL_Y8, DLL_E9, DLL_L9, DLL_N0, DLL_K0, DLL_NOMORE} dll_enum;
+
+/* New cpu can use some libraries for old cpu */
+static const dll_enum dllUsage[][DLL_NOMORE+1] = {
+ /* DLL_K0, DLL_N0, DLL_L9, DLL_E9, DLL_Y8, DLL_N8, DLL_M7, DLL_NOMORE */
+/*CPU_M7*/ { DLL_M7, DLL_NOMORE },
+/*CPU_N8*/ { DLL_N8, DLL_M7, DLL_NOMORE },
+/*CPU_Y8*/ { DLL_Y8, DLL_N8, DLL_M7, DLL_NOMORE },
+/*CPU_E9*/ { DLL_E9, DLL_Y8, DLL_N8, DLL_M7, DLL_NOMORE },
+/*CPU_L9*/ { DLL_L9, DLL_E9, DLL_Y8, DLL_N8, DLL_M7, DLL_NOMORE },
+/*CPU_N0*/ { DLL_N0, DLL_L9, DLL_E9, DLL_Y8, DLL_N8, DLL_M7, DLL_NOMORE },
+/*CPU_K0*/ { DLL_K0, DLL_N0, DLL_L9, DLL_E9, DLL_Y8, DLL_N8, DLL_M7, DLL_NOMORE }
+};
+
+#endif
+
+#if defined( _PCS )
+
+/* Names of the Intel libraries which can be loaded */
+#if defined ( _WIN32 ) && !defined( _WIN64 ) && !defined( _WIN32E )
+static const _TCHAR* dllNames[DLL_NOMORE] = {
+ _T(IPP_LIB_PREFIX()) _T("w7") _T(".dll"),
+ _T(IPP_LIB_PREFIX()) _T("s8") _T(".dll"),
+ _T(IPP_LIB_PREFIX()) _T("p8") _T(".dll"),
+ _T(IPP_LIB_PREFIX()) _T("g9") _T(".dll"),
+ _T(IPP_LIB_PREFIX()) _T("h9") _T(".dll")
+};
+#elif defined(linux32)
+static const _TCHAR* dllNames[DLL_NOMORE] = {
+ _T("lib") _T(IPP_LIB_PREFIX()) _T("w7.so"),
+ _T("lib") _T(IPP_LIB_PREFIX()) _T("s8.so"),
+ _T("lib") _T(IPP_LIB_PREFIX()) _T("p8.so"),
+ _T("lib") _T(IPP_LIB_PREFIX()) _T("g9.so"),
+ _T("lib") _T(IPP_LIB_PREFIX()) _T("h9.so")
+};
+#elif defined( OSX32 )
+static const _TCHAR* dllNames[DLL_NOMORE] = {
+ _T("lib") _T(IPP_LIB_PREFIX()) _T("s8") _T(".dylib"),
+ _T("lib") _T(IPP_LIB_PREFIX()) _T("p8") _T(".dylib"),
+ _T("lib") _T(IPP_LIB_PREFIX()) _T("g9") _T(".dylib"),
+ _T("lib") _T(IPP_LIB_PREFIX()) _T("h9") _T(".dylib")
+};
+#elif defined( _WIN32E )
+static const _TCHAR* dllNames[DLL_NOMORE] = {
+ _T(IPP_LIB_PREFIX()) _T("m7") _T(".dll"),
+ _T(IPP_LIB_PREFIX()) _T("n8") _T(".dll"),
+ _T(IPP_LIB_PREFIX()) _T("y8") _T(".dll"),
+ _T(IPP_LIB_PREFIX()) _T("e9") _T(".dll"),
+ _T(IPP_LIB_PREFIX()) _T("l9") _T(".dll"), /* no support for N0 on win */
+ _T(IPP_LIB_PREFIX()) _T("k0") _T(".dll")
+};
+#elif defined( OSXEM64T )
+static const _TCHAR* dllNames[DLL_NOMORE] = {
+ _T("lib") _T(IPP_LIB_PREFIX()) _T("n8") _T(".dylib"),
+ _T("lib") _T(IPP_LIB_PREFIX()) _T("y8") _T(".dylib"),
+ _T("lib") _T(IPP_LIB_PREFIX()) _T("e9") _T(".dylib"),
+ _T("lib") _T(IPP_LIB_PREFIX()) _T("l9") _T(".dylib"),
+ _T("lib") _T(IPP_LIB_PREFIX()) _T("k0") _T(".dylib")
+};
+#elif defined( linux32e )
+static const _TCHAR* dllNames[DLL_NOMORE] = {
+ _T("lib") _T(IPP_LIB_PREFIX()) _T("m7.so"),
+ _T("lib") _T(IPP_LIB_PREFIX()) _T("n8.so"),
+ _T("lib") _T(IPP_LIB_PREFIX()) _T("y8.so"),
+ _T("lib") _T(IPP_LIB_PREFIX()) _T("e9.so"),
+ _T("lib") _T(IPP_LIB_PREFIX()) _T("l9.so"),
+ _T("lib") _T(IPP_LIB_PREFIX()) _T("n0.so"),
+ _T("lib") _T(IPP_LIB_PREFIX()) _T("k0.so")
+};
+#endif
+
+#endif /* _PCS */
+
+#else /*_IPP_DYNAMIC */
+
+
+#endif
+
+
+#if defined( __cplusplus )
+}
+#endif
+
+#endif /* __DISPATCHER_H__ */