| Index: src/libFLAC/stream_encoder_intrin_avx2.c
|
| diff --git a/src/libFLAC/stream_encoder_intrin_avx2.c b/src/libFLAC/stream_encoder_intrin_avx2.c
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..3aa31972ae969a3bfc44469431c7b2586555aba2
|
| --- /dev/null
|
| +++ b/src/libFLAC/stream_encoder_intrin_avx2.c
|
| @@ -0,0 +1,142 @@
|
| +/* libFLAC - Free Lossless Audio Codec library
|
| + * Copyright (C) 2000-2009 Josh Coalson
|
| + * Copyright (C) 2011-2014 Xiph.Org Foundation
|
| + *
|
| + * Redistribution and use in source and binary forms, with or without
|
| + * modification, are permitted provided that the following conditions
|
| + * are met:
|
| + *
|
| + * - Redistributions of source code must retain the above copyright
|
| + * notice, this list of conditions and the following disclaimer.
|
| + *
|
| + * - Redistributions in binary form must reproduce the above copyright
|
| + * notice, this list of conditions and the following disclaimer in the
|
| + * documentation and/or other materials provided with the distribution.
|
| + *
|
| + * - Neither the name of the Xiph.org Foundation nor the names of its
|
| + * contributors may be used to endorse or promote products derived from
|
| + * this software without specific prior written permission.
|
| + *
|
| + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
| + * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
| + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
| + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR
|
| + * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
| + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
| + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
| + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
| + * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
| + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
| + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
| + */
|
| +
|
| +#ifdef HAVE_CONFIG_H
|
| +# include <config.h>
|
| +#endif
|
| +
|
| +#ifndef FLAC__NO_ASM
|
| +#if (defined FLAC__CPU_IA32 || defined FLAC__CPU_X86_64) && defined FLAC__HAS_X86INTRIN
|
| +#include "private/stream_encoder.h"
|
| +#include "private/bitmath.h"
|
| +#ifdef FLAC__AVX2_SUPPORTED
|
| +
|
| +#include <stdlib.h> /* for abs() */
|
| +#include <immintrin.h> /* AVX2 */
|
| +#include "FLAC/assert.h"
|
| +
|
| +FLAC__SSE_TARGET("avx2")
|
| +void FLAC__precompute_partition_info_sums_intrin_avx2(const FLAC__int32 residual[], FLAC__uint64 abs_residual_partition_sums[],
|
| + unsigned residual_samples, unsigned predictor_order, unsigned min_partition_order, unsigned max_partition_order, unsigned bps)
|
| +{
|
| + const unsigned default_partition_samples = (residual_samples + predictor_order) >> max_partition_order;
|
| + unsigned partitions = 1u << max_partition_order;
|
| +
|
| + FLAC__ASSERT(default_partition_samples > predictor_order);
|
| +
|
| + /* first do max_partition_order */
|
| + {
|
| + unsigned partition, residual_sample, end = (unsigned)(-(int)predictor_order);
|
| + __m256i res256, sum256;
|
| + __m128i res128, sum128;
|
| +
|
| + if(FLAC__bitmath_ilog2(default_partition_samples) + bps + FLAC__MAX_EXTRA_RESIDUAL_BPS < 32) {
|
| + for(partition = residual_sample = 0; partition < partitions; partition++) {
|
| + end += default_partition_samples;
|
| + sum256 = _mm256_setzero_si256();
|
| +
|
| + for( ; (int)residual_sample < (int)end-7; residual_sample+=8) {
|
| + res256 = _mm256_abs_epi32(_mm256_loadu_si256((const __m256i*)(residual+residual_sample)));
|
| + sum256 = _mm256_add_epi32(sum256, res256);
|
| + }
|
| +
|
| + sum128 = _mm_add_epi32(_mm256_extracti128_si256(sum256, 1), _mm256_castsi256_si128(sum256));
|
| +
|
| + for( ; (int)residual_sample < (int)end-3; residual_sample+=4) {
|
| + res128 = _mm_abs_epi32(_mm_loadu_si128((const __m128i*)(residual+residual_sample)));
|
| + sum128 = _mm_add_epi32(sum128, res128);
|
| + }
|
| +
|
| + for( ; residual_sample < end; residual_sample++) {
|
| + res128 = _mm_cvtsi32_si128(residual[residual_sample]);
|
| + res128 = _mm_abs_epi32(res128);
|
| + sum128 = _mm_add_epi32(sum128, res128);
|
| + }
|
| +
|
| + sum128 = _mm_hadd_epi32(sum128, sum128);
|
| + sum128 = _mm_hadd_epi32(sum128, sum128);
|
| + abs_residual_partition_sums[partition] = (FLAC__uint32)_mm_cvtsi128_si32(sum128);
|
| + }
|
| + }
|
| + else { /* have to pessimistically use 64 bits for accumulator */
|
| + for(partition = residual_sample = 0; partition < partitions; partition++) {
|
| + end += default_partition_samples;
|
| + sum256 = _mm256_setzero_si256();
|
| +
|
| + for( ; (int)residual_sample < (int)end-3; residual_sample+=4) {
|
| + res128 = _mm_abs_epi32(_mm_loadu_si128((const __m128i*)(residual+residual_sample)));
|
| + res256 = _mm256_cvtepu32_epi64(res128);
|
| + sum256 = _mm256_add_epi64(sum256, res256);
|
| + }
|
| +
|
| + sum128 = _mm_add_epi64(_mm256_extracti128_si256(sum256, 1), _mm256_castsi256_si128(sum256));
|
| +
|
| + for( ; (int)residual_sample < (int)end-1; residual_sample+=2) {
|
| + res128 = _mm_loadl_epi64((const __m128i*)(residual+residual_sample));
|
| + res128 = _mm_abs_epi32(res128);
|
| + res128 = _mm_cvtepu32_epi64(res128);
|
| + sum128 = _mm_add_epi64(sum128, res128);
|
| + }
|
| +
|
| + for( ; residual_sample < end; residual_sample++) {
|
| + res128 = _mm_cvtsi32_si128(residual[residual_sample]);
|
| + res128 = _mm_abs_epi32(res128);
|
| + sum128 = _mm_add_epi64(sum128, res128);
|
| + }
|
| +
|
| + sum128 = _mm_add_epi64(sum128, _mm_srli_si128(sum128, 8));
|
| + _mm_storel_epi64((__m128i*)(abs_residual_partition_sums+partition), sum128);
|
| + }
|
| + }
|
| + }
|
| +
|
| + /* now merge partitions for lower orders */
|
| + {
|
| + unsigned from_partition = 0, to_partition = partitions;
|
| + int partition_order;
|
| + for(partition_order = (int)max_partition_order - 1; partition_order >= (int)min_partition_order; partition_order--) {
|
| + unsigned i;
|
| + partitions >>= 1;
|
| + for(i = 0; i < partitions; i++) {
|
| + abs_residual_partition_sums[to_partition++] =
|
| + abs_residual_partition_sums[from_partition ] +
|
| + abs_residual_partition_sums[from_partition+1];
|
| + from_partition += 2;
|
| + }
|
| + }
|
| + }
|
| + _mm256_zeroupper();
|
| +}
|
| +
|
| +#endif /* FLAC__AVX2_SUPPORTED */
|
| +#endif /* (FLAC__CPU_IA32 || FLAC__CPU_X86_64) && FLAC__HAS_X86INTRIN */
|
| +#endif /* FLAC__NO_ASM */
|
|
|