71 lines
2.4 KiB
C
71 lines
2.4 KiB
C
/******************************************************************************
|
|
Copyright (C) 2019 by Peter Geis <pgwipeout@gmail.com>
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
******************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#if NEEDS_SIMDE
|
|
|
|
#include "simde/sse2.h"
|
|
|
|
#define __m128 simde__m128
|
|
#define _mm_setzero_ps simde_mm_setzero_ps
|
|
#define _mm_set_ps simde_mm_set_ps
|
|
#define _mm_add_ps simde_mm_add_ps
|
|
#define _mm_sub_ps simde_mm_sub_ps
|
|
#define _mm_mul_ps simde_mm_mul_ps
|
|
#define _mm_div_ps simde_mm_div_ps
|
|
#define _mm_set1_ps simde_mm_set1_ps
|
|
#define _mm_movehl_ps simde_mm_movehl_ps
|
|
#define _mm_shuffle_ps simde_mm_shuffle_ps
|
|
#define _mm_min_ps simde_mm_min_ps
|
|
#define _mm_max_ps simde_mm_max_ps
|
|
#define _mm_movelh_ps simde_mm_movelh_ps
|
|
#define _mm_unpacklo_ps simde_mm_unpacklo_ps
|
|
#define _mm_unpackhi_ps simde_mm_unpackhi_ps
|
|
#define _mm_load_ps simde_mm_load_ps
|
|
#define _mm_andnot_ps simde_mm_andnot_ps
|
|
#define _mm_storeu_ps simde_mm_storeu_ps
|
|
#define _mm_loadu_ps simde_mm_loadu_ps
|
|
|
|
#define __m128i simde__m128i
|
|
#define _mm_set1_epi32 simde_mm_set1_epi32
|
|
#define _mm_set1_epi16 simde_mm_set1_epi16
|
|
#define _mm_load_si128 simde_mm_load_si128
|
|
#define _mm_packs_epi32 simde_mm_packs_epi32
|
|
#define _mm_srli_si128 simde_mm_srli_si128
|
|
#define _mm_and_si128 simde_mm_and_si128
|
|
#define _mm_packus_epi16 simde_mm_packus_epi16
|
|
#define _mm_add_epi64 simde_mm_add_epi64
|
|
#define _mm_shuffle_epi32 simde_mm_shuffle_epi32
|
|
#define _mm_srai_epi16 simde_mm_srai_epi16
|
|
#define _mm_shufflelo_epi16 simde_mm_shufflelo_epi16
|
|
#define _mm_storeu_si128 simde_mm_storeu_si128
|
|
|
|
#define _MM_SHUFFLE SIMDE_MM_SHUFFLE
|
|
#define _MM_TRANSPOSE4_PS SIMDE_MM_TRANSPOSE4_PS
|
|
|
|
#else
|
|
|
|
#if defined(__aarch64__) || defined(__arm__)
|
|
#include <arm_neon.h>
|
|
#include "sse2neon.h"
|
|
#else
|
|
#include <xmmintrin.h>
|
|
#include <emmintrin.h>
|
|
#endif
|
|
|
|
#endif
|