chromium/third_party/libaom/source/libaom/aom_dsp/simd/v128_intrinsics_x86.h

/*
 * Copyright (c) 2016, Alliance for Open Media. All rights reserved.
 *
 * This source code is subject to the terms of the BSD 2 Clause License and
 * the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
 * was not distributed with this source code in the LICENSE file, you can
 * obtain it at www.aomedia.org/license/software. If the Alliance for Open
 * Media Patent License 1.0 was not distributed with this source code in the
 * PATENTS file, you can obtain it at www.aomedia.org/license/patent.
 */

#ifndef AOM_AOM_DSP_SIMD_V128_INTRINSICS_X86_H_
#define AOM_AOM_DSP_SIMD_V128_INTRINSICS_X86_H_

#include <stdint.h>
#include "aom_dsp/simd/v64_intrinsics_x86.h"

v128;

SIMD_INLINE uint32_t v128_low_u32(v128 a) {}

SIMD_INLINE v64 v128_low_v64(v128 a) {}

SIMD_INLINE v64 v128_high_v64(v128 a) {}

SIMD_INLINE v128 v128_from_v64(v64 a, v64 b) {}

SIMD_INLINE v128 v128_from_64(uint64_t a, uint64_t b) {}

SIMD_INLINE v128 v128_from_32(uint32_t a, uint32_t b, uint32_t c, uint32_t d) {}

SIMD_INLINE v128 v128_load_aligned(const void *p) {}

SIMD_INLINE v128 v128_load_unaligned(const void *p) {}

SIMD_INLINE void v128_store_aligned(void *p, v128 a) {}

SIMD_INLINE void v128_store_unaligned(void *p, v128 a) {}

// The following function requires an immediate.
// Some compilers will check this during optimisation, others wont.
#if defined(__OPTIMIZE__) && __OPTIMIZE__ && !defined(__clang__)
#if defined(__SSSE3__)
SIMD_INLINE v128 v128_align(v128 a, v128 b, const unsigned int c) {
  return c ? _mm_alignr_epi8(a, b, c) : b;
}
#else
#define v128_align
#endif
#else
#if defined(__SSSE3__)
#define v128_align(a, b, c)
#else
#define v128_align
#endif
#endif

SIMD_INLINE v128 v128_zero(void) {}

SIMD_INLINE v128 v128_dup_8(uint8_t x) {}

SIMD_INLINE v128 v128_dup_16(uint16_t x) {}

SIMD_INLINE v128 v128_dup_32(uint32_t x) {}

SIMD_INLINE v128 v128_dup_64(uint64_t x) {}

SIMD_INLINE v128 v128_add_8(v128 a, v128 b) {}

SIMD_INLINE v128 v128_add_16(v128 a, v128 b) {}

SIMD_INLINE v128 v128_sadd_u8(v128 a, v128 b) {}

SIMD_INLINE v128 v128_sadd_s8(v128 a, v128 b) {}

SIMD_INLINE v128 v128_sadd_s16(v128 a, v128 b) {}

SIMD_INLINE v128 v128_add_32(v128 a, v128 b) {}

SIMD_INLINE v128 v128_add_64(v128 a, v128 b) {}

SIMD_INLINE v128 v128_padd_s16(v128 a) {}

SIMD_INLINE v128 v128_sub_8(v128 a, v128 b) {}

SIMD_INLINE v128 v128_ssub_u8(v128 a, v128 b) {}

SIMD_INLINE v128 v128_ssub_s8(v128 a, v128 b) {}

SIMD_INLINE v128 v128_sub_16(v128 a, v128 b) {}

SIMD_INLINE v128 v128_ssub_s16(v128 a, v128 b) {}

SIMD_INLINE v128 v128_ssub_u16(v128 a, v128 b) {}

SIMD_INLINE v128 v128_sub_32(v128 a, v128 b) {}

SIMD_INLINE v128 v128_sub_64(v128 a, v128 b) {}

SIMD_INLINE v128 v128_abs_s16(v128 a) {}

SIMD_INLINE v128 v128_abs_s8(v128 a) {}

SIMD_INLINE v128 v128_ziplo_8(v128 a, v128 b) {}

SIMD_INLINE v128 v128_ziphi_8(v128 a, v128 b) {}

SIMD_INLINE v128 v128_ziplo_16(v128 a, v128 b) {}

SIMD_INLINE v128 v128_ziphi_16(v128 a, v128 b) {}

SIMD_INLINE v128 v128_ziplo_32(v128 a, v128 b) {}

SIMD_INLINE v128 v128_ziphi_32(v128 a, v128 b) {}

SIMD_INLINE v128 v128_ziplo_64(v128 a, v128 b) {}

