aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/sse/sse.h
blob: c118143c94b32f06c6fb59f173271d84b7a8bafd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#pragma once

/*
  The header chooses appropriate SSE support.
  On Intel: SSE intrinsics
  On ARM64: translation to NEON intrinsics or software emulation
  On PowerPc: translation to Altivec intrinsics or software emulation
*/
/* Author: Vitaliy Manushkin <agri@yandex-team.ru>, Danila Kutenin <danlark@yandex-team.ru> */

#include <util/system/platform.h>

#if (defined(_i386_) || defined(_x86_64_)) && defined(_sse_)
    #include <xmmintrin.h>
    #include <emmintrin.h>
    #include <pmmintrin.h>
    #define ARCADIA_SSE
    #if defined(_ssse3_)
        #include <tmmintrin.h>
    #endif
    #if defined(_sse4_1_)
        #include <smmintrin.h>
    #endif
    #if defined(_sse4_2_)
        #include <nmmintrin.h>
    #endif
#elif defined(_arm64_)
    #include "sse2neon.h"
    #define ARCADIA_SSE
#elif defined(_ppc64_)
    #include "powerpc.h"
    #define ARCADIA_SSE
#endif