SIMD_INLINE v128 v128_ziphi_64(v128 a, v128 b) {}

SIMD_INLINE v128 v128_zip_8(v64 a, v64 b) {}

SIMD_INLINE v128 v128_zip_16(v64 a, v64 b) {}

SIMD_INLINE v128 v128_zip_32(v64 a, v64 b) {}

SIMD_INLINE v128 v128_unziphi_8(v128 a, v128 b) {}

SIMD_INLINE v128 v128_unziplo_8(v128 a, v128 b) {}

SIMD_INLINE v128 v128_unziphi_16(v128 a, v128 b) {}

SIMD_INLINE v128 v128_unziplo_16(v128 a, v128 b) {}

SIMD_INLINE v128 v128_unziphi_32(v128 a, v128 b) {}

SIMD_INLINE v128 v128_unziplo_32(v128 a, v128 b) {}

SIMD_INLINE v128 v128_unpack_u8_s16(v64 a) {}

SIMD_INLINE v128 v128_unpacklo_u8_s16(v128 a) {}

SIMD_INLINE v128 v128_unpackhi_u8_s16(v128 a) {}

SIMD_INLINE v128 v128_unpack_s8_s16(v64 a) {}

SIMD_INLINE v128 v128_unpacklo_s8_s16(v128 a) {}

SIMD_INLINE v128 v128_unpackhi_s8_s16(v128 a) {}

SIMD_INLINE v128 v128_pack_s32_s16(v128 a, v128 b) {}

SIMD_INLINE v128 v128_pack_s32_u16(v128 a, v128 b) {}

SIMD_INLINE v128 v128_pack_s16_u8(v128 a, v128 b) {}

SIMD_INLINE v128 v128_pack_s16_s8(v128 a, v128 b) {}

SIMD_INLINE v128 v128_unpack_u16_s32(v64 a) {}

SIMD_INLINE v128 v128_unpack_s16_s32(v64 a) {}

SIMD_INLINE v128 v128_unpacklo_u16_s32(v128 a) {}

SIMD_INLINE v128 v128_unpacklo_s16_s32(v128 a) {}

SIMD_INLINE v128 v128_unpackhi_u16_s32(v128 a) {}

SIMD_INLINE v128 v128_unpackhi_s16_s32(v128 a) {}

SIMD_INLINE v128 v128_shuffle_8(v128 x, v128 pattern) {}

SIMD_INLINE int64_t v128_dotp_su8(v128 a, v128 b) {}

SIMD_INLINE int64_t v128_dotp_s16(v128 a, v128 b) {}

SIMD_INLINE uint64_t v128_hadd_u8(v128 a) {}

sad128_internal;

SIMD_INLINE sad128_internal v128_sad_u8_init(void) {}

/* Implementation dependent return value.  Result must be finalised with
   v128_sad_sum().
   The result for more than 32 v128_sad_u8() calls is undefined. */
SIMD_INLINE sad128_internal v128_sad_u8(sad128_internal s, v128 a, v128 b) {}

SIMD_INLINE uint32_t v128_sad_u8_sum(sad128_internal s) {}

ssd128_internal;

SIMD_INLINE ssd128_internal v128_ssd_u8_init(void) {}

/* Implementation dependent return value.  Result must be finalised with
 * v128_ssd_sum(). */
SIMD_INLINE ssd128_internal v128_ssd_u8(ssd128_internal s, v128 a, v128 b) {}

SIMD_INLINE int32_t v128_ssd_u8_sum(ssd128_internal s) {}

SIMD_INLINE v128 v128_or(v128 a, v128 b) {}

SIMD_INLINE v128 v128_xor(v128 a, v128 b) {}

SIMD_INLINE v128 v128_and(v128 a, v128 b) {}

SIMD_INLINE v128 v128_andn(v128 a, v128 b) {}

SIMD_INLINE v128 v128_mul_s16(v64 a, v64 b) {}

SIMD_INLINE v128 v128_mullo_s16(v128 a, v128 b) {}

SIMD_INLINE v128 v128_mulhi_s16(v128 a, v128 b) {}

SIMD_INLINE v128 v128_mullo_s32(v128 a, v128 b) {}

SIMD_INLINE int64_t v128_dotp_s32(v128 a, v128 b) {}

SIMD_INLINE v128 v128_madd_s16(v128 a, v128 b) {}

SIMD_INLINE v128 v128_madd_us8(v128 a, v128 b) {}

SIMD_INLINE v128 v128_padd_u8(v128 a) {}

SIMD_INLINE v128 v128_avg_u8(v128 a, v128 b) {}

SIMD_INLINE v128 v128_rdavg_u8(v128 a, v128 b) {}

SIMD_INLINE v128 v128_rdavg_u16(v128 a, v128 b) {}

SIMD_INLINE v128 v128_avg_u16(v128 a, v128 b) {}

SIMD_INLINE v128 v128_min_u8(v128 a, v128 b) {}

SIMD_INLINE v128 v128_max_u8(v128 a, v128 b) {}

SIMD_INLINE v128 v128_min_s8(v128 a, v128 b) {}

SIMD_INLINE uint32_t v128_movemask_8(v128 a) {}

SIMD_INLINE v128 v128_blend_8(v128 a, v128 b, v128 c) {}

SIMD_INLINE v128 v128_max_s8(v128 a, v128 b) {}

SIMD_INLINE v128 v128_min_s16(v128 a, v128 b) {}

SIMD_INLINE v128 v128_max_s16(v128 a, v128 b) {}

SIMD_INLINE v128 v128_min_s32(v128 a, v128 b) {}

SIMD_INLINE v128 v128_max_s32(v128 a, v128 b) {}

SIMD_INLINE v128 v128_cmpgt_s8(v128 a, v128 b) {}

SIMD_INLINE v128 v128_cmplt_s8(v128 a, v128 b) {}

SIMD_INLINE v128 v128_cmpeq_8(v128 a, v128 b) {}

SIMD_INLINE v128 v128_cmpgt_s16(v128 a, v128 b) {}

SIMD_INLINE v128 v128_cmplt_s16(v128 a, v128 b) {}

SIMD_INLINE v128 v128_cmpeq_32(v128 a, v128 b) {}

SIMD_INLINE v128 v128_cmpgt_s32(v128 a, v128 b) {}

SIMD_INLINE v128 v128_cmplt_s32(v128 a, v128 b) {}

SIMD_INLINE v128 v128_cmpeq_16(v128 a, v128 b) {}

SIMD_INLINE v128 v128_shl_8(v128 a, unsigned int c) {}

SIMD_INLINE v128 v128_shr_u8(v128 a, unsigned int c) {}

SIMD_INLINE v128 v128_shr_s8(v128 a, unsigned int c) {}

SIMD_INLINE v128 v128_shl_16(v128 a, unsigned int c) {}

SIMD_INLINE v128 v128_shr_u16(v128 a, unsigned int c) {}

SIMD_INLINE v128 v128_shr_s16(v128 a, unsigned int c) {}

SIMD_INLINE v128 v128_shl_32(v128 a, unsigned int c) {}

SIMD_INLINE v128 v128_shr_u32(v128 a, unsigned int c) {}

SIMD_INLINE v128 v128_shr_s32(v128 a, unsigned int c) {}

SIMD_INLINE v128 v128_shl_64(v128 a, unsigned int c) {}

SIMD_INLINE v128 v128_shr_u64(v128 a, unsigned int c) {}

SIMD_INLINE v128 v128_shr_s64(v128 a, unsigned int c) {}

/* These intrinsics require immediate values, so we must use #defines
   to enforce that. */
#define v128_shl_n_byte(a, c)
#define v128_shr_n_byte(a, c)
#define v128_shl_n_8(a, c)
#define v128_shr_n_u8(a, c)
#define v128_shr_n_s8(a, c)
#define v128_shl_n_16(a, c)
#define v128_shr_n_u16(a, c)
#define v128_shr_n_s16(a, c)
#define v128_shl_n_32(a, c)
#define v128_shr_n_u32(a, c)
#define v128_shr_n_s32(a, c)
#define v128_shl_n_64(a, c)
#define v128_shr_n_u64(a, c)
#define v128_shr_n_s64(a, c)

sad128_internal_u16;

SIMD_INLINE sad128_internal_u16 v128_sad_u16_init(void) {}

/* Implementation dependent return value.  Result must be finalised with
 * v128_sad_u16_sum(). */
SIMD_INLINE sad128_internal_u16 v128_sad_u16(sad128_internal_u16 s, v128 a,
                                             v128 b) {}

SIMD_INLINE uint32_t v128_sad_u16_sum(sad128_internal_u16 s) {}

ssd128_internal_s16;

SIMD_INLINE ssd128_internal_s16 v128_ssd_s16_init(void) {}

/* Implementation dependent return value.  Result must be finalised with
 * v128_ssd_s16_sum(). */
SIMD_INLINE ssd128_internal_s16 v128_ssd_s16(ssd128_internal_s16 s, v128 a,
                                             v128 b) {}

SIMD_INLINE uint64_t v128_ssd_s16_sum(ssd128_internal_s16 s) {}

#endif  // AOM_AOM_DSP_SIMD_V128_INTRINSICS_X86_H_